.aboutus {
    padding: 2% 0%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.aboutus h1 {
    width: fit-content;
    margin: auto;
    font-size: 2.5rem;
    color: var(--primaryColor);
    border-bottom: 4px solid var(--primaryColor);
}

.aboutus-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: start;
}

/* --------------------------------------------- */

.aboutus-image {
    width: 40%;
    background: linear-gradient(190deg, var(--primaryColor) 0%, var(--helperColor) 73%);
    box-shadow: var(--shadow);
    border-radius: 50px 0px;
}

.aboutus-image div {
    width: fit-content;
    text-align: center;
    position: relative;
    top: -5px;
    right: 5px;
    border-radius: 50px 0px;

}

.aboutus-image div img {
    border-radius: 50px 0px;
    width: 95%;
    margin: auto;
    object-fit: cover;
}

/* ------------------------------------------------ */

.aboutus-details {
    width: 45%;
    text-align: start;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aboutus-details div h3 {
    width: fit-content;
    font-size: 2.5rem;
    color: var(--primaryColor);
}

.aboutus-details div p {
    font-size: 1.5rem;
    line-height: 2rem;
    color: var(--middleColor);
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

@media (max-width: 760px) {
    .aboutus {
        gap: 60px;
        padding: 4% 2%;
    }

    .aboutus h1 {
        font-size: 1.8rem;
    }

    .aboutus-container {
        flex-direction: column;
        gap: 50px;
    }

    /* --------------------------------------------- */

    .aboutus-image {
        width: 90%;
        margin: auto;
    }

    /* -------------------------- */
    .aboutus-details {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .aboutus-details div h3 {
        width: fit-content;
        margin: auto;
        font-size: 2rem;
        color: var(--primaryColor);
        border-bottom: 4px solid var(--primaryColor);
    }

    .aboutus-details div p {
        font-size: 1.3rem;
        line-height: 2.5rem;
        color: var(--middleColor);
    }

    .aboutus-image div img {
        min-height: 300px;
        width: 98%;
        object-fit: cover;
        border-radius: 50px 0px;
    }
}

@media screen and (min-width: 761px) and (max-width: 992px) {

    .aboutus {
        gap: 60px;
        padding: 4% 2%;
    }

    .aboutus h1 {
        font-size: 2rem;
        border-bottom: 4px solid var(--primaryColor);

    }

    .aboutus-container {
        flex-direction: column;
        gap: 50px;
    }

    /* --------------------------------------------- */

    .aboutus-image {
        width: fit-content;
        margin: auto;
    }

    /* -------------------------- */
    .aboutus-details {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .aboutus-details div h3 {
        width: fit-content;
        margin: auto;
        font-size: 2rem;
        color: var(--primaryColor);
    }

    .aboutus-details div p {
        font-size: 1.5rem;
        line-height: 2.5rem;
        color: var(--middleColor);
    }

    .aboutus-image div img {
        min-height: auto;
        max-height: 500px;
        object-fit: contain;
        border-radius: 50px 0px;
    }
}