.advantages-wrapper {
    display: flex;
}

.advantages-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 0;
}

.advantages-block {
    margin-bottom: 80px;
}

.advantages-tabs-wrapper {
    border-radius: var(--border-radius);
    background-color: #fff;
    flex-direction: column;
    display: flex;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 2px rgba(0,0,0,0.16);
    margin-top: 25px;
}

.advantages-tabs {
    display: flex;
    overflow-x: auto;
}

.advantages-tab {
    flex: 1;
    height: 64px;
    padding: 5px;
    text-align: center;
    font-size: 16px;
    display: flex;
    border-bottom: 2px solid #f3f3f3;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    min-width: 150px;
    box-sizing: border-box;
}

.advantages-tab-active {
    border-bottom: 2px solid #ff2f3e;
}

.advantages-content {
    display: none;
}

.advantages-content-active {
    display: flex;
}

.advantages-content img {
    display: block;
}

.peculiarities {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 15px;
}

.peculiarity {
    display: flex;
    gap: 15px;
    ;
}

.pec-title {
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    color: black;
}

.pec-text {
    width: 245px;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #797979;
}

.pec-icon {
    width: 30px;
}

@media only screen and (min-width: 768px) {
    .peculiarities {
        gap: 25px 20px;
    }

    .pec-text {
        width: 269px;
    }

    .advantages-block {
        margin-top: 15px;
    }

    .advantages-title {
        font-size: 24px;
        line-height: 30px;
    }

    .advantages-tabs-wrapper {
        margin-top: 35px;
    }
}

@media only screen and (min-width: 1024px) {
    .pec-text {
        width: 236px;
    }

    .advantages-block {
        margin-top: 30px;
    }

    .advantages-title {
        font-size: 32px;
        line-height: 38px;
    }
}

@media only screen and (min-width: 1280px) {
    .pec-text {
        width: 225px;
    }
}

@media only screen and (min-width: 1366px) {
    .pec-text {
        width: 246px;
    }
}

@media only screen and (min-width: 1420px) {
    .pec-text {
        width: 270px;
    }
}