.head_row > a {
    display: flex;
    height: auto;
    align-items: center;
}
header .head_row {
    padding: 10px 0;
}

body {
	background-color: #F2F5FC!important;
}

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);
}

h1{
    font-weight: 700;
    font-size: 35px;
    color: #333333;
    margin-bottom: 0;
    margin-top: 30px;
}
h1 span{
    color: #2472d9;
}
div.sub_title{
    font-weight: 500;
    font-size: 22px;
    color: #4F4F4F;
}
.offers_row {
    margin: 60px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 20px;
}
.offers_row .offer{
    max-width: calc((100% / 3) - 20px);
    flex: 1 1 calc((100% / 3)  - 20px);
    text-align: left;
    transition: .2s;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    background: #FFFFFF;
    box-shadow: 0 0 14px rgba(102, 111, 116, 0.2);
    border-radius: 10px;
    margin: 0;
    overflow: hidden;
}
.offer.card {
    padding: 16px;
}
.offers_row .offer{
    position: relative;
}
.offers_row:not(.other) .offer:nth-child(-n+3){
    background: url(../img/crown.svg) no-repeat calc(100% - 16px) 16px;
    background-size: 22px;
}
.offers_row .offer_line {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 10px;
    margin-bottom: 20px;
    width: 100%;
}
.offers_row .offer_line .rate, .offers_row .offer_line .term{
    text-align: left;
    margin: 0;
    font-weight: 300;
}
.offers_row .offer_line.top_line {
    display: flex;
    align-items: center;
}
.offers_row .offer_line .name .title {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    line-height: 1.2;
    padding-right: 18px;
}
.offers_row .offer_line .name .title span {
    font-size: 15px;
    color: #8f8f8f;
    font-weight: 400;
    display: block;
}
.offers_row .offer_line .approvement .line_value.good{
    color: #2472d9;
}
.offers_row .offer_line .approvement .line_value.semi{
    color: #F2C94C;
}
.offers_row .offer_line .approvement .line_value.bad{
    color: #EB5757;
}
.offers_row .offer .logo {
    display: flex;
    align-items: center;
    width: 140px;
    height: 60px;
    margin-right: 15px;
}
.offers_row .offer .logo img{
    max-height: 100%;
}
.offers_row .offer_line .line_title{
    font-size: 14px;
    line-height: 1;
    color: #828282;
    margin-bottom: 10px;
    display: block;
}
.offers_row .offer_line .line_value{
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    display: flex;
    line-height: 1;
}
.offers_row .offer_advantages {
    margin: 15px 0;
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 10px;
}
.offers_row .offer_advantages .chip {
    width: fit-content;
    display: block;
    border: 1px solid #d4d4d4;
    background: #f3f3f3;
    border-radius: 30px;
    padding: 2px 15px 4px;
    font-size: 13px;
    line-height: 1.3;
}
/*
.offers_row .offer a.get_money {
    font-size: 16px;
    padding: 14px 5px;
    color: #fff;
    font-weight: 500;
    border-radius: 6px;
    margin-bottom: 0;
    width: 100%;
    text-align: center;
    line-height: 1;
    background: var(--color-primary);
    box-shadow: 0px 6px 10px rgba(62, 191, 31, 0.22);
    font-family: 'Montserrat', sans-serif;
    margin-top: 5px;
}

.offers_row .offer a.get_money:hover {
    color: #fff;
    background: #5AC933;
}*/
.offers_row .offer .notice {
    line-height: 1;
    font-weight: 500;
    font-size: 12px;
    color: #828282;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    background: transparent;
    text-align: left;
    padding: 0;
    opacity: 1;
    margin: 16px 0;
    min-height: 36px;
}

.offers_row.best {
    margin: 60px 0 0;
}
.offers_row .offer .best_offer{
    padding: 6px 10px;
    line-height: 1;
    background: #2472d9;
    border-radius: 15px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 20px;
}
.offers_row.other{
    margin: 20px 0 60px!important;
}
.offers_row.other .offer{
    max-width: calc((100% / 6) - 20px);
    flex: 1 1 calc((100% / 6)  - 20px);
    padding: 12px;
}
.offers_row.other .offer_line.top_line {
    flex-direction: column;
}
.offers_row.other .offer .approvement {
    text-transform: uppercase;
    color: #173CC2;
    font-weight: 500;
    font-size: 13px;
}
.offers_row.other .offer .logo {
    margin-right: auto;
    margin-left: auto;
    width: auto;
    height: 40px;
}
.offers_row.other .offer_line {
    display: flex;
    flex-direction: column;
}
.offers_row.other .offer_line .line_title {
    font-size: 13px;
}
.offers_row.other .offer_line .line_value {
    font-size: 16px;
}
.offers_row.other .offer a.get_money {
    font-size: 15px;
    padding: 14px 5px;
}
.offers_row .buttons{
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
}
.offers_row .buttons a.offer_info_btn .icon{
    transition: opacity 300ms ease-in-out;
    opacity: 1;
    cursor: pointer;
    text-decoration: none;
}
.offers_row .buttons a.offer_info_btn:hover{
    opacity: 0.8;
}
.offers_row .buttons a.offer_info_btn .icon{
    border-radius: 10px;
    border: 1px solid #BDBDBD;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.offers_row .buttons a.offer_info_btn svg{
    width: 30px;
    height: 30px;
}
.offers_row .buttons a.get_money{
    flex: 1 1 100%;
    margin: 0 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.offers_row .offer_info_btn.button_line {
    display: flex;
    padding: 5px;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    border: 1px solid #BDBDBD;
    background: #FFF;
    color: #333;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    line-height: 130%;
    text-decoration: none;
    width: 100%;
}
.offers_row .offer_info_btn.button_line svg{
    width: 20px;
    height: 20px;
    margin-left: 5px;
}

.offers_row .notice {
    font-size: 10px;
}
section.questions {
    background-color: #F5F5F5;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
section.questions h2{
    color: var(--color-primary);
    margin: 0 0 50px;
}
.accordion {
    list-style: none;
    padding: 0;
    position: relative;
    margin: 10px 0;
}
.accordion li{
    user-select: none;
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
    box-shadow: 0 0px 0px 0px rgb(52 60 68 / 10%);
    color: #000;
    padding: 0 25px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 300ms;
}
.accordion li:not(.active){
    cursor: pointer;
}
.accordion li h3{
    padding: 15px 20px 15px 0;
    font-size: 14px;
    font-weight: 700;
    border-bottom: 1px solid #e5e5e5;
    margin: 0;
    position: relative;
}
.accordion li>h3:after{
    content: '';
    background: #fff url(../img/arrow-green.svg) no-repeat right center;
    background-size: 34px;
    width: 34px;
    height: 34px;
    position: absolute;
    right: 0;
    top: calc(50% - 17px);
    transform: rotate(180deg);
    transition: rotate 300ms ease;
}
.accordion li.active>h3:after{
    transform: rotate(0deg);
}
.accordion li p{
    padding: 0;
    margin: 0;
    overflow: hidden;
    height: 0;
    transition: height 300ms, padding 300ms;
}
.accordion li.active p{
    padding: 25px 0;
    height: auto;
}

@media all and (max-width: 1160px){
    header .interface {
        flex-direction: row;
        justify-content: flex-end;
        width: auto;
        margin: 0;
    }
    header .language {
        display: flex;
        flex-direction: row;
        margin-top: 0;
    }
    header .logo {
        width: auto;
        height: auto;
    }
    .head_row > a {
        max-width: 140px;
    }
    .head_row .language a{
        margin-bottom: 0;
    }
    .home_hero {
        padding: 40px 0;
    }
    h1 {
        margin-top: 20px;
        font-size: 22px;
        line-height: 1.3;
    }
    div.sub_title {
        font-size: 16px;
        line-height: 1.3;
        margin-top: 20px;
		margin-bottom: 20px;
    }
    .offers_row.best {
        margin: 30px 0 0;
    }
    .offers_row {
        margin: 30px 0 30px;
    }
    .offers_row .offer {
        max-width: 100%;
        flex: 1 1 100%;
    }
    .offers_row .offer_line {
        margin-bottom: 10px;
    }
    .offers_row .offer .best_offer {
        margin: 0 0 20px;
    }
    .offers_row .offer_line .line_title {
        font-size: 12px;
    }
    .offers_row .offer a.get_money {
        font-size: 16px;
    }
    .offers_row .buttons {
        margin-top: 20px;
    }
    .offers_row .offer .notice {
        white-space: normal;
        min-height: auto;
        width: 100%;
        text-align: center;
        margin-bottom: 0;
    }
    .offers_row.other {
        margin: 20px 0 0;
    }
    .offers_row.other .offer .notice {
        margin-bottom: 16px;
    }
    .offers_row.other .offer{
        max-width: calc((100% / 2) - 10px);
        flex: 1 1 calc((100% / 2)  - 10px);
    }
    .accordion li h3 {
        text-transform: unset;
        padding: 15px 25px 15px 0;
    }
    .accordion li>h3:after {
        right: -5px;
    }
    .accordion li {
        padding: 0 10px;
    }
    .accordion li.active p {
        padding: 16px 0;
    }
    .accordion li p {
        font-size: 14px;
    }
}
@media all and (min-width: 768px) and (max-width: 1160px) {
    .offers_row .offer {
        max-width: calc((100% / 2) - 20px);
        flex: 1 1 calc((100% / 2)  - 20px);
    }
    .offers_row.other .offer{
        max-width: calc((100% / 4) - 15px);
        flex: 1 1 calc((100% / 4)  - 15px);
    }
}