:root {
    --primary-color: #E8C183;
    --secondary-color: #000000;
    --text-color: #D6D6D6;
    --gray: #D6D6D6;
}

html,
body {
    height: auto;
    font-family: "Montserrat", sans-serif;
    background: var(--secondary-color);
    color: var(--text-color);
    overflow-x: hidden;
}

p {
    font-size: 12px;
    line-height: 2;
    font-weight: 300;
    letter-spacing: 1px;
}

.cinzel-uniquifier {
    font-family: "Cinzel", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.montserrat-uniquifier {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.heading {
    font-size: 2.25rem;
    text-transform: uppercase;
    color: var(--primary-color);
}

.custom_container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 100%;
}

@media (max-width: 720px) {
    .heading {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
}

@media (min-width: 540px) {
    .custom_container {
        max-width: 540px;
    }
}

@media (min-width: 991px) {
    .custom_container {
        max-width: 991px;
    }
}

@media (min-width: 1140px) {
    .custom_container {
        max-width: 1140px;
    }
}

@media (min-width: 1200px) {
    .custom_container {
        max-width: 1200px;
    }

    .black_texture_two {
        background-image: url(https://www.tribecadevelopers.com/trumpresidenceslandingpage-gurgaon/assets/images/tribeca_bg.jpg);
        background-size: cover;
        background-position: 50%;
    }

    .black_texture_three {
        background-image: url(https://www.tribecadevelopers.com/trumpresidenceslandingpage-gurgaon/assets/images/smart_world_bg.jpg);
        background-size: cover;
        background-position: 50%;
    }

}

@media (min-width: 1320px) {
    .custom_container {
        max-width: 1320px;
    }
}



.title {
    font-size: 16px;
    color: var(--gray);
    text-transform: uppercase;
}

.py-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}


/* amenities-caption-text */
.amenities-caption-text {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 0.3em;
    color: var(--gray);
    text-align: center;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.amenities-caption-text.fade-out {
    opacity: 0;
    transform: translateY(6px);
}


/* Default (inactive slides) */
.amenitiesSwiper .swiper-slide {
    height: 400px;
    opacity: 0.5;
    transition: height 0.5s ease, opacity 0.5s ease;
    display: flex;
    align-items: flex-end;
}

/* Active slide (taller) */
.amenitiesSwiper .swiper-slide-active {
    height: 520px;
    opacity: 1;
}

/* Side slides */
.amenitiesSwiper .swiper-slide-prev,
.amenitiesSwiper .swiper-slide-next {
    opacity: 0.7;
}



@media (max-width:768px) {
    .amenitiesSwiper .swiper-slide {
        height: 250px;
    }

    .amenitiesSwiper .swiper-slide-active {
        height: 350px;
    }
}