.about{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.about-images{
    margin-left: 87px;
}

.about-texts{
    font-family: 'Inter';
    margin-left: 165px;
}

.about-title{
    /* SOBRE */
    font-weight: 700;
    font-size: 3em;
    line-height: 150%;
    /* identical to box height, or 66px */
    
    color: var(--white-main);

    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.45);

}

.about-subtitle{
    padding-top: 21px;
    color: var(--white-main);
}

@media screen and (max-width: 1024px){
    .about-images{
        width: 40%;
    }

    .about-texts{
        margin: 0px 72px;
    }
}

@media screen and (max-width: 768px){

    .about-texts{
        font-size: 9px;
        margin-top: 10%;
        margin: 12px;
    }
    .about-title{
        font-size: 44px;
    }
    .about-subtitle{
        font-size: 10px;
        
    }

}

@media screen and (max-width: 1023px){
    .about-images{
        width: 80%;
        margin-left: 0px;
    }
    .about-title{
        font-size: 34px;
    }
    .about-subtitle{
        font-size: 1.7em;
    }
    .about{
        margin-bottom: 100px;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
}