:root {
    --brs-text: #101D22;
    --brs-text-rgb: 16, 29, 34;
    --brs-text-dark: #15262C;
    --brs-text-dark-rgb: 21, 38, 44;
    --brs-text-gray: #7D8B90;
    --brs-text-gray-rgb: 125, 139, 144;
    /* --brs-base: #CBA36B; */
    --brs-base: #ebb569;
    --brs-base2: #B76F5A;
    --background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    --brs-base-rgb: 203, 163, 107;
    --brs-gray: #1C2F36;
    --brs-gray-rgb: 28, 47, 54;
    --brs-gray2: #283E46;
    --brs-gray2-rgb: 40, 62, 70;
    --brs-white: #fff;
    --brs-white-rgb: 255, 255, 255;
    --brs-black: #000;
    --brs-black-rgb: 0, 0, 0;
    --brs-border-color: #FAF6F0;
    --brs-border-color-rgb: 250, 246, 240;
    --brs-letter-space: 0.1em;
    --brs-letter-space-xl: 0.2em;
    --brs-black: #1c1a1d;
    --brs-black-rgb: 28, 26, 29;
    --brs-black2: #141215;
    --brs-black2-rgb: 20, 18, 21;
}
body {
    font-family: arno pro !important;
}

/* navigation */
/* Main Offcanvas */
.custom-offcanvas {
  background: #ffffff;
  color: #222;
  max-width: 320px;
  border-right: 1px solid #eee;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 0 25px rgba(0,0,0,0.15);
}

.custom-offcanvas {
  background: var(--background);
  color: #fff;
}
.custom-offcanvas-header {
  background: var(--brs-base2);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
/* Header */
.custom-offcanvas-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #eee;
  background: var(--brs-base2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.custom-offcanvas-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: #fff;
}
.custom-offcanvas-close {
  /* background: transparent; */
  color: var(--brs-white);
  border: none;
}
/* .custom-offcanvas-close i {
    font-size: 25px;
    color: var(--brs-white);
    opacity: 1;
} */
.custome-book-btn {
    background: var(--brs-base);
    color: #fff;
    font-weight: 600;
    text-align: center;
    padding: 7px 10px;
    border-radius: 20px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgb(255, 255, 255) 0px 8px 16px -8px;
    border-bottom: 3px solid var(--brs-border-color);
}

/* Body */
.custom-offcanvas-body {
  padding: 1.25rem;
  overflow-y: auto; /* allow scrolling */
}

/* Navigation */
.custom-offcanvas-nav li {
  margin-bottom: 0.75rem;
}
.custom-offcanvas-nav a {
  display: block;
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.custom-offcanvas-nav a:hover,
.custom-offcanvas-nav li.active a {
  background: var(--brs-base);
  color: #fff;
}

/* Contact Section */
.custom-offcanvas-contact h6 {
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}
.custom-offcanvas-contact ul li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}
.custom-offcanvas-contact i {
  margin-right: 8px;
  color: #B76F5A;
}
.custom-offcanvas-contact a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.custom-offcanvas-contact a:hover {
  color: #0d6efd;
}

/* CTA Button */
.custom-offcanvas .btn-primary {
  font-weight: 600;
  border-radius: 8px;
  font-size: 1rem;
  padding: 0.65rem;
}

/* Social */
.custom-offcanvas-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.custom-offcanvas-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.custom-offcanvas-social a:hover {
  background: #0d6efd;
  color: #fff;
}

/* end */
.brs-btn {
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    border: none;
    outline: none !important;
    background-color: var(--brs-gray, #1C2F36);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--brs-font, "Plus Jakarta Sans", sans-serif);
    padding: 11px 30px;
    transition: 500ms;
    text-transform: uppercase;
    overflow: hidden;
    z-index: 2;
    position: relative;
    background-color: var(--brs-gray, #1C2F36);
    color: #fff;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.brs-btn:hover {
    color: var(--brs-gray, #1C2F36);
    background-color: #fff;
}

.brs-btn::after {
    content: "";
    position: absolute;
    height: 0%;
    left: 50%;
    top: 50%;
    width: 150%;
    transition: all 0.3s ease;
    z-index: -1;
    background: var(--brs-base, #e9b162);
    transform: translateX(-50%) translateY(-50%) rotate(-25deg);
}

.brs-btn:hover {
    color: var(--brs-gray, #1C2F36);
}

.brs-btn:hover::after {
    height: 450%;
    transition: all 1s ease 0s;
}

.brs-btn--base {
    background: var(--brs-base, #e9b162);
}

.brs-btn--base::after {
    background: var(--brs-gray, #1C2F36);
}

.brs-btn--base:hover {
    color: var(--brs-white, #fff);
}

.brs-btn--base:hover::after {
    height: 450%;
    transition: all 1s ease 0s;
}

/* here */

        /* Hero Wrapper */
        .lux-hero {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }

        /* Slider */
        .lux-slider .lux-slide {
            position: relative;
            height: 100vh;
            color: #fff;
        }

        .lux-slider img {
            width: 100%;
            height: 100vh;
            object-fit: cover;
            filter: brightness(70%);
        }

        /* Content */
        .lux-slide-content {
            position: absolute;
            top: 35%;
            left: 8%;
            z-index: 10;
            color: #fff;
            max-width: 650px;
            opacity: 0;
        }

        .lux-slide-content h5 {
            background: #c19a6b;
            display: inline-block;
            padding: 5px 15px;
            border-radius: 4px;
            font-size: 14px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .lux-slide-content p {
            font-size: 2.4rem;
            font-weight: 700;
            margin-top: 20px;
            line-height: 1.2;
            color: #fff;
        }

        /* Animation */
        .lux-animate {
            animation: fadeInUp 1s ease forwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Booking Box */
        .lux-booking-box {
            position: absolute;
            bottom: 8%;
            left: 50%;
            transform: translateX(-50%);
            background: #fff;
            border-radius: 15px;
            box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.15);
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            padding: 25px 30px;
            max-width: 1000px;
            width: 95%;
            z-index: 20;
            align-items: end;
        }

         .lux-booking-box2 {
            position: relative;
            top: 35px;
            
            /* bottom: 8%; */
            left: 50%;
            transform: translateX(-50%);
            background: #fff;
            border-radius: 15px;
            box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.15);
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            padding: 25px 30px;
            max-width: 1000px;
            width: 95%;
            z-index: 20;
            align-items: end;
        }

        .lux-field {
            display: flex;
            flex-direction: column;
        }

        .lux-field label {
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 6px;
            color: #444;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .lux-field input,
        .lux-field select {
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 10px 12px;
            font-size: 14px;
            transition: 0.3s;
        }

        .lux-field input:focus,
        .lux-field select:focus {
            border-color: #c19a6b;
            box-shadow: 0 0 5px rgba(193, 154, 107, 0.4);
            outline: none;
        }

        .lux-btn-wrap {
            display: flex;
            align-items: flex-end;
        }

        .lux-search-btn {
            background: #c19a6b;
            border: none;
            padding: 5px 28px;
            border-radius: 8px;
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
            width: 100%;
        }

        .lux-search-btn:hover {
            background: #a37950;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .lux-booking-box {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 576px) {
            .lux-booking-box {
                grid-template-columns: 1fr;
                padding: 20px;
            }
        }


        /* Custom Nav Buttons */
        .lux-nav-arrows {
            position: absolute;
            bottom: 20px;
            right: 30px;
            display: flex;
            gap: 10px;
            z-index: 25;
        }

        .lux-nav-arrows button {
            background: rgba(255, 255, 255, 0.85);
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            transition: 0.3s;
        }

        .lux-nav-arrows button:hover {
            background: #c19a6b;
            color: #fff;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .lux-slide-content h1 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 576px) {
            .lux-slide-content h1 {
                font-size: 1rem;
            }

            .lux-slide-content h5 {
                font-size: 12px;
            }
        }

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/

body {
    font-family: var(--brs-font, "Plus Jakarta Sans", sans-serif);
    color: var(--brs-text, #101D22);
    font-size: 16px;
    line-height: 2.125;
    font-weight: 500;
}

body.locked {
    overflow: hidden;
}

a {
    color: var(--brs-base, #e9b162);
    transition: all 400ms ease;
}

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--brs-heading-font, "Plus Jakarta Sans", sans-serif);
    color: var(--brs-text, #101D22);
}

@media (max-width: 575px) {
    h1 br,
    h2 br,
    h3 br,
    h4 br,
    h5 br,
    h6 br {
        display: none;
    }
}

/* p {
    color: var(--brs-text-gray, #7D8B90);
} */

@media (max-width: 575px) {
    p br {
        display: none;
    }
}

::placeholder {
    color: inherit;
    opacity: 1;
}

.background-base {
    background-color: var(--brs-base, #e9b162);
}

.background-gray {
    background-color: var(--brs-gray, #1C2F36);
}

.background-black {
    background-color: var(--brs-black, #000);
}

.background-black-2 {
    background-color: var(--brs-black2, #141215);
}

.brs-text-dark {
    color: var(--brs-text-dark, #15262C);
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    /* overflow: hidden; */
}

.container-fluid,
.container {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

/*******Row Gutter Style*********/

.row {
    --bs-gutter-x: 30px;
}

.gutter-y-10 {
    --bs-gutter-y: 10px;
}

.gutter-y-15 {
    --bs-gutter-y: 15px;
}

.gutter-y-20 {
    --bs-gutter-y: 20px;
}

.gutter-x-20 {
    --bs-gutter-x: 20px;
}

.gutter-y-30 {
    --bs-gutter-y: 30px;
}
/* scroll to top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }
  .scroll-to-top__wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff, #00c6ff);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 8px 20px rgba(0, 123, 255, 0.3);
    transition: 0.3s ease;
  }
  .scroll-to-top__inner {
    width: 10px;
    height: 10px;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    transform: rotate(45deg);
    margin-bottom: -3px;
  }
  .scroll-to-top__text {
    font-size: 13px;
    font-weight: 600;
    color: #007bff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .scroll-to-top:hover .scroll-to-top__wrapper {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, #0056b3, #007bff);
  }
  .scroll-to-top.show {
    opacity: 1;
    visibility: visible;
  }
/*******Section Title Style*********/

.sec-title {
    padding-bottom: 50px;
}

@media (max-width: 991px) {
    .sec-title {
        padding-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .sec-title {
        padding-bottom: 35px;
    }
}

@media (max-width: 575px) {
    .sec-title {
        padding-bottom: 30px;
    }
}

.sec-title__img {
    display: inline-flex;
    margin-bottom: 15px;
}

.sec-title__tagline {
    margin: 0;
    color: var(--brs-base, #e9b162);
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.sec-title__title {
    margin: 0;
    font-style: normal;
    font-weight: 600;
    font-size: clamp(25px, 4vw, 50px);
    line-height: 120%;
    color: var(--brs-text, #101D22);
}

@media (max-width: 991px) {
    .sec-title__title {
        line-height: 120%;
    }
}

@media (max-width: 767px) {
    .sec-title__title {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .sec-title__title {
        font-size: 30px;
    }
}

.sec-title--two .sec-title__title {
    color: var(--brs-white, #fff);
}

/***Blog Card One***/

.blog-card {
    position: relative;
    background-color: var(--brs-white, #fff);
}

.blog-card__image {
    position: relative;
}

.blog-card__image__inner {
    position: relative;
    overflow: hidden;
    margin-left: 17px;
}

.blog-card__image__inner__link {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--brs-gray-rgb, 28, 47, 54), 0.7);
    position: absolute;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(-20%);
    transition: opacity 500ms ease, transform 500ms ease;
}

.blog-card__image__inner__link::before,
.blog-card__image__inner__link::after {
    content: "";
    width: 32px;
    height: 2px;
    background-color: var(--brs-white, #fff);
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.blog-card__image__inner__link::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.blog-card__image img {
    transition: 0.5s;
    background-size: cover;
    width: 100%;
    height: 290px;
}

.blog-card__image img:nth-child(1) {
    transform: translatex(50%) scalex(2);
    opacity: 0;
    filter: blur(10px);
}

.blog-card__image img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    object-fit: cover;
}

.blog-card:hover .blog-card__image__inner>a {
    opacity: 1;
    transform: translateY(0);
}

.blog-card:hover .blog-card__image img:nth-child(1) {
    transform: translatex(0) scalex(1);
    opacity: 1;
    filter: blur(0);
}

.blog-card:hover .blog-card__image img:nth-child(2) {
    transform: translatex(-50%) scalex(2);
    opacity: 0;
    filter: blur(10px);
}

.blog-card__content {
    background-color: var(--brs-white, #fff);
    position: relative;
    transition: all 500ms ease;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.blog-card__date {
    position: absolute;
    right: 0;
    top: 0;
    width: 80px;
    height: 80px;
    background-color: var(--brs-gray2, #283E46);
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    flex-direction: column;
    color: var(--brs-text-gray, #7D8B90);
    z-index: 10;
    font-weight: 600;
    font-size: 14px;
    line-height: 186%;
    transition: all 500ms ease;
    text-transform: capitalize;
}

.blog-card__date span {
    font-size: 30px;
    line-height: 87%;
    color: var(--brs-white, #fff);
}

.blog-card__meta {
    display: flex;
    align-items: center;
    margin: 0;
    background-color: var(--brs-gray2, #283E46);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    height: 43px;
    padding: 10px 30px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0 1000px 1000px 0;
    transition: all 500ms ease;
}

.blog-card__meta li {
    color: var(--brs-text-gray, #7D8B90);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    text-transform: capitalize;
}

.blog-card__meta li i {
    color: var(--brs-base, #e9b162);
    margin-right: 3px;
    transition: all 500ms ease;
}

.blog-card__meta li a {
    display: flex;
    align-items: center;
    color: inherit;
    transition: all 500ms ease;
}

.blog-card__meta li a:hover {
    color: var(--brs-base, #e9b162);
    text-shadow: 0 0 1px currentColor;
}

.blog-card__meta li+li {
    margin-left: 20px;
}

.blog-card__meta::after {
    content: "";
    width: 17px;
    height: 38px;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17.000000 38.000000">  <g transform="translate(0.000000,38.000000) scale(0.050000,-0.050000)"> <path d="M320 513 c0 -138 -138 -402 -247 -472 l-63 -40 165 -1 165 0 0 280 c0 154 -4 280 -10 280 -5 0 -10 -21 -10 -47z"/> </g> </svg>');
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17.000000 38.000000">  <g transform="translate(0.000000,38.000000) scale(0.050000,-0.050000)"> <path d="M320 513 c0 -138 -138 -402 -247 -472 l-63 -40 165 -1 165 0 0 280 c0 154 -4 280 -10 280 -5 0 -10 -21 -10 -47z"/> </g> </svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: top center;
    mask-position: top center;
    -webkit-mask-size: auto;
    mask-size: auto;
    background-color: var(--brs-gray, #1C2F36);
    position: absolute;
    top: -38px;
    left: 0;
    transition: all 500ms ease;
}

.blog-card__content {
    background-color: var(--brs-white, #fff);
    padding: 30px 30px 1px;
    margin-bottom: 27px;
    position: relative;
    z-index: 10;
    transition: all 500ms ease;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (min-width: 992px) and (max-width: 1199px) {
    .blog-card__content {
        margin-left: 0;
    }
}

.blog-card:hover .blog-card__content {
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
}

.blog-card:hover .blog-card__date {
    color: var(--brs-white, #fff);
    background-color: var(--brs-base, #e9b162);
}

.blog-card:hover .blog-card__date span {
    color: var(--brs-white, #fff);
}

.blog-card:hover .blog-card__meta {
    background-color: var(--brs-base, #e9b162);
}

.blog-card:hover .blog-card__meta a,
.blog-card:hover .blog-card__meta i {
    color: var(--brs-white, #fff);
}

.blog-card:hover .blog-card__meta::after {
    background-color: var(--brs-base, #e9b162);
}

.blog-card__title {
    margin: 0;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.blog-card__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.blog-card__title a:hover {
    background-size: 100% 1px;
}

.blog-card__text {
    margin-bottom: 30px;
}

.blog-card__link {
    width: 100%;
    margin-bottom: -25px;
    position: relative;
    overflow: visible;
}

.blog-card__link .brs-btn {
    width: 100%;
}

.blog-card__link .brs-btn:hover {
    color: var(--brs-white, #fff);
}

.blog-card__link::before {
    content: "";
    width: 30px;
    height: 23px;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30.000000 27.000000"> <g transform="translate(0.000000,27.000000) scale(0.050000,-0.050000)"> <path d="M1 295 c1 -245 1 -245 33 -165 61 153 175 281 308 348 l124 62 -233 0 -233 0 1 -245z"/> </g> </svg>');
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30.000000 27.000000"> <g transform="translate(0.000000,27.000000) scale(0.050000,-0.050000)"> <path d="M1 295 c1 -245 1 -245 33 -165 61 153 175 281 308 348 l124 62 -233 0 -233 0 1 -245z"/> </g> </svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: top center;
    mask-position: top center;
    -webkit-mask-size: auto;
    mask-size: auto;
    background-color: var(--brs-gray, #1C2F36);
    position: absolute;
    bottom: 0px;
    right: -27px;
    transition: all 500ms ease;
}

.blog-card__link:hover::before {
    background-color: var(--brs-base, #e9b162);
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.main-footer {
    position: relative;
    background-color: var(--brs-gray, #1C2F36);
}

.main-footer__top {
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .main-footer__top {
        padding-top: 100px;
        padding-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .main-footer__top {
        padding-top: 80px;
        padding-bottom: 40px;
    }
}

.main-footer__top__shape {
    position: absolute;
    bottom: 0;
    left: 0;
    mix-blend-mode: overlay;
    z-index: -1;
    opacity: 0.2;
    animation: messageMove 3s ease-in-out infinite;
}
.main-footer__top__shape img {
    width: auto;
    height: 250px;
    object-fit: cover;
}
.main-footer .container {
    position: relative;
}

.main-footer__bottom {
    text-align: center;
    background: var(--brs-text, #101D22);
}

.main-footer__bottom__inner {
    padding: 23px 0;
}

.main-footer__copyright {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--brs-text-gray, #7D8B90);
    text-decoration: none;
}

@media (max-width: 991px) {
    .footer-widget {
        margin-bottom: 40px;
    }
}

.footer-widget__newsletter {
    position: relative;
    width: 100%;
    max-width: 370px;
    margin-bottom: 24px;
}

.footer-widget__newsletter input[type=text] {
    width: 100%;
    display: block;
    border: none;
    outline: none;
    height: 56px;
    background-color: var(--brs-text-dark, #15262C);
    color: var(--brs-text-gray, #7D8B90);
    font-size: 14px;
    font-weight: 500;
    padding-left: 30px;
    padding-right: 20px;
    transition: all 500ms ease;
}

.footer-widget__newsletter input[type=text]:focus {
    color: var(--brs-white, #fff);
}

.footer-widget__newsletter button[type=submit] {
    background-color: transparent;
    width: auto;
    height: auto;
    border: none;
    outline: none;
    color: var(--brs-base, #e9b162);
    font-size: 14px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    transition: all 500ms ease;
}

.footer-widget__newsletter button[type=submit]:hover {
    color: var(--brs-white, #fff);
}

.footer-widget__title {
    color: var(--brs-white, #fff);
    text-transform: capitalize;
    margin: 0;
    margin-top: -5px;
    margin-bottom: 17px;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 163%;
}

.footer-widget__text {
    margin: 0;
    margin-top: -5px;
    margin-bottom: 15px;
    max-width: 270px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 214%;
    color: var(--brs-text-gray, #7D8B90);
}

.footer-widget__social {
    display: flex;
    flex-wrap: wrap;
    gap: 19px;
}

.footer-widget__social a {
    width: 37px;
    height: 37px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--brs-gray2, #283E46);
    font-size: 14px;
    color: var(--brs-white, #fff);
    transition: all 500ms ease;
    border-radius: 50%;
}

.footer-widget__social a:hover {
    background-color: var(--brs-base, #e9b162);
    color: var(--brs-white, #fff);
}

.footer-widget__links {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 184%;
    margin-top: -3px;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--brs-text-gray, #7D8B90);
}

.footer-widget__links li {
    display: flex;
    align-items: center;
    margin-left: -6px;
    transition: all 0.4s ease-in-out;
}

.footer-widget__links li i {
    font-size: 6px;
    color: var(--brs-base, #e9b162);
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.footer-widget__links li:hover {
    margin-left: 0;
}

.footer-widget__links li:hover i {
    transform: scale(1);
}

.footer-widget__links li:hover a {
    padding-left: 10px;
    color: var(--brs-base, #e9b162);
}

.footer-widget__links a {
    color: inherit;
    padding-left: 0px;
}

.footer-widget__links li+li {
    margin-top: 7px;
}

.footer-widget__info__item {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brs-gray2, #283E46);
    font-size: 14px;
    color: var(--brs-base, #e9b162);
    transition: all 0.4s ease-in-out;
}

.footer-widget__info li {
    display: flex;
    align-items: center;
    gap: 13px;
}

.footer-widget__info li:hover .footer-widget__info__item {
    background-color: var(--brs-base, #e9b162);
    color: var(--brs-white, #fff);
}

.footer-widget__info li+li {
    margin-top: 14px;
}

.footer-widget__info__text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 162%;
    color: var(--brs-text-gray, #7D8B90);
    padding-bottom: 0;
}

.footer-widget__info__text:hover {
    color: var(--brs-base, #e9b162);
}

.footer-widget__app {
    border-top: 1px solid rgba(255, 255, 255, 0.19);
    padding-top: 20px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-widget__app img {
    object-fit: cover;
    width: 100%;
}

.footer-widget--about {
    position: relative;
    padding-top: 93px;
    padding-bottom: 66px;
}

@media (max-width: 991px) {
    .footer-widget--about {
        padding-top: 0px;
        padding-bottom: 0px;
        padding-left: 0;
    }
}

.footer-widget--about::after {
    content: "";
    width: 1px;
    height: 104%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.19);
}

@media (max-width: 1199px) {
    .footer-widget--about::after {
        right: -25px;
    }
}

@media (max-width: 991px) {
    .footer-widget--about::after {
        display: none;
    }
}

.footer-widget--links {
    padding-left: 66px;
    padding-top: 93px;
    padding-bottom: 66px;
    position: relative;
}

@media (max-width: 1199px) {
    .footer-widget--links {
        padding-left: 20px;
    }
}

@media (max-width: 991px) {
    .footer-widget--links {
        padding-top: 0px;
        padding-bottom: 0px;
        padding-left: 0;
    }
}

.footer-widget--links::after {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.19);
}

@media (max-width: 991px) {
    .footer-widget--links::after {
        display: none;
    }
}

.footer-widget--contact {
    padding-left: 66px;
    padding-top: 93px;
    padding-bottom: 66px;
    position: relative;
}

@media (max-width: 1199px) {
    .footer-widget--contact {
        padding-left: 0px;
    }
}

@media (max-width: 991px) {
    .footer-widget--contact {
        padding-top: 0px;
        padding-bottom: 0px;
    }
}

.main-footer-one {
    padding-top: 143px;
}

/***Top Bar Three***/

.pre-topbar {
    /* background-color: var(--brs-gray, #1C2F36); */
    background: var(--background);
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 5px 7px;
}

@media (max-width: 991px) {
    .pre-topbar {
        display: none;
    }
}

/* .pre-topbar .container-fluid {
    max-width: 1730px;
    width: 100%;
} */

.pre-topbar--one .pre-topbar__inner__right {
    background-color: transparent;
}

.pre-topbar--one .pre-topbar__inner__right::before {
    display: none;
}

.pre-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.pre-topbar__inner__right {
    display: flex;
    align-items: center;
    background-color: var(--brs-gray2, #283E46);
    padding-left: 33px;
    position: relative;
}

.pre-topbar__inner__right::before {
    content: "";
    background-color: var(--brs-gray2, #283E46);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 99%;
    z-index: -1;
}

.pre-topbar__info {
    margin-bottom: 0;
    margin-left: 0;
    display: flex;
    align-items: center;
    gap: 25px;
}

.pre-topbar__info__item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.pre-topbar__info__icon {
    font-size: 14px;
    color: var(--brs-base, #e9b162);
    line-height: 0;
}

.pre-topbar__info__location {
    text-transform: capitalize;
}

.pre-topbar__info__contact,
.pre-topbar__info__location {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 129%;
    margin-bottom: 0;
    padding-bottom: 0;
       color: #fff;
    transition: all 0.4s ease-in-out;
}

.pre-topbar__info__contact {
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.pre-topbar__info__contact:hover {
    background-size: 100% 1px;
}

.pre-topbar__info__contact:hover {
    color: var(--brs-base, #e9b162);
}

.pre-topbar__item {
    margin-left: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

@media (max-width: 1199px) {
    .pre-topbar__item {
        display: none;
    }
}

.pre-topbar__item__text {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 129%;
    /* color: var(--brs-text-gray, #7D8B90); */
    color: #fff;
    transition: all 0.4s ease-in-out;
}

.pre-topbar__item__text:hover {
    color: var(--brs-base, #e9b162);
}

.pre-topbar__item li+li {
    margin-left: 25px;
}

.pre-topbar__social {
    padding: 14.5px 0px 14.5px 20px;
    margin-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1;
}

@media (max-width: 1199px) {
    .pre-topbar__social {
        border-color: transparent;
        margin-left: 0;
        padding-left: 0;
    }
}

.pre-topbar__social a {
    font-size: 14px;
    color: var(--brs-white, #fff);
    line-height: 0;
    transition: all 0.4s ease-in-out;
}

.pre-topbar__social a:hover {
    color: var(--brs-base, #e9b162);
}

.pre-topbar__social a+a {
    margin-left: 20px;
}

/***Top Bar Fore***/

.topbar-fore {
    background-color: var(--brs-white, #fff);
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(var(--brs-text-gray-rgb, 125, 139, 144), 0.2);
}

@media (max-width: 991px) {
    .topbar-fore {
        display: none;
    }
}

/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/

/* .main-header .container-fluid {
    max-width: 1730px;
    width: 100%;
} */
.main-header-area {
    position: sticky;
    top: 0px;
    z-index: 999;
    /* background: #fff; */
    transition: all 0.3s ease;
    /* box-shadow: none; */
    overflow: hidden;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.main-header-area.sticky-animate {
    /* box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1); */
    transform: translateY(0);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.main-header__inner {
    display: flex;
    align-items: center;
    position: relative;
}

.main-header__logo {
    display: flex;
    align-items: center;
}
.main-header__logo a img {
    width: 100%;
    height: 100px;
    object-fit: contain;
}

@media (min-width: 768px) {
    .main-header__logo {
        width: auto;
    }
}

.main-header__right {
    display: flex;
    align-items: center;
    border-left: 1px solid var(--brs-border-color, #FAF6F0);
    margin-left: 10px;
    padding: 29px 0;
    background-color: var(--brs-base, #e9b162);
    padding-left: 35px;
    z-index: 1;
    position: relative;
}

.main-header__right__call {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: 25px;
}

@media (max-width: 1450px) {
    .main-header__right__call {
        margin-right: 0px;
    }
}

@media (max-width: 575px) {
    .main-header__right__call {
        display: none;
    }
}

.main-header__right__call__icon {
    width: 40px;
    height: 40px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: var(--brs-text, #101D22);
    color: var(--brs-base, #e9b162);
    line-height: 0;
    font-size: 18px;
    transition: all 0.4s ease-in-out;
}

.main-header__right__call__subtitle {
    display: block;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 120%;
    color: var(--brs-white, #fff);
    margin-bottom: 0px;
    opacity: 0.5;
}

.main-header__right__call__title {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 188%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--brs-white, #fff);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
    transition: all 0.4s ease-in-out;
}

.main-header__right__call__title:hover {
    background-size: 100% 1px;
}

.main-header__right__call__title:hover {
    color: var(--brs-text-dark, #15262C);
}

.main-header__right__call:hover .main-header__right__call__icon {
    background-color: var(--brs-white, #fff);
    color: var(--brs-base, #e9b162);
}

.main-header__right::before {
    content: "";
    background-color: var(--brs-base, #e9b162);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 99%;
    z-index: -1;
}

.main-header__btn {
    padding: 11px 32px;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    text-transform: capitalize;
    color: var(--brs-white, #fff);
    background-color: var(--brs-gray);
    border-radius: 10px;
    border-bottom: 2px solid #fefefe;
}

.main-header__btn:hover {
    color: var(--brs-white, #fff);
}

.main-header__btn::after {
    background-color: var(--brs-gray2, #283E46);
}

/* @media (max-width: 1450px) {
    .main-header__btn {
        display: none;
    }
} */

.main-header__btn+.main-header__info {
    margin-left: 16px;
    padding-left: 25px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 575px) {
    .main-header__btn+.main-header__info {
        margin-left: 0px;
        padding-left: 0px;
        border-color: transparent;
        display: flex;
    }
}

.main-header__info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-header__info__item {
    width: 44px;
    height: 44px;
    color: var(--brs-white, #fff);
    transition: all 500ms ease;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 0;
}

.main-header__info__item:hover {
    background-color: var(--brs-gray2, #283E46);
    color: var(--brs-base, #e9b162);
}

.main-header__nav {
    margin-left: auto;
    margin-right: auto;
}


.main-header-area {
    background-color: var(--brs-white, #fff);
}

.main-header-area .main-header__nav {
    margin-left: 205px;
    margin-right: auto;
}

@media (max-width: 1530px) {
    .main-header-area .main-header__nav {
        margin-left: 100px;
    }
}

@media (max-width: 1300px) {
    .main-header-area .main-header__nav {
        margin-left: 50px;
    }
}

@media (max-width: 767px) {
    .main-header-area .main-header__nav {
        margin-left: auto;
    }
}


.main-header--fore .mobile-nav__btn span:hover {
    background-color: var(--brs-base, #e9b162);
}

@media (max-width: 1450px) {
    .main-header--fore .main-header__btn+.main-header__info {
        margin-left: 0;
        padding-left: 0;
        border-left: 1px solid transparent;
    }
    .main-header--fore .main-header__right__inner {
        margin-left: 40px;
    }
}

.sticky-header--cloned {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    top: 0;
    background-color: var(--brs-white, #fff);
    transform: translateY(-100%);
    box-shadow: 0px 3px 18px rgba(var(--brs-black-rgb, 0, 0, 0), 0.07);
    transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
    visibility: hidden;
    transition: transform 500ms ease, visibility 500ms ease;
}

.sticky-header--cloned.active {
    transform: translateY(0%);
    visibility: visible;
}

.main-header--one.sticky-header--cloned .main-header__logo {
    display: none;
}

.main-header--one.active {
    background-color: var(--brs-text-dark, #15262C);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding-top: 0;
}

.main-header--one.active .main-header__logo {
    display: none;
}

.main-header--two.sticky-header--cloned {
    background-color: var(--brs-gray, #1C2F36);
}

.main-header--two.sticky-header--cloned .main-header__logo {
    position: relative;
    padding: 0;
    left: 0;
    border: 0px solid transparent;
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 0);
}

.main-header--two.sticky-header--cloned .main-header__logo::after,
.main-header--two.sticky-header--cloned .main-header__logo::before {
    display: none;
}

.main-header--two.sticky-header--cloned .main-header__middle {
    gap: 30px;
}

.mobile-nav__btn {
    width: 24px;
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    cursor: pointer;
    z-index: 3;
    margin-left: 30px;
    margin-right: 10px;
}

@media (min-width: 1200px) {
    .mobile-nav__btn {
        display: none;
    }
}

.mobile-nav__btn span {
    width: 100%;
    height: 2px;
    background-color: var(--brs-black, #000);
}

.mobile-nav__btn span:nth-child(2) {
    margin-top: 4px;
    margin-bottom: 4px;
}

.main-menu {
    /* after third level no menu */
}

.main-menu .main-menu__list,
.main-menu .main-menu__list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    align-items: center;
    display: none;
}

@media (min-width: 1200px) {
    .main-menu .main-menu__list,
    .main-menu .main-menu__list ul {
        display: flex;
    }
}

.main-menu .main-menu__list>li {
    padding-top: 43px;
    padding-bottom: 43px;
    position: relative;
}

.main-menu .main-menu__list>li.dropdown>a {
    position: relative;
}

.main-menu .main-menu__list>li+li {
    margin-left: 23px;
}

.main-menu .main-menu__list>li>a {
    font-size: 16px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    position: relative;
    transition: all 500ms ease;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.25;
    color: var(--brs-text, #101D22);
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a {
    color: var(--brs-base, #e9b162);
    text-shadow: 0 0 0.5px currentColor;
}


/*--------------------------------------------------------------
# Room
--------------------------------------------------------------*/

.luxury-card {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    border-radius: 25px;
    overflow: hidden;
    /* margin: 50px auto; */
    /* max-width: 1200px; */
    width: 100%;
    background: #101D22;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
    transition: transform 0.4s;
    border-bottom: 3px solid var(--brs-border-color);
}

/* .luxury-card:hover {
    transform: scale(1.02);
} */

.luxury-carousel {
    flex: 1 1 55%;
    min-height: 500px;
    position: relative;
    perspective: 1200px;
    border-radius: 50px;
}

.luxury-carousel-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    border-radius: 25px 0 0 25px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.luxury-carousel-inner img:hover {
    transform: rotateY(5deg) scale(1.05);
}
.carousel___indicators {
    position: relative;
    z-index: 1000;
}
.luxury-carousel-indicators {
    position: absolute;
    bottom: 25px;
    left: 20px;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-box-align: stretch;
    align-items: stretch;
    display: flex;
    flex-flow: row nowrap;
    margin: 0 auto;
}

.luxury-carousel-indicators button {
    width: 70px !important;
    height: 50px !important;
    border-radius: 12px;
    border: 2px solid transparent;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}
.luxury-carousel-indicators button img {
    width: 70px;
    height: 50px;
    object-fit: cover;
}

.luxury-carousel-indicators button.active {
    border: 3px solid #ffd700; /* gold border for active thumb */
    transform: scale(1.1);
    transition: all 0.3s;
}


.luxury-carousel-indicators img {
     width: 70px !important;
    height: 50px !important;
    object-fit: cover;
}

.luxury-content {
    flex: 1 1 45%;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
}

.luxury-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: #e9b162;
}

.luxury-location {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 20px;
}

.luxury-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #fff;
}

.luxury-price {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #B76F5A;
}

.luxury-features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.luxury-features div {
    flex: 1 1 45%;
    background: #e9b16249;
    border-radius: 15px;
    padding: 7px 0;
    text-align: center;
    transition: all 0.3s;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    border-bottom: 2px solid var(--brs-border-color);
    color: #fefefe;
}

.luxury-features div:hover {
    background: gold;
    color: #111827;
    transform: translateY(-3px);
}

.luxury-features strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.luxury-btn-view {
    align-self: start;
    background: linear-gradient(90deg, #B76F5A, #e9b162);
    color: #111827;
    border-radius: 50px;
    padding: 16px 40px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
    transition: all 0.4s;
    text-decoration: none;
}

.luxury-btn-view:hover {
    background: linear-gradient(90deg, #ffa500, #ffd700);
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(255, 215, 0, 0.7);
}

@media(max-width: 991px) {
    .luxury-card {
        flex-direction: column;
    }
    .luxury-carousel-inner img {
        border-radius: 25px 25px 0 0;
    }
    .luxury-content {
        border-radius: 0 0 25px 25px;
    }
}

/**Room Card**/

.slick-arrow-custom3 {
    background: linear-gradient(135deg, #3E2C41, #B76F5A);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 10%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    transition: all 0.3s ease;
}

.slick-arrow-custom3:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.slick-arrow-custom3 i {
    pointer-events: none;
}

.bestroomSlider .item {
    padding: 4px;
    /* margin: 0 auto; */
}

/**Room Card Three**/

.room-card-three {
    border: 1px solid var(--brs-gray2, #283E46);
    padding: 30px;
    position: relative;
    height: 100%;
    border-radius: 40px 55px 65px 85px;
}

.room-card-three__inner {
    position: relative;
    z-index: 1;
    height: 100%;
}

.room-card-three__inner::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    background: linear-gradient(2.28deg, #101D22 45.26%, rgba(16, 29, 34, 0) 97.15%);
    width: 100%;
    height: 60%;
    transition: all 0.5s ease-in-out;
    opacity: 1;
    visibility: visible;
    border-radius: 0px 0px 25px 25px;
}

.room-card-three__thumb {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.room-card-three__thumb img {
    object-fit: cover;
    width: 100%;
    transform: scale(1);
    transition: all 0.4s ease-in-out;
    border-radius: 25px 25px 25px 25px;
}

.room-card-three__thumb__popup {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.room-card-three__thumb__popup__love,
.room-card-three__thumb__popup a {
    width: 32px;
    height: 32px;
    background-color: var(--brs-white, #fff);
    font-size: 15px;
    color: var(--brs-text-gray, #7D8B90);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 0;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.room-card-three__thumb__popup__love .active,
.room-card-three__thumb__popup a .active {
    color: var(--brs-base, #e9b162);
}

.room-card-three__thumb__popup__love:hover,
.room-card-three__thumb__popup a:hover {
    color: var(--brs-base, #e9b162);
}

.room-card-three__feature {
    background-color: var(--brs-white, #fff);
    font-style: normal;
    font-weight: 700;
    font-size: 10px;
    line-height: 180%;
    text-transform: uppercase;
    color: var(--brs-gray2, #283E46);
    padding: 4.5px 11px;
    position: absolute;
    top: 20px;
    left: 20px;
    margin-bottom: 0;
    transition: all 0.4s ease-in-out;
}

.room-card-three__feature:hover {
    background: var(--brs-base, #e9b162);
    color: var(--brs-white, #fff);
    border-radius: 40px 55px 65px 85px;
}

.room-card-three__feature--two {
    background-color: var(--brs-gray2, #283E46);
    color: var(--brs-white, #fff);
}

.room-card-three__content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 30px;
    left: 0px;
    right: 0px;
    z-index: 2;
    background-color: transparent;
    transition: all 0.4s ease-in-out;
}

.room-card-three__content__star {
    font-size: 17px;
    color: var(--brs-base, #e9b162);
    letter-spacing: -1px;
    margin-bottom: -3px;
}

.room-card-three__content__title {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: normal;
    margin-bottom: 7px;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--brs-white, #fff);
    transition: all 0.2s ease;
}

.room-card-three__content__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.room-card-three__content__title a:hover {
    background-size: 100% 1px;
}

.room-card-three__content__title a:hover {
    color: var(--brs-base, #e9b162);
}

.room-card-three__content__text {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 171%;
    margin-bottom: 0px;
    padding-bottom: 0px;
    color: var(--brs-text-gray, #7D8B90);
    transition: all 0.4s ease-in-out;
}

.room-card-three__content__number {
    padding: 10px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    transition: all 0.4s ease-in-out;
}

.room-card-three__content__number__price {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: normal;
    color: var(--brs-base, #e9b162);
}

.room-card-three__content__number__price span {
    font-size: 16px;
    color: var(--brs-text-gray, #7D8B90);
}

.room-card-three__content__number__parson {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 171%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--brs-text-gray, #7D8B90);
}

.room-card-three__content__number__parson strong {
    color: var(--brs-white, #fff);
}

.room-card-three:hover .room-card-three__thumb img {
    transform: scale(1.1);
}

/**Room Card Fore**/

.room-four {
    position: relative;
    padding: 120px 0;
}

@media (max-width: 991px) {
    .room-four {
        padding: 100px 0;
    }
}

@media (max-width: 767px) {
    .room-four {
        padding: 80px 0;
    }
}

@media (min-width: 1630px) {
    .room-four .container {
        max-width: 1600px;
        margin-left: auto;
        margin-right: auto;
    }
}


/*--------------------------------------------------------------
# Tours
--------------------------------------------------------------*/

/***Promotion Page***/

.tours-page {
    position: relative;
    padding: 120px 0;
}

@media (max-width: 991px) {
    .tours-page {
        padding: 100px 0;
    }
}

@media (max-width: 767px) {
    .tours-page {
        padding: 80px 0;
    }
}

/***Promotion One***/

.tours-one {
    position: relative;
    padding: 120px 0;
}

@media (max-width: 991px) {
    .tours-one {
        padding: 100px 0;
    }
}

@media (max-width: 767px) {
    .tours-one {
        padding: 80px 0;
    }
}

.tours-one .container-fluid {
    max-width: 1600px;
    width: 100%;
    margin-left: auto;
    margin-right: -20px;
}

.tours-one__top {
    padding-bottom: 55px;
}

@media (max-width: 991px) {
    .tours-one__top {
        padding-bottom: 45px;
    }
}

@media (max-width: 767px) {
    .tours-one__top {
        padding-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .tours-one__top {
        padding-bottom: 35px;
    }
}

.tours-one__top .sec-title {
    padding-bottom: 0;
}

.tours-one__top__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 35px;
    border-top: 1px solid var(--brs-base, #e9b162);
}

@media (max-width: 767px) {
    .tours-one__top__inner {
        flex-direction: column;
        justify-content: start;
        align-items: start;
        gap: 20px;
    }
}

.tours-one__top__inner__text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    margin-bottom: 0;
    padding-bottom: 0;
    max-width: 390px;
    width: 100%;
}


.bestroomSlider .room-card-three {
    position: relative;
    transition: all 0.4s ease-in-out;
}

.bestroomSlider .room-card-three::after {
    background-color: var(--brs-base, #e9b162);
    content: "";
    width: 100%;
    height: 0px;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.4s ease-in-out;
    border-radius: 0px 0px 65px 85px;
}

.bestroomSlider .room-card-three:hover {
    border-color: var(--brs-base, #e9b162);
}

.bestroomSlider .room-card-three:hover::after {
    height: 231px;
}

.tours-one::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 350px;
    background-color: var(--brs-border-color, #FAF6F0);
    z-index: -2;
}

.gallery-top {
    margin-right: -140px;
    position: relative;
    padding-bottom: 100px;
}

@media (max-width: 767px) {
    .gallery-top {
        padding-bottom: 80px;
    }
}

.gallery-three {
    padding-bottom: 120px;
    padding-top: 80px;
    background-color: var(--brs-border-color, #FAF6F0);
}

@media (max-width: 991px) {
    .gallery-three {
        padding-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .gallery-three {
        padding-bottom: 80px;
    }
}

.gallery-three .gutter-y-20 {
    --bs-gutter-y: 20px;
}

.gallery-three .gutter-x-20 {
    --bs-gutter-x: 20px;
}

.gallery-three__item {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.gallery-three__item img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    transform: scale(1);
    transition: all 0.4s ease-in-out;
}

.gallery-three__item__hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--brs-base-rgb, 203, 163, 107), 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(1, 0);
    transition: transform 500ms ease;
    transform-origin: bottom center;
}

.gallery-three__item:hover img {
    transform: scale(1.1);
}

.gallery-three__item:hover .gallery-three__item__hover {
    transform-origin: top center;
    transform: scale(1, 1);
}

.gallery-three__item__icon {
    font-size: 40px;
    color: var(--brs-white, #fff);
}

.gallery-three__item__icon:hover {
    background-color: var(--brs-base, #e9b162);
}

.gallery-three .mt-2 {
    margin-top: 1px !important;
}

/*--------------------------------------------------------------
# Benefit
--------------------------------------------------------------*/

/***Benefit One Style***/

.benefit-one {
    position: relative;
    z-index: 1;
    padding: 120px 0px;
}

@media (max-width: 991px) {
    .benefit-one {
        padding: 100px 0px;
    }
}

@media (max-width: 767px) {
    .benefit-one {
        padding: 80px 0px;
    }
}

.benefit-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 350px;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    background-color: var(--brs-border-color, #FAF6F0);
}

.benefit-one .sec-title {
    padding-bottom: 20px;
}

.benefit-one__text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    margin-bottom: 30px;
    padding-bottom: 0;
}

.benefit-one__video {
    position: relative;
    z-index: 1;
    padding-top: 80px;
    padding-bottom: 80px;
    height: 100%;
}

.benefit-one__video__bg {
    width: 100%;
    height: 450px;
    z-index: -1;
    position: relative;
}
.benefit-one__video__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
}

.benefit-one__video__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    margin-left: auto;
    margin-right: auto;
    height: 60px;
    border-radius: 50%;
    background-color: var(--brs-white, #fff);
    color: var(--brs-base, #e9b162);
    font-size: 18px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
transition: all 0.5s ease-in-out;

}

.benefit-one__video__item:hover {
    background-color: var(--brs-base, #e9b162);
    color: var(--brs-white, #fff);
}
/* 
.benefit-one__video::after {
    content: "";
    width: 100%;
    height: 50%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(var(--brs-gray-rgb, 28, 47, 54), 0.9);
    z-index: -1;
    transition: all 0.5s ease-in-out;
} */

.benefit-one__video .ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 0 rgba(var(--brs-white-rgb, 255, 255, 255), 0.25);
    animation: ripple 3s infinite;
    border-radius: 50%;
}

.benefit-one__video .ripple::before,
.benefit-one__video .ripple::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 0 rgba(var(--brs-white-rgb, 255, 255, 255), 0.25);
    animation: ripple 3s infinite;
    border-radius: 50%;
}

.benefit-one__video .ripple::before {
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.benefit-one__video .ripple::after {
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.benefit-one__video:hover::after {
    height: 100%;
}

.benefit-one__feature__item {
    border: 1px solid rgba(var(--brs-text-rgb, 16, 29, 34), 0.1);
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    margin-left: -10px;
}

.benefit-one__feature__item:hover .benefit-one__feature__icon i {
    animation: bounceIn 1s linear;
}

.benefit-one__feature__item+.benefit-one__feature__item {
    margin-top: 35px;
}

.benefit-one__feature__icon {
    max-width: 95px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--brs-gray, #1C2F36);
    width: 100%;
    font-size: 40px;
    color: var(--brs-base, #e9b162);
    margin-left: 10px;
    margin-bottom: -15px;
    margin-top: -10px;
    padding-bottom: 15px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 90%, 0 100%);
}

.benefit-one__feature__funfact {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.benefit-one__feature__count {
    text-align: center;
    display: flex;
    justify-content: center;
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 100%;
    color: var(--brs-base, #e9b162);
    margin-bottom: 0;
    padding-bottom: 0;
}

.benefit-one__feature__text {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: normal;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--brs-text-gray, #7D8B90);
    text-transform: capitalize;
}

.benefit-one__right {
    position: absolute;
    top: 50px;
}

@media (max-width: 1199px) {
    .benefit-one__right {
        position: relative;
        top: 0;
    }
}

.benefit-one__item {
    display: flex;
    align-items: center;
}

@media (max-width: 1199px) {
    .benefit-one__item {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .benefit-one__item {
        flex-direction: column;
        gap: 30px;
    }
}

.benefit-one__item__content {
    width: 362px;
    height: 362px;
    border-radius: 50%;
    background-color: var(--brs-gray, #1C2F36);
    text-align: center;
    padding: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.benefit-one__item__content a {
    padding: 6px 20px;
    font-size: 14px;
}

.benefit-one__item__content--two {
    margin-right: -30px;
    position: relative;
    z-index: 2;
}

.benefit-one__item__content:hover {
    background-color: var(--brs-base, #e9b162);
}

.benefit-one__item__content:hover a {
    background-color: var(--brs-gray, #1C2F36);
    color: var(--brs-base, #e9b162);
}

.benefit-one__item__content:hover .benefit-one__item__title,
.benefit-one__item__content:hover .benefit-one__item__text {
    color: var(--brs-white, #fff);
}

.benefit-one__item__thumb {
    border-radius: 0px 1000px 1000px 1000px;
    overflow: hidden;
    margin-right: -30px;
    position: relative;
}

.benefit-one__item__thumb img {
    object-fit: cover;
    width: 100%;
    height: 300px;
}

.benefit-one__item__thumb--two {
    margin-left: 0px;
    margin-right: 0px;
    border-radius: 1000px 1000px 0px 1000px;
}

.benefit-one__item__title {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 125%;
    text-transform: capitalize;
    color: var(--brs-white, #fff);
    transition: all 0.4s ease-in-out;
}

.benefit-one__item__text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 219%;
    margin-bottom: 20px;
    padding-bottom: 0;
    transition: all 0.4s ease-in-out;
    color: var(--brs-text-gray, #7D8B90);
}

@media (max-width: 1330px) and (min-width: 1199px) {
    .benefit-one__item__text {
        font-size: 15px;
        line-height: 119%;
    }
}

.benefit-one__item+.benefit-one__item {
    margin-top: -30px;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .benefit-one__item+.benefit-one__item {
        margin-top: 30px;
    }
}

.benefit-one__icon {
    position: absolute;
    top: 45%;
    left: 45%;
    transform: translate(-50% -50%);
    animation: scaleError2 4s ease-in-out infinite;
}

@media (max-width: 767px) {
    .benefit-one__icon {
        display: none;
    }
}


/*--------------------------------------------------------------
# Feature Section
--------------------------------------------------------------*/

/***Feature One***/

.feature-one {
    padding-bottom: 120px;
}

@media (max-width: 991px) {
    .feature-one {
        padding-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .feature-one {
        padding-bottom: 80px;
    }
}

/***Feature Card Two***/

.feature-two__item {
    padding: 30px;
    box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.06);
    border-radius: 1000px 1000px 0px 0px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: var(--brs-white, #fff);
}

.feature-two__item--two {
    border-radius: 0px 0px 1000px 1000px;
}

.feature-two__item--two .feature-two__item__icon {
    margin-bottom: 0;
    margin-top: 20px;
}

.feature-two__item--two .feature-two__item__content {
    margin-top: -6px;
}

.feature-two__item__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    transform: scale(1.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.feature-two__item__bg::after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    top: 0;
    left: 0;
    background-color: var(--brs-text-dark, #15262C);
    opacity: 0;
    transition: all 0.6s ease-in-out;
}

.feature-two__item__icon {
    width: 115px;
    height: 115px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    font-size: 42px;
    margin-right: auto;
    border: 10px solid var(--brs-text, #101D22);
    background-color: var(--brs-gray, #1C2F36);
    color: var(--brs-base, #e9b162);
    margin-bottom: 14px;
    transition: all 0.4s ease-in-out;
}

.feature-two__item__icon img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.feature-two__item__content {
    text-align: center;
}

.feature-two__item__title {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 10px;
    padding-bottom: 0;
    transition: all 0.6s ease-in-out;
}

.feature-two__item__text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    margin-bottom: 20px;
    padding-bottom: 0;
    max-width: 300px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.feature-two__item .brs-btn {
    padding: 9px 20px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 171%;
}

.feature-two__item .brs-btn::after {
    background-color: var(--brs-gray2, #283E46);
}

.feature-two__item__element {
    position: absolute;
    bottom: 0;
    left: 0;
}

.feature-two__item__element-two {
    position: absolute;
    bottom: 0;
    right: 0;
}

.feature-two__item__element-three {
    position: absolute;
    top: 0;
    left: 0;
}

.feature-two__item__element-fore {
    position: absolute;
    top: 0;
    right: 0;
}

.feature-two__item:hover .feature-two__item__bg {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.feature-two__item:hover .feature-two__item__bg::after {
    opacity: 0.9;
}

.feature-two__item:hover .feature-two__item__title {
    color: var(--brs-white, #fff);
}

.feature-two__item:hover .feature-two__item__icon {
    background-color: var(--brs-base, #e9b162);
    color: var(--brs-white, #fff);
    border-color: var(--brs-gray2, #283E46);
}

.feature-two__item:hover .feature-two__item__icon i {
    animation: bounceIn 1s linear;
}

/***Feature Two***/

.feature-two {
    position: relative;
    padding: 120px 0px 0px;
}

@media (max-width: 991px) {
    .feature-two {
        padding: 100px 0px 0px;
    }
}

@media (max-width: 768px) {
    .feature-two {
        padding: 80px 0px 0px;
    }
}

.feature-two--three {
    padding: 120px 0px;
}

@media (max-width: 991px) {
    .feature-two--three {
        padding: 100px 0px;
    }
}

@media (max-width: 768px) {
    .feature-two--three {
        padding: 80px 0px;
    }
}

.feature-two::after {
    content: "";
    width: 100%;
    height: 480px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--brs-border-color, #FAF6F0);
    z-index: -1;
}



/**About One**/

.about-one {
    padding: 120px 0px;
    position: relative;
}

@media (max-width: 991px) {
    .about-one {
        padding: 100px 0px;
    }
}

@media (max-width: 767px) {
    .about-one {
        padding: 80px 0px;
    }
}

.about-one__thumb {
    position: relative;
    z-index: 1;
}

.about-one__thumb__item {
    margin-left: 70px;
    margin-right: 50px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .about-one__thumb__item {
        margin-left: 40px;
        margin-right: 0px;
    }
}

.about-one__thumb__item img {
    object-fit: cover;
    width: 100%;
}

.about-one__thumb__item__element {
    position: absolute;
    top: 0;
    right: 0;
}

.about-one__thumb__item__element img {
    object-fit: cover;
    width: 100%;
}

.about-one__thumb__line {
    display: flex;
    gap: 10px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: top-bottom 3s ease-in-out infinite;
}

.about-one__thumb__line span {
    height: 216px;
    width: 2px;
    background-color: var(--brs-base, #e9b162);
}

.about-one__thumb__line span:nth-child(2) {
    margin-top: 10px;
}

.about-one__thumb__line span:nth-child(3) {
    margin-top: 20px;
}

.about-one__thumb__element {
    position: relative;
    z-index: 1;
    animation: top-bottom-two 4s ease-in-out infinite;
    margin-left: -20px;
}

@keyframes top-bottom-two {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}
@media (max-width: 1199px) and (min-width: 992px) {
    .about-one__thumb__element {
        margin-left: 0;
    }
}

@media (max-width: 575px) {
    .about-one__thumb__element {
        margin-left: 0;
    }
}

.about-one__thumb__shape {
    position: relative;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 137.000000 300.000000">  <g transform="translate(0.000000,300.000000) scale(0.050000,-0.050000)"> <path d="M0 3609 c0 -2356 1 -2392 40 -2470 77 -151 117 -159 759 -159 l561 0 0 -480 0 -480 690 0 690 0 0 2365 c-1 2660 11 2464 -151 2587 l-76 58 -576 6 -577 6 0 479 0 479 -680 0 -680 0 0 -2391z"/> </g> </svg>');
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 137.000000 300.000000">  <g transform="translate(0.000000,300.000000) scale(0.050000,-0.050000)"> <path d="M0 3609 c0 -2356 1 -2392 40 -2470 77 -151 117 -159 759 -159 l561 0 0 -480 0 -480 690 0 690 0 0 2365 c-1 2660 11 2464 -151 2587 l-76 58 -576 6 -577 6 0 479 0 479 -680 0 -680 0 0 -2391z"/> </g> </svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: top center;
    mask-position: top center;
    -webkit-mask-size: auto;
    mask-size: auto;
    width: 167px;
    height: 367px;
    background-color: transparent;
    margin-top: -330px;
}
.about-one__thumb__shape img {
     width: 167px;
    height: 367px;
    object-fit: cover;
}
.about-one__thumb__shape-two {
    position: absolute;
    bottom: -10px;
    left: -15px;
}

.about-one__content .sec-title {
    padding-bottom: 20px;
}

.about-one__content .sec-title__title {
    font-style: normal;
    font-weight: 600;
    font-size: clamp(25px, 4vw, 50px);
    line-height: 120%;
}

.about-one__content__text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    margin-bottom: 30px;
}

.about-one__feature {
    margin-bottom: 50px;
}

.about-one__feature__item {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .about-one__feature__item {
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }
}

@media (max-width: 575px) {
    .about-one__feature__item {
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }
    .lux-hero {
    position: relative;
    height: 65vh;
    overflow: hidden;
}
.benefit-one__video__bg {
    width: 100%;
    height: 100%;
    z-index: -1;
}
}

.about-one__feature__item+.about-one__feature__item {
    margin-top: 30px;
}

.about-one__feature__left {
    position: relative;
    z-index: 1;
    flex: 70%;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .about-one__feature__left {
        flex: 60%;
        width: 60%;
    }
}

@media (max-width: 575px) {
    .about-one__feature__left {
        flex: 60%;
        width: 60%;
    }
}

@media (max-width: 575px) {
    .about-one__feature__left {
        display: flex;
        align-items: center;
        gap: 20px;
        width: 100%;
        flex: 100%;
    }
}

.about-one__feature__left:hover .about-one__feature__icon {
    background-color: var(--brs-base, #e9b162);
    color: var(--brs-white, #fff);
}

.about-one__feature__left:hover .about-one__feature__icon i {
    animation: shake 0.5s linear 1;
}

.about-one__feature__icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brs-gray, #1C2F36);
    font-size: 34px;
    color: var(--brs-base, #e9b162);
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
    .about-one__feature__icon {
        position: relative;
    }
}

.about-one__feature__title {
    margin-top: 10px;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--brs-text, #101D22);
    text-transform: capitalize;
    padding-left: 96px;
}

@media (max-width: 575px) {
    .about-one__feature__title {
        padding-left: 0;
    }
}

.about-one__feature__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.about-one__feature__title a:hover {
    background-size: 100% 1px;
}

.about-one__feature__text {
    margin-bottom: 0;
    border-left: 3px solid var(--brs-base, #e9b162);
    padding: 7px 30px;
    background-color: rgba(var(--brs-text-dark-rgb, 21, 38, 44), 0.04);
    color: var(--brs-text-gray, #7D8B90);
    font-weight: 500;
    font-size: 14px;
    line-height: 171%;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .about-one__feature__text {
        flex: 80%;
        width: 80%;
    }
}

@media (max-width: 575px) {
    .about-one__feature__text {
        flex: 80%;
        width: 80%;
    }
}

.about-one__btn {
    padding: 11px 40px;
}
/**** Cta One****/

.cta-one {
    position: relative;
}

.cta-one--one {
    margin-bottom: -143px;
    position: relative;
    z-index: 1;
}

.cta-one__inner {
    display: flex;
}

@media (max-width: 767px) {
    .cta-one__inner {
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }
}

.cta-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.cta-one__bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--brs-base-rgb, 203, 163, 107), 0.7);
}

.cta-one__funfact {
    position: relative;
    z-index: 1;
    width: calc(100% - 50%);
    /* flex: 15%; */
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .cta-one__funfact {
        flex: 100%;
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.cta-one__funfact__content {
    width: 147px;
    height: 147px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background-color: var(--brs-white, #fff);
    margin-left: auto;
    margin-right: auto;
    position: relative;
    vertical-align: middle;
    transition: all 0.4s ease-in-out;
}

.cta-one__funfact__content::after {
    content: "";
    position: absolute;
    right: -10px;
    top: -10px;
    bottom: -10px;
    left: -10px;
    background-color: transparent;
    border: 1px solid var(--brs-white, #fff);
    border-radius: 50%;
}

.cta-one__funfact__content:hover::after {
    animation: scaleError 3s ease-in-out infinite;
}

.cta-one__funfact__count {
    display: flex;
    align-items: center;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    color: var(--brs-text, #101D22);
    margin-bottom: 0;
    padding-bottom: 0;
}

.cta-one__funfact__text {
    margin-bottom: 0;
    padding-bottom: 0;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    color: var(--brs-text, #101D22);
}

.cta-one__content {
    flex: 9%;
    background-color: var(--brs-gray2, #283E46);
    padding: 36px 36px 36px 0px;
    position: relative;
}

@media (max-width: 575px) {
    .cta-one__content {
        padding: 30px;
    }
}

.cta-one__content__title {
    margin-top: -10px;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 150%;
    color: var(--brs-white, #fff);
    text-transform: capitalize;
    text-align: center;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 27px;
}

@media (max-width: 1199px) {
    .cta-one__content__title {
        font-size: 31px;
    }
}
@media (max-width: 575px) {
    .cta-one__content__title {
        max-width: 100%;
        font-size: 25px;
    }
}
.cta-one__content__btn {
    text-align: center;
}
.cta-one__content__btn .brs-btn {
    padding: 11px 40px;
}

.cta-one__content::after {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(../images/shapes/cta-shape.png);
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: left right;
    background-repeat: no-repeat;
}

@media (max-width: 991px) and (min-width: 767px) {
    .cta-one__content::after {
        display: none;
    }
}

@media (max-width: 575px) {
    .cta-one__content::after {
        display: none;
    }
}

/* Breadcrumb */
.brs-section-breadcrumb {
  position: relative;
}
.brs-section-breadcrumb:before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  width: 100%;
  height: 200px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), color-stop(70%, rgba(0, 0, 0, 0.85)), to(rgba(0, 0, 0, 0.85)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 70%, rgba(0, 0, 0, 0.85) 100%);
}

.brs-breadcrumb-overlay {
  width: 100%;
  height: 400px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.brs-breadcrumb-image {
  width: 100%;
  height: 400px;
  margin: 0;
  background-image: url("../images/about/slider-s-2-2.jpg");
  background-size: cover;
  background-position: center;
}

.inner-breadcrumb-contact {
  position: relative;
  height: 100%;
  z-index: 1;
}
.inner-breadcrumb-contact .main-breadcrumb-contact {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.inner-breadcrumb-contact .main-breadcrumb-contact .brs-banner-contact h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
}
.inner-breadcrumb-contact .brs-banner-breadcrumb {
  position: absolute;
  bottom: 0;
  padding: 10px 0;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
}
.inner-breadcrumb-contact .brs-banner-breadcrumb .breadcrumb-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.inner-breadcrumb-contact .brs-banner-breadcrumb .breadcrumb-contact .main-heading h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}
.inner-breadcrumb-contact .brs-banner-breadcrumb .breadcrumb-contact .last-contact ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -8px;
}
.inner-breadcrumb-contact .brs-banner-breadcrumb .breadcrumb-contact .last-contact ul li {
  padding: 0 8px;
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  list-style: none;
}
.inner-breadcrumb-contact .brs-banner-breadcrumb .breadcrumb-contact .last-contact ul li a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.inner-breadcrumb-contact .brs-banner-breadcrumb .breadcrumb-contact .last-contact ul li a:hover {
  color: #9d7e54;
}
.inner-breadcrumb-contact .brs-banner-breadcrumb .breadcrumb-contact .last-contact ul li:last-child:before {
  content: "\F280";
  font-family: bootstrap-icons; 
  font-size: 14px;
  font-weight: 500;
  padding-right: 12px;
}
@media screen and (max-width: 425px) {
    .about__thumb__item {
        height: 485px !important;
    }
    .about__thumb__shape1 {
    width: 211px !important;
    height: 200px !important; 
    }
    .about__thumb__shape2 {
    width: 188px !important;
    height: 160px !important;
    }
}
.about__thumb {
    position: relative;
}
.about__thumb__item {
    width: 100%;
    height: 640px;
    animation: top-bottom-two 4s ease-in-out infinite;
}
.about__thumb__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px 115px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.about__thumb__shape1 {
    width: 300px;
    height: 250px;
    position: absolute;
    top: -55px;
    left: -25px;
    animation: top-bottom-two 4s ease-in-out infinite;
}
.about__thumb__shape1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px 100px 100px 100px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}
.about__thumb__shape2 {
    width: 260px;
    height: 210px;
    position: absolute;
    bottom: -55px;
    left: 100px;
    animation: top-bottom-two 4s ease-in-out infinite;
}
.about__thumb__shape2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 150px 100px 40px 10px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

/**Room Card**/
.beachs-card {
  background-color: transparent;
  border-bottom: 4px solid var(--brs-white);
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  border-radius: 35px;
}
.beachs-card__thumb {
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 250px;
  width: 100%;
}
.beachs-card__thumb img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  transform: scale(1) rotate(0deg);
  transition: all 0.4s ease-in-out;
   border-radius: 35px 35px 0px 0px;
}
.beachs-card__thumb::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(var(--brs-text-rgb, 16, 29, 34), 0.7);
  z-index: 0;
  transform: translateY(-70%);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.beachs-card__feature {
  background-color: var(--brs-white, #fff);
  font-style: normal;
  font-weight: 700;
  font-size: 10px;
  line-height: 180%;
  text-transform: uppercase;
  color: var(--brs-gray2, #283E46);
  padding: 4.5px 11px;
  position: absolute;
  top: 20px;
  left: 20px;
  margin-bottom: 0;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}
.beachs-card__feature:hover {
  background: var(--brs-base, #CBA36B);
  color: var(--brs-white, #fff);
}
.beachs-card__love {
  width: 32px;
  height: 32px;
  z-index: 1;
  background-color: var(--brs-white, #fff);
  font-size: 15px;
  color: var(--brs-text-gray, #7D8B90);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  line-height: 0;
  top: 20px;
  right: 20px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.beachs-card__love .active {
  color: var(--brs-base, #CBA36B);
}
.beachs-card__love:hover {
  background-color: var(--brs-text, #101D22);
}
.beachs-card__top {
  padding: 0px 30px;
  width: 100%;
  background-color: var(--brs-gray, #1C2F36);
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}
.beachs-card__top__inner {
  margin-top: -40px;
  display: flex;
  align-items: end;
  justify-content: end;
  position: relative;
  z-index: 3;
  margin-bottom: -44px;
}
.beachs-card__top__price {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: var(--brs-base, #CBA36B);
  transition: all 0.4s ease-in-out;
}
.beachs-card__top__price__content {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: normal;
  display: block;
  color: var(--brs-white, #fff);
}
.beachs-card__top__price__text {
  margin-bottom: 0;
  padding-bottom: 0;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: normal;
  color: var(--brs-white, #fff);
}
.beachs-card__content {
  position: relative;
  background-color: var(--brs-gray, #1C2F36);
  padding: 30px;
  padding-top: 40px;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s ease-in-out;
  border-radius: 0px 0px 35px 35px;
}
.beachs-card__content__inner__element {
  width: 98px;
  height: 98px;
  position: absolute;
  border-radius: 100px;
  top: -45px;
  right: 24px;
  background: rgba(var(--brs-gray2-rgb, 40, 62, 70), 1);
  z-index: 1;
  transition: all 0.5s ease;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(255, 255, 255, 0.863) 0px 15px 12px;
}
.beachs-card__content__title {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: normal;
  margin-bottom: 7px;
  padding-bottom: 0;
  text-transform: capitalize;
  color: var(--brs-white, #fff);
}
.beachs-card__content__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.beachs-card__content__title a:hover {
  background-size: 100% 1px;
}
.beachs-card__content__title a:hover {
  color: var(--brs-text, #101D22);
}
.beachs-card__content__text {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 171%;
  margin-bottom: 10px;
  padding-bottom: 0;
  color: var(--brs-text-gray, #7D8B90);
  max-width: 254px;
  width: 100%;
  transition: all 0.4s ease-in-out;
}
.beachs-card__content__star {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 20px;
  border: 1px solid var(--brs-gray2, #283E46);
  margin-bottom: 20px;
  transition: all 0.4s ease-in-out;
  border-radius: 42px 45px;
}
.beachs-card__content__star__item {
  font-size: 17px;
  color: var(--brs-base);
  letter-spacing: -1px;
}
.beachs-card__content__star__item i {
  transition: all 0.4s ease-in-out;
}
.beachs-card__content__star__parson {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 171%;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--brs-text-gray, #7D8B90);
  transition: all 0.4s ease-in-out;
}
.beachs-card__content__star__parson strong {
  color: var(--brs-white, #fff);
  transition: all 0.4s ease-in-out;
}
.beachs-card__content__btn {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 171%;
  text-transform: uppercase;
  color: var(--brs-white, #fff);
  background-color: var(--brs-text-dark, #15262C);
  padding: 9.5px 22px;
  border: 1px solid var(--brs-white);
  border-radius: 25px;
}
.beachs-card__content__btn:hover {
  color: var(--brs-white, #fff);
  border-color: rgba(var(--brs-white-rgb, 255, 255, 255), 0.2);
}
.beachs-card:hover .beachs-card__top__price {
  background-color: var(--brs-gray, #1C2F36);
}
.beachs-card:hover .beachs-card__content {
  background-color: var(--brs-base, #CBA36B);
}
.beachs-card:hover .beachs-card__content__inner__element {
  background: rgba(var(--brs-gray2-rgb, 40, 62, 70), 0.2);
}
.beachs-card:hover .beachs-card__content__star__item {
    color: var(--brs-white);
}
.beachs-card:hover .beachs-card__content__star__item i {
    color: var(--brs-black2);
}
.beachs-card:hover .beachs-card__content__text,
.beachs-card:hover .beachs-card__content__star__parson strong {
  color: var(--brs-white, #fff);
}
.beachs-card:hover .beachs-card__content__star {
  border-color: transparent;
  background-color: rgba(var(--brs-white-rgb, 255, 255, 255), 0.16);
}
.beachs-card:hover .beachs-card__content__star__parson {
  color: var(--brs-text-dark, #15262C);
}
.beachs-card:hover .beachs-card__thumb img {
  transform: scale(1.1) rotate(5deg);
}
.beachs-card:hover .beachs-card__thumb::after {
  opacity: 1;
  transform: translateY(0);
}

.ribbon {
  color: #fff;
  z-index: 100;
}
.locations__area {
    padding: 4px 12px;
}
.ribbon {
  --r: .8em;
  --c: #B76F5A;

  position: absolute;
  top: 230px;
  left: calc(-1*var(--r));
  line-height: 1.8; 
  padding: 0 .5em calc(2*var(--r));
  border-radius: var(--r) 0 0 var(--r);
  background: 
    radial-gradient(100% 50% at left,var(--c) 98%,#0000 101%)
     100% 0/.5lh calc(100% - 2*var(--r)),
    radial-gradient(100% 50% at right,#0005 98%,#0000 101%) 
     0 100%/var(--r) calc(2*var(--r)),
    conic-gradient(from 90deg at var(--r) calc(100% - 2*var(--r)),#0000 25%,var(--c) 0)
     0 0/calc(101% - .5lh) 100%;
  background-repeat: no-repeat;   
}

    /* Rates Card */
    .availability-rates-card {
      border: none;
      border-radius: 20px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
  .availability-rates-card h4 {
    color: var(--brs-base);
 }
    /* Calendar */
    .availability-calendar-container {
      border-radius: 20px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      background: #fff;
      padding: 25px;
    }

    .availability-calendar-header {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      gap: 10px;
    }

    .availability-calendar-header h4 {
      font-weight: 600;
      margin: 0;
      font-size: 1.25rem;
      text-align: center;
      flex: 1;
    }

    /* Modern Navigation Buttons */
    .availability-calendar-nav button {
      border: none;
      background: var(--brs-base);
      color: #fff;
      padding: 8px 12px;
      margin: 0 2px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 0.9rem;
      transition: all 0.3s ease;
      white-space: nowrap;
    }

    .availability-calendar-nav button:hover {
      background: linear-gradient(135deg, #004ecc, #4bd1e5);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .availability-calendar {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 8px;
      text-align: center;
      font-size: 0.9rem;
    }

    .availability-calendar .day-name {
      font-weight: 600;
      color: #6c757d;
      font-size: 0.8rem;
    }

    .availability-calendar .day {
      padding: 12px;
      border-radius: 12px;
      background: #f8f9fa;
      transition: all 0.3s ease;
      min-height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .availability-calendar .day.available {
      background: #d1fae5;
      color: #065f46;
      cursor: pointer;
    }

    .availability-calendar .day.available:hover {
      background: #a7f3d0;
      transform: scale(1.05);
    }

    .availability-calendar .day.unavailable {
      background: #fee2e2;
      color: #991b1b;
      opacity: 0.8;
      cursor: not-allowed;
    }

    .availability-legend {
      margin-top: 20px;
      font-size: 0.85rem;
    }

    .availability-legend span {
      display: inline-block;
      width: 15px;
      height: 15px;
      margin-right: 5px;
      border-radius: 3px;
    }

    /* Responsive tweaks */
    @media (max-width: 992px) {
      .availability-calendar {
        font-size: 0.8rem;
      }

      .availability-calendar .day {
        padding: 10px;
        min-height: 40px;
      }
    }

    @media (max-width: 768px) {
      .availability-header {
        padding: 30px 15px;
      }

      .availability-header h1 {
        font-size: 1.6rem;
      }

      .availability-calendar-header h4 {
        font-size: 1rem;
      }

      .availability-calendar {
        gap: 6px;
        font-size: 0.75rem;
      }

      .availability-calendar .day {
        padding: 8px;
        min-height: 35px;
      }
    }

    @media (max-width: 576px) {
      .availability-calendar {
        grid-template-columns: repeat(7, minmax(30px, 1fr));
        gap: 4px;
        font-size: 0.7rem;
      }

      .availability-calendar .day {
        padding: 6px;
        min-height: 30px;
      }

      .availability-calendar-nav button {
        padding: 6px 8px;
        font-size: 0.75rem;
      }
    }
    .main-footers {
        padding-top: 0px;
    }

    
    /* Hero */
    .hero {
      position: relative;
      background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f') no-repeat center/cover;
      height: 70vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
    }
    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.6);
    }
    .hero-content {
      position: relative;
      text-align: center;
      z-index: 2;
    }
    .hero h1 {
      font-size: 3.5rem;
      font-weight: 800;
    }
    .hero p {
      font-size: 1.2rem;
      margin-top: 10px;
    }

    /* Professional Info Cards */
    .pro-card {
      background: linear-gradient(135deg, #ffffff, #f9f9f9);
      border-radius: 20px;
      box-shadow: 0px 10px 25px rgba(0,0,0,0.08);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
      padding: 30px;
      height: 100%;
      text-align: center;
    }
    .pro-card::before {
      content: "";
      position: absolute;
      top: -40%;
      left: -40%;
      width: 180%;
      height: 180%;
      background: radial-gradient(circle at top left, rgba(0,123,255,0.15), transparent 70%);
      z-index: 0;
    }
    .pro-card h5 {
      font-weight: 700;
      margin-bottom: 10px;
      position: relative;
      z-index: 1;
    }
    .pro-card p {
      position: relative;
      z-index: 1;
      color: #555;
    }
    .pro-card .icon-wrap {
      background: linear-gradient(135deg, #007bff, #00c6ff);
      width: 70px;
      height: 70px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px auto;
      box-shadow: 0px 5px 15px rgba(0,123,255,0.3);
      position: relative;
      z-index: 1;
    }
    .pro-card .icon-wrap i {
      font-size: 28px;
      color: #fff;
    }
    .pro-card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0px 15px 30px rgba(0,0,0,0.12);
    }

    /* Contact Form */
    .contact-section {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
      background: #fff;
    }
    .contact-image {
      background: url('../images/about/about-1-1.jpg') no-repeat center/cover;
      min-height: 500px;
    }
    .contact-form {
      padding: 50px;
    }
    .form-control {
      border-radius: 12px;
      padding: 12px;
    }
    .btn-custom {
      background: linear-gradient(135deg, #101D22, #e9b162);
      border: none;
      border-radius: 12px;
      padding: 12px;
      font-size: 1.1rem;
      color: #fff;
      transition: 0.3s ease;
    }
    .btn-custom:hover {
      transform: scale(1.05);
      background: var(--brs-base2);
    }

    /* Map */
    .map-section iframe {
      width: 100%;
      height: 450px;
      border: none;
      border-radius: 20px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

    /* FAQ */
    .faq-section {
      background: #f1f4f9;
      padding: 70px 20px;
      border-radius: 20px;
    }
    .accordion-button {
      border-radius: 12px !important;
    }

    /* Team */
    .team-section .card {
      border: none;
      border-radius: 20px;
      box-shadow: 0px 6px 20px rgba(0,0,0,0.08);
      transition: 0.3s ease;
      text-align: center;
      padding: 25px;
    }
    .team-section .card:hover {
      transform: translateY(-8px);
    }
    .team-section img {
      border-radius: 50%;
      width: 120px;
      height: 120px;
      object-fit: cover;
      margin: auto;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .team-section h5 {
      margin-top: 15px;
      font-weight: 600;
    }
    .team-section p {
      color: #666;
    }

    .form-control:focus {
        border-color: #B76F5A;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, #a37950 0px 8px 16px -8px;
    }

    /* Hero Carousel */
    .hero-carousel {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    }

    .hero-carousel .carousel-inner img {
      height: 480px;
      object-fit: contain;
    }

    /* Thumbnail strip */
    .thumb-gallery {
      display: flex;
      gap: 12px;
      margin-top: 15px;
      overflow-x: auto;
      scrollbar-width: none;
      /* Firefox */
    }

    .thumb-gallery::-webkit-scrollbar {
      display: none;
    }

    /* Chrome */
    .thumb-gallery img {
      width: 100px;
      height: 70px;
      object-fit: cover;
      border-radius: 10px;
      cursor: pointer;
      opacity: 0.6;
      border: 2px solid transparent;
      transition: 0.3s;
      flex-shrink: 0;
    }

    .thumb-gallery img.active {
      opacity: 1;
      border: 2px solid #2563eb;
      transform: scale(1.05);
    }

    @media(max-width:768px) {
      .hero-carousel .carousel-inner img {
        height: 300px;
      }

      .thumb-gallery img {
        width: 70px;
        height: 50px;
      }
    }

    /* Section Titles */
    .section-title {
      font-size: 22px;
      font-weight: 700;
      margin: 40px 0 20px;
      color: #111827;
      position: relative;
    }

    .location-title {
      font-size: 17px;
      font-weight: 700;
      margin: 40px 0 20px;
      color: #111827;
      position: relative;
    }
    .location-title i {
        color: var(--brs-base);
    }

    .section-title::after {
      content: "";
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, #c19a6b, #1C2F36);
      display: block;
      margin-top: 8px;
      border-radius: 3px;
    }

    /* Amenities Grid */
    .amenities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 15px;
    }

    .amenity-box {
      background: #fff;
      border-radius: 12px;
      padding: 12px 15px;
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
      transition: 0.3s;
      border-bottom: 3px solid var(--brs-base);
    }

    .amenity-box i {
      font-size: 20px;
      color: #2563eb;
    }

    .amenity-box:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

    /* Booking Card */
    /* .sticky-sidebar {
      position: sticky;
      top: 90px;
    } */

    .property-booking-card {
      background: #fff;
      border-radius: 20px;
      padding: 25px;
      box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    }

    .property-booking-card h4 {
      font-weight: 700;
      margin-bottom: 20px;
      text-align: center;
      color: #e9b162;
    }

    /* .form-control,
    .form-select {
      border-radius: 12px;
      padding: 12px;
      border: 1px solid #e5e7eb;
    } */

    .btn-gradients {
      background: linear-gradient(135deg, #c19a6b, #1C2F36);
      color: #fff;
      font-weight: 600;
      border: none;
      padding: 14px;
      border-radius: 12px;
      width: 100%;
      transition: 0.3s;
    }

    /* Custom Carousel Buttons */
    .carousel-custom-controls {
      display: flex;
      justify-content: center;
      gap: 20px;
      padding: 7px;
    }

    .btn-navs {
      background: var(--background);
      color: #fff;
      font-size: 26px;
      border: none;
      padding: 0px 16px;
      border-radius: 50px;
      transition: 0.3s ease-in-out;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .btn-navs:hover {
      background: linear-gradient(135deg, #1e40af, #0284c7);
      transform: translateY(-3px) scale(1.05);
    }

    .btn-gradients:hover {
      background: linear-gradient(135deg, #1e40af, #0284c7);
      transform: translateY(-2px);
    }

    @media(max-width:768px) {
      .hero-carousel img {
        height: 300px;
      }

      .thumb-gallery img {
        width: 70px;
        height: 50px;
      }
    }

    .luxury-features2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.luxury-features2 div {
    flex: 1 1 15%;
    background: var(--background);
    border-radius: 15px;
    padding: 7px 0;
    text-align: center;
    transition: all 0.3s;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    border-bottom: 2px solid var(--brs-border-color);
    color: #fefefe;
}

.luxury-features2 div:hover {
    background: var(--brs-base);
    color: #111827;
    transform: translateY(-3px);
}

.luxury-features2 strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

   .captcha-box {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin: 7px 0;
      padding: 7px;
      background: #eee;
      border-radius: 5px;
    }
    .captcha-code {
      font-weight: bold;
      font-size: 20px;
      letter-spacing: 3px;
      color: #333;
      user-select: none;
    }
    .refresh-btn {
      background: #007bff;
      color: #fff;
      border: none;
      padding: 5px 10px;
      border-radius: 5px;
      cursor: pointer;
    }
    .refresh-btn:hover {
      background: #0056b3;
    }
    .error {
      color: red;
      font-size: 14px;
      display: none;
    }
    .success {
      color: green;
      font-size: 14px;
      display: none;
    }

    .main-carousel-area {
            box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
            background: #fefefe;
            padding: 10px 0px;
            border-radius: 1.6rem;
        }

        .carousel-indicators {
            position: static;
        }

        .carousel-control-next,
        .carousel-control-prev {
            position: absolute;
            top: -120px;
        }


        .carousel___indicators {
            /* background: rgb(40,36,33); */
            /* background: linear-gradient(90deg, var(--color-primary) 0%, var(--white-color) 100%); */
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            transform: translateX(30px);
            border-radius: 1.6rem;
            position: relative;
            right: 0;
            width: 90%;
            bottom: 0rem;
            padding: .5rem;
            gap: 10px;
            left: 0;
            justify-content: center;
            margin-left: 0% !important;
            z-index: 2;
            /* margin-right: 15%; */
            /* margin-bottom: 1rem; */
            /* margin-left: 15%; */
            list-style: none;
            border: 1px solid #aa8453;
            /* overflow-x: scroll; */
        }

        .indicators_scroll {
        overflow-x: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
            -webkit-box-align: stretch;
            align-items: stretch;
            display: flex;
            flex-flow: row nowrap;
            margin: 0 auto;
        }

        .carousel-indicators .thumbnail {
            width: 200px;
            height: 50px;
        }

        .carousel-indicators .thumbnail>img {
            width: 100px !important;
            height: 60px;
            object-fit: contain;
        }

        .carousel-item img {
            border-radius: 1.6rem;
        }

        .carousel-item>img {
            width: 450px;
            height: 480px;
            object-fit: contain;
        }

        .carousel-inner {
            width: 100%;
            max-height: 480px;
        }

        @media (min-width: 320px) and (max-width: 768px) {
            .carousel___indicators {
                /* background: rgb(40, 36, 33); */
                /* background: linear-gradient(90deg, var(--color-primary) 0%, var(--white-color) 100%); */
                /* background: linear-gradient(180deg, rgba(40, 36, 33, 1) 0%, rgba(138, 136, 135, 1) 100%); */
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                transform: translateX(21px);
            }
        }