.container {
    max-width: 100%;
    /* margin: 0 auto; */
    /* padding: 0 20px; */
}

body {
    animation: fadeIn 1.5s ease-in-out forwards;
}

#main {
    position: relative;
}


.stickySection {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.stickyEl {
    /* height: 100vh; */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    object-fit: cover;
    width: 100%;
    height: 100vh;
    opacity: 1;
}

.stickyEl:first-child {
    opacity: 1;
}

.buildingContainer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 0 7%;
    padding-bottom: 5%;
}

.buildingContainer img {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.primary-btn {
    background-color: var(--color-secondary-gold);
    color: #fff;
    padding: 1rem 2rem;
    text-align: center;
    border-radius: 10px;
    white-space: nowrap;
    font-family: "Futura-md", sans-serif;
    transition: 0.3s all ease-in-out;
}

.primary-btn:hover {
    background-color: var(--color-primary-gold);
    color: #fff;
}

.linearSwiper .swiper-wrapper {
    width: 100%;
    height: 100%;
    -webkit-animation: linear I !important;
    -webkit-animation-delay: 0s;
    -webkit-animation-duration: 5s;
    transition-timing-function: linear !important;
    transition-delay: 0s;
    transition-duration: 5s;
    transition-property: all;
    padding: 10% 0 0 0;
}

.aboutSerenitySwiper img {
    aspect-ratio: 16 / 9;
    border-radius: 15px;
    object-fit: cover;
    object-position: center;
}

.faqEl-desc,
.faqEl {
    transition: all 0.8s linear !important;
}

.faqEl button:focus .faqEl-desc {
    max-height: 10rem;
}

.faqEl-desc-active {
    max-height: 10rem !important;
    overflow-y: auto;
    transition: all 0.8s linear !important;
}

.faqEl-active .plusIcon {
    transform: rotate(45deg);
}

.fadeIn {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.marquee {
    position: relative;
    width: 100vw;
    max-width: 100%;
    height: 200px;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.marquee .track {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 35s linear infinite;
}

.marquee .marqueeElement {
    width: fit-content;
    font-family: "Futura-md", sans-serif;
    font-size: 2vw;
    color: var(--color-primary-gold);
    font-weight: 400;
    line-height: 1;
}

@keyframes marquee {
    from {
        transform: translateX(20%);
    }

    to {
        transform: translateX(-50%);
    }
}


.singleSlideSwiper .swiper-pagination {
    bottom: 2.5rem !important;

}

.singleSlideSwiper .swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
    opacity: 0.5;
}

.singleSlideSwiper .swiper-pagination-bullet {
    background: var(--color-primary-dark);
}

.singleSlideSwiper .swiper-pagination-bullet-active {
    background: var(--color-primary-gold);
    opacity: 1;
}

.fillHeight {
    height: -webkit-fill-available;
}


@media (max-width: 1024px) {
    .marquee .marqueeElement {
        font-size: 6vw;
    }
}

@media (max-width: 768px) {
    .marquee .marqueeElement {
        font-size: 7vw;
    }

    .buildingContainer {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 12px;
        padding: 0 7%;
        padding-bottom: 5%;
        flex-direction: column;
        padding-top: 20vh;
        gap: 4rem;
    }
}

@media screen and (max-width: 557px) {
    .buildingContainer img {
        object-fit: cover;
        height: 17rem;
    }
}

/* -------------------------------------------------------------------------- */
/*	Book a Visit Modal
/* -------------------------------------------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-content {
    background-color: #fff;
    width: 90%;
    max-width: 500px;
    padding: 2.5rem;
    border-radius: 8px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.modal-overlay.is-active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: #999;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #000;
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h3 {
    margin-bottom: 0.5rem;
}

.modal-form .form-group {
    margin-bottom: 1.25rem;
}

.modal-form .form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.modal-form .form-input:focus {
    outline: none;
    border-color: var(--color-primary-dark, #333);
}

.modal-form .form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-primary-dark, #333);
}

.modal-form .radio-group {
    display: flex;
    gap: 1.5rem;
}

.modal-form .radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.modal-form .radio-label input[type="radio"] {
    accent-color: var(--color-primary-gold, #c5a47e);
}