.advantages__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    height: 100%;
}

.advantages__item {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 50px 30px 30px;
}

.advantages__icon {
    height: 86px;
    margin-bottom: 20px;
}

.advantages__name {
    text-align: center;
}

@media screen and (max-width: 1919px) {
    .advantages__list {
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
    }

    .advantages__item {
        padding: 30px;
        flex-direction: row;
    }

    .advantages__name {
        text-align: left;
    }

    .advantages__icon {
        min-width: 68px;
        width: 68px;
        height: auto;
        margin-right: 20px;
        margin-bottom: 0;
    }

}

@media screen and (max-width: 1169px) {
    .advantages__list {
        gap: 20px;
    }

    .advantages__item {
        padding: 20px;
    }
}

@media screen and (max-width: 569px) {
    .advantages__item {
        flex-direction: column;
    }

    .advantages__icon {
        width: 60px;
        height: 60px;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .advantages__name {
        text-align: center;
    }

}

@media screen and (max-width: 510px) {
    .advantages__list {
        gap: 14px;
    }
}