@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

:root {
    --font-Cinzel: "Cinzel Decorative", serif;
    --base-color: #000;
    --front-color: #5e5e5e;
    --bg-green: #f0f0f0;
    --bg-black: #000;
    --text-white: #FFF;
    --bg-white: #FFF;
    --bs-primary-rgb: #027fff;
    --bs-btn-hover: #3f9eff;
    --base-padding-btn: 0.5rem 1.4rem;
    --base-btn-small: 0.2rem 0.8rem;
    --base-border-radius: 5px;
    --base-border-radius-8: 8px;
    --base-border-radius-50: 50%;
    --base-font-500: 500;
    --base-font-800: 800;
    --base-space: 1.6rem 0 0 0;
    --font-15: 15px;
    --text-orange: #ff6c00;
    --bg-orange-light: #f69c5a;
    --bg-gray-light: #f0f0f0;
}

html, body, button, input, select, textarea, p {
    color: var(--base-color);
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-optical-sizing: auto;
    box-sizing: border-box;
    /* -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease; */
    font-weight: 400;
    font-size: 15px;
    line-height: 1.4;
}

/* ==========================================================================
   Links
   ========================================================================== */
a {
    color: var(--base-color);
    text-decoration: none;
}

    a:focus {
        outline: none;
    }

    a:hover, a:focus {
        color: var(--bg-black)
    }

    a:active, a:hover {
        outline: 0;
        text-decoration: none;
    }

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, .h5 {
    color: var(--base-color);
    font-weight: var(--base-font-500);
}

h1, .h1 {
    font-size: clamp(22px, 2.3vw, 34px);
}

h2, .h2 {
    font-size: clamp(19px, 1.6vw, 24px);
}

h3, .h3 {
    font-size: clamp(17px, 1.7vw, 28px);
}

h4, .h4 {
    font-size: clamp(16px, 1.1vw + 0.3rem, 24px);
}

h5, .h5 {
    font-size: clamp(14px, 1.2vw, 20px);
}

/* ==========================================================================
   Global
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1170px;
}

.text-blue {
    color: var(--bs-primary-rgb);
}

.page {
    padding: var(--base-space);
}

.bg-gray {
    background: #eeeff1;
}

.btn-outline-primary {
    border: solid 1px var(--bs-primary-rgb);
    color: var(--bs-primary-rgb);
    padding: var(--base-padding-btn) !important;
    border-radius: var(--base-border-radius) !important;
}

    .btn-outline-primary:hover {
        background: var(--bs-primary-rgb) !important;
        border: solid 1px var(--bs-primary-rgb) !important;
    }

.btn-primary {
    background-image: linear-gradient(to right, rgba(36, 154, 252, 1) 0%, rgba(7, 92, 243, 1) 51%, rgba(36, 154, 252, 1) 100%) !important;
    border: none;
    padding: var(--base-padding-btn);
    width: auto;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    border-radius: 50px;
}

    .btn-primary:hover {
        background-position: right center;
        color: #fff;
        text-decoration: none;
    }

    .btn-primary i {
        font-size: 18px;
        position: relative;
        top: 2px;
    }

.btn-outline-secondary {
    border: solid 1px #cdcdcd;
    color: var(--base-color);
    padding: var(--base-padding-btn);
}

    .btn-outline-secondary:hover {
        background: #dcdcdc;
        color: var(--base-color);
        border: solid 1px #dcdcdc;
    }

.btn-secondary {
    background-image: linear-gradient(to right, var(--bg-orange-light) 0%, var(--text-orange) 51%, var(--bg-orange-light) 100%) !important;
    border: none;
    padding: var(--base-padding-btn);
    width: auto;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    border-radius: 50px;
    border: none !important;
}

    .btn-secondary:hover {
        background-position: right center;
        color: #fff;
        text-decoration: none;
    }

    .btn-secondary i {
        font-size: 18px;
        position: relative;
        top: 2px;
    }

.btn-custom {
    padding: 0.5rem 0.8rem;
}

.btn-primary:focus, .btn-primary.focus {
    box-shadow: none !important;
    color: var(--text-white);
}

.form-control:focus {
    box-shadow: none !important;
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
    box-shadow: none !important;
}

.btn-yellow {
    background: #fcb401;
    border: solid 1px #fcb401;
    /*padding: 1rem;*/
}

    .btn-yellow:hover {
        background: #eda901;
        border: solid 1px #eda901;
    }

.fw-800 {
    font-weight: var(--base-font-800);
}

.heading-sm {
    font-size: 17px;
}

.heading-large {
    font-size: clamp(22px, 2.3vw, 34px);
    font-weight: var(--base-font-800);
}

.heading-small {
    font-size: clamp(17px, 1.6vw, 34px);
    font-weight: var(--base-font-800);
    margin-bottom: 0px;
}

/* ==========================================================================
   Header Css
   ========================================================================== */
header .topbar {
    background: var(--bg-white);
    padding: 0.4rem;
    margin-bottom: 0.2rem;
}

.drop-down h4 {
    font-size: 16px;
    color: #2f2f74;
    font-weight: 600;
}

.drop-down ul li {
    line-height: 2
}

    .drop-down ul li a {
        color: #4a4a4a
    }

.form-input {
    height: 55px;
}

.form-btn {
    position: absolute;
    top: 3px;
    right: 3px;
    height: 49px;
    /* background: transparent; */
    border: none;
    /* color: var(--base-color); */
    border-radius: 5px;
}

    .form-btn:hover {
        /* background: var(--bs-primary-rgb);
        color: var(--bs-primary-rgb); */
    }

    .form-btn .bi-search {
        color: #FFF;
    }

header {
    padding: 1rem 0;
    border-bottom: solid 1px #e5e5e5;
}

.menu ul {
    display: grid;
    grid-template-columns: auto auto;
}

    .menu ul li {
        padding-bottom: 0.8rem;
        padding-top: 0.8rem;
        padding-right: 0.6rem;
        padding-left: 0.6rem;
        border-radius: var(--base-border-radius);
        margin: 0.2rem 0.4rem 0.2rem 0.4rem;
    }

        .menu ul li:hover {
            background: #F0F0F0;
        }

        .menu ul li a {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .menu ul li:hover a {
            color: var(--bs-primary-rgb);
        }

        .menu ul li a:hover .bi {
            color: var(--bs-primary-rgb);
        }

        .menu ul li a img {
            max-width: 22px;
            margin-right: 8px;
            position: relative;
            top: -3px;
        }

        .menu ul li a .bi {
            color: #BFBFBF;
        }

.top-menu li {
    position: relative;
}

    .top-menu li:first-child {
        margin-right: 1.4rem;
    }

    .top-menu li > a {
        padding: 0.7rem 0.4rem;
        border-radius: var(--base-border-radius);
    }

    .top-menu li .free-label {
        position: absolute;
        background: #fddb32;
        color: var(--bg-black);
        padding: 1px 9px;
        right: -7px;
        top: -18px;
        font-size: 11px;
        border-radius: 3px;
    }

    .top-menu li .icon-user-top {
        max-width: 30px;
        background: var(--bs-primary-rgb);
        border-radius: var(--base-border-radius-50);
        color: var(--bg-white);
        padding: 6px;
        margin-right: 6px;
        font-size: 18px;
    }

    .top-menu li span {
        padding: 0 2px;
    }

    .top-menu li .top-border {
        border: solid 1px var(--bs-primary-rgb);
        border-radius: 40px;
        padding: 0.2rem 0.6rem 0.2rem 0.2rem;
        color: var(--bs-primary-rgb);
        font-size: 13px;
        font-weight: var(--base-font-500);
        display: flex;
        align-items: center;
        background: var(--bg-white);
    }

        .top-menu li .top-border a {
            color: var(--bs-primary-rgb);
        }

        .top-menu li .top-border img {
            max-width: 32px;
            background: linear-gradient(90deg,rgba(36, 154, 252, 1) 0%, rgba(7, 92, 243, 1) 100%);
            border-radius: 50px;
            padding: 6px;
            margin-right: 0.3rem;
        }
/* .top-menu li a:hover {
        background: #fcb401;
    } */

.top-login {
    border: solid 1px var(--bg-black);
    border-radius: 20px;
    padding: 0.3rem 0.2rem;
}

    .top-login .bi {
        background: #fcb401;
        padding: 0.2rem 0.4rem;
        border-radius: 50px;
    }

.search-section {
    padding: 0.5rem 1.5rem;
    position: absolute;
    z-index: 999;
    margin: 1rem 0 0 1rem;
    top: 0px;
}

    .search-section h1 {
        /*font-size: clamp(28px, 2.3vw, 34px);*/
        font-weight: 600;
        color: var(--text-white);
        margin-bottom: 0.8rem;
        min-height: 75px;
    }

        .search-section h1 span {
            color: var(--bg-white)
        }

.popular-txt span {
    font-size: 16px;
    font-weight: 600;
}

.category {
    /*display: grid;
        grid-template-columns: repeat(9,70px);
        grid-gap: 20px 62px;
        margin-left: 0.6rem;*/
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-gap: 15px 30px;
}

    .category li {
        text-align: center;
        /*display: flex;*/
        justify-content: center;
    }

        .category li .box {
            border: solid 1px #0000;
            padding: 0.6rem;
            border-radius: 20px;
            background: var(--bg-white);
            min-height: 83px;
            max-width: 100%;
            margin: 0px auto 8px auto;
            max-width: 90px;
            /* box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px; */
            transition: all 0.6s ease;
            background: linear-gradient(#FFF, #FFF) padding-box, linear-gradient( var(--angle), #FFF, #aaaaaa ) border-box;
            animation: 5s rotate linear infinite;
        }

@keyframes rotate {
    to {
        --angle: 360deg;
    }
}

@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

/* .category li .box:hover{
        box-shadow: rgba(28, 153, 255, 0.199) -3px 3px, rgba(28, 81, 255, 0.19) -10px 10px;
    } */

.category li .box img {
    max-width: 40px;
    margin-top: 0.6rem;
}

.category li p {
    margin-bottom: 0rem !important;
    color: var(--base-color);
    font-size: 14px;
    line-height: 1.2;
}

/* .category li .box:hover {
        border: solid 1px var(--base-color);
    } */

.category li:hover p {
    color: var(--bs-primary-rgb);
}

.top-rated figure img {
    border-radius: 10px;
}

.top-rated figure figcaption {
    background: #fcb401;
    color: var(--base-color);
    border-radius: var(--base-border-radius);
    text-align: center;
    padding: 0.5rem 0 0.3rem 0;
    margin-top: -0.4rem;
    margin-left: 0.3rem;
    margin-right: 0.3rem;
}

.package figure img {
    border-radius: 10px;
}

.package figure {
    position: relative;
}

    .package figure figcaption {
        position: absolute;
        bottom: 0px;
        z-index: 99;
        left: 0;
        width: 100%;
    }

        .package figure figcaption::after {
            background-image: linear-gradient(rgba(0,0,0,0.1), #000);
            width: 100%;
            height: 100px;
            position: absolute;
            content: '';
            bottom: 0px;
            left: 0px;
            z-index: 1;
            border-radius: 0 0 10px 10px;
        }

        .package figure figcaption .bi {
            font-size: 13px;
        }

        .package figure figcaption h4 {
            color: var(--text-white);
            z-index: 99;
            position: relative;
            padding-left: 10px;
        }

        .package figure figcaption p {
            color: var(--text-white);
            z-index: 99;
            position: relative;
            padding-left: 10px;
        }

.package-heading {
    background: #f3f6fd;
    text-transform: uppercase;
    padding: 1rem;
    margin-bottom: 0.8rem;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--bg-black)
}

.searchbox {
    background: var(--bg-white);
    border-radius: var(--base-border-radius);
    margin-left: 0rem !important;
}

    .searchbox input {
        height: 50px;
        border: 0px;
    }

    .searchbox select {
        height: 50px;
        border: 0px;
    }

    .searchbox .wrn-btn {
        height: 52px;
        width: 100%;
        background: var(--bs-primary-rgb);
        border: var(--bs-primary-rgb);
        color: var(--text-white);
        margin: 0.2rem 0.2rem 0.2rem -0.2rem;
        position: relative;
        z-index: 22;
        border-radius: var(--base-border-radius);
    }

        .searchbox .wrn-btn:hover {
            background: #3f9eff;
            border: #3f9eff;
        }

.bea-btn {
    background: var(--bs-primary-rgb);
    border: var(--bs-primary-rgb);
    width: 100%;
    padding: 1rem !important;
    border-radius: var(--base-border-radius) !important;
    font-size: 20px;
    color: var(--text-white);
}

.hotel--bg {
    background: url(../images/hotel1.png) no-repeat;
}

    .hotel--bg > div {
        padding: 5rem 2rem;
    }

        .hotel--bg > div h4 {
            font-size: 22px;
            color: var(--text-white);
        }

        .hotel--bg > div h2 {
            font-size: 50px;
            color: var(--text-white);
            text-transform: uppercase;
            font-weight: 600;
        }

        .hotel--bg > div p {
            color: var(--bg-white)
        }

        .hotel--bg > div .btn {
            background: #fcb401;
            border: #fcb401;
            padding: 0.6rem 1.6rem;
            color: #222267
        }

footer {
    background: #0a0d21;
    padding-top: 2.6rem;
    margin-top: 1.6rem;
}

    footer h4 {
        color: var(--bg-white)
    }

    footer ul li a {
        color: var(--bg-white) !important;
        line-height: 2.2;
        font-size: 14px;
    }

        footer ul li a:hover {
            color: #DDD;
        }

    footer .footer-bdr {
        border-top: solid 1px #14162a;
        padding-top: 1.2rem;
        margin-top: 1.6rem;
    }

        footer .footer-bdr p {
            color: var(--bg-white);
        }

.newsletter--box input {
    background: transparent;
    border: solid 1px #DDD;
    height: 45px;
    border-radius: 40px;
    width: 100%;
    padding-left: 1rem;
    color: var(--text-white);
}

    .newsletter--box input::placeholder {
        color: var(--text-white);
    }

.newsletter--box {
    position: relative;
    margin-bottom: 1rem;
}

    .newsletter--box button {
        position: absolute;
        right: 3px;
        background: var(--bs-primary-rgb);
        border: none;
        color: var(--text-white);
        padding: 0.6rem 0.8rem;
        border-radius: 50px;
        top: 2px;
    }

.dinner--section {
    background: url(../images/dinnear.jpg);
    border-radius: 10px;
    padding: 2rem 4rem;
}

    .dinner--section h2 {
        color: var(--text-white);
        text-transform: uppercase;
        font-size: 45px;
    }

        .dinner--section h2 span {
            color: #fcb401;
            font-style: italic;
        }

    .dinner--section h3 {
        color: var(--text-white);
        font-size: 25px;
        margin-bottom: 1rem;
    }

    .dinner--section .btn {
        background: #fcb401;
        border: #fcb401;
        padding: 0.5rem 1rem;
        color: #2f2f74;
    }

/* Float Shadow */
.hvr-float-shadow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    transition: all 0.3s ease;
}

    .hvr-float-shadow:before {
        pointer-events: none;
        position: absolute;
        z-index: -1;
        content: '';
        top: 100%;
        left: 5%;
        height: 10px;
        width: 90%;
        opacity: 0;
        background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
        background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
        /* W3C */
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-property: transform, opacity;
        transition-property: transform, opacity;
    }

    .hvr-float-shadow:hover, .hvr-float-shadow:focus, .hvr-float-shadow:active {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
        /* move the element up by 5px */
    }

        .hvr-float-shadow:hover:before, .hvr-float-shadow:focus:before, .hvr-float-shadow:active:before {
            opacity: 1;
            -webkit-transform: translateY(5px);
            transform: translateY(5px);
            /* move the element down by 5px (it will stay in place because it's attached to the element that also moves up 5px) */
        }


.home-product figure {
    overflow: hidden;
    border-radius: 10px;
}

    .home-product figure img {
        -webkit-transition: all 1s ease;
        -moz-transition: all 1s ease;
        -ms-transition: all 1s ease;
        -o-transition: all 1s ease;
        transition: all 1s ease;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

        .home-product figure img:hover {
            -webkit-transform: scale(1.1);
            -moz-transform: scale(1.1);
            -ms-transform: scale(1.1);
            -o-transform: scale(1.1);
            transform: scale(1.1);
        }

.bg-blue {
    background: #2f2f74;
}

.breadcrumb {
    font-size: 13px;
}

.link-box {
    display: block;
    width: 100%;
    height: 100%;
}

.hotel--box {
    background: var(--bg-white);
    border: solid 0px #dedede;
    border-radius: var(--base-border-radius);
    padding: 0.7rem;
    margin-bottom: 1rem;
    box-shadow: 0 0 5px #e8e8e8;
}

    .hotel--box img {
        border-radius: 10px;
    }

.hotel--details {
    position: relative;
}

.list-group-item .knowmore-btn {
    border-top: solid 1px #e9e9e9;
    margin-top: 1.4rem;
    padding-top: 0rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .list-group-item .knowmore-btn .btn-primary {
        width: auto;
    }

.knowmore-btn {
    border-top: solid 1px #e9e9e9;
    margin-top: 1rem;
    padding-top: 0.6rem;
}

    .knowmore-btn .btn-primary {
        width: 100%;
        margin-top: 1rem;
    }

.share-icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hotel--details h2 {
    font-size: clamp(16px, 1.7vw, 24px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 1.6rem;
    margin-bottom: 0rem;
}

.hotel--details .link {
    /* color: var(--bs-primary-rgb); */
    text-decoration: none;
    font-size: var(--font-15);
    /* white-space: nowrap; */
    overflow: hidden;
    text-overflow: ellipsis;
}

    .hotel--details .link span {
        padding-left: 1.8rem;
        position: relative;
    }

        .hotel--details .link span::after {
            content: '\F309';
            font-family: "bootstrap-icons";
            font-size: 28px;
            position: absolute;
            left: 0px;
            top: -10px;
            color: #c2c2c2;
        }

.hotel--details .star-rating .bi-star-fill {
    color: #ffc107;
    font-size: var(--font-15);
    margin-right: 0rem;
}

.hotel--details .customer-label ul {
    margin-bottom: 0px;
    padding: 0.8rem 0;
}

    .hotel--details .customer-label ul li {
        padding-left: 0.4rem;
    }

.hotel--details .customer-label .label-icon img {
    max-width: 72px;
}

.hotel--details .customer-label .label-recommanded {
    max-width: 110px;
}

.hotel--details .rating {
    background: var(--bs-primary-rgb);
    width: 45px;
    color: var(--text-white);
    border-radius: 7px 7px 7px 0;
    text-align: center;
    padding: 0.4rem;
}

.hotel--details .rating-rate {
    margin-right: 0.6rem;
}

    .hotel--details .rating-rate h3 {
        font-weight: 600;
        font-size: 16px;
        margin-bottom: 0px;
        ;
    }

    .hotel--details .rating-rate p {
        font-size: 13px;
        margin-bottom: 0px;
        ;
    }

.hotel--details .timining {
    margin-top: 0.7rem;
    font-size: 14px;
}

    .hotel--details .timining p {
        margin-bottom: 0rem;
    }

    .hotel--details .timining img {
        max-width: 14px;
        position: relative;
        top: -1px;
    }

.hotel--details .btn-blue {
    background: #2c79ff;
    /* border: solid 1px #2c79ff; */
    color: var(--bg-white);
    font-size: 13px;
    margin-top: 5px;
    border-radius: 9px;
    padding: 4px 8px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    -ms-border-radius: 9px;
    -o-border-radius: 9px;
}

    .hotel--details .btn-blue:hover {
        background: #deeaff;
        border-color: #c3d8fd;
        color: var(--bg-black);
        font-size: 13px;
    }

.hotel--details .btn-green {
    background: #1ad2a1;
    color: var(--bg-white);
    font-size: 13px;
    margin-top: 5px;
    /* border: solid 1px #8affe0; */
    border-radius: 9px;
    padding: 4px 8px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    -ms-border-radius: 9px;
    -o-border-radius: 9px;
}

    .hotel--details .btn-green:hover {
        background: #d4f6ed;
        border-color: #d4f6ed;
        color: var(--text-black);
        font-size: 13px;
    }

.hotel--details .btn-gray {
    background: #ff52cf;
    color: var(--bg-white);
    font-size: 13px;
    margin-top: 5px;
    /* border: solid 1px #ffbeed; */
    border-radius: 9px;
    padding: 4px 8px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    -ms-border-radius: 9px;
    -o-border-radius: 9px;
}

    .hotel--details .btn-gray:hover {
        background: #fbe2f4;
        border-color: #FFF;
        color: var(--text-black);
        font-size: 13px;
    }

.hotel--details .btn-yellow {
    background: #fd9d56;
    color: var(--bg-white);
    font-size: 13px;
    margin-top: 5px;
    /* border: solid 1px #ffc9a2; */
    border-radius: 9px;
    padding: 4px 8px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    -ms-border-radius: 9px;
    -o-border-radius: 9px;
}

    .hotel--details .btn-yellow:hover {
        background: #ffe9d9;
        border-color: #ffe9d9;
        color: var(--text-black);
    }

.hotel--details .bi-geo-alt-fill, .bi-clock {
    font-size: 12px;
}

.hotel--details .hotel-usp {
    margin: 0.6rem 0;
}

    .hotel--details .hotel-usp ul {
        margin-bottom: 0px;
    }

        .hotel--details .hotel-usp ul li {
            position: relative;
            padding-left: 1.6rem;
            color: #19a575;
            font-size: 13px;
            font-weight: 500;
        }

            .hotel--details .hotel-usp ul li::after {
                content: '\F633';
                font-family: "bootstrap-icons";
                position: absolute;
                left: 4px;
                top: -3px;
                font-size: 18px;
            }

.price-range-slider {
    width: 100%;
    float: left;
    padding: 10px 20px;
}

    .price-range-slider .range-value {
        margin: 0;
    }

        .price-range-slider .range-value input {
            width: 100%;
            background: none;
            color: var(--base-color);
            font-size: 16px;
            font-weight: initial;
            box-shadow: none;
            border: none;
            margin: 20px 0 20px 0;
        }

    .price-range-slider .range-bar {
        border: none;
        background: var(--bg-black);
        height: 3px;
        width: 96%;
        margin-left: 8px;
    }

        .price-range-slider .range-bar .ui-slider-range {
            background: #06b9c0;
        }

        .price-range-slider .range-bar .ui-slider-handle {
            border: none;
            border-radius: 25px;
            background: var(--bg-white);
            border: 2px solid #06b9c0;
            height: 17px;
            width: 17px;
            top: -0.52em;
            cursor: pointer;
        }

            .price-range-slider .range-bar .ui-slider-handle + span {
                background: #06b9c0;
            }

.filter--box {
    background: var(--bg-white);
    border: solid 1px #e7e7e7;
    border-radius: var(--base-border-radius);
    padding: 1rem;
}

    .filter--box h4 {
        font-size: 16px;
        padding-top: 0.7rem;
    }

.bdr {
    border-bottom: solid 1px #e7e7e7;
    padding-bottom: 1rem;
}

.customcheckbox {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    font-size: 14px;
    line-height: 1.3;
}

    .customcheckbox:hover {
        color: var(--bs-primary-rgb);
    }

    /* Hide the browser's default checkbox */
    .customcheckbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 19px;
    width: 19px;
    border: solid 1px var(--front-color);
    border-radius: var(--base-border-radius);
}

/* On mouse-over, add a grey background color */
.customcheckbox:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.customcheckbox input:checked ~ .checkmark {
    background-color: var(--bs-primary-rgb);
    border: none;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.customcheckbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.customcheckbox .checkmark:after {
    left: 7px;
    top: 2px;
    width: 6px;
    height: 11px;
    border: solid var(--bg-white);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.sortby {
    background: var(--bg-white);
    border: solid 1px #DDD;
    padding: 0.5rem;
}

    .sortby h4 {
        font-size: 14px;
        margin: 0 0.6rem;
    }

.details--bg {
    padding-top: 0.8rem;
}

    .details--bg h1 {
        font-size: clamp(19px, 2vw, 30px);
        margin-bottom: 0.6rem;
        font-weight: 600;
    }

    .details--bg .rating {
        background: #febb02;
        width: 40px;
        text-align: center;
        height: 30px;
        border-radius: var(--base-border-radius);
        line-height: 1.9;
        color: var(--base-color);
    }

    .details--bg .star {
        color: #febb02 !important;
    }

.rating-uses {
    background: var(--bg-white);
    width: auto;
    padding: 0.4rem;
    text-align: center;
    color: var(--bg-black);
}

.price h4 {
    font-weight: 600;
}

    .price h4 span {
        font-size: 13px;
    }

.price h5 {
    text-decoration: line-through;
    font-size: 14px;
    letter-spacing: 0.4px;
    color: #4a4a4a;
    font-weight: var(--base-font-500);
    margin-bottom: 0px;
}

.price p {
    color: #f0483e;
    border-bottom: dashed 1px #f0483e;
}

.btn-eqy {
    background: #f0483e;
    border: solid 1px #f0483e;
    padding: 0.7rem 1rem;
}

.carousel-control-next-icon {
    background-color: var(--text-white);
    border-radius: var(--base-border-radius-50);
    width: 32px;
    height: 32px;
    position: relative;
}

    .carousel-control-next-icon::after {
        content: '\F285';
        position: absolute;
        font-family: "bootstrap-icons";
        color: var(--base-color);
        font-size: 13px;
        top: 7px;
        left: 11px;
    }

.carousel-control-prev-icon {
    background-color: var(--text-white);
    border-radius: var(--base-border-radius-50);
    width: 32px;
    height: 32px;
    position: relative;
}

    .carousel-control-prev-icon::after {
        content: '\F284';
        position: absolute;
        font-family: "bootstrap-icons";
        color: var(--base-color);
        font-size: 13px;
        top: 7px;
        left: 9px;
    }

.carousel-control-next, .carousel-control-prev {
    width: 12%;
    opacity: 0.2;
}

.carousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel:hover .carousel-control-prev {
    opacity: 1;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: var(--base-border-radius-50);
}

.hotelslider {
    position: relative;
}

    .hotelslider .carousel-indicators {
        margin-bottom: 0.2rem !important;
    }

    .hotelslider .carousel-inner {
        border-radius: var(--base-border-radius);
    }

        .hotelslider .carousel-inner .carousel-item {
            border-radius: var(--base-border-radius);
        }

            .hotelslider .carousel-inner .carousel-item img {
                height: 270px;
                object-fit: cover;
                border-radius: var(--base-border-radius);
            }

.rounded-last {
    border-radius: 0 var(--base-border-radius) var(--base-border-radius) 0;
}
/* .sliderrightimg > div{
        padding: 0.2rem;
    } */
.sliderrightimg figure {
    margin-bottom: 0px;
    max-height: 132px;
    overflow: hidden;
    border-radius: var(--base-border-radius);
}

.sliderrightimg img {
    border-radius: var(--base-border-radius);
}

.sliderrightimg {
    position: relative;
}

    .sliderrightimg > div img {
        overflow: hidden;
        min-height: 132px;
        object-fit: cover;
        transition: 1.1s
    }

        .sliderrightimg > div img:hover {
            transform: scale(1.1);
            transition: .9s
        }

    .sliderrightimg .more-photo {
        position: absolute;
        bottom: 10px;
        left: 10px;
        background: #FFF;
        border-radius: var(--base-border-radius);
        color: #000;
        font-size: 13px;
        padding: 0.3rem 0.6rem;
        font-weight: 500;
    }

    .sliderrightimg .hidden-gallery {
        display: none;
    }

.top--store-photo > div:nth-child(1) {
    width: 50%;
}

.top--store-photo > div:nth-child(2) {
    width: 50%;
}

.space {
    --bs-gutter-y: 8px !important;
    --bs-gutter-x: 8px !important;
}

.seallphoto {
    background: var(--bg-white);
    padding: 0.3rem 0.6rem;
    border-radius: var(--base-border-radius);
    text-align: center;
    position: absolute;
    bottom: 10px;
    right: 13px;
    color: var(--base-color);
    font-size: 12px;
    z-index: 2;
}

    .seallphoto a {
        color: var(--bs-primary-rgb);
    }

.scrollspy__tab {
    position: sticky;
    top: 6rem;
    background: linear-gradient(to right, rgba(7, 92, 243, 1) 51%, rgba(36, 154, 252, 1) 100%) !important;
    z-index: 999;
}

    .scrollspy__tab ul {
        margin-bottom: 0px;
    }

        .scrollspy__tab ul li {
            padding: 1.2rem 0rem;
            font-weight: var(--base-font-500);
        }

        .scrollspy__tab ul .active {
            color: var(--bs-primary-rgb);
            background: var(--bg-white);
            border-radius: 4px;
        }

        .scrollspy__tab ul li a {
            color: var(--text-white);
            padding: 0.6rem 1rem;
        }

        .scrollspy__tab ul .active a {
            color: #fad706;
        }

.details--box {
    border: solid 1px #d7d7d7;
    border-radius: var(--base-border-radius);
    color: var(--base-color);
    font-weight: var(--base-font-500);
    margin-bottom: 1rem;
    box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
}

.details--bgs {
    background: #e7f1fd;
    padding: 0.8rem 1rem;
    font-size: clamp(16px, 1.3vw, 24px);
    border-radius: var(--base-border-radius) var(--base-border-radius) 0 0;
    font-weight: var(--base-font-500);
}

.details--content {
    padding: 1rem 1.4rem;
}

.service--off {
    margin-bottom: 0.7rem;
    padding: 0.2rem 0.4rem;
    position: relative;
}

    .service--off h3 {
        font-size: 14px;
        padding-left: 1.1rem;
        font-weight: 400;
        line-height: 1.3;
    }

    .service--off .bi-check2 {
        font-size: 24px;
        position: relative;
        top: 4px;
    }

    .service--off img {
        width: 18px;
        position: absolute;
        left: 0px;
    }

.review {
    background: #fafafa;
    border: solid 1px #e1e1ec;
    border-radius: var(--base-border-radius);
    padding: 0.8rem;
}

.tabs--details ul li .nav-link.active {
    background: linear-gradient(to right, rgba(7, 92, 243, 1) 51%, rgba(36, 154, 252, 1) 100%) !important;
}

.tabs--details ul li .nav-link {
    padding: 0.6rem 1.2rem;
    background: #e7e7e7;
    margin-right: 0.6rem;
    border-radius: 4px;
}

.review-tabs li {
    border-bottom: solid 1px #e5e7e8;
    margin-top: 1.2rem;
}

    .review-tabs li:first-child {
        padding-top: 0.8rem;
    }

    .review-tabs li:last-child {
        border-bottom: none;
    }

.review--name h4 {
    font-size: 17px;
}

.review--name p {
    font-size: var(--font-15);
    color: #717171;
}

.review--name .bi {
    font-size: 12px;
}

.review--name .bi-star-fill {
    padding-left: 0.1rem;
    font-size: 14px;
}

.review--name .star {
    color: #ffc107;
}

.bdr-space {
    border-left: solid 3px #e9eaec;
    padding-left: 1rem;
    margin-top: 1rem;
}

.left--filter {
    border: solid 1px #e7e7e7;
    border-radius: var(--base-border-radius);
    padding: 0.6rem;
}

    .left--filter h4 {
        color: #3264ff;
        font-size: 18px;
    }

.paymentmode {
    position: relative;
    padding-left: 0px;
}

    .paymentmode li {
        justify-content: flex-start;
        display: flex;
        margin-bottom: 0.6rem;
        font-weight: 400;
    }

        .paymentmode li i {
            margin-right: 0.2rem;
        }

.timming-view {
    padding-left: 0px;
}

    .timming-view li {
        justify-content: space-between;
        display: flex;
        padding-left: 0rem !important;
        padding-right: 0.3rem !important;
        margin-bottom: 0.5rem;
        color: #343434;
        font-weight: 400;
    }

        .timming-view li::after {
            display: none !important;
        }

.form--contact {
    background: #fcb401;
    padding: 1rem;
}

    .form--contact h4 {
        font-size: 18px;
    }

    .form--contact input {
        border: none;
    }

    .form--contact .btn {
        background: #2f2f74;
        border: solid 1px #2f2f74;
        height: 50px;
    }

.star--rating .bi {
    font-size: 18px;
    color: #fad706;
}

.btn-submit {
    background: #2f2f74;
    border: solid 1px #2f2f74;
    padding: 0.8rem 2rem;
}

.reviewbox .bi {
    padding: 2px;
    color: #b3b3b3;
}

.text-primary {
    color: var(--bs-primary-rgb) !important;
}

.leftview {
    padding: 0rem;
    position: sticky;
    top: 5.5rem;
    box-shadow: 0 3px 5px #DDD;
    border-radius: 10px;
    padding: 1rem 0 0.5rem 0;
    background: #2f2f74 !important;
}

    .leftview i {
        color: #f58634;
        font-size: 16px !important;
    }

    .leftview ul li {
        border-bottom: solid 0px #d7d7d7;
        display: flex;
        margin-bottom: 0.4rem;
    }

        .leftview ul li a {
            margin: 0 0rem 0 1.2rem;
            padding: 0.5rem 1rem;
            width: 100%;
            font-size: var(--font-15);
            color: var(--text-white);
            font-weight: 400;
        }

        .leftview ul li:last-child {
            border-bottom: none;
        }

        .leftview ul li i {
            margin-right: 0.6rem;
            font-size: 20px;
        }

        .leftview ul li a:hover {
            color: var(--bg-black) !important;
            background: #f1f1f1;
            border-radius: 40px 0 0 40px;
        }

            .leftview ul li a:hover i {
                color: #7a40f6;
            }

        .leftview ul li .active {
            color: var(--base-color);
            font-weight: var(--base-font-500);
            background: var(--bg-white);
            border-radius: 40px 0 0 40px;
        }

            .leftview ul li .active i {
                color: #f58634;
            }

    .leftview .profileicon {
        font-size: 16px;
        background: #F0F0F0;
        max-width: 40px;
        width: 40px;
        height: 40px;
        margin-left: 1.2rem;
        margin-right: 0.6rem;
        text-align: center;
        align-items: center;
        justify-content: center;
        display: flex;
        border-radius: 50px;
    }

    .leftview .proflename {
        font-size: 13px;
        color: var(--bg-white) !important;
        line-height: 1.3;
        margin-left: 0.2rem;
    }

        .leftview .proflename span {
            font-size: 14px;
            color: var(--text-white);
        }


.check-mark li {
    background: url(../images/check-mark.png) no-repeat;
    padding-left: 2rem;
    padding-bottom: 1rem;
}

.signup--box input {
    border: solid 1px #d4d7da;
    height: 50px;
    padding: 0.6rem 1rem;
}

.signup--box > .btn {
    background: #2f2f74;
    border: #2f2f74;
    padding: 1rem;
    border-radius: 0px;
}

.howit-bg {
    background: #001741;
    padding: 2.5rem 0;
}

    .howit-bg p {
        color: var(--bg-white)
    }

    .howit-bg .bi {
        color: #ff6c00
    }

    .howit-bg .btn {
        background: var(--bg-white);
        border: solid 1px var(--bg-white);
        color: var(--base-color);
        padding: 0.8rem 2rem;
        border-radius: 50px;
    }

.rating-bdr {
    position: relative;
}

    .rating-bdr::after {
        border-right: solid 1px #e3e3e3;
        width: 1px;
        height: 90px;
        content: '';
        right: 10%;
        top: 2%;
        position: absolute;
    }

.rating > input {
    display: none;
}

.rating > label:before {
    margin: 0 5px;
    font-size: 38px;
    font-family: FontAwesome;
    display: inline-block;
    content: "\f005";
}

.rating > .half:before {
    content: "\f089";
    position: absolute;
}

.rating > label {
    color: #ddd;
    float: right;
}

.rating-box {
    display: inline-block;
    margin-bottom: 0.6rem;
}

    .rating-box .rating-container {
        direction: rtl !important;
    }

        .rating-box .rating-container label {
            display: inline-block;
            margin: 0;
            color: #d4d4d4;
            cursor: pointer;
            font-size: 36px;
            transition: color 0.2s;
            line-height: 0;
            padding: 1rem 0;
        }

        .rating-box .rating-container input {
            display: none;
        }

            .rating-box .rating-container label:hover, .rating-box .rating-container label:hover ~ label, .rating-box .rating-container input:checked ~ label {
                color: #ff6e00 !important;
            }

.ui.selection.dropdown {
    line-height: 2rem !important;
}

.icon {
    top: 1.2rem !important;
}

.ui.fluid.dropdown {
    border: none !important;
}


.view-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 0;
    padding-left: 1.4rem;
}

.item.list-group-item {
    float: none;
    width: 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 0rem;
    border: 0;
}

    .item.list-group-item .img-event {
        float: left;
        width: 33%;
        /* background: var(--bg-white); */
    }

    .item.list-group-item .thumbnail .card-body .hotel--details > .row > div:nth-child(1) {
        width: 100% !important;
    }

    .item.list-group-item .thumbnail .card-body .hotel--details > .row > div:nth-child(2) {
        width: 25% !important;
    }

.list-group-item .hotel-img {
    object-fit: cover;
    object-position: center;
    border-radius: var(--base-border-radius-8) 0 0 var(--base-border-radius-8);
}

.hotel-img {
    border-radius: var(--base-border-radius-8) var(--base-border-radius-8) 0 0;
}

.img-event figure {
    position: relative;
    margin-bottom: 0px;
    padding: 0.6rem;
}

    .img-event figure img {
        height: 230px;
        object-fit: cover;
    }

.ads-box {
    background: #e5f2ff !important;
    border: solid 1px #b6d8fb !important;
}

.ads-label {
    position: absolute;
    top: 0px;
    right: 0px;
    background: #fddb32;
    padding: 2px 10px;
    border-radius: 3px;
    margin: 10px 10px 5px 0px;
    font-size: 12px;
    letter-spacing: 0.8x;
    color: var(--base-color);
    z-index: 1;
}



.status-badge-gold {
    position: absolute;
    right: 10px;
    top: -10px;
    width: 100px;
    height: auto;
    background: #fff8eb;
    border: 3px solid #e0b96a;
    border-radius: 18px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 9;
}
.status-badge-gold h3 {
	margin: 0;
	font-size: 12px;
	color: #080708;
}
.status-badge-silver {
    position: absolute;
    right: 10px;
    top: -10px;
    width: 100px;
    height: auto;
    background: #E5E4E2;
    border: 3px solid #e0b96a;
    border-radius: 18px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 9;
}

.status-badge-silver h3 {
	margin: 0;
	font-size: 12px;
	color: #080708;
}

.badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 0 0 4px rgba(255,255,255,.4);
}

    .badge img {
        width: 55px;
        height: 55px;
    }

.lock {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #d9d9d9;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 48px;
    margin: 10px 0;
    box-shadow: inset 0 0 0 4px rgba(255,255,255,.5);
}

.unlock-title {
    font-weight: bold;
    font-size: 11px;
    margin-top: 4px;
    text-align: center;
}

.unlock-sub {
    font-size: 10px;
    color: #666;
    text-align: center;
    margin-top: 4px;
}

.featured-tag{
    position: absolute;
    top: 0px;
    background: #FFF;
    padding: 0.2rem 0.6rem;
    margin: 0.3rem;
    border-radius: 3px;
}

.item.list-group-item .list-group-image {
    margin-right: 10px;
}

.item.list-group-item .thumbnail {
    margin-bottom: 1.8rem;
    display: inline-block;
    border-radius: var(--base-border-radius-8);
    border: solid 1px #e0e0e0;
    padding-bottom: 0.3rem;
}

.thumbnail .lineclamp {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 14px;
}

.item.list-group-item .caption {
    float: left;
    width: 67%;
    margin: 0;
    padding-left: 1rem;
}

.item.list-group-item:before, .item.list-group-item:after {
    display: table;
    content: " ";
}

.item.list-group-item:after {
    clear: both;
}

.filter-tabs {
    background: var(--bg-white);
    /* box-shadow: 0 0 5px #DDD; */
    position: relative;
    /* background: #f1f1f1; */
    box-shadow: 0 0 5px #cfcaca;
    padding-bottom: 0rem;
}

    .filter-tabs .collapsible {
        background-color: var(--bg-white);
        color: #777;
        cursor: pointer;
        padding: 10px;
        width: 100%;
        border: none;
        text-align: center;
        outline: none;
        font-size: var(--font-15);
    }

    .filter-tabs .active, .collapsible:hover {
        background-color: #555;
        color: var(--bg-white)
    }

    .filter-tabs .content {
        padding: 10px 0;
        display: none;
        overflow: hidden;
        background-color: var(--text-white);
    }

.filterbox {
    /* border-bottom: solid 1px #edebeb;
        padding-bottom: 1rem */
}

.right__box {
    box-shadow: 0 0 5px #DDD;
    background: var(--bg-white);
    padding: 1rem 0.6rem;
    text-align: center;
    border-radius: 10px;
}

.box--img img {
    border-radius: var(--base-border-radius-50);
    max-width: 70px;
}

.box--img h4 {
    font-size: 14px;
    margin-bottom: 1rem;
}

.premium-listing-box {
    background: #fddb32;
    border-radius: var(--base-border-radius-8);
    padding: 1.4rem 2rem 0.8rem 2rem;
    margin-bottom: 1.2rem;
}

.ads-hotel-box {
    background: #ffc091;
    border: solid 1px #ff6c00;
    border-radius: var(--base-border-radius-8);
    padding: 1.4rem 2rem 0.8rem 2rem;
    margin-bottom: 1.2rem;
}

.hotelads {
    padding-bottom: 0.8rem;
}

    .hotelads .slick-slide {
        margin: 0 0.6rem;
    }

.premium-ads-box {
    background: var(--bg-white);
    border-radius: var(--base-border-radius-8);
}

    .premium-ads-box figure {
        margin-bottom: 0.2rem;
    }

        .premium-ads-box figure img {
            border-radius: var(--base-border-radius-8) var(--base-border-radius-8) 0 0;
        }

    .premium-ads-box .premium-ads-box-space {
        padding: 0.5rem 0.8rem 0.8rem 0.8rem;
    }

        .premium-ads-box .premium-ads-box-space h2 {
            font-size: 18px;
            font-weight: var(--base-font-500);
            margin-bottom: 0.3rem;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 1;
            overflow: hidden;
        }

        .premium-ads-box .premium-ads-box-space .star-rating {
            color: #ffc107;
            font-size: var(--font-15);
            margin-bottom: 0.3rem;
        }

        .premium-ads-box .premium-ads-box-space .address {
            font-size: 14px;
            color: var(--base-color);
        }

        .premium-ads-box .premium-ads-box-space .enquiry-box {
            margin-top: 1.2rem;
        }

            .premium-ads-box .premium-ads-box-space .enquiry-box .verified {
                background: linear-gradient(120deg, rgb(36, 154, 252) 0%, rgb(7, 92, 243) 100%) !important;
                color: var(--bg-white);
                padding: 0.4rem 0.8rem;
                font-size: 13px;
                font-weight: var(--base-font-500);
                border-radius: var(--base-border-radius);
                display: flex;
                align-items: center;
            }

                .premium-ads-box .premium-ads-box-space .enquiry-box .verified img {
                    max-width: 12px;
                    margin-right: 0.3rem;
                }

            .premium-ads-box .premium-ads-box-space .enquiry-box .recommended {
                background: var(--bg-white);
                color: var(--bs-primary-rgb);
                border: solid 1px var(--bs-primary-rgb);
                padding: 0.4rem 0.8rem;
                font-size: 13px;
                font-weight: var(--base-font-500);
                color: var(--bs-primary-rgb);
                border-radius: var(--base-border-radius);
                display: flex;
                align-items: center;
            }

                .premium-ads-box .premium-ads-box-space .enquiry-box .recommended:hover {
                    background: var(--bs-primary-rgb);
                    color: var(--bg-white);
                    transition: all 0.6s ease;
                }

                .premium-ads-box .premium-ads-box-space .enquiry-box .recommended svg {
                    width: 15px;
                    margin-right: 0.2rem;
                }

.bs-font {
    font-size: 11px;
}

.cursor {
    cursor: pointer;
    padding: 0.5rem 0.9rem;
    font-weight: 400;
    font-size: var(--font-15);
    color: var(--base-color);
    background: var(--bg-white);
}

.btn-group {
    border: solid 1px #e0e0e0;
    border-radius: var(--base-border-radius);
}

    .btn-group #list {
        border-right: solid 1px #DDD;
    }

    .btn-group .active {
        color: var(--bs-primary-rgb);
        background: #EAF1F9;
    }

    .btn-group .bi {
        font-size: 14px;
    }

.search-input {
    border: solid 1px #DDD;
    width: 98%;
    font-size: 13px;
    height: 35px;
    border-radius: 4px;
    padding-left: 0.5rem;
}

.top__tabs {
}

.filterbox {
    /* overflow: auto;
        position: relative;
        width: 100%;
        max-width: 100%;
        height: 184px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        font-size: 14px;
        margin-top: 0rem;
        border: none;
        padding-top: 0.3rem;
        border-bottom: solid 1px #e6e6e6; */
}

.locality-scroller {
    overflow: auto;
    position: relative;
    width: 96%;
    max-width: 100%;
    height: 236px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 14px;
    margin-top: 0rem;
    border: none;
    padding-top: 0.3rem;
    /* border-bottom: solid 1px #e6e6e6; */
    padding-bottom: 1rem;
}

.filter_scroller {
    overflow: auto;
    position: relative;
    width: 96%;
    max-width: 100%;
    height: 236px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 14px;
    margin-top: 0rem;
    border: none;
    padding-top: 0.3rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    padding-right: 0.5rem;
}

.accordion-body {
    padding: 0.8rem 0.2rem 0.8rem 1rem !important;
}

.accordion-button {
    padding: 0.9rem 1rem !important;
}

    .accordion-button::after {
        background-size: 16px;
    }

    .accordion-button:not(.collapsed)::after {
        right: 5px !important;
        position: relative !important;
    }

.clearall {
    font-size: 13px;
    color: var(--bs-primary-rgb);
}

.filter-search-box {
    position: relative;
    margin-bottom: 0.8rem;
}

    .filter-search-box .bi {
        position: absolute;
        top: 13px;
        left: 13px;
        font-size: 14px;
    }

#area_search {
    max-width: 95% !important;
    height: 46px;
    border-radius: var(--base-border-radius);
    border: solid 1px #c4c4c4;
    padding-left: 2.1rem;
    font-size: var(--font-15);
}

.mCustomScrollbar {
    -ms-touch-action: pinch-zoom;
    touch-action: pinch-zoom; /* direct pointer events to js */
}

    .mCustomScrollbar.mCS_no_scrollbar, .mCustomScrollbar.mCS_touch_action {
        -ms-touch-action: auto;
        touch-action: auto;
    }

.mCustomScrollBox { /* contains plugin's markup */
    position: relative;
    overflow: hidden;
    height: 100%;
    max-width: 100%;
    outline: none;
    direction: ltr;
}

.mCSB_container { /* contains the original content */
    overflow: hidden;
    width: auto;
    height: auto;
    padding-left: 0.3rem;
}


.mCSB_inside > .mCSB_container {
    margin-right: 30px;
}

.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
    margin-right: 0;
}
/* non-visible scrollbar */

.mCS-dir-rtl > .mCSB_inside > .mCSB_container { /* RTL direction/left-side scrollbar */
    margin-right: 0;
    margin-left: 30px;
}

    .mCS-dir-rtl > .mCSB_inside > .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
        margin-left: 0;
    }
/* RTL direction/left-side scrollbar */

.mCSB_scrollTools { /* contains scrollbar markup (draggable element, dragger rail, buttons etc.) */
    position: absolute;
    width: 16px;
    height: auto;
    left: auto;
    top: 0;
    right: 0;
    bottom: 0;
}

.mCSB_outside + .mCSB_scrollTools {
    right: -26px;
}
/* scrollbar position: outside */

.mCS-dir-rtl > .mCSB_inside > .mCSB_scrollTools,
.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools { /* RTL direction/left-side scrollbar */
    right: auto;
    left: 0;
}

.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
    left: -26px;
}
/* RTL direction/left-side scrollbar (scrollbar position: outside) */

.mCSB_scrollTools .mCSB_draggerContainer { /* contains the draggable element and dragger rail markup */
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: auto;
}

.mCSB_scrollTools a + .mCSB_draggerContainer {
    margin: 20px 0;
}

.mCSB_scrollTools .mCSB_draggerRail {
    width: 5px;
    height: 100%;
    margin: 0 auto;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
}

.mCSB_scrollTools .mCSB_dragger { /* the draggable element */
    cursor: pointer;
    width: 100%;
    height: 30px; /* minimum dragger height */
    z-index: 1;
}

    .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar { /* the dragger element */
        position: relative;
        width: 5px;
        height: 100%;
        margin: 0 auto;
        -webkit-border-radius: 16px;
        -moz-border-radius: 16px;
        border-radius: 16px;
        text-align: center;
    }

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
    width: 12px; /* auto-expanded scrollbar */
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    width: 8px; /* auto-expanded scrollbar */
}

.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown {
    display: block;
    position: absolute;
    height: 20px;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    cursor: pointer;
}

.mCSB_scrollTools .mCSB_buttonDown {
    bottom: 0;
}


/* default theme ("light") */

.mCSB_scrollTools {
    opacity: 0.75;
    filter: "alpha(opacity=75)";
    -ms-filter: "alpha(opacity=75)";
}

.mCS-autoHide > .mCustomScrollBox > .mCSB_scrollTools,
.mCS-autoHide > .mCustomScrollBox ~ .mCSB_scrollTools {
    opacity: 0;
    filter: "alpha(opacity=0)";
    -ms-filter: "alpha(opacity=0)";
}

.mCustomScrollbar > .mCustomScrollBox > .mCSB_scrollTools.mCSB_scrollTools_onDrag,
.mCustomScrollbar > .mCustomScrollBox ~ .mCSB_scrollTools.mCSB_scrollTools_onDrag,
.mCustomScrollBox:hover > .mCSB_scrollTools,
.mCustomScrollBox:hover ~ .mCSB_scrollTools,
.mCS-autoHide:hover > .mCustomScrollBox > .mCSB_scrollTools,
.mCS-autoHide:hover > .mCustomScrollBox ~ .mCSB_scrollTools {
    opacity: 1;
    filter: "alpha(opacity=100)";
    -ms-filter: "alpha(opacity=100)";
}

.mCSB_scrollTools .mCSB_draggerRail {
    background-color: var(--bg-black);
    background-color: rgba(0,0,0,0.4);
    filter: "alpha(opacity=40)";
    -ms-filter: "alpha(opacity=40)";
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: var(--text-white);
    background-color: rgba(255,255,255,0.75);
    filter: "alpha(opacity=75)";
    -ms-filter: "alpha(opacity=75)";
}


#half-stars-example {
}

    #half-stars-example .rating-group {
        display: inline-flex;
    }

    #half-stars-example .rating__icon {
        pointer-events: none;
    }

    #half-stars-example .rating__input {
        position: absolute !important;
        left: -9999px !important;
    }

    #half-stars-example .rating__label {
        cursor: pointer;
        /* if you change the left/right padding, update the margin-right property of .rating__label--half as well. */
        padding: 0 0.1em;
        font-size: 2.3rem;
    }

    #half-stars-example .rating__label--half {
        padding-right: 0;
        margin-right: -0.6em;
        z-index: 2;
        display: none;
    }

    #half-stars-example .rating__icon--star {
        color: #ffd700;
    }

    #half-stars-example .rating__icon--none {
        color: #eee;
    }

    #half-stars-example .rating__input--none:checked + .rating__label .rating__icon--none {
        color: red;
    }

    #half-stars-example .rating__input:checked ~ .rating__label .rating__icon--star {
        color: #ddd;
    }

    #half-stars-example .rating-group:hover .rating__label .rating__icon--star,
    #half-stars-example .rating-group:hover .rating__label--half .rating__icon--star {
        color: #ffd700;
    }

    #half-stars-example .rating__input:hover ~ .rating__label .rating__icon--star,
    #half-stars-example .rating__input:hover ~ .rating__label--half .rating__icon--star {
        color: #ddd;
    }

    #half-stars-example .rating-group:hover .rating__input--none:not(:hover) + .rating__label .rating__icon--none {
        color: #eee;
    }

    #half-stars-example .rating__input--none:hover + .rating__label .rating__icon--none {
        color: red;
    }

.bdr-rating a {
    border: solid 1px #444444;
    padding: 0.6rem 1rem;
    border-radius: 50px;
    float: left;
    margin-right: 0.4rem;
    margin-bottom: 0.6rem;
}

    .bdr-rating a:hover {
        background: #444444;
        color: var(--text-white);
    }

.bdr-rating .active {
    background: #444444;
    color: var(--text-white);
}

.cross-body {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    z-index: 999;
    position: absolute;
    top: 0px;
}

    .cross-body .cross {
        border: solid 0px #444;
        border-radius: var(--base-border-radius-50);
        margin: 0rem;
        padding: 0rem;
        font-size: 16px;
        opacity: 1;
        position: relative;
        top: 1rem;
        right: 1rem;
    }

/* Slider */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

    .slick-list:focus {
        outline: none;
    }

    .slick-list.dragging {
        cursor: pointer;
        cursor: hand;
    }

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

    .slick-track:before,
    .slick-track:after {
        display: table;
        content: '';
    }

    .slick-track:after {
        clear: both;
    }

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    /* height: 100%; */
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 36px;
    height: 36px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: var(--bg-white);
    box-shadow: 0 0 5px #DDD;
    border-radius: var(--base-border-radius-50);
}

    .slick-prev:hover,
    .slick-prev:focus,
    .slick-next:hover,
    .slick-next:focus {
        color: transparent;
        outline: none;
        background: var(--bg-white);
    }

        .slick-prev:hover:before,
        .slick-prev:focus:before,
        .slick-next:hover:before,
        .slick-next:focus:before {
            opacity: 1;
        }

    .slick-prev.slick-disabled:before,
    .slick-next.slick-disabled:before {
        opacity: .25;
    }

    .slick-prev:before,
    .slick-next:before {
        /* font-family: "bootstrap-icons"; */
        font-size: 14px;
        line-height: 1;
        opacity: .75;
        color: var(--base-color);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

.slick-prev {
    left: -15px;
    z-index: 99;
}

[dir='rtl'] .slick-prev {
    right: -25px;
    left: auto;
}

.slick-prev:before {
    content: '\F284';
    font-family: "bootstrap-icons";
}

[dir='rtl'] .slick-prev:before {
    content: '\F285';
}

.slick-next {
    right: -15px;
}

[dir='rtl'] .slick-next {
    right: auto;
    left: -25px;
}

.slick-next:before {
    content: '\F285';
    font-family: "bootstrap-icons";
}

[dir='rtl'] .slick-next:before {
    content: '\F284';
}

/* Dots */
.slick-dotted.slick-slider {
    margin-bottom: 0px;
}

.slick-dots {
    position: absolute;
    bottom: 10px;
    display: block;
    width: auto;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    right: 1rem;
}

    .slick-dots li {
        position: relative;
        display: inline-block;
        width: 20px;
        height: 20px;
        margin: 0;
        padding: 0;
        cursor: pointer;
    }

        .slick-dots li button {
            font-size: 0;
            line-height: 0;
            display: block;
            width: 20px;
            height: 20px;
            padding: 5px;
            cursor: pointer;
            color: transparent;
            border: 0;
            outline: none;
            background: transparent;
        }

            .slick-dots li button:hover,
            .slick-dots li button:focus {
                outline: none;
            }

                .slick-dots li button:hover:before,
                .slick-dots li button:focus:before {
                    opacity: 1;
                }

            .slick-dots li button:before {
                font-family: 'slick';
                font-size: 46px;
                line-height: 20px;
                position: absolute;
                top: 0;
                left: 0;
                width: 20px;
                height: 20px;
                content: '•';
                text-align: center;
                opacity: .25;
                color: var(--text-white);
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
            }

        .slick-dots li.slick-active button:before {
            opacity: .75;
            color: var(--text-white);
        }

.slider-search {
    width: 100%;
    display: inline-block;
    background-size: cover !important;
    background-position: right center !important;
    border-radius: 10px;
    min-height: 235px;
    position: relative;
    overflow: hidden !important;
}

    .slider-search::after {
        position: absolute;
        left: 0px;
        bottom: 0px;
        width: 100%;
        content: '';
        height: 350px;
        background: linear-gradient(90deg, rgba(98,109,127,1) 50%, rgba(255,255,255,0) 60%, rgba(255,255,255,0) 100%);
        z-index: 1;
        border-radius: 10px;
    }

.bdr-right {
    border-right: solid 1px #ebebeb;
}

.offcanvas {
    /*top: 1rem !important;
        right: 1rem !important;
        bottom: 1rem !important;
        border-radius: 15px !important;*/
    width: 45% !important;
    min-width: 600px;
}

.offcanvas-header {
    background: var(--bs-primary-rgb);
    border-radius: 0;
    color: var(--text-white);
    padding: 0.6rem 2rem 0.6rem 2rem;
}

.offcanvas-body {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
}

.offcanvas-header .btn-close {
    position: relative;
    background: none;
}

    .offcanvas-header .btn-close::after {
        content: '\F659';
        position: absolute;
        font-family: "bootstrap-icons";
        font-size: 18px;
        top: 4px;
        right: 10px;
    }

/*.searchbox > .row > .col-lg-5{
        width: 44.66666667%;
    }
    .searchbox > .row > .col-lg-2{
        width: 10.66666667%;
    }*/

.searchbox > .row > div:nth-child(1) {
    width: 43%;
}

.searchbox > .row > div:nth-child(2) {
    width: 43%;
}

.searchbox > .row > div:nth-child(3) {
    width: 14%;
}

.tour-block {
    margin-right: 10px;
    background-size: cover !important;
    height: 100%;
    width: 100%;
    min-height: 154px;
    border-radius: 10px;
}

    .tour-block figure {
        position: relative;
        margin-bottom: 0px;
    }

        .tour-block figure img {
            border-radius: var(--base-border-radius-8);
        }

        .tour-block figure figcaption > h4 {
            color: var(--text-white);
            margin-bottom: 0.6rem;
        }

        .tour-block figure figcaption > p {
            color: var(--text-white);
            margin-bottom: 0.6rem;
            font-size: 14px;
        }

        .tour-block figure figcaption {
            position: absolute;
            bottom: 0px;
            top: 0px;
            height: 100%;
            padding: 1.4rem 1rem 1rem 1.5rem;
        }

.tour-two .textp {
    font-size: 14px;
}

.tour-two {
    padding: 1rem;
    border-radius: 10px;
    min-height: 155px;
    margin-left: 20px;
}

.tourslider .slick-slide {
    margin: 0px 0;
}

.wedding-block {
    background: var(--bg-green);
    padding: 2.5rem 0;
    margin: 2.5rem 0;
}

.hotel-block {
    border: solid 1px #e3e5e8;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}

.home-category .slick-slide {
    margin: 0px 8px;
}
/* .hotel-block-info{
        transition: all 0.6s ease;
    }
    .hotel-block-info figure{
        margin-bottom: 0px;
    }
    .hotel-block-info .hotel-block-box{
        padding: 0.6rem;
    }
    .hotel-block-info .hotel-block-box svg{
        width: 11px;
        position: relative;
        top: -1px;
    }
    .hotel-block-info:hover{
        background: #F69C5A;
        transition: all 0.6s ease;
    } */
.block-info {
    text-align: start;
    border: solid 1px #e3e5e8;
    border-radius: 10px;
    box-shadow: 0 0px 3px #e7e7e7;
    transition: all 1s ease;
}

    .block-info .block-space {
        padding: 0.8rem 1.2rem;
        background: var(--bg-white);
        border-radius: 0 0 8px 8px;
        border: solid 0px #DDD;
        transition: all 1s ease;
    }

        .block-info .block-space h5 {
            color: var(--bg-black);
            font-weight: 600;
            font-size: 17px;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 1;
            overflow: hidden;
            margin-bottom: 0.3rem;
        }

        .block-info .block-space a {
            color: var(--text-orange);
            font-size: 14px;
            font-weight: var(--base-font-500);
        }

            .block-info .block-space a svg {
                width: 11px !important;
                position: relative;
                top: -1px;
            }

    .block-info:hover .block-space {
        background: var(--text-orange);
        /* background: linear-gradient(90deg,rgba(246, 156, 90, 1) 0%, rgba(255, 108, 0, 1) 100%); */
        transition: all 1s ease;
    }

        .block-info:hover .block-space h5 {
            color: var(--bg-white);
        }

        .block-info:hover .block-space a {
            color: var(--bg-white);
        }

    .block-info figure {
        margin-bottom: 0rem;
        overflow: hidden;
        transition: all 0.6s ease;
        border-radius: var(--base-border-radius-8) var(--base-border-radius-8) 0 0;
    }

    .block-info:hover figure img {
        transform: scale(1.1);
        transition: 0.9s;
    }
    /* .block-info:hover h5{
        color: var(--bs-primary-rgb);
        transition: all 0.6s ease;
    } */
    .block-info img {
        border-radius: 0;
        transition: all 0.6s ease;
    }

.property-box figure {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

    .property-box figure img {
        transition: 1.1s;
    }

.property-box:hover figure img {
    transform: scale(1.1);
    transition: 0.9s;
}

.property-box figure figcaption {
    position: absolute;
    top: 0px;
    color: var(--text-white);
    padding: 1rem;
    width: 100%;
}

    .property-box figure figcaption h5 {
        z-index: 111;
        position: relative;
        color: var(--bg-white);
    }

    .property-box figure figcaption::after {
        position: absolute;
        left: 0px;
        top: 0px;
        width: 100%;
        content: '';
        height: 80px;
        background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.9) 100%);
        z-index: 1;
        border-radius: 10px;
    }

.property-box figure a {
    position: absolute;
    z-index: 999;
    bottom: 0px;
    left: 0px;
    margin: 1rem !important;
    padding: var(--base-btn-small) !important;
    background: var(--bs-blue);
    border-color: var(--bs-blue);
    color: var(--bg-white);
}

.property-box:hover figure a {
    background: var(--bg-black) !important;
    color: var(--bg-white) !important;
    border-color: var(--bg-black) !important;
}

.text-para h2 {
    font-weight: 700;
}

.text-para h4 {
    font-weight: 700;
}

.text-para p {
    font-size: 14px;
    color: var(--front-color);
    line-height: 22px;
}

.business-list {
    border: solid 1px #dfe5ed;
    border-radius: var(--base-border-radius-8);
    padding: 1.4rem;
    min-height: 345px;
}
    /* .business-list:hover{
        background: linear-gradient(90deg, rgb(7, 92, 243) 0%, rgb(36, 154, 252) 100%);
        border: none;
    } 
    .business-list:hover figure img{
        background: var(--bg-white);
        border-radius: var(--base-border-radius-50);
        padding: 4px;
    }
    .business-list:hover h2{
        color: var(--bg-white);
    }
    .business-list:hover h3{
        color: var(--bg-white);
    }
    .business-list:hover p{
        color: var(--bg-white);
    }*/
    .business-list h2 {
        font-size: clamp(18px, 1.2vw, 24px);
        color: var(--bs-primary-rgb);
    }

    .business-list img {
        max-width: 40px;
    }

    .business-list h2 {
        font-weight: 600;
    }

    .business-list h3 {
        font-size: 15px !important;
        line-height: 1.3;
    }

    .business-list p {
        font-size: 13px;
        color: var(--front-color);
        line-height: 19px;
        margin-bottom: 0px;
    }

.slider .slick-arrow {
    opacity: 0;
}

.slider:hover .slick-arrow {
    opacity: 1;
}

.tetimonial .slick-next {
    right: -10px;
}

.tetimonial .slick-prev {
    left: -10px;
    z-index: 99;
}

.textimonial-home {
    margin-bottom: 3rem;
    padding: 2rem 0 2rem 0 !important;
    border-bottom: solid 1px #e6e6e6;
}

    .textimonial-home .testimonial-block {
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
        border: solid 1px #e5e5e6;
        border-bottom: none;
        margin-bottom: 2rem;
        border-radius: var(--base-border-radius-8);
    }

        .textimonial-home .testimonial-block > div {
            padding: 1.6rem;
            margin: 0 0.6rem;
        }

        .textimonial-home .testimonial-block .bi-star-fill {
            color: #ffc107;
            margin-right: 0.3rem;
            font-size: 19px;
        }

        .textimonial-home .testimonial-block .userimg {
            border-radius: var(--base-border-radius-50);
            background: #e9f1fc;
            color: var(--bs-primary-rgb);
            width: 56px;
            height: 56px;
            margin-right: 0.8rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .textimonial-home .testimonial-block h5 {
            margin-bottom: 0px;
        }

    .textimonial-home .slick-slide {
        margin: 0px 8px;
    }

    .textimonial-home .testimonial-block .bdrstar {
        padding-bottom: 0.4rem;
    }

        .textimonial-home .testimonial-block .bdrstar i {
            padding-right: 0px;
            font-size: 18px;
        }

    .textimonial-home .testimonial-block .bdrtop {
        border-top: solid 1px #e5e5e5;
        padding-top: 1.4rem;
        margin-top: 1.4rem;
    }

/*Vertical Sliding*/
.slidingVertical {
    display: inline;
    text-indent: 8px;
}

    .slidingVertical span {
        animation: topToBottom 12.5s linear infinite 0s;
        -ms-animation: topToBottom 12.5s linear infinite 0s;
        -webkit-animation: topToBottom 12.5s linear infinite 0s;
        color: var(--bs-primary-rgb);
        opacity: 0;
        overflow: hidden;
        position: absolute;
        left: 14px;
    }

        .slidingVertical span:nth-child(2) {
            animation-delay: 2.5s;
            -ms-animation-delay: 2.5s;
            -webkit-animation-delay: 2.5s;
        }

        .slidingVertical span:nth-child(3) {
            animation-delay: 5s;
            -ms-animation-delay: 5s;
            -webkit-animation-delay: 5s;
        }

        .slidingVertical span:nth-child(4) {
            animation-delay: 7.5s;
            -ms-animation-delay: 7.5s;
            -webkit-animation-delay: 7.5s;
        }

        .slidingVertical span:nth-child(5) {
            animation-delay: 10s;
            -ms-animation-delay: 10s;
            -webkit-animation-delay: 10s;
        }

/*topToBottom Animation*/
@-moz-keyframes topToBottom {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 0;
        -moz-transform: translateY(-50px);
    }

    10% {
        opacity: 1;
        -moz-transform: translateY(0px);
    }

    25% {
        opacity: 1;
        -moz-transform: translateY(0px);
    }

    30% {
        opacity: 0;
        -moz-transform: translateY(50px);
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes topToBottom {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 0;
        -webkit-transform: translateY(-50px);
    }

    10% {
        opacity: 1;
        -webkit-transform: translateY(0px);
    }

    25% {
        opacity: 1;
        -webkit-transform: translateY(0px);
    }

    30% {
        opacity: 0;
        -webkit-transform: translateY(50px);
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@-ms-keyframes topToBottom {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 0;
        -ms-transform: translateY(-50px);
    }

    10% {
        opacity: 1;
        -ms-transform: translateY(0px);
    }

    25% {
        opacity: 1;
        -ms-transform: translateY(0px);
    }

    30% {
        opacity: 0;
        -ms-transform: translateY(50px);
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.partner-block {
    margin-bottom: -4rem;
    z-index: 99;
    margin-top: 1.5rem;
}

.partner-para {
    box-shadow: 0 -3px 10px #eaeaea;
    background: var(--bg-white);
    border-radius: 10px;
    padding: 1.6rem;
}

.footer-links .h4 {
    color: var(--text-white);
    font-size: 18px;
}

.user-login {
    display: none;
}

.btnsearch span {
    display: none;
}

.icon-right .bi {
    font-size: 14px;
}

.notification-body {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
}

    .notification-body .toast {
        border-radius: 10px;
        max-width: 400px;
        width: 100%;
    }

        .notification-body .toast .btn-close {
            position: absolute;
            right: 7px;
            background-color: var(--text-white);
            padding: 0.3rem;
            border-radius: var(--base-border-radius-50);
            background-size: 8px;
            top: 7px;
            z-index: 9999;
            opacity: 1;
        }

        .notification-body .toast img {
            border-radius: 10px;
        }

.modal.show .modal-dialog {
    margin-top: 2rem;
}

.modal-content {
    /* max-width: 420px !important; */
    width: 100%;
    margin: 0px auto;
}

.login-google a {
    border: solid 1px #616161;
    border-radius: var(--base-border-radius);
    padding: 0.8rem 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-google span {
    margin-left: 0.4rem;
}

.login-google img {
    width: 16px
}

.login-google a:hover {
    background: #ECF1F7DE;
    border: solid 1px var(--bs-primary-rgb);
}

.login-facebook a {
    background: #165faa;
    border: solid 1px #165faa;
    color: var(--text-white);
    border-radius: var(--base-border-radius);
    padding: 0.8rem 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-facebook span {
    margin-left: 0.4rem;
}

.login-facebook img {
    width: 18px
}

.login-facebook a:hover {
    background: #0862f7;
    border: solid 1px #0862f7;
}

.loginwith {
    position: relative;
}

    .loginwith span {
        background: var(--bg-white);
        width: 120px;
        z-index: 22;
        position: relative;
        display: block;
        margin: 13px auto;
        text-align: center;
    }

    .loginwith::after {
        position: absolute;
        content: '';
        background: #c8c9ca;
        width: 100%;
        height: 1px;
        left: 0;
        top: 12px;
        z-index: 0;
    }

.pagination {
    display: block;
    text-align: center;
}

.page-item a {
    position: relative;
    display: block;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    border: solid 1px transparent;
    color: var(--base-color);
    width: 32px;
    height: 32px;
    border-radius: var(--base-border-radius-50);
    text-align: center;
    padding: 0.2rem;
    box-shadow: 0 0 8px #DDD;
}

.page-link > .bi-arrow-left {
    border: solid 1px var(--base-color);
    width: 32px;
    height: 32px;
    border-radius: var(--base-border-radius-50);
    display: block;
    position: relative;
    top: 0px;
    line-height: 1.9;
}

.page-link > .bi-arrow-right {
    border: solid 1px var(--base-color);
    width: 32px;
    height: 32px;
    border-radius: var(--base-border-radius-50);
    display: block;
    position: relative;
    top: 0px;
    line-height: 1.9;
}

.page-item {
    display: inline-block !important;
    padding: 0 0.3rem;
}

.active > .page-link, .page-link.active {
    background: var(--bg-black);
    border-color: var(--base-color);
    border-radius: var(--base-border-radius-50);
    padding: 0.2rem 0.7rem;
    width: 32px;
    height: 32px;
}

.page-link:hover {
    background: var(--bg-black);
    border-color: var(--base-color);
    border-radius: var(--base-border-radius-50);
    width: 32px;
    height: 32px;
    color: var(--text-white);
}

.page-link:focus {
    background: var(--bg-black);
    border-color: var(--base-color);
    border-radius: var(--base-border-radius-50);
    width: 32px;
    height: 32px;
    color: var(--text-white);
}

.pagination li:first-child:hover a {
    border: solid 0px var(--base-color);
    padding: 0px;
    border-radius: var(--base-border-radius-50);
    background: var(--bg-black);
    color: var(--text-white);
}

.page-item:first-child .page-link {
    border: solid 0px var(--base-color);
    padding: 0px;
    border-radius: var(--base-border-radius-50);
}

.pagination li:last-child:hover a {
    border: solid 0px var(--base-color);
    padding: 0px;
    border-radius: var(--base-border-radius-50);
    background: var(--bg-black);
    color: var(--text-white);
}

.page-item:last-child .page-link {
    border: solid 0px var(--base-color);
    padding: 0px;
    border-radius: var(--base-border-radius-50);
}

.accordion-panel {
    display: none;
}

.filterby {
    border-bottom: solid 1px #e6e6e6;
    padding-bottom: 0.8rem;
    margin-bottom: 0px;
}

.home-category h5 {
    font-size: clamp(13px, 1.3vw, 22px);
    font-weight: 400;
}

.login-hidden {
    display: none !important;
}

.breadcrumb-body {
    padding: 0.7rem 0;
    background: linear-gradient(to right, rgba(7, 92, 243, 1) 51%, rgba(36, 154, 252, 1) 100%) !important;
}

    .breadcrumb-body .breadcrumb {
        color: var(--bg-white);
    }

        .breadcrumb-body .breadcrumb a {
            color: var(--bg-white);
        }

    .breadcrumb-body .breadcrumb-item + .breadcrumb-item::before {
        color: var(--bg-white);
        font-size: 10px;
        position: relative;
        top: 3px;
    }

    .breadcrumb-body .breadcrumb-item.active {
        color: var(--bg-white);
    }

.fixed-header {
    position: fixed;
    top: 6rem;
    left: 0;
    width: 100%;
    box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
    padding-top: 1rem;
    background: #FFF;
    transition: all 0.2s ease;
}

.filter-body {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 6px;
    margin-bottom: 1.8rem;
    padding-bottom: 0.6rem;
    position: relative;
    z-index: 333;
}

    .filter-body h3 {
        font-weight: 700;
        margin-bottom: 0.4rem !important;
    }

    .filter-body .filter-box {
        display: flex;
        flex-wrap: wrap; /* allows wrapping on smaller screens */
        gap: 10px; /* space between boxes */
        justify-content: center;
    }

        .filter-body .filter-box li {
            flex: 1 1 auto; /* auto width, flexible */
            min-width: 100px; /* ensures they don’t shrink too small */
        }

        .filter-body .filter-box .list-inline-item:not(:last-child) {
            margin-right: 0rem;
        }

        .filter-body .filter-box .btn {
            border-radius: 4px;
            height: 43px;
            line-height: 1.9;
        }

.listing-slider {
    margin: 0.8rem 0.8rem 0.8rem 0.9rem;
    border-radius: var(--base-border-radius-8);
}

    .listing-slider > div {
        border-radius: var(--base-border-radius-8);
    }

    .listing-slider img {
        border-radius: var(--base-border-radius-8);
        min-height: 235px;
        object-fit: cover;
        object-position: center;
    }

    .listing-slider .slick-next {
        right: 10px;
    }

    .listing-slider .slick-prev {
        left: 10px;
    }

    .listing-slider .slick-dots {
        right: 0rem !important;
        left: 0px !important;
    }

    .listing-slider > .slick-dots li button::before {
        font-size: 34px !important;
    }

    .listing-slider .slick-dots li {
        width: 14px;
    }

.also-like .premium-ads-box {
    border: solid 1px #DDD;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

    .also-like .premium-ads-box .star-rating i {
        font-size: 13px;
    }

    .also-like .premium-ads-box .address {
        font-size: 13px;
    }

    .also-like .premium-ads-box .verified {
        padding: 0.4rem 0.9rem !important;
        font-size: 13px !important;
    }

    .also-like .premium-ads-box .recommended {
        padding: 0.4rem 0.6rem !important;
        font-size: 13px !important;
    }

    .also-like .premium-ads-box figure img {
        width: 100%;
        height: 150px;
        object-fit: cover;
    }

    .also-like .premium-ads-box .premium-ads-box-space h2 {
        font-size: 16px;
    }

.all-photo-block {
    padding: 0.4rem;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

    .all-photo-block .nav-pills .nav-link {
        color: var(--base-color);
        font-weight: var(--base-font-500);
        border-radius: 0px;
    }

    .all-photo-block .nav-link.active {
        background: transparent;
        color: var(--bs-primary-rgb);
        border-bottom: solid 2px var(--bs-primary-rgb);
    }

    .all-photo-block .nav-item {
        padding: 0 0.3rem;
    }

    .all-photo-block .btn-close {
        padding-right: 2rem;
        font-size: 11px;
    }

.modal-backdrop {
    --bs-backdrop-opacity: 0.85;
}

.contact-box {
    padding: 1rem 1.4rem;
    position: relative;
}

    .contact-box p {
        margin-bottom: 0.6rem;
        padding-left: 1.4rem;
        padding-bottom: 0.8rem;
        border-bottom: solid 1px #e7e7e7;
    }

        .contact-box p i {
            position: absolute;
            left: 18px;
            color: var(--bs-primary-rgb);
            font-size: 18px;
            margin-top: -2px;
        }

.listing-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    /* @* box-shadow: 0 2px 8px rgba(0,0,0,0.1); *@ */
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: row;
    border: solid 1px #DFDFDF;
}

    .listing-card .listing-image {
        width: 200px;
        height: 156px;
        object-fit: cover;
        flex-shrink: 0;
        border-radius: 7px;
        margin: 0.6rem;
    }

    .listing-card .listing-content {
        padding: 10px 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .listing-card .listing-name {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .listing-card .merchant-info {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
        padding-bottom: 12px;
        border-bottom: 1px solid #eee;
    }

    .listing-card .merchant-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
    }

    .listing-card .merchant-details {
        flex-grow: 1;
    }

    .listing-card .merchant-name {
        font-size: 14px;
        font-weight: 600;
        color: #333;
        margin-bottom: 3px;
    }

    .listing-card .merchant-label {
        font-size: 12px;
        color: #999;
    }

    .listing-card .listing-address {
        font-size: 14px;
        color: #666;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .listing-card .listing-comment {
        font-size: 13px;
        color: #555;
        background-color: #f5f5f5;
        padding: 10px;
        border-radius: 4px;
        margin-bottom: 12px;
        font-style: italic;
        border-left: 3px solid #0b63f4;
    }

    .listing-card .stars {
        display: flex;
        align-items: center;
        gap: 4px;
    }

        .listing-card .stars i {
            color: #ffc107;
        }

    .listing-card .rating-text {
        font-size: 14px;
        color: #666;
        margin-left: 8px;
    }

    .listing-card .search-box {
        border: none;
        box-shadow: none;
        padding: 0px;
        margin-bottom: 1.2rem;
        border-bottom: solid 1px #DDD;
        padding-bottom: 1rem;
    }

    .listing-card .form-control {
        border: solid 1px #000;
        height: 45px;
        border-radius: 5px;
    }

.pulse {
    /* margin: 25% auto 0 auto; */
    border-radius: 23px;
    animation: shadow-pulse 1.5s infinite;
}

@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(255, 112, 7, 0.4);
    }

    100% {
        box-shadow: 0 0 7px 25px rgba(0, 112, 244, 0);
    }
}

.badge-custom {
    display: flex;
    align-items: center;
}
.badge-custom .badge{
    width: auto !important;
    height: auto !important;
    border-radius: 4px !important;
    padding: 0.6rem 1rem !important;
}
.btn-chat .btn{
    border-radius: 4px;
    height: 40px;
}

.howto-box{
    background:linear-gradient(90deg,rgba(7, 92, 243, 1) 0%, rgba(36, 154, 252, 1) 100%);
    border-radius: 20px;
}
.business-boxs{
    background:#FFF;
    padding: 1.6rem;
    border-radius: 20px;
}

.chatbox .btn-attatch{
    position: absolute;
}
.chatbox .btn-send{
    position: absolute;
}


@media(min-width:992px) {
    .searchslider {
        max-height: 235px;
        overflow: hidden;
    }

    .searchbox > .row > div:nth-child(1) {
        padding-right: 1rem;
    }

    .searchbox > .row > div:nth-child(2) {
        padding-right: 1rem;
    }
}

@media(max-width:1080px) {
    .list-group-item .knowmore-btn {
        margin-top: 0.4rem;
    }

    .item.list-group-item .thumbnail .card-body .hotel--details > .row > div:nth-child(1) {
        width: 70% !important;
    }

    .item.list-group-item .thumbnail .card-body .hotel--details > .row > div:nth-child(2) {
        width: 30% !important;
    }

    .category {
        grid-template-columns: repeat(8, 1fr);
    }
}

@media(max-width:992px) {
    .tour__home-details figure img{
        min-height: 160px;
        object-fit: cover;
    }
    .top-menu li a {
        padding: 0.7rem 0.1rem;
        border-radius: var(--base-border-radius);
    }

    .category {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        grid-gap: 15px 30px;
    }

    .tour-block {
        min-height: 155px;
    }
}

@media(max-width:767px) {
    .contact-block h1 {
        font-size: 23px !important;
        font-weight: 700;
    }
    .contact-block h2 {
        font-size: 20px !important;
        font-weight: 700;
    }
    .contact-block .core-problems h4 {
        font-size: 15px !important;
    }
    .contact-block .core-problems {
        padding-right: 0rem !important;
    }
    .business-boxs{
        margin-bottom: 1rem !important;
    }
    .contact-block .text-small {
        font-size: 19px !important;
    }
    .contact-block ul{
        text-align: left;
    }
    .contact-block h3 {
        font-size: 15px;
        font-weight: 700;
        text-align: left;
    }
    .pages-banner figure img{
        min-height: 150px;
        object-fit: cover;
    }
    .tour__home-details figure figcaption{
        padding: 4.6rem 1rem 2rem 0.3rem !important;
        display: none !important;
    }
    .service--off{
        width: 100%;
    }
    .social-share-box{
        display: block !important;
    }
    .social-icons{
        align-items: center;
        margin-bottom: 1rem;
    }
    .social-share-box .btn{
        width: 48%;
        height: 45px;
        line-height: 2.2;
        font-weight: 600;
        font-size: 15px;
    }
    .geolocation {
        display: none !important;
    }
    .geolocation .bi{
        font-size: 17px;
    }
    .featured-tag{
        margin: 0.8rem !important;
        border-radius: 8px !important;
        -webkit-border-radius: 8px !important;
        -moz-border-radius: 8px !important;
        -ms-border-radius: 8px !important;
        -o-border-radius: 8px !important;
}
    .object-fit-cover{
        border-radius: 15px 15px 10px 10px !important;
        padding: 0.3rem;
        -webkit-border-radius: 15px 15px 10px 10px !important;
        -moz-border-radius: 15px 15px 10px 10px !important;
        -ms-border-radius: 15px 15px 10px 10px !important;
        -o-border-radius: 15px 15px 10px 10px !important;
}
    .seo-box-gradient{
        border-radius: 5px !important;
        -webkit-border-radius: 5px !important;
        -moz-border-radius: 5px !important;
        -ms-border-radius: 5px !important;
        -o-border-radius: 5px !important;
}
    #top-seo-box{
        margin-top: 10px !important;
    }
    .seo-box-gradient{
        overflow-y: auto;
        max-height: 140px;
        padding: 0.8rem !important;
    }
    .seo-row thead{
    display:none;
  }

  .seo-row,
  .seo-row tbody,
  .seo-row tr,
  .seo-row td{
    display:block;
    width:100%;
  }

  .seo-row tr{
    margin-bottom:15px;
    border:1px solid #eee;
    border-radius:10px;
    padding:10px;
    box-shadow:0 2px 6px rgba(0,0,0,0.08);
  }

  .seo-row td{
    border:none;
    position:relative;
    padding: 10px !important;
  }

  .seo-row td:before{
    content:attr(data-label);
    position:absolute;
    left:15px;
    font-weight:bold;
    color:#555;
  }

  .seo-box-gradient h1{
    font-size: 20px !important;
    /* position: fixed;
    min-height: 30px;
    background: #FFF;
    width: 89%; */
  }

    .inquiry-card{
        right: 30px !important;
        bottom: 6rem !important;
        width: 320px !important;
    }
    .item.list-group-item{
        margin-bottom: 1rem;
    }
    .badge{
        width: 30px;
        height: 30px;
    }
    .badge img {
        width: 35px;
        height: 35px;
    }
    .status-badge-gold{
        position: relative;
        right: 0px !important;
        flex-direction: row;
        top: 0px;
        width: auto;
        margin: 10px;
        border-radius: 10px;
    }
    .status-badge-silver{
        position: relative;
        right: 0px !important;
        flex-direction: row;
        top: 0px;
        width: auto;
        margin: 10px;
        border-radius: 10px;
    }
    .login-hidden {
        display: flex !important;
        align-items: center;
        justify-content: end;
    }

        .login-hidden .location-visit {
            /* background: var(--bg-gray-light); */
            padding: 4px 8px;
            border-radius: 3px;
            font-size: 13px;
            font-weight: 500;
        }

    .filter-body {
        box-shadow: none;
        border-bottom: solid 0px #DDD;
    }

    .filterby {
        display: none;
    }

    .filter--box {
        padding: 0.4rem 1rem 1rem 1rem;
    }

    .searchbox > .row > div:nth-child(1), .searchbox > .row > div:nth-child(2), .searchbox > .row > div:nth-child(3) {
        width: 100%;
    }

    .search-section h1 span {
        color: var(--base-color);
    }

    .user-login {
        background: #ececec;
        width: 26px;
        height: 26px;
        border-radius: var(--base-border-radius-50);
        padding: 0.3rem;
        line-height: 0.3;
        display: block;
    }

    header {
        padding: 0.6rem 0;
        border-bottom: solid 0px #F0F0F0;
    }

    .grid-viewn {
        display: none;
    }

    .slider .slick-arrow {
        opacity: 1;
    }

    .tetimonial .slick-next {
        right: -5px;
    }

    .tetimonial .slick-prev {
        left: -5px;
    }

    .btnsearch .bi-search {
        display: none;
    }

    .btnsearch span {
        display: block;
    }

    .tour-two {
        margin-left: 0px !important;
    }

    .notification-body {
        display: none;
    }

    .offcanvas-header {
        padding: 0.6rem 1rem;
    }

    .details--bg {
        padding-top: 0.4rem;
        /* margin-top: 0.6rem;
        border-top: solid 1px #F0F0F0; */
    }

    .carousel-control-prev-icon::after {
        content: '\F284';
        position: absolute;
        font-family: "bootstrap-icons";
        color: var(--base-color);
        font-size: 13px;
        top: 6px;
        left: 8px;
    }

    .carousel-control-prev-icon {
        background-color: var(--text-white);
        border-radius: var(--base-border-radius-50);
        width: 30px;
        height: 30px;
        position: relative;
    }

    .carousel-control-next-icon::after {
        content: '\F285';
        position: absolute;
        font-family: "bootstrap-icons";
        color: var(--base-color);
        font-size: 13px;
        top: 6px;
        left: 9px;
    }

    .carousel-control-next-icon {
        background-color: var(--text-white);
        border-radius: var(--base-border-radius-50);
        width: 30px;
        height: 30px;
        position: relative;
    }

    .carousel-indicators {
        margin-bottom: 0.4rem;
    }

    .accordion-panel {
        background-color: #e4f1ff;
        color: #444;
        cursor: pointer;
        padding: 0.9rem 1.4rem;
        width: 100%;
        border: none;
        text-align: left;
        outline: none;
        transition: 0.4s;
        display: block;
        border-radius: var(--base-border-radius);
    }

        .accordion-panel.active, .accordion-panel:hover {
            background-color: #ccc;
        }

        .accordion-panel:after {
            font-family: "bootstrap-icons";
            content: '\F282';
            color: #777;
            font-weight: bold;
            float: right;
            margin-left: 5px;
        }

        .accordion-panel.active:after {
            font-family: "bootstrap-icons";
            content: "\F286";
        }

    .panelshow {
        margin-top: 0.4rem;
        padding: 0;
        background-color: var(--bg-white);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.2s ease-out;
        color: var(--bg-black);
    }

    .view-group {
        padding: 0 0.4rem;
    }

    .dinner--section h2 {
        color: var(--text-white);
        text-transform: uppercase;
        font-size: 30px;
    }

    .scrollspy__tab ul li {
        padding: 0.6rem 0.2rem;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 13px;
    }

    .scrollspy__tab ul .active {
        padding: 0.5rem 1rem;
    }

    .scrollspy__tab .list-inline-item:not(:last-child) {
        margin-right: 0.2rem;
    }

    .scrollspy__tab ul li a {
        padding-left: 0rem;
        padding-right: 0rem;
    }

    .scrollspy__tab ul {
        padding: 0.5rem 0rem !important;
        /* display: flex;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        position: static;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: auto !important; */
        display: none;
    }
        /* .scrollspy__tab ul li .list-inline-item:not(:last-child) {
       margin-right: 0rem !important;
    } */
        .scrollspy__tab ul li a span {
            display: none;
        }

    .scrollspy__tab {
        top: 8.7rem;
        margin-top: 0.2rem;
    }

    .tour-block {
        margin-right: 10px;
        background-size: cover !important;
        height: 100%;
        width: 100%;
    }

    .slick-next {
        right: 10px;
    }

    .slick-prev {
        left: 10px;
    }

    .accordion {
        color: #444;
        cursor: pointer;
        margin-bottom: 1rem;
        padding: 10px 0;
        width: 100%;
        border: none;
        text-align: left;
        outline: none;
        font-size: var(--font-15);
        transition: 0.4s;
        display: block !important;
    }

        .active, .accordion:hover {
        }

    .panel {
        padding: 0;
        display: none;
        overflow: hidden;
    }

    /* .details--bg h1 {
        font-size: 22px;
    } */

    .drop-down {
        min-width: 250px;
        padding: 1rem 2rem;
    }

    .search-section {
        padding: 0rem 0.6rem;
        position: relative;
        z-index: 999;
        margin: 0rem 0 0 0rem;
        top: 0px;
        width: 100%;
    }

    .searchbox {
        margin-left: 0rem !important;
        background: transparent;
    }

    .popular-txt {
        color: var(--base-color) !important;
    }

    .search-section h1 {
        margin-bottom: 1.4rem;
        text-align: center;
        color: var(--base-color);
        min-height: 60px;
    }

    .slider-search {
        min-height: 340px;
    }

        .slider-search::after {
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 60%, rgba(255,255,255,0) 130%, rgba(255,255,255,0) 100%);
        }

    .searchbox .wrn-btn {
        height: 52px;
        width: 98%;
        background: var(--bs-primary-rgb);
        border: var(--bs-primary-rgb);
        color: var(--text-white);
        margin: 0.2rem 0.2rem 0.2rem 0.2rem;
    }

    .searchbox .form-floating {
        border: solid 1px #e1e1e1;
        border-radius: var(--base-border-radius);
        margin-bottom: 0rem;
    }

    .search-box {
        background: rgb(244,209,202);
        background: linear-gradient(90deg, rgba(244,209,202,1) 46%, rgba(226,217,178,1) 100%);
    }

    .category {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 0px 12px;
    }

    .bdr-right {
        border-right: solid 0px #ebebeb;
        border-bottom: solid 0px #ebebeb;
    }

    .category li .box {
        border: solid 0px #dbdada;
        padding: 0.6rem 0.6rem 0rem 0.6rem;
        border-radius: 15px;
        background: var(--bg-white);
        min-height: 35px;
        max-width: 100%;
        margin: 0px auto 5px auto;
        min-width: 70px;
    }

        .category li .box img {
            max-width: 30px;
            margin-top: 0.8rem;
        }

    .top-menu {
        display: none !important;
    }

    .login-icons {
        display: block;
        width: 30px;
        height: 30px;
        background: linear-gradient(90deg,rgba(36, 154, 252, 1) 0%, rgba(7, 92, 243, 1) 100%);
        border-radius: 100px;
        padding: 6px;
    }

        .login-icons img {
            width: 30px;
        }

    .business-list {
        padding: 1rem;
        min-height: 353px;
    }

        .business-list h3 {
            font-size: 15px !important;
        }

    .property-box figure {
        margin-bottom: 0px;
    }

    .menu ul {
        grid-template-columns: auto;
    }

    .offcanvas {
        width: 80% !important;
        min-width: 300px;
    }

    .menu ul li {
        padding-right: 0.6rem;
        padding-left: 0.6rem;
        margin-left: 0px;
    }

    .offcanvas-body {
        padding-top: 0.3rem;
        padding-bottom: 0.3rem;
    }

    .searchslider {
        display: none;
    }

    .category li p {
        font-size: 12px !important;
        font-weight: var(--base-font-500);
    }

    .slidingVertical span {
        left: 0px;
        right: 0px;
    }

    .block-info h5 {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        overflow: hidden;
    }

    .block-info {
        text-align: center;
        position: relative;
    }

        .block-info figure {
            margin-bottom: 0rem !important;
            min-height: 90px !important;
        }

        .block-info img {
            border-radius: var(--base-border-radius) var(--base-border-radius) 0 0;
            width: 100%;
            height: 90px;
            object-fit: cover;
            object-position: center;
        }

        .block-info h5 {
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 1;
            overflow: hidden;
            position: relative;
            bottom: -4px;
            background: #FFFFFFDE;
            left: 3px;
            right: 3px;
            border-radius: 3px;
            /* padding-bottom: 0.3rem; */
            padding-top: 0.2rem;
        }

        .block-info .block-space a {
            font-size: 12px;
        }

    .property-box figure figcaption {
        position: absolute;
        top: 0px;
        color: var(--text-white);
        padding: 0.6rem;
        width: 100%;
    }

    .property-box figure a {
        position: absolute;
        z-index: 999;
        bottom: 0px;
        left: 0px;
        margin: 0.4rem !important;
        padding: 0.1rem 0.4rem !important;
        font-size: 12px;
    }

    .wedding-block {
        padding: 1.2rem 0;
        margin: 1.2rem 0;
    }

    .textimonial-home {
        margin: 1rem 0;
        padding: 1rem 0 2rem 0 !important;
    }

    .partner-para {
        text-align: center;
        padding: 1rem;
    }

    .bea-btn {
        margin-top: 1rem;
    }

    .partner-block {
        margin-top: 1rem;
    }

    .link-case {
        position: relative;
    }

        .link-case .f-nav .h4 {
            cursor: pointer;
            margin: 0;
            margin-bottom: 0px;
            padding: 1em 0em;
            border-bottom: solid 1px #14162a;
            background-color: transparent;
            font-size: 16px;
        }

            .link-case .f-nav .h4:after {
                position: absolute;
                right: 0;
                content: "";
                float: right;
                font-family: "bootstrap-icons";
                content: "\F285";
                font-size: 13px;
            }

        .link-case .f-nav.open .h4:after {
            content: "-";
            content: "\F282";
        }

        .link-case ul {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out;
            margin-bottom: 0;
            margin-left: 0px;
        }

            .link-case ul a {
                padding-top: 5px;
                padding-bottom: 5px;
            }

        .link-case .f-nav.open ul {
            height: auto;
            max-height: 500px;
            transition: max-height 0.5s ease-in;
            margin-left: 0px;
            padding-top: 0.6rem;
        }

    footer h4 {
        margin-top: 1rem;
        padding-bottom: 0.5rem;
        font-size: 18px;
    }

    footer {
        padding-top: 1rem;
    }

    .category li .box:hover {
        border: solid 0px #2f2f74;
    }

    .item.list-group-item .img-event {
        width: 35%;
        padding-top: 0.5rem;
        position: relative;
    }

    .item.list-group-item .caption {
        width: 65%;
    }

    .item.list-group-item .caption {
        padding-left: 0;
        padding-bottom: 0.7rem;
        padding-top: 0.6rem;
    }

    .list-group-item .hotel-img {
        border-radius: var(--base-border-radius-8) var(--base-border-radius-8) 0 0;
    }

    .hotel-usp {
        display: none;
    }

    .item.list-group-item .thumbnail .card-body .hotel--details > .row > div:nth-child(1) {
        width: 100% !important;
    }

    .item.list-group-item .thumbnail .card-body .hotel--details > .row > div:nth-child(2) {
        width: 100% !important;
    }

    .list-group-item .knowmore-btn {
        display: block;
        margin-top: 1rem;
    }

    .listing-view .container {
        padding-left: 0px;
        padding-right: 0px;
    }

    .item.list-group-item .thumbnail {
        margin-bottom: 0rem;
        border: none;
        border-bottom: solid 1px #e0e0e0;
        border-radius: 0;
    }

    .seal-info {
        border: none !important;
    }

    .knowmore-btn .btn-primary {
        width: 100% !important;
    }

    .share-icon {
        padding-top: 0.4rem;
    }

    .knowmore-btn .btn-primary {
        margin-top: 0.8rem;
    }

    .hotel--details .timining p {
        font-size: 14px;
    }

    .hotel--details .link {
        font-size: 14px;
        margin-bottom: 0.5rem;
        margin-top: 0.2rem;
    }

        .hotel--details .link span {
            display: none;
        }

    footer .footer-bdr {
        border-top: none;
    }

    footer .footer-bdr {
        padding-top: 0rem;
        margin-top: 0rem;
    }
}


.cls-1 {
    fill: #0966b8;
}

.cls-1, .cls-2 {
    fill-rule: evenodd;
}

.cls-2 {
    fill: #ff6c00;
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 999999
}

.logoanimation, .st1 {
    /*fill: #d72924*/
}

.logoanimation {
    -webkit-animation: 2.7s ease-in-out infinite draw;
    -moz-animation: 2.7s ease-in-out infinite draw;
    -o-animation: 2.7s ease-in-out infinite draw;
    animation: 2.7s ease-in-out infinite draw;
    stroke: #ff6c00
}

@-webkit-keyframes draw {
    0% {
        stroke-dasharray: 0 800;
        stroke-dashoffset: 200;
        fill-opacity: 0;
        stroke-width: 4
    }

    37% {
        stroke-dasharray: 600 0;
        stroke-dashoffset: 200;
        fill-opacity: 0;
        stroke-width: 4
    }

    100%, 50% {
        fill-opacity: 1;
        stroke-width: 0
    }
}

@-moz-keyframes draw {
    0% {
        stroke-dasharray: 0 800;
        stroke-dashoffset: 200;
        fill-opacity: 0;
        stroke-width: 4
    }

    37% {
        stroke-dasharray: 600 0;
        stroke-dashoffset: 200;
        fill-opacity: 0;
        stroke-width: 4
    }

    100%, 50% {
        fill-opacity: 1;
        stroke-width: 0
    }
}

@-o-keyframes draw {
    0% {
        stroke-dasharray: 0 800;
        stroke-dashoffset: 200;
        fill-opacity: 0;
        stroke-width: 4
    }

    37% {
        stroke-dasharray: 600 0;
        stroke-dashoffset: 200;
        fill-opacity: 0;
        stroke-width: 4
    }

    100%, 50% {
        fill-opacity: 1;
        stroke-width: 0
    }
}

@keyframes draw {
    0% {
        stroke-dasharray: 0 800;
        stroke-dashoffset: 200;
        fill-opacity: 0;
        stroke-width: 4
    }

    37% {
        stroke-dasharray: 600 0;
        stroke-dashoffset: 200;
        fill-opacity: 0;
        stroke-width: 4
    }

    100%, 50% {
        fill-opacity: 1;
        stroke-width: 0
    }
}

#overlayer {
    width: 100%;
    height: 100vh;
    position: absolute;
    background: var(--bg-white);
    z-index: 99999
}

/*loader css End*/
.font18 {
    font-size: 18px;
    font-weight: var(--base-font-500);
}

.close-btn {
    font-size: 10px;
    padding: 0.5rem;
    position: absolute;
    right: 0;
    z-index: 22;
    border: solid 1px #666;
    border-radius: 50%;
    margin: 0.6rem;
}

.popular-city-home {
    padding: 3rem 0;
}

    .popular-city-home .spacetop {
        padding-top: 2rem;
    }

    .popular-city-home .city-block {
        background: #edf3fb;
        border: solid 1px #b6cff1;
        border-radius: 15px;
        padding-bottom: 1rem;
        transition: all 1s ease;
    }

        .popular-city-home .city-block img {
            border-radius: 15px;
            width: 100%;
        }

        .popular-city-home .city-block figure {
            position: relative;
        }

            .popular-city-home .city-block figure figcaption {
                position: absolute;
                left: 0px;
                right: 0px;
                bottom: 0px;
                padding: 0.6rem;
                overflow: hidden;
            }

                .popular-city-home .city-block figure figcaption > div {
                    z-index: 33;
                    position: relative;
                    padding: 1.6rem 0rem 0.4rem 0rem;
                    text-align: center;
                }

                    .popular-city-home .city-block figure figcaption > div h4 {
                        color: var(--bg-white);
                        margin-bottom: 0.5rem;
                        font-family: var(--font-Cinzel) !important;
                        transition: all 1s ease;
                    }

                    .popular-city-home .city-block figure figcaption > div p {
                        color: var(--bg-white);
                        text-transform: uppercase;
                        letter-spacing: 2px;
                        font-size: 12px;
                    }

    .popular-city-home:hover .city-block figure figcaption > div h4 {
        color: var(--bg-white);
        transition: all 1s ease;
    }

    .popular-city-home .city-block figure figcaption::after {
        content: '';
        background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
        z-index: 22;
        height: 100%;
        width: 100%;
        position: absolute;
        bottom: 0px;
        left: 0px;
        border-radius: 0 0 15px 15px;
    }

    .popular-city-home .city-block .explore-all a {
        color: #075df3 !important;
    }

    .popular-city-home .city-block .explore-all i {
        font-size: 16px;
        position: relative;
        top: 2px;
    }

    .popular-city-home .city-block:hover {
        background: var(--bs-primary-rgb);
        transition: all 1s ease;
    }

        .popular-city-home .city-block:hover .explore-all a {
            color: var(--bg-white) !important;
        }

    .popular-city-home .slick-slide {
        margin: 0px 8px;
    }

.popular-city {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-gap: 15px 10px;
}

    .popular-city li {
        text-align: center;
    }

        .popular-city li figure {
            margin-bottom: 0.4rem;
        }

            .popular-city li figure img {
                max-height: 42px;
            }

        .popular-city li p {
            font-size: 12px;
        }

.category--filter {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 15px 10px;
    padding-top: 0.6rem;
}
/* .separator > div{
        border-right: solid 1px #e1e1e1;
    } */
.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: #e5effb !important;
    color: #027fff !important;
}

.category__container {
    background: #f4f5f5;
    padding-top: 1rem;
}

.bg-gray-light {
    --bg-gray-light: #f4f5f5;
    background: var(--bg-gray-light);
}
/* .field{
        z-index: 99999 !important;
        position: relative !important;
    } */
.check-disable .checkmark {
    display: none !important;
}

.check-disable .customcheckbox {
    margin-bottom: 4px;
    margin-right: -5px;
    padding: 0.4rem;
}

    .check-disable .customcheckbox:hover {
        background: #ebebeb;
        border-radius: 4px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
    }

.selected {
    background-color: #d1e7dd !important; /* light green or any color of your choice */
    border-radius: 5px;
    padding: 5px;
}

.bg-yellow {
    --bg-yellow: #FDFDE0;
    background: var(--bg-yellow) !important;
}

.google-ads-block {
    border: solid 1px #ddd;
    padding: 0px;
    border-radius: var(--base-border-radius-8);
    -webkit-border-radius: var(--base-border-radius-8);
    -moz-border-radius: var(--base-border-radius-8);
    -ms-border-radius: var(--base-border-radius-8);
    -o-border-radius: var(--base-border-radius-8);
    background: #FFF;
}

    .google-ads-block figure img {
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
        padding: 0.3rem;
    }

    .google-ads-block figure {
        margin-bottom: 0px;
        position: relative;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
    }

        .google-ads-block figure figcaption {
            position: relative;
            bottom: 0px;
            right: 0px;
            z-index: 999;
            padding: 0rem 0.6rem 0.3rem 0.6rem;
        }

            .google-ads-block figure figcaption ul {
                margin-bottom: 0px;
            }

            .google-ads-block figure figcaption i {
                width: 26px;
                height: 26px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: var(--base-border-radius-8);
                -webkit-border-radius: var(--base-border-radius-8);
                -moz-border-radius: var(--base-border-radius-8);
                -ms-border-radius: var(--base-border-radius-8);
                -o-border-radius: var(--base-border-radius-8);
                color: var(--bg-white);
                font-size: 13px;
            }

            .google-ads-block figure figcaption .bi-telephone {
                background: var(--bs-primary-rgb);
            }

            .google-ads-block figure figcaption .bi-whatsapp {
                background: #24cc63;
            }

            .google-ads-block figure figcaption .bi-instagram {
                background: linear-gradient(115deg, #f9ce34, #ee2a7b, #6228d7);
                ;
            }

            .google-ads-block figure figcaption .bi-globe {
                background: #ff6c00;
            }

.ads-listing {
    padding: 0.6rem;
    border-radius: var(--base-border-radius);
    border: solid 1px #DDD;
}

    .ads-listing figure {
        margin-bottom: 0px;
    }

        .ads-listing figure figcaption > div {
            padding-top: 0.6rem;
        }

.ads-social {
    display: flex;
    align-items: center;
    justify-content: end;
    line-height: 1.2;
    margin-bottom: 0px;
}

    .ads-social li {
        text-align: center;
        font-size: 13px;
        line-height: 1.1;
    }

    .ads-social .bi {
        font-size: 14px;
    }

    .ads-social li span {
        font-size: 11px;
        font-weight: 500;
    }

    .ads-social .bi-telephone {
        color: var(--bs-primary-rgb);
    }

    .ads-social .bi-whatsapp {
        color: #24cc63;
    }

    .ads-social .bi-globe {
        color: #ff6c00;
    }

    .ads-social .bi-instagram {
        color: #ee2a7b;
    }

.google-add-full a img {
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}

.google-add-full i {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--base-border-radius-8);
    -webkit-border-radius: var(--base-border-radius-8);
    -moz-border-radius: var(--base-border-radius-8);
    -ms-border-radius: var(--base-border-radius-8);
    -o-border-radius: var(--base-border-radius-8);
    color: var(--bg-white);
    font-size: 13px;
}

.google-add-full .bi-telephone {
    background: var(--bs-primary-rgb);
}

.google-add-full .bi-whatsapp {
    background: #24cc63;
}

.google-add-full .bi-instagram {
    background: linear-gradient(115deg, #f9ce34, #ee2a7b, #6228d7);
    ;
}

.google-add-full .bi-globe {
    background: #ff6c00;
}

.ads-top-bdr {
    border: solid 1px #ddd;
    padding: 0.4rem 0.4rem 0rem 0.4rem;
    background: #FFF;
    border-radius: var(--base-border-radius-8);
    -webkit-border-radius: var(--base-border-radius-8);
    -moz-border-radius: var(--base-border-radius-8);
    -ms-border-radius: var(--base-border-radius-8);
    -o-border-radius: var(--base-border-radius-8);
}

.location-fetch-box {
    max-width: 500px;
    margin-left: 14% !important;
    margin-top: 2% !important;
}

    .location-fetch-box > .modal-content {
        border-radius: 15px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -ms-border-radius: 15px;
        -o-border-radius: 15px;
    }

        .location-fetch-box > .modal-content > .modal-body {
            padding: 1.6rem;
        }

    .location-fetch-box .btn-fetch {
        font-size: 13px;
        padding: 0.5rem 0.8rem !important;
        width: 100%;
    }

    .location-fetch-box .location-manually {
        font-size: 13px;
        padding: 0.5rem 0.4rem !important;
        width: 100%;
    }

    .location-fetch-box .or {
        border: solid 1px #000;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        font-size: 10px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .location-fetch-box .bi {
        font-size: 28px;
        padding-right: 0.2rem
    }

    .location-fetch-box .lococntent {
        line-height: 1.2;
    }

    .location-fetch-box .custom-input {
        border: solid 1px #c4c4c4;
        height: 50px;
    }

    .location-fetch-box h3 {
        font-size: 24px;
        font-weight: 600;
    }

    .location-fetch-box .bi-crosshair2 {
        position: absolute;
        right: 0.7rem;
        top: 0.7rem;
        font-size: 20px;
    }

    .location-fetch-box .btn-continue {
        padding: 0.4rem 1rem !important;
        font-size: 14px !important;
    }

.geo-location {
    font-size: var(--font-15);
    padding: 0;
}

.adv-txt {
    font-size: 13px;
    font-weight: 400;
    color: #515151;
}

.seal-info {
    border-top: solid 1px #ebeced;
    padding-top: 0rem;
    margin-top: 0rem;
}

    .seal-info ul li a {
        border-radius: 4px;
        color: var(--bg-white);
        font-size: 13px;
        padding: 2px 10px;
    }

    .seal-info .verified {
        background: linear-gradient(120deg, rgb(36, 154, 252) 0%, rgb(7, 92, 243) 100%) !important;
        color: var(--bg-white);
        padding: 0.6rem 1.2rem;
        font-size: 14px;
        font-weight: var(--base-font-500);
        display: flex;
        align-items: center;
    }

        .seal-info .verified img {
            margin-right: 0.3rem;
            width: 14px;
        }

        .seal-info .verified:hover {
            background: var(--bs-primary-rgb) !important;
        }

    .seal-info .trusted {
        background: #1daa61;
        color: var(--bg-white);
        padding: 0.6rem 1.2rem;
        font-size: 14px;
        font-weight: var(--base-font-500);
        transition: all 0.6s ease;
    }

        .seal-info .trusted:hover {
            background: #0d8d4b;
            transition: all 0.6s ease;
        }

    .seal-info .recommended {
        background: transparent;
        color: var(--bs-primary-rgb);
        border: solid 1px var(--bs-primary-rgb);
        padding: 0.6rem 1.2rem;
        font-size: 14px;
        font-weight: var(--base-font-500);
        transition: all 0.6s ease;
    }

        .seal-info .recommended:hover {
            background: var(--bs-primary-rgb);
            color: var(--bg-white);
            transition: all 0.6s ease;
        }

        .seal-info .recommended svg {
            width: 18px;
            position: relative;
            top: -1px;
        }

        .seal-info .recommended a {
            color: var(--bs-primary-rgb);
        }

    .seal-info .list-inline-item:not(:last-child) {
        margin-right: .3rem;
    }

    .seal-info img {
        max-width: 16px;
        position: relative;
        top: -2px;
    }

.listing-banner-box {
    background: linear-gradient(90deg, rgb(9, 102, 184) 46%, rgb(0, 46, 85) 100%);
    padding: 1.6rem 0;
}

.listing-banner {
    /* min-height: 180px;  */
    background: url(../../images/business-listing-banner1.jpg) no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: solid 1px #DDD;
}

    .listing-banner::after {
        content: '';
        background: linear-gradient(to right, #e9f3fd, #e9f3fd, #e9f3fd, rgba(233,243,253,0));
        height: 100%;
        position: absolute;
        left: 0px;
        top: 0px;
        z-index: 1;
        min-width: 70%;
    }
    /* .listing-banner::before{
    content:'';
    background: url(../../images/shape.svg) no-repeat;
} */
    .listing-banner > div {
        position: relative;
        z-index: 11;
    }

    .listing-banner .searchbox {
        border: solid 1px #e3e3e3 !important;
        box-shadow: 0 0 5px #e9f3fd !important;
    }

    .listing-banner .bdrright {
        border-right: solid 2px #dbdbdb !important;
    }

    .listing-banner h1 {
        font-size: 27px;
        margin-bottom: 0.8rem !important;
        text-transform: capitalize;
    }

    .listing-banner .list-coloum {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        min-height: 200px;
        padding: 0.6rem 0;
    }

.total-share-list figure {
    margin-bottom: 0rem;
}

    .total-share-list figure img {
        max-width: 20px;
        margin-right: 0.3rem;
    }

.total-share-list ul li {
    text-align: left;
    font-size: 11px;
    background: #DFF0FF;
    padding: 0.4rem 0.7rem;
    border-radius: var(--base-border-radius);
    line-height: 1.2;
    border: solid 1px #BCDAF4;
    color: #000;
}

    .total-share-list ul li:nth-child(2) {
        background: #f2dbff;
        border: solid 1px #e3b4fc;
    }

    .total-share-list ul li:nth-child(3) {
        background: #fff5be;
        border: solid 1px #f9db38;
    }

    .total-share-list ul li:nth-child(4) {
        background: #ffd9da;
        border: solid 1px #fab6b7;
        cursor: pointer;
    }

        .total-share-list ul li:nth-child(4):hover {
            background: #fab6b7;
            border: solid 1px #ffd9da;
        }

    .total-share-list ul li .total-veiw {
        font-size: 13px !important;
        font-weight: 600;
    }

.btn-enquiry {
    border-radius: var(--base-border-radius) !important;
    padding: 0.6rem 1.5rem;
    font-size: 16px;
    font-weight: 500;
}

.address-details {
    position: relative;
    margin-left: 16px;
    color: var(--base-color);
    margin-bottom: 0.2rem !important;
}

    .address-details img {
        position: absolute;
        left: -20px;
        top: 2px;
        max-width: 18px;
    }

.form-check-input[type="checkbox"] {
    border-radius: .25em;
    border: solid 1px #616161;
    width: 18px;
    height: 18px;
    border-radius: var(--base-border-radius);
    -webkit-border-radius: var(--base-border-radius);
    -moz-border-radius: var(--base-border-radius);
    -ms-border-radius: var(--base-border-radius);
    -o-border-radius: var(--base-border-radius);
}

.user-login-model .modal-content {
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.logo {
    max-width: 150px;
}

.logotop {
    max-width: 180px;
}

.booking-box {
    background: var(--bg-gray-light);
    margin: 1rem 0;
    padding: 2.6rem 0;
}

    .booking-box .recharge-block {
        display: flex;
        align-items: center;
        background: var(--bg-white);
        border: solid 1px #cedcf4;
        border-radius: var(--base-border-radius);
        padding: 0rem;
        transition: all 1s ease;
    }

        .booking-box .recharge-block > div:nth-child(1) {
            max-width: 75px;
            padding: 0.7rem 0.8rem;
            background: #e0eefb;
            border-radius: var(--base-border-radius);
            margin: 0.4rem;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .booking-box .recharge-block > div:nth-child(1) img {
                max-width: 35px;
            }

        .booking-box .recharge-block > div:nth-child(2) {
            padding-left: 0.6rem;
            padding-right: 0.6rem;
        }

            .booking-box .recharge-block > div:nth-child(2) h3 {
                font-size: 16px;
                font-weight: 600;
                margin-bottom: 3px;
                transition: all 1s ease;
            }

            .booking-box .recharge-block > div:nth-child(2) p {
                font-size: 13px;
                font-weight: 500;
                margin-bottom: 2px;
                color: #4e4e4e;
                transition: all 1s ease;
            }

        .booking-box .recharge-block > div:nth-child(3) {
            text-align: right;
        }

            .booking-box .recharge-block > div:nth-child(3) svg {
                color: #7bb7f3;
                width: 16px;
            }

            .booking-box .recharge-block > div:nth-child(3):hover svg {
                color: #FFF !important;
            }

        .booking-box .recharge-block:hover {
            background: #249AFC;
            background: var(--bs-primary-rgb);
            transition: all 1s ease;
            border-color: var(--bs-primary-rgb);
        }

            .booking-box .recharge-block:hover h3 {
                color: var(--bg-white) !important;
                transition: all 1s ease;
            }

            .booking-box .recharge-block:hover p {
                color: var(--bg-white) !important;
                transition: all 1s ease;
            }
            /* .booking-box .recharge-block:hover{
    background: none;
} */
            .booking-box .recharge-block:hover h3 {
                color: var(--bg-white) !important;
            }

.space-gutters {
    --bs-gutter-y: 0.7rem;
    --bs-gutter-x: 0.7rem;
}

.slide-block {
    padding: 1.4rem 0;
}

.slidermain {
    max-height: 247px;
    overflow: hidden;
    border-radius: var(--base-border-radius);
}

    .slidermain img {
        border-radius: var(--base-border-radius);
        /* min-height: 252px; */
        object-fit: cover;
    }

    .slidermain .slick-list {
        border-radius: var(--base-border-radius);
    }

    .slidermain .slick-prev {
        left: 10px;
        box-shadow: none;
    }

    .slidermain .slick-next {
        right: 10px;
        box-shadow: none;
    }

    .slidermain .slick-prev, .slick-next {
        opacity: 0;
    }

    .slidermain:hover .slick-prev {
        opacity: 1;
    }

    .slidermain:hover .slick-next {
        opacity: 1;
    }

.slider-right-category figure {
    margin-bottom: 0px;
    position: relative;
    overflow: hidden;
    border-radius: var(--base-border-radius);
    max-height: 119px;
}

    .slider-right-category figure img {
        border-radius: var(--base-border-radius);
        transition: all 0.6s ease;
    }

.slider-right-category:hover figure img {
    transform: scale(1.1);
    transition: 0.9s;
}

.slider-right-category figure figcaption {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    padding: 0.6rem;
    overflow: hidden;
}

    .slider-right-category figure figcaption > div {
        position: relative;
        z-index: 111;
        bottom: -1.7rem;
        transition: all 0.6s;
    }

.slider-right-category:hover figure figcaption > div {
    bottom: 0rem;
}

.slider-right-category figure figcaption h4 {
    color: var(--bg-white);
    font-size: 15px;
    font-weight: var(--base-font-500);
    margin-bottom: 0.5rem;
}

.slider-right-category figure figcaption p {
    margin-bottom: 0px;
    color: var(--bg-white);
    font-size: 12px;
}

    .slider-right-category figure figcaption p i {
        font-size: 16px;
        position: relative;
        top: 3px;
        color: #fddb33;
    }
/* .slider-right-category:hover figure figcaption p{
    display: block;
    transition: 0.2s ease all;
} */
.slider-right-category figure figcaption::after {
    content: '';
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
    z-index: 22;
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    border-radius: 0 0 var(--base-border-radius) var(--base-border-radius);
}

.top-search-box {
    border: solid 1px #626262;
    border-radius: var(--base-border-radius-8);
    padding: 2px;
    margin-left: 1.4rem;
    margin-right: 1.4rem;
}

    .top-search-box .top-search {
        position: relative;
    }

.top-search::after {
    content: '';
    position: absolute;
    left: 0px;
    top: -2px;
    height: 107%;
    width: 1px;
    border-right: solid 1px #646464;
}

.top-search-box .top-search .form-control {
    width: 100%;
    height: 45px;
    border: none;
    font-size: 14px;
    padding: 0 4rem 0 1rem;
}

.top-search-box .top-search button {
    position: absolute;
    right: 0px;
    top: 0px;
    background: linear-gradient(120deg,rgba(36, 154, 252, 1) 0%, rgba(7, 92, 243, 1) 100%) !important;
    border-radius: 6px !important;
    border: none;
    height: 100%;
    width: 50px;
    padding: 0px !important;
}
    /* .top-search-box .top-search button:hover{
    background: #626d7f !important;
} */
    .top-search-box .top-search button svg {
        width: 18px;
    }

.location-address {
    padding-left: 0.8rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    font-size: 14px;
}

.popular-category {
    border-radius: var(--base-border-radius-8);
    text-align: center;
    transition: all 1s ease;
}

    .popular-category figure {
        margin-bottom: 0px;
        overflow: hidden;
        border-radius: var(--base-border-radius-8) var(--base-border-radius-8) 0 0;
    }

        .popular-category figure img {
            border-radius: var(--base-border-radius-8) var(--base-border-radius-8) 0 0;
            transition: all 0.6s ease
        }

    .popular-category:hover figure img {
        transform: scale(1.1);
        transition: 0.9s;
    }

    .popular-category h4 {
        font-size: 14px;
        font-weight: 500;
        box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
        padding: 0.8rem 0.6rem;
        border-radius: 0 0 8px 8px;
        /* display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden; */
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        margin-bottom: 0px;
        transition: all 1s ease;
    }

    .popular-category:hover h4 {
        background: var(--bs-primary-rgb);
        color: var(--bg-white);
        transition: all 1s ease;
    }

        .popular-category:hover h4::after {
            font-family: "bootstrap-icons";
            content: '\F138';
            position: absolute;
            padding-left: 4px;
        }

.business-usp {
    background: linear-gradient(90deg,rgba(7, 92, 243, 1) 0%, rgba(36, 154, 252, 1) 100%);
    margin: 9rem 0 0rem 0;
    padding-top: 2.2rem;
}

    .business-usp h3 {
        font-size: clamp(20px, 2.4vw, 34px);
        font-weight: var(--base-font-800);
        color: var(--bg-white);
    }

    .business-usp p {
        font-size: 18px;
        color: var(--bg-white);
    }

    .business-usp .men-img {
        position: absolute;
        right: 0px;
        bottom: 0;
    }

    .business-usp .icon-img {
        background: #FFF;
        border-radius: 10px;
        padding: 0.8rem;
        max-width: 60px;
    }

    .business-usp .usp-content {
        margin-left: 1rem;
    }

        .business-usp .usp-content h3 {
            font-size: 20px;
            color: #fddb32;
            margin-bottom: 0px;
        }

        .business-usp .usp-content p {
            font-size: 15px;
            margin-bottom: 0px;
        }

    .business-usp .btn-business {
        background: #fddb32;
        padding: 0.4rem 1.6rem;
        /* font-size: 16px; */
    }

        .business-usp .btn-business i {
            font-size: 20px;
            position: relative;
            top: 2px;
        }

    .business-usp .btn-space {
        margin: 1.4rem 0 2.6rem 0;
    }

.spectacledcoder-card {
    width: 100%;
    height: 100%;
    border-radius: var(--base-border-radius-8);
    transition: all 2s;
    display: flex;
    align-items: start;
    justify-content: right;
    position: relative;
}

.circle {
    position: absolute;
    margin: auto;
    margin-right: 0px;
    width: 50px;
    height: 50px;
    background: linear-gradient(90deg, rgb(7, 92, 243) 0%, rgb(36, 154, 252) 100%);
    border-radius: 0px 15px 0px 50px;
    transition: all 0.5s;
    border-top-right-radius: var(--base-border-radius-8);
}

.spectacledcoder-card:hover .circle {
    background: linear-gradient(90deg, rgb(7, 92, 243) 0%, rgb(36, 154, 252) 100%);
    width: 100%;
    height: 100%;
    border-radius: var(--base-border-radius-8);
    transition: all 0.5s;
}

.spectacledcoder-card:hover .content {
    color: white;
}

.content {
    margin: auto;
    z-index: 100;
    color: black;
    font-weight: 500;
    transition: all 0.5s;
}

.spectacledcoder-card:hover .content h2 {
    color: var(--bg-white);
    transition: all 0.5s;
}

.spectacledcoder-card:hover .content h3 {
    color: var(--bg-white);
    transition: all 0.5s;
}

.spectacledcoder-card:hover .content p {
    color: var(--bg-white);
    transition: all 0.5s;
}

/* Bouncing Button */
.btn-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Classic Shimmer Wave */
.wave-shimmer {
    position: relative;
    overflow: hidden;
}

    .wave-shimmer::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
        animation: shimmer 2.5s infinite;
    }

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.property-ads-box {
    box-shadow: rgba(99, 99, 99, 0.1) 0px 1px 6px 0px;
    border-radius: var(--base-border-radius-8);
    border: solid 1px #e7e7e7;
    margin-bottom: 1.4rem;
}

    .property-ads-box figure img {
        border-radius: var(--base-border-radius-8) var(--base-border-radius-8) 0 0;
    }

    .property-ads-box h3 {
        font-size: 18px;
        font-weight: 700;
    }

    .property-ads-box ul li {
        font-size: var(--font-15);
        font-weight: 500;
    }

        .property-ads-box ul li i {
            font-size: 18px;
            color: #47b029;
        }

    .property-ads-box .btn {
        border-radius: var(--base-border-radius);
        width: 100%;
        padding-bottom: 0.7rem;
    }

.related-body {
    margin-top: 1rem;
}

.related-box {
    box-shadow: rgba(99, 99, 99, 0.1) 0px 1px 6px 0px;
    border-radius: var(--base-border-radius-8);
    border: solid 1px #e7e7e7;
    padding: 1rem;
}

    .related-box h5 {
        margin-bottom: 0rem;
    }

    .related-box .retated-img img {
        border-radius: var(--base-border-radius);
        height: 85px;
        object-fit: cover;
    }

    .related-box .retated-txt {
        padding-left: 0.4rem;
    }

        .related-box .retated-txt h4 {
            font-size: 14px;
            margin-bottom: 6px;
        }

        .related-box .retated-txt p {
            margin-bottom: 13px;
            font-size: 13px;
        }

    .related-box .btn-sm {
        padding: 0.3rem 1rem !important;
        border-radius: var(--base-border-radius);
        font-size: 12px !important;
    }

.btn1 {
    display: none;
}

.home-hotel-slider {
    display: flex;
}

.popular-search {
    display: flex;
}

.footer-menu {
    display: none;
}

.view-btn {
    display: none !important;
}

.signup-popup {
    border-radius: 15px;
    padding: 1rem 0rem;
    max-width: 450px;
}

    .signup-popup h3 {
        font-weight: 700;
    }

    .signup-popup .btn {
        border-radius: var(--base-border-radius);
        font-size: 17px;
        padding: 0.8rem 0.6rem;
        font-weight: 600;
    }

.popup-registration {
    margin-bottom: 0.3rem;
}

    .popup-registration .form--custom span {
        position: relative;
        padding-right: 12px;
        padding-left: 5px;
    }

.form--custom {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

    .form--custom .bi {
        font-size: 16px !important;
        position: absolute;
        top: 14px;
        left: 10px;
    }

.form--custom {
    border: solid 1px #616161;
    height: 55px;
    border-radius: var(--base-border-radius);
    width: 100%;
    background: #fafbfe;
    padding-left: 0.8rem;
}

    .form--custom .form-control {
        border: none;
        border-left: solid 1px #666;
        border-radius: 0px 5px 5px 0;
        padding-left: 15px;
    }

.btn-submit {
    background: var(--bs-primary-rgb);
    border: var(--bs-primary-rgb);
}

.modal {
    overflow: hidden;
}

.star-rating-m {
    display: none;
}


.search-container {
    position: relative;
    width: 100%;
    margin-bottom: 0px;
}

.search-box {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: none;
    border-radius: 25px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    outline: none;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.9);
}

    .search-box:focus {
        box-shadow: 0 2px 5px rgba(0,0,0,0.3);
        background: white;
        transform: translateY(-2px);
    }

.search-container .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 5px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    margin-top: 5px;
    backdrop-filter: blur(10px);
}

    .search-container .dropdown.show {
        display: block;
        animation: slideDown 0.3s ease;
    }

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-container .dropdown-item {
    padding: 13px 20px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

    .search-container .dropdown-item:hover {
        background: linear-gradient(120deg,rgba(36, 154, 252, 1) 0%, rgba(7, 92, 243, 1) 100%) !important;
        color: white;
        transform: translateX(5px);
    }

    .search-container .dropdown-item:last-child {
        border-bottom: none;
        border-radius: 0 0 5px 5px;
    }

    .search-container .dropdown-item:first-child {
        border-radius: 5px 5px 0 0;
    }

    .search-container .dropdown-item.highlighted {
        background: linear-gradient(45deg, #667eea, #764ba2);
        color: white;
    }

.no-results {
    padding: 20px;
    text-align: center;
    color: #666;
    font-style: italic;
}

.search-icon {
    /* position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
            pointer-events: none; */
}


.custom-select {
    position: relative;
    width: 100%;
}

.select-trigger {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: 1px solid #737373;
    border-radius: 3px;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    user-select: none;
}

    .select-trigger:hover {
        border-color: #667eea;
    }

    .select-trigger.active {
        border-color: #667eea;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .select-trigger .arrow {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #666;
        transition: transform 0.3s ease;
    }

    .select-trigger.active .arrow {
        transform: translateY(-50%) rotate(180deg);
    }

.select-dropdown {
    position: absolute;
    width: 100%;
    background: white;
    border: 0px solid #667eea;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 0;
    overflow: hidden;
    z-index: 1000;
    transition: max-height 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    .select-dropdown.active {
        max-height: 350px;
        overflow-y: auto;
    }

.search-box {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 1px solid #eee;
    outline: none;
    font-size: 14px;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
    border-radius: 5px;
    border: solid 1px #b9b9b9;
}

    .search-box:focus {
        background: #f8f9fa;
    }

.options-list {
    max-height: 250px;
    overflow-y: auto;
}

.option-item {
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

    .option-item:hover {
        background: #f0f0ff;
    }

    .option-item.selected {
        background: #667eea;
        color: white;
    }

    .option-item.hidden {
        display: none;
    }

.no-results {
    padding: 20px;
    text-align: center;
    color: #999;
}

.selected-output {
    margin-top: 15px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    border: 1px solid #ddd;
    min-height: 45px;
}

    .selected-output strong {
        color: #667eea;
    }

/* Multiple Select Styles */
.selected-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 20px;
}

.tag {
    background: #667eea;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tag-remove {
    cursor: pointer;
    font-weight: bold;
    opacity: 0.8;
}

    .tag-remove:hover {
        opacity: 1;
    }

.clear-all {
    background: #6c757d;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    margin-top: 10px;
}

    .clear-all:hover {
        background: #5a6268;
    }

/* Scrollbar Styles */
.options-list::-webkit-scrollbar {
    width: 8px;
}

.options-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.options-list::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

    .options-list::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

.area-box {
    max-width: 230px !important;
}

    .area-box .nice-select {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.tour__home-details figure {
    overflow: hidden;
    margin-bottom: 0px;
    position: relative;
    max-height: 350px;
    border-radius: 7px;
}

    .tour__home-details figure figcaption {
        position: absolute;
        bottom: 0;
        z-index: 99;
        left: 0;
        height: 100px;
        width: 100%;
        background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.6));
        padding: 3.8rem 1rem 2rem 1rem;
        border-radius: 0px;
    }

    .tour__home-details figure img {
        border-radius: 0px;
    }

    .tour__home-details figure img {
        -webkit-transition: all 1s ease;
        -moz-transition: all 1s ease;
        -ms-transition: all 1s ease;
        -o-transition: all 1s ease;
        transition: all 1s ease;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

        .tour__home-details figure img:hover {
            -webkit-transform: scale(1.1);
            -moz-transform: scale(1.1);
            -ms-transform: scale(1.1);
            -o-transform: scale(1.1);
            transform: scale(1.1)
        }

    .tour__home-details figure h3 {
        font-weight: 900;
        font-size: 30px;
        color: #fff;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 0px;
    }

    .tour__home-details figure h4 {
        font-weight: 900;
        font-size: 21px;
        color: #ffcd18;
        letter-spacing: -.3px;
    }

.tour__home-details h2 {
    font-size: 18px;
    color: #FFF;
    font-weight: 600;
}

.home-login-form .otp-input {
    width: 50px;
    height: 50px;
    font-size: 24px;
    text-align: center;
    margin: 0 5px;
    border: solid 1px #616161;
}

.home-login-form .step {
    display: none;
}

    .home-login-form .step.active {
        display: block;
    }

.home-login-form {
    border-radius: 15px;
    max-width: 450px;
}

    .home-login-form .btn {
        padding: 0.9rem 0;
        border-radius: 4px;
    }

    .home-login-form h5 {
        font-size: 24px;
        font-weight: 700;
    }

    .home-login-form .cross-btn {
        position: absolute !important;
        right: 10px !important;
        top: 10px !important;
        font-size: 12px !important;
        z-index: 9999 !important;
    }

        .home-login-form .cross-btn button {
            font-size: 12px;
        }

    .home-login-form .modal-body {
        padding: 2.5rem;
    }

.step {
    display: none;
}

    .step.active {
        display: block;
    }

.otp-inputs {
    display: flex;
    gap: 10px;
    justify-content: center;
}

    .otp-inputs input {
        width: 50px;
        height: 50px;
        text-align: center;
        font-size: 24px;
        border: 2px solid #dee2e6;
        border-radius: 8px;
    }

        .otp-inputs input:focus {
            border-color: #0d6efd;
            outline: none;
        }

.success-icon {
    font-size: 64px;
    color: #198754;
}

.modal-body {
    padding: 2rem 2.8rem;
}

.step .form-floating input {
    border: solid 1px #616161;
    background: #fafbfe;
}

.enquirybox .modal-content {
    border-radius: 15px !important;
}

.enquirybox .modal-title {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 0.2rem;
}

.btncustom .btn {
    padding: 0.9rem 0 !important;
}

.cross-btn .btn-close {
    position: absolute !important;
    right: 10px !important;
    top: 10px !important;
    font-size: 12px !important;
    z-index: 9999 !important;
}

.sidebar {
    width: 100%;
    background: white;
    border-radius: 0px 0px 10px 10px;
    padding: 15px 0;
    border: solid 1px #dcdcdc;
    border-top: none;
    position: sticky;
    top: 6rem;
}

.sidebar-item a {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    color: #000;
    transition: 0.5s ease all; /* This line applies the transition */
}

    .sidebar-item a:hover {
        background-image: linear-gradient( 320deg, rgb(7,91,243) 0%, rgb(38,155,252) 100%);
        color: white;
        padding-right: 1rem;
        width: 95%;
        border-radius: 0 5px 5px 0;
        transition: 0.5s ease all; /* This line applies the transition */
    }

.sidebar-item.active {
    background-image: linear-gradient( 320deg, rgb(7,91,243) 0%, rgb(38,155,252) 100%);
    color: white;
    padding-right: 1rem;
    width: 95%;
    border-radius: 0 5px 5px 0;
}

    .sidebar-item.active a {
        color: white;
    }

.dashbaord-heading {
    margin-bottom: 1rem;
}

    .dashbaord-heading h1 {
        font-size: 22px;
        font-weight: 600;
    }

.text-para {
    display: none;
}

.dashboard-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.stat-card {
    background: white;
    padding: 18px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.5s ease all; /* This line applies the transition */
}

    .stat-card:hover {
        margin-top: -0.3rem;
        height: 80px;
        transition: 0.5s ease all; /* This line applies the transition */
        background-image: linear-gradient( 320deg, rgb(7,91,243) 0%, rgb(38,155,252) 100%) !important;
    }

        .stat-card:hover h3 {
            color: #FFF;
            transition: 0.5s ease all; /* This line applies the transition */
        }

        .stat-card:hover p {
            color: #FFF;
            transition: 0.5s ease all; /* This line applies the transition */
        }

    .stat-card.pink {
        background: #feeaec;
    }

    .stat-card.blue {
        background: #e7eeff;
    }

    .stat-card.purple {
        background: #eee6fe;
    }

    .stat-card.green {
        background: #d7efe2;
    }

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    min-width: 50px;
    min-height: 50px;
}

    .stat-icon.pink {
        background: #f24268;
    }

    .stat-icon.blue {
        background: #3e8af8;
    }

    .stat-icon.purple {
        background: #7833ce;
    }

    .stat-icon.green {
        background: #43cd7f;
    }

.stat-info h3 {
    font-size: 26px;
    margin-bottom: 0;
    font-weight: 600;
}

.stat-info p {
    color: #000;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 0px;
}

.leftside {
    width: 22%;
}

.rightside {
    width: 76%;
    margin-left: 1rem;
}

.content-box {
    border: solid 1px #dcdcdc;
    border-radius: 10px;
    padding: 1.3rem;
}

    .content-box h4 {
        font-size: 16px;
        margin-bottom: 0px;
    }

.recent-search {
    border-radius: 8px;
}

    .recent-search h3 {
        margin-bottom: 20px;
        color: #333;
    }

.search-info h4 {
    font-size: 15px;
    color: #000000;
    margin-bottom: 5px;
    font-weight: 600;
}

.search-info p {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.search-info .stars {
    color: #ffd700;
    font-size: 14px;
}

    .search-info .stars .empty {
        color: #ddd;
    }

.search-img {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    object-fit: cover;
}

.search-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

    .search-item:last-child {
        border-bottom: none;
        margin-bottom: 0px;
        padding-bottom: 0px;
    }

.recent-search h3 {
    margin-bottom: 15px;
    color: #000;
    font-size: 18px;
    font-weight: 600;
}

.profile-details {
    flex: 1;
}

.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

    .profile-header h2 {
        font-size: 20px;
        color: #000;
    }

.edit-btn {
    background: white;
    border: 1px solid #007bff;
    color: #007bff;
    padding: 6px 15px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.info-row {
    margin-bottom: 7px;
    color: #000000;
}

    .info-row strong {
        color: #000;
    }

.biography-card {
    background: #007bff;
    color: white;
    padding: 25px;
    border-radius: 8px;
    position: relative;
    margin-top: 0.8rem;
}

.biography-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

    .biography-header h3 {
        font-size: 20px;
    }

.edit-bio-btn {
    background: white;
    color: #007bff;
    border: none;
    padding: 6px 15px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.profile-photo {
    text-align: center;
}

    .profile-photo img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 10px;
    }

.upload-text {
    color: #666;
    font-size: 12px;
    border: solid 1px #666;
    border-radius: 5px;
    padding: 0.4rem;
    font-weight: 500;
}

.profile-card {
    flex: 1;
    display: flex;
    gap: 20px;
}

.biography-header h3 {
    font-size: 20px;
    color: #FFF;
}

.biography-card p {
    color: #FFF;
    margin-bottom: 0px;
}

.favorites-box {
    align-items: center;
    border-bottom: solid 1px #dcdcdc;
    padding-bottom: 1.4rem;
    margin-bottom: 1.4rem;
}

    .favorites-box h3 {
        font-size: 19px;
        font-weight: 600;
        margin-bottom: 0.6rem;
    }

    .favorites-box .h3 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 0.6rem;
    }

    .favorites-box .favorites-img {
        max-width: 100%;
        object-fit: cover;
        height: 110px;
        border-radius: 10px;
    }

    .favorites-box .fav-category {
        background: #eef5fc;
        border: solid 1px #027fff;
        color: #027fff;
        border-radius: 4px;
        display: inline-flex;
        text-align: center;
        padding: 4px 13px;
        font-size: 13px;
    }

    .favorites-box .bi-dot {
        font-size: 30px;
        position: relative;
        top: 5px;
    }

.notification-box {
    /* background: #f3f5f7; */
    display: flex;
    align-items: center;
    padding: 0.9rem;
    border-radius: 10px;
    border: solid 1px #E6E6E6;
    margin-bottom: 0.6rem;
}

    .notification-box h3 {
        font-size: 14px;
        font-weight: 500;
        /* margin-bottom: 0px; */
    }

    .notification-box img {
        width: 44px;
        height: 44px;
        object-fit: cover;
        border-radius: 50%;
        margin-right: 0.8rem;
    }

    .notification-box p {
        margin-bottom: 0px;
        line-height: 1;
        font-size: 12px;
        font-weight: 400;
        color: #6F6F6F;
    }

        .notification-box p .bi {
            font-size: 24px;
            position: relative;
            top: 5px;
        }

        .notification-box p span {
            margin-left: 0.6rem;
        }

.social-share {
    margin-right: 1.4rem;
}

    .social-share ul li {
        width: 34px;
        height: 34px;
        border-radius: 50%;
    }

        .social-share ul li a {
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFF;
            font-size: 18px;
        }

        .social-share ul li .bi {
            position: relative;
            top: 4px;
        }

    .social-share .icon-facebook {
        background: #1877f7;
    }

    .social-share .icon-twitter {
        background: #000000;
    }

    .social-share .icon-youtube {
        background: #ff0209;
    }

    .social-share .icon-whatsapp {
        background: #2ba63b;
    }

    .social-share .icon-instagram {
        background: linear-gradient(115deg, rgb(249, 206, 52), rgb(238, 42, 123), rgb(98, 40, 215));
    }
/* .shareicon{
        cursor: pointer;
    }
    .shareicon:hover{
        background: #DDD;
    } */

.profile-form .form-control {
    border: solid 1px #000 !important;
}

.profile-form .form-select {
    border: solid 1px #000 !important;
}

.profile-form .btn {
    padding: 0.8rem 2.3rem !important;
    font-size: 15px !important;
    font-weight: 500 !important;
}

.vissible-m {
    display: none;
}


/* Black Overlay - Improved */
.custom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
    display: none;
    backdrop-filter: blur(3px);
}

    .custom-overlay.show {
        display: block;
        animation: fadeIn 0.4s ease-in-out;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.userlogin-show .dropdown-menu .dropdown-item {
    width: 100% !important;
    padding: 0.6rem 1rem !important;
    font-size: 14px;
}

    .userlogin-show .dropdown-menu .dropdown-item i {
        padding-right: 0.4rem;
    }

.userlogin-show .dropdown-menu li:first-child {
    margin-right: 0 !important;
    border-bottom: solid 0px #DDD;
}

.dropdown-menu.show {
    padding-top: 0px;
    padding-bottom: 0px;
    /* box-shadow: 0 0 10px #DDD; */
}
/* .userlogin-show .dropdown-menu li:hover{
        background-image: linear-gradient( 320deg, rgb(7,91,243) 0%, rgb(38,155,252) 100%) !important;
    } */
.arrow_box {
    position: relative;
    background: #FFF;
    border: 1px solid #DDD;
}

    .arrow_box:after, .arrow_box:before {
        bottom: 100%;
        left: 50%;
        border: solid transparent;
        content: "";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
    }

    .arrow_box:after {
        border-color: rgba(136, 183, 213, 0);
        border-bottom-color: #88b7d5;
        border-width: 10px;
        margin-left: -10px;
    }

    .arrow_box:before {
        border-color: rgba(194, 225, 245, 0);
        border-bottom-color: #c2e1f5;
        border-width: 11px;
        margin-left: -11px;
    }

.file-upload {
    background-color: #ffffff;
    width: 100%;
    margin: 0 auto;
    padding: 10px 0 8px 0;
}

.file-upload-btn {
    width: 100%;
    margin: 0;
    color: #fff;
    background: #1FB264;
    border: none;
    padding: 10px;
    border-radius: 4px;
    border-bottom: 4px solid #15824B;
    transition: all .2s ease;
    outline: none;
    font-weight: 700;
}

    .file-upload-btn:hover {
        background: #1AA059;
        color: #ffffff;
        transition: all .2s ease;
        cursor: pointer;
    }

    .file-upload-btn:active {
        border: 0;
        transition: all .2s ease;
    }

.file-upload-content {
    display: none;
    text-align: center;
    background: #f6f9ff;
    border: dashed 2px #c1daf8;
    border-radius: 15px;
}

.file-upload-input {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    outline: none;
    opacity: 0;
    cursor: pointer;
}

.image-upload-wrap {
    border: 1px solid #000;
    position: relative;
    background: #FFF;
    min-height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding: 1.4rem 1rem;
}

    .image-dropping,
    .image-upload-wrap:hover {
        /* background-color: #000; */
        border: 1px dashed #000;
    }

.image-title-wrap {
    padding: 0 15px 15px 15px;
    color: #222;
}

.drag-text {
    text-align: center;
    font-size: 13px;
}

    .drag-text h3 {
        font-weight: 100;
        color: #000;
        font-size: 13px !important;
        margin-bottom: 0px;
        line-height: 1.6;
        font-family: Arial, Helvetica, sans-serif;
    }

    .drag-text .btn-primary {
        padding: 0.5rem 0.8rem;
        border-radius: 4px;
        font-size: 13px;
    }

    .drag-text .bi-cloud-arrow-up {
        font-size: 24px;
        margin-bottom: 0px;
    }

.file-upload-image {
    max-height: 200px;
    max-width: 100%;
    margin: auto;
    padding: 20px;
}

.remove-image {
    width: auto;
    margin: 0;
    color: #fff;
    background: #cd4535;
    border: none;
    padding: 10px;
    border-radius: 4px;
    border-bottom: 4px solid #b02818;
    transition: all .2s ease;
    outline: none;
    text-transform: uppercase;
    font-weight: 700;
}

    .remove-image:hover {
        background: #c13b2a;
        color: #ffffff;
        transition: all .2s ease;
        cursor: pointer;
    }

    .remove-image:active {
        border: 0;
        transition: all .2s ease;
    }

/* Black Overlay - Improved */
.custom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.50);
    z-index: 1;
    display: none;
    backdrop-filter: blur(3px);
}

    .custom-overlay.show {
        display: block;
        animation: fadeIn 0.4s ease-in-out;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.social-icons {
    display: flex;
    gap: 5px;
    margin-right: 1rem;
}

    .social-icons .icon-wrapper {
        position: relative;
        width: 36px;
        height: 36px;
    }

    .social-icons .social-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        font-size: 18px;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        z-index: 2;
    }

    .social-icons .facebook {
        background: #1877f2;
        color: white;
    }

    .social-icons .twitter {
        background: #1da1f2;
        color: white;
    }

    .social-icons .instagram {
        background: #e1306c;
        color: white;
    }

    .social-icons .youtube {
        background: #ff0000;
        color: white;
    }

    .social-icons .whatsapp {
        background: #2ba63b;
        color: white;
    }

    .social-icons .social-icon:hover {
        transform: translateY(-10px) scale(1.15);
        background: rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    }

    .social-icons .icon-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        z-index: 1;
        opacity: 0;
        transform: scale(0);
        transition: all 0.4s ease;
    }

    .social-icons .social-icon:hover .icon-bg {
        opacity: 1;
        transform: scale(1);
        animation: pulse 0.6s ease-out;
    }

    /* Colors for each social media */
    .social-icons .facebook:hover .icon-bg {
        background: #1877f2;
    }

    .social-icons .twitter:hover .icon-bg {
        background: #1da1f2;
    }

    .social-icons .instagram:hover .icon-bg {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    }

    .social-icons .linkedin:hover .icon-bg {
        background: #0a66c2;
    }

    .social-icons .youtube:hover .icon-bg {
        background: #ff0000;
    }

    .social-icons .whatsapp:hover .icon-bg {
        background: #2ba63b;
    }

    .social-icons .facebook:hover .fab {
        color: #FFF !important;
        position: relative;
        z-index: 99;
    }

    .social-icons .twitter:hover .fab {
        color: #FFF !important;
        position: relative;
        z-index: 99;
    }

    .social-icons .instagram:hover .fab {
        color: #FFF !important;
        position: relative;
        z-index: 99;
    }

    .social-icons .youtube:hover .fab {
        color: #FFF !important;
        position: relative;
        z-index: 99;
    }

    .social-icons .whatsapp:hover .fab {
        color: #FFF !important;
        position: relative;
        z-index: 99;
    }


.ratingbox .rating-section {
    margin-bottom: 20px;
    text-align: center;
}

.ratingbox .rating-label {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #555;
    margin-bottom: 15px;
}

.ratingbox .stars {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 40px;
}

.ratingbox .star {
    cursor: pointer;
    color: #dadada;
    transition: all 0.3s ease;
    user-select: none;
    position: relative;
    display: inline-block;
    width: 40px;
}

.ratingbox .star-half {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 40px;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}

.ratingbox .star.half {
    background: linear-gradient(90deg, #ffd700 50%, #ddd 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ratingbox .star:hover,
.star.active {
    color: #ffd700;
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.ratingbox .rating-value {
    margin-top: 15px;
    font-size: 18px;
    color: #075cf3;
    font-weight: bold;
    min-height: 25px;
}

.ratingbox .reviews-section {
    margin-bottom: 30px;
}

.ratingbox .reviews-label {
    font-size: 16px;
    font-weight: bold;
    color: #555;
    margin-bottom: 15px;
    display: block;
}

.ratingbox .reviews-list {
    /* display: flex;
        flex-direction: column;
        gap: 10px; */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-height: 250px;
    overflow-y: auto;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #eee;
}

.ratingbox .review-item {
    padding: 20px;
    background: white;
    border-left: 4px solid #667eea;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    box-shadow: 3px 0px 5px #DDD;
}

    .ratingbox .review-item:hover {
        background: #f0f0f0;
        transform: translateX(5px);
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .ratingbox .review-item.active {
        background: #667eea;
        color: white;
        border-left-color: #764ba2;
    }

.ratingbox .textarea-section {
    margin-top: 30px;
}

.ratingbox .textarea-label {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #555;
    margin-bottom: 10px;
}

.ratingbox textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    resize: vertical;
    min-height: 120px;
    transition: border-color 0.3s ease;
}

    .ratingbox textarea:focus {
        outline: none;
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }

.ratingbox .button-group {
    /* display: flex;
        gap: 10px; */
    margin-top: 15px;
}

.ratingbox button {
    flex: 1;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    margin-right: 0.6rem;
}

.ratingbox .btn-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

    .ratingbox .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    }

.ratingbox .btn-clear {
    background: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
}

    .ratingbox .btn-clear:hover {
        background: #e0e0e0;
    }

.ratingbox .success-message {
    display: none;
    padding: 15px;
    background: #d4edda;
    color: #155724;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    font-weight: bold;
}

    .ratingbox .success-message.show {
        display: block;
        animation: slideIn 0.3s ease;
    }

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-banner figure {
    position: relative;
}

    .contact-banner figure img {
        border-radius: 10px;
    }

    .contact-banner figure figcaption {
        background: linear-gradient(to right, rgba(7, 92, 243, 1) 51%, rgba(36, 154, 252, 1) 100%) !important;
        position: absolute;
        bottom: 1rem;
        left: 1rem;
        padding: 1.4rem;
        border-radius: 8px;
        max-width: 320px;
    }

        .contact-banner figure figcaption h2 {
            color: var(--bg-white);
            font-size: 24px;
            font-weight: 600;
        }

        .contact-banner figure figcaption p {
            color: var(--bg-white);
            font-weight: 400;
            margin-bottom: 0px;
        }

.contact-boxs {
    padding: 2rem 0;
}

    .contact-boxs .form-section {
        background: #e7f0ff;
        padding: 2.4rem 2.8rem;
    }

        .contact-boxs .form-section h2 {
            font-weight: 700;
        }

        .contact-boxs .form-section .form-control {
            border: solid 1px var(--bg-black);
            border-radius: 4px;
        }

        .contact-boxs .form-section textarea {
            min-height: 100px;
        }

        .contact-boxs .form-section .btn {
            border-radius: 4px;
            width: 150px;
        }

    .contact-boxs .address-section h3 {
        font-weight: 700;
        margin-bottom: 0.2rem;
    }

    .contact-boxs .address-section .company-name {
        margin-bottom: 1.6rem;
        font-weight: 600;
    }

    .contact-boxs .address-section .contact-item {
        display: flex;
        align-items: center;
        margin-bottom: 1.8rem;
    }

        .contact-boxs .address-section .contact-item .contact-info h4 {
            margin-bottom: 0.2rem;
            font-weight: 600;
            font-size: 16px;
        }

        .contact-boxs .address-section .contact-item .contact-info p {
            margin-bottom: 0px;
        }

    .contact-boxs .address-section .contact-icon {
        background: #e7f0ff;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        margin-right: 1rem;
    }

        .contact-boxs .address-section .contact-icon .bi {
            font-size: 26px;
            color: #0660f4;
        }

    .contact-boxs .map-section {
        margin-top: 3rem;
    }

    .contact-boxs .ratio-21x9 {
        --bs-aspect-ratio: 35%;
    }

.faq-box .accordion-item {
    border: solid 1px #666;
    margin-bottom: 0.4rem;
    border-radius: 5px;
}

.faq-box .accordion-button {
    background: transparent !important;
    color: #000;
    font-weight: 500;
}
/* .faq-box .accordion-item:first-of-type{
        border: solid 1px #0660f4 !important;
    } */
.faq-left {
    max-width: 300px;
}

    .faq-left h2 {
        font-size: 26px;
        font-weight: 600;
    }

.faq-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.faq-banner-box {
    min-height: 200px;
    position: relative;
    z-index: 1;
}

    .faq-banner-box h2 {
        font-size: 26px;
        color: #FFF;
        font-weight: 600;
    }

.testimonial-box {
    border: solid 1px #d3d3d3;
    padding: 1.4rem;
    border-radius: 10px;
}

    .testimonial-box h4 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 0.2rem;
    }

    .testimonial-box img {
        max-width: 55px;
        border-radius: 7px;
        margin-right: 1rem;
    }


.masonry-item {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    item-flow: row collapse;
    gap: 1rem;
}

.category-bdr {
    border-bottom: solid 1px #dddddd;
    padding-bottom: 4rem !important;
    margin: 2.3rem 0;
}

.category-body {
    border: solid 1px #000;
    border-radius: 10px;
    padding: 1.6rem;
}

    .category-body h4 {
        margin-bottom: 1rem;
        font-weight: 600;
    }

.categoryg-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}

    .categoryg-list li {
        margin-bottom: 0.3rem;
        position: relative;
        margin-left: 2rem;
    }

        .categoryg-list li img {
            max-width: 20px;
            margin-right: 0.6rem;
            position: absolute;
            left: -30px;
        }

.naughty {
    width: 100%;
}

.item-category {
    display: table;
    margin: 5px;
    width: 48%;
}

.hero-banner figure {
    position: relative;
}

    .hero-banner figure img {
        border-radius: 10px;
    }

    .hero-banner figure figcaption {
        background: linear-gradient(185deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 53%, rgba(0, 0, 0, 1) 100%);
        position: absolute;
        bottom: 0rem;
        left: 0rem;
        padding: 1.4rem;
        border-radius: 0 0 8px 8px;
        width: 100%;
    }

        .hero-banner figure figcaption h2 {
            color: var(--bg-white);
            font-size: 24px;
            font-weight: 600;
        }

        .hero-banner figure figcaption p {
            color: var(--bg-white);
            font-weight: 400;
            margin-bottom: 0px;
        }

.about-content {
    padding-right: 0rem;
}

    .about-content h4 {
        background: #fdad15;
        display: inline;
        font-size: 12px;
        padding: 0.2rem 1rem;
        border-radius: 40px;
        margin-bottom: 2rem;
    }

    .about-content h2 {
        margin-top: 1rem;
        margin-bottom: 0.8rem;
        font-size: 40px;
        font-weight: 900;
    }

    .about-content h3 {
        margin-top: 1rem;
        margin-bottom: 0.8rem;
        font-size: 26px;
        font-weight: 800;
    }

    .about-content p {
        font-size: 16px;
    }

    .about-content h4 {
        background: #fdad15;
        display: inline;
        font-size: 12px;
        padding: 0.2rem 1rem;
        border-radius: 40px;
        margin-bottom: 2rem;
    }

.about-milestone-box {
    padding: 1.6rem;
    background: #e0e0e0;
    border-radius: 15px;
}

    .about-milestone-box i {
        background: linear-gradient(to right, rgba(7, 92, 243, 1) 51%, rgba(36, 154, 252, 1) 100%) !important;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 22px;
        color: #FFF;
        margin-bottom: 0.8rem;
    }

    .about-milestone-box h3 {
        font-size: 21px;
        font-weight: 700;
    }

    .about-milestone-box:hover {
        background: linear-gradient(to right, rgba(7, 92, 243, 1) 51%, rgba(36, 154, 252, 1) 100%) !important;
    }

        .about-milestone-box:hover i {
            background: var(--bg-white) !important;
            color: var(--base-color);
        }

        .about-milestone-box:hover h3 {
            color: var(--bg-white);
        }

        .about-milestone-box:hover p {
            color: var(--bg-white);
        }

.leadership-heading h3 {
    font-size: 36px;
    font-weight: 800;
}

.leadership-box h4 {
    font-size: 22px;
    font-weight: 800;
}

.leadership-box p {
    margin-bottom: 0.6rem;
}

.leadership-box img {
    border-radius: 10px;
}

.leadership-box a {
    color: var(--bs-primary-rgb);
}

.contact-block h1 {
    font-size: 34px;
    font-weight: 700;
}

.contact-block h2 {
    font-size: 26px;
    font-weight: 700;
    /* color: #72b7fc;
    background-image: linear-gradient(45deg, #72b7fc , #106ff6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}

.contact-block h3 {
    font-size: 20px;
    font-weight: 700;
}

.contact-block p {
    font-size: 15px;
    line-height: 1.5;
}

.contact-block .about-box {
    background: #fdad15;
    display: inline;
    padding: 0.2rem 1rem;
    font-size: 12px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.contact-block ul {
    margin-left: 1.4rem;
    padding-left: 0px;
}

.contact-block ul li {
    margin-right: 0;
    position: relative;
    list-style: none;
    margin-bottom: 0.6rem;
}

.contact-block ul li::after {
    background: url(../../images/check2.png) no-repeat;
    content: '';
    position: absolute;
    width: 16px;
    height: 15px;
    left: -1.5rem;
    top: 2px;
}

.contact-block .core-problems {
    padding-right: 2.8rem;
}

.contact-block .core-problems h4 {
    font-size: 17px;
    font-weight: 700;
}

.contact-block .core-problems {
    counter-reset: my-sec-counter;
    position: relative;
}

.contact-block .core-problems div {
    padding-left: 3rem;
    padding-bottom: 1rem;
}

.contact-block .core-problems div::before {
    /* Increment "my-sec-counter" by 1 */
    counter-increment: my-sec-counter;
    content: "" counter(my-sec-counter) "";
    background: #d9e1ea;
    width: 30px;
    height: 30px;
    display: block;
    text-align: center;
    line-height: 1.8;
    border-radius: 50%;
    position: absolute;
    left: 0px;
}

.contact-block .ollist {
    padding-left: 1rem;
    line-height: 1.8;
}

.contact-block .text-small{
    font-size: 23px;
}

.pages-banner {
    margin-bottom: 2rem;
}

.pages-banner figure {
    position: relative;
}

.pages-banner figure img {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.pages-banner figure figcaption {
    position: absolute;
    bottom: 0rem;
    left: 0rem;
    width: 100%;
    }

.pages-banner figure figcaption::after {
    content: '';
    width: 100%;
    height: 100px;
    /* background: rgba(0, 0, 0, 0.04); */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 1) 100%);
    display: block;
    left: 0px;
    bottom: 0px;
    position: absolute;
    border-radius: 0 0 10px 10px;
}

.pages-banner figure figcaption h4 {
    position: relative;
    text-align: left !important;
    padding-left: 2rem;
    padding-bottom: 1.6rem;
    z-index: 999;
}


@media(max-width: 900px) {
    .sliderrightimg > div img {
        min-height: 200px;
    }

    .dashboard-box {
        grid-template-columns: repeat(2, 1fr);
    }

    .leftside {
        width: 30%;
    }

    .rightside {
        width: 68%;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .top-menu li:first-child {
        display: none;
    }
}

@media(max-width: 767px) {
    :root {
        --base-space: 1rem 0 0 0;
        --base-padding-btn: 0.5rem 1.1rem;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    html, body, button, input, select, textarea, p {
        font-size: 14px !important;
    }

    .category--filter {
        grid-template-columns: repeat(2, 1fr);
    }

    .geo-location {
        font-size: 12px;
        padding: 0;
    }

    .location-fetch-box {
        margin-left: 2% !important;
        margin-top: 5% !important;
    }

    .listing-banner {
        background: linear-gradient(90deg, rgba(244,209,202,1) 46%, rgba(226,217,178,1) 100%);
    }

        .listing-banner::after {
            background: transparent;
        }

        .listing-banner .searchbox {
            border: 0 !important;
            box-shadow: none !important;
            padding: 0.2rem 0 0.8rem 0;
        }

    .top--store-photo > div:nth-child(1) {
        width: 100%;
    }

    .top--store-photo > div:nth-child(2) {
        width: 100%;
    }

    .sliderrightimg > div img {
        min-height: 90px;
        max-height: 90px;
    }

    .hotelslider .carousel-inner {
        margin-bottom: 1rem;
    }

        .hotelslider .carousel-inner .carousel-item img {
            height: 180px;
        }

    .seallphoto {
        z-index: 3;
        bottom: 23px;
        right: 13px;
    }

    .btn-enquiry {
        width: 100%;
        padding: 0.8rem !important;
        font-size: 17px !important;
    }

    .top--store-photo {
        margin-bottom: 0rem;
    }

    .total-share-list ul li {
        padding: 0.4rem 0.55rem;
    }

    .hotelslider .carousel-inner {
        border-radius: var(--base-border-radius) var(--base-border-radius) 0 0 !important;
    }

    .rounded-last {
        border-radius: 0 0 var(--base-border-radius) 0;
    }

    .rounded-second-last {
        border-radius: 0 0 0 var(--base-border-radius);
    }

    .address-details {
        font-size: 14px !important;
        line-height: 1.2;
    }

    .bdr-top {
        border-top: solid 0px #E3E3E3;
        padding-top: 0rem;
        margin-top: 0.4rem !important;
    }

    .service--off h3 {
        font-size: 14px;
        margin-bottom: 0.3rem;
    }

    .sliderrightimg .more-photo {
        display: none;
    }
    /* .field{
        z-index: 99999 !important;
        position: relative !important;
    } */
    .searchbox > div > div:nth-child(1) {
        position: relative;
        z-index: 9999 !important;
    }

    .searchbox > div > div:nth-child(2) {
        position: relative;
        z-index: 999 !important;
    }

    .ui.search.dropdown .menu {
        max-height: 12.014rem !important;
    }

    .filter_type {
        padding: 0 0.2rem !important;
    }

        .filter_type h6 {
            margin-bottom: 0px !important;
        }

    .logotop {
        max-width: 130px;
    }

    .booking-box .recharge-block {
        justify-content: center;
        text-align: center;
        min-height: 100px;
        padding: 0rem;
        background: transparent;
        border: none;
    }

        .booking-box .recharge-block > div:nth-child(2) p {
            margin-bottom: 10px;
            font-size: 13px !important;
        }

        .booking-box .recharge-block > div:nth-child(3) {
            display: none;
        }

        .booking-box .recharge-block > div:nth-child(2) {
            padding-left: 0.2rem;
            padding-right: 0.2rem;
            margin-top: 0px;
        }

        .booking-box .recharge-block > div:nth-child(1) {
            margin-bottom: 0rem;
            background: var(--bg-white);
            box-shadow: rgba(14, 63, 126, 0.06) 0px 0px 0px 1px, rgba(42, 51, 70, 0.03) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 2px 2px -1px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.03) 0px 5px 5px -2.5px, rgba(42, 51, 70, 0.03) 0px 10px 10px -5px, rgba(42, 51, 70, 0.03) 0px 24px 24px -8px;
            border-radius: 13px;
        }

        .booking-box .recharge-block > div:nth-child(2) p {
            display: none;
        }

        .booking-box .recharge-block > div:nth-child(2) h3 {
            font-size: 12px;
            font-weight: 600;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            overflow: hidden;
            margin-top: 0.5rem;
            margin-bottom: 0px;
            line-height: 1.3;
        }
    /* .top-search-box{
        display: none;
    } */
    .location-address {
        display: none;
    }

    .top-search {
        border-left: none !important;
    }

        .top-search::after {
            border-left: none !important;
            display: none;
        }

    .top-search-box {
        /* height: 45px; */
        margin-top: 0.6rem;
    }

        .top-search-box .top-search button {
            width: 50px;
            border-radius: 5px !important;
        }

            .top-search-box .top-search button svg {
                width: 18px;
            }

        .top-search-box .top-search .form-control {
            height: 45px;
        }

    .top-search-box {
        border-radius: 5px;
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 0.8rem;
    }

    .slidermain {
        min-height: auto;
        border-radius: var(--base-border-radius);
        overflow: hidden;
        max-height: 150px;
    }

        .slidermain .slick-list {
            border-radius: var(--base-border-radius);
            overflow: hidden;
        }

        .slidermain img {
            min-height: auto;
            border-radius: var(--base-border-radius);
        }

    .business-usp .men-img {
        position: relative;
        right: 0px;
        bottom: 0;
        max-width: 60%;
        left: 0px;
        margin: 0px auto;
        display: block;
    }

    .business-usp .btn-space {
        margin: 0.6rem 0;
    }

    .business-usp {
        margin: 3rem 0 0rem 0;
        padding-bottom: 1rem;
        padding-top: 1.5rem;
    }

    .slick-next::before {
        content: '\F285';
        font-family: "bootstrap-icons";
        left: 0.6rem;
        position: relative;
        font-size: 12px;
    }

    .slick-prev::before {
        left: 0.5rem;
        position: relative;
        font-size: 12px;
    }

    .slick-prev, .slick-next {
        width: 28px;
        height: 28px;
        box-shadow: none;
    }

    .hotel-block {
        padding: 0rem 1rem;
        border: none;
    }

    .home-category .slick-slide {
        margin: 0px 4px;
    }

    .block-info .block-space h5 {
        font-size: 13px;
        margin-bottom: 0.4rem;
    }

    .block-info:hover .block-space h5 {
        background: transparent;
    }

    .block-info .block-space a svg {
        display: none;
    }

    .block-info .block-space {
        padding: 0.2rem 0.2rem 0.6rem 0.2rem;
    }

    .spacem {
        margin-top: 0.6rem;
    }

    .spacem1 {
        margin-top: 2.2rem;
    }

    .listing-slider .slick-next::before {
        left: 0.4rem;
    }

    .listing-slider .slick-prev::before {
        left: 0.4rem;
    }

    .seal-info ul li {
        margin-bottom: 0rem;
    }

    .filter-body {
        border-top: solid 1px #DDD;
        padding-top: 0rem;
        margin-top: 0.6rem;
        margin-bottom: 1.4rem;
    }

        .filter-body .filter-box li {
            min-width: 150px;
        }

        .filter-body .filter-box {
            display: flex;
            justify-content: flex-start;
            flex-wrap: wrap;
            gap: 10px;
            overflow-x: unset;
            padding: 0 0 20px;
            position: static;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: auto !important;
            margin-bottom: 0px;
        }

    .filter-body {
        padding-bottom: 0rem;
        margin-bottom: 0px;
        padding-top: 1rem;
    }
    #listing-items{
        margin: 0 1rem;
    }
    .seal-info .recommended {
        display: none;
    }

    .premium-listing-box {
        padding: 1.4rem 1rem 1rem 1rem;
        border-radius: 0px;
        margin-bottom: 0px;
    }

    .ads-hotel-box {
        padding: 1.4rem 0.6rem 0.6rem 0.6rem;
        border-radius: 0px;
        border: none;
    }

    .fixed-header {
        top: 7.7rem;
    }

    .sliderrightimg {
        margin-bottom: 1rem;
    }

    .also-like .premium-ads-box figure img {
        height: 120px;
    }

    .premium-ads-box .premium-ads-box-space .enquiry-box .recommended {
        display: none;
    }

    .premium-ads-box .premium-ads-box-space .enquiry-box .verified {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 0.6rem 0.9rem !important;
        font-size: 14px !important;
    }

    .total-share-list .list-inline-item:not(:last-child) {
        margin-right: .2rem;
    }

    .tabs--details ul li .nav-link {
        font-size: 13px !important;
    }

    .hidden-m {
        display: none;
    }

    .content-box {
        background: #f5f5f5;
        padding: 10px;
        border-radius: 8px;
        margin-bottom: 30px;
    }

    .contents {
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

        .contents.collapsed {
            max-height: 270px;
        }

        .contents.expanded {
            max-height: none;
        }

    .btn1 {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #btn1 {
        /* padding: 0.4rem 1.2rem;
        font-weight: 400;
        font-size: 13px !important;
        border-radius: var(--base-border-radius);
        text-transform: uppercase;
        letter-spacing: 0.4px; */
    }

        #btn1 i {
            font-size: 12px;
            position: relative;
            top: 0px;
        }

    .booking-box {
        padding: 2rem 0;
    }
    /* .booking-box h1{
        margin-bottom: 0 !important;
    } */

    .line-clamp {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .popular-city-home .slick-slide {
        margin: 0px 4px;
    }

    .popular-city-home .city-block figure {
        border-radius: 0 0 15px 15px;
        margin-bottom: 0px;
    }

    .popular-city-home .city-block {
        padding-bottom: 0px;
    }

    .explore-all {
        display: none;
    }
    /* .popular-city-home:hover .city-block{
        padding-bottom: 1px;
    }
    .city-block:hover .explore-all{
        display: block !important;
        padding: 0.4rem 0;
    } */
    .popular-city-home .city-block figure figcaption > div p {
        display: none;
    }

    .popular-city-home .city-block figure figcaption > div h4 {
        margin-bottom: 0rem !important;
        font-size: 13px;
    }

    .popular-city-home .city-block figure figcaption > div {
        padding: 1.6rem 0rem 0rem 0rem;
    }

    .popular-city-home .city-block img {
        border-radius: 8px;
    }

    .popular-city-home .city-block figure figcaption {
        padding: 0.6rem 0.2rem;
    }

        .popular-city-home .city-block figure figcaption::after {
            border-radius: 0 0 8px 8px;
        }
    /* .popular-search{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    } */
    .popular-city-home .spacetop {
        padding-top: 0.5rem;
    }

    .popular-category h4 {
        font-size: 12px;
        font-weight: 600;
        border-radius: 0 0 var(--base-border-radius) var(--base-border-radius);
        padding: 0.5rem 0.8rem 0.6rem 0.8rem;
    }

    .popular-category:hover h4::after {
        display: none;
    }

    .heading-small {
        font-weight: 700;
    }

    .popular-city-home {
        margin: 2.2rem 0 1.4rem 0;
        padding: 1.4rem 0 1.6rem 0;
        border-top: solid 1px #EAEAEA;
        border-bottom: solid 1px #EAEAEA;
    }

    .popular-category figure img {
        height: 90px;
        object-fit: cover;
    }

    .business-usp .icon-img {
        margin: 0px auto 10px auto;
        box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
    }

    .business-boxs {
        display: block !important;
        text-align: center;
    }

    .business-usp .usp-content {
        margin-left: 0rem;
    }

    .men-img {
        display: none !important;
    }

    .business-usp h3 {
        text-align: center;
    }

    .business-usp .usp-content p {
        font-size: 14px !important;
        margin-bottom: 0px;
    }

    .slide-block {
        padding: 0.4rem 0;
    }

    .btn-primary, .btn-secondary {
        border-radius: var(--base-border-radius);
    }

    .business-usp .usp-content h3 {
        font-size: 14px;
        margin-bottom: 0.2rem;
    }

    .business-usp .usp-content p {
        font-size: 12px !important;
        line-height: 1.3;
    }

    .business-usp p {
        font-size: 14px !important;
        color: var(--bg-white);
        margin-bottom: 1rem !important;
    }

    .popular-category-bottom {
        display: flex;
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 10px;
        overflow-x: auto;
        padding: 0 0 25px;
        position: static;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: auto !important;
        margin-bottom: 0px;
    }

        .popular-category-bottom > div {
            flex: 0 0 auto;
            width: 80%;
        }

    .footer-menu {
        background: var(--bg-white);
        position: fixed;
        bottom: 0px;
        width: 100%;
        padding: 0.8rem 0.8rem 0.6rem 0.8rem;
        box-shadow: 0 0 10px#DDD;
        z-index: 9999;
        display: block;
    }

        .footer-menu ul {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            grid-gap: 10px;
            margin-bottom: 0px;
        }

            .footer-menu ul li {
                text-align: center;
            }

                .footer-menu ul li i {
                    font-size: 21px;
                    min-height: 22px;
                    display: block;
                    line-height: 0;
                }

                .footer-menu ul li .bi-person {
                    font-size: 22px;
                }

                .footer-menu ul li span {
                    font-size: 11px;
                    font-weight: 500;
                }

                .footer-menu ul li img {
                    max-width: 21px;
                    min-height: 22px;
                }

    footer {
        padding-top: 4rem;
        background: transparent;
    }

        footer .container, .footer-bdr {
            display: none;
            margin-top: 8rem;
        }

    .textimonial-home {
        overflow-x: hidden;
    }

    .breadcrumb-body {
        display: none;
    }

    .listing-slider {
        display: flex;
        justify-content: flex-start;
        /* flex-wrap: nowrap;
        gap: 10px;
        overflow-x: auto;
        padding: 0;
        position: static;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: auto !important;
        margin-bottom: 0px; */
    }

        .listing-slider img {
            height: 130px;
            min-height: 130px;
            width: 100%;
            min-width: 100%;
            border-radius: var(--base-border-radius);
        }

    .hotel--details .customer-label ul li:first-child {
        width: 100% !important;
        margin-bottom: 0.4rem;
    }

    .hotel--details .customer-label ul {
        padding: 0.5rem 0;
    }

        .hotel--details .customer-label ul li {
            padding-left: 0;
        }

    .seal-info {
        padding-top: 0rem;
        margin-top: 0rem;
    }

    .filter-body h3 {
        font-size: 15px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        overflow: hidden;
    }

    .filter-body p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        overflow: hidden;
    }

    .hotel--details .hotel-usp ul li::after {
        left: 0px;
    }

    .item.list-group-item .thumbnail {
        margin-bottom: 0rem;
        padding-bottom: 0rem;
        padding-top: 0rem;
        /* margin-left: 1rem;
        margin-right: 1rem; */
    }

    .recommanded-block {
        border-radius: var(--base-border-radius-8) !important;
    }

    .hotel--details h2 {
        font-weight: 600;
    }

    .seal-info {
        display: none;
    }

    .view-btn {
        display: flex !important;
    }

        .view-btn .verified {
            background: linear-gradient(120deg, rgb(36, 154, 252) 0%, rgb(7, 92, 243) 100%) !important;
            color: var(--bg-white);
            padding: 0.4rem 0.8rem !important;
            font-size: 13px;
            font-weight: var(--base-font-500);
            border-radius: var(--base-border-radius);
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
        }

            .view-btn .verified span {
                display: none;
            }

            .view-btn .verified img {
                max-width: 12px;
                margin-right: 0.3rem;
            }

        .view-btn .trusted {
            background: #1daa61;
            color: var(--bg-white);
            padding: 0.4rem 0.8rem !important;
            font-size: 13px;
            border-radius: var(--base-border-radius);
            font-weight: var(--base-font-500);
            transition: all 0.6s ease;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .view-btn .trusted img {
                max-width: 16px;
                margin-right: 0.3rem;
            }

            .view-btn .trusted:hover {
                background: #0d8d4b;
                transition: all 0.6s ease;
            }

            .view-btn .trusted span {
                display: none;
            }

        .view-btn .recommended {
            background: transparent;
            color: var(--bs-primary-rgb);
            border: solid 1px var(--bs-primary-rgb);
            padding: 0.4rem 0.4rem;
            font-size: 12px;
            font-weight: var(--base-font-500);
            transition: all 0.6s ease;
            margin-left: 0.4rem;
            border-radius: var(--base-border-radius);
            min-width: 120px;
            text-align: center;
        }

            .view-btn .recommended:hover {
                background: var(--bs-primary-rgb);
                color: var(--bg-white);
                transition: all 0.6s ease;
            }

            .view-btn .recommended svg {
                width: 18px;
                position: relative;
                top: -1px;
            }

            .view-btn .recommended a {
                color: var(--bs-primary-rgb);
            }
    /* .view-btn .recommended span{
        display: none;
    } */

    .ads-label {
        margin: 3px 3px 5px 0px;
        right: 3px !important;
    }

    .listing-view {
        overflow-x: hidden;
        padding-top: 0px !important;
    }

    .hotel--details .hotel-usp {
        margin: 0.7rem 0rem;
    }

    .hotel--details .timining img {
        top: -1px;
    }

    .filtersticky {
        display: block;
    }

    .filter-canvas .form-select {
        border: solid 1px #a2a2a2;
        border-radius: 4px;
        box-shadow: none;
    }

    .carousel-control-next, .carousel-control-prev {
        opacity: 0.8;
    }

    .ads-social li span {
        font-size: 10px;
    }

    .all-photo-block .nav-pills .nav-link {
        padding: 0rem 0.2rem;
        margin-bottom: 0.3rem;
        margin-top: 0.3rem;
    }

    .ads-listing {
        margin-bottom: 0.4rem !important;
    }

    .details--box {
        margin-bottom: 0.8rem;
    }

    .premium-ads-box {
        border-radius: var(--base-border-radius);
    }

        .premium-ads-box figure img {
            border-radius: var(--base-border-radius) var(--base-border-radius) 0 0;
        }

    .total-share-list ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: start;
        gap: 10px;
    }

    .also-like .premium-ads-box .address {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        overflow: hidden;
    }

    .listing-slider > div:nth-child(1) {
        display: block;
    }

    .listing-slider > div {
        display: none;
    }
    /* .ads-label{
        top: 0px;
        left: 5px !important;
        right: auto;
    } */
    .listing-slider {
        margin: 0rem 0.8rem 0.8rem 0.6rem !important;
    }

    .customer-label ul li:first-child {
        display: none;
    }

    .hotel--details .customer-label .label-icon img {
        max-width: 60px;
    }

    .hotel--details .customer-label .label-recommanded {
        max-width: 80px;
    }

    .star-rating-m {
        display: block;
        position: absolute;
        bottom: 1.4rem;
        left: 1rem;
        background: #fddb32;
        font-size: 10px;
        padding: 0.1rem 0.6rem;
        border-radius: 10px;
        color: var(--bg-black);
        font-weight: var(--base-font-500);
    }

    .ads-hotel-box {
        margin-bottom: 0rem;
    }

    .hotel--details .timining {
        font-size: 14px;
        margin-top: 0.2rem;
        margin-bottom: 0.7rem;
    }

    .timining span {
        display: none;
    }

    .vissible-m {
        display: block;
    }

    button.accordions {
        background: linear-gradient( 320deg, rgb(7,91,243) 0%, rgb(38,155,252) 100%);
        border: 0px solid #dee2e6 !important;
        color: #fff;
        border-radius: .3rem !important;
        cursor: pointer;
        padding: 12px 18px;
        width: 100%;
        border: none;
        text-align: left;
        outline: none;
        font-size: 15px;
        margin-bottom: 0.6rem;
    }

        button.accordions.active, button.accordions:hover {
            background-color: #555;
        }

        button.accordions:after {
            content: '\002B';
            color: white;
            font-weight: bold;
            float: right;
            margin-left: 5px;
        }

        button.accordions.active:after {
            content: "\2212";
        }

    .panels {
        padding: 0;
        background-color: #f1f1f1;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.2s ease-out;
    }

    .leftside {
        width: 100%;
    }

    .rightside {
        width: 100%;
        margin-left: 0rem;
        padding-top: 0px !important;
        border-top: none;
    }

    .dashboard-box {
        grid-template-columns: repeat(1, 1fr);
    }

    .profile-card {
        display: block !important;
    }

    .sidebar {
        border: none !important;
    }

    .sidebar-item.active {
        width: auto !important;
        margin: 0.6rem;
        border-radius: 5px !important;
    }

    .sidebar-item a:hover {
        width: auto !important;
        margin: 0.6rem;
        border-radius: 5px !important;
    }

    .listing-card {
        display: block;
    }

        .listing-card .listing-image {
            width: 95%;
        }

        .listing-card .listing-content {
            padding: 5px 20px 20px 20px;
        }
}


.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 48px !important;
}

.select2-container--default .select2-selection--single{
    height: 50px !important;
}
.select2-container{
    width: 100% !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 50px !important;
}