/***** HEADER *****/

.section.header{
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
}

.section.header .container{
    padding-top: 44px;
    padding-bottom: 15px;
    justify-content: space-between;
    align-items: center;
}

.header .header__wrapper{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.navigation{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navigation .navigation__item{
    margin-right: 29px;
    color: #1F1F1F;
    text-decoration: none;
    cursor: pointer;
}

.navigation .navigation__item:hover{
    color: #C0C7CB;
}

.login-btn{
    display: inline-flex;
    align-items: center;
    font-weight: 900;
    line-height: 16px;
    color: #2A75CB;
    text-decoration: none;
    cursor: pointer;
}

.login-btn:hover{
    color: #2ca0ff;
}

.login-btn::after{
    content: '';
    margin-left: 5px;
    align-self: flex-start;
    width: 9px;
    height: 12px;
    background: left top / contain no-repeat url(../images/lock.svg);
}

.login-btn:hover::after{
    background-image: url(../images/lock-hover.svg);
}

.header .header__wrapper.header__logo .login-btn{
    display: none;
}

.header .menu-toggle-checkbox{
    display: none;
}

.header .menu-toggle-label{
    height: 100%;
    margin-right: 20px;
    padding: 10px 20px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.header .menu-toggle-checkbox:checked ~ .menu-toggle-label{
    background: #FFFFFF;
}

.header .menu-toggle-label .burger-line{
    display: inline-block;
    width: 40px;
    height: 3px;
    background-color: #1F1F1F;
    transition: 0.5s all;
}

.header .menu-toggle-label .burger-line:first-of-type,
.header .menu-toggle-label .burger-line:nth-of-type(3){
    margin-bottom: 8px;
}

.header .menu-toggle-label .burger-line:nth-of-type(3){
    margin-top: -3px;
}

.header .menu-toggle-checkbox:checked ~ .header__nav{
    max-height: 500px;
}

.header .menu-toggle-checkbox:checked ~ .menu-toggle-label .burger-line:first-of-type,
.header .menu-toggle-checkbox:checked ~ .menu-toggle-label .burger-line:last-of-type{
    display: none;
}

.header .menu-toggle-checkbox:checked ~ .menu-toggle-label .burger-line:nth-of-type(2){
    transform: rotate(45deg);
}

.header .menu-toggle-checkbox:checked ~ .menu-toggle-label .burger-line:nth-of-type(3){
    transform: rotate(-45deg);
    margin-bottom: -3px;
}

/***** MEDIA QUERIES HEADER *****/

@media screen and (max-width: 700px) {

    .section.header .container{
        padding-top: 35px;
    }

    .section.header .container {
        flex-direction: column;
    }

    .header .header__wrapper.header__logo {
        margin-bottom: 25px;
    }

}

@media screen and (max-width: 560px){

    .section.header .container{
        padding-top: 30px;
    }

    .header .header__wrapper{
        width: 100%;
    }

    .header .logo {
        min-width: 66px;
        min-height: 54px;
    }

    .header .header__wrapper.header__logo{
        justify-content: center;
        align-items: center;
    }

    .header .header__wrapper.header__logo .login-btn{
        margin-left: 20px;
        display: inline-flex;
    }

    .header .header__wrapper.header__nav .login-btn{
        display: none;
    }

    .header .navigation{
        width: 100%;
    }

    .header .navigation .navigation__item:last-of-type{
        margin-right: 0;
    }

}

@media screen and (max-width: 460px){

    .section.header{
        overflow-x: visible;
    }

    .section.header .container{
        position: relative;
        height: 90px;
        padding: 0 20px 0 0;
        flex-direction: row;
        justify-content: space-between;
    }

    .header .menu-toggle-label{
        display: flex;
    }

    .header .header__wrapper.header__logo{
        width: calc(50% + 75px/2 - 20px/2);
        padding-top: 20px;
        padding-bottom: 15px;
        margin-bottom: 0;
        justify-content: space-between;
    }

    .header .header__wrapper.header__logo .login-btn{
        margin-left: 0;
    }

    .header .header__wrapper.header__nav{
        z-index: 2;
        position: absolute;
        left: 0;
        bottom: 0;
        transform: translateY(100%);
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        transition: 2s all;
    }

    .header .menu-toggle-checkbox ~ .header__nav {
        max-height: 0;
    }

    .header .menu-toggle-checkbox ~ .header__nav .navigation{
        display: none;
    }

    .header .menu-toggle-checkbox:checked ~ .header__nav .navigation{
        display: flex;
    }

    .header .navigation{
        flex-direction: column;
        padding: 40px 30px;
    }

    .header .navigation .navigation__item{
        margin-right: 0;
        margin-bottom: 17px;
        font-size: 18px;
        font-weight: 700;
        line-height: 18px;
        text-align: center;
    }

    .header .navigation .navigation__item:hover{
        color: #2A75CB;
    }

}

@media screen and (max-width: 400px){

    .section.header .container{
        height: 80px;
        padding-right: 15px;
    }

    .header .menu-toggle-label{
        margin-right: 15px;
        padding: 10px 15px;
    }

    .header .menu-toggle-label .burger-line{
        width: 30px;
    }

    .header .menu-toggle-label .burger-line:first-of-type,
    .header .menu-toggle-label .burger-line:nth-of-type(3) {
        margin-bottom: 6px;
    }

    .header .logo {
        min-width: 53px;
        min-height: 43px;
    }

    .header .header__wrapper.header__logo{
        width: calc(50% + 60px/2 - 15px/2);
    }

}

/***** INTRODUCTION *****/

.section.introduction{
    padding-bottom: 124px;
}

.section.introduction .container{
    justify-content: space-between;
}

.section.introduction .introduction__wrapper{
    position: relative;
    z-index: 1;
    width: 440px;
    margin-top: 53px;
}

.section.introduction .section__title{
    font-size: 44px;
    line-height: 54px;
    text-align: left;
}

.section.introduction .introduction__wrapper > .section__title{
    margin-bottom: 18px;
}

.section.introduction .introduction__wrapper > .section__description{
    margin-bottom: 53px;
}

.request{
    z-index: 0;
    position: relative;
    width: 542px;
    height: 394px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    overflow-x: visible;
}

.request .request__spikes{
    z-index: -1;
    position: absolute;
    right: -95px;
    top: 0;
    width: 542px;
    height: 394px;
    background: left top / contain no-repeat url(../images/introduction/spikes.svg);
}

.request .request__wrapper{
    position: relative;
    width: 356px;
    height: 332px;
    padding: 47px 20px 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: #D6DDE1;
    text-align: center;
}

.request .request__wrapper:before{
    content: url(../images/introduction/girl.svg);
    position: absolute;
    left: -161px;
    bottom: 18px;
    width: 176px;
    height: 274px;
}

.request .request__title{
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 900;
    line-height: 22px;
    color: #1F1F1F;
}

.request .request__text{
    font-size: 14px;
    font-weight: 300;
    line-height: 16px;
}

.request .request__form{
    width: 244px;
    margin-top: 20px;
}

.request .request__form .request__form-input,
.request .request__form .request__form-button{
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    width: 100%;
    font-size: 14px;
    line-height: 16px;
}

.request .request__form .request__form-input:focus,
.request .request__form .request__form-button:focus{
    outline: none;
}

.request .request__form .request__form-input{
    height: 36px;
    margin-bottom: 8px;
    padding: 5px 20px;
    background: #FFFFFF;
    border: none;
    border-radius: 100px;
    font-weight: 400;
}

.request .request__form .request__form-input::-webkit-input-placeholder {color:#8E8E8E;}
.request .request__form .request__form-input::-moz-placeholder {color:#8E8E8E;}
.request .request__form .request__form-input:-moz-placeholder {color:#8E8E8E;}
.request .request__form .request__form-input:-ms-input-placeholder {color:#8E8E8E;}

.request .request__form .request__form-button{
    height: 36px;
    margin-top: 11px;
}

/***** MEDIA QUERIES INTRODUCTION *****/

@media screen and (max-width: 1030px){

    .section.introduction .container{
        width: 740px;
        flex-direction: column;
        align-items: center;
    }

    .section.introduction .introduction__wrapper{
        width: 100%;
        margin-top: 20px;
        text-align: center;
    }

    .section.introduction .section__title,
    .section.introduction .introduction__wrapper > .section__description{
        text-align: center;
    }

    .section.introduction .introduction__wrapper > .section__description{
        margin-bottom: 30px;
    }

    .section.introduction .introduction__wrapper > .page__button{
        margin: 0 auto;
    }

    .request{
        width: 100%;
        margin-top: -10px;
        align-items: center;
    }

    .request .request__spikes{
        right: 0;
        left: calc(50% - 542px/2);
    }

}

@media screen and (max-width: 760px){

    .section.introduction .container{
        width: 100%;
    }

}

@media screen and (max-width: 700px){

    .section.introduction .section__title{
        font-size: 40px;
        line-height: 50px;
    }

    .request .request__wrapper:before{
        display: none;
    }

}

@media screen and (max-width: 560px){

    .section.introduction .section__title{
        font-size: 36px;
        line-height: 46px;
    }

}

@media screen and (max-width: 500px){

    .section.introduction{
        padding-bottom: 64px;
    }

    .section.introduction .container{
        padding: 0;
    }

    .section.introduction .introduction__wrapper{
        padding: 0 20px;
    }

    .section.introduction .introduction__wrapper > .section__description{
        margin-bottom: 20px;
    }

    .section.introduction .introduction__wrapper > .page__button{
        width: 160px;
        height: 40px;
    }

    .request{
        height: 332px;
        margin-top: 34px;
    }

    .request .request__wrapper{
        width: 100%;
    }

    .request .request__spikes{
        width: 100%;
        height: 100%;
        left: 0;
        top: -115px;
    }
}

@media screen and (max-width: 460px){

    .section.introduction .section__title{
        font-size: 30px;
        line-height: 40px;
    }

}

@media screen and (max-width: 425px){

    .mobile .section.introduction .introduction__wrapper > .section__description{
        font-size: 12px;
    }

}

@media screen and (max-width: 400px){

    .section.introduction .section__title{
        font-size: 30px;
        line-height: 40px;
    }

}

/***** POPUP *****/

.popup-overlay {
    z-index: 2;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
}

.popup-overlay.popup-overlay_displayed {
    display: flex;
}

.popup {
    width: 356px;
    height: 232px;
    padding: 40px 20px 20px 20px;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: right 30px bottom / 216px 128px no-repeat url(../images/popup-bird.svg);
    background-color: #D6DDE1;
}

.popup.popup_displayed{
    display: flex;
}

.popup .to-close{
    cursor: pointer;
}

.popup .popup__title{
    font-family: 'Montserrat';
    font-size: 18px;
    font-weight: 800;
    line-height: 22px;
    text-align: center;
    color: #1F1F1F;
}

.popup .popup__button{
    width: 76px;
    margin-top: 14px;
}

.to-popup{
    cursor: pointer;
}

/***** MEDIA QUERIES POPUP *****/

@media screen and (max-width: 375px){

    .popup{
        width: 95%;
    }

}

/***** HOW IT WORKS *****/

.section.how-it-works .container{
    z-index: 0;
    position: relative;
    padding-bottom: 125px;
}

.section.how-it-works .container:before{
    content: '';
    z-index: -1;
    position: absolute;
    bottom: 0;
    right: -215px;
    width: 650px;
    height: 650px;
    background: center center / contain no-repeat radial-gradient(325px at 50% 77.6%, #E6EDF0 0%, rgba(226, 233, 237, 0) 100%);
}

.section.how-it-works .container:after{
    content: '';
    z-index: -1;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 495px;
    height: 495px;
    background: right bottom / contain no-repeat url(../images/how-it-works/background.svg);
}

.section.how-it-works .stages{
    margin-top: 74px;
}

.section.how-it-works .stages .stages__item{
    width: 550px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.section.how-it-works .stages .stages__item:not(:last-of-type){
    margin-bottom: 42px;
}

.section.how-it-works .stages .stages__item:nth-of-type(4){
    width: 600px;
}

.stages .stages__item .stages__item-number{
    min-width: 15px;
    margin-right: 43px;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    line-height: 21px;
    color: #2A75CB;
}

.stages .stages__item .stages__item-text{
    font-family: 'Montserrat';
    line-height: 22px;
}

@media screen and (max-width: 860px){

    .section.how-it-works .container{
        padding-bottom: 500px;
    }

    .section.how-it-works .container:after{
        left: calc(50% - 495px/2);
    }

    .section.how-it-works .container:before{
        right: 0;
        left: calc(50% - 650px/2);
    }

    .section.how-it-works .stages{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .section.how-it-works .stages .stages__item{
        width: 600px;
    }

}

@media screen and (max-width: 700px){

    .section.how-it-works .container{
        padding-bottom: 400px;
    }

    .section.how-it-works .stages{
        margin-top: 60px;
        padding: 0 20px;
    }

    .section.how-it-works .stages .stages__item,
    .section.how-it-works .stages .stages__item:nth-of-type(4){
        width: 100%;
    }

    .section.how-it-works .container:after{
        width: 400px;
        height: 400px;
        left: calc(50% - 400px/2);
    }

    .section.how-it-works .container:before{
        width: 550px;
        height: 550px;
        left: calc(50% - 550px/2);
        background: center center / contain no-repeat radial-gradient(275px at 50% 77.6%, #E6EDF0 0%, rgba(226, 233, 237, 0) 100%);
    }

}

@media screen and (max-width: 500px){

    .section.how-it-works .stages {
        margin-top: 40px;
    }

    .stages .stages__item .stages__item-number{
        margin-right: 30px;
    }

}

@media screen and (max-width: 460px){

    .section.how-it-works .container{
        padding-bottom: 300px;
    }

    .section.how-it-works .stages .stages__item:not(:last-of-type){
        margin-bottom: 34px;
    }

    .stages .stages__item .stages__item-number{
        margin-right: 25px;
    }

    .stages .stages__item .stages__item-text{
        font-size: 16px;
        line-height: 20px;
    }

    .section.how-it-works .container:after{
        width: 300px;
        height: 300px;
        left: calc(50% - 300px/2);
    }

    .section.how-it-works .container:before{
        width: 450px;
        height: 450px;
        left: calc(50% - 450px/2);
        background: center center / contain no-repeat radial-gradient(225px at 50% 77.6%, #E6EDF0 0%, rgba(226, 233, 237, 0) 100%);
    }

}

@media screen and (max-width: 425px){

    .section.how-it-works .container{
        padding-bottom: 250px;
    }

    .section.how-it-works .stages{
        margin-top: 30px;
        padding: 0;
    }

    .stages .stages__item .stages__item-text{
        font-size: 14px;
        line-height: 17px;
    }

    .section.how-it-works .container:after{
        width: 250px;
        height: 250px;
        left: calc(50% - 250px/2);
    }

}

/***** ADVANTAGES *****/

.section.advantages{
    padding-bottom: 131px;
}

.section.advantages .advantages__wrapper{
    width: calc(100% + 45px);
    margin: 48px -15px -30px -15px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
}

.section.advantages .advantages__wrapper > .advantages__item{
    width: 315px;
    margin: 30px 15px;
}

.section.advantages .advantages__wrapper > .advantages__item .advantages__item-icon{
    width: 73px;
    height: 73px;
    margin-bottom: 25px;
    background-size: contain;
    background-position: left top;
    background-repeat: no-repeat;
}

.section.advantages .advantages__wrapper > .advantages__item.advantages__item_saving .advantages__item-icon{
    background-image: url(../images/advantages/saving.svg);
}

.section.advantages .advantages__wrapper > .advantages__item.advantages__item_delivery .advantages__item-icon{
    background-image: url(../images/advantages/delivery.svg);
}

.section.advantages .advantages__wrapper > .advantages__item.advantages__item_conversion .advantages__item-icon{
    background-image: url(../images/advantages/conversion.svg);
}

.section.advantages .advantages__wrapper > .advantages__item.advantages__item_coverage .advantages__item-icon{
    background-image: url(../images/advantages/coverage.svg);
}

.section.advantages .advantages__wrapper > .advantages__item.advantages__item_actual .advantages__item-icon{
    background-image: url(../images/advantages/actual.svg);
}

.section.advantages .advantages__wrapper > .advantages__item.advantages__item_confidentiality .advantages__item-icon{
    background-image: url(../images/advantages/confidentiality.svg);
}

.section.advantages .advantages__wrapper > .advantages__item .advantages__item-title{
    margin-bottom: 19px;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #1F1F1F;
}

.section.advantages .advantages__wrapper > .advantages__item .advantages__item-text{
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.section.advantages .advantages__wrapper > .advantages__item .advantages__item-text_medium{
    font-weight: 500;
}

/***** MEDIA QUERIES ADVANTAGES *****/

@media screen and (max-width: 760px){

    .section.advantages{
        padding-bottom: 100px;
    }

}


@media screen and (max-width: 710px){

    .section.advantages{
        padding-bottom: 80px;
    }

    .section.advantages .advantages__wrapper{
        width: 100%;
        margin: 35px 0 0 0;
    }

    .section.advantages .advantages__wrapper > .advantages__item{
        width: 400px;
        text-align: center;
    }

    .section.advantages .advantages__wrapper > .advantages__item > *{
        margin-left: auto;
        margin-right: auto;
    }

    .section.advantages .advantages__wrapper > .advantages__item .advantages__item-text{
        align-items: center;
    }

}

@media screen and (max-width: 500px){

    .section.advantages .advantages__wrapper > .advantages__item{
        width: 100%;
        margin: 20px 0;
    }

    .section.advantages .advantages__wrapper > .advantages__item .advantages__item-icon{
        width: 60px;
        height: 60px;
        margin-bottom: 22px;
    }

    .section.advantages .advantages__wrapper > .advantages__item .advantages__item-title{
        margin-bottom: 15px;
        font-size: 20px;
        line-height: 24px;
    }

    .section.advantages .advantages__wrapper > .advantages__item .advantages__item-text{
        font-size: 16px;
        line-height: 20px;
        align-items: center;
    }

}

@media screen and (max-width: 425px){

    .section.advantages{
        padding-bottom: 40px;
    }

    .mobile .section.advantages .advantages__wrapper{
        margin-top: 32px;
        margin-bottom: -15px;
    }

    .mobile .section.advantages .advantages__wrapper > .advantages__item{
        width: 153px;
        margin: 15px;
        text-align: left;
    }

    .mobile .section.advantages .advantages__wrapper > .advantages__item .advantages__item-icon{
        width: 50px;
        height: 50px;
        margin-left: 0;
        margin-right: 0;
    }

    .mobile .section.advantages .advantages__wrapper > .advantages__item .advantages__item-title{
        margin-bottom: 5px;
        font-size: 15px;
        line-height: 18px;
    }

    .mobile .section.advantages .advantages__wrapper > .advantages__item .advantages__item-text{
        display: inline;
        font-size: 12px;
        line-height: 14px;
    }

}

@media screen and (max-width: 405px){

    .mobile .section.advantages .advantages__wrapper{
        width: 100%;
        margin: 30px 0 0 0;
    }

    .mobile .section.advantages .advantages__wrapper > .advantages__item{
        width: 95%;
        margin: 20px 0;
        text-align: center;
    }

    .mobile .section.advantages .advantages__wrapper > .advantages__item > *{
        margin-left: auto;
        margin-right: auto;
    }

    .mobile .section.advantages .advantages__wrapper > .advantages__item .advantages__item-icon{
        width: 60px;
        height: 60px;
        margin-left: auto;
        margin-right: auto;
    }

    .mobile .section.advantages .advantages__wrapper > .advantages__item .advantages__item-title{
        margin-bottom: 15px;
        font-size: 20px;
        line-height: 24px;
    }

    .mobile .section.advantages .advantages__wrapper > .advantages__item .advantages__item-text{
        display: flex;
        font-size: 16px;
        line-height: 20px;
        align-items: center;
    }

}

/***** CONDITIONS *****/

.section.conditions{
    z-index: 0;
}

.section.conditions .container{
    width: 1010px;
    padding: 0;
}

.section.conditions .conditions__list{
    width: 100%;
    margin-top: 73px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.section.conditions .conditions__list > .conditions__item{
    width: 315px;
    margin-bottom: 50px;
}

.section.conditions .conditions__list > .conditions__item .conditions__item-title{
    margin-bottom: 19px;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #1F1F1F;
}

.section.conditions .container .people{
    z-index: -1;
    position: relative;
    margin-top: 60px;
    width: 100%;
    height: 476px;
    background: center center / contain no-repeat radial-gradient(425px at 50% 83.33%, #E6EDF0 0%, rgba(226, 233, 237, 0) 100%),
    center bottom / 1009px 476px no-repeat url(../images/conditions/background.svg);
    background-blend-mode: multiply;
}

.section.conditions .container .people::after{
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    width: 668px;
    height: 220px;
    background: left top / contain no-repeat url(../images/conditions/bird.svg);
}

@media screen and (max-width: 1070px){

    .section.conditions .container {
        width: 100%;
    }

    .section.conditions .section__nav{
        width: calc(100% - 20px*2);
        margin-left: 20px;
        margin-right: 20px;
    }

    .section.conditions .conditions__list{
        padding: 0 8%;
    }

    .section.conditions .container .people{
        margin-top: -100px;
    }

}

@media screen and (max-width: 860px){

    .section.conditions .conditions__list{
        padding: 0 20px;
    }

}

@media screen and (max-width: 760px){

    .section.conditions .conditions__list{
        margin-top: 50px;
    }

    .section.conditions .conditions__list > .conditions__item{
        width: 280px;
        margin-bottom: 40px;
    }

    .section.conditions .conditions__list > .conditions__item .conditions__item-title{
        margin-bottom: 15px;
        font-size: 22px;
        line-height: 26px;
    }

    .section.conditions .conditions__list > .conditions__item .conditions__item-text{
        font-size: 16px;
        line-height: 18px;
    }

    .section.conditions .container .people{
        height: 377px;
        background: center center / contain no-repeat radial-gradient(325px at 50% 83.33%, #E6EDF0 0%, rgba(226, 233, 237, 0) 100%),
        center bottom / 800px 377px no-repeat url(../images/conditions/background.svg);
    }

    .section.conditions .container .people::after{
        width: 500px;
        height: 165px;
        top: -30px;
    }

}

@media screen and (max-width: 660px){

    .section.conditions .conditions__list{
        flex-direction: column;
        align-items: center;
    }

    .section.conditions .conditions__list > .conditions__item {
        width: 315px;
        margin-bottom: 30px;
        text-align: center;
    }

    .section.conditions .conditions__list > .conditions__item .conditions__item-title{
        margin-bottom: 19px;
        font-size: 24px;
        line-height: 28px;
    }

    .section.conditions .conditions__list > .conditions__item .conditions__item-text {
        font-size: 18px;
        line-height: 21px;
    }

    .section.conditions .container .people {
        height: 377px;
        margin-top: -10px;
        background: center center / contain no-repeat radial-gradient(325px at 50% 83.33%, #E6EDF0 0%, rgba(226, 233, 237, 0) 100%),
        center bottom / 800px 377px no-repeat url(../images/conditions/background.svg);
    }

    .section.conditions .container .people::after {
        width: 500px;
        height: 165px;
        top: -15px;
    }

}

@media screen and (max-width: 500px){

    .section.conditions .conditions__list > .conditions__item {
        width: auto;
    }

    .section.conditions .conditions__list > .conditions__item .conditions__item-title {
        margin-bottom: 15px;
        font-size: 22px;
        line-height: 26px;
    }

    .section.conditions .conditions__list > .conditions__item .conditions__item-text {
        font-size: 16px;
        line-height: 18px;
    }

    .section.conditions .container .people{
        margin-top: -20px;
    }

    .section.conditions .container .people::after {
        top: -20px;
    }

}

@media screen and (max-width: 425px){

    .section.conditions .conditions__list{
        margin-top: 40px;
    }

    .section.conditions .container .people{
        height: 283px;
        margin-top: -10px;
        background: center center / contain no-repeat radial-gradient(250px at 50% 83.33%, #E6EDF0 0%, rgba(226, 233, 237, 0) 100%),
        center bottom / 600px 283px no-repeat url(../images/conditions/background.svg);
    }

    .section.conditions .container .people::after{
        width: 350px;
        height: 115px;
        top: -10px;
    }
}


/***** PRICES *****/

.section.prices{
    padding-bottom: 215px;
}

.section.prices .container{
    width: 1010px;
    padding: 0;
}

.section.prices .prices__wrapper{
    position: relative;
    width: 836px;
    height: 316px;
    margin-top: 218px;
    background: #FFFFFF;
    border: 2px solid #D5DCE0;
}

.section.prices .prices__wrapper:before{
    content: '';
    position: absolute;
    top: -167px;
    left: 0;
    width: 1080px;
    height: 186px;
    background: left bottom / contain no-repeat url(../images/prices/birds.svg);
}

.section.prices .prices__wrapper .prices__details{
    float: left;
    width: 314px;
    height: 100%;
    padding: 20px 20px 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    background: #D5DCE0;
    text-align: center;
}

.section.prices .prices__wrapper .prices__details .prices__details-amount{
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 300;
    line-height: 17px;
}

.section.prices .prices__wrapper .prices__details .prices__details-value{
    margin-bottom: 31px;
    font-family: 'Montserrat';
    font-weight: 800;
    font-size: 36px;
    line-height: 44px;
    color: #1F1F1F;
}

.section.prices .prices__wrapper .prices__details .prices__details-value > *{
    color: #1F1F1F;
}

.section.prices .prices__wrapper .prices__details .prices__details-text{
    margin-bottom: 24px;
    color: #1F1F1F;
}

.section.prices .prices__wrapper .prices__catalog{
    width: 518px;
    height: 100%;
    padding: 15px 18px 15px 17px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    align-content: space-between;
    flex-wrap: wrap;
}

.section.prices .prices__wrapper .prices__catalog .prices__catalog-item{
    width: calc((100% - 9px*2)/3);
    height: 90px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #D2D2D2;
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    color: #1F1F1F;
    cursor: pointer;
    transition: border 0.1s ease;
}

.section.prices .prices__wrapper .prices__catalog .prices__catalog-item:hover,
.section.prices .prices__wrapper .prices__catalog .prices__catalog-item.prices__catalog-item_active{
    border: 4px solid #2A75CB;
    transition: border 0.1s ease;
}

/***** MEDIA QUERIES PRICES *****/

@media screen and (max-width: 1070px){

    .section.prices .container {
        width: 100%;
        padding: 0 20px;
    }

}

@media screen and (max-width: 860px){

    .section.prices{
        padding-bottom: 150px;
    }

    .section.prices .container {
        padding: 0;
    }

    .section.prices .prices__wrapper{
        width: 100%;
    }

    .section.prices .prices__wrapper .prices__details{
        width: 37%;
    }

    .section.prices .prices__wrapper .prices__catalog{
        width: 63%;
    }

}

@media screen and (max-width: 760px){

    .section.prices .prices__wrapper{
        margin-top: 187px;
    }

    .section.prices .prices__wrapper:before{
        width: 900px;
        height: 155px;
        top: -140px;
    }

}

@media screen and (max-width: 660px){

    .section.prices .prices__wrapper{
        margin-top: 160px;
    }

    .section.prices .prices__wrapper:before{
        width: 800px;
        height: 138px;
        top: -124px;
    }

}

@media screen and (max-width: 600px){

    .section.prices {
        padding-bottom: 120px;
    }

    .section.prices .prices__wrapper{
        height: auto;
        padding: 60px 20px 80px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        background: #D5DCE0;
    }

    .section.prices .prices__wrapper .prices__catalog{
        position: relative;
        width: 180px;
        height: 31px;
        margin-bottom: 33px;
        padding: 8px 12px 6px 12px;
        flex-direction: column;
        background: #FFFFFF;
        border-radius: 20px;
        cursor: pointer;
    }

    .section.prices .prices__wrapper .prices__catalog.prices__catalog_opened{
        border-radius: 15px 15px 0 0;
    }

    .section.prices .prices__wrapper .prices__catalog:after{
        position: absolute;
        top: 0;
        right: 0;
        content: '';
        width: 49px;
        height: 31px;
        background-color: #2A75CB;
        background-image: url(../images/prices/arrow.svg);
        background-position: 14px 13px;
        background-size: 16.3px 8.15px;
        background-repeat: no-repeat;
        border-radius: 0 20px 20px 0;
        box-sizing: border-box;
        cursor: inherit;
    }

    .section.prices .prices__wrapper .prices__catalog.prices__catalog_opened:after{
        border-radius: 0 15px 0 0;
    }

    .section.prices .prices__wrapper .prices__catalog .prices__catalog-item{
        width: auto;
        height: auto;
        font-weight: 300;
    }

    .section.prices .prices__wrapper .prices__catalog .prices__catalog-item,
    .section.prices .prices__wrapper .prices__catalog .prices__catalog-item:hover,
    .section.prices .prices__wrapper .prices__catalog .prices__catalog-item.prices__catalog-item_active{
        border: none;
    }

    .section.prices .prices__wrapper .prices__catalog.prices__catalog_opened .prices__catalog-item:not(.prices__catalog-item_active){
        display: inline-flex;
    }

    .section.prices .prices__wrapper .prices__catalog .prices__catalog-item:not(.prices__catalog-item_active){
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding-left: 12px;
        align-items: flex-start;
        background: #FFFFFF;
    }

    .section.prices .prices__wrapper .prices__catalog .prices__catalog-item.prices__catalog-item_last{
        border-radius: 0 0 15px 15px;
    }

    .section.prices .prices__wrapper .prices__catalog .prices__catalog-item:not(.prices__catalog-item_active):hover{
        color: #FFFFFF;
        background-color: #2A75CB;
    }

    .section.prices .prices__wrapper .prices__details{
        order: 1;
        width: auto;
        padding: 0;
    }

    .section.prices .prices__wrapper .prices__details .prices__details-amount{
        display: none;
    }

}

@media screen and (max-width: 425px){

    .section.prices {
        padding-bottom: 100px;
    }

    .section.prices .prices__wrapper{
        margin-top: 132px;
    }

    .section.prices .prices__wrapper:before {
        width: 627px;
        height: 108px;
        top: -97px;
        left: 20px;
    }

}

@media screen and (max-width: 375px){

    .section.prices .prices__wrapper:before {
        left: 0;
    }

}

/***** FOOTER *****/

.section.footer{
    padding-top: 128px;
    padding-bottom: 67px;
}

.section.footer .footer__consultation{
    width: 270px;
    margin-top: 27px;
}

.section.footer .footer__container{
    width: 100%;
    margin-top: 92px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.section.footer .footer__text{
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}

.section.footer .footer__text.footer__text_bold{
    font-weight: 700;
}

.section.footer .footer__about-company{
    width: 450px;
}

.section.footer .footer__about-service{
    margin-bottom: 47px;
}

.section.footer .footer__about-service .footer__text{
    color: #1F1F1F;
}

.section.footer .footer__company-info{
    margin-bottom: 44px;
}

.section.footer .footer__company-info > .footer__text{
    font-size: 12px;
    font-weight: 300;
    line-height: 18px;
}

.payment-systems{
    height: 21px;
    font-size: 0;
}

.payment-systems__item{
    display: inline-block;
    width: 35px;
    height: 21px;
    background-position: left top;
    background-repeat: no-repeat;
    background-size: contain;
}

.payment-systems__item_scet{
    background-image: url(../images/payment-systems/scet.png);
}

.payment-systems__item_erip{
    background-image: url(../images/payment-systems/erip.png);
}

.payment-systems__item_mastercard-s{
    background-image: url(../images/payment-systems/mastercard-s.png);
}

.payment-systems__item_mastercard{
    background-image: url(../images/payment-systems/mastercard.png);
}

.payment-systems__item_belkart{
    background-image: url(../images/payment-systems/belkart.png);
}

.payment-systems__item_bepaid{
    background-image: url(../images/payment-systems/bepaid.png);
}

.payment-systems__item_v-visa{
    background-image: url(../images/payment-systems/v-visa.png);
}

.payment-systems__item_visa{
    background-image: url(../images/payment-systems/visa.png);
}

.payment-systems__item_mtbank{
    background-image: url(../images/payment-systems/mtbank.png);
}

.payment-systems__item:not(:last-of-type){
    margin-right: 5px;
}

.section.footer .footer__container > .footer__wrapper{
    width: calc(100% - 450px - 140px);
    min-width: 330px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.section.footer .footer__navigation{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.section.footer .footer__navigation .footer__navigation-item{
    font-weight: 300;
    line-height: 18px;
    text-decoration: underline;
    color: #1F1F1F;
}

.section.footer .footer__navigation .footer__navigation-item.footer__navigation-item_without-line{
    text-decoration: none;
}

.section.footer .footer__container > .footer__wrapper > .footer__navigation .footer__navigation-item:not(:last-of-type){
    margin-bottom: 8px;
}

.section.footer .footer__contacts{
    height: 256px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.section.footer .footer__contacts .footer__contacts-details{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
}

.section.footer .footer__contacts .footer__contacts-details > .footer__text{
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    text-decoration: none;
    color: #1F1F1F;
}

.section.footer .footer__contacts .footer__contacts-details .contact-email{
    margin-top: 9px;
    font-size: 14px;
    font-weight: 300;
    line-height: 18px;
    text-decoration: underline;
    color: #515151;
}

/***** MEDIA QUERIES FOOTER *****/

@media screen and (max-width: 900px){

    .section.footer{
        padding-top: 120px;
    }

    .section.footer .footer__container{
        width: 460px;
        margin-top: 50px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .section.footer .footer__about-service,
    .section.footer .footer__company-info{
        margin-bottom: 20px;
    }

    .section.footer .footer__about-company{
        width: 100%;
    }

    .section.footer .footer__container > .footer__wrapper{
        width: 100%;
        margin-top: 40px;
    }

    .section.footer .footer__contacts{
        height: auto;
    }

    .section.footer .footer__container > .footer__wrapper > .footer__navigation .footer__navigation-item:not(:last-of-type){
        margin-bottom: 20px;
    }

    .section.footer .footer__contacts .footer__contacts-details > .footer__text:not(last-of-type){
        margin-bottom: 6px;
    }

    .section.footer .footer__contacts .footer__contacts-details .contact-email{
        margin-top: 0;
    }

    .section.footer .footer__contacts .footer__contacts-details > .logo-lns{
        margin-top: 10px;
    }

}

@media screen and (max-width: 630px){

    .section.footer{
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .section.footer .footer__container{
        margin-top: 40px;
    }

}

@media screen and (max-width: 520px){

    .section.footer .footer__container{
        width: 100%;
    }

    .section.footer .footer__about-service {
        text-align: justify;
    }

}

@media screen and (max-width: 425px){

    .section.footer {
        padding-top: 90px;
        padding-bottom: 50px;
    }

    .mobile .section.footer{
        padding-bottom: 40px;
    }

    .section.footer .footer__container{
        margin-top: 30px;
    }

    .section.footer .footer__consultation{
        width: 250px;
        height: 40px;
    }

    .section.footer .footer__text{
        text-align: justify;
    }

    .section.footer .footer__company-info {
        margin-bottom: 30px;
    }

    .section.footer .payment-systems{
        width: 270px;
        height: auto;
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .section.footer .payment-systems__item{
        margin: 5px;
    }

    .mobile .section.footer .payment-systems__item{
        margin: 2.5px;
    }

    .section.footer .footer__container > .footer__wrapper{
        margin-top: 30px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .section.footer .footer__navigation,
    .section.footer .footer__contacts,
    .section.footer .footer__contacts .footer__contacts-details{
        justify-content: flex-start;
        align-items: center;
        text-align: center;
    }

    .section.footer .footer__contacts{
        margin-top: 30px;
    }

    .section.footer .footer__contacts .footer__contacts-details{
        margin-bottom: 20px;
    }

    .mobile .section.footer .footer__contacts .footer__contacts-details{
        margin-bottom: 30px;
    }

    .section.footer .footer__contacts .footer__contacts-details .contact-email{
        margin-top: 8px;
    }

}