/* --- About --- */
.about .about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.about .about-content .image {
    width: 459px;
    max-width: 50%;
}

.about .about-content .text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-size: 24px;
    line-height: 1.45;
}

/* --- About --- */

@media screen and (max-width: 992px) {
    .about .about-content {
        gap: 40px;
    }

    .about .about-content .text {
        font-size: 21px;
    }

    .about .about-content .image {
        max-width: 40%;
    }
}

@media screen and (max-width: 767px) {

    .about .about-content {
        flex-direction: column;
        gap: 24px;
    }

    .about .about-content .text {
        font-size: 16px;
    }

    .about .about-content .image {
        max-width: 100%;
    }
}