.about {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0px 32px;
    gap: 80px;
    margin-bottom: 40px;
}

.about .column-one .title-section {
    margin-bottom: 16px;
}

.about .column-one .description {
    font-weight: 400;
    font-size: 14px;
    line-height: 163%;
    text-align: left;
    color: #000000;
}



    

@media screen and (min-width: 641px) and (max-width: 1024px) {
    .about {
        flex-direction: column;
        gap: 16px;
    }

    .image {
        width: 100%;
    }
}


@media screen and (max-width: 640px) {
    .about {
        flex-direction: column;
        padding: 0px 16px;
        gap: 16px;
    }

    .image {
        width: 100%;
    }
}