.offers {
    padding: 100px 0 100px;
    background: #fcfcfc
}

.offers_title {
    font-family: gotham-bold, sans-serif;
    font-size: 28px;
    line-height: 30px;
    text-align: center;
    color: #5a5d62
}

.benefits_title {
    font-family: gotham-bold, sans-serif;
    font-size: 28px;
    line-height: 30px;
    color: #5a5d62;
    margin-bottom: 15px;
}
.benefits_subtitle {
    font-size: 18px;
    line-height: 120%;
    color: #a2a2a2;
    margin-bottom: 35px;
}
.benefits_wrap {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 75px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.benefits_item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 23%;
}
.benefits_icon {
    width: 80px;
    height: 80px;
}
.benefits_text {
    font-family: gotham-bold, sans-serif;
    font-size: 18px;
    line-height: 100%;
    color: #5a5d62;
}

@media (max-width: 1100px) {
    .benefits_item {
        width: 48%;
    }
}
@media (max-width: 655px) {
    .benefits_icon {
        width: 50px;
        height: 50px;
    }
    .benefits_text {
        font-size: 16px;
    }
    .benefits_item {
        width: 43%;
    }
}
@media (max-width: 375px) {
    .benefits_wrap {
        flex-direction: column;
    }
    .benefits_item {
        width: 100%;
    }
}
@media (max-width: 500px) {
    .benefits_item:nth-child(1),
    .benefits_item:nth-child(4) {
        display: none;
    }
}
.offers_list {
    margin-top: 60px;
    list-style: none
}

.item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background: #fff;
    -webkit-box-shadow: 0 4px 25px rgba(88, 88, 88, .1);
    box-shadow: 0 4px 25px rgba(88, 88, 88, .1);
    border-radius: 10px;
    padding: 40px 0 40px
}

.item:not(:last-child) {
    margin-bottom: 50px
}

.item_legend {
    position: absolute;
    top: -20px;
    left: 70px;
    border-radius: 6px;
    font-family: gotham-bold, sans-serif;
    font-size: 10px;
    color: #fff;
    text-transform: uppercase;
    width: 170px;
    height: 37px;
    line-height: 14px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.item_legend.red {
    background: #e45f5a
}

.item_legend.blue {
    background: #5a89e4
}

.item_legend.orange {
    background: #e4ad5a
}

.item_left {
    width: 300px;
    text-align: center;
    padding: 0 10px;
}

.item_logo {
    max-width: 160px;
    margin: 0 auto;
    height: 70px;
    object-fit: contain;
    display: flex;
    justify-content: center;
    align-items: center;
}

.item_logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.item_center {
    display: grid;
    position: relative;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 10px;
}

.item_center:before {
    content: '';
    position: absolute;
    bottom: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 90%;
    height: 1px;
    border-bottom: 1px dashed #ececec
}

.item_center__cols {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    align-self: center;
}

.item_center__cols:first-child, .item_center__cols:nth-child(2), .item_center__cols:nth-child(3) {
    position: relative
}

.item_center__cols:first-child:before {
    content: '+';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -10px;
    color: #a2a2a2;
    font-size: 18px;
    line-height: 30px
}


.item_center__cols:nth-child(2):before {
    content: '=';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -10px;
    color: #a2a2a2;
    font-size: 18px;
    line-height: 30px
}

.item_center__titles {
    font-size: 14px;
    color: #5a5d62;
    text-transform: uppercase;
    line-height: 30px
}

.item_center__prices__old {
    color: #eb5757;
    text-decoration: line-through;
    margin-right: 5px
}

.item_star {
    margin-top: 30px
}

.item_star__fill {
    position: relative;
    display: inline-block;
    background: url(../../img/src/icons/star-fill.svg) center center;
    width: 21px;
    height: 20px
}

.item_star__stroke {
    position: relative;
    display: inline-block;
    background: url(../../img/src/icons/star-stroke.svg) center center;
    width: 21px;
    height: 20px
}

.item_reviews {
    margin-top: 5px;
    font-size: 12px;
    color: #a2a2a2
}

.item_right {
    padding-right: 50px
}

.item_right__label {
    font-size: 12px;
    font-family: gotham-medium, sans-serif;
    line-height: 47px;
    color: #4f7a9e;
    margin-bottom: 10px;
    text-align: center
}

.item_right__circle {
    background: #4f7a9e;
    display: inline-block;
    width: 47px;
    height: 47px;
    border-radius: 50%;
    color: #fff;
    line-height: 47px;
    text-align: center;
    font-size: 12px
}

.item_right__btn {
    background: #f2994a;
    border-radius: 2px;
    display: block;
    width: 250px;
    height: 48px;
    color: #fff;
    font-size: 16px;
    font-family: gotham-medium, sans-serif;
    line-height: 48px;
    text-align: center
}

.item_right__btn:hover {
    color: #fff
}

.item_right__more {
    display: block;
    font-family: gotham-medium, sans-serif;
    font-size: 12px;
    line-height: 30px;
    text-decoration: underline;
    color: #a2a2a2;
    text-align: center;
    margin-top: 12px
}

.item_right__more:hover {
    text-decoration: underline;
    color: #a2a2a2
}

@media (max-width: 1025px) {
    .item {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        justify-content: center;
    }

    .item_center {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .item_center__cols {
        margin-right: 40px
    }

    .item_center__cols:nth-child(3n) {
        margin-right: 0
    }

    .item_center__cols:first-child:before {
        right: -25px
    }

    .item_center__cols:nth-child(2n):before {
        right: -25px
    }

    .item_left {
        width: 220px
    }
    
    .item_center__cols:nth-child(2) {
        padding-right: 0;
    }

    .item_right {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        margin-left: 220px;
        margin-top: 20px;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .item_right__label {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
        text-align: left
    }

    .item_right__btn {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%
    }

    .item_right__more {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
        margin-left: auto
    }

    .item_center:before {
        width: 100%;
    }
}

@media (max-width: 675px) {
    
    .offers {
        padding: 30px 0;
    }
    
    .item_legend {
        left: 50%;
        transform: translateX(-50%);
    }
    .item_right {
        margin-left: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-right: 0;
        margin-top: 30px;
        flex-basis: auto;
        width: 100%;
    }

    .item_right__btn, .item_right__label, .item_right__more {
        -webkit-flex-basis: auto;
        flex-basis: auto;
        max-width: 100%;
    }

    .item_right__btn {
        margin: 20px auto;
        width: 300px
    }

    .item_right__more {
        margin-left: 0;
        margin-top: 0
    }

    .item_right__label {
        text-align: center
    }

    .item_left {
        width: 100%
    }

    .item_center {
        margin-top: 20px;
        padding: 0 15px;
        grid-template-rows: repeat(3, 1fr);
        grid-template-columns: repeat(2, 1fr);
    }

    .item_center:before {
        top: 33.33%;
        transform: translateY(-50%);
    }

    .item_center:after {
        content: '';
        position: absolute;
        bottom: 23%;
        height: 1px;
        width: 100%;
        border-bottom: 1px dashed #ececec;
        top: 66.66%;
    }

    .item_center__cols {
        margin-right: 0;
        padding: 0 20px
    }

    .item_center__cols:nth-child(1) {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1
    }

    .item_center__cols:nth-child(1):before {
        right: -6px
    }

    .item_center__cols:nth-child(2) {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2
    }

    .item_center__cols:nth-child(2):before {
        display: none
    }

    .item_center__cols:nth-child(3) {
        -webkit-box-ordinal-group: 6;
        -webkit-order: 5;
        -ms-flex-order: 5;
        order: 5;
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
        padding: 0 20px 0 60px
    }

    .item_center__cols:nth-child(3):before {
        content: '=';
        position: absolute;
        top: 50%;
        left: 25px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        font-size: 18px;
        line-height: 30px
    }

    .item_center__cols:nth-child(4) {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3;
        margin-bottom: 20px
    }

    .item_center__cols:nth-child(5) {
        margin-bottom: 20px;
        -webkit-box-ordinal-group: 5;
        -webkit-order: 4;
        -ms-flex-order: 4;
        order: 4
    }

    .item_center__cols:nth-child(6) {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
        -webkit-box-ordinal-group: 7;
        -webkit-order: 6;
        -ms-flex-order: 6;
        order: 6;
    }
}