.about-us {
    padding-top: 145px;
    padding-bottom: 115px;
}

.about-us__title {
    padding-bottom: 72px;
}

.about-us__items {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 0 -6px;
}

.about-us__item {
    width: calc(33.3% - 12px);
    margin: 0 6px 35px;
    border: 2px solid #F0F1F5;
    background: #ffffff;
    border-radius: 20px;
    padding: 53px 32px 32px;
    position: relative;
}

.about-us__item-icon {
    position: absolute;
    left: 32px;
    top: -26px;
}

.about-us__item-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 11px;
}

.about-us__item-description {
    line-height: 22px;
    color: #4D4D4D;
}

@media screen and (max-width: 1199px) {
    .about-us {
        padding-top: 80px;
        padding-bottom: 50px;
    }
}

@media screen and (max-width: 767px) {
    .about-us__item {
        width: calc(50% - 12px);
        padding: 50px 20px 20px;
    }
}

@media screen and (max-width: 479px) {
    .about-us__item {
        width: 100%;
    }
}