:root {
    /* Fonts */
    --font-primary: "Lato", serif;
    /* --font-ortica: 'Ortica', sans-serif; */

    /*Colors */
    --black: #010101;
    --white: #ffffff;
    --primary: #0C8260;
    --secondary: #787878;
    --sky-blue: #EFF1ED;

}



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

.h1-small {
    font-size: 75px;
}

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

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

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


h5,
.h5 {
    font-size: 20px;
}

h6,
.h6 {
    font-size: 18px;
}

.p {
    font-size: 16px;
}


.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin-bottom: 0;
}

/* Pseudo default styles start */

::placeholder {
    color: #787878 !important;
    opacity: 1;
}

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

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

::-ms-input-placeholder {
    color: #787878 !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-inter {
    font-family: var(--font-inter);
} */



/* COLORS */
.bg-black-color {
    background-color: var(--black);
}

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

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

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

.bg-skyblue-color {
    background-color: var(--sky-blue);
}

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

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

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

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

.color-skyblue {
    color: var(--sky-blue);
}

/* COLORS */

/* font weight */
.fw-700 {
    font-weight: 700;
}

.fw-600 {
    font-weight: 600;
}

.fw-500 {
    font-weight: 500;
}

.fw-400 {
    font-weight: 400;
}

.fw-300 {
    font-weight: 300;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-auto-0 {
    flex: 0 0 auto;
}

img {
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: var(--primary);
}

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

/* Button Css Start */
.prime-btn {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-primary);
    background-color: var(--primary);
    line-height: 1;
    color: var(--white);
    border: 2px solid var(--primary);
    border-radius: 0;
    padding: 16px 29px;
    /* width: 152px;
    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: "";
    background: var(--white);
    position: absolute;
    z-index: -1;
    padding: 0.85em 0.75em;
    display: block;
    transition: all 0.3s ease;
}

.prime-btn.grow_spin::after {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transform: scale(0, 0) rotate(-180deg);
}

.prime-btn.grow_spin:hover::after {
    transform: scale(1, 1) rotate(0deg);
    transition: all 0.3s ease-out;
}

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


/* 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 */
.main-wrapper {
    position: relative;
}

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

header::after {
    content: '';
    position: absolute;
    background: var(--black);
    top: 0;
    right: 0;
    width: 72%;
    height: 100%;
}


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

}


.fixed-header {
    /* position: fixed;
    left: 0;
    width: 100%; */
    top: 0;
    padding: 6px 0;
    animation: slideDown 0.50s ease;
    background-color: var(--black);
    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: 176px;
    height: 90px;
    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: 1px;
    width: max-content;
    color: var(--white);
    margin-right: 70px;
    -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: 80px;
}

/* Header styles end */


/* Sidebar style start */

.slide-menu {
    width: 40px;
    cursor: pointer;
    margin-left: 60px;
    position: relative;
    display: flex;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.slide-menu span {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--white);
    position: relative;
}

.slide-menu::before,
.slide-menu::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 1px;
    background: var(--white);
    right: 0;
}

.slide-menu::before {
    top: 10px;
}

.slide-menu::after {
    bottom: 10px;
}

.sidenav {
    height: 100vh;
    width: 0;
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8392156862745098);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 70px;
    overflow: hidden;
}

.sidenav .closebtn {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 36px;
    color: white;
    font-size: 40px;
}

.sidenav-wrapper {
    overflow-y: auto;
    height: 100%;
    padding: 20px 30px;
}

.sidenav-wrapper .navbar-brand {
    width: 156px;
    height: 80px;
    margin-bottom: 30px;
    padding: 0;
}

.sidenav-wrapper p.text {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.5px;
}

.sidenav-wrapper p.sidebar-amenities {
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 10px;
}

.sidenav-wrapper h4 {
    font-size: 20px;
    letter-spacing: 0.5px;
    margin: 40px 0 20px 0;
}

.sidebar-contact-wrap-item {
    position: relative;
    display: flex;
}

.sidebar-contact-wrap-item .icon {
    color: var(--primary);
    margin-right: 16px;
    font-size: 26px;
}

.sidebar-contact-wrap-item span {
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 2;
}

/* Sidebar menu */

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

/* .hero-banner, */
.page-hero-banner,
.about,
.excellent-service-top,
.excellent-service-top::after,
.footer-wrap {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 900px;
}

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

/* .hero-banner.hero-one {
    background-image: url('../images/hero-bg-img/hero-index-two.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 {
    z-index: 11;
    position: absolute;
    bottom: 15%;
    left: 15%;
    text-align: left;
}

.page-hero-content h1 {
    font-size: 60px;
    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: 20px;
}

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

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

/* Hero Swipper Slider Start */

.main-swipper-wrapper {
    position: relative;
}

.swiper-container-main {
    width: 100%;
    height: 900px;
    overflow: hidden;
    position: relative;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Thumbnail Navigation */
.swiper-container-thumbs {
    width: 70%;
    height: 190px;
    margin-top: 10px;
    margin: 0 auto;
    margin-top: -100px;
    overflow: hidden;
}

.swiper-container-thumbs .swiper-slide {
    width: 100px;
    height: 100%;
    /* opacity: 0.6; */
    cursor: pointer;
    /* transition: opacity 0.3s; */
}

.swiper-container-thumbs .swiper-slide-thumb-active {
    /* opacity: 1; */
    border: 6px solid var(--primary);
}

/* Navigation Buttons */

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    width: 30px;
    height: 30px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    top: 94%;
    font-size: 30px;
    margin-top: 0;
    z-index: 111;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.swiper-button-next svg,
.swiper-button-prev svg {
    font-size: 30px;
    color: var(--black);
}

.swiper-button-next {
    right: 12%;
}

.swiper-button-prev {
    left: 12%;
}

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

.hero-text {
    width: 100%;
    /* margin-bottom: 100px; */
}

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

.hero-text h1 {
    text-transform: capitalize;
    line-height: 90px;
    margin-bottom: 40px;
}

.hero-text p {
    display: flex;
    align-items: center;
    font-size: 40px;
    letter-spacing: 1px;
    font-style: italic;
}
.mobile-banner-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 111;
    color: white;
    display: none;
}

.hero-text p span {
    font-size: 20px;
}

.book-info-wrap {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: rotate(-90deg) translateY(-50%);
    z-index: 111;
}

.book-info-icon-wrap {
    width: 72px;
    height: 72px;
    border: 1px solid white;
    border-radius: 100%;
    flex: 0 0 auto;
    margin-right: 10px;
}

.book-info-content-wrap p {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 8px;
    letter-spacing: 3px;
}

.book-info-content-wrap a {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 2px;
    color: white;
    transition: all ease-in-out 0.3s;
}

.book-info-content-wrap a:hover {
    color: var(--primary);
}


/* Hero Swipper Slider End */


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

.about {
    background-image: url('../images/sec-bg-img/about-bg.png');
    min-height: auto;
    margin-top: -100px;
}

/* Booking Form */
.web-res-form {
    z-index: 111;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-left: 90px;
}

.web-res-form::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background: rgb(0 0 0 / 30%);
}

.web-res-form h2 {
    margin-bottom: 50px;
}

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

.web-res-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
    width: 100%;

}

.form-label {
    font-size: 24px;
    font-weight: 400;
    color: #010101;
    margin-bottom: 16px;
    line-height: 28px;
}

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

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

.input-group {
    position: relative;
}

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

.web-res-form .prime-btn {
    width: 100%;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 6px;
    font-weight: 500;
    background-color: var(--primary);
    margin-top: 50px;
    border: 1px solid var(--primary);
}



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


.about-content-wrap {
    display: flex;
    flex-direction: column;
    margin-left: -120px;
}

.about-content-wrap h2 {
    margin-bottom: 55px;
}

.about-content-info .prime-btn {
    margin-right: 52px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}


.about-content-info .aci-loc,
.about-content-info .aci-mail {
    font-size: 20px;

}

.about-content-info span {
    width: 1px;
    height: 30px;
    background: rgba(0, 0, 0, 0.4);
}

.about-phone-wrap {
    margin-top: 70px;
    margin-right: 50px;
}

.about-ph-icon {
    width: 100px;
    height: 100px;
}


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

.about-ph-content p {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 10px;
}

.about-ph-content a {
    font-size: 30px;
    color: var(--black);
    transition: all ease-in-out 0.5s;

}

.about-ph-content a:hover {
    color: var(--primary);
}


/* About Section End */


/* About-slider Section Start */

.about-slider {}

.about-slider-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    margin-left: -12px;
    margin-right: -12px;
    gap: 24px;

}

.about-slider-left-wrap {
    width: 50%;
    padding-left: 12px;
    padding-right: 12px;
}

.about-slider-padding-wrap {
    padding: 0 100px 0 140px;
}

.about-slider-right-wrap {
    width: 50%;
    padding-left: 12px;
    padding-right: 12px;
    margin-right: -30px;
    margin-bottom: -15%;
}


.about-slider-left-wrap h2 {
    margin-bottom: 20px;
}

.about-slider-left-wrap p {
    font-size: 18px;
    text-transform: capitalize;
    margin-bottom: 40px;
    line-height: 38px;
    text-align: justify;
}

.aboutSlider-image-wrap {
    height: 575px;
    box-shadow: 0px 2px 30px 2px rgba(0, 0, 0, 0.20);
}

.aboutSlider-image-wrap img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

.about-slider-right-wrap .owl-theme .owl-nav {
    margin-top: 0;
    position: absolute;
    left: -10%;
    bottom: 4%;
}

.about-slider-right-wrap .owl-carousel .owl-nav button.owl-next,
.about-slider-right-wrap .owl-carousel .owl-nav button.owl-prev {
    width: 46px;
    height: 46px;
    background: rgba(12, 130, 96, 0.12);
    border: 1px solid #0C8260;
    color: #0C8260;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px;
    transition: all ease-in-out 0.5s;
}

.about-slider-right-wrap .owl-theme .owl-nav [class*=owl-]:hover {
    background: #0C8260;
    color: #FFF;

}

.about-slider-right-wrap .owl-carousel .owl-nav button.owl-next {
    display: none;
}

/* About-slider Section End */


/* our Rooms Section Start */
.our-room.sec-spacing {
    padding: 240px 0 120px 0;
}

.our-room h2 {
    margin-bottom: 55px;
}

.our-room-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.our-room-grid-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
}

.our-room-image-wrap {
    width: 100%;
    height: 400px;
    border-bottom: 6px solid #0C8260;
    overflow: hidden;
}

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

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

.our-room-content-wrap {
    height: 100%;
    position: relative;
    padding: 40px 150px 50px 40px;
    background-color: #EFF1ED;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 6px solid #0C8260;

}

.our-room-content-wrap h4 {
    font-size: 30px;
    margin-bottom: 24px;
}

.our-room-content-wrap p {
    font-size: 16px;
    margin-bottom: 40px;
    color: #787878;
    line-height: 28px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.rooms-icons svg {
    font-size: 18px;
    color: var(--primary);
    margin-right: 30px;
}

.our-room-content-wrap .prime-btn {
    font-size: 15px;
    font-weight: 500;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1.4;
    padding: 16px 18px;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    margin: 0;
    width: 65px;
    height: 65px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    font-size: 34px;
    background-color: rgba(12, 130, 96, 0.12);
    color: #0C8260;
    transition: all ease-in-out 0.5s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.owl-carousel .owl-nav button.owl-prev {
    left: -12%;
    right: auto;
}

.owl-carousel .owl-nav button.owl-next {
    right: -12%;
    left: auto;
}

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

}

/* our Rooms Section End */

/* Service Amenities Section start */

.excellent-service {
    position: relative;
    width: 100%;
    display: flex;
}

.excellent-service-left-wrap {
    width: 60%;
    overflow: hidden;
}

.excellent-service-right-wrap {
    width: calc(100% - 40%)
}

.excellent-service-top {
    padding: 40px;
    position: relative;
    background-image: url("../images/sec-bg-img/es-bg.jpg");
    min-height: 400px;
    top: 0;
    left: 0;
    width: 100%;
    padding-left: 20%;
}

.excellent-service-top::after {
    content: '';
    position: absolute;
    background-image: url("../images/sec-bg-img/es-bg.jpg");
    min-height: 400px;
    right: 100%;
    top: 0;

}

.excellent-service-top-left {
    position: relative;
    z-index: 111;
    width: calc(100% - 250px);
}


.excellent-service-top-left::after {
    position: absolute;
    content: '';
    width: 1px;
    height: 80px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.30);
}

.excellent-service-top-right {
    width: 250px;
}

.excellent-service-top-left h2 {
    margin-bottom: 30px;
}

.excellent-service-top-left p {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 38px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    color: var(--white);
    padding-right: 40px;
}

.es-calender-icon {
    width: 60px;
    margin-bottom: 18px;
}

.excellent-service-top-right p {
    font-size: 20px;
    line-height: 36px;
}


.excellent-service-image-wrap {
    width: 100%;
    height: 840px;
    overflow: hidden;

}

.excellent-service-image-wrap img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    transition: all 0.3s;
}

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

.excellent-service-bottom-left {
    width: 100%;
    padding-top: 140px;
    padding-left: 14%;
    /* margin-left: 200px; */
}

.service-amenities-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 28px;
}

.service-amenities-content-wrap {
    /* width: 252px;
    height: 180px; */
    height: 180px;
    padding: 30px 20px;
    background: #EFF1ED;
    box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.30);
}

.service-amenities-content-wrap h5 {
    margin-bottom: 16px;
    font-size: 20px;
}

.service-amenities-content-wrap p {
    font-size: 16px;
    color: #535353;
    line-height: 30px;
    text-transform: capitalize;
}

.excellent-service .owl-carousel .owl-stage-outer {
    padding: 30px 0;
}

.excellent-service .owl-carousel .owl-nav button.owl-next,
.excellent-service .owl-carousel .owl-nav button.owl-prev {
    width: 40px;
    height: 40px;
    font-size: 20px;
    background-color: #EFF1ED;
    border-radius: 2px;
    color: var(--black);
    top: -70px;
    border: none;
}

.excellent-service .owl-carousel .owl-nav button.owl-next {
    right: 40px;
}

.excellent-service .owl-carousel .owl-nav button.owl-prev {
    left: 84%;
}

/* Service Amenities Section End */


/* Exclusive Offers Section Start */
.exclusive-offer h2 {
    margin-bottom: 55px;
}

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

.exclusive-offer-image-wrap img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    transition: all 0.3s;
}

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


.exclusive-offer-tabs-wrap .tab-content {
    margin-top: 50px;
}

.exclusive-offer-tabs-wrap .nav-pills .nav-link {
    background: var(--primary);
    padding: 18px 50px;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    color: var(--white);
    font-size: 20px;
    text-align: center;
    margin-right: 30px;
    text-transform: capitalize;
    letter-spacing: 0;

}

.exclusive-offer-content-wrap {
    height: 100%;
    padding: 50px 40px;
    border-top: 4px solid #0C8260;
    background: #EFF1ED;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.20);
}

.exclusive-offer-content-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(94, 11, 39, 0.12);
    border-radius: 6px;
    margin-bottom: 30px;
}

.exclusive-offer-content-wrap p {
    font-size: 18px;
    line-height: 36px;
    margin-bottom: 40px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.read-more-link {
    font-size: 18px;
    letter-spacing: 0.5px;
    position: relative;
    max-width: max-content;
}

.read-more-link::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 60%;
    height: 1px;
    background: var(--primary);
}

/* Exclusive Offers Section End */


/* Gallery section Start */
.photo-gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 0 24px;
    margin-top: 55px;
}

.photo-gallery-wrap {
    width: 100%;
    height: 490px;
    position: relative;
    display: block;
    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);
}

.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.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 .prime-btn {
    margin-top: 70px;
}

.g-view-more-link {
    position: relative;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.g-view-more-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 60%;
    height: 1px;
    background: var(--primary);
}


/* Gallery section end */


/* Feedback section Start */
.feedback h2 {
    margin-bottom: 55px;
}

.feedback-header {
    position: relative;
}

.feedback-header::after {
    content: '';
    background-image: url('../images/sec-bg-img/fd-bg.png');
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 420px;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.avatar-wrap {
    width: 60px;
    height: 60px;
    flex: 0 0 auto;
    margin-right: 16px;
}

.feedback-name {
    font-size: 20px;

}

.star-wrap {
    padding-left: 100px;
}

.star-wrap svg {
    font-size: 14px;
    color: #F5B955;
    margin-right: 4px;
}

.feedback-wrapper p {
    font-size: 16px;
    line-height: 36px;
    color: var(--black);
    padding-top: 40px;
    padding-left: 114px;
    letter-spacing: 0.2px;
    text-transform: capitalize;
}

/* Feedback section end */


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

.footer-top-wrap {
    padding: 100px 0 60px 0;
}

.ft-logo {
    width: 176px;
    height: 90px;
    flex: 0 0 auto;
}

.ft-divider-wrap {
    position: relative;
}

.ft-divider-wrap::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -50px;
    width: 90%;
    height: 1px;
    background: rgba(255, 255, 255, 0.30);
}

.footer-info-wrap {
    margin-right: 70px;
}

.footer-info-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: var(--primary);
    margin-right: 20px;
}

.footer-info-icon svg {
    color: var(--white);
    font-size: 22px;

}

.footer-info-content span {
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    line-height: 1;
}

.footer-info-content a {
    font-size: 24px;
    letter-spacing: 1px;
    line-height: 1;
}

.ft-title {
    font-size: 36px;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.ft-about-wrap p {
    font-size: 18px;
    line-height: 40px;
    letter-spacing: 0.5px;
    text-align: justify;
    text-transform: capitalize;
    padding-right: 50px;
}


.ft-contact-us p {
    font-size: 18px;
    line-height: 34px;
    letter-spacing: 0.5px;
}

a.ft-link {
    display: flex;
    color: var(--white);
    font-size: 18px;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    transition: all ease-in-out 0.5s;
}

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

.mt-60 {
    margin-top: 60px;
}

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

.checkIn-checkOut {
    margin-top: 40px;
}

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

.checkIn-checkOut-text p {
    font-size: 20px;
}

.ada-link {
    position: relative;
    font-size: 18px;
    letter-spacing: 0.5px;
    color: var(--white);
    margin-top: 50px;
    max-width: max-content;
}

.ada-link::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: var(--primary);
    left: 0;
    bottom: -6px;
}

.footer-bottom-wrap {
    padding: 14px 10px;
}

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

/* Footer section end */

/* Service Amenities Page Start*/
.service-page .service-amenities-grid-wrap {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    z-index: 111;
    position: relative;
    gap: 40px 24px;
}

.service-page .service-amenities-grid-item {
    position: relative;
    width: 100%;
    height: 170px;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    border-bottom: 3px solid var(--primary);
    background: #EFF1ED;
    transition: 0.3s ease-in-out;
    padding: 30px 10px;
}

.service-page .service-amenities-grid-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0%;
    left: 0px;
    bottom: 0px;
    z-index: -1;
    background: var(--primary);
    transition: 500ms;
}

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

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

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

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

.service-page .service-amenities-grid-item h5 {
    font-size: 18px;
    line-height: 1.5;
    color: var(--primary);
    text-transform: capitalize;
    transition: 0.3s ease-in-out;
}

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

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

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

.service-page .service-amenities-grid-item:hover h5 {
    color: white;
}

/* Service Amenities Page End*/


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

/* Gallery Page End*/


/* -- // Contact-us Page Styles Start // -- */
.contact-page.sec-spacing {
    padding: 120px 0 0;
}

.contact-us-content-wrap {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px 24px;
    padding-left: 20px;
}

.contact-us-content-items {
    /* 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;
    padding: 30px;
    border-radius: 6px;
}

.contact-title-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 18px;
    line-height: 1;
    color: var(--black);
    margin-bottom: 10px;
    font-weight: 400;
}

.contact-play-icons {
    font-size: 22px;
    margin-right: 10px;
    color: var(--primary);
}

.contact-us-content-items a,
.contact-us-content-items p {
    color: #787878;
    font-size: 16px;
    line-height: 1.5;
}


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


.contact-us-image-wrapper {
    width: 100%;
    height: 570px;
    overflow: hidden;
}

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

.contact-us-image-wrapper:hover img {
    transform: scale(1.08);
}


/* -- // Contact-us Page Styles End // -- */


/* -- // Ada feature Page Styles Start // -- */
.ada-feature-wrap:not(:last-child) {
    margin-bottom: 50px;
}

.ada-feature-wrap h3 {
    margin-bottom: 20px;
}

.ada-feature-item {
    font-size: 16px;
    line-height: 1.5;
    padding: 0 0 10px;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    border-bottom: 1px solid #f2f2f2;
}

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

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

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

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

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

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

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



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

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