@charset "UTF-8";

.about {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about__item:last-child {
    width: 200px;
    margin-top: 20px;
}

@media screen and (min-width: 768px) {
    .about {
        flex-direction: row;
        align-items: flex-start;
    }
    .about__item:first-child {
        width: calc(100% - 240px);
        margin-right: 40px;
    }
    .about__item:last-child {
        margin-top: 0;
    }
}
