:root {
    /* Fonts */
    --font-primary: "Barlow", sans-serif;
    --font-ebg: "EB Garamond", serif;

    /*Colors */
    --black: #122223;
    --white: #ffffff;
    --primary: #D96704;
    /* #244AB4,#00349B */
    --secondary: #666666;
    --sky-blue: #F8F5F0;

}


/* 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;
    padding: 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: 90px;
}

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

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: #ffffff !important;
    opacity: 1;
}

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

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

::-ms-input-placeholder {
    color: #ffffff !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-ebg {
    font-family: var(--font-ebg);
}



/* 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 {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font-primary);
    line-height: 1;
    background-color: var(--primary);
    /* letter-spacing: 1px; */
    color: var(--white);
    border: 1px solid transparent;
    border-radius: 0;
    padding: 18px 26px;
    /* width: 152px;
    height: 52px; */
    position: relative;
    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:hover,
.prime-btn:focus,
.prime-btn:active,
.prime-btn:focus-visible {
    box-shadow: none;
    outline: none;
    color: var(--white);
}

.prime-btn:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--black);
    transition: all 0.3s;
    z-index: -1;
}


.prime-btn:hover {
    color: #fff;
    background-color: var(--black);
}

.prime-btn:hover:before {
    width: 100%;
    background-color: var(--black);

}

/* 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 */

/* .main-wrapper {
    width: 100%;
} */

header {
    width: 100%;
    z-index: 1111;
    background: var(--white);

}

.header-top {
    width: 100%;
    display: flex;
    align-items: center;
    background-color: var(--primary);
    padding: 0 150px;


}

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

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

.h-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.22);
    margin: 0 50px;
}

.hv-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);

}

.header-top svg {
    font-size: 16px;
    color: var(--white);
    margin-right: 10px;
}


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

.navbar {
    padding: 0px;
    z-index: 222;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    padding: 2px 150px;

}


.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.50s ease;
    /* background: rgba(0, 0, 0, 0.8); */
    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: 116px;
    height: 116px;
    padding: 0;
    margin: 0;
    z-index: 111;
    position: relative;
}

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

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

.nav-link {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.2px;
    font-family: var(--font-primary);
    text-transform: uppercase;
    position: relative;
    padding: 0;
    width: max-content;
    max-width: max-content;
    color: #222222;
    margin-right: 60px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;

}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 0%;
    height: 1px;
    background: var(--primary);
}

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


.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;
}

.h-div {
    width: 1px;
    height: 22px;
    background: rgba(255, 255, 255, 0.20);
    margin: 0 16px;
}


/* Header styles end */


/* Sidebar style start */

.slide-menu {
    cursor: pointer;
    margin: 0 60px;
}

.sidenav {
    height: 100vh;
    width: 0;
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8392156862745098);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 70px;
    overflow: hidden;
}

.sidenav .closebtn {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 36px;
    color: white;
    font-size: 40px;
}

.sidenav-wrapper {
    overflow-y: auto;
    height: 100%;
    padding: 20px 30px;
}

.sidenav-wrapper .navbar-brand {
    width: 120px;
    height: 104px;
    margin-bottom: 30px;
}

.sidenav-wrapper p.text {
    font-size: 14px;
    line-height: 2;
    /* letter-spacing: 0.5px; */
}

.sidenav-wrapper p.sidebar-amenities {
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 10px;
}

.sidenav-wrapper h4 {
    font-size: 20px;
    letter-spacing: 0.5px;
    margin: 40px 0 20px 0;
}

.sidebar-contact-wrap-item {
    position: relative;
    display: flex;
}

.sidebar-contact-wrap-item .icon {
    color: var(--primary);
    margin-right: 16px;
    font-size: 26px;
}

.sidebar-contact-wrap-item span {
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 2;
}

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

.hero-banner,
.page-hero-banner,
.service,
.book-now-wrapper,
.footer {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 750px;
}

.hero-banner::before,
.page-hero-banner::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: .4;
}

.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-banner.hero-four {
    background-image: url('../images/hero-bg-img/hero-index-four.jpg');
}

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


.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: 16%;
    text-align: left;
}

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

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

/* hero-content of all page end */


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

.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: #ff8318;
    color: #fff;
}

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

/* Hero styles end */
.hero-text-wrapper {
    position: absolute;
    top: 60%;
    left: 16%;
    transform: translateY(-50%);
    z-index: 111;
}

.hero-text {
    width: 100%;

}

.hero-text h3 {
    font-size: 26px;
    letter-spacing: 8px;
    margin-bottom: 10px;
    line-height: 1;
}

.hero-text h1 {
    text-transform: capitalize;
    line-height: 130px;
    max-width: 900px;
    letter-spacing: 0.5px;
}


/* owl dots/Arrow start */
.owl-theme .owl-dots {
    position: absolute;
    top: 50%;
    right: 90px;
    transform: translateY(-50%);
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.owl-carousel button.owl-dot {
    width: 18px;
    height: 18px;
    border-radius: 50px;
    background: white;
    flex: 0 0 auto;
    border: 0;
    margin-bottom: 12px;
}

.owl-carousel button.owl-dot:last-child {
    margin-bottom: 0;
}

.owl-theme .owl-dots .owl-dot span {
    width: 0;
    height: 0;
    margin: 0;
}

.owl-carousel button.owl-dot.active {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-theme .owl-dots .owl-dot.active span {
    width: 20px;
    height: 20px;
    background-color: var(--primary);
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    right: 109px;
    transform: rotate(90deg) translateY(-50%);
    margin-top: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 36px;
    transition: all ease-in-out 0.3s;
    width: max-content;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent;
    color: var(--primary);
    text-decoration: none;
}

.owl-theme .owl-nav {
    margin-top: 0;

}

.owl-carousel .owl-nav button.owl-prev {
    top: 40%;
}

.owl-carousel .owl-nav button.owl-next {
    top: 55%;
}


/* owl dots end */


/* booking-form start */
.booking-form {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10%;
    z-index: 111;
    width: 100%;
}

.booking-form-grid-wrap {
    background-color: #1E1E1E;
    border-top: 6px solid var(--primary);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 50px;
    padding: 40px;
}

.booking-form-grid-item {
    position: relative;
}

/* .booking-form-grid-item:not(:last-child) {
    padding: 38px 32px;
} */


.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-label {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 18px;
    color: var(--white);
}

.form-control-res {
    position: relative;
}

.form-control {
    font-family: var(--font-primary);
    background-color: transparent;
    color: white;
    border: none;
    border-radius: 0;
    font-size: 20px;
    font-weight: 400;
    padding: 0px;
}

.form-control:focus {
    background-color: transparent;
    color: white;
}



select.form-control option {
    color: #000 !important;
    padding: 4px 10px !important;
}

select {
    padding: 0px 10px !important;
}

.input-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    width: 20px;
    height: 20px;
}

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

.form-control:focus {
    outline: 0;
    box-shadow: none;
    border: none;
}

.booking-form .prime-btn {
    width: 100%;
    height: 56px;
    background-color: var(--primary);
    color: white;
}

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



.ui-widget-content {
    z-index: 11111 !important;
    position: relative;
}

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

.ui-widget-header a {
    color: var(--black) !important;
}

/* booking-form end */

/* About Section Start */
.about {
    position: relative;
    overflow: hidden;
}

.about::before,
.about::after {
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    bottom: 0;

}

.about::before {
    left: -6%;
    background-image: url('../images/abt-1.png');
    width: 450px;
    height: 450px;
}

.about::after {
    right: -8%;
    background-image: url('../images/abt-2.png');
    width: 408px;
    height: 408px;
}

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

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

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

.sec-title h6 {
    font-size: 16px;
    color: #666;
    letter-spacing: 8px;
    line-height: 1;
    margin-bottom: 12px;

}

.about-content-wrap {
    padding-left: 20px;
}

.about-content-wrap p {
    font-size: 17px;
    color: #666;
    line-height: 34px;
    text-transform: capitalize;
    text-align: justify;
    margin-bottom: 40px;
}

.about-bottom .prime-btn {
    padding: 18px 20px;
    font-size: 16px;
    letter-spacing: 0px;
    margin-right: 50px;
}

.abt-book-now img {
    width: 40px;
    height: 40px;
    margin-right: 20px;
}

.abt-book-now span {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 8px;
    line-height: 1;
    color: #727272;
    letter-spacing: 0.2px;
}

.abt-book-now a {
    font-size: 20px;
    color: #222;
    line-height: 24px;
    transition: all ease-in-out 0.5s;
}

.abt-book-now a:hover {
    color: var(--primary);
}

/* .about-img-wrap {
    width: 100%;
    height: 610px;
} */

.about-img-wrap {
    width: 100%;
    height: 610px;
    position: relative;
    padding-left: 40px;
    padding-right: 40px;
}

.about-img-wrap::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50px;
    width: 40px;
    height: 460px;
    background-color: var(--primary);
}

.about-img-wrap::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 50px;
    width: 40px;
    height: 460px;
    background-color: #EAEAEA;
}

.about-img-wrap img,
.about .owl-carousel .owl-item img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

.about .owl-carousel,
.about .owl-carousel .owl-stage-outer,
.about .owl-carousel .owl-stage,
.about .owl-carousel .owl-item {
    height: 100%;
}

.about .owl-theme .owl-dots {
    top: 92%;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    flex-direction: row;
}

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

.about .owl-carousel button.owl-dot {
    width: 16px;
    height: 16px;
    margin: 0 4px;
    background-color: rgba(255, 255, 255, 0.8);
}

.owl-carousel button.owl-dot.active {
    width: 22px;
    height: 22px;
    background-color: var(--primary);

}

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

/* About Section End */

/* Service Amenities section Start */
.service {
    background-image: url('../images/sec-bg-img/service-amenities.png');
    min-height: auto;
}

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

.service-amenities-grid-item {
    background-color: var(--white);
    border-radius: 6px;
    padding: 40px;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.10);
}

.sa-icon {
    width: 75px;
    height: 75px;
    margin-right: 30px;
}

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

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

.sa-top h3 {
    color: #222;
    line-height: 30px;
}

.service-amenities-grid-item p {
    font-size: 18px;
    line-height: 32px;
    color: #787878;
    text-transform: capitalize;
    margin-top: 20px;
}

.service .prime-btn {
    margin-top: 70px;
    letter-spacing: 0;
    padding: 16px 34px;
}

/* Service Amenities section End */

/* Our Rooms section Start */
.our-rooms-slider {
    margin: 0 160px;
}

.rooms-wrapper {
    width: 100%;
}

.rooms-image-wrap {
    float: inline-end;
    width: 570px;
    height: 596px;
    overflow: hidden;
}

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

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


.rooms-content-wrap {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.rooms-content-inner {
    background-color: #F8F5F0;
    padding: 60px 50px 50px;
    z-index: 111;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.10);
    width: 372px;
    position: relative;
}

.rooms-content-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    width: 100px;
    height: 15px;
    background: var(--primary);
}

.rooms-content-wrap h3 {
    line-height: 40px;
    margin-bottom: 35px;
    letter-spacing: -1px;

}

.amenities-list-item {
    font-size: 16px;
    color: #787878;
    line-height: 1;
    margin-bottom: 20px;
}

.amenities-list-item svg {
    font-size: 16px;
    margin-right: 10px;
}

.rooms-content-wrap .prime-btn {
    font-size: 16px;
    margin-top: 30px;
    padding: 16px 30px;
    background-color: var(--black);
}


.our-rooms-slider .owl-theme .owl-dots {
    position: absolute;
    top: 112%;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    flex-direction: row;
    margin-top: 0;
}

.our-rooms-slider .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 0px;
}

.our-rooms-slider .owl-carousel button.owl-dot span {
    display: none;
}

.our-rooms-slider .owl-carousel button.owl-dot {
    margin-bottom: 0;
    margin-right: 10px;
}

.our-rooms-slider .owl-carousel button.owl-dot {
    width: 24px;
    height: 8px;
    border-radius: 10px;
    background: #E0E0E0;
}

.our-rooms-slider .owl-theme .owl-dots .owl-dot.active {
    width: 34px;
    height: 10px;
    background-color: var(--primary);
}

/* Our Rooms section End */


/* Exclusive Offers section Start */

.exclusive-offer-wrapper {
    width: 100%;
    display: flex;
}

.exclusive-offer-left-wrap {
    width: 40%;
}

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

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

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

.exclusive-offer-right-wrap {
    width: 60%;
    padding-left: 24px;
}

.exclusive-offer-right-wrap .sec-title {
    margin-top: 60px;
    margin-bottom: 36px;
    width: 562px;
}

.exclusive-offer-grid-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.exclusive-offer-grid-item h3 {
    color: #2D2D2D;
    line-height: 42px;
    letter-spacing: 0.5px;
    padding: 26px 20px 30px 20px;
}

.exclusive-offer-grid-item ul {
    padding-left: 40px;
    padding-right: 20px;
}

.exo-list {
    font-size: 16px;
    font-weight: 300;
    color: #010101;
    line-height: 26px;
    margin-bottom: 16px;
}

.exo-list:last-child {
    margin-bottom: 0px;
}

.exo-list span {
    display: inline-flex;
    font-size: 14px;
}

.exo-image {
    width: 100%;
    height: 226px;
    margin-top: 40px;
    overflow: hidden;
}

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

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

/* Exclusive Offers section End */

/* Feedback section Start */
.feedback {
    background-image: url("../images/sec-bg-img/feedback-bg-img.jpg");
    min-height: auto;
    position: relative;
}

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

.feedback .sec-title h6 {
    color: var(--white);
}

.feedback-item-wrap {
    border-radius: 8px;
    padding: 60px 50px 50px;
    position: relative;
    z-index: 111;
    height: 450px;
    background-color: var(--white);

}

.feedback-item-wrap::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 15px;
    background-color: var(--primary);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.feedback-item-wrap h3 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 28px;
}

.feedback-item-wrap img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.feedback-item-wrap p {
    font-size: 16px;
    line-height: 30px;
    color: #666;
    text-transform: capitalize;
    margin-top: 30px;
}

.book-now-wrapper {
    background-image: url('../images/sec-bg-img/book.jpg');
    min-height: auto;
    padding: 60px 50px;
    position: absolute;
    bottom: -14%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1280px;
    margin: 0 auto;
    z-index: 111;
}

.book-now-wrapper h2 {
    font-size: 48px;
    line-height: 70px;
}

.book-now-wrapper .prime-btn {
    padding: 18px 32px;
}

/* Feedback section End */


/* Gallery section Start */
.gallery.sec-spacing {
    padding: 260px 0 120px 0;
    position: relative;
    overflow-x: hidden;
}

.gallery::before,
.gallery::after {
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    bottom: 0;

}

.gallery::before {
    left: -6%;
    background-image: url('../images/abt-1.png');
    width: 450px;
    height: 450px;
}

.gallery::after {
    right: -8%;
    background-image: url('../images/abt-2.png');
    width: 408px;
    height: 408px;
}


.photo-gallery-wrap {
    width: 100%;
    /* height: 100%; */
    /* min-height: 100%; */
    /* border-radius: 10px; */
    overflow: hidden;
    position: relative;
    display: block;
    z-index: 111;
    /* margin: 10px 0; */
}

.hsize-100 {
    height: 100%;
}

.mb-24 {
    margin-bottom: 24px;
}

.photo-gallery-wrap.h-510 {
    height: 510px;
}

.photo-gallery-wrap.h-274 {
    height: 330px;
}

.photo-gallery-wrap.h-250 {
    height: 220px;
}


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

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

.gallery .prime-btn {
    margin-top: 70px;
    padding: 16px 40px;
}

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

.photo-gallery-wrap: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 section End */



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


footer.sec-spacing {
    padding: 140px 0 0;
    margin-top: 2px;
}

.footer-grid-item {
    margin-bottom: 72px;
}

.footer-grid-item p {
    font-size: 18px;
    text-transform: capitalize;
    line-height: 38px;
    margin-bottom: 38px;
    letter-spacing: 1px;
}



.footer-grid-item h3 {
    font-size: 36px;
    padding: 16px 0 30px 0;
    letter-spacing: 1px;
}

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

.footer-link {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    transition: all ease-in-out 0.5s;
}

.footer-grid-item svg {
    color: var(--white);
}

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


.ft-add,
.footer-add a {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    letter-spacing: 1px;
    transition: all ease-in-out 0.5s;
    word-wrap: break-word;
}

.footer-bottom-wrap {
    z-index: 111;
    position: relative;
    padding: 14px 0;

}

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

/* Footer end */


/* Service Amenities Page Start*/
.service-page .service-amenities-grid-wrap {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    z-index: 111;
    position: relative;
    gap: 40px 24px;
}

.service-page .service-amenities-grid-item {
    position: relative;
    width: 100%;
    height: 200px;
    border-bottom: 3px solid var(--primary);
    border-radius: 0;
    background: #F8F5F0;
    transition: 0.3s ease-in-out;
    padding: 40px 10px 30px;
    z-index: -1;
}

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

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

.service-page .service-amenities-grid-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0%;
    left: 0px;
    bottom: 0px;
    z-index: -1;
    background: var(--primary);
    transition: 500ms;
}

.service-page .service-amenities-grid-item:nth-child(13):before,
.service-page .service-amenities-grid-item:nth-child(14):before {
    display: none;
}

.abs-icons {
    width: 58px;
    height: 58px;
    margin-bottom: 30px;
    transition: 0.3s ease-in-out;
}

.abs-icons img {
    width: inherit;
    height: inherit;
    object-fit: contain;
}

.abs-light {
    display: block;
    transition: 0.3s ease-in-out;
}

.abs-dark {
    display: none;
    transition: 0.3s ease-in-out;
}

.service-page .service-amenities-grid-item h5 {
    font-size: 20px;
    line-height: 1.5;
    color: var(--primary);
    text-transform: capitalize;
    transition: 0.3s ease-in-out;
}

.service-page .service-amenities-grid-item:hover::before {
    height: 100%;
}

.service-page .service-amenities-grid-item:hover .abs-light {
    display: none;
}

.service-page .service-amenities-grid-item:hover .abs-dark {
    display: block;
}

.service-page .service-amenities-grid-item:hover h5 {
    color: white;
}

/* Service Amenities Page End*/

/* Gallery Page Start*/
.gallery-page .photo-gallery-wrap {
    height: 340px;
}

/* Gallery Page End*/


/* Contact-us Page start */


.contact-page-wrapper {
    width: 100%;
    padding: 80px 60px;
}

.contact-us-content-wrap {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px 24px;
    padding-left: 20px;
}

.contact-us-content-items {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    padding: 30px;
    border-radius: 6px;
    background-color: var(--white);
}

.contact-title-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    color: var(--black);
    margin-bottom: 12px;
    /* font-family: var(--font-cin); */
}

.contact-us-content-items span {
    display: block;
    width: 1px;
    height: 100%;
    background: var(--primary);
    margin: 0 30px;
}

.contact-play-icons {
    margin-right: 10px;
}

.contact-us-content-items a,
.contact-us-content-items p {
    color: #686868;
    font-size: 16px;
}


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

.contact-us-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.contact-us-image-wrapper img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    transition: all ease-in-out 0.4s;
}

.contact-us-image-wrapper:hover img {
    transform: scale(1.08);
}

/* Contact-us Page end */

/* -- // Ada feature Page Styles Start // -- */
.ada-feature-wrap:not(:last-child) {
    margin-bottom: 50px;
}

.ada-feature-wrap h3 {
    margin-bottom: 20px;
}

.ada-feature-item {
    font-size: 18px;
    line-height: 1.5;
    padding: 16px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px 0px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;

}

.ada-feature-note {
    margin-top: 40px;
}


/* -- // Ada feature Page Styles 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-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 // -- */