.advantages-block {}
.advantages-block__title {
    text-align: center;
    text-transform: uppercase;
    color: #000;
    font-size: 24px;
    line-height: 1.1;
    margin-bottom: 40px;
}
.advantages-block__list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    row-gap: 20px;
}
.advantages-block__item-wrapper {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 10px;
}
.advantages-block__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: #fff;
    padding: 20px;
    height: 100%;
}
.advantages-block__icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #eee;
    position: relative;
    margin-bottom: 10px;
}
.advantages-block__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: calc(100% - 45px);
    height: calc(100% - 45px);
    object-position: center center;
    object-fit: contain;
}
.advantages-block__name {
    color: #000;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
}
.advantages-block__text {
    font-size: 13px;
    line-height: 1.4;
    color: #6a6a6a;
    font-weight: 400;
}
@media screen and (min-width: 576px) {
    .advantages-block__item-wrapper {
        flex: 0 0 50%;
        max-width: 50%;
    }
}
@media screen and (min-width: 768px) {
    .advantages-block__title {
        font-size: 30px;
    }
    .advantages-block__name {
        font-size: 18px;
    }
    .advantages-block__text {
        font-size: 14px;
    }
}
@media screen and (min-width: 992px) {
    .advantages-block__item-wrapper {
        flex: 0 0 25%;
        max-width: 25%;
    }
}