@keyframes fadeEffect{
	from {opacity: 0;}
	to {opacity: 1;}
}
body {
    margin: 0px;
    background-color: #fff;
    font-family: 'Geometria';
}
a{
	text-decoration: none;
	cursor: pointer;
}
ul{
	margin: 0;
    padding: 0;
}
.header-wrapper{
	padding: 16px 0;
    background-color: #fff;
}
.header{
	max-width: 1400px;
	margin: auto;
	display: flex;
	justify-content: space-between;
    align-items: center;
}
.header .logo{
	width: 153px;
    height: 69px;
    background-image: url(../img/logo.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.header .menu-wrapp{
	display: flex;
    align-items: center;
}
.header .menu-wrapp .btn{
	width: 244px;
}
.header .menu{
    padding-right: 9%;
    padding-left: 1%;
}
.header .menu ul.main{
	padding: 0;
	list-style: none;
    display: flex;
    justify-content: space-between;
    width: 638px;
}
.header .menu ul.main li a{
	font-size: 18px;
    color: #000;
}
.header .menu ul.main li a:hover{
	border-bottom: 1px dashed;
}
.header .menu .burger{
	display: none;
}
.header .menu .burger{
	width: 40px;
	height: 28px;
	position: relative;
	cursor: pointer;
	padding-top: 4px;
}
.header .menu .burger .burger-menu{
	margin-left: -54px;
}
.header .menu .burger .burger-line{
	display: block;
	width: 40px;
	height: 5px;
	position: absolute;
	background-color:#ffdf56;
	left:0px;
	transition: .3s all linear;
}
.header .menu .burger .burger-line-first{
	top:0px;
}
.header .menu .burger .burger-line-second, .header .menu .burger .burger-line-third{
	top:50%;
	transform: translateY(-50%);
}
.header .menu .burger .burger-line-fourth{
	bottom:0px;
}
.header .menu .burger.burger-active .burger-line-first, .header .menu .burger.burger-active .burger-line-fourth{
	opacity: 0;
} 
.header .menu .burger.burger-active .burger-line-second{
	transform: translateY(-50%) rotate(45deg);
}
.header .menu .burger.burger-active .burger-line-third{
	transform: translateY(-50%) rotate(-45deg);
}
.header-contact{
    margin-bottom: -6px;
    width: 298px;
    margin-left: 3%;
}
.header-contact a{
	font-size: 22px;
    color: #000;
}
.header-contact .mail a{
	font-size: 18px;
}
.header .btn a{
	color: #fff;
	font-size: 15px;
	padding: 12px 18px 14px;
    border-radius: 45px;
    background-color: #13435b;
    text-align: center;
    display: block;
}
.header .btn a:hover{
	background-color:#18516e;
}

/*content*/

.wrapper-landing .first-screen-top{
	background-image: url(../img/bg-1.jpg);
	background-size: cover;
	background-color: #0f0f14;
}
.first-screen-contant{
	color:#fff;
	max-width: 880px;
    margin: auto;
    text-align: center;
}
.first-screen-contant .title{
	font-size: 42px;
	font-weight: 800;
	max-width: 690px;
	margin: 28px auto;
}
.first-screen-contant .subtitle{
	font-size: 20px;
	max-width: 620px;
    margin: auto;
}
.first-screen-contant .first-screen-btn{
	margin-top: 90px;
    margin-bottom: 140px;
}
.first-screen-contant .first-screen-btn a{
	background-color: #ffe056;
	color:#000;
	font-size: 25px;
	padding: 16px 21px 20px;
    border-radius: 67px;
}
.first-screen-contant .first-screen-btn a:hover{
	background-color: #ecd051;
}
.first-screen-contant .first-screen-list ul{
	padding: 0;
	list-style: none;
    display: flex;
    font-size: 22px;
    justify-content: space-between;
}
.first-screen-contant .first-screen-list ul li:not(:last-child):after{
	content:"/";
	margin: 0 12px;
}
.wrapper-landing .first-screen-top .first-screen-overlay{
	background-color: rgb(0 0 0 / 67%);
	height: 100%;
	padding-top: 84px;
    padding-bottom: 27px;
}
.wrapper-landing .first-screen-bottom{
	background-color: #ffe056;
}
.first-screen-bottom-content{
	display: flex;
    justify-content: space-between;
    max-width: 1390px;
    padding: 0 20px;
    margin: auto;
    align-items: center;
}
.first-screen-bottom-content .bottom-content-left{
	font-size: 32px;
	font-weight: 600;
}
.bottom-content-left p b{
	font-size: 36px;
}
.bottom-content-left p span{
	color: #14435b;
}
.bottom-content-left p span.cost{
	font-weight: 900;
}
.bottom-content-right p{
	margin: 0px;
	font-size: 22px;
	margin-left: 10px;
	margin-bottom:10px;
}
.second-screen-wrapp{
	background-color: #fff;
	max-width: 1460px;
    margin: auto;
    text-align: center;
    padding: 0 10px;
    padding-top: 30px;
    padding-bottom: 94px;
}
.second-screen-wrapp .title{
	font-size: 42px;
	color: #000;
	font-weight: 800;
	margin: 0px;
}
.second-screen-wrapp .subtitle{
	font-size: 20px;
	margin: 0 auto;
	margin-top: 12px;
    margin-bottom: 60px;
    max-width: 810px;
}
.second-screen-services{
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.second-screen-services .block-services{
	width: 25%;
	margin-bottom: 70px;
	display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.block-services img{
	width: 130px;
	margin: 0 auto;
}
.block-services .block-services-title{
	padding: 25px 0;
}
.block-services .block-services-title a{
	font-size: 24px;
	color: #000;
	border-bottom: 1px dashed #000;
}
.block-services .block-services-title a:hover{
	border-bottom: 1px dashed transparent;
}
.second-screen-services .block-services-btn a{
	color: #fff;
	background-color: #13435b;
	font-size: 25px;
	padding: 9px 43px 13px;
    border-radius: 53px;
}
.second-screen-services .block-services-btn a:hover{
	background-color: #18516e;
}
.second-screen-wrapp .second-screen-btn{
	margin-top: 35px;
}
.second-screen-wrapp .second-screen-btn a{
	background-color: #ffe056;
	font-size: 30px;
	color: #000;
	padding: 22px 110px 26px;
    border-radius: 86px;
}
.second-screen-wrapp .second-screen-btn a:hover{
	background-color: #ecd051;
}
.third-screen-wrapp .third-screen-top{
	background-color: #0e354b;
	background-image: url(../img/bg-2.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
	padding-top: 95px;
	padding-bottom: 115px;
}
.third-screen-wrapp .third-screen-title{
	font-size: 42px;
	font-weight: 800;
	color: #fff;
	margin: 0;
}
.third-screen-wrapp .third-screen-list{
	color: #fff;
	padding-top: 52px;
}
.third-screen-wrapp .third-screen-list ul{
	list-style: none;
	text-align: left;
	font-size: 30px;
	max-width: 930px;
    margin: auto;
}
.third-screen-wrapp .third-screen-list ul li{
    position: relative;
}
.third-screen-wrapp .third-screen-list ul li:before{
	content: "";
	top: 14px;
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url(../img/check.png);
    background-size: contain;
}
.third-screen-wrapp .third-screen-list ul li p{
	display: inline-block;
	width: 90%;
	margin: 12px 0;
	margin-left: 60px;
}
.third-screen-wrapp .third-screen-bottom{
	background-color: #ffe056;
	padding-top: 18px;
    padding-bottom: 18px;
}
.third-screen-bottom .third-bottom-content{
	display: flex;
    justify-content: space-between;
    max-width: 1376px;
    margin: auto;
    padding: 0 20px;
}
.third-bottom-content .third-screen-left{
	font-size: 28px;
	font-weight: 500;
	width: 30%;
}
.third-screen-bottom .slider-wrapp{
	width: 70%;
}
.third-screen-bottom .slider-wrapp .bx-viewport{
	padding: 42px 0;
}
.third-screen-bottom .bxslider{
	list-style: none;
	display: flex;
    align-items: center;
}
.third-screen-bottom .bxslider li div{
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	height: 56px;
}
.fourth-screen-wrapp{
	background-color: #fff;
	text-align: center;
	padding-top: 68px;
	padding-bottom: 26px;
}
.fourth-screen-wrapp .fourth-screen-title{
	font-size: 42px;
	font-weight: 800;
}
.fourth-screen-wrapp .fourth-screen-block{
	max-width: 1170px;
	margin: auto;
	padding-top: 96px;
}
.fourth-screen-wrapp .fourth-screen-block ul{
	display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
}
.fourth-screen-wrapp .fourth-screen-block ul li{
	width:25%;
	margin-bottom: 84px;
}
.fourth-screen-wrapp .fourth-screen-block ul .icon{
	width: 125px;
    height: 125px;
    background-color: #ffe056;
    border-radius: 50%;
    margin: auto;
    position: relative;
}
.fourth-screen-wrapp .fourth-screen-block ul .icon:after{
	content:"";
	width: 3px;
    height: 45px;
    background-color: #000;
    margin: auto;
    position: absolute;
    bottom: -25px;
    left: 63px;
}
.fourth-screen-wrapp .fourth-screen-block ul .icon img{
	width: 75%;
	margin-top: 25px;
    margin-left: 4px;
}
.fourth-screen-wrapp .fourth-screen-block ul li p{
	font-size: 16px;
	font-weight: 500;
	margin-top: 35px;
}
.fifth-screen-wrapp .fifth-screen-top{
	background-color: #14435b;
	background-image: url(../img/bg-3.jpg);
	background-size: cover;
	text-align: center;
	padding-top: 76px;
	padding-bottom: 60px;
}
.fifth-screen-top .fifth-top-title{
	font-size: 42px;
	font-weight: 800;
	color: #fff;
}
.fifth-screen-top .fifth-top-content{
	max-width: 1240px;
	margin: auto;
	display: flex;
    justify-content: space-between;
    padding: 0 20px;
    padding-top: 48px;
}
.fifth-screen-top .fifth-top-left{
	background-image: url(../img/attention.png);
	width: 42%;
	background-size: contain;
	background-repeat: no-repeat;
	color:#ffe056;
	font-size: 32px;
	padding-top: 160px;
	padding-bottom: 90px;
}
.fifth-screen-top .fifth-top-left p{
	margin-top: 5px;
}
.fifth-screen-top .fifth-top-left .attention{
	font-size: 42px;
	font-weight: 600;
	margin-bottom: 0;
	margin-top: 42px;
}
.fifth-screen-top .fifth-top-right{
	font-size: 26px;
	color: #fff;
	max-width: 600px;
    text-align: left;
    margin-top: 22px;
}
.fifth-screen-wrapp .fifth-screen-bottom{
	background-color: #ffe056;
	padding-top: 24px;
    padding-bottom: 18px;
}
.fifth-screen-bottom .fifth-bottom-content{
	max-width: 1394px;
	margin: auto;
	padding: 0 20px;
	display: flex;
    justify-content: space-between;
}
.fifth-screen-bottom .fifth-bottom-left{
	font-size: 26px;
	font-weight: 500;
	width: 60%;
}
.fifth-screen-bottom .fifth-bottom-right{
	padding-top: 8px;
}
.fifth-screen-bottom .fifth-bottom-right a{
	font-size: 25px;
	display: inline-block;
	font-weight: 500;
	text-transform: uppercase;
	color: #fff;
	background-color: #14435b;
	padding: 32px 62px;
    border-radius: 64px;
}
.fifth-screen-bottom .fifth-bottom-right a:hover{
	background-color: #18516e;
}
.sixth-screen-wrapp{
	background-color: #fff;
    text-align: center;
    padding: 0 20px;
    padding-top: 54px;
    padding-bottom: 30px;
}
.sixth-screen-wrapp .sixth-screen-title{
	font-size: 42px;
	font-weight: 800;
}
.sixth-screen-wrapp .sixth-screen-subtitle{
	font-size: 20px;
	padding-top: 10px;
}
.sixth-screen-wrapp .steps-block-wrapper{
	background-image: url(../img/bg-steps-1.png);
	height: 694px;
	background-repeat: no-repeat;
    max-width: 1328px;
    margin: auto;
    background-size: 100%;
    position: relative;
    margin-top: 44px;
}
.sixth-screen-wrapp .steps-block-wrapper .step-block{
	width: 158px;
    height: 158px;
    border-radius: 50%;
    background-color: #14435b;
    color: #fff;
    display: inline-block;
    text-align: center;
    font-size: 19px;
	font-weight: 500;
	position: absolute;
}
.sixth-screen-wrapp .steps-block-wrapper .step-block:last-of-type{
	width: 186px;
    height: 186px;
    background-color: #ffe056;
    color: #000;
    text-transform: uppercase;
    font-size: 22px;
	font-weight: 600;    
}
.step-block p{
	padding-top: 14%;
}
.step-block.one p{
	padding-top: 26%;
}
.step-block.two p, .step-block.three p, .step-block.four p, .step-block.five p{
	padding-top: 21%;
}
.step-block.one{
	top: 0%;
    left: 18%;
}
.step-block.two{
	top: 0%;
    left: 41%;
}
.step-block.three{
	top: 0%;
    right: 26%;
}
.step-block.four{
	top: 17%;
    right: 0;
}
.step-block.five{
	top: 37%;
    left: 61%;
}
.step-block.six{
	top: 37%;
    left: 30%;
}
.step-block.seven{
	bottom: 21%;
    left: 0;
}
.step-block.eight{
	bottom: 25px;
    left: 15%;
}
.step-block.nine{
	bottom: 15px;
    left: 43%;
}
.seventh-screen-wrapp{
	background-color: #ffe056;
	text-align: center;
	padding: 0 20px;
	padding-top: 50px;
	padding-bottom: 94px;
}
.seventh-screen-wrapp .seventh-screen-title{
	font-size: 42px;
	font-weight: 800;
}
.seventh-screen-wrapp .seventh-screen-content{
	max-width: 1400px;
	padding-top: 46px;
	margin: auto;
	display: flex;
    justify-content: space-between;
}
.seventh-screen-content .categories-questions{
	width: 494px;
	text-align: left;
	font-size: 42px;
	font-weight: 500;
	padding-top: 10px;
}
.seventh-screen-content .categories-questions ul li a{
	color: #000;
	display: block;
    padding: 18px 32px 20px;
}
.seventh-screen-content .categories-questions ul li a.active{
	color: #fff;
	background-color: #14435b;
	position: relative;
	margin-right: 20px;
}
.seventh-screen-content .categories-questions ul li a.active:after{
	content: "";
	width: 0;
	height: 0;
	border-top: 17px solid transparent;
	border-left: 22px solid #14435b;
	border-bottom: 17px solid transparent;
	position: absolute;
	right: -22px;
}
.seventh-screen-content .categories-questions ul{
	list-style: none;
}
.seventh-screen-content .questions-list{
	max-width: 876px;
	text-align: left;
	font-size: 32px;
}
.seventh-screen-content .questions-list ul{
	list-style: none;
}
.seventh-screen-content .questions-list ul .question-block{
	padding: 22px 16px 34px;
    border-bottom: 1px dashed;
    line-height: 34px;
}
.seventh-screen-content .questions-list ul .question-block .question-text{
	position: relative;
	cursor: pointer;
}
.seventh-screen-content .questions-list ul .question-block .question-text:after{
	content: "";
    display: inline-block;
    width: 10px;
    height: 11px;
    margin: -1px 10px 0px;
    border: solid #14435b;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    position: absolute;
    bottom: 15px;
    margin-left: 20px;
}
.seventh-screen-content .questions-list ul .question-block .question-text.active:after{
	content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: -1px 10px 0px;
    border: solid #14435b;
    border-width: 0 3px 3px 0;
    transform: rotate(225deg);
    position: absolute;
    bottom: 10px;
    margin-left: 20px;
}
.seventh-screen-content .questions-list ul .question-block .answer-text{
	background-color: #fff;
	font-size: 18px;
	font-weight: 300;
	border: 1px solid;
    padding: 16px;
    margin-top: 32px ;
    position: relative;
    display: none;
    line-height: 22px;
}
.seventh-screen-content .questions-list ul .question-block .answer-text:after{
	content: "";
	width: 0;
	height: 0;
	border-left: 17px solid transparent;
	border-right: 17px solid transparent;
	border-bottom: 22px solid #fff;
	position: absolute;
	top: -22px;
    left: 2%;
}
.seventh-screen-content .questions-list ul .question-block .answer-text:before{
	content: "";
	width: 0;
	height: 0;
	border-left: 17px solid transparent;
	border-right: 17px solid transparent;
	border-bottom: 22px solid #000;
	position: absolute;
	top: -23px;
    left: 2%;
}
.w-tab-pane{
	position: relative;
	display: none;
	animation: fadeEffect 1s;
}
.w--tab-active{
	display: block;
}
.eighth-screen-wrapp{
	background-color: #fff;
	text-align: center;
    padding-top: 52px;
    padding-bottom: 40px;
}
.eighth-screen-wrapp .eighth-screen-title{
	font-size: 42px;
	font-weight: 800;
}
.eighth-screen-wrapp .eighth-screen-content{
	padding: 0 20px;
	padding-top: 60px;
	max-width: 1400px;
	margin: auto;
}
.eighth-screen-wrapp .eighth-screen-content.hidden{
	display: none;
}
.eighth-screen-wrapp .eighth-screen-content:after{
	content: ""; 
	clear: both;
	display: block;
}
.eighth-screen-wrapp .eighth-screen-content .reviews-text{
	background-color: #fff;
    max-width: 834px;
    text-align: left;
    border: 3px solid;
    padding: 20px 26px 20px 34px;
    position: relative;
    margin-bottom: 50px;
}
.eighth-screen-wrapp .eighth-screen-content .reviews-text:nth-of-type(even){
	float: right;
}
.eighth-screen-wrapp .eighth-screen-content .reviews-text:nth-of-type(odd){
	float: left;
}
.eighth-screen-wrapp .eighth-screen-content .reviews-text:nth-of-type(odd):after{
	content: "";
	width: 0;
	height: 0;
	border-left: 9px solid transparent;
	border-right: 77px solid transparent;
	border-top: 55px solid #fff;
	position: absolute;
	bottom: -50px;
    left: 54px;
}
.eighth-screen-wrapp .eighth-screen-content .reviews-text:nth-of-type(odd):before{
	content: "";
	width: 0;
	height: 0;
	border-left: 9px solid transparent;
	border-right: 77px solid transparent;
	border-top: 55px solid #000;
	position: absolute;
	bottom: -55px;
    left:52px;
}
.eighth-screen-wrapp .eighth-screen-content .reviews-text:nth-of-type(even):after{
	content: "";
	width: 0;
	height: 0;
	border-left:77px solid transparent;
	border-right: 9px solid transparent;
	border-top: 55px solid #fff;
	position: absolute;
	bottom: -50px;
    right: 54px;
}
.eighth-screen-wrapp .eighth-screen-content .reviews-text:nth-of-type(even):before{
	content: "";
	width: 0;
	height: 0;
	border-left: 77px solid transparent;
	border-right: 9px solid transparent;
	border-top: 56px solid #000;
	position: absolute;
	bottom: -56px;
    right:52px;
}
.eighth-screen-content .reviews-text .reviews-name{
	font-size: 26px;
	font-weight: 600;
}
.eighth-screen-content .reviews-text p{
	font-size: 22px;
	line-height: 20px;
}
.eighth-screen-content .reviews-text .reviews-grade{
	display: flex;
	margin-top: 10px;
}
.eighth-screen-content .reviews-text .reviews-grade-star{
	background-image: url(../img/star.png);
	background-repeat: no-repeat;
	width: 32px;
	height: 32px;
	margin-right: 5px;
}
.eighth-screen-wrapp .more-reviews{
	padding: 30px 0;
}
.eighth-screen-wrapp .more-reviews a{
	font-size: 26px;
	font-weight: 500;
	position: relative;
	color: #000;
}
.eighth-screen-wrapp .more-reviews a:after{
	content: url(../img/more-arrow.png);
    transform: rotate(0deg);
    position: absolute;
    left: 35%;
    top: 50px;
}
.nine-screen-wrapp .nine-screen-top{
	background-image: url(../img/map.jpg);
	background-size: cover;
	background-position: center;
	padding-bottom: 65px;
    padding-top: 100px;
    position: relative;
}
.nine-screen-wrapp .nine-screen-top .nine-screen-contacts{
	background-color: #14435b;
	max-width: 440px;
	padding: 20px 41px 52px 36px;
    margin-left: 17.7%;
}
.nine-screen-contacts .title-contacts{
	color: #fff;
	font-size: 42px;
	font-weight: 800;
}
.nine-screen-contacts .subtitle-contacts{
	color: #fff;
	font-size: 20px;
}
.nine-screen-contacts .text-contacts{
	color: #fff;
	font-size: 26px;
	font-weight: 500;
	padding-top: 22px;
	display: flex;
    flex-direction: column;
}
.nine-screen-contacts .text-contacts p{
	margin: 0;
}
.nine-screen-contacts .text-contacts a{
	color: #fff;
	font-size: 26px;
	font-weight: 500;
}
.nine-screen-contacts .text-contacts span{
	color: #fff;
	font-size: 18px;
	font-weight: 300;
}
.nine-screen-contacts .footer-contacts{
	color: #fff;
	font-size: 14px;
	padding-top: 12px;
}
.nine-screen-contacts .social-contacts{
	padding-top: 14px;
}
.nine-screen-wrapp .nine-screen-top .map-location{
	position: absolute;
	top: 36%;
    right: 36%;
}
.nine-screen-wrapp .nine-screen-top .map-location:after{
	content: "";
	width: 0;
	height: 0;
	border-left:60px solid transparent;
	border-right: 60px solid transparent;
	border-top: 140px solid #ffe056;
	position: absolute;
}
.nine-screen-wrapp .nine-screen-top .map-location:before{
	content: "ПК";
	color: #000;
	font-size: 41px;
	font-weight: 500;
	position: absolute;
	z-index: 1;
	top:10px;
	left:30px;
}
.nine-screen-wrapp .nine-screen-bottom{
	background-color: #ffe056;
	padding-top: 18px;
	padding-bottom: 46px;
}
.nine-screen-wrapp .nine-screen-bottom .nine-bottom-content{
	max-width:1380px;
	padding: 0 20px;
	margin: auto;
}
.nine-screen-wrapp .nine-screen-bottom .nine-bottom-title{
	font-size: 32px;
	font-weight: 500;
}
.nine-screen-wrapp .nine-screen-bottom .nine-bottom-subtitle{
	font-size: 20px;
}
.nine-screen-bottom .nine-bottom-form{
	display: flex;
    justify-content: space-between;
    padding-top: 30px;
}
.nine-screen-bottom .nine-bottom-form input[type=text]{
	background-color: #fff;
	border: none;
	padding: 26px 26px 24px;
	font-size: 24px;
	font-weight:300;
	width: 358px;
}
.nine-screen-bottom .nine-bottom-form input[type=text]:nth-of-type(2){
	margin-left: -36px;
}
.nine-screen-bottom .nine-bottom-form input[type=text]::placeholder{
	font-size: 24px;
	font-weight:300;
	color:#1f2223;
}
.nine-screen-bottom .nine-bottom-form input[type=text]:focus-visible{
	outline: none;
}
.nine-screen-bottom .nine-bottom-form input[type=submit]{
	background-color: #14435b;
	border: none;
	font-size: 27px;
	color:#fff;
	padding: 22px 55px 20px;
	border-radius: 42px;
	cursor: pointer;
}
.nine-screen-bottom .nine-bottom-form input[type=submit]:hover{
	background-color: #18516e;
}

/* responsive */

@media only screen and (max-width: 1390px){
	.header{
		max-width: 1320px;
		padding: 0 20px;
	}
	.header-contact{
		width: 278px;
	}
	.header .menu-wrapp .btn {
	    width: 216px;
	}
	.header .menu{
		padding-right: 6%;
		padding-left: 0;
	}
	.header .menu ul.main{
		width: 632px;
	}
	.wrapper-landing .first-screen-top .first-screen-overlay{
		padding-top: 154px;
    	padding-bottom: 58px;
	}
	.first-screen-contant .first-screen-btn{
		margin-bottom: 198px;
	}
	.first-screen-bottom-content{
		max-width: 1320px;
	}
	.second-screen-wrapp{
		max-width: 1345px;
	}
	.third-screen-bottom .third-bottom-content{
		max-width: 1330px;
	}
	.fourth-screen-wrapp .fourth-screen-block{
		max-width: 1120px;
	}
	.fifth-screen-bottom .fifth-bottom-content{
		max-width: 1324px;
	}
	.fifth-screen-wrapp .fifth-screen-top{
		padding-bottom: 52px;
	}
	.sixth-screen-wrapp .steps-block-wrapper{
		max-width: 1304px;
	}
	.seventh-screen-wrapp .seventh-screen-content{
		max-width: 1324px;
	}
	.seventh-screen-content .questions-list{
		max-width: 820px;
	}
	.eighth-screen-wrapp .eighth-screen-content{
		max-width: 1322px;
	}
	.nine-screen-wrapp .nine-screen-top .nine-screen-contacts{
		margin-left: 4%;
	}
	.nine-screen-wrapp .nine-screen-bottom .nine-bottom-content{
		max-width: 1320px;
	}
	.nine-screen-bottom .nine-bottom-form input[type=text]:nth-of-type(2){
		margin-left: -20px;
	}
	.nine-screen-wrapp .nine-screen-top .map-location{
		right: 30.5%;
	}
}
@media only screen and (max-width: 1360px){
	.header .menu .burger{
		display: block;
	}
	.header .menu ul.main{
		display: none;
		position: absolute;
	    flex-direction: column;
	    top: 100px;
	    width: 100%;
	    left: 0;
	    background-color: #13435b;
	}
	.header .menu ul.main li a{
		color:#fff;
		padding: 15px;
    	display: block;
    	border-bottom: 1px solid #134863;
	}
}
@media only screen and (max-width: 1350px){
	.nine-screen-bottom .nine-bottom-form input[type=text]{
		padding: 26px 15px 22px;
		width: 320px;
	}
	.nine-screen-bottom .nine-bottom-form input[type=text]:nth-of-type(2){
		margin-left: 0px;
	}
	.nine-screen-bottom .nine-bottom-form input[type=submit]{
		font-size: 24px;
		padding: 12px 45px 18px;
    	border-radius: 40px;
	}
}
@media only screen and (max-width: 1290px){
	.fifth-screen-bottom .fifth-bottom-right a{
		font-size: 24px;
		padding: 28px 54px;
    	border-radius: 87px;
	}
	.fifth-screen-bottom .fifth-bottom-left{
		width: 48%;
		font-size: 24px;
	}
	.sixth-screen-wrapp .steps-block-wrapper{
		background-image: url(../img/bg-steps-2.png);
	    height: 690px;
	    background-repeat: no-repeat;
	    max-width: 980px;
	    margin: auto;
	    background-size: 100%;
	    margin-top: 50px;
	}
	.step-block.nine{
		bottom: 15px;
    	right: 0;
    	left: unset;
	}
	.step-block.eight{
		bottom: 25px;
    	right: 22%;
    	left: unset;
	}
	.step-block.seven{
		bottom: 25px;
    	left: 30%;
    	right: unset;
	}
	.step-block.six{
		top: 56%;
    	left: 0;
    	right: unset;
	}
	.step-block.five {
	    top: 37%;
	    left: 32%;
	    right: unset;
	}
	.step-block.four {
	    top: 36%;
	    right: 23%;
	    left: unset;
	}
	.step-block.three {
	    top: 18%;
	    right: 0;
	    left: unset;
	}
	.step-block.two {
	    top: 0%;
	    right: 32%;
	    left: unset;
	}
	.step-block.one {
	    top: 0%;
	    left: 16%;
	    right: unset;
	}
}
@media only screen and (max-width: 1200px){
	.header{
		padding: 0 24px;
	}
	.header-wrapper{
		padding: 14px 0;
		position: relative;
	}
	.header-contact{
		margin-bottom:0;
		width: 262px;
		margin-left: 8%;
	}
	.header .menu {
	    padding-right: 5%;
    	padding-left: 4%;
	}
	.header-contact a{
		font-size: 22px;
	}
	.wrapper-landing .first-screen-top .first-screen-overlay{
		padding-top: 76px;
		padding-bottom: 38px;
	}
	.first-screen-contant .first-screen-btn{
		margin-bottom: 172px;
	}
	.first-screen-contant{
		max-width: 800px;
	}
	.first-screen-contant .first-screen-list ul{
		font-size: 20px;
	}
	.first-screen-contant .first-screen-list ul li:not(:last-child):after{
		margin: 0 10px;
	}
	.second-screen-wrapp{
		padding-top: 42px;
	}
	.block-services .block-services-title a{
		font-size: 20px;
	}
	.second-screen-services .block-services{
		margin-bottom: 76px;
	}
	.second-screen-wrapp .second-screen-btn{
		margin-top: 16px;
	}
	.third-bottom-content .third-screen-left{
		width: 40%;
	}
	.third-screen-wrapp .third-screen-top{
		padding: 70px 48px 115px 78px;

	}
	.third-screen-wrapp .third-screen-list{
		padding-top: 24px;
	}
	.third-screen-bottom .slider-wrapp{
		width: 54%;
	}
	.slider-wrapp .bx-wrapper{
		margin-right: 36px !important;
	}
	.fourth-screen-wrapp{
		padding-top: 56px;
		padding-bottom: 0px;
	}
	.fourth-screen-wrapp .fourth-screen-block ul li{
		margin-bottom: 80px;
	}
	.fourth-screen-wrapp .fourth-screen-block ul li:nth-of-type(n+5){
		width:28%;
	}
	.fifth-screen-wrapp .fifth-screen-top{
		padding-top: 72px;
	}
	.fifth-screen-top .fifth-top-content{
		padding-top: 42px;
	}
	.fifth-screen-top .fifth-top-right{
		font-size: 22px;
	    max-width: 450px;
	    margin-top: 0;
	}
	.fifth-screen-top .fifth-top-left{
		width: 50%;
	}
	.fifth-screen-wrapp .fifth-screen-bottom{
		padding-top: 10px;
		padding-bottom: 14px;
	}
	.fifth-screen-bottom .fifth-bottom-right{
		padding-top: 29px;
	}
	.sixth-screen-wrapp{
		padding-top: 26px;
		padding-bottom: 64px;
	}
	.sixth-screen-wrapp .sixth-screen-subtitle{
		width: 80%;
    	margin: auto;
	}
	.seventh-screen-wrapp{
		padding-bottom: 58px;
	}
	.seventh-screen-wrapp .seventh-screen-content{
		padding-top: 32px;
	}
	.seventh-screen-content .categories-questions{
		font-size: 32px;
		padding-top: 24px;

	}
	.seventh-screen-content .questions-list{
		font-size: 28px;
		max-width: 594px;
		margin-left: 20px;
	}
	.seventh-screen-content .questions-list ul .question-block{
		padding-bottom: 24px;
	}
	.seventh-screen-content .questions-list ul .question-block .answer-text{
		padding: 16px;
	}
	.eighth-screen-wrapp{
		padding-top: 50px;
	}
	.eighth-screen-wrapp .eighth-screen-content .reviews-text{
		margin-bottom: 124px;
	}
	.eighth-screen-content .reviews-text p{
		line-height: 22px;
	}
	.eighth-screen-wrapp .more-reviews{
		padding-top: 0;
	}
	.eighth-screen-wrapp .eighth-screen-content .reviews-text:last-of-type{
		margin-bottom: 74px;
	}
	.nine-screen-wrapp .nine-screen-top .nine-screen-contacts{
		margin-left: 2%;
	}
	.nine-screen-wrapp .nine-screen-top .map-location{
		right: 23.5%;
	}
	.nine-screen-bottom .nine-bottom-form input[type=text]{
		width: 264px;
	}
	.nine-screen-bottom .nine-bottom-form input[type=submit]{
		padding: 12px 38px 18px;
	}
}
@media only screen and (max-width: 1015px){
	.nine-screen-bottom .nine-bottom-form{
		flex-wrap: wrap;
		justify-content: space-around;
	}
	.nine-screen-bottom .nine-bottom-form input[type=submit]{
		margin-top: 30px;
		padding: 18px 38px 20px;
	}
	.nine-screen-bottom .nine-bottom-form input[type=text]{
		width: 44%;
	}
	.nine-screen-bottom .nine-bottom-form input[type=text]:nth-of-type(2){
		margin-left: 30px;
	}
	.sixth-screen-wrapp .steps-block-wrapper{
		background-image: url(../img/bg-steps-3.png);
	    height: 950px;
	    background-repeat: no-repeat;
	    max-width: 730px;
	    margin: auto;
	    background-size: 100%;
	    margin-top: 148px;
	}
	.step-block.nine{
		bottom: 15px;
	    right: unset;
	    left: 19%;
	}
	.step-block.eight{
		bottom: 25px;
	    right: 14%;
	    left: unset;
	}
	.step-block.seven{
		bottom: 29%;
	    right: 14%;
	    left: unset;
	}
	.step-block.six{
		bottom: 29%;
	    left: 23%;
	    right: unset;
	    top: unset;
	}
	.step-block.five {
	    top: 41%;
	    left: 0%;
	    right: unset;
	}
	.step-block.four {
	    top: 27%;
	    right: unset;
	    left: 23%;
	}
	.step-block.three {
	    top: 27%;
	    right: 14%;
	    left: unset;
	}
	.step-block.two {
	    top: 0%;
	    right: 14%;
	    left: unset;
	}
	.step-block.one {
	    top: 0%;
	    left: 23%;
	    right: unset;
	}
	.third-bottom-content .third-screen-left{
		font-size: 24px;
	}
	.third-screen-bottom .bxslider li div{
		height: 40px;
	}
	.bx-wrapper .bx-controls-direction a{
		top: 10% !important;
	}
}
@media only screen and (max-width: 900px){
	.first-screen-bottom-content .bottom-content-left{
		font-size: 26px;
	}
	.bottom-content-left p b{
		font-size: 28px;
	}
	.first-screen-bottom-content{
		padding: 0 18px;
		max-width: 900px;
	}
	.bottom-content-right #CDT .number-wrapper{
		margin: 0;
    	margin-right: 4px;
	}
	.bottom-content-right #CDT .number-wrapper:last-of-type{
		margin: 0;
	}
	.header-wrapper {
	    padding: 15px 0;
	}
	.header {
	    padding: 0 18px;
	}
	.header .menu{
		padding-right: 6%;
    	padding-left: 0;
    	margin-left: -4%;
	}
	.header .menu-wrapp .btn {
	    width: 184px;
	}
	.header-contact{
		width: 238px;
    	margin-left: 6%;
	}
	.first-screen-contant .first-screen-list ul{
		flex-wrap: wrap;
    	justify-content: center;
	}
	.second-screen-wrapp {
	    max-width: 726px;
	    padding-top: 26px;
	}
	.second-screen-services .block-services{
		width: 50%;
	}
	.block-services .block-services-title a{
		font-size: 24px;
	}
	.block-services .block-services-title{
		padding-top: 34px;
	}
	.third-screen-wrapp .third-screen-top{
		padding: 70px 15px 12px 20px;
	}
	.third-screen-wrapp .third-screen-list ul{
		font-size: 28px;
	}
	.third-screen-wrapp .third-screen-list ul li p{
		line-height: 34px;
	}
	.third-screen-bottom .third-bottom-content{
		max-width: 900px;
	}
	.third-screen-bottom .slider-wrapp{
		width: 62%;
	}
	.third-screen-bottom .bxslider li div{
		height: 52px;
	}
	.third-screen-wrapp .third-screen-bottom{
		padding: 10px 0;
	}
	.fourth-screen-wrapp{
		padding-top: 38px;
	}
	.fourth-screen-wrapp .fourth-screen-block{
		padding-top: 48px;
		padding-bottom: 16px;
	}
	.fourth-screen-wrapp .fourth-screen-block ul li{
		width: 32%;
		margin-bottom: 52px;
	}
	.fourth-screen-wrapp .fourth-screen-block ul li:nth-of-type(n+5){
		width: 32%;
	}
	.fifth-screen-wrapp .fifth-screen-top {
	    padding-top: 42px;
	}
	.fifth-screen-top .fifth-top-content{
		flex-direction: column;
		padding-top: 30px;
	}
	.fifth-screen-top .fifth-top-left{
		width: 100%;
		background-size: contain;
		background-position: center;
		font-size: 26px;
		padding-top: 114px;
    	padding-bottom: 66px;
	}
	.fifth-screen-top .fifth-top-left .attention{
		font-size: 34px;
		margin-top: 52px;
	}
	.fifth-screen-top .fifth-top-right{
		max-width: 100%;
	}
	.fifth-screen-wrapp .fifth-screen-top{
		padding-bottom: 16px;
	}
	.fifth-screen-bottom .fifth-bottom-content{
		max-width: 900px;
		flex-direction: column;
	}
	.fifth-screen-bottom .fifth-bottom-left{
		width: 100%;
	}
	.fifth-screen-bottom .fifth-bottom-right{
		margin: auto;
		padding-top: 34px;
	}
	.fifth-screen-wrapp .fifth-screen-bottom{
		padding-bottom: 70px;
	}
	.sixth-screen-wrapp{
		padding-top: 30px;
		padding-bottom: 56px;
	}
	.sixth-screen-wrapp .sixth-screen-subtitle{
		width: 100%;
	}
	.seventh-screen-wrapp{
		padding-top: 22px;
		padding-right: 32px;
		padding-bottom: 70px;
	}
	.seventh-screen-wrapp .seventh-screen-content{
		flex-direction: column;
		max-width: 900px;
		padding-top: 6px;
	}
	.seventh-screen-content .categories-questions ul{
		display: flex;
		justify-content: space-between;
	}
	.seventh-screen-content .categories-questions{
		font-size: 26px;
		width: 100%;
	}
	.seventh-screen-content .categories-questions ul li a{
		padding: 0;
		margin: 15px 0 0 0;
	}
	.seventh-screen-content .categories-questions ul li a span{
		border-bottom: 2px dashed;
	}
	.seventh-screen-content .categories-questions ul li a.active{
		padding: 16px 23px 22px;
		margin: unset;
	}
	.seventh-screen-content .categories-questions ul li a.active span{
		border-bottom: 2px dashed transparent;
	}
	.seventh-screen-content .categories-questions ul li a.active:after{
		border-top: 20px solid #14435b;
	    border-left: 15px solid transparent;
	    border-right: 15px solid transparent;
	    right: unset;
	    left: 10%;
	    bottom: -37px;
	}
	.seventh-screen-content .questions-list{
		padding-top: 20px;
		max-width: 723px;
	}
	.seventh-screen-content .questions-list ul .question-block{
		padding: 22px 16px 26px;
	}
	.eighth-screen-wrapp{
		padding-top: 30px;
	}
	.eighth-screen-content .reviews-text p{
		font-size: 20px;
	}
	.eighth-screen-wrapp .eighth-screen-content .reviews-text{
		margin-bottom: 102px;
		padding: 20px 24px 20px 32px;
	}
	.nine-screen-wrapp{
		padding-top: 30px;
	}
	.nine-screen-wrapp .nine-screen-top{
		padding-top: 0;
		height: 820px;
		position: relative;
	}
	.nine-screen-wrapp .nine-screen-top .nine-screen-contacts{
		position: absolute;
	    top: -7px;
	    margin-left: auto;
	    margin-right: auto;
	    left: 0;
	    right: 0;
	    max-width: 85%;
	    padding-bottom:  28px ;
	}
	.nine-screen-wrapp .nine-screen-top .map-location{
		right: 40%;
		top: 63%;
	}
	.nine-screen-wrapp .nine-screen-top .block-contacts{
		display: flex;
    	justify-content: space-between;
    	padding-right: 40px;
	}
	.nine-screen-contacts .text-contacts{
		font-size: 24px;
	}
	.nine-screen-contacts .text-contacts a{
		font-size: 24px;
	}
	.nine-screen-contacts .block-contacts~.text-contacts{
		margin-top: -60px;
	}
	.nine-screen-contacts .footer-contacts{
		padding-top: 30px;
	}
	.nine-screen-contacts .social-contacts{
		padding-top: 28px;
	}
	.nine-screen-wrapp .nine-screen-bottom .nine-bottom-content{
		max-width: 900px;
	}
	.nine-screen-wrapp .nine-screen-bottom{
		padding-top: 26px;
	}
	.nine-screen-wrapp .nine-screen-bottom .nine-bottom-subtitle{
		padding-top: 5px;
	}
	.nine-screen-bottom .nine-bottom-form input[type=submit]{
		margin-top: 36px;
    	padding: 20px 40px 22px;
	}
}
@media only screen and (max-width: 790px){
	.nine-screen-bottom .nine-bottom-form input[type=text]{
		width: 90%;
    	margin-bottom: 10px;
	}
	.nine-screen-bottom .nine-bottom-form input[type=text]:nth-of-type(2){
		margin-left: 0;
	}
	.nine-screen-bottom .nine-bottom-form{
		justify-content: center;
	}
}
@media only screen and (max-width: 750px){
	.header{
		padding: 0 10px;
	}
	.header-wrapper{
		padding: 6px 0;
		height: 137px;
		position: relative;
	}
	.header .menu-wrapp{
		margin-top: 5px;
	}
	.header .menu-wrapp .btn{
		position: absolute;
		bottom: 22px;
	    width: 96%;
	    left: 0;
	    right: 0;
	    margin-left: auto;
	    margin-right: auto;
	}
	.header-contact{
		width: 180px;
    	margin-left: 0;
	}
	.header-contact a{
		font-size: 18px;
	}
	.header .logo{
		width: 136px;
	}
	.header .menu ul.main{
		top: 148px;
	}
	.first-screen-contant .title{
		font-size: 36px;
		line-height: 44px;
	}
	.wrapper-landing .first-screen-top .first-screen-overlay{
		padding-top: 88px;
	}
	.first-screen-contant .subtitle{
		margin-top: -10px;
		width: 89%;
	}
	.first-screen-contant .first-screen-btn{
		margin-top: 62px;
		margin-bottom: 124px;
	}
	.wrapper-landing .first-screen-top .first-screen-overlay{
		padding-bottom: 34px;
	}
	.first-screen-bottom-content{
		flex-direction: column;
		padding-bottom: 12px;
	}
	.first-screen-bottom-content .bottom-content-left{
		text-align: center;
	}
	.bottom-content-right p{
		font-size: 20px;
	}
	.bottom-content-left p{
		margin-top: 12px;
	}
	#CDT{
		margin-top: 6px !important;
	}
	.second-screen-wrapp{
		padding-top: 30px;
		padding-bottom: 50px;
	}
	.second-screen-wrapp .title{
		font-size: 32px;
	}
	.second-screen-wrapp .subtitle{
		font-size: 18px;
		margin-top: 18px;
		line-height: 26px;
	}
	.block-services .block-services-title a{
		font-size: 20px;
	}
	.second-screen-wrapp .second-screen-btn a{
		padding: 22px 66px 26px;
		display: block;
	}
	.second-screen-wrapp .second-screen-btn{
		margin-top: -18px;
	}
	.third-screen-wrapp .third-screen-title{
		font-size: 34px;
	}
	.third-screen-wrapp .third-screen-list ul{
		font-size: 20px;
	}
	.third-screen-wrapp .third-screen-list{
		padding-top: 36px;
	}
	.third-screen-wrapp .third-screen-list ul li p{
		line-height: 25px;
		margin-left: 44px;
	}
	.third-screen-wrapp .third-screen-list ul li:before{
		width: 34px;
    	height: 34px;
	}
	.third-screen-wrapp .third-screen-top{
		padding: 40px 15px 100px 20px;
	}
	.third-bottom-content .third-screen-left{
		font-size: 20px;
		padding-top: 20px;
	}
	.third-screen-bottom .slider-wrapp{
		width: 52%;
	}
	.third-screen-bottom .bxslider li div{
		height: 44px;
	}
	.third-screen-bottom .slider-wrapp .bx-viewport{
		padding: 48px 0;
	}
	.third-screen-bottom .third-bottom-content{
		max-width: 500px;
		padding: 0 12px;
	}
	.fourth-screen-wrapp .fourth-screen-title{
		font-size: 34px;
	}
	.fourth-screen-wrapp .fourth-screen-block ul li{
		width: 45%;
	}
	.fourth-screen-wrapp .fourth-screen-block ul li:nth-of-type(n+5){
		width: 45%;
	}
	.fourth-screen-wrapp .fourth-screen-block{
		padding-top: 38px;
    	padding-bottom: 0;
	}
	.fifth-screen-top .fifth-top-title{
		font-size: 34px;
	}
	.fifth-top-right p{
    	line-height: 23px;
	}
	.fifth-top-right p:nth-of-type(1){
		padding-top: 8px;
	}
	.fifth-screen-wrapp .fifth-screen-top{
		padding-top: 30px;
		padding-bottom: 42px;
	}
	.fifth-screen-bottom .fifth-bottom-content{
		padding: 0 12px;
	}
	.fifth-screen-wrapp .fifth-screen-bottom{
		padding-top: 8px;
		padding-bottom: 74px;
	}
	.sixth-screen-wrapp .sixth-screen-title{
		font-size: 34px;
	}
	.sixth-screen-wrapp .sixth-screen-subtitle{
		font-size:18px;
	}
	.sixth-screen-wrapp{
		padding: 0 12px;
		padding-top: 38px;
		padding-bottom: 20px;
	}
	.sixth-screen-wrapp .steps-block-wrapper{
		background-image: url(../img/bg-steps-4.png);
		max-width: 470px;
		height: 1198px;
		margin-top: 82px;
	}
	.step-block.nine{
		left: 40%;
	}
	.step-block.eight{
		bottom: 13%;
	    right: unset;
	    left: 0;
	}
	.step-block.seven{
		bottom: 23%;
    	right: 33%;
	}
	.step-block.six{
		bottom: 35%;
	    left: unset;
	    right: 0;
	}
	.step-block.five{
		top: 42%;
    	left: 32%;
	}
	.step-block.four{
		top: 32%;
	    right: unset;
	    left: 0;
	}
	.step-block.three{
		top: 20%;
    	right: 33%;
	}
	.step-block.two{
		top: 10%;
    	right: 0;
	}
	.step-block.one{
		left: 15%;
	}
	.seventh-screen-content .categories-questions{
		font-size: 20px;
	}
	.seventh-screen-content .questions-list{
		font-size: 22px;
	}
	.nine-screen-wrapp .nine-screen-top .nine-screen-contacts{
		top: -16px;
		padding: 20px 25px 28px 25px;
	}
	.nine-screen-wrapp .nine-screen-top{
		height: 1010px;
	}
	.nine-screen-wrapp .nine-screen-top .block-contacts{
		flex-direction: column;
	}
	.nine-screen-contacts .block-contacts~.text-contacts{
		margin-top: 0;
	}
	.nine-screen-contacts .text-contacts{
		padding-top: 26px;
	}
	.nine-screen-contacts .footer-contacts{
		padding-top: 15px;
	}
	.nine-screen-contacts .social-contacts{
		padding-top: 10px;
	}
	.nine-screen-wrapp .nine-screen-bottom .nine-bottom-content{
		max-width: 750px;
		padding: 0 12px;
	}
	.nine-screen-wrapp .nine-screen-bottom .nine-bottom-subtitle{
		padding-top: 10px;
	}
}
@media only screen and (max-width: 580px){
	.second-screen-wrapp .second-screen-btn a{
		padding: 22px 30px 26px;
	}
	.fourth-screen-wrapp .fourth-screen-block ul li:last-of-type{
		width: 80%;
	}
	.fifth-screen-bottom .fifth-bottom-right{
		width: 98%;
	    margin: auto;
	    text-align: center;
	}
	.fifth-screen-bottom .fifth-bottom-right a{
		display: block;
		margin-top: -25px;
		padding: 28px;
	}
	.fifth-screen-wrapp .fifth-screen-bottom{
		padding-bottom: 45px;
	}
	.seventh-screen-content .categories-questions ul li{
		width: 33%;
    	text-align: center;
	}
	.seventh-screen-content .categories-questions ul li a{
		margin: 0;
		padding: 12px 16px;
	}
	.seventh-screen-content .categories-questions ul li:nth-of-type(1) a{
		margin: 0;
		padding: 24px 16px;
	}
	.seventh-screen-content .categories-questions{
		padding-left: 0px;
	}
	.seventh-screen-content .categories-questions ul li a.active{
		padding: 12px 16px;
	}
	.seventh-screen-content .categories-questions ul li:nth-of-type(1) a.active{
		padding: 24px 16px;
	}
	.seventh-screen-content .questions-list{
		max-width: 490px;
		padding-top: 38px;
	}
	.seventh-screen-content .questions-list ul .question-block{
		line-height: 28px;
		padding: 19px 16px 19px;
	}
	.seventh-screen-wrapp{
		padding: 22px 12px 70px 12px;
	}
	.seventh-screen-content .questions-list{
		margin-left: 12px;
	}
	.eighth-screen-wrapp{
		padding-top: 40px;
	}
	.eighth-screen-wrapp .eighth-screen-content{
		max-width: 500px;
		padding: 0 12px;
		padding-top: 30px;
	}
	.eighth-screen-wrapp .eighth-screen-content .reviews-text{
		max-width: 470px;
		padding-bottom:5px;
		margin-bottom: 74px;
	}
	.eighth-screen-content .reviews-text p{
		font-size: 18px;
	}
	.nine-screen-bottom .nine-bottom-form{
		padding-top: 22px;
	}
	.nine-screen-bottom .nine-bottom-form input[type=text] {
	    width: 94%;
	    margin-bottom: 14px;
	}
	.nine-screen-bottom .nine-bottom-form input[type=submit] {
	    margin-top: 24px;
	}
}
@media only screen and (max-width: 460px){
	.header-wrapper{
		height: 160px;
	}
	.header-contact{
		position: absolute;
		left:0;
		right:0;
		margin-left: auto;
		margin-right: auto;
	    display: flex;
	    justify-content: space-around;
	    width: 94%;
    	top: 44%;
    	border-top: 1px solid;
	}
	.header-contact a{
		font-size: 14px;
	}
	.header-contact .mail a{
		font-size: 14px;
	}
	.header-contact .tel{
		border-right: 1px solid;
    	padding-right: 10px;
    	padding-bottom: 8px;
	}
	.header-contact div{
		padding-top: 6px;
	}
	.header .menu ul.main{
		top: 170px;
	}
	.header .menu-wrapp .btn{
		bottom: 16px;
	}
	.wrapper-landing .first-screen-top .first-screen-overlay{
		padding-top: 1px;
		padding-bottom: 28px;
	}
	.first-screen-contant .title{
		font-size: 32px;
		line-height: 38px;
	}
	.first-screen-contant .subtitle{
		font-size: 16px;
	}
	.first-screen-contant .first-screen-btn a{
		font-size: 22px;
	}
	.first-screen-contant .first-screen-btn{
		margin-top: 57px;
    	margin-bottom: 60px;
	}
	.first-screen-contant .first-screen-list ul li:not(:last-child):after{
		margin: 0 6px;
	}
	.first-screen-bottom-content .bottom-content-left{
		font-size: 20px;
	}
	.bottom-content-left p b{
		font-size: 22px;
	}
	.first-screen-bottom-content .bottom-content-left{
		margin-top: -4px;
	}
	.first-screen-bottom-content .bottom-content-right{
		text-align: center;
		padding-top: 10px;
	}
	.first-screen-bottom-content{
		padding: 0 12px;
		padding-bottom: 16px;
	}
	#CDT{
		font-size: 55px !important;
	}
	#CDT .number{
		padding: 0 6px !important;
		line-height: 62px !important;
		box-shadow: inset 0 32px 0 rgb(255 255 255 / 16%), inset 0 -3px 0 rgb(255 255 255 / 16%) !important;
		height: 62px !important;
	}
	.bottom-content-right .caption{
		font-size: 10px;
	}
	.bottom-content-right p{
		font-size: 16px;
		text-align: left;
		margin-left: 0px;
		margin-bottom: 2px;
	}
	.second-screen-wrapp .title{
		font-size: 23px;
	}
	.second-screen-wrapp .subtitle{
		font-size: 16px;
	    margin-top: 16px;
	    line-height: 22px;
	    margin-bottom: 50px;
	}
	.second-screen-services .block-services{
		width: 83%;
		margin-bottom: 80px;
	}
	.second-screen-wrapp .second-screen-btn a{
		font-size: 20px;
    	text-transform: uppercase;
    	padding: 30px 18px;
	}
	.second-screen-services .block-services:nth-of-type(n+9) .block-services-title a{
		font-size: 24px;
	}
	.third-screen-wrapp .third-screen-title{
		font-size: 30px;
	}
	.third-screen-wrapp .third-screen-list ul{
		font-size: 16px;
	}
	.third-screen-wrapp .third-screen-list ul li:before{
		width: 28px;
    	height: 28px;
	}
	.third-screen-wrapp .third-screen-list ul li p{
		margin-left: 34px;
		line-height: 23px;
	}
	.third-screen-wrapp .third-screen-list{
		padding-top: 46px;
	}
	.third-screen-wrapp .third-screen-top{
		padding: 42px 10px 86px;
	}
	.third-screen-bottom .third-bottom-content{
		flex-direction: column;
	}
	.third-bottom-content .third-screen-left{
		padding-top: 0;
		margin-top: -5px;
		padding-left: 5px;
		width: 100%;
	}
	.third-screen-bottom .slider-wrapp{
		width: 88%;
		margin-top: -25px;
		margin-left: 12%;
	}
	.third-screen-wrapp .third-screen-bottom{
		padding-bottom: 0;
	}
	.third-screen-bottom .slider-wrapp .bx-viewport{
		padding: 40px 0;
	}
	.fourth-screen-wrapp .fourth-screen-title{
		font-size: 26px;
	}
	.fourth-screen-wrapp{
		padding-top: 42px;
	}
	.fourth-screen-wrapp .fourth-screen-block{
		padding-top: 56px;
	}
	.fourth-screen-wrapp .fourth-screen-block ul li{
		margin-bottom: 36px;
	}
	.fourth-screen-wrapp .fourth-screen-block ul li:last-of-type{
		margin-bottom: 30px;
	}
	.fifth-screen-top .fifth-top-title{
		font-size: 26px;
	}
	.fifth-screen-top .fifth-top-left .attention{
		font-size: 26px;
		margin-top: 44px;
	}
	.fifth-screen-top .fifth-top-left p{
		font-size: 20px;
	}
	.fifth-screen-top .fifth-top-content{
		padding: 0 10px;
	}
	.fifth-screen-top .fifth-top-right{
		font-size: 20px;
		margin-top: -10px;
	}
	.fifth-top-right p:nth-of-type(1) {
	    padding-top:0;
	}
	.fifth-top-right p{
		line-height: 22px;
	}
	.fifth-screen-wrapp .fifth-screen-top{
		padding-top: 40px;
    	padding-bottom: 62px;
	}
	.fifth-screen-bottom .fifth-bottom-right a{
		font-size: 20px;
		padding: 18px 5px;
	}
	.fifth-screen-bottom .fifth-bottom-left{
		font-size:20px;
	}
	.fifth-screen-wrapp .fifth-screen-bottom{
		padding-top: 12px;
		padding-bottom: 26px;
	}
	.fifth-screen-bottom .fifth-bottom-content{
		padding: 0 8px;
	}
	.sixth-screen-wrapp .sixth-screen-title{
		font-size: 32px;
	}
	.sixth-screen-wrapp .sixth-screen-subtitle{
		font-size: 16px;
		margin-top: 10px;
	}
	.sixth-screen-wrapp .steps-block-wrapper{
		background-image: url(../img/bg-steps-5.png);
	    max-width: 300px;
	    height: 1870px;
	    margin-top: 32px;
	}
	.step-block.one {
	    left: 20%;
	}
	.step-block.two{
		left: 20%;
		top: 11%;
    	right: unset;
	}
	.step-block.three{
		left: 20%;
		top: 23%;
    	right: unset;
	}
	.step-block.four{
		left: 20%;
		top: 34%;
    	right: unset;
	}
	.step-block.five{
		left: 20%;
		top: 45%;
    	right: unset;
	}
	.step-block.six{
		left: 20%;
		top: unset;
    	right: unset;
    	bottom: 36%;
	}
	.step-block.seven{
		left: 20%;
		top: unset;
    	right: unset;
    	bottom: 25%;
	}
	.step-block.eight{
		left: 20%;
		top: unset;
    	right: unset;
    	bottom: 14%;
	}
	.step-block.nine{
		left: 20%;
		top: unset;
    	right: unset;
    	bottom: 0;
	}
	.sixth-screen-wrapp{
		padding-top: 30px;
    	padding-bottom: 48px;
	}
	.seventh-screen-content .categories-questions ul{
		flex-direction: column;
	}
	.seventh-screen-content .categories-questions ul li{
		width: 100%;
    	text-align: left;
	}
	.seventh-screen-content .categories-questions ul li a{
		display: inline-block;
		font-size: 26px;
		padding: 20px 16px;
	}
	.seventh-screen-content .categories-questions ul li a.active{
		padding: 20px 16px;
	}
	.seventh-screen-content .questions-list{
		margin-left: 0;
		max-width: 320px;
		font-size: 20px;
	}
	.seventh-screen-content .questions-list ul .question-block{
		padding: 19px 0px;
	}
	.seventh-screen-wrapp{
		padding-bottom: 32px;
	}
	.eighth-screen-wrapp{
		padding-top: 22px;
	}
	.eighth-screen-wrapp .eighth-screen-content .reviews-text{
		padding-left: 16px;
	}
	.eighth-screen-content .reviews-text p{
		font-size: 16px;
		line-height: 18px;
	}
	.nine-screen-contacts .subtitle-contacts{
		font-size: 16px;
		margin-top: 5px;
	}
	.nine-screen-wrapp .nine-screen-top .nine-screen-contacts{
		max-width: 100%;
		padding: 20px 10px 28px;
	}
	.nine-screen-contacts .text-contacts{
		padding-top: 30px;
	}
	.nine-screen-wrapp .nine-screen-top .block-contacts{
		width: 90%;
	}
	.nine-screen-contacts .text-contacts p{
		font-size: 20px;
		margin-top: 5px;
	}
	.nine-screen-contacts .text-contacts a{
		font-size: 22px;
	}
	.nine-screen-contacts .social-contacts{
		padding-top: 16px;
	}
	.nine-screen-wrapp .nine-screen-top{
		height: 980px;
	}
	.nine-screen-wrapp .nine-screen-bottom .nine-bottom-content{
		padding: 0 8px;
	}
	.nine-screen-wrapp .nine-screen-bottom .nine-bottom-title{
		font-size: 28px;
		margin-top: 5px;
	}
	.nine-screen-wrapp .nine-screen-bottom .nine-bottom-subtitle{
		font-size: 16px;
		margin-top: 12px;
	}
	.nine-screen-bottom .nine-bottom-form input[type=submit]{
		padding: 18px 26px 20px;
		margin-top: 15px;
		font-size: 20px;
	}
}