:root {
    /* Fonts */
    --font-primary: "Epilogue", sans-serif;
    --font-cin: "Cinzel", serif;


    /*Colors */
    --black: #222222;
    --white: #ffffff;
    --primary: #BE9800;
    --secondary: #787878;
    --sky-blue: #EDF6F9;

}



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

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

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

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

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

::-ms-input-placeholder {
    color: #2A2A2A !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-cinz {
    font-family: var(--font-cin);
}



/* 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: 16px;
    font-weight: 400;
    font-family: var(--font-primary);
    line-height: 1;
    letter-spacing: 0.5px;
    background-color: var(--primary);
    color: var(--white);
    /* border: 1px solid transparent; */
    border-radius: 2px;
    padding: 18px 34px;
    /* width: 150px;
    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::after {
    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: #1a1a1a;
}

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

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

.prime-btn .txt {
    position: relative;
    z-index: 111;
}

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


/* 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%;
    left: 0;
    right: 0;
    /* margin-top: 12px; */
    position: absolute;
    z-index: 1111;
    background: rgba(0, 0, 0, 0.8);

}

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


}

.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:hover svg,
.head-top-add:hover svg {
    transform: rotateY(360deg);
    transition: all 0.9s ease;
}

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

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

}

.header-top svg {
    font-size: 16px;
    color: var(--primary);
    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: 6px 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: 120px;
    height: 104px;
    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 */


/* 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,
.booking,
.feedback,
.footer {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 940px;
}

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

.hero-banner::before {
    opacity: 0;
}

.page-hero-banner::before {
    opacity: 0.3;
}


.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.png');
}

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

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

/* Back to top button end*/


/* Hero styles start */

/* owl dots 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: 41%;
}

.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: 80px;
    z-index: 111;
    width: 100%;
}

.booking-form-grid-wrap {
    background-color: white;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.booking-form-grid-item:not(:last-child) {
    border-right: 1px solid rgba(171, 0, 0, 20%);
    padding: 38px 30px;
}

.form-group {
    position: relative;
}

.form-group::after {
    content: '';
    position: absolute;
    width: 76%;
    right: 0;
    bottom: -10px;
    border-bottom: 1px solid rgba(0, 0, 0, 20%);
}

.form-control {
    font-family: var(--font-primary);
    background-color: white;
    border: none;
    border-radius: 0;
    color: #2A2A2A;
    font-size: 18px;
    font-weight: 400;
    padding: 0 0 0 46px;
}

select.form-control option {
    color: #000 !important;
}


.input-icon {
    position: absolute;
    left: 0;
    top: 70%;
    transform: translateY(-50%);
    color: var(--primary);
    width: 30px;
    height: 30px;
    z-index: 111;
}

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

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

.booking-form .prime-btn {
    border-radius: 0;
    width: 100%;
    height: 100%;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0;
    background-image: none;
    background-color: var(--primary);
    color: white;
    transition: all ease-in-out 0.3s;
}

.booking-form .prime-btn:hover {
    color: white;
    /* background-color: #bd0000; */
}

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

/* Hero styles End */


/* About Section Start */
.about-wrapper {
    position: relative;
}

.about-content-wrap h2 {
    margin-bottom: 20px;
    padding-right: 40px;
    line-height: 54px;
}


.about-content-wrap p {
    text-transform: capitalize;
    line-height: 36px;
    font-size: 16px;
    color: #555555;
    margin-bottom: 30px;
    padding-right: 20px;
}

.about-sa-list-items {
    margin-bottom: 40px;
}

.about-sa-list-items h6 {
    font-size: 18px;
    color: #555555;
    line-height: 20px;
    margin-bottom: 20px;
}

.about-sa-list-items p {
    font-size: 16px;
    position: relative;
    margin-bottom: 10px;
    padding-left: 15px;
}

.about-sa-list-items p::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: black;
    border-radius: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.abt-read-more {
    font-size: 18px;
    position: relative;
    margin-bottom: 110px;
    display: inline-block;
    transition: all ease-in-out 0.3s;
}

.abt-read-more:hover {
    color: #BC8C33;
}

.abt-read-more::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -6px;
    width: 40%;
    height: 1px;
    background: var(--primary);
    transition: all ease-in-out 0.3s;
}

.abt-read-more:hover::after {
    width: 80%;
}

.about-image-wrap {
    width: 100%;
    height: 630px;
}

.about-image-wrap img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}


.about-service-wrap {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    width: 1056px;
    margin-top: -60px;
}

.about-service-grid-item {
    position: relative;
    width: 192px;
    height: 120px;
    box-shadow: 0px 18px 50px -10px rgba(0, 95, 115, 0.20);
    border: 1px solid rgba(190, 152, 0, 0.12);
    background: #FFF;
    transition: all ease-in-out 0.3s;
}

.about-service-grid-item:hover {
    background: var(--primary);
}

.about-service-grid-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    border-radius: 2px;
    background: transparent;
    border: 1px solid rgba(190, 152, 0, 0.12);
}

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

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

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

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

}


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

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

/* About Section End */


/* Exclusive Offer section Start */
.sec-title {
    margin-bottom: 55px;
    position: relative;
    z-index: 111;
}

.sec-title h6 {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 16px;
    text-transform: uppercase;
    letter-spacing: 6px;
}

.sec-title h2 {
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.exclusive-offer {
    position: relative;
}

.exclusive-offer::after {
    content: "";
    background: url('../images/sec-bg-img/ex-offer.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    width: 100%;
    height: 600px;
    display: inline-block;
    top: 0px;
    z-index: 1;
}

.exclusive-offer-wrap {
    z-index: 11;
    position: relative;
    height: 570px;
    background-color: white;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 20px 20px 50px;
    /* box-shadow: 0px 10px 80px 0px rgba(0, 0, 0, 0.1); */
    box-shadow: 0px 10px 80px 0px rgba(0, 0, 0, 0.10);
}


.exclusive-offer-image-wrap {
    width: 100%;
    height: 250px;
    overflow: hidden;
    margin-bottom: 30px;
}

.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 {
    transform: scale(1.08);
}

.exclusive-offer-wrap h3 {
    font-size: 28px;
    margin-bottom: 14px;
}

.exclusive-offer-wrap p {
    text-transform: capitalize;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 24px;
}

a.read-more-link {
    position: relative;
    font-size: 14px;
    color: var(--primary);
    float: inline-end;
    margin-right: 30px;
    transition: all ease-in-out 0.3s;
}

.read-more-link:hover {
    color: #d2a800;
}

.read-more-link:hover svg {
    transform: scale(1.1);
}

/* Exclusive  Offer section End */

/* Service Amenities section Start */

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

.service-amenities-wrap {
    background-color: var(--white);
    padding: 22px 22px 22px 40px;
    border-radius: 2px;
    margin-bottom: 30px;
    /* box-shadow: 0 1px 4px 1px rgba(255, 190, 88, 0.18); */
    box-shadow: 0px 1px 2px 1px rgba(0, 95, 115, 0.15);

}


.service-amenities-icon {
    width: 40px;
    height: 40px;
    margin-right: 20px;
}

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

.service-amenities-wrap h5 {
    text-transform: capitalize;
    font-size: 20px;
    line-height: 34px;
    letter-spacing: 0.2px;

}

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

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

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

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

.service .prime-btn {
    margin-top: 70px;
}

/* Service Amenities section End */


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

.booking::before {
    opacity: 0.8;
}

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

.booking-wrapper {
    z-index: 111;
    position: relative;
    color: white;
    max-width: 936px;
    margin: 0 auto;
}

.booking-hotel-icon {
    margin-bottom: 30px;
}

.booking-wrapper h3 {
    font-size: 30px;
    line-height: 48px;
    margin-bottom: 26px;
    letter-spacing: 1px;
}

.book-calender {
    padding-left: 70px;
}

.calender-icon {
    margin-right: 12px;
}

.calender-content p {
    font-size: 16px;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.divider {
    height: 37px;
    width: 1px;
    background: rgba(255, 255, 255, 0.4);
    margin: 0 20px;
}

.book-right a {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.booking-wrapper .prime-btn {
    margin-top: 40px;
    background-color: transparent;
    border-radius: 50px;
    transition: all ease-in-out 0.3s;
    border: 1px solid white;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* Booking section end */



/* Rooms section Start */

.our-room-content {
    width: 630px;
    padding: 52px;
    border-radius: 2px;
    z-index: 1111;
    position: relative;
    margin-left: 10px;
    background-color: white;
    box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 10%);

}

.our-room-content h3 {
    margin-bottom: 16px;
    line-height: 1.4;
    color: #010101;
}

.our-room-content p {
    font-size: 16px;
    line-height: 34px;
    letter-spacing: 0.5px;
    color: #787878;
    margin-bottom: 30px;
}

.icon-box {
    width: 20px;
    height: 20px;
}

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

.our-room-image {
    width: 100%;
    height: 680px;
    /* height: auto; */
    /* margin-left: 30px; */
    position: relative;
    z-index: 111;
    /* border: 10px solid white; */
    /* box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 10%); */


}

.our-room-image img {
    width: inherit;
    height: inherit;
    object-fit: contain;
    z-index: 111;
    position: relative;
    transition: all ease-in-out 0.4s;
}



.rooms-icons-devider {
    width: 1px;
    height: 16px;
    margin: 0 12px;
    background: rgba(0, 0, 0, 21%);
}

.our-room-content .prime-btn {
    margin-top: 36px;
}

/* 
.our-room-slider .owl-theme .owl-nav {
    margin-top: 0;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    top: 0;
    bottom: 30px;
    transform: unset;
} */

.our-room-slider .owl-carousel .owl-nav button.owl-prev {
    left: 11%;
}

.our-room-slider .owl-carousel .owl-nav button.owl-next {
    right: 78%;
}

.our-room-slider .owl-carousel .owl-nav button.owl-next,
.our-room-slider .owl-carousel .owl-nav button.owl-prev {
    background: transparent !important;
    color: rgba(0, 0, 0, 60%) !important;
    border: 1px solid #DDDDDD;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    font-size: 34px;
    transform: none;
    top: 95%;
}

.our-room-slider .owl-carousel .owl-nav button.owl-next:hover,
.our-room-slider .owl-carousel .owl-nav button.owl-prev:hover {
    background: var(--primary) !important;
    color: var(--white) !important;
}

/* Rooms section End */


/* Feedback section Start */
.feedback.sec-spacing {
    padding: 100px 0;
}

.feedback {
    background-image: url('../images/sec-bg-img/feedback.jpg');
    min-height: auto;
}

.feedback::before {
    background-color: #000000;
    opacity: 0.7;
}

.feedback .sec-title {
    z-index: 111;
    position: relative;
    max-width: max-content;
}

.feedback .sec-title h2 {
    font-size: 50px;
    margin-bottom: 10px;
}

.feedback-slider {
    padding: 80px 50px 60px;
    background-color: #000000;
    z-index: 111;
    position: relative;
}

.feedback .sec-title img {
    margin: 0 0 0 auto;
}

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

.feedback-slider p {
    text-transform: capitalize;
    letter-spacing: 0.5px;
    font-size: 20px;
    line-height: 40px;
    margin-bottom: 40px;
    word-wrap: break-word;
}

.feedback-name {
    font-size: 22px;
    line-height: 1.2;
}

.feedback-wrapper-item {
    margin-bottom: 50px;
}

/* owl Arrow start */
.feedback .owl-theme .owl-nav {
    margin-top: 0;
    position: absolute;
    right: 0;
    bottom: 50px;
}

.feedback .owl-carousel .owl-nav button.owl-next,
.feedback .owl-carousel .owl-nav button.owl-prev {
    color: #afafaf;
    border: 1px solid white;
    border-radius: 100%;
    padding: 2px 4px !important;
    font-size: 30px;
    margin-right: 20px;
    width: 50px;
    height: 50px;
    transform: none;
    transition: all ease-in-out 0.3s;
}

.feedback .owl-carousel .owl-nav button.owl-next {
    right: 0;

}

.feedback .owl-carousel .owl-nav button.owl-prev {
    right: 80px;

}


/* .feedback .owl-carousel .owl-nav button.owl-next {
    margin-right: 0;
} */

.feedback .owl-carousel .owl-nav button.owl-next:hover,
.feedback .owl-carousel .owl-nav button.owl-prev:hover {
    background: transparent;

}

.feedback .owl-carousel .owl-nav button.owl-prev svg {
    margin-left: 22px;
    transition: all ease-in-out 0.3s;
}

.feedback .owl-carousel .owl-nav button.owl-prev:hover svg {
    transform: scaleX(1.2);
    transform-origin: right;
}

.feedback .owl-carousel .owl-nav button.owl-next svg {
    margin-left: -36px;
    transition: all ease-in-out 0.3s;

}

.feedback .owl-carousel .owl-nav button.owl-next:hover svg {
    transform: scaleX(1.2);
    transform-origin: left;
}

/* owl Arrow end */


/* Feedback section End */

/* gallery Section Start */
.photo-gallery-wrapper {
    padding: 0 15px;
    margin: 0 auto;
}

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


.photo-gallery-image {
    height: 360px;
    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;
}

/* gallery Section End*/


/* Footer start */
.footer {
    background-image: url("../images/sec-bg-img/footer.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: 142px;
    height: 124px;
    margin-bottom: 30px;
}

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

.footer-grid-item p {
    font-size: 16px;
    line-height: 32px;
    margin-bottom: 30px;
    width: 502px;
    letter-spacing: 0.2px;
}

.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: 30px;
    padding: 75px 0 36px 0;
}

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

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

/* .footer-grid-item svg {
    color: var(--primary)
} */

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


.ft-add,
.footer-add a {
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.5px;
    margin-bottom: 26px;
    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 .amenities-icons-grid-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 24px;
}

.service-page .amenities-icons-grid-item {
    height: 194px;
    background-color: var(--white);
    border-radius: 4px;
    padding: 40px 10px;
    text-align: center;
    border: 1px solid var(--primary);
}

.service-page .amenities-icons-grid-item:last-child {
    grid-column: 2 / span 2;
}

.service-page .amenities-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 30px;
}

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

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

.service-page .amenities-icons-grid-item h6 {
    color: #010101;
    line-height: 1.2;
}

.service-page .amenities-icons-grid-item p {
    font-family: var(--font-raleway);
    color: #2d2d2d;
    line-height: 2;
    padding: 0px 20px;
    font-size: 16px;
}

/* Service Amenities page end */


/* Contact-us Page start */
.contact-page.sec-spacing {
    padding: 120px 0 0 0;
}

.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;
    margin-top: 100px;
}

.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-title svg {
    color: #a68640;
}

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