:root {
    /* Fonts */
    --font-primary: "Roboto", sans-serif;
    --font-playfair: "Playfair", serif;

    /*Colors */
    --black: #161717;
    --white: #ffffff;
    --primary: #594628;
    /* #244AB4,#00349B */
    --secondary: #787878;
    --sky-blue: #F2F2EC;

}


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

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

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

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

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

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



/* 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;
    text-transform: capitalize;
    font-family: var(--font-primary);
    line-height: 1;
    background-color: var(--black);
    color: var(--white);
    border: 1px solid transparent;
    border-radius: 2px;
    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;
    flex: 0 0 auto;
}


.prime-btn:before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    content: "";
    background-color: var(--primary);
    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: 110px 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 */
.main-wrapper {
    position: relative;
}

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


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

}


.fixed-header {
    animation: slideDown 0.50s ease;
    background-color: #000000c4;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06);

}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.fixed-header .prime-btn {
    background-color: var(--primary);
}

.fixed-header .prime-btn:hover::before {
    background-color: var(--black);

}

.fixed-header.navbar {
    padding: 20px 150px;
}


.navbar-brand {
    width: 250px;
    height: 76px;
    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: 18px;
    font-weight: 400;
    letter-spacing: 1.5px;
    width: max-content;
    color: var(--white);
    margin-right: 60px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--white);
}


.nav-link:hover,
.nav-link:focus,
.nav-item.active .nav-link {
    color: var(--white);
    -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: 70px;
}

/* Header styles end */

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

.hero-banner,
.page-hero-banner,
.about,
.service-booking-res,
.feedback,
.footer-wrap {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 800px;
}

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

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


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

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

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

/* hero-content of all page end */


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

.breadcrumb-item a {
    color: var(--white);
    transition: 0.3s;
    text-shadow: 1px 1px 2px #000000;
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-item.active,
.breadcrumb-item+.breadcrumb-item::before {
    color: #dfdede;
}


/* breadcrumb style end */


/* Back to top button */
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 5%;
    bottom: 5%;
    z-index: 9999;
    background: var(--primary);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: var(--black);
    color: #fff;
}

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

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

.hero-text-wrapper h1 {
    line-height: 120px;
    letter-spacing: 2.5px;
}



/* About Section Start */
.about {
    background-image: url('../images/sec-bg-img/about-bg.png');
    min-height: auto;
}

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

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

.about-content-wrap .sec-title span {
    font-size: 16px;
    letter-spacing: 6px;
    margin-bottom: 12px;
}

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

.about-content-wrap p {
    text-transform: capitalize;
    color: #787878;
    font-size: 18px;
    line-height: 42px;
    padding-right: 40px;
}

.about-content-wrap .prime-btn {
    margin-top: 40px;
    border-radius: 30px;
    padding: 18px 30px;
}




/* About Section End */

/* Service Amenities section start */

.service-amenities-grid-item {
    border-radius: 20px;
    background: var(--black);
    padding: 40px;
    height: 210px;
}

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

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

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

.service-amenities-grid-item h4 {
    font-size: 20px;
    color: var(--white);
    line-height: 32px;
}

.service-amenities-grid .prime-btn {
    padding: 18px 36px;
    margin-top: 60px;
    border-radius: 4px;
}

.service-booking-res {
    background-image: url('../images/sec-bg-img/service-bg.png');
    min-height: auto;
}



/* Booking Form */
.web-res-form {
    float: inline-end;
    width: 450px;
    padding: 40px 30px;
    background-color: var(--black);
    border-radius: 4px;
    z-index: 111;
    position: relative;
    box-shadow: 1px 2px 8px 0 rgba(0, 0, 0, 0.20);
}

.web-res-form h2 {
    margin-bottom: 30px;
    font-size: 42px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    font-family: var(--font-playfair);
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 10px;
}

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

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

.input-group {
    position: relative;
}

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

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

.web-res-form .prime-btn:hover::before {
    background-color: var(--black);
}

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

/* Service Amenities section end */


/* Exclusive Offers section Start */
.sec-title {
    margin-bottom: 55px;
}

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

.exclusive-offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    padding: 0 100px;
}

.exclusive-offer-grid-item {
    position: relative;
    transition: all ease-in-out 0.5s;
    /* overflow: hidden; */
}

.exclusive-offer-grid-item-img {
    height: 610px;
    width: 100%;
}

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

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

.exclusive-offer-grid-item-icon {
    width: 128px;
    height: 128px;
    border-radius: 100%;
    background-color: var(--black);
    padding: 30px;
    position: absolute;
    top: -50px;
    left: -40px;
    z-index: 111;
}

.exclusive-offer-grid-item-icon:hover img {
    transform: rotateY(360deg);
    transition: 0.9s;
}

.exclusive-offer-grid-item-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 180px;
    padding: 50px;
    background: rgba(22, 23, 23, 0.50);
    backdrop-filter: blur(2px);
    transition: all ease-in-out 0.5s;
    /* overflow: hidden;  */

}

.exclusive-offer-grid-item-content h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

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

.exclusive-offer-grid-item-content a {
    font-size: 13px;
    letter-spacing: 1px;
}

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

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

/* Exclusive Offers section End */


/* Our rooms section Start */
.our-room.sec-spacing {
    padding: 0 0 110px;
}

.room-image {
    position: relative;
    width: 100%;
    height: 432px;
    overflow: hidden;
  
}

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

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

.gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0.00) 0%, rgba(0, 0, 0, 0.60) 100%);
}

.room-content {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 32px;
    z-index: 111;
}

.room-content h4 {
    font-size: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.room-content-bottom {
    padding-top: 26px;
    border-top: 0.5px solid #fff;
}

.our-room .room-icon img {
    margin-right: 30px;
    width: 22px;
}

.room-content-bottom .prime-btn {
    font-size: 13px;
    background-color: transparent;
    border: 1px solid var(--white);
    border-radius: 2px;
    letter-spacing: 2px;
    padding: 10px 20px;
}

.owl-theme .owl-nav {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    background: #161717;
    color: white;
    border: none;
    border-radius: 100%;
    padding: 10px !important;
    font-size: 25px !important;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
}

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

/* Our rooms section End */

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

.feedback-wrapper {
    display: flex;
    flex-direction: column;
    width: 832px;
    position: relative;
}

.feedback-wrapper h2 {
    font-size: 48px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.feedback-wrapper p {
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

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

.feedback-ft {
    margin-top: 46px;
}

.star-wrap svg {
    margin-right: 4px;
    margin-bottom: 14px;
    color: white;
}

.feedback-ft span {
    font-size: 16px;
    letter-spacing: 0.5px;
}

.fd-icon {
    position: absolute;
    bottom: 0;
    right: 0;
}

/* Feedback section End */

/* Gallery Section Start */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

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

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


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

.photo-gallery-overlay {
    position: absolute;
    background-color: rgba(0 0 0 / 60%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
}

.photo-gallery-wrap:hover .photo-gallery-overlay {
    opacity: 1;
}


.search-icon {
    width: 30px;
    width: 30px;
    color: var(--white);
}

.search-icon svg {
    width: inherit;
    height: inherit;
    object-fit: contain;
}


/* Gallery Section End */


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

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

.ft-logo {
    width: 251px;
    /* height: 100; */
    margin-bottom: 40px;
}

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

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


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

.footer-wrap .prime-btn {
    background-color: white;
    color: var(--black);
    padding: 18px 23px;
}

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

.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 {
    font-size: 18px;
    line-height: 32px;
    color: var(--white);
    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: 20px;
    color: var(--primary);
    transition: all ease-in-out 0.4s;
}

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


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

}

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

/* Footer end */

/* Service Amenities page start */

.service-page .service-amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 30px;
    border: none;
}

.service-page .service-amenities-grid-item {
    padding: 30px 8px;
    border-radius: 8px;
    border: none;
    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;
    transition: 0.9s;
}

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

.service-page .service-amenities-grid-item p {
    font-size: 20px;
    line-height: 1.5;
    color: var(--black);
}

.general-other-policies.sec-spacing {
    padding: 0 0 110px 0;
}

.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: 18px;
    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: 500px;
    overflow: hidden;
}

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

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

/* Service Amenities page end */

/* Gallery Page start */
.gallery-page .photo-gallery-wrap {
    height: 400px;
}

/* Gallery Page end */



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

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

}

.info-wrapper {
    padding: 50px 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 {
    color: var(--primary);
    font-size: 34px;
    margin-bottom: 36px;
}

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


.info-wrapper h5 {
    font-size: 30px;
    margin-bottom: 26px;

}

.info-wrapper p,
.info-wrapper a {
    font-size: 20px;
    line-height: 1.8;
    word-break: break-word;
}

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

/* ---- 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;
    font-size: 36px;
}

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



/* -- // Local Attraction Page Styles Start // -- */
.attraction-page-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 40px;
}

.attraction-section-wrap {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    padding: 40px 30px;
    background-color: var(--sky-blue);
    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: 320px;
    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: 30px;
    font-size: 30px;
}

.item-list {
    margin-bottom: 10px;
    background-color: var(--white);
    color: var(--secondary);
    padding: 10px 18px;
    line-height: 1;
    border-radius: 2px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
    transition: all ease-in-out 0.3s;
}

.item-list p {
    font-size: 18px;
    line-height: 2.2;
    transition: all ease-in-out 0.3s;
}

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

.item-list:hover P {
    color: var(--white);
}

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