:root {
    /* Fonts */
    /* --font-primary: "Inter", sans-serif; */
    --font-primary: "Barlow", sans-serif;
    --font-gilda: "Gilda Display", serif;

    /*Colors */
    --black: #122223;
    --white: #ffffff;
    --primary: #AA8453;
    --secondary: #666666;
    --sky-blue: #F4F4F4;

}


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

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

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

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



/* 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 {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-primary);
    line-height: 1;
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid transparent;
    border-radius: 1px;
    padding: 18px 36px;
    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:before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    content: "";
    background-color: var(--black);
    transition: .5s;
    opacity: 0;
    border-top-right-radius: 33px;
    border-bottom-right-radius: 33px;
    z-index: -1;
    border-top-left-radius: 33px;
}

.prime-btn:hover,
.prime-btn:focus,
.prime-btn:active,
.prime-btn:focus-visible {
    box-shadow: none;
    outline: none;
    color: var(--white);
}

.prime-btn:hover:before {
    width: 100%;
    border-radius: 0;
    opacity: 1;
}



/* Button Css End */
.sec-spacing {
    padding: 120px 0;
}

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

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


/* Default styles end */


/* ---- Index Page Style start ---- */
/* Header styles start */
.main-wrapper {
    width: 100%;
}

header {
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    position: absolute;
    z-index: 1111;
}

.header-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 24px 200px;
    background-color: transparent;
    /* color: var(--white);
    font-size: 15px;
    line-height: 1px; */
}

.header-top span {
    color: #aa84536b;
}

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

.header-top svg {
    transition: all 0.5s ease;
}

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

.page-header .header-top {
    display: none;
}

.page-header .navbar {
    background-color: var(--white);
    width: 100%;
}

.navbar {
    padding: 0px 200px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;

}

.navbar-wrapper {
    width: 100%;
    background-color: var(--white);
    z-index: 222;
    display: flex;
    align-items: center;
    padding: 16px 30px;
    border-radius: 4px;
}


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

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

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

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

.nav-link:after {
    position: absolute;
    content: " ";
    left: 0;
    right: 50%;
    bottom: -2px;
    width: 0%;
    height: 1px;
    background-color: var(--primary);
    -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;
}

/* Sidebar menu */

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

.hero-banner,
.page-hero-banner {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 900px;
}

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

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

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

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


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

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

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

/* Hero section of all page end */

/* hero-content of all page start */
.page-hero-content {
    z-index: 11;
    position: absolute;
    top: 64%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 12px;
}

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

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

/* hero-content of all page end */


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

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

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

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

.hero-sec-img {
    position: absolute;
    width: 400px;
    height: 500px;
    z-index: 111;
    right: 15%;
    top: 30%;
}


.hero-sec-img.vert-move {
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}

.hero-sec-img.vert-move {
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}



.hero-text {
    width: 100%;

}

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

.hero-text h1 {
    text-transform: capitalize;
    line-height: 100px;
    margin-bottom: 28px;
    max-width: 780px;
}

.hero-text .prime-btn {
    padding: 18px 26px;
    letter-spacing: 0.5px;
}

.ph-icon {
    width: 55px;
    height: 55px;
    margin-right: 22px;
}

.ph-info {
    position: absolute;
    right: 5%;
    bottom: 70px;
    color: white;
    z-index: 111;
}

.ph-info span {
    font-size: 12px;
    margin-bottom: 6px;
    text-transform: capitalize;
    letter-spacing: 2px;
}

.ph-info p {
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 1px;

}

/* owl dots start */
.owl-theme .owl-dots {
    position: absolute;
    top: 50%;
    right: 92px;
    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;
    z-index: 111;
    border: 0;
    margin-bottom: 6px;
}


.back-to-top .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: 18px;
    height: 18px;
    background-color: var(--primary);
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    right: 110px;
    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: 40px;
    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-carousel .owl-nav button.owl-prev {
    top: 42%;
}

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


/* owl dots end */


/* About section start */
.about-image-wrap {
    position: relative;
}

.about-main-img {
    width: 94%;
    height: 620px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

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

.about-main-img img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    border-radius: 10px;
    transition: all ease-in-out 0.5s;
}

.about-sub-img {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 290px;
    height: 430px;
    z-index: 111;
    transition: all ease-in-out 0.5s;
}

.about-sub-img img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    border: 15px solid white;
    border-radius: 10px;
    transition: all ease-in-out 0.5s;

}

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

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

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

.sec-title span {
    font-size: 16px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 8px;
}

.about-content-wrap p {
    font-size: 18px;
    line-height: 38px;
    text-transform: capitalize;
    color: #666;
    text-align: justify;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(201, 140, 61, 0.15);
}

.ab-amenities-icons {
    margin: 30px 0px 40px 0;
    position: relative;
    display: flex;
    align-items: center;

}

.ab-amenities-icons span {
    background: rgba(201, 140, 61, 0.15);
    width: 1px;
    height: 68px;
    z-index: 111;
    margin: 0 70px;
}

.about-icons {
    width: 180px;
}

.about-icons img {
    margin-right: 24px;
}

.about-icons h6 {
    line-height: 28px;
    color: #000;
}

.ab-list-wrap {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.ab-list {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 14px;
    color: #000;
    text-transform: capitalize;
}

.ab-list svg {
    font-size: 14px;
    margin-right: 8px;
    color: var(--primary);
}

/* About section end */

/* Service Amenities section start */
.service.sec-spacing {
    padding: 0 0 120px;
}

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

.service-amenities-item {
    background-color: #f4f4f4;
    box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.10);
    padding: 50px 38px;
    position: relative;
}

.service-amenities-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background-image: url("../images/sec-bg-img/pattern1.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 289px;
    height: 235px;

}

.sa-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
}

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

.service-amenities-item h4 {
    font-size: 24px;
    color: #010101;
    margin-bottom: 20px;
}

.service-amenities-item p {
    font-size: 16px;
    text-transform: capitalize;
    line-height: 28px;
    color: #666;
    text-align: center;
}

.service-image-wrap {
    width: 100%;
    height: 650px;
    border-radius: 10px;
    overflow: hidden;
}

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

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


/* Service Amenities section end */

/* rooms start */


.our-rooms-slider-image {
    width: 100%;
    height: 355px;
    overflow: hidden;
    border-radius: 10px;
}

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

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


.our-rooms-slider-content {
    padding: 40px 20px;
}

.our-rooms-slider-content h4 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #010101;
}

.our-rooms-slider-content p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #787878;
    text-transform: capitalize;
}

.our-room .owl-theme .owl-nav {
    margin-top: 0px;
}

.our-room .owl-carousel .owl-nav button.owl-next,
.our-room .owl-carousel .owl-nav button.owl-prev {
    width: 50px;
    height: 50px;
    background-color: rgba(170, 132, 83, 0.2);
    color: var(--primary);
    border-radius: 50px;
    font-size: 24px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    margin: 0;
    transition: all ease 0.5s;
}

.our-room .owl-carousel .owl-nav button.owl-prev {
    right: 108%;
}

.our-room .owl-carousel .owl-nav button.owl-next {
    left: 108%;
}

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

.our-rooms-slider-item .prime-btn {
    text-transform: capitalize;
    font-weight: 400px;
}

/* rooms end */

/* Photo Gallery section start */

.photo-gallery-wrap {
    width: 100%;
    height: 380px;
    border-radius: 10px;
    overflow: hidden;
    display: block;
    position: relative;
}

.photo-gallery-wrap.h-784 {
    height: 784px;

}

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

.gallery .prime-btn {
    margin-top: 70px;
    text-transform: capitalize;
}

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


/* Photo Gallery section end */

/* Feedback Section start */
.feedback {
    position: relative;
}

.feedback::before {
    content: '';
    background-image: url('../images/sec-bg-img/feedback-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    width: 1016px;
    height: 666px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* .feedback-item {
    margin-top: 20px;
} */

.star-wrap svg {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 30px;
    margin-right: 14px;
}

.feedback-item p {
    font-size: 28px;
    line-height: 54px;
    text-transform: capitalize;
    margin-bottom: 60px;
    text-align: center;
    color: #666;
    margin: 0 140px;
}

.feedback-item h5 {
    margin-top: 40px;
    font-size: 40px;
    color: #010101;

}

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

.feedback-wrapper .owl-theme .owl-dots {
    top: 108%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    flex-direction: row;

}

.feedback-wrapper .owl-carousel button.owl-dot {
    width: 16px;
    height: 16px;
    background: #C0C0C0;
    margin-bottom: 0;
    margin-right: 6px;
}

.feedback-wrapper .owl-carousel button.owl-dot.active {
    background: var(--primary);
    width: 16px;
    height: 16px;
}

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


/* Feedback Section end */


/* Booking Form style Start */
.booking-res.sec-spacing {
    padding: 50px 0 0 0;
}

.booking-res-image-wrapper {
    width: 100%;
    height: 850px;
    margin-left: -12px;
    position: relative;
}

.booking-res-image-wrapper img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

.booking-res-image-wrapper form {
    position: absolute;
    width: 544px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.web-res-form {
    position: relative;
    background-color: var(--white);
    padding: 70px 60px;
    border-bottom-right-radius: 90px;
    z-index: 11;

}

.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: 287px;
    height: 296px;
    bottom: 0;
    right: 0;
    z-index: -2;
}


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


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

.form-control {
    font-size: 18px;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 0px;
    background-color: #F8F5F0;
    font-weight: 400;
    line-height: 1;
    color: #828282;
    padding: 22px 26px;
    -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: #F8F5F0;
    color: #828282;
}

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


.web-res-form .prime-btn {
    width: 100%;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 4px;
    background-color: var(--primary);
    padding: 24px 36px;
}

.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-res-content-wrapper {
    padding: 0 100px 0 40px;
}

.booking-res-content-wrapper h6 {
    font-size: 18px;
    text-transform: capitalize;
    line-height: 38px;
    text-align: justify;
    color: #787878;
}

.booking-res-content-wrapper .sec-title {
    margin-bottom: 40px;
}

.booking-info {
    margin-top: 60px;
}

.booking-info-icon img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 12px;
}

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

.booking-info-content span {
    font-size: 20px;
    line-height: 1;
    color: #010101;
    margin-bottom: 8px;

}

.booking-info-content p {
    font-size: 24px;
    line-height: 30px;
    color: #010101;

}

/* Booking Form style End */

/* Footer start */
.footer-wrap {
    background-color: #222222;
}

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

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

.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: 40px;
    color: white;
    margin-bottom: 40px;
    text-transform: capitalize;
    text-align: justify;
    letter-spacing: 0.3px;
}

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

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

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

.ft-adaLink::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    width: 90%;
    height: 1px;
}

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

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

.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 {
    line-height: 34px;
    color: var(--white);
    font-size: 18px;
    margin-bottom: 36px;
    transition: all ease-in-out 0.5s;
    word-wrap: break-word;
    letter-spacing: 0.3px;
}

.ft-add svg,
.footer-add a svg {
    font-size: 18px;
    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: 16px;
    letter-spacing: 0.5px;
    color: white;
}

/* Footer end */

/* Exclusive Offers section Start */
.exclusive-offer.sec-spacing {
    padding: 120px 0 0;
}

.exclusive-offer-main-wrap {
    width: 100%;
    height: 744px;
    position: relative;
    overflow: hidden;
}

.exclusive-offer-main-wrap.h-360 {
    height: 360px;
}

.exo-sub-wrap h2 {
    font-size: 42px;
}

/* .exclusive-offer-main-wrap::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.90) 0%, rgba(0, 0, 0, 0.63) 47.6%, rgba(102, 102, 102, 0.36) 100%);

} */

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

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

.exclusive-offer-contain {
    position: absolute;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
    z-index: 11;

}

.exclusive-offer-icon {
    width: 80px;
    height: 80px;
}

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


.viewMore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
}

.viewMore span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    background-color: var(--primary);
    border-radius: 100%;
    margin-left: 8px;
}

.viewMore span svg {
    font-size: 8px;
    color: var(--white);

}

/* Exclusive Offers section End */


/* Service Amenities section 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-item {
    position: relative;
    width: 100%;
    height: 200px;
    border-bottom: 3px solid var(--primary);
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    background: #F8F5F0;
    transition: 0.3s ease-in-out;
    padding: 40px 10px 30px;
    z-index: -1;
}

.service-page .service-amenities-item h4 {
    font-size: 22px
}

/* .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-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0%;
    left: 0px;
    top: auto;
    bottom: 0px;
    z-index: -1;
    background: var(--primary);
    transition: 500ms;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
}


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

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

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

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

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

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

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

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

.service-page .service-amenities-item:hover h4 {
    color: white;

}

/* Service Amenities section End */


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

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

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

}

.info-wrapper {
    padding: 70px 20px;

    /* background-color: var(--sec-bg-color); */
    /* box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px; */
}

.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: 34px;
    margin-bottom: 18px;
    color: #000000;
}

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

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

}

/* ---- 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: 16px;
    line-height: 1.5;
    padding: 0 0 10px;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    border-bottom: 1px solid #f2f2f2;
}

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

.ada-feature-item:last-child {
    border-bottom: none;
}

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

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

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

.note {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}

/* -- // Ada feature Page Styles End // -- */



/* -- // Attraction Page Styles Start // -- */
.attraction-main-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    /* align-items: center; */
    margin-bottom: 60px;
}

.attraction-image-wrapper,
.attraction-content-wrapper {
    width: 50%;
}


.attraction-image-wrapper {
    /* width: 680px; */
    height: 480px;
    overflow: hidden;
    z-index: 111;
}

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

.attraction-content-wrapper:hover .attraction-image-wrapper img,
.attraction-image-wrapper:hover img {
    transform: scale(1.08);
}

.attraction-content-wrapper {
    z-index: 111;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    margin-top: 4%;
    z-index: 11;
    border-radius: 8px;

}

.attraction-content-wrapper.pedding-left {
    padding: 50px 40px 50px 100px;
    margin-left: -5%;
}

.attraction-content-wrapper.pedding-right {
    padding: 50px 100px 50px 50px;
    margin-right: -5%;
}


.attraction-content-wrapper h5 {
    font-size: 34px;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.att-content-text {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
    letter-spacing: 0.3px;
    background-color: var(--primary);
    padding: 12px 20px;
    color: white;
}

.att-content-text:last-child {
    margin-bottom: 0;
}


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