.webfus-advantages {
    position: relative;
    margin-bottom: 80px;
}

.webfus-advantages:last-child {
    margin-bottom: 30px;
}

.webfus-advantages .maxwidth-theme {
    padding-block: 0 !important;
}

.webfus-advantages__list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.webfus-advantages__item {
    width: calc(25% - 24px * 3 / 4);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 5px rgba(0, 0, 0, .136);
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.webfus-advantages__item_text {
    font-size: 16px;
    line-height: 1.4;
    color: #222;
    text-wrap: balance;
    word-break: break-word;
}

.webfus-advantages__item_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #9a0202;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    padding: 15px;
}

.webfus-advantages__item_icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.webfus-advantages__item_icon svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 1199px) {
    .webfus-advantages {
        margin-bottom: 60px;
    }

    .webfus-advantages__item {
        width: calc(50% - 12px);
    }
}

@media (max-width: 767px) {
    .webfus-advantages__list {
        gap: 20px;
    }

    .webfus-advantages__item {
        width: calc(50% - 10px);
        gap: 15px;
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
    }

    .webfus-advantages__item_text {
        font-size: 15px;
    }
}

@media (max-width: 374px) {
    .webfus-advantages__item {
        width: 100%;
        flex-direction: row;
        align-items: center;
    }
}