.advantages {
    margin: 64px 0 128px 0;
}

.advantages .row {
    display: flex;
    gap: 10px;
}

.advantages__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px 10px;
    width: 100%;
    background: white;
}

.advantages__item img {
    width: 32px;
}

.advantages__item p {
    font-size: 18px;
    height: 24px;
    text-align: center;
    color: black;
}

/* ______________________________ADAPTIVE________________________ */
/* 
@media all and (max-width: 170px) {

    .advantages__item:nth-of-type(4) p {
        font-size: 16px !important;
    }

} */

@media all and (max-width: 823px) {

    .advantages__item p {
        font-size: 16px;
    }
}


@media all and (max-width: 720px) {
    .advantages .row {
        flex-direction: column;
        gap: 30px;

    }

    .advantages__item {
        display: flex;
        align-items: center;
        flex-direction: column;
        background: white;
        color: #222;
        width: 100%;
    }
}