:root {
    /* Fonts */
    --font-primary: "Barlow", sans-serif;
    --font-dm: "DM Serif Display", serif;

    /*Colors */
    --black: #010101;
    --white: #ffffff;
    --primary: #0A3174;
    /* #244AB4,#00349B */
    --secondary: #3a3a3a;
    --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: 80px;
}

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

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

::-webkit-input-placeholder {
    color: white !important;
}

:-ms-input-placeholder {
    color: white !important;
}

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



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

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

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

/* Button Css Start */
.prime-btn {
    text-transform: capitalize;
    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;
    padding: 17px 32px;
    /* width: 152px;
    height: 52px; */
    border-radius: 0;
    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;
    left: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    content: "";
    background-color: var(--black);
    transition: .5s;
    opacity: 0;
    border-top-right-radius: 33px;
    border-bottom-right-radius: 33px;
    z-index: -1;
    border-top-left-radius: 33px;
}

/* .prime-btn::after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, .363);
    width: 170px;
    height: 60px;
    transform: translate3d(-90%, 15px, 0) rotate3d(0, 0, 1, 45deg);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

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

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

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

/* loader start */
.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
}

.dots {
    width: 20px;
    height: 20px;
    background-color: var(--primary);
    border-radius: 50%;
    margin: 0 5px;
    display: inline-block;
    animation: bounce 0.6s ease-in-out infinite alternate;
}

.dots:nth-child(2) {
    animation-delay: 0.2s;
}

.dots:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-30px);
    }
}

/* loader end */

/* Default styles end */


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

/* Header styles start */
.main-wrapper {
    width: 100%;
}

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

.header-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 24px 0px;
    background-color: transparent;
}

.header-top a,
.header-top p {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    line-height: 1;
    letter-spacing: 0.5px;
    transition: all 0.5s ease;
}

.header-top svg {
    font-size: 16px;
    color: var(--primary);
    margin-right: 15px;
    transition: all 0.5s ease;
}

.header-top a:hover svg,
.header-top p:hover svg {
    transform: rotateY(360deg);
    transition: all 0.9s ease;
}

.header-top span {
    margin: 0 30px;
    height: 20px;
    width: 1px;
    color: transparent;
    background: rgba(255, 255, 255, 0.4);
}

/* .page-header .header-top {
    display: none;
}

.page-header .navbar {
    background-color: var(--white);
    width: 100%;
} */

.navbar {
    padding: 0px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;

}

.navbar-wrapper {
    width: 100%;
    background-color: var(--white);
    z-index: 222;
    display: flex;
    align-items: center;
    padding: 10px 30px;
    border-radius: 4px;
}


.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: 166px;
    height: 100px;
    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 {
    font-size: 20px;
    text-transform: capitalize;
    position: relative;
    padding: 0;
    font-family: var(--font-primary);
    font-weight: 400;
    /* letter-spacing: 0.5px; */
    width: max-content;
    color: #000000;
    margin-right: 50px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.nav-link:after {
    position: absolute;
    content: " ";
    left: 2px;
    bottom: -5px;
    width: 0%;
    height: 1px;
    background-color: var(--primary);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

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


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

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

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

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

/* Header styles end */


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

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

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

.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 {
    z-index: 11;
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

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

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

/* hero-content of all page end */


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

.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: #244AB4;
    color: #fff;
}

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

/* Hero styles end */
/* .hero-text-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 111;
    width: 100%;
} */

.hero-text {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 111;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-text h1 {
    text-transform: capitalize;
    line-height: 100px;
    margin-bottom: 40px;
    letter-spacing: 2px;
    width: 850px;
}

/* 
.hero-info {
    margin-bottom: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.hero-info a,
.hero-info span {
    color: var(--white);
    line-height: 1;
    letter-spacing: 0.5px;
    font-weight: 300;
    font-size: 18px;
}

.hero-info a:hover,
.hero-info span:hover {
    color: #a6bdff;
}

.hero-info svg {
    font-size: 20px;
} */

.hero-text .prime-btn {
    background: transparent;
    border: 1px solid var(--white);
    letter-spacing: 1px;
    border-radius: 30px;
    padding: 20px 36px;
}



/* background curve */
.hero-vector-white {
    position: absolute;
    background-image: url("../images/sec-bg-img/hero-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    bottom: -2px;
    left: 0;
    right: 0;
    width: 100%;
    height: 130px;
    z-index: 111;
}

/* background curve */

/* Booking Form style Start */
.booking-form-wrapper {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    margin: 0 200px;
    /* background: #787878; */
    z-index: 111;
}

.web-res-form {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.form-group {
    padding: 42px 50px;
    background-color: #010101;
    /* margin-bottom: 20px; */
}

.form-group:last-child {
    padding: 0;
    background-color: transparent;
}


.form-control {
    font-size: 22px;
    font-family: var(--font-primary);
    width: 100%;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid rgb(255, 255, 255, 0.5);
    border-radius: 0px;
    background-color: transparent;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1px;
    color: white;
    padding: 0 0 16px 0px;
    margin-left: 40px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-family: var(--font-primary);
}

select.form-control option {
    color: #000 !important;
    padding: 4px 10px !important;
}

select {
    padding: 0 8px 17px !important;
}

.form-control:focus,
.form-control:focus-visible {
    color: white;
    background-color: transparent;
    border: 1px solid transparent;
    outline: none !important;
    box-shadow: none;
}

.input-group {
    position: relative;
}

.input-icon {
    font-size: 30px;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
}

.web-res-form .prime-btn {
    width: 230px;
    height: 100%;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 1px;
    background-color: 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 Form style End */


/* Service Amenities Section Start */

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

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

.sub-title {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 20px;
    letter-spacing: 3px;
    padding-left: 65px;
    padding-right: 65px;
    margin-bottom: 10px;
    width: max-content;
}

.sub-title::before,
.sub-title::after {
    content: '';
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 13px;
}


.sub-title::before {
    background-image: url('../images/icons/title-img.png');
    left: 0;
}

.sub-title::after {
    background-image: url('../images/icons/title-img-r.png');
    right: 0;
}

.sub-title.white::before {
    background-image: url('../images/icons/subtitle-white-left.png');
    left: 0;
}

.sub-title.white::after {
    background-image: url('../images/icons/subtitle-white-right.png');
    right: 0;
}

.sec-title h2 {
    line-height: 55px;
    text-transform: capitalize;
}

.service .sec-title {
    margin-bottom: 32px;
}

.service .sec-title .sub-title::after,
.our-room .sec-title .sub-title::after {
    display: none;
}


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

.service-amenities-grid-item {
    background: #FFF;
    padding: 34px 20px;
    border-radius: 1px;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.10);
    transition: all 0.5s ease;
}


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

.service-amenities-grid-item:hover {
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.20);

}

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

.service-amenities-grid-item h4 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.service-amenities-grid-item p {
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.2px;
    text-transform: capitalize;
}

.sa-image {
    width: 100%;
    height: 420px;
    overflow: hidden;
}

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

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

.position-r {
    position: relative;
}


.service-right-bg {
    position: absolute;
    bottom: -2px;
    right: 0;

}

.view-all-as {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary);
    max-width: max-content;
    position: relative;
    margin-top: 50px;
    margin-right: 50px;
}


.view-all-as::after {
    content: '';
    background: url('../images/icons/right-arrow.png') no-repeat right top;
    position: absolute;
    bottom: -25px;
    right: 0;
    width: 100%;
    height: 100%;
    transition: all ease-in-out 0.5s;
}

.view-all-as:hover::after {
    transform: scale(1.1);
}

/* Service Amenities Section End */


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

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

.about-text {
    font-size: 18px;
    line-height: 44px;
    text-transform: capitalize;
    width: 860px;
    margin: 0 auto;
    text-align: center;

}

.about .prime-btn {
    margin-top: 40px;
    border-color: var(--white);
}

.ab-img-1 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 514px;
    height: 280px;
    transition: all ease-in-out 0.5s;
}

.ab-img-2 {
    position: absolute;
    right: 6%;
    bottom: -44%;
    width: 416px;
    height: 502px;
    transition: all ease-in-out 0.5s;
}

.aboutImg {
    width: 354px;
    height: 200px;
    overflow: hidden;
}

.aboutImg img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    transition: all ease-in-out 0.5s;
}

.aboutImg:hover img {
    transform: scale(1.08);
}

.about-slider-wrap {
    width: 1160px;
    margin-top: 30px;
}

.about-slider-wrap .owl-carousel .owl-stage-outer {
    padding-left: 30px;
}

/* About Section End */

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

.our-room .sec-title {
    margin-bottom: 0;
}

.our-room-head {
    margin: 0 200px;
}

.our-room-head-text {
    font-size: 18px;
    line-height: 36px;
    text-transform: capitalize;
    color: #3a3a3a;
}

.our-room .owl-carousel .owl-stage-outer {
    padding: 55px 0 20px 0;
}

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

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

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

.our-room-slider-content {
    position: relative;
    padding: 30px 20px 40px 20px;
    background-color: var(--white);
    box-shadow: 0px 2px 10px 2px rgba(0, 0, 0, 0.20);

}

.our-room-slider-content h5 {
    margin: 24px 0;
}

.our-room-slider-content .prime-btn {
    position: absolute;
    right: 20px;
    bottom: 28px;
    border-radius: 0;
    padding: 17px 32px;
}

.our-room-slider-content ul li {
    margin-right: 30px;
    font-size: 14px;
    color: #3a3a3a;
}

.our-room-slider-content ul li:hover svg {
    transform: rotateY(360deg);
    transition: all 0.9s ease;
}

/* owl dots start */
.owl-theme .owl-nav.disabled+.owl-dots {
    position: absolute;
    bottom: -10%;
    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: 20px;
    background: rgba(10, 49, 116, 0.6);
    margin: 0 4px;
}

.owl-theme .owl-dots .owl-dot span {
    width: 0;
    height: 0;
    margin: 0;
}

.owl-carousel button.owl-dot.active {
    width: 40px;
    height: 10px;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* owl dots end */

/* Rooms Section End */

/* Exclusive offer Section Start  */
.exclusive-offer {
    background-image: url('../images/sec-bg-img/offer-bg.png');
    min-height: auto;
    background-position: top;
}

.exclusive-offer.sec-spacing {
    padding: 1px 0 120px 0
}

.exclusive-offer .sec-title {
    margin-top: 24%;
}

.exclusive-offer-wrap {
    border-radius: 10px;
    background: var(--white);
    padding: 24px 24px 40px 24px;
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.10);
}

.exclusive-offer-img-wrap {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

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

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

.exclusive-offer-content-wrap {
    padding: 40px 0 0 0;
}

.exclusive-offer-content-wrap h3 {
    margin-bottom: 20px;
}

.exclusive-offer-content-wrap p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 20px;
    text-transform: capitalize;
    text-align: justify;
}

.exclusive-offer-content-wrap a {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary);
    position: relative;
    transition: all ease-in-out 0.5s;
}

.exclusive-offer-content-wrap a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: var(--primary);
}

.exclusive-offer-content-wrap a:hover {
    transform: scale(1.1);
}

.exclusive-offer-wrap.mt-70 {
    margin-top: 70px;
}

/* Exclusive offer Section End */

/* Gallery Section Start */

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

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

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

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


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

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


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

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


/* Gallery Section End */


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

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

.booking-wrapper {
    z-index: 111;
    position: relative;
    color: white;
    max-width: 1062px;
    margin: 0 auto;
}

.booking-hotel-icon {
    margin-bottom: 40px;
}

.booking-wrapper h2 {
    line-height: 70px;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
}

.book-calender {
    padding-left: 70px;
}

.calender-icon {
    margin-right: 12px;
}

.calender-content p {
    font-size: 16px;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.book-left:hover img {
    transform: rotateY(360deg);
    transition: all 0.9s ease;
}

.divider {
    height: 37px;
    width: 1px;
    background: rgba(255, 255, 255, 0.4);
    margin: 0 20px;
}

.book-right a {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.book-right a:hover svg {
    transform: rotateY(360deg);
    transition: all 0.9s ease;
}

.booking-wrapper .prime-btn {
    margin-top: 40px;
    background-color: transparent;
    border-radius: 50px;
    transition: all ease-in-out 0.3s;
    border: 1px solid white;
    color: white;
}


/* Booking section end */

/* Feedback section Start */

.feedback-grid-icon img {
    width: 100px;
    height: 100px;
}

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

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

.feedback-grid-wrapper {
    height: 412px;
    padding: 45px 26px 37px 26px;
    border-radius: 4px;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.13);
}

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


.feedback-grid-wrapper h5 {
    margin: 36px 0 20px 0;
}

.feedback-grid-wrapper p {
    font-size: 16px;
    line-height: 30px;
    color: #3A3A3A;
    text-transform: capitalize;
}

.feedback-slider-wrapper .owl-carousel .owl-stage-outer {
    padding: 40px 10px;
}

/* Feedback section End */


/* Footer start*/
.footer-wrapper {
    background-image: url("../images/sec-bg-img/footer.png");
    min-height: auto;
    padding-top: 12%;
    background-position: top;
}

.ft-about-us {
    z-index: 111;
    position: relative;
    padding-right: 40px;
}

.ft-about-us h3,
.ft-contact-us h3 {
    font-size: 42px;
    line-height: 58px;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
}

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

.footer-wrapper .prime-btn {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    padding: 17px 20px;
}

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

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



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

}


.ft-contact-us p,
.ft-contact-us a {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.5px;
    color: var(--white);
    z-index: 111;
    position: relative;
    margin-bottom: 32px;
    word-break: break-word;
}

.ft-contact-us p:hover svg,
.ft-contact-us a:hover svg {
    transform: rotateY(360deg);
    transition: all 0.9s ease;
}

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

}



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

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

.checkIn-checkOut:hover img {
    transform: rotateY(360deg);
    transition: all 0.9s ease;
}


.footer-link-wrap {
    padding: 40px 0;
    margin-top: 20px;
    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);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

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

.footer-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--white);
    transition: all ease-in-out 0.3s;
}

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

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

.footer-link:hover::after {
    width: 80%;
}

.ft-bottom {
    font-size: 16px;
    padding: 30px 10px;
}

/* Footer End*/


/* ---- Service Page Style start ---- */

.service-page .service-amenities-img-wrap {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
}

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

.service-page .service-amenities-img-wrap:hover img {
    transform: scale(1.08);
}

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

.service-page .service-amenities-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-page .service-icon-wrap {
    width: 50px;
    /* height: 50px; */
    margin-right: 18px;
}

.service-page .service-item-wrap {
    width: 100%;
    padding: 20px 30px;
    border-radius: 8px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.service-page .service-item-wrap h4 {
    font-size: 20px;
    line-height: 1;
}

/* ---- Service Page Style End ---- */

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

.photo-gallery-page-wrapper .nav-pills {
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

button:focus-visible {
    outline: none;
}

.gallery-page .gallery-image-wrap {
    height: 360px;
    box-shadow: none;
    padding: 0px;
    border-radius: 2px;
    width: 100%;
}

/* //-- Photo-gallery page Style end --// */



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

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

.info-wrapper-grid {
    display: grid;
    grid-template-columns: repeat(4, 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: 30px;
}

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


.info-wrapper h5 {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 500;
    font-family: var(--font-mrc);
    color: #000;
}

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

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

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


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

.attraction-image-wrapper,
.attraction-content-wrapper {
    width: 50%;
}


.attraction-image-wrapper {
    /* width: 680px; */
    height: 480px;
    overflow: hidden;
    z-index: 111;
}

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

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

.attraction-content-wrapper {
    z-index: 111;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    margin-top: 4%;
    z-index: 11;
    border-radius: 8px;

}

.attraction-content-wrapper.pedding-left {
    padding: 50px 40px 50px 100px;
    margin-left: -5%;
}

.attraction-content-wrapper.pedding-right {
    padding: 50px 100px 50px 50px;
    margin-right: -5%;
}


.attraction-content-wrapper h5 {
    font-size: 34px;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.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;
    letter-spacing: 0.3px;
    background-color: var(--primary);
    padding: 12px 20px;
    color: white;
}

.att-content-text:last-child {
    margin-bottom: 0;
}


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