/* Преимущества */
.advantages {
    padding: 50px 100px 75px 100px;
}

.advantages h2 {
    text-align: center;
    color: rgba(29, 43, 79, 1);
    font-size: 36px;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    padding-bottom: 50px;
}

.advantages .items {
    display: flex;
    background-color: rgba(254, 250, 244, 1);
    border-radius: 16px;
    padding: 40px 20px;
}

.advantages .items .item {
    width: 25%;
    text-align: center;
    padding: 0 25px;
    box-sizing: border-box;
}

.advantages .items .item + .item {
    border-left: 1px solid rgba(219, 226, 238, 1);
}

.advantages .items .item .icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: rgba(223, 231, 245, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.advantages .items .item h3 {
    color: rgba(29, 43, 79, 1);
    font-size: 17px;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    padding-bottom: 12px;
}

.advantages .items .item p {
    color: rgba(80, 90, 110, 1);
    font-size: 14px;
    line-height: 1.6;
}

/* Адаптация преимуществ */
@media (max-width: 1440px) {
    .advantages {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media (max-width: 1240px) {
    .advantages {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 1024px) {
    .advantages {
        padding: 40px 30px;
    }

    .advantages h2 {
        font-size: 30px;
    }

    .advantages .items {
        flex-wrap: wrap;
    }

    .advantages .items .item {
        flex-basis: calc(50% - 20px);
        border-right: none;
    }
}

@media (max-width: 640px) {
    .advantages {
        padding: 30px 16px;
    }

    .advantages h2 {
        font-size: 25px;
        padding-bottom: 25px;
    }

    .advantages .items {
        flex-direction: column;
        gap: 25px;
    }

    .advantages .items .item {
        flex-basis: auto;
        width: 100%;
        border-bottom: 1px solid rgba(233, 236, 243, 1);
        padding-bottom: 25px;
    }

    .advantages .items .item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 1024px) {
    .advantages .items .item + .item {
        border-left: none;
    }
}

@media (max-width: 640px) {
    .advantages .items {
        padding: 30px 20px;
    }

    .advantages .items .item {
        border-bottom: none;
        padding-bottom: 0;
    }

    .advantages .items .item + .item {
        border-top: 1px solid rgba(219, 226, 238, 1);
        padding-top: 25px;
    }
}

@media (min-width: 1680px) {
    .advantages {
        padding-left: 12%;
        padding-right: 12%;
    }
}
