.advantages {
    --white: #f3f4f4;
    --gray: #7a7a7a;
    --brand-primary: #7c00ff;
    --brand-secondary: #fd5016;
}

.advantages {
    display: flex;
    justify-content: center;
    width: 100%;
}
.advantages__item {
    display: block;
    max-width: 350px;
    padding: 1rem 0.5rem 0.5rem;
}
.advantages__item__icon {
    width: 70px;
    min-width: 70px;
    margin: auto;
    display: flex;
    height: 70px;
}
.advantages__item__icon img {
    width: 100%;
    height: auto;
    display: block;
}
.advantages__item__txt {
    margin-top: 0.5rem;
    text-align: center;
}
.advantages__ttl {
    display: block;
    padding-bottom: 0.3rem;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1rem;
}
.advantages__subttl {
    display: none;
}
.advantages__description {
    display: none;
}

.images__avantages {
    width: 70px;
}


@media (min-width: 768px) {
    .advantages__item {
        display: flex;
    }
    .advantages__item__icon {
        display: block;
        margin: 0;
    }
    .advantages__item__txt {
        margin-top: 0;
        margin-left: 1rem;
        text-align: left;
    }
    .advantages__item__txt span {
        display: block;
        padding-bottom: 0.3rem;
    }
    .advantages__subttl {
        font-size: 0.85rem;
        line-height: 0.85rem;
    }
    .advantages__description {
        font-size: 0.6rem;
        line-height: 0.6rem;
    }

}


.advantages.section {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-top: 20px;
  margin: 0;
  max-width: 100%;
}


