.header{
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;

    width: 100%;
}

.header .container{
    position: relative;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    padding-top: 35px;
}

.header__logo{
    width: 170px;
    height: 88px;
    margin-right: 100px;

    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.header__menu{
    margin: 0;
    margin-top: 30px;
    padding: 0;

    list-style: none;
}

.header__menu li{
    display: inline-block;

    margin-right: 20px;
}

.header__menu li.phone{
    display: none;
}

.header__menu li.phone .header__phone{
    display: block;

    text-align: center;
}

.header__menu a{
    font-size: 16px;

    color: black;
}

.header__menu a:hover{
    text-decoration: none;

    color: #ffc80b;
}

.header__menu a.blue:hover {
    color: white;
}

.header__menu-toggle{
    bottom: 0;

    display: none;

    margin: auto;
    padding: 5px;

    cursor: pointer;

    border: 1px solid #00adee;
    border-radius: 3px;
}

.header__menu-toggle:hover .bar{
    fill: #4890e1;
}

.header__menu-toggle .bar{
    width: 23px;
    height: 3px;
    margin-bottom: 3px;

    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;

    border-radius: 2px;
    background-color: #00adee;
}

.header__menu-toggle .bar:last-child{
    margin-bottom: 0;
}

.header__menu-close{
    position: fixed;
    z-index: 1010;
    top: 15px;
    right: 15px;

    display: none;

    width: 15px;
    height: 15px;

    cursor: pointer;

    fill: gray;
}

.header__btns{
    position: absolute;
    top: 0;
    right: 15px;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header__btn{
    display: block;

    padding: 7px 19px;

    white-space: nowrap;

    color: #000;
}

.header__btn span{
    font-size: 13px;

    display: inline-block;

    vertical-align: middle;
}

.header__btn .svg-icon{
    display: inline-block;

    margin-right: 3px;

    vertical-align: middle;
}

.header__btn .svg-icon_icon-user{
    width: 9px;
    height: 9px;
}

.header__btn .svg-icon_icon-login{
    width: 10px;
    height: 9px;
}

.header__btn.gray{
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;

    background-color: #c8c8c8;
}

.header__btn.gray:hover{
    color: #fff;
    background-color: #00aeef;

    fill: #fff;
}

.header__btn.yellow{
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;

    background-color: var(--theme-secondary-color);
    color: var(--theme-text-color);
    fill: var(--theme-text-color);
}

.header__btn.yellow:hover{
    color: #fff;
    background-color: var(--theme-primary-color);

    fill: #fff;
}

.header__phone{
    margin-top: 27px;

    text-align: right;

    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.header__phone p{
    line-height: 1;

    margin-bottom: 0;
}

.header__phone a{
    font-size: 30px;
    font-weight: 700;

    color: #007acf;
}

.header__phone a:hover{
    text-decoration: none;

    color: #ffc80b;
}

.header__phone span{
    font-size: 13px;

    color: #4b4b4b;
}

.header.inner{
    position: relative;

    margin-bottom: 50px;
    padding-bottom: 28px;

    background: url('../images/bg-header.jpg') no-repeat;
    background-position: top center;
    background-size: cover;
}

.main{
    background-image: url('../images/bg-main.jpg');
    background-position: center bottom;
    background-size: cover;
}

.main__text{
    max-width: 620px;
    padding-left: 100px;
}

.main__title{
    font-size: 50px;
    font-weight: 700;

    margin-bottom: 18px;
}

.main__subtitle{
    font-size: 26px;
    font-weight: 400;

    margin-bottom: 42px;
}

.main .container{
    position: relative;

    padding-top: 247px;
    padding-bottom: 205px;
}

.main__car{
    position: absolute;
    bottom: -105px;
    left: 168px;

    display: inline-block;
}

.main__car img{
    max-width: 100%;
}


.service{
    position: relative;

    margin-top: 142px;
    margin-bottom: 90px;
    padding: 63px 85px;

    border: 15px solid var(--theme-secondary-color);
}

.service__title{
    font-size: 35px;
    font-weight: 400;

    position: absolute;
    top: -30px;
    left: 55px;

    padding: 0 27px;

    background-color: #fff;
}

.service p{
    font-size: 20px;
    line-height: 1.3;
}

.service h4{
    font-size: 20px;
    font-weight: 400;
    margin-top: 57px;
    margin-bottom: 15px;
}

.service__bullets{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    margin-top: 55px;
    margin-bottom: -102px;
}

.service__bullets-item{
    position: relative;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    width: 50%;
    min-height: 126px;
    padding: 15px;

    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.service__bullets-item p{
    font-size: 25px;
    font-weight: 400;
    line-height: 1.2;

    margin-bottom: 0;
}

.service__bullets-item p b{
    font-size: 38px;
    font-weight: 700;

    display: inline-block;

    vertical-align: middle;
}

.service__bullets-item_blue{
    color: white;
    background-color: var(--theme-primary-color);
}

.service__bullets-item_gray{
    padding-left: 70px;

    background-color: #f3f3f4;
}

.service__bullets-item_gray p{
    font-size: 23px;
}

.service__bullets-item .svg-icon{
    position: absolute;
    right: 0;
    bottom: 0;

    width: 83px;
    height: 80px;

    fill: #31bcf0;
}

.partners{
    position: relative;
}

.partners .swiper-container {
    padding: 40px 0;
}

.partners__slider{
    margin: 0 -15px;
}

.partners__slider .slick-track {
    padding: 40px 0;
}

.partners__item{
    position: relative;
    height: 80px;
    transition: all .2s ease;
}

.partners__item.swiper-slide-active {
    transform: scale(1.5);
}

.partners__item.swiper-slide-active img {
    filter: grayscale(0%);
}

.partners__item img{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    max-width: 100%;
    max-height: 100%;
    margin: auto;

    filter: grayscale(100%);
}

.partners__controls{
    position: absolute;
    /*top: -36px;*/
    /*bottom: 0;*/
    top: 60px;
    left: 0;
    width: 100%;
    height: 0;
    margin: auto;
}

.partners__btn{
    position: absolute;
    width: 18px;
    height: 36px;
    cursor: pointer;
    transition: all .2s ease;
    fill: #00aeef;
}

.partners__btn:focus{
    outline: none;
}

.partners__btn:hover{
    fill: #ffc80b;
}

.partners__btn_prev{
    left: -45px;

    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.partners__btn_next{
    right: -45px;
}

.for{
    margin-bottom: 99px;
}

.for__title{
    font-size: 35px;

    margin-bottom: 30px;
    padding-left: 100px;
}

.for__tabs{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.for__tabs li{
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.for__tabs a{
    font-size: 20px;

    display: block;

    padding-top: 21px;
    padding-bottom: 21px;

    text-align: center;
    text-decoration: underline;

    color: #007acf;
}

.for__tabs a span{
    display: inline-block;

    border-bottom: 7px solid transparent;
}

.for__tabs a.active{
    text-decoration: none;

    color: #000;
    background-color: #f0f0f0;
}

.for__tabs a.active span{
    border-bottom-color: var(--theme-secondary-color);
}

.for__content{
    position: relative;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    margin-bottom: 140px;

    background-color: #f0f0f0;
}

.for__info{
    max-width: 55%;
    padding: 50px 100px;
    padding-right: 90px;
    padding-bottom: 20px;
}

.for__info	> p{
    font-size: 20px;
    line-height: 1.3;
}

.for__bullets{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    margin-top: 35px;
    margin-right: -60px;
    padding: 0;
    list-style: none;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.for__bullets li{
    display: inline-block;

    width: 33.3333%;
    padding-right: 30px;
}

.for__bullets li:nth-child(3),
.for__bullets li:nth-child(6){
    margin-right: 0;
    padding-right: 0;
}

.for__bullets .image{
    height: 48px;
    margin-bottom: 8px;

    fill: #ffc80b;
}

.for__bullets .image .svg-icon{
    max-width: 45px;
}

.for__bullets p{
    font-size: 14px;
    line-height: 1.4;
}

.for__controls{
    position: absolute;
    top: 100%;
    left: 100px;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    width: 570px;
    min-height: 76px;
    padding: 17px 24px;

    background-color: var(--theme-secondary-color);

    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.for__controls-btns{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.for__controls-btn{
    width: 18px;
    height: 36px;

    cursor: pointer;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;

    fill: #fff;
}

.for__controls-btn:hover{
    fill: #00aced;
}

.for__controls-btn_prev{
    margin-right: 25px;

    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.for__controls-btn_prev:last-child{
    margin-right: 0;
}

.for__controls-left{
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.for__controls-left .btn:first-child{
    margin-right: 20px;
}

.for__image{
    margin-top: 50px;
    margin-bottom: -90px;
}

.for__image img{
    max-width: 100%;
}

.for__try{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    margin-top: -25px;
    margin-bottom: 25px;
    padding-left: 100px;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.for__try p{
    font-size: 20px;

    max-width: 313px;
    margin-right: 55px;
    margin-bottom: 0;

    text-align: right;
}

.for__border-block{
    position: relative;

    margin-right: 30px;
    margin-bottom: 90px;
    margin-left: 30px;
    padding: 50px 55px;

    border: 15px solid #ffc80b;
}

.for__border-block_blue{
    border-color: #00aeef;
}

.for__border-block_blue .for__line-list li:before{
    background-color: #00aeef;
}

.for__border-block .for__title{
    font-size: 35px;
    font-weight: 400;

    position: absolute;
    top: -30px;
    left: 25px;

    padding: 0 27px;

    background-color: #fff;
}

.for__line-list{
    margin: 0;
    padding: 0;

    list-style: none;
}

.for__line-list li{
    font-size: 16px;

    position: relative;

    margin-bottom: 28px;
    padding-left: 43px;
}

.for__line-list li:last-child{
    margin-bottom: 0;
}

.for__line-list li:before{
    position: absolute;
    top: 10px;
    left: 0;

    width: 27px;
    height: 1px;

    content: '';

    background-color: #ffc80b;
}

.arrow-bullets{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    margin: 0;
    margin-top: 35px;
    padding: 0;
    padding-right: 180px;
    padding-left: 100px;

    list-style: none;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.arrow-bullets__item{
    position: relative;

    width: 33.3333%;
    margin-bottom: 65px;
}

.arrow-bullets__item:after{
    position: absolute;
    top: 41px;
    left: 120px;

    display: block;

    width: 151px;
    height: 13px;

    content: '';

    background: url('../images/bullets-arrow.png') no-repeat;
    background-size: contain;
}

.arrow-bullets__item:last-child:after{
    display: none;
}

.arrow-bullets__image{
    width: 95px;
    height: 96px;
    margin-bottom: 23px;
    border-radius: 50%;
    background-color: #ffc609;
}

.arrow-bullets__desc{
    font-size: 14px;
    line-height: 1.3;

    max-width: 185px;
}

.questions{
    position: relative;

    overflow: hidden;

    padding: 54px 97px;

    background-color: #fff;
}

.questions__title{
    font-size: 35px;

    margin-bottom: 10px;
}

.questions p{
    font-size: 20px;
}

.questions__form{
    margin-top: 50px;
}

.questions__form .form-inline{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    margin-bottom: 32px;
}

.questions__form .form-inline .form-group{
    padding-right: 30px;

    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.questions__form .form-inline .form-group:last-child{
    padding-right: 0;
}

.questions__form .form-inline .form-control{
    width: 100%;
}

.questions__form .form-group{
    margin-bottom: 32px;
}

.questions__form .form-group:last-child{
    margin-bottom: 0;
}

.questions__form .form-control{
    font-size: 14px;

    height: 54px;
    padding-right: 18px;
    padding-left: 18px;

    border: none;
    border-radius: 5px;
    background-color: #ebebeb;
}

.questions__form .form-control:-moz-placeholder{
    color: #717171;
}

.questions__form .form-control::-moz-placeholder{
    color: #717171;
}

.questions__form .form-control:-ms-input-placeholder{
    color: #717171;
}

.questions__form .form-control::-webkit-input-placeholder{
    color: #717171;
}

.questions__form textarea.form-control{
    height: 228px;
    padding-top: 20px;

    resize: none;
}

.questions__agreements{
    font-size: 13px;
    margin-top: 17px;
    color: #777;
}

.questions__agreements a{
    text-decoration: underline;
}

.questions .btn{
    display: inline-block;

    width: 100%;
    max-width: 370px;
    margin-right: 45px;
}

.questions__captcha{
    display: inline-block;
    padding-top: 6px;
    position: absolute;
}

.footer .container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    padding-top: 55px;
    padding-bottom: 55px;
}

.footer__logo{
    width: 153px;
    height: 79px;
    margin-right: 45px;
}

.footer__menu{
    margin-right: 55px;
    padding-top: 10px;
}

.footer__menu h3{
    font-size: 16px;
    font-weight: 700;

    margin-bottom: 5px;

    color: #4b4b4b;
}

.footer__menu ul{
    margin: 0;
    padding: 0;

    list-style: none;
}

.footer__menu li{
    margin-bottom: 4px;
}

.footer__menu a{
    font-size: 13px;

    text-decoration: underline;

    color: #007acf;
}

.footer__menu a:hover{
    text-decoration: none;
}

.footer__phone a{
    font-size: 27px;
    font-weight: 700;

    color: black;
}

.footer__phone a:hover{
    text-decoration: none;

    color: #00aced;
}

.footer__phones p{
    font-size: 13px;

    margin-bottom: 17px;

    color: #4b4b4b;
}

.footer__phones .btn{
    font-size: 13px;

    padding: 9px 25px;
}

.footer__copyrights{
    padding-top: 7px;

    text-align: right;

    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.footer__copyrights p{
    font-size: 12px;

    margin-bottom: 8px;
}

.footer__copyrights a{
    text-decoration: underline;

    color: #777;
}

.footer__copyrights a:hover{
    text-decoration: none;
}

.footer__copyrights img{
    margin-top: 25px;
}

.footer.inner{
    margin-top: 65px;

    background-color: #e4f6fc;
}

.modal.container{
    padding: 0 50px;
}