.about-wrap {
    background-color: var(--color-turquoise);
    padding: 16px;
    box-shadow: 0 0 4px 0 #00000040;
    border-radius: 30px;
}

.about-title {
    margin-bottom: 6px;
}

.about-title__item {
    color: var(--color-white);
}

.about-text {
    font-size: 16px;
    font-weight: 300;
    line-height: 19.5px;
    color: var(--color-white);
}

.about-text > p:last-child {
    margin: 0;
}

.about-img__item {
    border-radius: 30px;
}

@media (min-width: 768px) {
    .about-wrap {
        border-radius: 40px;
        box-shadow: 0 0 25.9px 0 #00000054;
    }
}

@media (min-width: 1200px) {
    .about-wrap {
        border-radius: 60px;
        padding: 40px;
    }

    .about-title {
        margin-bottom: 20px;
    }

    .about-text {
        font-weight: 400;
        text-align: justify;
        font-size: 20px;
        line-height: 24.38px;
    }

    .about-img__item {
        border-radius: 46px;
    }
}