:root {
    /* Fonts */
    --font-primary: "Inter", sans-serif;
    --font-fraunces: "Fraunces", serif;

    /*Colors */
    --black: #322F2F;
    --white: #ffffff;
    --primary: #FFBE58;
    --secondary: #787878;
    --sky-blue: #F8F6F3;

}



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

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

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

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

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



/* 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: 0px;
    background-color: var(--primary);
    color: var(--black);
    border: 1px solid transparent;
    border-radius: 0px;
    padding: 10px 16px;
    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 {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, .363);
    width: 170px;
    height: 60px;
    transform: translate3d(-90%, 15px, 0) rotate3d(0, 0, 1, 45deg);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.prime-btn:hover::after {
    background-color: rgba(255, 255, 255, .363);
    left: 100%;
    transform: translate3d(-10%, -30px, 0) rotate3d(0, 0, 1, 70deg);
    z-index: 0;
}

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



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


/* 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: #BC8C33;
    color: #fff;
}

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

/* 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: #000000;
    color: var(--white);
    padding: 14px 200px;

}

.header-top a,
.header-top i,
.head-top-add {
    color: var(--white);
    font-size: 14px;
    font-weight: 300;
}

.header-top span {
    color: rgb(255, 255, 255, 0.36);
}

.navbar {
    padding: 6px 200px;
    /* background-color: var(--sec-bg-color); */
    /* box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06); */
    z-index: 222;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;

}


.fixed-header {
    position: sticky;
    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: 160px;
    height: 96px;
    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: uppercase;
    position: relative;
    padding: 0;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0px;
    width: max-content;
    color: #000000;
    margin-right: 50px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

/* .nav-link:after {
    position: absolute;
    content: " ";
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    bottom: -5px;
    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;
}


/* Header styles end */


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

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

.hero-banner::before,
.page-hero-banner::before,
.exclusive-offer::before,
.feedback::before,
.footer::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #000000;
    opacity: .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.jpg');
}

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

.page-hero-banner::before {
    background-color: #000000;
    opacity: .4;
}

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


.hero-text-wrapper {
    position: absolute;
    top: 80%;
    left: 15%;
    transform: translateY(-50%);
    z-index: 111;
}

.hero-text {
    width: 720px;
    padding: 28px 80px;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    background-color: rgba(0, 0, 0, 0.8);
}

.hero-text h1 {
    text-transform: capitalize;
    line-height: 60px;
    letter-spacing: 0.5px;
    text-align: center;
}



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

/* Hero style end */

/* About Section Start */
.about.sec-spacing {
    padding: 120px 0 240px 0;
}

.sec-title {
    position: relative;
    margin-bottom: 35px;
}

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

.centered {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.sec-title.centered .separate:after {
    left: 50% !important;
    margin-left: -15px !important;
}

.sec-title h2 {
    position: relative;
    line-height: 1.2;
    padding-bottom: 18px;
}

.sec-title .separate {
    position: relative;
    width: 130px;
    float: left;
}

.sec-title .separate:before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 130px;
    height: 2px;
    background-color: #cccccc;
}

.sec-title .separate:after {
    position: absolute;
    content: '';
    left: 0px !important;
    bottom: 0px;
    width: 30px;
    height: 4px;
    background-color: var(--primary);
}

.sec-title p {
    text-transform: capitalize;
    color: #626262;
    margin-top: 30px;
    line-height: 34px;
    letter-spacing: 0.5px;
    width: 840px;
}

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

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

.overflow-h {
    overflow: hidden;
}

.about-image {
    position: relative;
    z-index: 111;
}

.about-image img {
    width: 100%;
    height: 515px;
    object-fit: cover;
    position: relative;
    z-index: 111;
    transition: all ease-in-out 0.4s;
}

.about-image::after {
    content: '';
    position: absolute;
    background-image: url('../images/sec-bg-img/bk-shape.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 350px;
    height: 350px;
    left: -40px;
    bottom: -40px;
    z-index: 11;
}

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

.about-content-image {
    width: 296px;
    height: 350px;
    overflow: hidden;

}

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

}

.about-content-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.about-content {
    padding: 0 38px 0 12px;
    width: calc(100% - 296px);
}


.about-content p {
    text-transform: capitalize;
    text-align: center;
    font-size: 15px;
    color: #787878;
    line-height: 34px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;

}

.read-more-text {
    position: relative;
    /* text-decoration: underline; */
    display: block;
    transition: all ease-in-out 0.3s;
    margin-top: 40px;
    letter-spacing: 0.5px;
}

.read-more-text::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 100%;
    /* color: var(--primary); */
    background-color: var(--primary);
    transition: all ease-in-out 0.3s;
}


.read-more-text span {
    color: var(--black);
    z-index: 111;
    position: relative;
}

.read-more-text span::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    width: 100%;
    height: 1px;
}

.read-more-text:hover::after {
    background: #f7a000;
}

/* About Section End */


/* Service Amenities section Start */

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

}

.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 {
    line-height: 34px;
    letter-spacing: 0.5px;

}

.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 Amenities section End */


/* Exclusive Offers section Start */
.exclusive-offer {
    background-image: url("../images/sec-bg-img/exe-offer.jpg");
    min-height: auto;
}

.exclusive-offer::before {
    opacity: .75;
}

.exclusive-offer-wrap {
    position: relative;
    z-index: 111;
    background-color: var(--white);
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
}

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

.exclusive-offer-image img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    transition: all ease-in-out 0.4s;
}

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

.exclusive-offer-content {
    padding: 30px 24px 40px;
}

.exclusive-offer-content-top {
    margin-bottom: 16px;
}

.exclusive-offer-content-top h4 {
    font-size: 26px;
    line-height: 34px;
    letter-spacing: 0.5px;
}

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

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

.exclusive-offer-content p {
    font-size: 15px;
    line-height: 30px;
    margin-bottom: 30px;
}

.exclusive-offer-content .read-more-text {
    margin-top: 0;
}

.exclusive-offer-content .read-more-text::after {
    width: 48px;
    height: 48px;

}

.exclusive-offer-content .read-more-text span {
    font-size: 15px;
    text-transform: capitalize;
    letter-spacing: 0;
}

.exclusive-offer-content .read-more-text span::after {
    display: none;
}

/* Exclusive Offers section End */


/* Our rooms section Start */
.our-rooms-slider-image {
    width: 100%;
    height: 355px;
    overflow: hidden;
}

.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: 50px 20px;
}

.our-rooms-slider-content h4 {
    margin-bottom: 12px;
}

.our-rooms-slider-content p {
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 26px;
}

.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: rgb(255, 190, 88,0.3);
    color: var(--primary);
    border-radius: 50px;
    font-size: 25px;
    transition: all ease 0.3s;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    margin: 0;
}

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


/* Gallery section Start */

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

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

.photo-gallery-image {
    height: 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;
    width: max-content;
    padding: 18px 22px;
    text-transform: uppercase;
}

/* Gallery section End */


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

.feedback::before {
    opacity: .5;
}

.feedback-slider {
    background-color: rgba(0, 0, 0, 0.75);
    padding: 70px 160px 0px 160px;
    margin: 0 120px;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.feedback-slider-wrap p {
    text-align: center;
    font-size: 18px;
    line-height: 42px;
    letter-spacing: 0.5px;
    font-style: italic;
    text-transform: capitalize;
}

.feedback-name {
    font-size: 20px;
    margin-top: 30px;
    position: relative;
    padding-right: 150px;
    margin-bottom: 100px;
}

.feedback-name::after {
    content: '';
    position: absolute;
    background-image: url('../images/icons/feedback-icon.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 244px;
    height: 62px;
    top: 70%;
    left: 0;
}

/* Feedback-Testimonial section End */


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

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

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

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

.footer-grid-item p {
    font-size: 16px;
    line-height: 36px;
    margin-bottom: 40px;
    width: 430px;
    letter-spacing: 0.5px;
}

.ada-link {
    position: relative;
}

.ada-link::after {
    content: '';
    position: absolute;
    width: 90%;
    height: 1px;
    bottom: -10px;
    right: 0;
    background: #ffffff94;
}

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

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

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

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

.footer-link {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 26px;
    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: 1.8;
    margin-bottom: 26px;
    transition: all ease-in-out 0.5s;
    word-wrap: break-word;
}

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

}

/* Footer end */
/* BOOKING RESERVATION SECTION START */
.booking-res-wrapper {
    padding: 70px;
}

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

.booking-res-content-wrapper .sec-title h2 {
    font-size: 38px;
}

.booking-res-content-wrapper p {
    font-size: 15px;
    line-height: 32px;
    margin-bottom: 16px;
    padding-right: 116px;
}

.booking-info-section {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px 0px;
    width: 100%;
}

.booking-info-grid-item {
    width: 50%;
}

.booking-info-grid-item-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    margin-right: 12px;
}

.booking-info-grid-item p {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1;
}

.booking-info-grid-item span {
    font-size: 18px;
    line-height: 1.2;
    color: rgba(50, 47, 47, 70%);
}

/* Booking Form */
.booking-res-form {
    background-color: #131B1E;
    padding: 60px 50px;
    max-width: 518px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.booking-res-form h3 {
    margin-bottom: 32px;
}

.booking-res-form form {
    width: 100%;
}

.web-res-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    z-index: 111;
    position: relative;
}

.form-control {
    font-size: 16px;
    width: 100%;
    border: 1px solid rgba(172, 172, 172, 30%);
    border-radius: 0px !important;
    background-color: transparent;
    font-weight: 300;
    color: #ACACAC;
    padding: 10px 26px;
    height: 60px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.form-control:focus {
    border: 1px solid rgba(172, 172, 172, 30%);
    background-color: transparent;
    outline: 0;
    color: #ACACAC;
    box-shadow: none;
}


.input-group {
    position: relative;
}

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

.web-res-form .prime-btn {
    width: 100%;
    font-weight: 500;
    text-transform: uppercase;
    height: 60px;
    color: var(--black);
    letter-spacing: 10px;
    margin-top: 10px;
}

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

.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

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

/* Booking form end */

/* BOOKING RESERVATION SECTION END */

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


/* ---- Service page start ---- */
.service-page .service-amenities-icon-wrap {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 60px 30px;
    z-index: 111;
}

.service-page .service-amenities-icon-item {
    padding: 30px 8px;
    border-radius: 8px;
    background-color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
}

.service-page .service-amenities-icon {
    width: 84px;
    height: 84px;
    border: 1px solid var(--primary);
    border-radius: 6px;
    padding: 18px;
    margin-bottom: 30px;
    margin-right: 0;
}

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

.service-page .service-amenities-icon-item h5 {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

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

.service-page-booking-wrapper.sec-spacing {
    padding: 80px 0;
}

.service-page-book-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 40px;
}

.service-page-book-inner-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.service-page-book-icon img,
.service-page-book-inner-wrap-left-icon img {
    width: inherit;
    height: inherit;
    object-fit: contain;
}


.service-page-booking-wrapper .booking-wrapper-link {
    color: var(--black);
    margin-bottom: 40px;
    font-size: 18px;
    letter-spacing: 2px;
    font-style: italic;
    text-align: center;
}

.service-page-book-inner-wrap-left {
    margin-right: 20px;
}

.service-page-book-inner-wrap-right {
    margin-left: 20px;
}

.service-page-book-inner-wrap-left-icon {
    width: 60px;
    height: 60px;
    margin-right: 10px;
}

.service-page-book-inner-wrap-left P {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 1px;
}

.service-page-booking-wrapper h3 {
    font-size: 48px;
    text-transform: capitalize;
    margin-bottom: 30px;
    text-align: center;
}

/* ---- Service page end ---- */

/* //-- Photo-gallery page Style Start --// */

.photo-gallery-page-wrapper .nav-pills {
    margin-bottom: 30px;
}

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

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

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

button:focus-visible {
    outline: none;
}

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

/* //-- Photo-gallery page Style 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 // -- */

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

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

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

}

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

.info-wrapper svg {
    font-size: 34px;
    margin-bottom: 30px;
}

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

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

}

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

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


/* ADA Feature start*/

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

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

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

}

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

}

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

/* ADA Feature end*/