body{
    background:#f6f7fb;
	font-family: "Inter", sans-serif;
    /* font-family:'Segoe UI',sans-serif; */
    color:#222;
}

/*------------------*/

.profile-container {
    max-width: 1400px;
}

.back-btn{
    color:#555;
    font-size:15px;
    text-decoration:none;
    font-weight:500;
}

.back-btn:hover{
    text-decoration:none;
    color:#ff2f87;
}

.search-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 14px;
    border:1px solid #ffd1df;
    border-radius:50px;
    background:#fff5f8;
    color:#000;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    transition:0.3s;
}
.search-btn span{color:#e50003;}

.search-btn i{
    font-size:14px;
}

.search-btn:hover{
    background:#ffe6ef;
    text-decoration:none;
    color:#c2185b;
}

/*------------------*/
.profile-container {
    max-width: 1400px;
}
.gallery-card{
    position:relative;
}

.main-photo{
    width:100%;
    height:540px;
    object-fit:cover;
    border-radius:18px;
}

.premium{
    position:absolute;
    top:30px;
    left:30px;
    background:#e50003;
    color:#fff;
    font-size:12px;
    padding:6px 14px;
    border-radius:30px;
    font-weight:600;
    z-index:2;
}

.view-gallery{
     position:absolute;
    bottom: 165px;
    left: 30px;
    background:rgba(0,0,0,.65);
    color:#fff;
    padding:10px 18px;
    border-radius:12px;
    font-size:14px;
    cursor:pointer;
}

.thumbs{
    display:flex;
    gap:10px;
}

.thumbs img{
    width:70px;
    height:70px;
    border-radius:12px;
    object-fit:cover;
    cursor:pointer;
    transition:.3s;
    border:3px solid transparent;
}

.thumbs img:hover{
    transform:scale(1.05);
    border-color:#e50003;
}

.verified-images{
    color:#888;
    font-size:14px;
	text-align:center;
}

.verified-images i{
    color:#e50003;
    margin-right:6px;
}

/*------------------*/

.profile-content h1{
    font-size:42px;
    font-weight:700;
}

.verified{
    display:inline-flex;
    width:24px;
    height:24px;
    border-radius:50%;
    background:#e50003;
    color:#fff;
    justify-content:center;
    align-items:center;
    font-size:12px;
    margin-left:8px;
	    position: absolute;
    top: 18px;
}

.location{
    margin-top:10px;
    color:#666;
    font-size:16px;
}

.location i{
    color:#e50003;
    margin-right:6px;
}

.status{
    margin-top:15px;
    color:#555;
}

.online-dot{
    width:10px;
    height:10px;
    background:#19c51a;
    border-radius:50%;
    display:inline-block;
    margin-right:8px;
}

.rating{
    margin-top:15px;
    font-size:17px;
}

.rating b{
    margin:0 5px;
}

/*------------------*/

/*=========================
 WORK SCHEDULE
=========================*/

.ws-card{
    background:#fff;
    border:1px solid #eee;
    border-radius:16px;
    padding:25px;
    box-shadow:0 4px 15px rgba(0,0,0,.05);
}

.ws-title{
    font-size: 22px;
    font-weight: 700;
    color: #222;
}

.ws-title i{
    color:#e50003;
    margin-right:8px;
}

.ws-header
{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    align-items:center;
}

.ws-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
}

.ws-header{
    background:#fff5f8;
    border-radius:10px;
    padding:12px 15px;
    font-weight:700;
    color:#e50003;
    margin-bottom:10px;
}

.ws-row{
    padding:14px 15px;
    border-bottom:1px solid #f2f2f2;
    transition:.3s;
}

.ws-row:last-child{
    border-bottom:none;
}

.ws-row:hover{
    background:#fff7fa;
}

.ws-row div{
    font-size:15px;
    color:#444;
}

.ws-row div:nth-child(2),
.ws-row div:nth-child(3){
    font-weight:600;
    color:#222;
}

.ws-today{
    background:#fff0f5;
    border-radius:10px;
    margin-top:8px;
}

@media(max-width:576px){

    .ws-title{
        font-size:22px;
    }

    .ws-header,
    .ws-row{
        grid-template-columns:70px 1fr 1fr;
        font-size:13px;
    }

    .ws-row{
        padding:12px 10px;
    }

}


/*==========================
 INFO GRID
==========================*/

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-bottom: 10px;
    margin-top: 5px;
	width:100%;
}

.info-item{
    background:#fff;
    border:1px solid #eee;
    border-radius:12px;
    padding:18px 15px;
    text-align:center;
    transition:.3s;
    height:100%;
}

.info-item:hover{
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transform:translateY(-2px);
}

.info-item .number{
    font-size:20px;
    font-weight:700;
    color:#222;
    margin-bottom:6px;
}

.info-item .label{
    font-size:14px;
    color:#777;
}

/* Tablet */
@media(max-width:991px){

    .info-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* Mobile */
@media(max-width:576px){

    .info-grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .info-item{
        padding:15px 10px;
    }

    .info-item .number{
        font-size:18px;
    }

    .info-item .label{
        font-size:13px;
    }

}


/*------------------*/

.btn-message{
    background:linear-gradient(90deg,#e50003,#ff4470);
    color:#fff;
    border-radius:20px;
    height:44px;
    font-weight:600;
    border:none;
}

.btn-message:hover{
    color:#fff;
    opacity:.92;
}

.btn-whatsapp{
    background:#fff;
    color:#18b95b;
    border:2px solid #18b95b;
    border-radius:20px;
    height:44px;
    font-weight:600;
}

.btn-whatsapp:hover{
    background:#18b95b;
    color:#fff;
}

.action-btn{
    height:44px;
    border-radius:20px;
    border:1px solid #ddd;
    background:#fff;
    font-weight:600;
}

.action-btn:hover{
    background:#fafafa;
}

/* MAIN WRAPPER */
.bottom-card{
    background: linear-gradient(90deg, #fff3f6, #fff);
    border-radius: 18px;
    border: 1px solid #f1e5ea;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
    overflow: hidden;
}

/* COLUMN BORDER DIVIDER */
.bottom-col{
    position: relative;
}

.bottom-col:not(:last-child):after{
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    width: 1px;
    height: 60%;
    background: #e9dfe3;
}

/* BOX */
.bottom-box{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 15px;
}

/* ICON */
.bottom-icon{
    font-size: 30px;
    color: #ff4f86;
    margin-right: 14px;
}

/* TEXT */
.bottom-text b{
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
}

.bottom-text p{
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* RESPONSIVE */
@media(max-width: 767px){

    .bottom-col:not(:last-child):after{
        display:none;
    }

    .bottom-box{
        justify-content: flex-start;
        padding: 18px;
    }
}


/*==========================
 NAUGHTY GALLERY
==========================*/

.np-gallery{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:10px;
}

/* Card */
.np-card{
    position:relative;
    overflow:hidden;
    border-radius:12px;
    cursor:pointer;
}

.np-card img{
    width:100%;
    height:116px;
    object-fit:cover;
    filter:blur(14px);
    transform:scale(1.12);
    transition:.4s;
}

.np-overlay{
    position:absolute;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(255,255,255,.15);
}

.np-overlay i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    color: #e50003;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
}

.np-card:hover img{
    filter:blur(10px);
    transform:scale(1.18);
}

/* Laptop / Tablet */
@media(max-width:991px){

    .np-gallery{
        grid-template-columns:repeat(3,1fr);
    }

}

/* Tablet */
@media(max-width:767px){

    .np-gallery{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .np-card img{
        height:190px;
    }

    .np-overlay i{
        width:50px;
        height:50px;
        font-size:20px;
    }
	
	    .np-card:nth-child(n+5) {
        display: none;
    }

}

/* Mobile */
@media(max-width:480px){

    .np-gallery{
        grid-template-columns:repeat(2,1fr);
        gap:10px;
    }

    .np-card img{
        height:150px;
    }

    .np-overlay i{
        width:42px;
        height:42px;
        font-size:16px;
    }
	
	    .np-card:nth-child(n+5) {
        display: none;
    }
	

}
/*=====================================
BOOKING CARD
=====================================*/

.booking-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    border:1px solid #eee;
}

.booking-head{
    background:linear-gradient(90deg,#e50003,#ff6a5f);
    color:#fff;
    padding:18px 22px;
    font-size:18px;
    font-weight:600;
	text-align:center;
}

.booking-head i{
    margin-right:8px;
}

.price{
    text-align:center;
    padding:10px 20px 5px
}

.price h1{
    display:inline-block;
    font-size:52px;
    font-weight:700;
    margin:0;
}

.price span{
    font-size:18px;
    color:#666;
}

.price p{
    margin-top:5px;
    color:#888;
}

.price2{
    text-align:center;
    padding:10px 20px;
}

.price2 h2{
    font-size:38px;
    font-weight:700;
}

.price2 p{
    color:#888;
}

.booking-card hr{
    margin:0 25px;
}

.available {
    padding: 10px 25px 0px 25px;
    color: #18b95b;
    font-weight: 600;
}

.available p{
    margin-top:5px;
    margin-left:18px;
    color:#666;
    font-weight:400;
}

.booking-btn{
    margin:0 0px 25px;
    height:44px;
    border:none;
    border-radius:20px;
    color:#fff;
    font-size:17px;
	margin:15px auto;
	width:90%;
    font-weight:600;
    background:linear-gradient(90deg,#e50003,#ff4470);
}

.booking-btn:hover{
    color:#fff;
    opacity:.95;
}

.small-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:9px 25px;
    color:#666;
    font-size:15px;
}

.small-row i{
    width:22px;
}

.small-row b{
    color:#222;
}

.privacy{
    padding:20px;
    text-align:center;
    color:#999;
    font-size:14px;
    border-top:1px solid #eee;
}

.privacy i{
    margin-right:6px;
}

/*=====================================
BOTTOM BOXES
=====================================*/

.bottom-box{
    display:flex;
    align-items:center;
    background:#fef5f6;
    border-radius:15px;
    padding:18px;
    /* border:1px solid #eee; */
    transition:.3s;
}

.bottom-box:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.bottom-box i{
    width:52px;
    height:52px;
    background:#fff3f8;
    color:#e50003;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:20px;
    margin-right:15px;
}

.bottom-box b{
    display:block;
    font-size:17px;
}

.bottom-box p{
    margin:0;
    color:#888;
    font-size:14px;
}

/*=====================================
about section row
=====================================*/


.info-card{
    background:#fff;
    border:1px solid #eee;
    border-radius:16px;
    padding:28px;
    position:relative;
    overflow:hidden;
    box-shadow:0 3px 12px rgba(0,0,0,.05);
}

/* decorative hearts */
.info-card:before{
    content:"";
    position:absolute;
    right:-40px;
    bottom:-40px;
    width:180px;
    height:180px;
    background:radial-gradient(circle,#ffd9e8 0%,transparent 70%);
    opacity:.8;
}

.card-title{
    font-size:20px;
    font-weight:700;
    margin-bottom:18px;
    color:#222;
}

.card-title i{
    color:#e50003;
    margin-right:8px;
}

.about-text,
.sub-text{
    font-size:15px;
    line-height:1.8;
    color:#666;
}

.feature-list{
    list-style:none;
    padding:0;
    margin:25px 0;
}

.feature-list li{
    margin-bottom:14px;
    font-size:15px;
    color:#555;
}

.feature-list i{
    width:24px;
    color:#e50003;
    margin-right:8px;
}

.services{
    margin-top:20px;
}

.service{
    text-align:center;
    margin-bottom:22px;
}

.service i{
    font-size:24px;
    color:#e50003;
    margin-bottom:8px;
    display:block;
}

.service span{
    display:block;
    font-size:14px;
    color:#555; text-align:left;
    line-height:1.3;
}

.note{
    margin-top:10px;
    color:#666;
    font-size:14px;
}

.footer-text{
    margin-top:25px;
    font-size:15px;
    color:#555;
}

@media(max-width:991px){

    .info-card{
        margin-bottom:20px;
    }

}


/*----------------*/

.info-card{
    background:#fff;
    border:1px solid #eee;
    border-radius:16px;
    padding:25px 30px;
    box-shadow:0 3px 12px rgba(0,0,0,.05);
    position:relative;
    overflow:hidden;
}

.info-card:before{
    content:'';
    position:absolute;
    right:-60px;
    top:-60px;
    width:180px;
    height:180px;
    background:radial-gradient(circle,#fde4ed 0%,transparent 70%);
    opacity:.7;
}

.card-title{
    font-size:20px;
    font-weight:700;
    color:#222;
    margin-bottom:25px;
}

.card-title i{
    color:#ff4f86;
    margin-right:8px;
}

.glance-row{
    margin:0;
}

.glance-item{
    display:flex;
    align-items:flex-start;
    margin-bottom:25px;
    position:relative;
}

.glance-item:not(:nth-child(5n)):after{
    content:"";
    position:absolute;
    right:0;
    top:4px;
    width:1px;
    height:40px;
    background:#ececec;
}

.glance-icon{
    font-size:24px;
    color:#e50003;
    margin-right:12px;
    min-width:28px;
}

.glance-item h6{
    margin:0;
    font-size:14px;
    font-weight:600;
    color:#222;
}

.glance-item p{
    margin:2px 0 0;
    font-size:14px;
    color:#555;
}

@media(max-width:991px){

    .glance-item:after{
        display:none;
    }

}

@media(max-width:575px){

    .glance-item{
        margin-bottom:20px;
    }

    .glance-icon{
        font-size:22px;
    }

}

/*=====================================
about section row end
=====================================*/


/*=====================================
photo Gallery
=====================================*/

.gallery-card{
    background:#fff;
    border:1px solid #eee;
    border-radius:16px;
    padding:20px;
    box-shadow:0 3px 12px rgba(0,0,0,.05);
    position:relative;
    overflow:hidden;
}

.gallery-card:before{
    content:'';
    position:absolute;
    top:-80px;
    right:-60px;
    width:180px;
    height:180px;
    background:radial-gradient(circle,#fde5ee 0%,transparent 70%);
    opacity:.8;
}

.gallery-header{
    margin-bottom:18px;
}

.card-title{
    font-size:22px;
    font-weight:700;
    color:#222;
}

.card-title i{
    color:#e50003;
    margin-right:8px;
}

.photo-view-gallery{
    color:#e50003;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
}

.photo-view-gallery:hover{
    color:#ff2f71;
    text-decoration:none;
}

.gallery-row{
    margin-left:-8px;
    margin-right:-8px;
}

.gallery-row>[class*="col"]{
    padding-left:8px;
    padding-right:8px;
}

.gallery-item{
    border-radius:10px;
    overflow:hidden;
    height:170px;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.35s;
    display:block;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

@media(max-width:991px){

    .gallery-item{
        height:220px;
    }

}

@media(max-width:767px){

    .gallery-item{
        height:180px;
    }

}

@media(max-width:575px){

    .gallery-header{
        flex-direction:column;
        align-items:flex-start!important;
    }

    .photo-view-gallery{
        margin-top:10px;
    }

    .gallery-item{
        height:160px;
    }

}



/*=====================================
photo Gallery row end
=====================================*/


/*=====================================
PUNTER row start
=====================================*/


/* 2nd style */

/*==========================
 PUNTER SECTION
==========================*/

.punter-section{

    background:#fff;
    padding:40px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.punter-heading{

    text-align:center;
    margin-bottom:35px;

}

.punter-heading h2{

    font-size:34px;
    font-weight:700;
    margin-bottom:10px;

}

.punter-heading p{

    color:#777;

}

/* Grid */

.punter-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-bottom:35px;

}

/* Card */

.punter-card{

    background:#fff;
    border:1px solid #eee;
    border-radius:18px;
    padding:30px 20px;
    text-align:center;
    text-decoration:none;
    transition:.35s;
    color:#222;

}

.punter-card:hover{

    text-decoration:none;
    color:#222;
    transform:translateY(-8px);

    border-color:#e50003;

    box-shadow: 0 18px 35px #ff00032e;

}

.punter-icon{

    width:70px;
    height:70px;
    margin:auto;
    margin-bottom:18px;

    border-radius:50%;

    background:linear-gradient(90deg,#e50003,#ff6a5f);

    display:flex;
    align-items:center;
    justify-content:center;

}

.punter-icon i{

    color:#fff;
    font-size:28px;

}

.punter-card h5{

    font-weight:700;
    margin-bottom:10px;

}

.punter-card p{

    color:#777;
    margin:0;
    font-size:14px;

}

/* Bottom Buttons */

.punter-footer{

    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;

}

.punter-btn{

    padding:12px 28px;
    border-radius:50px;
    border:2px solid #ddd;
    color:#333;
    text-decoration:none;
    transition:.3s;
    font-weight:600;

}

.punter-btn:hover{

    text-decoration:none;
    border-color:#d6007d;
    color:#d6007d;

}

.punter-btn-primary{

    background:linear-gradient(90deg,#e50003,#ff6a5f);
    color:#fff;
    border:none;

}

.punter-btn-primary:hover{

    color:#fff;
    transform:translateY(-3px);

}

/* Responsive */

@media(max-width:991px){

.punter-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.punter-grid{

grid-template-columns:1fr;

}

.punter-section{

padding:25px;

}

}


/* 2nd style */

/*=====================================
pUnter row end
=====================================*/


/*=========================
   REVIEW SECTION
=========================*/

.rvw-section{
    background:#fff;
    border:1px solid #ececec;
    border-radius:14px;
    padding:20px;
    box-shadow:0 2px 8px rgba(0,0,0,.04);
    position:relative;
    overflow:hidden;
}

.rvw-section:after{
    content:'';
    position:absolute;
    top:-70px;
    right:-70px;
    width:180px;
    height:180px;
    background:radial-gradient(circle,#fde6ef 0%,transparent 70%);
    opacity:.8;
}

.rvw-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:18px;
}

.rvw-title{
    margin:0;
    font-size:22px;
    font-weight:700;
    color:#222;
}

.rvw-title i{
    color:#e50003;
    margin-right:8px;
}

.rvw-title span{
    font-size:18px;
    color:#666;
    font-weight:500;
}

.rvw-view-all{
    color:#e50003;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
}

.rvw-view-all:hover{
    color:#c2185b;
    text-decoration:none;
}

.rvw-view-all i{
    font-size:12px;
    margin-left:4px;
}

.rvw-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:10px;
    padding:18px;
    height:100%;
    transition:.3s;
}

.rvw-card:hover{
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transform:translateY(-2px);
}

.rvw-stars{
    color:#e50003;
    font-size:14px;
    margin-bottom:12px;
}

.rvw-stars i{
    margin-right:2px;
}

.rvw-text{
    font-size:15px;
    color:#333;
    line-height:1.7;
    min-height:82px;
    margin-bottom:18px;
}

.rvw-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.rvw-name{
    font-weight:600;
    color:#222;
    font-size:14px;
}

.rvw-time{
    color:#888;
    font-size:13px;
}

/*=========================
      Responsive
=========================*/

@media(max-width:767px){

    .rvw-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .rvw-view-all{
        margin-top:10px;
    }

    .rvw-text{
        min-height:auto;
    }

}

/*==========================
 injoy
===========================*/

/*==========================
 WHAT YOU'LL ENJOY
==========================*/

.enjoy-box{

    background:#fff;
    border-radius:18px;
    padding:35px;
    border:1px solid #f3f3f3;
    box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.enjoy-head{

    display:flex;
    align-items:center;
    margin-bottom:15px;

}

.enjoy-head i{

    color:#d6007d;
    font-size:28px;
    margin-right:15px;

}

.enjoy-head h3{

    margin:0;
    font-size:34px;
    font-weight:700;

}

.enjoy-subtitle{

    color:#666;
    font-size:17px;
    margin-bottom:30px;

}

/* Tags */

.enjoy-tags{

    display:flex;
    flex-wrap:wrap;
    gap:14px;

}

.enjoy-tag{

    display:flex;
    align-items:center;

    padding:12px 20px;

    border-radius:50px;

    background:#fff;

    border:1px solid #ececec;

    font-size:15px; cursor:pointer;

    font-weight:500;

    transition:.3s;

}

.enjoy-tag i{

    width:24px;
    height:24px;

    background:linear-gradient(90deg,#d6007d,#ff6a5f);

    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:11px;

    margin-right:10px;

}

.enjoy-tag:hover{

    background:linear-gradient(90deg,#e50003,#ff6a5f);

    color:#fff;

    border-color:transparent;

    transform:translateY(-3px);

    box-shadow:0 10px 20px rgba(214,0,125,.25);

}

.enjoy-tag:hover i{

    background:#fff;
    color:#d6007d;

}

.enjoy-footer{

    margin-top:35px;

    padding-top:20px;

    border-top:1px solid #eee;

    color:#777;

    text-align:center;

    font-size:15px;

}

/* Responsive */

@media(max-width:768px){

.enjoy-box{

padding:25px;

}

.enjoy-head h3{

font-size:28px;

}

.enjoy-tag{

width:auto;
justify-content:flex-start;

}

ul.topcity {
    display: contents;
    color: #fff;
    list-style: none;
    display: none;
}

}


/*==========================
 YOU MAY LIKE
===========================*/

.yl-section{
    background:#fff;
    border:1px solid #eee;
    border-radius:15px;
    padding:20px;
    box-shadow:0 3px 10px rgba(0,0,0,.05);
    position:relative;
}

.yl-header{
    margin-bottom:20px;
}

.yl-header h4{
    font-size:22px;
    font-weight:700;
    margin:0;
}

.yl-header i{
    color:#e50003;
    margin-right:8px;
}

.yl-item{
    background:#fdeff0;
    border-radius:12px;
    display:flex;
    align-items:center;
    padding:10px;
    transition:.3s;
}

.yl-item:hover{
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.yl-item img{
    width:70px;
    height:100px;
    border-radius:10px;
    object-fit:cover;
    margin-right:12px;
}

.yl-info{width:100%}

.yl-info h5{
    font-size:15px;
    font-weight:600;
    margin-bottom:3px;
}


.yl-info p{
    font-size:13px;
    color:#666;
    margin-bottom:8px;
}

.yl-rating{
    color:#444;
    font-weight:600;
    font-size:14px;
}

.yl-rating i{
    color:#ffb400;
}

/* Navigation */

.yl-slider .owl-nav button{
    width:42px;
    height:42px;
    border-radius:50%!important;
    background:#fff!important;
    box-shadow:0 3px 10px rgba(0,0,0,.15);
    position:absolute;
    top:38%;
}

.yl-slider .owl-nav .owl-prev{
    left:-22px;
}

.yl-slider .owl-nav .owl-next{
    right:-22px;
}

.yl-slider .owl-nav span{
    font-size:28px;
    color:#e50003;
    line-height:34px;
}

.yl-slider .owl-dots{
    display:none;
}


/*==========================
 SOCIAL BUTTON
==========================*/

.social-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    width:max-content;
    margin:19px auto;
    padding:10px 30px;

    background:linear-gradient(90deg,#e50003,#ff6a5f);
    color:#fff;
    border:none;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    text-decoration:none;
    position:relative;
    overflow:hidden;
    transition:all .35s ease;
    box-shadow:0 10px 25px rgba(214,0,125,.20);
}

/* Icon */

.social-btn i{
    font-size:18px;
    transition:.35s;
}

/* Shine Effect */

.social-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:45%;
    height:100%;
    background:rgba(255,255,255,.35);
    transform:skewX(-25deg);
    transition:.7s;
}

.social-btn:hover::before{
    left:150%;
}

/* Hover */

.social-btn:hover{
    color:#fff;
    text-decoration:none;
    transform:translateY(-4px) scale(1.03);
    box-shadow:0 16px 35px rgba(214,0,125,.45);
}

/* Icon Animation */

.social-btn:hover i{
    transform:rotate(-15deg) scale(1.15);
}

/* Click */

.social-btn:active{
    transform:scale(.98);
}

/*=====================================
GENERAL
=====================================*/

.btn{
    transition:.3s;
}

.btn:hover{
    transform:translateY(-2px);
}

.info-item,
.booking-card
/* .bottom-box */{
    box-shadow:0 8px 25px rgba(0,0,0,.04);
}

/*=====================================
RESPONSIVE
=====================================*/

@media(max-width:991px){

.main-photo{
    height:420px;
}

.booking-card{
    margin-top:30px;
}

.profile-content{
    margin-top:25px;
}

.bottom-box{
    margin-bottom:20px;
}

}

@media(max-width:767px){

.profile-content h1{
    font-size:34px;
}

.info-boxes .col-3{
    margin-bottom:15px;
}

.info-item{
    padding:14px;
}

.thumbs{
    overflow-x:auto;
}

.thumbs img{
    min-width:70px;
}

.booking-btn{
    margin-bottom:20px;
}

}

@media(max-width:575px){

.main-photo{
    height:350px;
}

.profile-content h1{
    font-size:28px;
}

.booking-head{
    text-align:center;
}

.price h1{
    font-size:42px;
}

.price2 h2{
    font-size:32px;
}

}


/*==========================
  TRUST SECTION
==========================*/

.trust-section{
    background:linear-gradient(90deg,#fff6f8,#fff);
    border:1px solid #f2e8eb;
    border-radius:16px;
    box-shadow:0 3px 12px rgba(0,0,0,.05);
    overflow:hidden;
}

.trust-col{
    border-right:1px solid #ececec;
}

.trust-last{
    border-right:none;
}

.trust-item{
    display:flex;
    align-items:center;
    padding:28px 25px;
    height:100%;
}

.trust-icon{
    width:56px;
    min-width:56px;
    text-align:center;
    margin-right:18px;
}

.trust-icon i{
    font-size:34px;
    color:#e50003;
}

.trust-content h5{
    margin:0 0 6px;
    font-size:20px;
    font-weight:600;
    color:#222;
}

.trust-content p{
    margin:0;
    font-size:15px;
    color:#666;
    line-height:1.5;
}

/* Tablet */

@media (max-width:991px){

    .trust-col:nth-child(2){
        border-right:none;
    }

    .trust-col:nth-child(1),
    .trust-col:nth-child(2){
        border-bottom:1px solid #ececec;
    }

}

/* Mobile */

@media (max-width:767px){

    .trust-col{
        border-right:none;
        border-bottom:1px solid #ececec;
    }

    .trust-col:last-child{
        border-bottom:none;
    }

    .trust-item{
        padding:20px;
    }

    .trust-icon{
        width:46px;
        min-width:46px;
        margin-right:15px;
    }

    .trust-icon i{
        font-size:28px;
    }

    .trust-content h5{
        font-size:18px;
    }

    .trust-content p{
        font-size:14px;
    }

}

@media only screen and (max-width: 767px) {
    
.mob-hide,.darkrow, ul.topcity {
        display: none !important;
    }
	
	
}