.about-us {
    /* height: 88.75rem; */
    padding: 7rem;
    background: linear-gradient(180deg, #F5F3ED -5.64%, #86E5FA 28.16%, #77D8FB 76.2%, #5EC3FB 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 2rem;
}

.about-us .floating-float {
    width: 500px;
    height: 500px;
    position: absolute;
    top: 7rem;
    right: -1rem;
    background-image: url("../img/assets/floatie-shadow.png");
    background-position: top 7rem right -5rem;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}

.about-us .about-header {
    margin-left: 2rem;
}

.about-us .about-header h1 {
    font-size: 2.25rem;
    font-weight: 700;
    font-family: "Frontspring Demo Chesna Grotesk Bold";
    color: var(--primaryblue-10);
}

.about-us .about-header h4 {
    font-family: "AG Book Rounded";
    color: var(--primaryblue-8);
    font-weight: 700;
    line-height: 2.1875rem;
    font-size: 1.25rem;
}

.about-us .about-container {
    font-family: "AG Book Rounded";
    border-radius: 1.25rem;
    color: var(--primaryblue-10);
    background: var(--Beige, #FFF9F1);
    padding: 4.375rem 4.125rem;
    display: flex;
    flex-direction: column;
    font-size: 1.25rem;
    /* gap: 3rem; */
    z-index: 2;
}

.about-us .about-container .about-detail {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 2rem;
    gap: 2.5rem;
}

/* .about-container .about-detail img {
    width: 23.5rem;
    height: 17.875rem;
    border-radius: 1.25rem;
    background-size: cover;
} */

.about-container .about-detail h4 {
    height: 11.8125rem;
    padding: 1.875rem;
    line-height: 2.1875rem;
    background-color: var(--primaryblue-2);
    border-radius: 1.25rem;
    border: 1px solid #FFF;
    display: flex;
    align-items: center;
}

.about-detail-image {
    display: flex;
    flex-grow: 10;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 17.875rem;
    border-radius: 1.25rem;
}

.about-detail-image {
    background-image: url("../img/pool/about-1.jpeg");
}

.image-2 {
    background-image: url("../img/pool/about-2.jpeg");
    background-position: bottom;
}

.image-3 {
    background-image: url("../img/pool/about-3.jpeg");
}

/* RESPONSIVE */
/* $sm: 640px; screen kecil dari 640px */
@media (max-width: 500px) { 
    .floating-float {
        display: none;
    }

    .about-us {
        padding: 7rem 3rem;
    }

    .about-header {
        text-align: center;
        margin: 0 !important;
    }

    .about-header h1, .about-header h4 {
        font-size: 1.25rem !important;
    }

    .about-container {
        background-color: transparent !important;
        padding: 0 !important;
    }

    .about-detail {
        flex-direction: column !important;
        padding: 2rem 0 !important;
    }

    .about-detail h4 {
        background-color: var(--Beige, #FFF9F1) !important;
    }

    .about-detail:nth-of-type(2) img {
        order: 1;
    }

    .about-detail:nth-of-type(2) h4 {
        order: 2;
    }

    .about-detail h4 {
        font-size: 0.875rem;
        height: auto !important;
        line-height: 1.5625rem;
    }

}
/* END RESPONSIVE */