:root {
    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-jost: 'Jost', sans-serif;

    /*Colors */
    --black: #13182B;
    --white: #ffffff;
    --primary: #981924;
    --secondary: #787878;
    --sec-bg-color: #F6F3E9;

}


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

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

h3,
.h3 {
    font-size: 30px;
}

h4,
.h4 {
    font-size: 24px;
}

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

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

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

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

.font-jost {
    font-family: var(--font-jost);
}



/* 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-section-color {
    background-color: var(--sec-bg-color);
}

.color-black {
    color: var(--black);
}

.color-white {
    color: var(--white);
}

.color-primary {
    color: var(--primary);
}

.color-secondary {
    color: var(--secondary);
}

/* 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: 1px;
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 10px 16px;
    max-width: 152px;
    width: 100%;
    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;
}

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

.prime-btn:hover {
    color: var(--primary);
    transition: all 0.3s ease-out;
}

.prime-btn::after {
    content: "";
    background: var(--white);
    color: var(--primary);
    position: absolute;
    z-index: -1;
    padding: 10px 16px;
    display: block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all 0.3s ease-out;
    transform: scale(0, 0) rotate(-180deg);
}

.prime-btn:hover::after {
    transform: scale(1, 1) rotate(0deg);
}


/* 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 */
header {
    width: 100%;
    left: 0;
    right: 0;
}

.header-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* padding: 10px 150px 10px 150px; */
    background-color: var(--primary);
    color: var(--white);
    font-size: 14px;
    line-height: 1px;
    height: 40px;
}

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

.head-top {
    line-height: 1;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.header-top i {
    color: var(--white);
}


.navbar {
    padding: 8px 0;
    /* 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: 80px;
    height: 104px;
    padding: 0;
    margin: 0;
    /* z-index: 111; */
}

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

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

.nav-link {
    text-transform: capitalize;
    position: relative;
    padding: 0;
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.5px;
    width: max-content;
    color: var(--black);
    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: #c92130;
    -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-wrapper {
    position: relative;
}

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

.hero-banner.hero-one {
    background-image: url(../images/hero-bg-images/index-hero-bg1.jpg);
}

.hero-banner.hero-two {
    background-image: url(../images/hero-bg-images/index-hero-bg2.jpg);
}

.hero-banner.hero-three {
    background-image: url(../images/hero-bg-images/index-hero-bg3.jpg);
}

/* owl-arrow */
:root {
    --hero-owl-arrow: 10%;
}

.owl-theme .owl-nav {
    margin-top: 0;

}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: rgba(255, 255, 255, 0.6);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 0;
    font-size: 30px;
    margin: 0;
}


.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover {
    background: rgb(255 255 255 / 30%);
    color: white;
}

.owl-carousel .owl-nav button.owl-next {
    right: var(--hero-owl-arrow);
}

.owl-carousel .owl-nav button.owl-prev {
    left: var(--hero-owl-arrow);
}

.owl-theme .owl-dots {
    position: absolute;
    left: 50%;
    bottom: 4%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.owl-theme .owl-dots .owl-dot span {
    width: 30px;
    height: 10px;
    margin: 0 4px;
    background: rgba(255, 255, 255, 0.3);

}

.owl-theme .owl-dots .owl-dot.active span {
    width: 40px;
    background: rgba(255, 255, 255, 0.5);
}

/**/

/* Booking form start */

.form-section {
    padding: 70px 0;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 49% 100%, 0 86%);

}

.form-label {
    font-size: 24px;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
    font-weight: 400;
}

.form-control {
    height: 50px;
    border: 1px solid transparent;
    border-radius: 4px;
    background-color: var(--white);
    color: #7E7E7E;
    padding: 15px 20px 15px 20px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.form-control:focus {
    color: #7E7E7E;
    border: 1px solid transparent;
    outline: 0;
    box-shadow: none;
}

.form-section .prime-btn {
    max-width: 100%;
    width: 100%;
    height: 52px;
    border: 2px solid var(--white);
}

.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #7E7E7E;
}

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

/* Booking form end */


/* About us form Start */
.about.sec-spacing {
    padding: 120px 0 150px 0;
}

.about-content h4 {
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.about-content h2 {
    margin-bottom: 15px;
    line-height: 1.2;
}

.about-content p {
    line-height: 2;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

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

.about-image-wrap {
    position: relative;
}

.about-img1 {
    width: 420px;
    height: 490px;
    position: relative;
    z-index: 11;
    overflow: hidden;

}

.about-img1::after {
    content: '';
    position: absolute;
    width: 414px;
    height: 504px;
    right: -9%;
    top: 19px;
    z-index: 1;
    background: transparent;
    border: 12px solid rgba(197, 58, 100, 0.1);
}

.about-img1 img {
    z-index: 11;
    position: relative;
}

.about-img1 img,
.about-img2 img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    transition: all ease-in-out 0.4s;
}
.about-img1:hover img,
.about-img2:hover img {
    transform: scale(1.08);
}

.about-img2 {
    width: 350px;
    height: 400px;
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 111;
    transform: translateY(-50%);
    border: 15px solid white;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06);
    overflow: hidden;

}

/* About us end */

/* Service Amenities Start */
.service-amenities {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 49% 100%, 0 86%);
}

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

.service-amenities-content h2 {
    line-height: 1.2;
    margin-bottom: 18px;
}

.service-amenities-content p {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    color: #787878;
}

.service-amenities-content a {
    position: relative;
    max-width: max-content;
    color: #981924;
    transition: all ease-in-out 0.5s;
}

.service-amenities-content a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    height: 1px;
    width: 100%;
    transform: translateX(-50%);
    background: #981924;
}

.service-amenities-content a:hover {
    color: #c1212e;
}

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

.service-amenities-icon {
    width: 90px;
    height: 90px;
    border: 1px solid #981924;
    border-radius: 6px;
    padding: 16px;
    margin-bottom: 30px;
}

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

.service-amenities-icon-item h5 {
    letter-spacing: 0.5px;
}

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

/* Service Amenities end */


/* Exclusive offers Start */
.sec-title {
    margin-bottom: 55px;
    text-align: center;
}

.sec-title h6 {
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.sec-title h2 {
    letter-spacing: 2px;

}

.exclusive-offers.sec-spacing {
    padding: 120px 0 280px 0;
}

.exclusive-offers-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.exclusive-offers-grid-item {
    position: relative;
}

.exclusive-offers-image {
    width: 100%;
    height: 320px;
    border-radius: 10px;
    overflow: hidden;
}

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

.exclusive-offers-grid-item:hover img {
    transform: scale(1.08);
}


.exclusive-offers-content {
    position: absolute;
    top: 82%;
    width: 90%;
    padding: 30px 25px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    min-height: 230px;
}

.exclusive-offers-content h4 {
    margin-bottom: 16px;
    line-height: 1;
}

.exclusive-offers-content p {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.5px;
    color: #787878;
    margin-bottom: 25px;
}

.exclusive-offers-content a {
    color: #981924;
    transition: all ease-in-out 0.4s;

}

.exclusive-offers-content a:hover {
    color: #c1212e;

}

/* Exclusive offers end */


/* Booking Wrapper start */
.booking.sec-spacing {
    padding: 105px 0 80px 0;
}

.booking {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 49% 100%, 0 86%);
}


.booking-wrapper {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.booking-wrapper h2 {
    line-height: 1.5;
    margin-bottom: 30px;
}

.booking-wrapper .prime-btn {
    margin-top: 40px;
}

.book-contact {
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;

}

.book-contact p,
.book-contact a {
    font-size: 20px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.book-contact a {
    color: #981924;
}

.book-contact a:hover {
    color: #c1212e;
}

/* Booking Wrapper end */

/* our Rooms Wrapper start */
.our-rooms.sec-spacing {
    padding: 120px 0 220px 0;
}

.our-rooms-slider-item {
    width: 100%;
    display: flex;
    padding: 26px;
    background-color: var(--white);
    margin: 10px;
    border-radius: 10px;
    /* box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06); */
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;

}

.our-rooms-slider-image {
    width: 300px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;

}

.our-rooms-slider-image img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    transition: all ease-in-out 0.4s;
}
.our-rooms-slider-item:hover img {
    transform: scale(1.08);
}


.our-rooms-slider-content {
    width: calc(100% - 300px);
    padding: 20px 0 0 24px;
}

.our-rooms-slider-content h3 {
    font-size: 22px;
}

.icon-wrap {
    margin-bottom: 20px;
    font-size: 14px;
}

.icon-wrap:last-child {
    margin-bottom: 25px;
}

.rooms-icon {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    margin-right: 8px;
}

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

.our-rooms-slider-content h3 {
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.our-rooms-slider-content p {
    font-size: 15px;
    color: #787878;
    line-height: 1.5;
    margin-bottom: 20px;
}

.icon-wrap {
    display: flex;
    align-items: center;
}

/* :root {
    --room-owl-arrow: 40%;
} */

.our-rooms .owl-carousel .owl-nav button.owl-next,
.our-rooms .owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 120%;
    /* left: 50%; */
    /* transform: translateX(-50%); */
    background: rgba(197, 58, 100, 0.3);
    color: #981924;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    font-size: 25px;
    margin: 0;
    transition: all ease-in-out 0.3s;
}

.our-rooms .owl-carousel .owl-nav button.owl-next:hover,
.our-rooms .owl-carousel .owl-nav button.owl-prev:hover {
    background: #981924;
    color: white;
}

.our-rooms .owl-carousel .owl-nav button.owl-prev {
    left: 46%;
}

.our-rooms .owl-carousel .owl-nav button.owl-next {
    right: 44%;
}

/* our Rooms Wrapper End */


/* Photo Gallery Wrapper Start */
.gallery-image-wrap {
    width: 100%;
    height: 318px;
    overflow: hidden;
    position: relative;
    display: block;
}

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

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

.gallery-image-wrap.mh-660 {
    height: 660px;
}

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

.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.6s;
    transition: all 0.6s;
}

.gallery-image-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 Wrapper End */

/* Feedback Wrapper start*/
.feedback {
    position: relative;
    background-image: url("../images/hero-bg-images/feedback.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
}

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

.feedback .sec-title {
    margin-bottom: 10px;
}

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

.feedback-wrapper-content {
    padding: 50px;
    background-color: var(--white);
    border-radius: 40px;
    max-width: 740px;
    margin: 0 auto;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;

}

.feedback-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 40px;
}

.feedback-name {
    font-size: 20px;
    color: #525252;
    margin-bottom: 40px;
}

.feedback-text {
    line-height: 2;
    letter-spacing: 1px;
    color: #525252;
    font-style: italic;
}

.feedback .owl-carousel .owl-nav button.owl-next,
.feedback .owl-carousel .owl-nav button.owl-prev {
    background: rgba(152, 25, 36, 0.3);
    color: #981924;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    font-size: 25px;
    transition: all ease-in-out 0.5s;
}

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

/* Feedback End*/

/* Footer start*/
.footer-wrapper {
    position: relative;
    background-image: url("../images/hero-bg-images/footer.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    z-index: 1111;
}

.footer-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #000000;
    opacity: .8;
}

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

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

.footer-bottom {
    padding: 16px 0;
    z-index: 1111;
    position: relative;
}

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

.footer-link-wrap {
    padding: 34px 0;
    margin-top: 50px;
    z-index: 1111;
    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.3);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

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

.footer-link:hover {
    color: #ff3444;
}

.ft-about-us h3,
.ft-contact-us h3 {
    font-size: 30px;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.ft-about-us {
    max-width: 575px;
    z-index: 1111;
    position: relative;
    padding-left: 20px;
}

.ft-about-us p {
    font-size: 16px;
    line-height: 2.2;
    letter-spacing: 1px;
    margin-bottom: 30px;
    color: var(--white);
    z-index: 1111;
    position: relative;
}

.ft-contact-us p,
.ft-contact-us a {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 1px;
    color: var(--white);
    z-index: 1111;
    position: relative;
    font-weight: 300;
    margin-bottom: 28px;

}

.ft-contact-us {
    position: relative;
    padding-left: 70px;
}

.ft-contact-us svg {
    color: #a70f1c;
}

.ft-contact-us::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 110%;
    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: 1111;
    position: relative;
    margin-bottom: 8px;

}

.footer-wrapper .prime-btn {
    padding: 8px 8px;
    max-width: 164px;
    height: 54px;

}

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

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






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

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


/* ---- Service page Style Start ---- */
.page-hero-banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 680px;
    position: relative;
    overflow: hidden;
}

.page-hero-banner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #000000;
    opacity: .3;
}

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

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

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

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

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

.page-hero-content {
    z-index: 11;
    position: absolute;
    bottom: 15%;
    left: 15%;
    text-align: left;
}

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

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

/* breadcrumb 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 end*/
.service-page .service-amenities-icon-wrap {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 60px 30px;
}

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


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

.attraction-image-wrapper {
    width: 620px;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

.attraction-content-wrapper {
    width: 640px;
    z-index: 111;
    background: var(--sec-bg-color);
    border-bottom: 1px solid var(--primary);
    border-top: 5px solid var(--primary);
    padding: 30px;
    border-radius: 8px;

}

.attraction-content-wrapper.one {
    margin-left: -5%;
}

.attraction-content-wrapper.two {
    margin-right: -5%;
}


.attraction-content-wrapper h6 {
    font-size: 22px;
    margin-bottom: 20px;

}

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

.att-content-text-left {
    width: 70%;
}

.att-content-text-right {
    width: 30%;
    text-align: end;
}

/* attraction page 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(0, 0, 0, 0.15) 0px 3px 3px 0px;
}

.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(--sec-bg-color);
    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.8;
    letter-spacing: 1px;
    word-wrap: break-word;
}

/* ADA Feature end*/