/*--------------------------------------------------------------
This is main CSS file that contains custom style rules used in this template
--------------------------------------------------------------*/

/*------------------------------------*\
    Table of contents
\*------------------------------------*/

/*------------------------------------------------

CSS STRUCTURE:

1. VARIABLES

2. GENERAL TYPOGRAPHY
  2.1 General Styles
  2.2 Background Color
  2.3 Section
    - Section Paddings
    - Section Margins
    - Section Title
  2.4 Buttons
    - Primary Buttons
    - Outline Buttons
    - Button Hover Effects

3. CONTENT ELEMENTS
  - Dropdown
  - Form
  - Svg Color
  - Swiper
  - Modal Video
  - Preloader

4. SITE STRUCTURE
  4.1 Header
  4.2 Billboard
  4.3 Rooms Section
  4.4 Services Section

5. PAGES STYLE
  5.1 About page
  5.2 Blog page 
  5.3 Booking page 
  5.4 Gallery page
  5.5 Reviews page 
  5.5 FAQs page 


  
/*--------------------------------------------------------------
/** 1. VARIABLES
--------------------------------------------------------------*/
:root {
    --primary-color: #DAAD80;
    --secondary-color: #e9dfd5;
    --black-color: #1A1A1A;
    --dark-color: #353535;
    --primary-color-200: #E8F0F1;
    --primary-color-400: #c4e9ed;
    --gray-color: #777F81;
    --light-color: #fdfdfd;

    /* bootstrap color-scheme */
    --bs-dark-rgb: 80, 80, 80;
    --bs-gray-100: #EAE5DD;
    --bs-gray-300: #DCDCDC;
    --bs-light-rgb: rgba(255, 255, 255, 1);
    --bs-body-color-rgb: 53, 53, 53;
    --bs-primary-rgb: 209, 104, 6;
    --bs-secondary-rgb: 233, 223, 213;
}

/* Fonts */
:root {
    --heading-font: "Fraunces", serif;
    --body-font: "Plus Jakarta Sans", serif;
}

/*----------------------------------------------*/
/* 2 GENERAL TYPOGRAPHY
/*----------------------------------------------*/

/* 2.1 General Styles
/*----------------------------------------------*/
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    font-size: 17px;
    font-weight: 400;
    line-height: 164%;
    letter-spacing: 0.32px;
    color: var(--dark-color);
    margin: 0;
}

p {
    color: var(--dark-color);
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

a:hover {
    color: var(--primary-color);
}

.text-light {
    color: var(--light-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-black {
    color: var(--black-color) !important;
}

/* 2.2 Background Color
/*----------------------------------------------*/
.bg-light {
    background-color: var(--light-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-gray {
    background-color: var(--bs-gray-100) !important;
}

.bg-white-40 {
    background-color: rgba(255, 255, 255, 0.5);
}

/*--------------------------------------------------------------
/** 2.3 Section
--------------------------------------------------------------*/
/* - Section Padding
--------------------------------------------------------------*/
.padding-small {
    padding-top: 3em;
    padding-bottom: 3em;
}

.padding-medium {
    padding-top: 8em;
    padding-bottom: 8em;
}

.padding-large {
    padding-top: 8em;
    padding-bottom: 8em;
}

.padding-side {
    padding-left: 6rem;
    padding-right: 6rem;
}

@media (max-width: 1400px) {
    .padding-side {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}

@media (max-width: 1200px) {
    .padding-side {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

@media (max-width: 992px) {
    .padding-side {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (max-width: 768px) {
    .padding-side {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .padding-large {
        padding-top: 15em;
    }
}

@media (max-width: 576px) {
    .padding-side {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .padding-large {
        padding-top: 18em;
    }
}

/* - Section Margin
--------------------------------------------------------------*/
.margin-small {
    margin-top: 8.125em;
    margin-bottom: 8.125em;
}

.margin-medium {
    margin-top: 10em;
    margin-bottom: 10em;
}

.margin-large {
    margin-top: 12em;
    margin-bottom: 12em;
}


/* - Section Title
--------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--black-color);
    font-family: var(--heading-font);
    text-transform: capitalize;
    font-weight: 400;
}

/* Animation */
@media (min-width: 200px) {
    .animate {
        animation-duration: 0.3s;
        -webkit-animation-duration: 0.3s;
        animation-fill-mode: both;
        -webkit-animation-fill-mode: both;
    }
}

/* Animate Slide */
@keyframes slide {
    0% {
        transform: translateY(1rem);
        opacity: 0;
    }

    100% {
        transform: translateY(0rem);
        opacity: 1;
    }

    0% {
        transform: translateY(1rem);
        opacity: 0;
    }
}

@-webkit-keyframes slide {
    0% {
        -webkit-transform: transform;
        -webkit-opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        -webkit-opacity: 1;
    }

    0% {
        -webkit-transform: translateY(1rem);
        -webkit-opacity: 0;
    }
}

.slide {
    -webkit-animation-name: slide;
    animation-name: slide;
}

/*--------------------------------------------------------------
/** 2.4 Buttons
--------------------------------------------------------------*/
.btn {
    --bs-btn-padding-x: 2.4rem;
    --bs-btn-padding-y: 1rem;
    --bs-btn-font-size: 1rem;
    --bs-btn-font-weight: 400;
    text-transform: capitalize;
    border-radius: 10px;
    transition: all 0.4s ease-in-out;
}

/* - Primary Buttons
--------------------------------------------------------------*/
.btn-primary {
    --bs-btn-color: var(--dark-color);
    --bs-btn-bg: var(--secondary-color);
    --bs-btn-border-color: var(--secondary-color);
    --bs-btn-hover-color: var(--dark-color);
    --bs-btn-hover-bg: var(--secondary-color);
    --bs-btn-hover-border-color: var(--secondary-color);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: var(--dark-color);
    --bs-btn-active-bg: var(--secondary-color);
    --bs-btn-active-border-color: var(--secondary-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--dark-color);
    --bs-btn-disabled-bg: var(--secondary-color);
    --bs-btn-disabled-border-color: var(--secondary-color);
}

/* - Outline Buttons
--------------------------------------------------------------*/
.btn-outline-primary {
    --bs-btn-color: var(--secondary-color);
    --bs-btn-border-color: var(--secondary-color);
    --bs-btn-hover-color: var(--dark-color);
    --bs-btn-hover-bg: var(--secondary-color);
    --bs-btn-hover-border-color: var(--secondary-color);
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: var(--dark-color);
    --bs-btn-active-bg: var(--secondary-color);
    --bs-btn-active-border-color: var(--secondary-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--secondary-color);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--secondary-color);
    --bs-gradient: none;
}

/* - Button Hover Effects
------------------------------------------------------------- */
.btn-arrow {
    position: relative;
    transition: background-color 300ms ease-out;
}

.btn-arrow span {
    display: inline-block;
    position: relative;
    transition: all 300ms ease-out;
    will-change: transform;
}

.btn-arrow:hover span {
    transform: translate3d(-0.7rem, 0, 0);
}

.btn-arrow svg {
    position: absolute;
    right: 0;
    opacity: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 300ms ease-out;
    will-change: right, opacity;
}

.btn-arrow:hover svg {
    opacity: 1;
    right: -1.6rem;
}


/*--------------------------------------------------------------
/** 3.CONTENT ELEMENTS
--------------------------------------------------------------*/

/* Dropdown
------------------------------------------------------------- */
.dropdown-item {
    color: var(--dark-color);
    text-transform: capitalize;
}

.dropdown-item.active,
.dropdown-item:hover,
.dropdown-item:active {
    color: var(--dark-color);
    background-color: var(--secondary-color);
}

/* Form
------------------------------------------------------------- */
.form-control:focus,
.form-select:focus {
    border-color: var(--dark-color);
    outline: 0;
    box-shadow: none;
}

input,
select,
textarea {
    border-color: var(--dark-color);
    outline: 0;
    box-shadow: none;
}

select:focus {
    box-shadow: none;
}

/* Svg Color
------------------------------------------------------------- */
svg.light-color {
    color: var(--light-color);
}

svg.dark-color {
    color: var(--dark-color);
}

svg.color {
    color: #ECB27B;
}

svg.primary-color {
    color: var(--primary-color);
}

svg.social {
    color: #ECB27B;
}

svg.social:hover {
    color: var(--primary-color);
}



/* Swiper
------------------------------------------------------------- */

/* room */
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
}

.room-pagination .swiper-pagination-bullet {
    width: 18px;
    height: 18px;
    background-color: var(--primary-color);
}

.room-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

/* gallery */
.main-slider-button-next.swiper-button-disabled,
.main-slider-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none;
}

.main-slider-button-next,
.main-slider-button-prev {
    opacity: 1;
    cursor: auto;
}


.room-swiper-con {
    position: relative;
}

.main-slider-button-prev,
.main-slider-button-next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.main-slider-button-prev {
    left: -50px;
}

.main-slider-button-next {
    right: -50px;
}

.main-slider-button-prev svg,
.main-slider-button-next svg {
    width: 24px;
    height: 24px;
    fill: #333;
}



/* modal video override
------------------------------------------------------------- */
.modal-dialog {
    max-width: 800px;
    margin: auto;
    height: 100vh;
    display: flex;
    align-items: center;
}

.modal-content {
    padding: 0;
    background-color: #f5f3ef;
    border: none;
    border-radius: 0
}


/* Preloader
------------------------------------------------------------- */
.preloader {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 111;
    background: #fff;
}

.loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #D16806;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #ECB27B;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

.loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #f7dac1;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*----------------------------------------------*/
/* 4 SITE STRUCTURE */
/*----------------------------------------------*/

/* 4.1 Header
/*----------------------------------------------*/

a.nav-link {
    text-transform: capitalize;
    color: var(--dark-color);
    font-size: 19px;
}

a.nav-link:focus {
    color: var(--dark-color);
}

a.nav-link.active,
a.nav-link:hover {
    color: var(--primary-color) !important;
    outline: none;
}

#primary-header .dropdown .search::after {
    content: none;
}

#primary-header .search-dropdown .dropdown-menu {
    width: 260px;
}

#primary-header .search-dropdown .dropdown-menu input {
    min-width: 100%;
}

#primary-header .search-dropdown .dropdown-menu button {
    padding: 0 12px;
    min-height: -webkit-fill-available;
    border-radius: 0.25rem;
}


/* 4.2 Billboard
/*----------------------------------------------*/

/* date */
div.datetime-container,
div.datetime-container * {
    box-sizing: border-box;
    font-family: var(--body-font);
}

div.datetime-container button.date,
div.datetime-container button.time {
    background-color: transparent;
    border: 1px solid #E9E9E9;
    border-radius: 8px;
    text-transform: capitalize;
    text-align: start;
    padding: 8px 20px;
    color: var(--gray-color);
    letter-spacing: 0.1rem;
}

div.datetime-container button>span {
    display: inline-block;
    margin: 0 -6px;
}

div.datetime-container button span.week-day {
    font-size: 16px;
    text-align: right;
}

div.datetime-container button span.week-day::after {
    content: ",";
    display: inline-block;
}

div.datetime-container button span.month {
    font-size: 16px;
    text-align: right;
}

div.datetime-container button span.hours,
div.datetime-container button span.month-day {
    font-size: 16px;
    text-align: center;
    width: 45px;
}

.month br {
    display: none;
}

@media (max-width: 1500px) {
    div.picker {
        width: max-content;
    }
}


/* 4.3 Rooms Section
/*----------------------------------------------*/
.room-item img.post-image {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.room-item:hover img.post-image {
    opacity: 0.5;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.product-description {
    opacity: 0;
    bottom: -125px;
    transition: all 0.5s ease-in-out;
}

.room-item:hover .product-description {
    opacity: 1;
    bottom: 20px;
}

@media only screen and (min-width:770px) and (max-width: 1400px) {
    .product-description {
        bottom: -180px;
    }
}


/* 4.4 Services Section
/*----------------------------------------------*/

.service {
    border: 1px solid #F4E2D8;
    transition: all 0.3s ease-in-out;
}

.service:hover {
    border: 1px solid var(--primary-color);
}


/* 4.5 Blog Section
/*----------------------------------------------*/

.blog-post img.blog-img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.blog-post:hover img.blog-img {
    opacity: 0.5;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}


/*----------------------------------------------*/
/* 5 PAGES STYLE */
/*----------------------------------------------*/

/*--------------------------------------------------------------
5.1 About page 
--------------------------------------------------------------*/

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--dark-color);
}

svg.play-icon {
    animation: play 1.5s alternate infinite ease-in;
}

@keyframes play {
    0% {
        transform: scale(.8);
    }

    100% {
        transform: scale(1.1);
    }

}

/*--------------------------------------------------------------
  5.2 Blog page 
  --------------------------------------------------------------*/
.pagination {
    --bs-pagination-color: var(--black-color);
    --bs-pagination-hover-color: #fff;
    --bs-pagination-hover-bg: var(--primary-color);
    --bs-pagination-hover-border-color: var(--primary-color);
    --bs-pagination-focus-color: #fff;
    --bs-pagination-focus-bg: var(--primary-color);
    --bs-pagination-focus-box-shadow: none;
    --bs-pagination-active-bg: var(--primary-color);
    --bs-pagination-active-border-color: var(--primary-color);
}


/*--------------------------------------------------------------
 5.3 Booking page 
  --------------------------------------------------------------*/
.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    box-shadow: none;
}

/*--------------------------------------------------------------
 5.4 Gallery page 
  --------------------------------------------------------------*/
button.filter-button {
    border: 0;
    background: transparent;
    text-transform: uppercase;
    transition: all 0.5s ease-in-out;
    border-radius: 20px;
}

button.filter-button.active,
button.filter-button:hover {
    color: var(--bs-light);
    background: var(--primary-color);
}


/*--------------------------------------------------------------
 5.5 Reviews page
--------------------------------------------------------------*/

.reviews-components {
    box-shadow: 0px 12px 90px rgba(12, 12, 12, 0.06);
}

iconify-icon.quote {
    font-size: 60px;
    color: var(--primary-color);
}

.rate {
    color: var(--primary-color);
}



/*--------------------------------------------------------------
5.6 FAQs page 
--------------------------------------------------------------*/

/* accordian style override  */

.accordion {
    --bs-accordion-border-color: var(--primary-color);
    --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
    --bs-accordion-btn-icon: url('https://api.iconify.design/ion/caret-down.svg?color=%23d06051&width=30');
    --bs-accordion-btn-active-icon: url('https://api.iconify.design/ion/caret-down.svg?color=%23d06051&width=30');
    --bs-accordion-border-radius: 0px;
}

.accordion-header {
    margin-bottom: 0;
    border-top: 1px solid var(--primary-color);
}

.accordion-button {
    font-family: var(--heading-font);
    font-weight: var(--heading-font-weight);
    color: var(--heading-color);
    line-height: var(--heading-line-height);
    letter-spacing: 0.065rem;
    text-transform: uppercase;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--heading-color);
    background-color: transparent;
    box-shadow: none;
}

#mapid {
    width: 100%;
    height: 585px;
    position: relative;
    z-index: 1
}

#mapid-tall {
    width: 100%;
    height: 985px;
    position: relative;
    z-index: 1
}

.contentbox {
    background: #f9f9f9;
    /* Slightly lighter background for a softer look */
    -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    /* Reduced shadow intensity */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    /* Smoother shadow */
    padding: 24px;
    /* Slightly increased padding for better spacing */
    margin: 16px;
    /* Added margin to create space around the box */
    transition: box-shadow 0.3s ease-in-out;
    /* Smooth hover effect */
}

/*
.contentbox:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}Enhanced shadow on hover */

@media (min-width: 1400px) {
    .text-xl-left {
        text-align: left;
    }

    #mapid {
        width: 100%;
        height: auto;
        position: relative;
        z-index: 1;
        min-height: 420px;
    }


}

.blog-post img.blog-img {
    width: 100%;
}

@media (min-width: 1200px) {
    #mapid {
        max-height: 365px;
    }

    .blog-post img.blog-img {
        max-height: 360;
        object-fit: cover;
        width: 100%;
    }


}

@media (min-width: 1800px) and (max-width: 1920px){
        .img-multi-right img {
        min-height: 370px;
        object-fit: cover;
        width: auto;
    }
}

@media (min-width: 1500px) and (max-width: 1799.98px){
        .img-multi-right img {
        min-height: 455px;
        object-fit: cover;
        width: auto;
    }
}

@media (min-width: 1200px) and (max-width: 1499.98px){
        .img-multi-right img {
        min-height: 545px;
        object-fit: cover;
        width: auto;
    }
}

@media (min-width: 1400px) and (max-width: 1699.98px){
    .img-single-right img {
        height: 530px;
    width: auto;
    object-fit: cover;
    }

}


@media (min-width: 1500px) and (max-width: 1599.98px) {
 .rooms-holder {
        min-height: 585px;
    }
}


@media (min-width: 1400px) and (max-width: 1499.98px) {
 .rooms-holder {
        min-height: 568px;
    }
}


@media (min-width: 1300px) and (max-width: 1399.98px) {
 .rooms-holder {
        min-height: 615px;
    }
}

@media (min-width: 1200px) and (max-width: 1299.98px) {
 .rooms-holder {
        min-height: 605px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
 .rooms-holder {
        min-height: 575px;
    }
}



@media (min-width: 1200px) {
    #mapid {
        max-height: 420px;
    }

    .blog-post img.blog-img {
        min-height: 420px;
        max-height: 420px;
        object-fit: cover;
        width: 100%;

    }
}


@media (min-width: 1600px) {
    #mapid {
        min-height: 540px;
    }

    .blog-post img.blog-img {
        min-height: 540px;
        object-fit: cover;
        width: 100%;
    }

}

@media (min-width: 1920px) {

    #mapid {
        min-height: 600px;
    }

    .blog-post img.blog-img {
        max-height: 600px;
        object-fit: cover;
        width: 100%;
    }


}



@media only screen and (min-width:1200px) {

    .hamburger,
    .kebab-toggler,
    .social-menu {
        display: none
    }
}

@media only screen and (max-width:1600.98px) {
    #about-us .btn {
        padding-left: 1.3rem;
        padding-right: 1.3rem;
    }
}


@media only screen and (max-width:1440.98px) {
    .display-3 {
        font-size: 3rem;
    }

    .display-4 {
        font-size: 2.5rem;
    }

    .display-6 {
        font-size: 2rem;
    }
}


@media only screen and (max-width:1199.98px) {
    #primary-header {
        background-color: unset !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .slide-out-nav li:last-child a {
        background-color: #e9dfd5;
        padding: 16px 38px !important;
        border-radius: 10px;
    }

    .navbar-brand img {
        max-width: 280px;
        object-fit: contain;
        height: auto;
    }

    .hamburger {
        padding: 10px 15px;
        display: inline-block;
        cursor: pointer;
        transition-property: opacity, filter;
        transition-duration: .15s;
        transition-timing-function: linear;
        font: inherit;
        color: inherit;
        text-transform: none;
        background-color: transparent;
        border: 0;
        margin: 0;
        overflow: visible;
        position: absolute;
        top: 47%;
        right: 95px;
        z-index: 999;
        transform: translateY(-50%);
    }

    .hamburger-box {
        width: 32px;
        height: 21px;
        display: inline-block;
        position: relative
    }

    .hamburger-inner {
        display: block;
        top: 50%;
        margin-top: -1.5px
    }

    .hamburger-inner,
    .hamburger-inner::after,
    .hamburger-inner::before {
        width: 32px;
        height: 3px;
        background-color: #1a1a1a;
        border-radius: 4px;
        position: absolute;
        transition-property: transform;
        transition-duration: .15s;
        transition-timing-function: ease
    }

    .hamburger-inner::after,
    .hamburger-inner::before {
        content: "";
        display: block
    }

    .hamburger-inner::before {
        top: -9px
    }

    .hamburger-inner::after {
        bottom: -9px
    }

    .hamburger--collapse .hamburger-inner {
        top: auto;
        bottom: 0;
        transition-duration: .13s;
        transition-delay: .13s;
        transition-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    .hamburger--collapse .hamburger-inner::after {
        top: -18px;
        transition: top .2s cubic-bezier(.33333, .66667, .66667, 1) .2s, opacity .1s linear
    }

    .hamburger--collapse .hamburger-inner::before {
        transition: top .12s cubic-bezier(.33333, .66667, .66667, 1) .2s, transform .13s cubic-bezier(.55, .055, .675, .19)
    }

    .hamburger--collapse.is-active .hamburger-inner {
        transform: translate3d(0, -9px, 0) rotate(-45deg);
        transition-delay: .22s;
        transition-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    .hamburger--collapse.is-active .hamburger-inner::after {
        top: 0;
        opacity: 0;
        transition: top .2s cubic-bezier(.33333, 0, .66667, .33333), opacity .1s linear .22s
    }

    .hamburger--collapse.is-active .hamburger-inner::before {
        top: 0;
        transform: rotate(-90deg);
        transition: top .1s cubic-bezier(.33333, 0, .66667, .33333) .16s, transform .13s cubic-bezier(.215, .61, .355, 1) .25s
    }

    .slide-out-nav {
        position: fixed;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 20px;
        padding: 40px 0;
        background-color: #ffffff;
        z-index: 999;
        visibility: hidden;
        opacity: 0;
        border: 0;
        transform: translateY(100%) perspective(1px);
        transition: height .8s ease-in-out;
        overflow-y: scroll;
        border-radius: 0;
        text-align: center;
        display: block;
    }

    .slide-out-nav.nav-open {
        height: calc(100% - 124px);
        opacity: 1;
        transform: translateY(0) perspective(1px);
        visibility: visible;
        opacity: 1;
        margin-bottom: 0;
    }

    .slide-out-nav {
        width: 100%
    }

    .slide-out-nav li {
        display: block;
        text-align: center;
        margin: 0
    }

    .slide-out-nav li a {
        margin-right: 0 !important;
        display: inline-block;
        font-family: var(--heading-font);
        font-weight: var(--heading-font-weight);
        color: #353535;
        line-height: var(--heading-line-height);
    }

    .slide-out-nav li a.btn {
        color: #fff;
        padding: 12px 28px !important;
        margin-top: 8px;
    }

    .slide-out-nav li a.header-btn2 {
        margin-top: 20px
    }

    .slide-out-nav.fadeInDown {
        -webkit-animation-name: unset;
        animation-name: unset
    }

    .kebab-toggler {
        position: absolute;
        top: 50%;
        right: 30px;
        width: 50px;
        height: 52px;
        display: block;
        padding: 12px 10px;
        z-index: 99;
        transform: translateY(-65%);
    }

    .kebab-toggler.active .circleKebab circle {
        transition: .3s
    }

    .social-menu {
        color: #898375;
        background: #fafafa;
        display: none;
        text-align: center;
        z-index: 9;
        padding-top: 10px
    }

    .social-menu.menu-on {
        display: block;
        position: fixed;
        width: 100%;
        left: 0;
        top: 124px
    }

    .social-menu li {
        position: relative;
        padding: 10px 40px
    }

    .social-menu .social-links li {
        background-color: #fff;
    }

    .socmedia {
        margin-top: 15px;
        background-color: #e9dfd5;
        box-shadow: 0 0 10px 3px rgb(0 0 0 / 5%)
    }

    .socmedia .social-info {
        padding: 8px 15px;
    }

    .social-menu li .icon svg {
        color: #ECB27B;
    }

    .socmedia .social-info a {
        border-radius: 50%;
        width: 28px;
        height: 28px;
        line-height: 28px;
        text-align: center;
        display: inline-block;
        color: #ecb27b;
        position: relative;
        top: -2px;

    }

    .social-menu .contact-info {
        color: #3D3A38;
    }


    .social-menu .contact-info a,
    .social-menu .contact-info a:hover {
        color: #353535;
    }

    .socmedia .social-info a i {
        color: #fff;
    }


    .slide-out-nav .nav-item {
        display: block;
        width: 100%;
        padding: 15px;
    }

    .socmedia .social-links ul {
        margin-bottom: 0;
        margin-top: 0;
    }

    .display-3 {
        font-size: 2.6rem;
    }

    .display-4 {
        font-size: 2.1rem;
    }

    .display-6 {
        font-size: 1.6rem;
    }

    .btn {
        --bs-btn-padding-x: 1.4rem;
    }
}


@media (max-width: 1199.98px) {
    img.footer-logo {
        max-width: 280px;
        height: auto;
        object-fit: contain;
    }

    #mapid-tall {
        height: 768px;
    }
}

@media (max-width: 1023.98px) {
    .main-slider-button-prev {
        left: 15px;
    }

    .main-slider-button-next {
        right: 15px;
    }
}

@media (max-width: 767.98px) {
    #footer {
        text-align: center;
        margin-bottom: 42px !important;
    }

    .location-footer {
        text-align: center;
    }

    .location-footer ul li {
        margin-left: 0 !important;
        display: block !important;
    }

    .location-footer ul li svg {
        text-align: center;
        display: block;
        margin-left: auto;
        margin-right: auto !important;
        margin-bottom: 6px;
        margin-top: 6px;
    }

    #room .room-heading {
        width: 100%;
    }

    #room a.btn.btn-arrow {
        margin-right: auto;
        margin-left: auto;
    }

    .slide-out-nav.nav-open {
        height: calc(100% - 108px)
    }
    .social-menu.menu-on {
        top: 108px;
    }

    #mapid-tall {
        height: 768px;
    }
}

@media (max-width: 575.98px) {
    #mapid, #mapid-tall {
        height: 480px;
    }

    #about-us .btn {
        display: block !important;
        margin: 16px auto 0 !important;
        max-width: 280px;
    }

    .hamburger {
        right: 75px;
    }
}

@media (max-width: 480px) {
    #mapid, #mapid-tall {
        height: 420px;
    }

    .hamburger {
        right: 55px;
    }

    .kebab-toggler {
        right: 0px;
    }

    .navbar-brand img {
        max-width: 220px;
    }

    .slide-out-nav.nav-open {
        height: calc(100% - 91px);
    }

    .social-menu.menu-on {
        top: 91px;
    }
}

@media (max-width: 414.98px) {
    #mapid, #mapid-tall {
        height: 360px;
    }

    .hamburger {
        right: 45px;
    }
}



@media (max-width: 360.98px) {
    .navbar-brand img {
        max-width: 180px;
    }

    .slide-out-nav.nav-open {
        height: calc(100% - 81px);
    }

    .social-menu.menu-on {
        top: 81px;
    }
}
