.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
}

.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;
    border: 1px solid #517b9a;
    padding: 40px 0 40px
}

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

.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_legal {
    display: flex;
    flex-direction: column;
    width: 400px;
    gap: 5px;
    color: #3f3f3f;
    font-size: 14px;
    line-height: 1.45;
}
.item_center_legal a {
    color: #0000EE;
    text-decoration: underline;
}
.item_center_legal a:hover {
    color: #0000EE;
}

.item_right {
    padding-right: 50px
}

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

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


    .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: 297px;
        margin-top: 20px;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

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

}

@media (max-width: 948px) {
    .item_center_legal {
        width: auto;
        padding: 30px;
    }
    .item_left {
        width: 100%;
    }
}
@media (max-width: 675px) {
    
    .offers {
        padding: 30px 0;
    }
    
    .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{
        -webkit-flex-basis: auto;
        flex-basis: auto;
        max-width: 100%;
    }

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

    .item_left {
        width: 100%
    }
}