
body{
    font-family: "Geometria", sans-serif;
}


.offers_wrapper{
    max-width: 100%;
    padding: 0;
}

.offers_list{
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 60px;
}
.item_center_legal {
    display: flex;
    flex-direction: column;
    width: auto;
    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;
}
.offers_title{
    font-weight: bold;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    color: #575757;
    margin-bottom: 40px;
    padding-top: 50px;
}

.new_design_offer{
    background: #FFFFFF;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.new_design_offer:nth-child(4n){
    margin-right: 0;
}

.new_design_offer.best{
    box-shadow: 0px 0px 15px #F2994A;
}

.new_design_offer .top_line{
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 10px 20px;
}

.new_design_offer .top_line .logo_wrapper img{
    max-width: 88px;
}
.new_design_offer .top_line .star_wrapper{
    font-size: 14px;
    line-height: 100%;
    color: #575757;
    position: relative;
}

.new_design_offer .top_line .star_wrapper:after {
    content: "";
    width: 18px;
    height: 18px;
    display: inline-block;
    background-size: cover;
    background-image: url(../../img/src/icons/new-star.svg);
    vertical-align: -2px;
}

.new_design_offer .middle_line{
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 46px;
    padding: 10px 20px;
    background: #ECF2F9;
    flex: 1 0 auto;
}
.new_design_offer .middle_line .text_wrp p{
    font-size: 12px;
    line-height: 100%;
    margin-bottom: 0;
    color: #575757;
}
.new_design_offer .middle_line .text_wrp p:first-child{
    margin-bottom: 4px;
}

.new_design_offer .middle_line .price{
    font-weight: bold;
    font-size: 14px;
    line-height: 100%;
    color: #575757;
    white-space: nowrap;
    margin-left: 5px;
    flex: 0 0 auto;
}

.new_design_offer .get_credit{
    background: #6EB85B;
    padding: 15px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 100%;
    text-align: center;
    color: #FFFFFF;
    margin: 10px 20px 20px;
    white-space: pre-wrap;
}

.item__row {
    margin: 0 -10px;
    display: flex;
    flex-wrap: wrap;
}

.item__col {
    padding: 0 10px;
    width: 25%;
    margin-bottom: 20px;
}

@media (max-width: 1025px) {
    .item__col {
        width: calc(100% / 3);
    }
}

@media (min-width: 580px) and (max-width: 769px){
    .new_design_offer .middle_line .price{
        font-size: 20px;
    }
    .item__row {
        margin: 0 -5px;
    }

    .item__col {
        padding: 0 5px;
        width: 50%;
    }
}
@media (max-width: 579px){
    .offers_title{
        font-size: 14px;
        line-height: 120%;
        color: #575757;
    }
    .offers_list{
        flex-direction: column;
    }
    .item__col {
        width: 100%;
    }
    .new_design_offer .top_line{
        padding: 20px 38px 10px 38px;
    }
    .new_design_offer .middle_line{
        padding: 10px 20px;
    }

}
