.about{
    display: flex;
    flex-direction: column;
}
.a-wrap{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2.5vw;
}
.a-w-text{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 1.25vw;
}
.a-w-img{
    width: 50%;
    border-radius: 1.25vw;
}
@media (min-width: 180px) and (max-width: 768px){
    .a-wrap{
        flex-direction: column;
        gap: 24px;
    }
    .a-w-text{
        width: 100%;
        gap: 16px;
    }
    .a-w-img{
        width: 100%;
        border-radius: 16px;
    }
}