.about-content {
    display: flex;
    justify-content: space-between;
}

h3 {
    font-weight: 200;
}
.about-content p {
    font-size: smaller;
}

.about-right {
    width: 65%;
}
.about-left {
    width: 30%;
}

@media (max-width: 1350px) {
    .about-left {
        width: 48%;
    }
    .about-right {
        width: 48%;
    }
}

@media (max-width: 1133px) {
    .about-content {
        display: block;
    }
    .about-left {
        width: 100%;
        margin-bottom: 20px;
    }
    .about-right {
        width: 100%;
    }
}    