.about-us {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.about-us-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

/* --------------------------------------------- */

.about-us-image {
    width: 40%;
    height: 100%;
    background: linear-gradient(190deg, var(--white) 0%, var(--helperColor) 73%);
    border-radius: 50px 0px;
    height: auto;
    box-shadow: var(--shadow-lg);
}

.about-us-image div {
    width: 95%;
    text-align: center;
    height: fit-content;
    transform: translate(20px, 15px);
    border-radius: 50px 0px;
}

.about-us-image div img {
    border-radius: 50px 0px;
    width: 100%;
    aspect-ratio: 1/0.8;
    margin: auto;
    height: fit-content;
    object-fit: cover;
}

/* ------------------------------------------------ */

.about-us-details {
    width: 50%;
    text-align: start;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: var(--space-md);
}

.about-us-details div {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: var(--space-md);
}

.about-us-details div h3 {
    text-align: start;
    color: var(--primaryColor);
}

.about-us-details div ul {
    text-align: start;
    color: var(--primaryColor);
}

.about-us-details div p {
    color: var(--middleColor);
    text-align: start;
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */


@media (max-width: 768px) {

    .about-us-container {
        padding: var(--space-lg);
        flex-direction: column;
        gap: var(--space-lg);

    }

    /* --------------------------------------------- */

    .about-us-image {
        width: 100%;
    }

    /* -------------------------- */
    .about-us-details {
        width: 100%;

    }

}