/* ---------------------------------- Global CSS ---------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


@font-face {
    font-family: "optima";
    src: url("../libs/fonts/Optima-Medium.ttf") format("truetype");
    font-style: normal;
}

:root {
    --main_color: #004798;
    --sec_color: #987f1d;

    --text_color: #333333;

    --light_color: #F2EEE9;

    --headings_font: "Inter", sans-serif;
    --body_font: "Poppins", sans-serif;

    --main_spacer: clamp(30px, 10vh, 90px);
    --small_spacer: clamp(30px, 6vh, 50px);

    --h1-fontSize: clamp(30px, 5vw, 45px);
    --h2-fontSize: clamp(28px, 5vw, 35px);
    --h3-fontSize: 24px;
    --h4-fontSize: 20px;
    --h5-fontSize: 18px;

    --base-fontSize: 16px;
    --text-xs: 13px;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*::-moz-selection {
    color: #ccc;
    background-color: #121212;
}

*::selection {
    color: #ccc;
    background-color: #121212;
}

html {
    font-size: var(--base-fontSize);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    color: var(--text_color, #333333);
    background-color: var(--body_bg, #fff);
    font-family: var(--body_font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: inherit;
    font-family: var(--headings_font);
}

a {
    color: inherit;
    display: inline-block;
    text-decoration: none;
}

p {
    color: inherit;
    margin-bottom: 0.5rem;
}

strong {
    font-weight: 600;
}

img,
video {
    width: 100%;
    height: auto;
    vertical-align: middle;
}

/* Target the specific number input and hide the spin buttons */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* For Firefox, you may need this additional CSS rule */
input[type="number"] {
    -moz-appearance: textfield;
}

button {
    border: none;
    outline: none;
    white-space: nowrap;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}

button.accordion-button,
button.nav-link {
    white-space: normal;
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

section {
    position: relative;
    z-index: 1;
}

hr {
    border-color: #e4e4e4;
    opacity: 1;
}

.body_font {
    font-family: var(--body_font) !important;
}

.headings_font {
    font-family: var(--headings_font) !important;
}

.special_font {
    font-family: var(--speacial_font) !important;
}

.w-screen {
    width: 100dvw;
}

.max-w-full {
    max-width: 100%;
}

.w-fit {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.h-fit {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

.h-screen {
    height: 100vh;
}

.main_spacer {
    padding-block: var(--main_spacer);
}

.main_spacer_top {
    padding-top: var(--main_spacer);
}

.main_spacer_bottom {
    padding-bottom: var(--main_spacer);
}

@media only screen and (min-width: 992px) {
    .main_spacer_lg {
        padding-block: var(--main_spacer);
    }
}

.small_spacer {
    padding-block: var(--small_spacer);
}

.small_spacer_top {
    padding-top: var(--small_spacer);
}

.small_spacer_bottom {
    padding-bottom: var(--small_spacer);
}

body h1,
.main_heading {
    font-size: var(--h1-fontSize);
}

body h2,
.sec_heading {
    font-size: var(--h2-fontSize);
}

body h3,
.ter_heading {
    font-size: var(--h3-fontSize);
}



h4,
.quat_heading {
    font-size: var(--h4-fontSize);
}

.text_xs {
    font-size: var(--text-xs);
}

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

.main_bg {
    color: #ccc;
    background-color: var(--main_color);
}

.border_main {
    border-color: var(--main_color) !important;
}

.main_bg *::-moz-selection {
    color: var(--main_color);
    background-color: #ccc;
}

.main_bg *::selection {
    color: var(--main_color);
    background-color: #ccc;
}

.hover_main_color:hover {
    color: var(--main_color);
}

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

.sec_bg {
    color: #fff;
    background-color: var(--sec_color);
}

.sec_border {
    border-color: var(--sec_color) !important;
}

.text-justify {
    text-align: justify;
}

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

.min-h-screen {
    min-height: 100vh;
    /* min-height: calc(var(--vh, 1vh) * 100); */
}

@media only screen and (min-width: 992px) {
    .lg-min-h-screen {
        min-height: 100vh;
    }
}

.row {
    margin-inline: 0;
}

.rowMargin {
    margin-inline: calc(-0.5 * 1.5rem);
}

.-z-1 {
    z-index: -1;
}

.inset-0 {
    inset: 0;
}

.col_spacer {
    padding-inline: calc(1.5rem * .5);
}

.swiper-slide {
    height: auto;
}

.marquee-fb,
.marquee-fb2 .swiper-slide {
    width: 250px;
}

.aspect-ratio-1 {
    aspect-ratio: 1 / 1;
}

.stars {
    color: #f0ad4e;
}

.max-h-screen {
    max-height: 100vh;
}

.marqueeSwiper .swiper-wrapper {
    transition-timing-function: linear;
}

.top-5 {
    top: 1.5rem;
}

.top-7 {
    top: 7.5rem;
}

.min-h-view {
    min-height: calc(100vh - var(--header-height, 80px));
}

.pointer-events-none {
    pointer-events: none;
}

.pointer-events-auto {
    pointer-events: auto;
}

@media (min-width: 1400px) {
    body .container {
        max-width: calc(100% - 70px);
    }
}

.navbar-nav {
    gap: 10px;
}

/* ---------------------------------- Global END ---------------------------------------------- */
/* 
.light_bg {
    color: var(--main_color);
    background-color: #CDD8DF;
} */

.page-link {
    color: var(--main_color);
}

.active>.page-link,
.page-link.active {
    background-color: var(--main_color);
}

/* ---------------------------------- Header CSS ---------------------------------------------- */

header#site-header {
    transition: box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

body.scrolled header#site-header {
    background-color: #fff;
    box-shadow: 0 10px 10px rgba(13, 41, 51, 0.30);
}

header#site-header .logo-wrap {
    max-width: 150px;
    transition: max-width 0.3s ease-in-out, filter 0.3s ease-in-out;
}

body.scrolled header#site-header .logo-wrap {
    filter: none;
    max-width: 100px;
}

@media only screen and (min-width: 992px) {
    /* header#site-header .logo-wrap {
        filter: brightness(0) invert(1);
    } */

    body:not(.scrolled) header#site-header .nav-link {
        color: #ccc;
    }

    body:not(.scrolled) header#site-header .nav-link.active {
        color: #fff;
    }
}

/* ---------------------------------- Components CSS ---------------------------------------------- */

.light_bg {
    background-color: var(--light_color);
}

.mainBtn {
    width: 120px;
    height: 120px;
    display: flex;
    padding: 10px;
    font-weight: 600;
    border-radius: 50%;
    align-items: center;
    text-align: center;
    justify-content: center;
    color: var(--sec_color);
    background-color: transparent;
    border: 2px solid var(--sec_color);
}

.bannerBtn.mainBtn {
    width: 240px;
    height: 240px;
}

body>main>section {
    scroll-margin-top: var(--header-height, 100px);
}

#site-footer .logo-wrap {
    max-width: 180px;
    /* filter: brightness(0) invert(1); */
}

.input_wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.input_wrapper input,
.input_wrapper textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease-in-out;
}

/* 
.animate-fadeIn {
    animation: fadeIn 1s ease-in-out 0s 1 normal forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
} */

/* ---------------------------------- Main CSS ---------------------------------------------- */

@media only screen and (max-width: 992px) {
    .page-banner {
        padding-top: 135px;
    }
}

.s-banner {
    min-height: 100vh;
    padding-top: calc(var(--header-height, 80px) + 20px);
}

.s-why .bannerImgWrap {
    width: 100%;
    height: 100%;
    height: 600px;
    position: absolute;
    inset: 0;
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    .s-why .bannerImgWrap {
        height: auto;
        position: relative;
    }
}

.s-why .banner-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    /* transform: translateY(-20%); */
}

.s-why .d-why {
    padding: 100px;
    color: #fff;
    background-color: var(--sec_color);
}

.s-why .d-why p {
    color: #f1f1f1;
    text-align: justify;
}

@media only screen and (max-width: 1024px) {
    .s-why .d-why {
        padding: 50px 40px;
    }
}

@media only screen and (max-width: 991px) {
    .s-why .d-why {
        padding: 50px 20px;
    }
}

.d-uspList {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media only screen and (max-width: 1199px) {
    .d-uspList {
        gap: 50px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 767px) {
    .d-uspList {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .d-uspList .d-usp {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
.d-usp {
    margin: auto;
}
.d-usp .icon_wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.d-usp h3 {
    font-weight: 800;
    color: var(--sec_color);
}

.d-usp p {
    margin-bottom: 0;
}

.s-build .d-logoEl {
    position: absolute;
    right: 0;
    top: 10%;
    width: 100%;
    opacity: 0.45;
    max-width: 300px;
}

.s-amenities .d-amenities {
    padding: 20px;
}

@media only screen and (max-width: 992px) {
    .s-amenities .d-amenities {
        padding: 20px 0;
    }

    .s-build .d-logoEl {
        opacity: 0.12;
    }
}

.s-amenities .d-amenities .amenityItem .icon_wrapper {
    max-width: 70px;
    margin-bottom: 10px;
}

.s-amenities .sec_bg .d-amenities .amenityItem .icon_wrapper {
    filter: brightness(0) invert(1);
}

.bannerSwiper .img_wrapper {
    position: relative;
    overflow: hidden;
}

.bannerSwiper .img_wrapper .title {

    position: absolute;
    bottom: 15%;
    left: 4%;
    padding: 10px 20px;
    border-radius: 5px;
    transform: translateX(50%);
    opacity: 0;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;

}

.bannerSwiper .img_wrapper .title h1 {

    font-family: "optima", sans-serif !important;
    text-transform: uppercase;
}

.bannerSwiper .img_wrapper .title h1 span {

    font-size: 4rem;

    color: #E2B98A;
}

.bannerSwiper .swiper-slide-active .img_wrapper .title {
    transform: translateX(0);
    opacity: 1;
    transition: transform 0.5s ease-in-out 0.5s, opacity 0.5s ease-in-out 0.3s;
}

.bannerSwiper .img_wrapper .title>h1 {
    margin: 0;
    color: #fff;
    /* font-weight: 300; */
    text-shadow: 2px 1px 5px rgba(0, 0, 0, 0.9);
}

.amenitiesSwiper .img_wrapper {
    position: relative;
    overflow: hidden;
}

.amenitiesSwiper .img_wrapper .title {
    position: absolute;
    bottom: 10%;
    left: 4%;
    opacity: 0;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    transform: translateX(50%);
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.amenitiesSwiper .img_wrapper .title>h1 {
    margin: 0;
    color: #fff;
    font-weight: 300;
    text-shadow: 2px 1px 5px rgba(0, 0, 0, 0.9);
}

.amenitiesSwiper .swiper-slide-active .img_wrapper .title {
    transform: translateX(0);
    opacity: 1;
    transition: transform 0.5s ease-in-out 0.5s, opacity 0.5s ease-in-out 0.3s;
}

@media only screen and (max-width: 767px) {

    .amenitiesSwiper .img_wrapper .title,
    .bannerSwiper .img_wrapper .title {
        left: 0%;
        padding: 10px calc(1.5rem * .5);
    }
}

.my-list {
    list-style: none;
    padding-left: 0;
}

.my-list li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 20px;
}

.my-list li::before {
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--sec_color);
}

/* ---- about marvel ---- */

.my-list-about {
    line-height: 1.8;
    font-size: 17px;
}

/* ---- At the heart of everything ---- */

.s-heart .heading-serif {
    font-family: "optima", serif;
    text-transform: uppercase;
    color: var(--sec_color);
    line-height: 1.1;
}



/* decorative motif (replaces the leaf) */
.s-heart .d-heartEl {
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    max-width: 440px;
    color: var(--sec_color);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.s-heart .d-heartEl svg {
    width: 100%;
    height: auto;
    display: block;
}

.s-heart .container {
    position: relative;
    z-index: 1;
}

/* distance list */
.heart-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.heart-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 2px;
    border-bottom: 1px solid #e0d9cc;
}

.heart-list li:first-child {
    border-top: 1px solid #e0d9cc;
}

.heart-list .h-icon {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    color: var(--sec_color);
}

.heart-list .h-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.heart-list .h-label {
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--text_color);
    text-transform: uppercase;
    font-size: 17px;
}

.heart-list .h-time {
    margin-left: auto;
    font-weight: 500;
    white-space: nowrap;
    color: var(--text_color);
}

@media only screen and (max-width: 992px) {
    .s-heart .d-heartEl {
        opacity: 0.12;
        right: 0;
    }
}


.marvel-amenities .amenityItem {
    display: flex;
    align-items: center;
    flex-direction: column;
}