:root {
    /* Fonts */
    --font-primary: "Nunito", sans-serif;
    --font-old: "Old Standard TT", serif;

    /*Colors */
    --black: #000000;
    --white: #ffffff;
    --primary: #CD7C03;
    /* #244AB4,#00349B */
    --secondary: #626262;
    --sky-blue: #F9F7F4;

}



/* Default styles start */

*,
*:before,
*:after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;

}

body {
    font-family: var(--font-primary);
    line-height: 1.25;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 500;
    margin: 0;
}

p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
    padding: 0;
    color: var(--secondary);
}


/* heading */
.h1,
h1 {
    font-size: 80px;
}

.h2,
h2 {
    font-size: 42px;
}

h3,
.h3 {
    font-size: 30px;
}

h4,
.h4 {
    font-size: 24px;
}

.h4-small {
    font-size: 22px;
}

h5,
.h5 {
    font-size: 20px;
}

h6,
.h6 {
    font-size: 18px;
}

.p {
    font-size: 16px;
}

.p-small {
    font-size: 14px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin-bottom: 0;
}

/* Pseudo default styles start */

::placeholder {
    color: #787878 !important;
    opacity: 1;
}

::-webkit-input-placeholder {
    color: #787878 !important;
}

:-ms-input-placeholder {
    color: #787878 !important;
}

::-ms-input-placeholder {
    color: #787878 !important;
}

*::-moz-selection {
    background: var(--primary);
    color: white;
}

*::selection {
    background: var(--primary);
    color: white;
}

*::-moz-selection {
    background: var(--primary);
    color: white;
}

*::-webkit-selection {
    background: var(--primary);
    color: white;
}

/* Pseudo default styles end */

.font-primary {
    font-family: var(--font-primary);
}

.font-old {
    font-family: var(--font-old);
}



/* COLORS */
.bg-black-color {
    background-color: var(--black);
}

.bg-white-color {
    background-color: var(--white);
}

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

.bg-secondary-color {
    background-color: var(--secondary);
}

.bg-skyblue-color {
    background-color: var(--sky-blue);
}

.color-black {
    color: var(--black);
}

.color-white {
    color: var(--white);
}

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

.color-secondary {
    color: var(--secondary);
}

.color-skyblue {
    color: var(--sky-blue);
}

/* COLORS */

/* font weight */
.fw-700 {
    font-weight: 700;
}

.fw-600 {
    font-weight: 600;
}

.fw-500 {
    font-weight: 500;
}

.fw-400 {
    font-weight: 400;
}

.fw-300 {
    font-weight: 300;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-auto-0 {
    flex: 0 0 auto;
}

img {
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: var(--primary);
}

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

/* Button Css Start */

.prime-btn {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-primary);
    line-height: 1;
    letter-spacing: 0.5px;
    background-color: var(--primary);
    border: 0px;
    color: var(--white);
    border-radius: 2px;
    padding: 20px 33px;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none;
    box-shadow: none;
}

.prime-btn:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scale(0.2, 1);
    transform: scale(0.2, 1);
    background-color: rgb(21, 21, 22);
}

.prime-btn:after {
    position: absolute;
    content: '';
    right: 6px;
    top: 0px;
    bottom: 0px;
    width: 4px;
    z-index: 1;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    background-color: #000000;
}

.prime-btn .txt {
    position: relative;
    z-index: 1;
    display: block;
}

.prime-btn .txt svg {
    font-size: 18px;
}


.prime-btn:hover {
    color: white;
}

.prime-btn:hover::before {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.prime-btn:hover::after {
    background-color: var(--primary);
}

.btn-check:focus+.btn,
.btn:focus {
    box-shadow: none;
}

button,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
    outline: none !important;
}


/* Button Css End */

.sec-spacing {
    padding: 120px 0;
}

.text-upper {
    text-transform: uppercase;
}

.text-decoration {
    text-decoration: underline;
}

.spinner-wrapper {
    width: 100%;
    height: 100%;
    background-color: #f8f6f6;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    position: relative;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
}

.spinner::before,
.spinner:after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.spinner:before {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, #3b0000 0%, #BC8C33 100%);
    animation: spin .5s infinite linear;
}

.spinner:after {
    width: 90%;
    height: 90%;
    background-color: #f3f0f0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Default styles end */


/* ---- Index Page Style start ---- */


/* Header styles start */
header {
    width: 100%;
    left: 0;
    right: 0;
}

.header-top {
    width: 100%;
    display: flex;
    align-items: center;
    background-color: var(--black);
    color: var(--white);
    padding: 8px 200px;

}

.header-top a,
.head-top-add {
    color: var(--white);
    font-size: 15px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* .header-top a {
    margin-right: 30px;
} */
.header-top span {
    width: 1px;
    height: 18px;
    background: var(--white);
    margin: 0 30px;
}

.ht-icons {
    width: 34px;
    height: 34px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, 0.13);
    padding: 6px;
    margin-right: 12px;
}

.ht-icons svg {
    font-size: 16px;
    color: var(--primary);
    transition: all 0.9s ease;
}

.header-top a:hover .ht-icons svg,
.head-top-add:hover .ht-icons svg {
    transform: rotateY(360deg);
    transition: all 0.9s ease;
}

.navbar {
    position: absolute;
    width: 100%;
    padding: 4px 200px;
    z-index: 222;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    background-color: rgba(0, 0, 0, 0.8);
    margin-top: -1px;

}


.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.50s ease;
    /* background-color: var(--white); */
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06);

}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar-brand {
    width: 110px;
    height: 110px;
    padding: 0;
    margin: 0;
    /* z-index: 111; */
}

.navbar-brand img {
    width: inherit;
    height: inherit;
    object-fit: contain;
}

.nav-item {
    width: max-content;
}

.nav-link {
    text-transform: uppercase;
    position: relative;
    padding: 0;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    width: max-content;
    color: white;
    margin-right: 50px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}


.nav-link:hover,
.nav-link:focus,
.nav-item.active .nav-link {
    color: var(--primary);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}


.nav-link:hover:after,
.nav-link:focus:after,
.nav-item.active .nav-link:after {
    width: 60%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.navbar-nav {
    margin-left: auto;
    /* margin-right: auto; */
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 0;
    padding-right: 0;
}

.nav-item:last-child .nav-link {
    margin-right: 60px;
}

/* Header styles end */


/* Hero styles Start */
.hero-wrapper {
    position: relative;
}

.hero-banner,
.page-hero-banner,
.booking-res,
.booking-ada-wrap,
.footer {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 840px;
}

.hero-banner::before,
.page-hero-banner::before,
.booking-res::before,
.footer::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #000000;
    /* background-image: linear-gradient(to right, black, rgba(0, 0, 0, 0.5)); */
    opacity: .2;
}
.page-hero-banner::before{
    opacity: 0.2;
}
.hero-banner.hero-one {
    background-image: url('../images/hero-bg-img/hero-index-one.jpg');
}

.hero-banner.hero-two {
    background-image: url('../images/hero-bg-img/hero-index-two.jpg');
}

.hero-banner.hero-three {
    background-image: url('../images/hero-bg-img/hero-index-three.jpg');
}

/* Hero section of all page start */
.page-hero-banner {
    min-height: 650px;
}


.hero-service {
    background-image: url('../images/hero-bg-img/hero-service.jpg');
}

.hero-gallery {
    background-image: url('../images/hero-bg-img/hero-gallery.jpg');
}

.hero-contact {
    background-image: url('../images/hero-bg-img/hero-contact.jpg');
}

.hero-ada {
    background-image: url('../images/hero-bg-img/hero-ada.jpg');
}

.hero-attraction {
    background-image: url('../images/hero-bg-img/hero-attraction.jpg');
}

/* Hero section of all page end */

/* hero-content of all page start */
.page-hero-content {
    z-index: 11;
    position: absolute;
    bottom: 15%;
    left: 15%;
    text-align: left;
}

.page-hero-content h1 {
    font-size: 56px;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.sec-page-title {
    font-size: 36px;
    letter-spacing: 0px;
    margin-bottom: 50px;
}

/* hero-content of all page end */


/* breadcrumb style Start */
.breadcrumb-item {
    font-size: 16px;
}

.breadcrumb-item a {
    color: var(--white);
    transition: 0.3s;
    text-shadow: 1px 1px 2px #000000;
}

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

.breadcrumb-item.active,
.breadcrumb-item+.breadcrumb-item::before {
    color: #dfdede;
}


/* breadcrumb style end */


/* Back to top button */
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 5%;
    bottom: 5%;
    z-index: 9999;
    background: var(--primary);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #ff9c07;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/* Hero styles end */
.hero-text-wrapper {
    width: 100%;
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 111;
}

.hero-text {
    width: 100%;

}

.hero-text h4 {
    font-size: 20px;
    font-style: italic;
    letter-spacing: 6px;
    margin-bottom: 20px;
    line-height: 1;
}

.hero-text h1 {
    text-transform: capitalize;
    line-height: 90px;
}

.book-info-wrap {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: rotate(-90deg) translateY(-50%);
    z-index: 111;
}

.book-info-icon-wrap {
    width: 72px;
    height: 72px;
    border: 1px solid white;
    border-radius: 100%;
    flex: 0 0 auto;
    margin-right: 10px;
}

.book-info-content-wrap p {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.book-info-content-wrap a {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 1px;
    color: white;
    transition: all ease-in-out 0.3s;
}

.book-info-content-wrap a:hover {
    color: var(--primary);
}

/* owl dots start */
.owl-theme .owl-nav.disabled+.owl-dots {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;

}

.owl-carousel button.owl-dot {
    width: 28px;
    height: 8px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 5px;


}

.owl-theme .owl-dots .owl-dot span {
    display: none;
}

.owl-carousel button.owl-dot.active {
    width: 36px;
    height: 10px;
    background: var(--primary);
}


/* owl dots end */

/* About Section start */

.sec-title {
    margin-bottom: 55px;
}

.sec-title h6 {
    font-size: 20px;
    margin-bottom: 14px;
    line-height: 27px;
    letter-spacing: 2px;
}

.sec-title h2 {
    line-height: 48px;
}

.about .sec-title {
    margin-bottom: 30px;
}

.about-content-wrap p {
    text-transform: capitalize;
    font-size: 16px;
    line-height: 32px;
    color: #626262;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    padding-right: 80px;
}

.about-info-wrap {
    margin-top: 50px;
}

.check-in-check-out-wrap {
    margin-right: 50px;
}

.calender-icon {
    width: 56px;
    height: 56px;
    margin-right: 12px;
    flex: 0 0 auto;
}

.calender-icon img {
    width: inherit;
    height: inherit;
    object-fit: contain;
}

.check-in-check-out-wrap span {
    font-size: 16px;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: 0.2px;
}

.about .prime-btn {
    border: 1px solid var(--primary);
}

.about .prime-btn:hover {
    color: var(--primary);
}

.about .prime-btn:after,
.about .prime-btn:before {
    background-color: var(--white);
}


.about-image-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.about-image-wrap img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    transition: all ease-in-out 0.3s;
}

.about-image-wrap:hover img {
    transform: scale(1.08);
}

.about-content-wrap {
    padding: 60px 0;
}



/* About Section end */

/*Booking reservation section  Start */
.booking-res {
    background-image: url('../images/sec-bg-img/booking-res.jpg');
    min-height: auto;
}

.booking-res::before {
    opacity: 0.65;
}

.booking-res.sec-spacing {
    padding: 80px 0;
}


/* Booking Form */
.web-res-form {
    padding: 50px 50px 50px 60px;
    background-color: var(--white);
    border-radius: 4px;
    z-index: 111;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.web-res-form::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 10px;
    height: 100%;
    background: var(--primary);
}

.web-res-form h2 {
    margin-bottom: 30px;
    letter-spacing: -1px;
}

/* .form-group {
    margin-bottom: 24px;
    } */

.web-res-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
    width: 100%;

}

.form-label {
    font-size: 20px;
    font-weight: 400;
    color: #010101;
    margin-bottom: 10px;
    line-height: 26px;
}

.form-control {
    font-size: 16px;
    width: 100%;
    height: 50px;
    border: 1px solid transparent;
    border-radius: 0px;
    background-color: #F2F0EF;
    font-weight: 400;
    line-height: 1;
    color: var(--black);
    padding: 10px 20px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.form-control:focus {
    border: 1px solid #E5E5E5;
    outline: 0;
    box-shadow: none;
}

.input-group {
    position: relative;
}

.input-icon {
    font-size: 16px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #787878;
}

.web-res-form .prime-btn {
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1;
    background-color: var(--primary);
    margin-top: 40px;
    border: 1px solid var(--primary);
}

.web-res-form .prime-btn:hover {
    color: var(--primary);
}

.web-res-form .prime-btn:after {
    background-color: white;
}

.web-res-form .prime-btn:hover::before {
    background-color: white;

}

.ui-widget-header {
    border: 1px solid var(--primary) !important;
    background: var(--primary) !important;
    color: #fff;
    font-weight: bold;
}


.ui-widget.ui-widget-content {
    z-index: 111 !important;
}

.booking-ada-wrap {
    position: relative;
    z-index: 111;
    background-image: url('../images/icons/book-ada-bg.png');
    width: 240px;
    height: 240px;
    min-height: auto;
}

.booking-ada-wrap:hover img {
    transform: rotateY(360deg);
    transition: all 0.9s ease;
}

/*Booking reservation section End*/


/* Exclusive Offers section Start */
.exclusive-offer-image-wrap {
    position: relative;
    width: 100%;
    height: 212px;
    overflow: hidden;
}


.exclusive-offer-image-wrap img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    transition: all ease-in-out 0.3s;
}

.exclusive-offer-image-wrap:hover img,
.exclusive-offer-wrap:hover img {
    transform: scale(1.08);
}

.exclusive-offer-content-wrap {
    height: 300px;
    position: relative;
    padding: 75px 25px 38px 25px;
    border-bottom: 3px solid var(--primary);
    box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.15);
}

.ex-offer-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -50px;
    width: 100px;
    height: 100px;
    padding: 30px;
    border-radius: 100%;
    background-color: var(--primary);
    border: 1px solid var(--white);
    box-shadow: 0px 2px 10px 0px rgba(205, 124, 3, 0.30);

}

.ex-offer-icon:hover img,
.exclusive-offer-wrap:hover .ex-offer-icon img {
    transform: rotateY(360deg);
    transition: all 0.9s ease;
}


.exclusive-offer-content-wrap h3 {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 18px;
}

.exclusive-offer-content-wrap p {
    text-transform: capitalize;
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 22px;
    color: #787878;
}

.exclusive-offer-content-wrap a {
    font-size: 12px;
    letter-spacing: 2px;
    color: #000000;
}

.read-more-arrow {
    width: 16px;
    height: 16px;
    border-radius: 100%;
    background-color: var(--primary);
    margin-left: 8px;
    color: var(--white);
}

.read-more-arrow svg {
    font-size: 9px;
}

/* Exclusive Offers section End */


/* Service Amenities section Start*/

.service-amenities-wrapper {
    border-radius: 50px;
    padding: 70px 56px;
    margin: 0 100px;

}

.service-amenities-wrapper h2 {
    margin-bottom: 30px;
}

.service-amenities-grid-wrap {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.service-amenities-grid-item {
    height: 172px;
    background-color: var(--primary);
    border-radius: 10px;
    padding: 30px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-amenities-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.service-amenities-icon img {
    width: inherit;
    height: inherit;
    object-fit: contain;
}

.service-amenities-grid-item:hover img {
    transform: rotateY(360deg);
    transition: all 0.9s ease;
}

.service-amenities-grid-item h6 {
    text-align: center;
    font-size: 20px;
    color: var(--white);
    line-height: 1.5;

}

.service-amenities-wrapper .prime-btn {
    margin-top: 60px;
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.service-amenities-wrapper .prime-btn::after {
    background-color: var(--primary);
}

.service-amenities-wrapper .prime-btn:before {
    background-color: var(--primary);
}

.service-amenities-wrapper .prime-btn:hover {
    color: var(--white);
}

.service-amenities-wrapper .prime-btn:hover::after {
    background-color: var(--white);
}

/* Service Amenities section End */


/* OUR Rooms section Start */

.our-room-slider-item {
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}

.our-room-slider-img {
    width: 100%;
    height: 420px;
    overflow: hidden;
    position: relative;
}

.our-room-slider-img::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 96%;
    height: 96%;
    z-index: 111;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);

}

.room-book {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 100%;
    color: white;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 1px;
    background-color: rgba(0, 0, 0, 0.3);
}

.our-room-slider-img img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    transition: all 0.3s;
}


.our-room-slider-img:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}



.our-room-slider-content {
    height: 230px;
    position: relative;
    padding: 30px;
    background-color: var(--white);
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    box-shadow: 0px 2px 10px 4px rgba(0, 0, 0, 0.07);
}

.our-room-slider-content h4 {
    font-size: 26px;
    line-height: 38px;
    margin-bottom: 20px;
}

.our-room-slider-content p {
    color: #787878;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 24px;
}

.icons-wrap svg {
    width: 20px;
    height: 20px;
    margin-right: 30px;
    flex: 0 0 auto;
    color: var(--primary);
}

.our-room-slider .owl-stage-outer {
    padding-bottom: 80px;
}


/* owl dots start */
.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 0;
}

.our-room-slider .owl-theme .owl-nav.disabled+.owl-dots {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}


.our-room-slider .owl-carousel button.owl-dot {
    width: 28px;
    height: 8px;
    border-radius: 50px;
    background: rgb(201 201 201 / 60%);
    border: none;
    margin: 0px 6px;


}

.our-room-slider .owl-theme .owl-dots .owl-dot span {
    display: none;
}

.our-room-slider .owl-carousel button.owl-dot.active {
    width: 37px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* owl dots end */
/* OUR Rooms section end */



/* Gallery section Start */

.photo-gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    padding: 0 15px;
    margin: 0 auto;
}

.photo-gallery-wrap {
    box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 7%);
    background: var(--white);
    display: block;
    height: 100%;
}

.photo-gallery-image {
    height: 330px;
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
}

.photo-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all ease-in-out 0.4s;
}

.photo-gallery-image:hover img {
    transform: scale(1.08);
}

.photo-gallery-overlay {
    position: absolute;
    background-color: rgb(0 0 0 / 50%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
}

.photo-gallery-image:hover .photo-gallery-overlay {
    opacity: 1;
}

.search-icon {
    width: 30px;
    width: 30px;
    color: var(--white);
}

.search-icon svg {
    width: inherit;
    height: inherit;
    object-fit: contain;
}

.gallery .prime-btn {
    margin-top: 70px;
    border: 1px solid var(--primary);
}

.gallery .prime-btn:after {
    background-color: var(--white);
}

.gallery .prime-btn:hover {
    color: var(--primary);
}

.gallery .prime-btn:before {
    background-color: var(--white);
}

/* Gallery section End */



/* Feedback Testimonial section start*/

.feedback .sec-title {
    margin-bottom: 50px;
}

.feedback-slider {
    max-width: 1436px;
    margin: 0 auto;
    padding: 70px 80px;
    border-radius: 30px;
}

.star-wrap {
    margin-bottom: 16px;
}

.star-icon {
    display: inline-flex !important;
    width: 14px !important;
    height: 14px;
    margin-right: 6px;
}

.feedback-slider-top-wrap {
    position: relative;
    padding: 60px 50px;
    height: 340px;
}

.feedback-slider-top-wrap::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 340px;
    background: url('../images/sec-bg-img/feedback.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    left: 0;

}

.feedback-content-wrap {
    position: relative;
    z-index: 111;
}

.feedback-slider-bottom-wrap {
    margin-left: 20px;
    margin-top: 10px;
}

.feedback-slider-icon {
    width: 80px;
    height: 80px;
    margin-right: 16px;
    /* box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.30); */

}

.feedback-slider-icon img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

.feedback-name {
    text-transform: capitalize;
    font-size: 18px;
    line-height: 1;
    color: #1c1c1c;
}

.feedback-content {
    text-transform: capitalize;
    font-size: 16px;
    color: #787878;
    line-height: 30px;
    font-weight: 400;
    text-align: justify;

}

/* Feedback Testimonial section end */



/* Footer start */
.footer {
    background-image: url("../images/sec-bg-img/footer-bg.jpg");
    min-height: auto;
}

.footer::before {
    background: #000000;
    opacity: .9;
}

footer.sec-spacing {
    padding: 100px 0 0;
}

.footer-grid-item {
    margin-bottom: 60px;
    z-index: 111;
    position: relative;
}

.ft-logo {
    width: 110px;
    height: 110px;
    margin-bottom: 32px;
}

.ft-logo img {
    width: inherit;
    height: inherit;
    object-fit: contain;
}

.footer-grid-item p {
    font-size: 16px;
    line-height: 36px;
    margin-bottom: 36px;
    width: 500px;
    text-transform: capitalize;
    text-align: justify;
    letter-spacing: 0.5px;
}

/* .ft-ada-link {
    position: relative;
    display: block;
    max-width: max-content;
}

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

.ft-ada-link::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 80%;
    height: 1px;
    background: var(--primary);

} */

.footer-grid-item h3 {
    font-size: 34px;
    padding: 75px 0 30px 0;
}

.footer-link-wrapper {
    padding-left: 80px;
}

.footer-link {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 28px;
    transition: all ease-in-out 0.5s;
}


.footer-link:hover,
.footer-add a:hover {
    color: var(--primary);
}

.ft-add {
    line-height: 2;
}

.footer-add a {
    line-height: 1;
}

.ft-add,
.footer-add a {
    font-size: 16px;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
    transition: all ease-in-out 0.5s;
    word-wrap: break-word;
}

.ft-add svg,
.footer-add a svg {
    color: var(--primary);
    transition: all ease-in-out 0.4s;
}

.footer-bottom-wrap {
    z-index: 111;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding: 30px 10px;

}

.footer-bottom-wrap p {
    font-size: 16px;
    letter-spacing: 0.5px;
}

/* Footer end */

/* Service Page start */
.service-page .service-amenities-grid-wrap {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.service-page .service-amenities-grid-item {
    height: 180px;
    border-radius: 0;
    background: transparent;
    border-bottom: 3px solid var(--primary);
    background-color: #f9f7f4;
}

.service-page .service-amenities-grid-item:nth-child(9) {
    grid-column: 1 / span 2;
}

.service-page .service-amenities-grid-item:nth-child(10) {
    grid-column: 3 / span 2;
}

.service-page .service-amenities-grid-item h6 {
    color: var(--primary);
}

/* Service Page end */

/* //-- Photo-gallery page Style start --// */
.gallery-page .photo-gallery-page-wrapper .nav-pills {
    margin-bottom: 30px;
}

.gallery-page .photo-gallery-page-wrapper .nav-pills .nav-link {
    padding: 10px 16px;
    font-size: 16px;
    margin-right: 20px;
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 0px;
    text-transform: capitalize;
    margin-bottom: 0;
}

.gallery-page .photo-gallery-page-wrapper .nav-link:after {
    display: none;
}

.gallery-page .photo-gallery-page-wrapper .nav-pills .nav-link.active,
.gallery-page .photo-gallery-page-wrapper .nav-pills .show>.nav-link {
    color: #fff;
    background-color: var(--primary);
}

button:focus-visible {
    outline: none;
}

.gallery-page .photo-gallery-image {
    height: 360px;
    margin-bottom: 0;
    overflow: hidden;
    position: relative;
    display: block;
    border-radius: 8px;
}

/* //-- Photo-gallery page Style end --// */


/* ---- Contact-us page start---- */

.contact-page.sec-spacing {
    padding: 120px 0 80px 0;
}

.info-wrapper-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;

}

.info-wrapper {
    padding: 40px 20px;
    background-color: var(--sky-blue);
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

.info-wrapper svg {
    color: var(--primary);
    font-size: 34px;
    margin-bottom: 30px;
}

.info-wrapper h5 {
    margin-bottom: 20px;
}

.info-wrapper p,
.info-wrapper a {
    font-size: 16px;
    line-height: 1.5;
    word-break: break-word;
    letter-spacing: 0.5px;

}

.contact-us-iframe {
    width: 100%;
    height: 450px;
}

/* ---- Contact-us page end---- */


/* ADA Feature start*/

.ada-feature-wrap {
    background: var(--sky-blue);
    border-bottom: 1px solid var(--primary);
    border-top: 10px solid var(--primary);
    padding: 0 30px 30px;
    text-align: left;
    margin-bottom: 50px;
}

.ada-feature-wrap h3 {
    margin: 30px 0;
}

.ada-feature-item {
    font-size: 18px;
    line-height: 1.5;
    display: flex;
    align-items: center;

}

.ada-feature-item:not(:last-child) {
    margin-bottom: 28px;

}

.ada-feature-note {
    max-width: 1200px;
    line-height: 1.5;
    letter-spacing: 1px;
}

/* ADA Feature end*/



/* -- // Local Attraction Page Styles End // -- */
.hotel-surrounding-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 40px;
}

.hotel-surrounding-wrap {
    display: flex;
    flex-direction: column;
    /* border: 1px solid #cac8c8; */
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0px 2px 12px 0px rgba(190, 0, 0, 0.2); */
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.hotel-surrounding-image {
    position: relative;
    width: 100%;
    height: 360px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.hotel-surrounding-image img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.hotel-surrounding-image img:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.hotel-surrounding-title {
    margin-bottom: 20px;
    padding: 0 30px;

}

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

.hotel-surrounding-content {
    padding: 0 30px 30px;
}

.item-list {
    margin-bottom: 10px;
}

.item-list p {
    font-size: 16px;
    line-height: 2.2;
}

/* -- // Local Attraction Page Styles End // -- */