.head_row > a {
    display: flex;
    align-items: center;
    height: auto;
}
header .head_row {
    padding: 10px 0;
}
header .language {
    background: #F2F2F2;
    border-radius: 50px;
    margin-right: 30px;
}
.language li{
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 2px;
}
.language li a{
    color: #828282;
    font-size: 13px;
}
.language li.current-lang{
    background: #FFFFFF;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}
.language li.current-lang a{
    color: var(--color-primary);
}
#content{
    background: #F5F5F5;
}
.mobile-only{
    display: none;
}
h1{
    font-weight: 700;
    font-size: 35px;
    color: #333333;
    margin-top: 50px;
    margin-bottom: 40px;
    line-height: 130%;
}
h1 span{
    color: #3EBF1F;
}
div.sub_title{
    color: #333333;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
}
.tns-inner {
    margin: 0 40px 0 0!important;
}
.top_offers {
    justify-content: start;
    align-items: center;
    display: flex;
    gap: 20px;
}
.top_offers .top_offer {
    flex: 1 1 0;
    display: flex!important;
    align-items: center;
    justify-content: center;
    height: 93px;
    border-radius: 10px;
    background: #FFF;
}
.top_offers .top_offer img{
    width: 100px;
    height: auto;
}
.offers_row {
    margin: 40px 0 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 20px;
}
.offers_row .offer{
    padding: 20px;
    max-width: calc((100% / 4) - 15px);
    flex: 1 1 calc((100% / 4) - 15px);
    text-align: left;
    transition: .2s;
    height: auto;
    display: flex!important;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 10px;
    background: #FFF;
    margin: 0;
    overflow: hidden;
}

.offers_row .offer .top_line{
    display: grid;
    align-items: flex-start;
    grid-template-columns: 45px auto;
    margin-bottom: auto;
}
.offers .offer .head{
    height: auto;
    margin-bottom: 0;
}
.offers_row .offer .logo img{
    border-radius: 10px;
    width: 35px;
    height: auto;
    display: block;
    overflow: hidden;
    margin-right: 10px;
}
.offers_row .offer .top_info .line{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
    line-height: 130%;
}
.offers_row .offer .top_info .title{
    font-size: 14px;
    font-weight: 600;
}
.offers_row .offer .top_info .rating{
    font-size: 12px;
    font-weight: 500;
    line-height: 130%;
    display: flex;
    align-items: center;
}
.offers_row .offer .top_info .rating svg{
    width: 14px;
    height: 14px;
    margin-right: 3px;
}
.offers .offer .promotion{
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 11px;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: auto;
    background: transparent;
    color: #333;
    opacity: 1;
    padding: 0;
    text-align: left;
}
.offers .offer .approvement{
    border-radius: 10px;
    border: 1px solid #828282;
    display: flex;
    padding: 4px 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    margin-top: 10px;
    font-size: 12px;
}
.offers .offer .approvement.good{
    border-color: #3398FF;
    color: #3398FF;
}
.offers .offer .main_line {
    display: flex;
    flex-direction: column;
    margin: 12px 0 20px;
}
.offers .offer .main_line > div{
    margin: 0!important;
}
.offers .offer .main_line .line_title, .offers .offer .main_line .line_value{
    display: block;
    text-align: left;
}
.offers .offer .main_line .line_title{
    color: #828282;
    font-size: 13px;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 4px;
}
.offers .offer .main_line .line_value{
    color: #333;
    font-size: 13px;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 12px;
}
.offers .offer .main_line > div:last-child .line_value{
    margin-bottom: 0;
}
.offers .offer a.get_money{
    border-radius: 6px;
    background-color: var(--color-primary);
    box-shadow: 0 6px 10px 0 rgba(62, 191, 31, 0.22);
    margin: 0;
    width: 100%;
    padding: 14px 4px;
    color: #FFF;
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
}
.offers .offer a.get_money:hover{
    background-color: var(--color-primary-hover);
}



@media all and (max-width: 767px){
    .mobile-only{
        display: block;
    }
    h1 {
        font-weight: 600;
        font-size: 22px;
        margin-top: 24px;
        margin-bottom: 27px;
    }
    div.sub_title {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 24px;
    }
    .top_offers .top_offer {
        height: 66px;
    }
    .offers_row {
        margin: 24px 0 30px;
        gap: 10px;
    }
    .offers_row .offer {
        padding: 14px;
        max-width: calc((100% / 2) - 5px);
        flex: 1 1 calc((100% / 2) - 5px);
    }
    .offers_row .offer .top_line {
        grid-template-columns: 36px auto;
        margin-bottom: 14px;
    }
    .offers_row .offer .top_info .title {
        font-size: 13px;
    }
    .offers_row .offer .logo img {
        width: 30px;
        margin-right: 6px;
    }
    .offers_row .offer .top_info .line {
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        margin-bottom: 0;
    }
    .offers .offer .promotion {
        display: none;
    }
    .offers .offer .approvement {
        font-size: 12px;
        font-weight: 500;
        margin-top: 0;
    }
    .offers .offer .main_line .line_value {
        margin-bottom: 8px;
    }
    .offers .offer .main_line .line_value .mobile-only {
        display: inline-block;
    }
    .offers .offer .main_line {
        margin: 12px 0 14px;
    }

}
@media all and (max-width: 300px){
    .offers_row .offer {
        padding: 14px;
        max-width: 100%;
        flex: 1 1 100%;
    }
}