:root {
    /* Fonts */
    --font-primary: "Montserrat", sans-serif;
    --font-merri: "Merriweather", serif;

    /*Colors */
    --black: #222222;
    --white: #ffffff;
    --primary: #936919;
    --blue: #132332;
    /* #244AB4,#00349B */
    --secondary: #787878;
    --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: 64px;
}

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

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

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

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



/* 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);
}

.bg-blue-color {
    background-color: var(--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);
}

.color-blue {
    color: var(--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: 500;
    text-transform: capitalize;
    font-family: var(--font-primary);
    line-height: 1;
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid transparent;
    border-radius: 0px;
    padding: 18px 22px;
    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;
}


.description {
    position: relative;
    display: block;
    z-index: 111;
    color: var(--white);
}

.prime-btn:before,
.prime-btn:after {
    content: "";
    position: absolute;
    height: 1px;
    width: 1px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
}

.prime-btn:before {
    background: #b48021;
    transition: 0.6s ease-in;
    transition-delay: 0.1s;
}

.prime-btn:after {
    background: #886119;
    transition: 0.8s ease;
    transition-delay: 0.4s;
}

.prime-btn:hover:before,
.prime-btn:hover:after {
    transform: translate(-50%, -50%) scale(310);
}

.prime-btn:hover,
.prime-btn.active,
.prime-btn .btn-check:focus+.btn,
.prime-btn:focus {
    outline: none;
    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 */
header {
    width: 100%;
    left: 0;
    right: 0;
}

.header-top {
    width: 100%;
    display: flex;
    align-items: center;
    background-color: var(--blue);
    color: var(--white);
    padding: 20px 150px;
    position: relative;

}

.header-top a,
.header-top i,
.head-top-add {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.3px;
    transition: all ease-in 0.3s;
}

.header-top a:hover,
.header-top i:hover,
.head-top-add:hover {
    color: var(--primary);
}

.header-top a {
    margin-right: 40px;
}

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

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

}


.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: 130px;
    height: 102px;
    padding: 0;
    margin: 0;
    /* z-index: 111; */
    flex: 0 0 auto;
}

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

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

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


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


header .nav-link:hover:after,
header .nav-link:focus:after,
header .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; */
}

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

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

/* Header styles end */

/* Sidebar style start */

.slide-menu {
    cursor: pointer;
    margin-left: 50px;
    /* 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: 160px;
    height: 70px;
    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,
.exclusive-offer,
.our-room,
.booking-res {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 810px;
}

.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 section of all page start */
.page-hero-banner {
    min-height: 540px;
}


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

.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;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

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

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

/* hero-content of all page end */


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

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

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

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

.hero-text {
    width: 100%;
    max-width: 740px;
}


.hero-text h1 {
    text-transform: capitalize;
    line-height: 90px;
    margin-bottom: 30px;

}

.hero-text p {
    text-transform: capitalize;
    font-size: 18px;
    line-height: 34px;
    margin-bottom: 40px;
}

.hero-info {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.hero-phone-icon img {
    width: 60px;
    margin-right: 16px;
}

.hero-info span {
    font-size: 16px;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.hero-info .hero-book-now p {
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 0;
}

.hero-info .prime-btn {
    padding: 20px 22px;
    margin-right: 40px;
}

.hero-info .prime-btn span {
    margin-bottom: 0 !important;
}

.hero-book-now:hover img {
    transform: rotateY(360deg);
    transition: 0.9s;
}

/* owl arrow start */
.hero-wrapper .owl-theme .owl-nav {
    margin-top: 0;
    position: absolute;
    right: 6%;
    bottom: 12%;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    background: transparent;
    color: #ffffff;
    border: 1px solid var(--white);
    padding: 0 !important;
    /* font: inherit; */
    /* font-size: 27px; */
    width: 76px;
    height: 76px;
    border-radius: 100%;
    /* margin: 0; */
}

.owl-theme .owl-nav [class*=owl-] {
    margin: 0 50px 0 0;
}

.hero-wrapper .owl-carousel .owl-nav button.owl-prev {
    transform: rotate(180deg);
}

.hero-wrapper .owl-carousel .owl-nav button.owl-next svg,
.hero-wrapper .owl-carousel .owl-nav button.owl-prev svg {
    /* font-size: 40px; */
    width: 60px;
    color: var(--white);
    margin-left: -60px;
    transition: all ease-in 0.3s;
}

.hero-wrapper .owl-carousel .owl-nav button.owl-next:hover,
.hero-wrapper .owl-carousel .owl-nav button.owl-prev:hover {
    background-color: transparent;
    border-color: var(--primary);
}

.hero-wrapper .owl-carousel .owl-nav button.owl-next:hover svg,
.hero-wrapper .owl-carousel .owl-nav button.owl-prev:hover svg {
    color: var(--primary);
    margin-left: -40px;
}

/* owl arrow end */


/* About Section Start */
.sec-title {
    margin-bottom: 55px;
}

.sec-title span {
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 4px;
}

.about-wrapper {
    padding: 90px 0;
}

.about-content-wrap .sec-title {
    margin-bottom: 25px;
}

.about-content-wrap .sec-title span {
    margin-bottom: 10px;
}

.about-content-wrap .sec-title h2 {
    font-size: 46px;
}

.about-content-wrap {
    padding-right: 60px;
    padding-left: 30px;
}

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

.other-perks {
    width: 390px;
}

.other-perks h6 {
    font-size: 20px;
    margin-bottom: 20px;
}

.other-perks li {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 15px;
    color: #787878;
    margin-left: 20px;
}

.about-content-wrap .prime-btn {
    margin-top: 38px;
}

.about-image-wrap {
    position: relative;
    /* overflow: hidden; */
    /* transition: all ease-in-out 0.4s; */
}

.about1-img {
    position: absolute;
    width: 320px;
    height: 420px;
    transform: rotate(-7deg);
    z-index: 111;
    object-fit: cover;
    border: 10px solid var(--white);
    overflow: hidden;
    /* transition: all ease-in-out 0.4s; */
}

.about2-img {
    position: absolute;
    width: 335px;
    height: 231px;
    transform: rotate(8deg);
    object-fit: cover;
    border: 10px solid var(--white);
    top: 80px;
    left: 150px;
    overflow: hidden;
    /* transition: all ease-in-out 0.4s; */
}

.about1-img:hover img,
.about2-img:hover img {
    transform: scale(1.08);
}

.about1-img img,
.about2-img img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    transition: all ease-in-out 0.4s;
}


/* About Section End */


/* Exclusive Offers section Start */
.exclusive-offer {
    background-image: url('../images/sec-bg-img/offer-bg1.png');
    min-height: auto;
    height: 700px;
}

.exclusive-offer .sec-title {
    margin-bottom: 70px;
}

.exclusive-offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin: 0 80px;
}

.exclusive-offer-grid-item {
    position: relative;
    width: 100%;
    height: 570px;
    border-radius: 10px;
    overflow: hidden;
    transition: all ease-in-out 0.5s;
}

.exclusive-offer-grid-item img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

.exclusive-offer-grid-item-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 111;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0px 20px 50px;
    transition: all ease-in-out 0.5s;

}

.offer-overlay {
    position: absolute;
    left: 0;
    top: auto;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 290px;
    z-index: 111;
    border-radius: 0 0 10px 10px;
    background: linear-gradient(180deg, rgba(153, 153, 153, 0.00) 0%, #000 102.64%);
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.10);
    transition: all ease-in-out 0.5s;

}

.exo-icon img {
    width: 60px;
    margin-right: 30px;
    transition: all ease-in-out 0.5s;
}

.exclusive-offer-grid-item:hover .offer-overlay {
    /* top: 0;
    bottom: 0; */
    height: 100%;
    width: 100%;
    transition: all ease-in-out 0.5s;
}


.exclusive-offer-grid-item:hover .exclusive-offer-grid-item-content {
    top: 0;
    flex-direction: column;
    justify-content: center;
    transition: all ease-in-out 0.5s;

}

.exclusive-offer-grid-item:hover h3 {
    transition: all ease-in-out 0.5s;
}

.exclusive-offer-grid-item:hover .exo-icon img {
    margin-right: 0;
    margin-bottom: 20px;
}

.exclusive-offer-grid-item-content p {
    font-size: 14px;
    line-height: 28px;
    text-transform: capitalize;
    text-align: center;
    margin: 20px 0 30px 0;
    display: none;
    transition: all ease-in-out 0.5s;
}

.exclusive-offer-grid-item:hover p,
.exclusive-offer-grid-item:hover .read-more-link {
    display: block;
    transition: all ease-in-out 0.5s;
}

.read-more-link {
    font-size: 14px;
    position: relative;
    color: var(--white);
    display: none;
}

.read-more-link::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -2px;
    width: 80%;
    height: 1px;
    background: white;
    z-index: 111;
}

.m-50 {
    margin-top: 50px;
}

/* Exclusive Offers section End */


/* Service Amenities section Start */
.service-amenities {
    z-index: 111;
    position: relative;
}

.service-amenities-left-wrapper {
    padding-top: 50px;
    padding-right: 40px;
}

.service-amenities.sec-spacing {
    padding: 340px 0 30px;
}

.service-amenities-left-wrapper .sec-title {
    margin-bottom: 30px;
}

.service-amenities-left-wrapper p {
    font-size: 16px;
    line-height: 34px;
    /* padding-right: 40px; */
    text-transform: capitalize;
    margin-bottom: 38px;
    color: #1A1A1A;
}

.service-amenities-left-wrapper .prime-btn {
    padding: 18px 32px;
}


.service-amenities-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: -30%;
}

.service-amenities-grid-item {
    padding: 30px 24px 24px;
    min-height: 275px;
    background-color: var(--white);
    box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.10);
    transition: all ease-in-out 0.3s;
}

.service-amenities-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    /* transition: 0.3s ease-in-out; */
}

.service-amenities-icon img {
    width: inherit;
    height: inherit;
    object-fit: contain;
    transition: all 0.9s ease;
}

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

.sa-light {
    display: none;
    /* transition: 0.3s ease-in-out; */
}

.sa-dark {
    display: block;
    /* transition: 0.3s ease-in-out; */
}

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

.service-amenities-grid-item h4 {
    font-size: 22px;
    color: #0F1D2E;
    margin-bottom: 16px;
    transition: 0.3s ease-in-out;
}

.service-amenities-grid-item p {
    text-transform: capitalize;
    line-height: 30px;
    color: #3a3a3a;
    transition: 0.3s ease-in-out;
}

.service-amenities-grid-item:hover .sa-dark {
    display: none;
    transition: 0.3s ease-in-out;
}

.service-amenities-grid-item:hover .sa-light {
    display: block;
    transition: 0.3s ease-in-out;
}

.service-amenities-grid-item:hover {
    background-color: var(--primary);
    transition: 0.3s ease-in-out;
}

.service-amenities-grid-item:hover h4,
.service-amenities-grid-item:hover p {
    color: white;
    transition: 0.3s ease-in-out;
}

/* Service Amenities section End */


/* our rooms section Start */
.our-room {
    background-image: url('../images/sec-bg-img/room-bg.png');
    min-height: auto;
}

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

.our-room .sec-title {
    margin-bottom: 70px;
}

.our-rooms-wrapper {
    margin: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.room-image {
    width: 100%;
    height: 100%;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    overflow: hidden;
}

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

.our-rooms-wrapper .tab-content {
    margin-top: 60px;
}

.room-content {
    height: 100%;
    padding: 80px 70px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;

}

.room-content h2 {
    font-size: 36px;
    line-height: 52px;
    margin-bottom: 30px;
    padding-right: 40%;
}

.room-content h5 {
    font-size: 20px;
    margin-bottom: 30px;
}

.room-content p {
    text-transform: capitalize;
    font-size: 16px;
    line-height: 34px;
    margin-bottom: 50px;

}

.rooms-icons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 60px;
}

.rooms-icons-grid-item img {
    width: 22px;
    margin-right: 14px;
}

.room-content .prime-btn {
    margin-top: 40px;
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
    padding: 14px 28px;
    font-size: 14px;
    letter-spacing: 0.5px;
}


.our-rooms-wrapper .nav-pills .nav-link {
    border-radius: 0;
    padding: 0 0 20px;
    font-size: 26px;
    width: 547px;
    color: var(--black);
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.our-rooms-wrapper .nav-pills .nav-link.active {
    background-color: transparent;
    color: var(--black);
    border-bottom: 1px solid var(--primary);

}

/* our rooms section End */

/* Feedback Section Start */
.feedback-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    position: relative;
}

.feedback-img,
.feedback-content {
    width: 50%;
    flex: 0 0 auto;
}

.feedback-img img {
    height: 890px;
    object-fit: cover;

}

.feedback-content {
    position: relative;
    padding: 80px 70px;
    transition: all ease-in 0.3s;
}

.feedback-dotted-map {
    position: absolute;
    top: 10%;
    width: 785px;
    height: 514px;
}

.feedback-slider {
    position: absolute;
    z-index: 111;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1210px;
    margin: 0 auto;
}

.feedback-item {
    padding: 40px 30px 50px;
    background-color: var(--white);
    height: 520px;
    transition: all ease-in 0.3s;
}

.fd-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    transition: all ease-in 0.3s;
}

.feedback-item p {
    font-size: 16px;
    line-height: 34px;
    color: #6A6A6A;
    text-transform: capitalize;
    transition: all ease-in 0.3s;

}

.fd-avatar {
    width: 60px;
    margin-right: 16px;
}

.feedback-bottom {
    padding-top: 30px;
    border-top: 1px solid #E3E3E3;
    /* transition: all ease-in 0.3s; */
}

.feedback-bottom h6 {
    font-size: 18px;
    margin-bottom: 6px;
    transition: all ease-in 0.3s;
}

.feedback-bottom span {
    font-size: 16px;
    color: #3a3a3a;
    transition: all ease-in 0.3s;
}

.feedback-wrapper .fd-icon-dark {
    display: block !important;
}

.feedback-wrapper .fd-icon-light {
    display: none !important;
}

.feedback-item:hover {
    background-color: var(--primary);
}

.feedback-item:hover .fd-icon-dark {
    display: none !important;
}

.feedback-item:hover .fd-icon-light {
    display: block !important;
}

.feedback-item:hover p,
.feedback-item:hover h6,
.feedback-item:hover span {
    color: var(--white);
}


.feedback-wrapper .owl-theme .owl-nav {
    margin-top: 0;
    position: absolute;
    right: -20%;
    bottom: -20%;
}

.feedback-wrapper .owl-carousel .owl-nav button.owl-next,
.feedback-wrapper .owl-carousel .owl-nav button.owl-prev {
    background: white;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 0 !important;
    font-size: 22px;
    width: 60px;
    height: 60px;
    border-radius: 0;
    transition: all ease-in-out 0.3s;
}

.feedback-wrapper .owl-carousel .owl-nav button.owl-next:hover,
.feedback-wrapper .owl-carousel .owl-nav button.owl-prev:hover {
    background: var(--primary);
    color: var(--white);
}

.feedback-wrapper .owl-theme .owl-nav [class*=owl-] {
    margin: 0 30px 0 0;
}

/* Feedback Section End */


/* Gallery Section Start */
.photo-gallery-wrap {
    display: block;
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
}

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


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

.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 .prime-btn {
    margin-top: 70px;
    padding: 18px 32px;
}

/* Gallery Section End */


/* Booking reservation section Start */
.booking-res {
    background-image: url('../images/sec-bg-img/booking-bg1.png');
    min-height: auto;
    position: relative;
    height: 645px;
}

.web-res-form {
    position: absolute;
    background-color: #F8F5F0;
    padding: 70px 60px;
    z-index: 11;
    bottom: -22%;
    right: 22%;
    width: 570px;
}

.web-res-form::after {
    content: '';
    position: absolute;
    background-image: url('../images/sec-bg-img/form.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 218px;
    height: 329px;
    bottom: 0;
    left: 0;
    z-index: -2;
}


.web-res-form .sec-title {
    margin-bottom: 40px;
}

.web-res-form h2 {
    font-size: 44px;
}

.web-res-form .sec-title span {
    font-size: 14px;
}

.input-group {
    position: relative;
    margin-bottom: 14px;
}

.form-control {
    font-size: 16px;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 0px;
    background-color: var(--white);
    font-weight: 400;
    line-height: 1;
    color: #3a3a3a;
    padding: 22px 20px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-family: var(--font-primary);
    cursor: pointer;
}

.form-control:active,
.form-control:focus,
.form-control:focus-visible {
    border: 1px solid transparent;
    outline: 0;
    box-shadow: none;
    background-color: var(--white);
    color: #6a6a6a;
}

.input-icon {
    font-size: 18px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #122223;
    z-index: 11;
    cursor: pointer;
}


.web-res-form .prime-btn {
    width: 100%;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 4px;
    background-color: var(--primary);
    padding: 20px 30px;
    margin-top: 10px;
}

.web-res-form .prime-btn:before,
.web-res-form .prime-btn:after {
    height: 2px;
    width: 2px;
}

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

/* form end */

/* Booking reservation section End */


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

.footer-top-wrap {
    position: relative;
}

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

a.ft-phone {
    font-size: 34px;
    color: var(--white);
    letter-spacing: 4px;
    margin-bottom: 70px;
    transition: all ease-in-out 0.3s;
}

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

a.ft-phone span {
    font-size: 16px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

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

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

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

.footer-grid-item p {
    font-size: 18px;
    line-height: 42px;
    color: white;
    margin-bottom: 40px;
    text-transform: capitalize;
}

.ada-link {
    font-size: 18px;
    color: var(--white);
    position: relative;
}

.ada-link::after {
    content: '';
    position: absolute;
    background: rgba(255 255 255 / 60%);
    width: 80%;
    height: 1px;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
}

/* .footer-grid-item.footer-about {
    padding-right: 20px;
} */


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



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

.footer-link {
    position: relative;
    font-size: 18px;
    color: white;
    line-height: 1.5;
    margin-bottom: 28px;
    max-width: max-content;
    transition: all ease-in-out 0.5s;
}

.footer-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: all ease-in-out 0.5s;
}

.footer-link:hover::after {
    width: 50%;
}

.ft-add,
.footer-add a {
    font-size: 18px;
    line-height: 38px;
    color: var(--white);
    margin-bottom: 36px;
    transition: all ease-in-out 0.5s;
    word-wrap: break-word;
    /* letter-spacing: 0.3px; */
}

.footer-grid-item h4 {
    font-size: 26px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

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

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


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

}

.footer-bottom-wrap p {
    font-size: 15px;
    color: white;
}

.ft-note {
    position: absolute;
    right: 26%;
    top: 18%;
    font-style: italic;
    text-transform: capitalize;
    font-size: 20px;
}

.hd-note,
.hd-note-mobile {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-style: italic;
    color: #D38C05;
    text-transform: capitalize;
}

.hd-note-mobile {
    font-size: 16px;
    text-align: center;
    display: none;
}

/* 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%;
    min-height: 200px;
    border-bottom: 3px solid var(--primary);
    border-radius: 0;
    background: var(--sky-blue);
    transition: 0.3s ease-in-out;
    padding: 40px 10px 30px;
    z-index: -1;
    box-shadow: none;
}



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



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


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


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

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

.info-wrapper-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 60px;
    border: 1px solid var(--primary);
    border-radius: 10px;

}

.info-wrapper {
    padding: 70px 0px;
}

.info-icon-wrap {
    margin-bottom: 30px;
    border: 2px solid var(--primary);
    border-radius: 100%;
    width: 70px;
    height: 70px;
}

.info-icon-wrap svg {
    font-size: 30px;
}

.info-wrapper:hover svg {
    transform: rotateY(360deg);
    transition: all 0.9s ease;
}

.info-wrapper h5 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #000000;
}

.info-wrapper p,
.info-wrapper a {
    font-size: 18px;
    line-height: 1.5;
    word-break: break-word;
    color: #3a3a3a;
}

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

}

/* ---- Contact-us page 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 // -- */