/* section apropos */
    .containerApropos{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 64px;
    }

    .contentApropos{
        max-width: 1300px;
        height: auto;
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin: 0 auto;
    }

    .contentAbout{
        width: 480px;
        height: 350px;
        display: flex;
        flex-direction: column;
    }

    .contentAbout:first-child{
        background: var(--blue);
    }
    
    .contentAbout:first-child img{
        width: 100%; height: 100%;
        object-fit: cover;
    }

    .contentAbout:last-child{
        padding: 16px 32px;
        text-align: justify;
        margin-top: 55px;
        margin-left: -96px;
        box-shadow: var(--box-shadow);
        background-color: var(--white);
        z-index: 1;
    }

    .contentApropos:nth-child(even) .contentAbout:first-child{
        order: 2;
    }

    .contentApropos:nth-child(even) .contentAbout:last-child{
        order: 1;
        margin-right: -96px;
    }

    .text_apropos{
        overflow-y: auto;
        padding-right: 5px;
    }

    .text_apropos::-webkit-scrollbar{
        width: 5px;
        height: 5px;
    }

    .text_apropos::-webkit-scrollbar-track{
        background-color: transparent;
    }

    .text_apropos::-webkit-scrollbar-thumb{
        background-color: var(--red);
        border-radius: 16px;
    }
/* section apropos */