:root {
    /* Fonts */
    --font-primary: "Lora", serif;
    --font-cmt: "Cormorant Garamond", serif;


    /*Colors */
    --black: #122223;
    --white: #ffffff;
    --primary: #F28500;
    --secondary: #787878;
    --sky-blue: #F2F2F2;

}



/* Default styles start */

*,
*:before,
*:after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;

}

body {
    font-family: var(--font-primary);
    line-height: 1.25;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 500;
    margin: 0;
}

p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
    padding: 0;
    color: var(--secondary);
}


/* heading */
.h1,
h1 {
    font-size: 68px;
}

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

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-cmt {
    font-family: var(--font-cmt);
}



/* 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: 500;
    font-family: var(--font-primary);
    line-height: 1;
    letter-spacing: 1px;
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid transparent;
    border-radius: 1px;
    padding: 17px 26px;
    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;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scale(0.2, 1);
    transform: scale(0.2, 1);
    background-color: #000000;
}

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

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

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

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

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

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

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

.spinner-wrapper {
    width: 100%;
    height: 100%;
    background-color: #f8f6f6;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    position: relative;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
}

.spinner::before,
.spinner:after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.spinner:before {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, #3b0000 0%, #BC8C33 100%);
    animation: spin .5s infinite linear;
}

.spinner:after {
    width: 90%;
    height: 90%;
    background-color: #f3f0f0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Default styles end */


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

/* Header styles start */
header {
    width: 100%;
    left: 0;
    right: 0;
}

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

}

.header-top a,
.header-top i,
.head-top-add {
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.5px;
    z-index: 111;
    position: relative;
}

.navbar {
    padding: 6px 220px;
    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: 109px;
    height: 98px;
    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: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    width: max-content;
    color: #010101;
    margin-right: 50px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}


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


.nav-link:hover:after,
.nav-link:focus:after,
.nav-item.active .nav-link:after {
    width: 60%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.navbar-nav {
    margin-left: auto;
    /* margin-right: auto; */
}

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

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

/* Header styles end */


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

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

.hero-banner::before,
.page-hero-banner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #000000;
    /* background-image: linear-gradient(to right, black, rgba(0, 0, 0, 0.5)); */
    opacity: .4;
}

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

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


.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 {
    width: 100%;
    padding: 0 20px;
    z-index: 11;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.page-hero-content h1 {
    /* font-size: 56px; */
    letter-spacing: 1px;
}

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

/* hero-content of all page end */

/* breadcrumb style Start */
.page-hero-banner .breadcrumb-wrap {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: -28px;
    text-align: center;
}

.page-hero-banner .breadcrumb {
    position: relative;
    display: inline-block;
    padding: 16px 30px 14px;
    background-color: var(--primary);
    margin-bottom: 0;
}

.page-hero-banner .breadcrumb li {
    font-size: 16px;
    position: relative;
    line-height: 1.2em;
    font-weight: 500;
    display: inline-block;
    color: var(--white);
    border-right: 1px solid #d7c397;
    margin-right: 15px;
    padding-right: 15px;
}

.page-hero-banner .breadcrumb li:last-child {
    border: none;
    margin-right: 0px;
    padding-right: 0px;
    padding-left: 0;
}

.page-hero-banner .breadcrumb li a {
    color: var(--white);
    font-size: 15px;
    font-weight: 400;
}

.page-hero-banner .breadcrumb-item+.breadcrumb-item::before {
    display: none;
}


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

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

/* Hero styles start */


/* owl dots start */
.owl-theme .owl-dots .owl-dot span {
    display: none;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 0px;
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-carousel button.owl-dot {
    width: 30px;
    height: 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.8);
    margin: 0 8px;


}

.owl-carousel button.owl-dot.active {
    width: 37px;
    background: var(--primary);
}


/* owl dots end */

/* Hero Section end */



/* About Section start */

.about-image-wrap {
    width: 100%;
    overflow: hidden;
}

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

}

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


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

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


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

.sec-title h2 {
    line-height: 56px;
}

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

.about-content-wrap p {
    text-transform: capitalize;
    font-size: 16px;
    line-height: 36px;
    color: #787878;
    text-align: justify;
    letter-spacing: 0.5px;
    margin-bottom: 20px;

}

.about .prime-btn {
    margin-top: 36px;
}

/* About Section end */


/* Service amenities Section start */
.service {
    background-color: #010101;
}

.sec-title p {
    max-width: 740px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0.5px;
    padding-top: 20px;
    text-transform: capitalize;
}

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

.service-amenities-grid-item {
    width: 100%;
    height: 198px;
    padding: 32px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid white;
}

.service-amenities-img {
    width: 54px;
    height: 54px;

}

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


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


.service-amenities-grid-item span {
    display: block;
    height: 26px;
    width: 1px;
    background: white;
    margin: 18px 0;
}

.service-amenities-grid-item h5 {
    font-size: 20px;
    line-height: 1.5;
    text-transform: capitalize;

}

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

/* Service amenities Section end */


/* Booking reservation Section Start */
.booking-res {
    position: relative;
}

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

.booking-res::after {
    content: '';
    background: #010101;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100px;
    left: 0;
    right: 0;
    z-index: -1;
}

.booking-res-wrapper {
    padding: 100px 60px;
}

.star-wrap {
    max-width: max-content;
    margin-bottom: 20px;
}

.booking-res p {
    text-transform: capitalize;
    font-size: 16px;
    line-height: 36px;
    letter-spacing: 0.5px;
    color: #787878;
    margin-bottom: 50px;
    padding-right: 50px;
    text-align: justify;
}

.booking-info-card {
    margin-bottom: 50px;
}

.booking-info-card-icon {
    width: 50px;
    height: 50px;
    margin-right: 12px;
}

.booking-info-card-content span {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    color: #122223;
}

.booking-info-card-content a {
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0.5px;
    color: #122223;
}



/* Booking Form style Start */

.web-res-form {
    background-color: var(--white);
    border-radius: 4px;
    padding: 50px;
    box-shadow: 0px 1px 40px 2px rgba(0, 0, 0, 0.14);

}

.web-res-form h2 {
    font-size: 40px;
    color: #122223;
    margin-bottom: 40px;
}

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



.form-control {
    font-size: 16px;
    height: 54px;
    width: 100%;
    border: 1px solid #C9C9C9;
    border-radius: 0px;
    background-color: rgba(247, 246, 244, 0.5);
    font-weight: 400;
    line-height: 1;
    color: var(--black);
    padding: 14px 20px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-family: var(--font-primary);
}

.form-control:focus {
    border: 1px solid #C9C9C9;
    outline: 0;
    box-shadow: none;
}

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

.web-res-form .prime-btn {
    width: 100%;
    text-transform: uppercase;
    font-size: 18px;
    padding: 18px 26px;
    line-height: 1;
    letter-spacing: 2px;
    background-color: var(--primary);
    margin-top: 30px;
}


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

/* Booking Form style End */

/* Booking reservation Section end */


/* OUR Rooms section Start */

/* .our-room-slider-item {
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
} */

.our-room-slider-img {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.room-book {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    top: 20px;
    left: 20px;
    width: 80px;
    height: 36px;
    border: 1px solid white;
    border-radius: 2px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    background-color: transparent;
}

.our-room-slider-img img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    transition: all 0.3s;
}

.our-room-slider-img:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.our-room-slider-content {
    /* height: 200px; */
    position: relative;
    padding: 20px 30px;
    background-color: var(--white);
    border: 1px solid rgba(30, 30, 30, 0.10);
    border-top: none;
}

.our-room-slider-content p {
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    margin-bottom: 24px;
    margin-bottom: 13px;
}

.our-room-slider-content h4 {
    text-transform: capitalize;
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 24px;
}

.icons-wrap {
    width: max-content;
    margin-bottom: 20px;
}

.icons-img {
    width: 18px;
    height: 18px;
}

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

}

.icons-wrap span {
    display: block;
    width: 1px;
    height: 12px;
    margin: 0 16px;
    background: rgba(97, 97, 97, 0.3);
}

.our-room-slider-content-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(30, 30, 30, 0.10);
}

.our-room-slider-content-bottom h6 {
    font-size: 16px;
    line-height: 1;
}

.our-room-slider-star-wrap img {
    width: 16px;
    height: 16px;
    margin-right: 8px;

}

.our-room-slider .owl-theme .owl-nav.disabled+.owl-dots {
    bottom: -12%;
}

/* OUR Rooms section end */


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

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

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

.feedback-slider-item {
    height: 480px;
    position: relative;
    background-color: var(--white);
    padding: 50px 40px;
}

.feedback-star-wrap {
    width: max-content;
    margin-bottom: 24px;
}

.feedback-star-wrap img {
    width: 14px;
    height: 14px;
    object-fit: contain;
    margin-right: 10px;
}

p.feedback-content {
    font-size: 16px;
    line-height: 34px;
    font-style: italic;
    color: #616161;
    text-align: justify;
    letter-spacing: 0.5px;
}

.avatar-image {
    width: 68px;
    height: 68px;
    margin-right: 16px;
}

.avatar-image img {
    width: inherit;
    height: inherit;
    object-fit: contain;

}

.avatar-name {
    font-size: 20px;
    font-style: italic;
    letter-spacing: 0.5px;
}

.feedback-slider-item .divider {
    display: block;
    height: 30px;
    width: 1px;
    background: #C19D68;
    margin: 22px 0;

}

.feedback-slider .owl-theme .owl-nav.disabled+.owl-dots {
    bottom: -15%;
}

.feedback-slider-item::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    background: var(--primary);
    width: 80%;
    height: 110%;
    z-index: -1;
    transform: translateX(-50%);
}

.feedback-slider .owl-stage-outer {
    padding: 50px 0;
}

.feedback-icon {
    width: 70px;
    height: 70px;
    border-radius: 100%;
    background: #FFE2BE;
    padding: 12px;
    position: absolute;
    top: -40px;
    right: 20px;
}

/* Feedback section end */


/* Photo gallery section start*/
.gallery {
    position: relative;
}


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

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

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

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

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


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

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

.gallery .prime-btn {
    margin-top: 70px;
    padding: 17px 32px;
}

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



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

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

.footer-wrapper h3,
.footer-wrapper p {
    z-index: 111;
    position: relative;
}

.footer-bottom {
    padding: 8px 10px;
    z-index: 111;
    position: relative;
}

.footer-bottom p {
    font-size: 16px;
    letter-spacing: 0.5px;
    line-height: 36px;
}

.footer-link-wrap {
    padding: 38px 0;
    margin-top: 50px;
    z-index: 111;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-link-wrap::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.footer-link {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    margin-right: 50px;
    transition: all ease-in-out 0.3s;
}

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

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

.ft-about-us h3,
.ft-contact-us h3 {
    font-size: 46px;
    line-height: 26px;
    margin-bottom: 36px;
}

.ft-about-us {
    /* max-width: 520px; */
    z-index: 111;
    position: relative;
    padding-right: 60px;
}

.ft-about-us p {
    text-align: justify;
    text-transform: capitalize;
    font-size: 16px;
    line-height: 38px;
    letter-spacing: 0.5px;
    margin-bottom: 38px;
    color: var(--white);
    z-index: 111;
    position: relative;
}

.ft-contact-us p,
.ft-contact-us a {
    font-size: 16px;
    letter-spacing: 0.5px;
    line-height: 30px;
    color: var(--white);
    z-index: 111;
    position: relative;
    font-weight: 400;
    margin-bottom: 30px;
    word-break: break-word;
    transition: all ease-in-out 0.3s;
}

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

.ft-contact-us {
    position: relative;
    padding-left: 80px;
    /* padding-right: 100px; */
}



.ft-contact-us::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.3);

}

.ft-contact-us a {
    display: block;

}

.checkIn-checkOut-text span {
    display: block;
    font-size: 16px;
    line-height: 1.2;
    z-index: 111;
    position: relative;
    margin-bottom: 8px;

}

.footer-wrapper .prime-btn {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    padding: 18px 26px;
    /* width: 176px;
    height: 54px; */
}

.footer-wrapper .prime-btn::before {
    background-color: var(--primary);
}

.footer-wrapper .ft-about-us .prime-btn svg {
    color: var(--white);
}



.calendar-icon {
    z-index: 111;
    position: relative;
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    margin-right: 12px;
}

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

/* Footer End*/


/*-- Exclusive Offers section Start --*/
.feature-row .image-column .inner-column {
    margin-right: -210px;
    position: relative;
    z-index: 9;
}

.feature-row {
    border-top: 1px solid rgba(97, 97, 97, 0.15);
    padding-top: 55px;
    padding-bottom: 55px;
}


.exclusive-offer figure {
    margin: 0 0 1rem;
    width: 624px;
    height: 360px;
}

.overlay-anim {
    position: relative;
}

.exclusive-offer figure.image {
    margin-bottom: 0;
}

.feature-row .image-column .image {
    overflow: hidden;
}

.overlay-anim:before {
    background: hsla(0, 0%, 100%, .3);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}

.overlay-anim:hover:before {
    height: 100%;
    opacity: 0;
    transition: all .4s linear;
}

.feature-row .image-column .image img {
    width: 100%;
    height: 100%;
    transition: all .3s ease;
}

.feature-row .content-column .inner-column {
    position: relative;
    padding: 30px 0 20px 240px;
}

.feature-row.center .content-column .inner-column {
    padding: 50px 0 20px 20px;
}

.feature-row.center .exo-number-wrap {
    right: -200px;
    top: -40px;
    left: auto;
}

.feature-row.center .image-column .inner-column {
    margin-right: 0;
    margin-left: 240px;
}


.exclusive-offer .sec-sub-title {
    margin: 0 0 18px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 6px;
}

.exclusive-offer .sub-sec-title h2 {
    font-size: 36px;
    letter-spacing: 0;
}

.content-box {
    position: relative;
    padding-left: 80px;
}

.exo-number-wrap {
    position: absolute;
    font-size: 46px;
    left: 0;
    top: 0;
    line-height: 1;
}

.content-box .divider {
    width: 1px;
    height: 30px;
    background: rgba(97, 97, 97, 0.34);
    margin: 16px 0;
    margin-left: 6px;
}


.exclusive-offer .content-box p {
    font-size: 16px;
    color: #787878;
    line-height: 34px;
    margin-bottom: 24px;
    width: 540px;
    word-break: break-word;
    margin-bottom: 28px;
}

a.exo-arrow img {
    width: 30px;
    color: #787878;
}

/*-- Exclusive Offers section End --*/


/*-- Service Amenities section Start --*/

.service-page .service-amenities-icon-wrap {
    display: grid;
    grid-template-columns: repeat(4, 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;
}

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

.general-other-policies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.general-other-policies-wrap {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    width: 100%;
    height: 100%;
}



.policies-content-wrap {
    position: relative;
    text-transform: capitalize;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 16px;
    padding-left: 20px;
}


.policies-content-wrap::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: var(--primary);
  
}


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

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

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

/*-- Service Amenities section End --*/



/* //-- Photo-gallery page Style start --// */
.gallery-page .photo-gallery-wrap {
    height: 380px;
}

/* //-- Photo-gallery page Style 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;
    letter-spacing: 1px;
}

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




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