/*BEGIN .cursor*/
@media (min-width: 1251px){
	*.ce, *.ce *{
		cursor: none !important;
	}
	.cursor{
		z-index: 2000;
		position: fixed;
		width: 8px;
		height: 8px;
		background: #ec6304;
		
		-webkit-border-radius: 100%;
		border-radius: 100%;
		
		-webkit-transform: scale(1);
		transform: scale(1);
		
		-webkit-transition: transform 0.3s cubic-bezier(.75,-1.27,.3,2.33), opacity 0.3s cubic-bezier(.75,-1.27,.3,2.33);
		transition: transform 0.3s cubic-bezier(.75,-1.27,.3,2.33), opacity 0.3s cubic-bezier(.75,-1.27,.3,2.33);
		
		-webkit-user-select: none;
		-khtml-user-select: none;
		-moz-user-select: none;
		-o-user-select: none;
		
		pointer-events: none;
	}
	.cursor.active{
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	.cursor_follower{
		z-index: 2000;
		position:fixed;
		width: 40px;
		height: 40px;
		background: rgba(236,99,4,0.1);
		border: 1px solid #ec6304;
		
		-webkit-border-radius: 100%;
		border-radius: 100%;
		
		-webkit-transition: transform 0.4s cubic-bezier(.75,-1.27,.3,2.33), opacity 0.2s cubic-bezier(.75,-.27,.3,1.33);
		transition: transform 0.4s cubic-bezier(.75,-1.27,.3,2.33), opacity 0.2s cubic-bezier(.75,-.27,.3,1.33);
		
		-webkit-user-select: none;
		-khtml-user-select: none;
		-moz-user-select: none;
		-o-user-select: none;
		
		pointer-events: none;
	}
	.cursor_follower.active{
		-webkit-transform: scale(1.35);
		transform: scale(1.35);
	}
	.cursor.out,
	.cursor_follower.out{
		opacity: 0;
	}
	.cursor.start_out,
	.cursor_follower.start_out{
		opacity: 0;
	}
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){
    *.ce.interactive_element {
		cursor: pointer !important;
	}
}

@media (max-width: 1250px){
	.cursor, .cursor_follower{
		display: none;
	}
}
/*END .cursor*/

/*BEGIN #preloader*/
#preloader{
	z-index: 100;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: #fff;
}
.preloader_inner{
	position: absolute;
	top: 50%;
	left: 50%;
	height: 14px;
	width: 66px;
	opacity: 0;
	
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	
	-webkit-transform: translate(-90px, -7px);
	transform: translate(-33px, -7px);
	
	-webkit-animation: preloader_el_fade_in 1s 1s ease-in-out 1 forwards;
	animation: preloader_el_fade_in 1s 1s ease-in-out 1 forwards;
}
.preloader_element{
	float: left;
	width: 14px;
	height: 14px;
	margin: 0 4px;
	background: #181d2d;
   
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.preloader_element_1{
	-webkit-animation: preloader_el_move 1s ease-in-out infinite;
	animation: preloader_el_move 1s ease-in-out infinite;
}
.preloader_element_2{
	-webkit-animation: preloader_el_fade_in 1s ease-in-out infinite;
	animation: preloader_el_fade_in 1s ease-in-out infinite;
}
.preloader_element_3{
	-webkit-animation: preloader_el_move 1s ease-in-out infinite;
	animation: preloader_el_move 1s ease-in-out infinite;
}

.preloader_element_2{
	margin-left: -18px;
	opacity: 0;
}
.preloader_element_4{
	opacity: 1;
	
	-webkit-animation: preloader_el_fade_out 1s ease-in-out infinite;
	animation: preloader_el_fade_out 1s ease-in-out infinite;
}

@-webkit-keyframes preloader_el_move{
	0%{
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	100%{
		-webkit-transform: translateX(22px);
		transform: translateX(22px);
	}
}
@keyframes preloader_el_move{
	0%{
		transform: translateX(0);
	}
	100%{
		transform: translateX(22px);
	}
}

@-webkit-keyframes preloader_el_fade_in{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}
@keyframes preloader_el_fade_in{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}
  
@-webkit-keyframes preloader_el_fade_out{
	0%{
		opacity: 1;
	}
	100%{
		opacity: 0;
	}
}
@keyframes preloader_el_fade_out{
	0%{
		opacity: 1;
	}
	100%{
		opacity: 0;
	}
}
/*END #preloader*/

/*BEGIN FONTS*/
@font-face{
	font-family: "Apercu-Pro-Light";
	src: url("../fonts/Apercu-Pro-Light.eot");
	src: local("☺"), url("../fonts/Apercu-Pro-Light.woff") format("woff"),
	url("../fonts/Apercu-Pro-Light.ttf") format("truetype"),
	url("../fonts/Apercu-Pro-Light.svg") format("svg");
	font-weight: normal;
	font-style: normal;
}
@font-face{
	font-family: "Apercu-Pro-Bold";
	src: url("../fonts/Apercu-Pro-Bold.eot");
	src: local("☺"), url("../fonts/Apercu-Pro-Bold.woff") format("woff"),
	url("../fonts/Apercu-Pro-Bold.ttf") format("truetype"), 
	url("../fonts/Apercu-Pro-Bold.svg") format("svg");
	font-weight: normal;
	font-style: normal;
}
/*END FONTS*/

/*BEGIN GENERAL SETTINGS*/
*{
	-webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
}
p, a, span, td, h1, h2, h3, input, li, textarea{
	-webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -o-user-select: text;
}
*::after, *::before{
	-webkit-user-select: none !important;
    -khtml-user-select: none !important;
    -moz-user-select: -moz-none !important;
    -o-user-select: none !important;
}
p::-moz-selection { color: #fff;  background: #181d2d; }
p::-moz-selection { color: #fff;  background: #181d2d; }
p::selection      { color: #fff;  background: #181d2d; }
a::-moz-selection { color: #fff;  background: #181d2d; }
a::selection      { color: #fff;  background: #181d2d; }
li::-moz-selection { color: #fff;  background: #181d2d; }
li::selection      { color: #fff;  background: #181d2d; }
span::-moz-selection { color: #fff;  background: #181d2d; }
span::selection      { color: #fff;  background: #181d2d; }
h1::-moz-selection { color: #fff;  background: #181d2d; }
h1::selection      { color: #fff;  background: #181d2d; }
h2::-moz-selection { color: #fff;  background: #181d2d; }
h2::selection      { color: #fff;  background: #181d2d; }
h3::-moz-selection { color: #fff;  background: #181d2d; }
h3::selection      { color: #fff;  background: #181d2d; }
h3::-moz-selection { color: #fff;  background: #181d2d; }
h3::selection      { color: #fff;  background: #181d2d; }
td::-moz-selection { color: #fff;  background: #181d2d; }
td::selection      { color: #fff;  background: #181d2d; }
input::-moz-selection { color: #000 !important;  background: #181d2d; }
input::selection      { color: #000 !important;  background: #181d2d; }
textarea::-moz-selection { color: #000 !important;  background: #181d2d; }
textarea::selection      { color: #000 !important;  background: #181d2d; }

::-webkit-input-placeholder{color: #7e858d;}
::-moz-placeholder{color: #7e858d;}
:-ms-input-placeholder{color: #7e858d;} 
:-o-input-placeholder{color: #7e858d;} 

html, body{
	overflow-x: hidden;
}
html{
	font-size: 10px;
}
body{
	position: relative;
	font-family: "Apercu-Pro-Light";
	font-size: 1em;
	color: #333238;
}
textarea{
	-webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
	vertical-align: top;
}
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="search"],
input[type="button"],
input[type="submit"],
input[type="tel"],
select{
    -webkit-appearance: none !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
}
p, h1, h2, h3, h4, sup{
	cursor: default;
}
a{
	text-decoration: none !important;
	outline: none !important;
	color: inherit;
}
a:hover, a:focus{
	color: inherit;
}
button{
	outline: none !important;
}
.clear{
	clear: both;
}
.nowrap{
	white-space: nowrap;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){
	*{
		background-attachment: scroll !important;
	}
}

@supports (-ms-ime-align:auto){
	*{
		background-attachment: scroll !important;
	}
}

@media (min-width: 2561px), (max-width: 1250px), (min-height: 1301px){
	*{
		background-attachment: scroll !important;
	}
}

@media (min-width: 1251px){
	body::-webkit-scrollbar{
		width: 10px;
	}
	body::-webkit-scrollbar-track{
		background: #efefef;
	}
	body::-webkit-scrollbar-thumb{
	   background: #ec6304; 
	}
}

@media (min-width: 1191px){
	.container{
		width: 1170px;
	}
}

@media (max-width: 1190px){
	.container{
		width: 100%;
	}
}
/*END GENERAL SETTINGS*/

/*BEGIN GENERAL ELEMENTS*/
.screen_relative{
	position: relative;
}
.screen_inner{
	z-index: 1;
	position: relative;
}
.full_screen{
	height: 100vh;
	min-height: 530px;
}
.middle_element{
	position: absolute;
	top: 50%;
	left: 50%;
	
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.full_width_img{
	display: block;
	width: 100%;
	height: auto;
}
.align_center{
	text-align: center;
}
.animated_element.fade_in_simple{
	-webkit-transition: opacity 0.9s ease;
	transition: opacity 0.9s ease;
}
.animated_element.fade_in_simple.prepare{
	opacity: 0;
	
	-webkit-transition: all 0s;
	transition: all 0s;
}
.animated_element.fade_in_from_top,
.animated_element.fade_in_from_bottom,
.animated_element.fade_in_from_left,
.animated_element.fade_in_from_right{
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	
	-webkit-transition: opacity 0.9s ease, transform 0.9s ease;
	transition: opacity 0.9s ease, transform 0.9s ease;
}
.animated_element.fade_in_from_top.prepare{
	opacity: 0;
	
	-webkit-transform: translateY(-70px);
	transform: translateY(-70px);
	
	-webkit-transition: all 0s;
	transition: all 0s;
}
.animated_element.fade_in_from_bottom.prepare{
	opacity: 0;
	
	-webkit-transform: translateY(70px);
	transform: translateY(70px);
	
	-webkit-transition: all 0s;
	transition: all 0s;
}
.animated_element.fade_in_from_left.prepare{
	opacity: 0;
	
	-webkit-transform: translate(-70px, 0);
	transform: translate(-70px, 0);
	
	-webkit-transition: all 0s;
	transition: all 0s;
}
.animated_element.fade_in_from_right.prepare{
	opacity: 0;
	
	-webkit-transform: translate(70px, 0);
	transform: translate(70px, 0);
	
	-webkit-transition: all 0s;
	transition: all 0s;
}
.animated_element.fade_in_from_scale{
	-webkit-transform: scale(1);
	transform: scale(1);
	
	-webkit-transition: opacity 0.9s ease, transform 0.9s ease;
	transition: opacity 0.9s ease, transform 0.9s ease;
}
.animated_element.fade_in_from_scale.prepare{
	opacity: 0;
	
	-webkit-transform: scale(0);
	transform: scale(0);
	
	-webkit-transition: all 0s;
	transition: all 0s;
}
.color_orange{
	color: #ec6304;
}
.color_yellow{
	color: #f59a00;
}
.color_white{
	color: #fff;
}
.text_bold{
	font-family: "Apercu-Pro-Bold";
}
.oe, .navigation_btn{
	cursor: pointer;
}
.title_type_1{
	font-family: "Apercu-Pro-Bold";
	font-size: 6rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	line-height: 1.5em;
}
.title_type_1 .border_span{
	border-bottom: 0.08em solid #ec6304; 
}
.title_type_2{
	margin: 0 0 40px 0;
	font-family: "Apercu-Pro-Bold";
	font-size: 3.6rem;
	line-height: 1.4em;
}
.title_type_3{
	font-family: "Apercu-Pro-Bold";
	font-size: 4.8rem;
	line-height: 1.4em;
}
.text_type_1{
	font-size: 2.4rem;
	letter-spacing: 0.02em;
	line-height: 1.5em;
}
.text_type_2{
	font-family: "Apercu-Pro-Bold";
    font-size: 1.4rem;
    text-transform: uppercase;
    line-height: 1.5em;
    letter-spacing: 0.14em;
}
.text_type_3{
	font-size: 1.6rem;
	letter-spacing: 0.02em;
	line-height: 1.5em;
}
ol.text_type_3{
	counter-reset: counter_1;
}
ol.text_type_3 li{
	position: relative;
	margin-bottom: 35px;
	list-style: none;
}
ol.text_type_3 li::before{
	counter-increment: counter_1;
	content: counter(counter_1);
	position: absolute;
	top: 0;
	left: -38px;
	
	font-family: "Apercu-Pro-Bold";
	font-size: 2.4rem;
	color: #ec6304;
}
.text_type_4{
	font-size: 1.4rem;
	letter-spacing: 0.02em;
	line-height: 1.5em;
}
.title_type_2_block .text_type_2{
	margin-bottom: 18px;
}
.mb_0{
	margin-bottom: 0;
}
.mb_15{
	margin-bottom: 15px;
}
.mb_40{
	margin-bottom: 40px;
}
.mb_50{
	margin-bottom: 50px;
}
.pl_70{
	padding-left: 70px;
}
.pl_110{
	padding-left: 110px;
}
.content_img_device{
	display: none;
}
.grey_block_type_1{
	position: absolute;
	left: 210px;
	width: 100%;
	max-width: 880px;
	background: rgba(51,50,56,0.8);
	padding: 60px 100px;
	
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	
	-webkit-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.grey_block_type_1::after{
	content: "";
	position: absolute;
	bottom: -25px;
	left: -25px;
	width: 50px;
	height: 50px;
	border: 4px solid #ec6304;
}
.grey_block_type_1.two_elements .part{
	width: 50%;
}
.orange_line_el{
	position: relative;
}
.orange_line_el::before{
	content: "";
    position: absolute;
    top: 50%;
    left: -70px;
    width: 50px;
    height: 4px;
    background: #ec6304;
	
	-webkit-transform: translateY(-3px);
	transform: translateY(-3px);
}
.orange_line_el.ol_top_12::before{
	top: 12px;
	
	-webkit-transform: none;
	transform: none;
}
.decor_tape_type_1{
	z-index: -2;
	position: absolute;
	top: 160px;
	right: 0;
	width: 50%;
	height: 120px;
	background: #fcf9f8;
}
.small_img_block{
	position: absolute;
	top: 93px;
	right: 15px;
	width: 50%;
	height: 187px;
}
.small_img_block img{
	display: block;
	margin: auto;
}
.big_container_block{
	width: calc(100% + 30px);
	margin-left: -15px;
}
.stamp{
	display: block;
	margin: auto;
	width: 141px;
	height: 141px;
}
.big_orange_btn{
	position: relative;
	width: 100%;
	max-width: 360px;
	height: 60px;
	padding: 0 15px;
	background: #ec6304;
	
	font-family: "Apercu-Pro-Bold";
	color: #fff;
    font-size: 1.2rem;
    text-transform: uppercase;
    line-height: 60px;
    letter-spacing: 0.14em;
	text-align: center;
}

@media (min-width: 1251px){
	.oe{
		-webkit-transition: opacity 0.3s ease-in-out;
		transition: opacity 0.3s ease-in-out;
	}
	.oe:hover{
		opacity: 0.7;
	}
}

@media (max-width: 1190px){
	.pl_70,
	.pl_110{
		padding-left: 0;
	}
	.title_type_2_block .text_type_2{
		margin-left: 70px;
	}
	ol.text_type_3{
		padding-left: 30px;
	}
	ol.text_type_3 li{
		margin-bottom: 25px;
	}
	ol.text_type_3 li::before{
		left: -30px;
	}
	ol.text_type_3 li:last-child{
		margin-bottom: 0;
	}
	.content_img_desktop{
		display: none;
	}
	.content_img_device{
		display: block;
		width: 100%;
		height: auto;
	}
	.grey_block_type_1{
		position: relative;
		display: block;
		top: 0 !important;
		left: 0 !important;
		max-width: 100%;
		padding: 50px 30px 50px 90px;
		background: rgba(51,50,56,1);
	}
	.grey_block_type_1.animated_element.fade_in_from_bottom.prepare{
		opacity: 1;
		
		-webkit-transform: none;
		transform: none;
	}
	.grey_block_type_1::after{
		display: none;
	}
	.grey_block_type_1.two_elements .part{
		width: 100%;
	}
	.grey_block_type_1 .part p{
		margin-bottom: 25px;
	}
	.grey_block_type_1 .part:last-child p:last-child{
		margin-bottom: 0;
	}
	.decor_tape_type_1{
		display: none;
	}
	.small_img_block{
		display: none;
	}
	.big_container_block{
		width: 100%;
		margin-left: 0;
	}
}

@media (max-width: 767px){
	.title_type_1{
		font-size: 3.6rem;
		letter-spacing: 0.02em;
	}
	.title_type_2{
		margin-bottom: 30px;
		font-size: 2.4rem;
	}
	.title_type_3{
		font-size: 3.6rem;
	}
	.text_type_1{
		font-size: 1.6rem;
	}
	.title_type_2_block .text_type_2{
		margin-bottom: 25px;
	}
	*.mb_0{
		margin-bottom: 0;
	}
	.mb_50.d_mb_40{
		margin-bottom: 40px;
	}
	.big_orange_btn{
		height: 50px;
		line-height: 50px;
	}
}
/*END GENERAL ELEMENTS*/

/*BEGIN #top_menu*/
#top_menu{
	z-index: 10;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 70px;
	background: #181d2d;
}
#top_menu .top_menu_inner{
	z-index: 1;
	position: relative;
	max-width: 1170px;
	height: 70px;
	margin: auto;
	background: #181d2d;
}
#top_menu .main_logo{
	position: absolute;
	top: 12px;
	left: 15px;
	width: 180px;
	height: 44px;
}
#top_menu #sandwich, #top_menu #sandwich *{
	cursor: pointer;
}
#top_menu #sandwich{
	z-index: 2;
	position: absolute;
	top: 20px;
	right: 10px;
	display: block;
	padding: 5px;
}
#top_menu #sandwich::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#top_menu #sandwich .inner{
	position: relative;
	width: 30px;
	height: 20px;
}
#top_menu #sandwich .inner div{
	position: absolute;
	left: 0;
	width: 30px;
	height: 2px;
	background: #fff;
}
#top_menu #sandwich .inner div:nth-child(1){
	top: 0;
	
	-webkit-transition: top 0.2s 0.2s ease, transform 0.2s ease, background 0.4s ease;
	transition: top 0.2s 0.2s ease, transform 0.2s ease, background 0.4s ease;
}
#top_menu #sandwich .inner div:nth-child(2){
	top: 9px;
	
	-webkit-transition: opacity 0.2s 0.2s ease;
	transition: opacity 0.2s 0.2s ease;
}
#top_menu #sandwich .inner div:nth-child(3){
	bottom: 0;
	
	-webkit-transition: bottom 0.2s 0.2s ease, transform 0.2s ease, background 0.4s ease;
	transition: bottom 0.2s 0.2s ease, transform 0.2s ease, background 0.4s ease;
}
#top_menu.active #sandwich .inner div{
	background: #fff;
}
#top_menu.active #sandwich .inner div:nth-child(1){
	top: 9px;
	
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	
	-webkit-transition: top 0.2s ease, transform 0.2s 0.2s ease, background 0.4s ease;
	transition: top 0.2s ease, transform 0.2s 0.2s ease, background 0.4s ease;
}
#top_menu.active #sandwich .inner div:nth-child(2){
	opacity: 0;
	
	-webkit-transition: opacity 0.2s cubic-bezier(0.76,0.16,0.33,0.95, background 0.4s ease);
	transition: opacity 0.2s ease, background 0.4s ease;
}
#top_menu.active #sandwich .inner div:nth-child(3){
	bottom: 9px; 
	
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	
	-webkit-transition: bottom 0.2s ease, transform 0.2s 0.2s ease, background 0.4s ease;
	transition: bottom 0.2s ease, transform 0.2s 0.2s ease, background 0.4s ease;
}
#top_menu .top_inner_elements{
	position: absolute;
	top: 20px;
	right: 95px;
	height: 30px;
	
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	
	-webkit-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
#top_menu .top_inner_elements > *{
	margin-left: 20px;
	display: inline-block;
	
	font-size: 1.4rem;
	color: #fff;
	line-height: 30px;
	letter-spacing: 0.02em;
}
#top_menu .menu_nav{
	z-index: 0;
	position: absolute;
	top: 0;
	right: -50%;
	width: 50%;
	height: 100vh;
	height: calc(100vh + 50px);
	padding-top: 120px;
	padding-bottom: 100px;
	background: #181d2d;
	overflow-y: auto;
	
	-webkit-transition: right 0.6s ease;
	transition: right 0.6s ease;
}
#top_menu.active .menu_nav::-webkit-scrollbar{
	width: 4px;
}
#top_menu.active .menu_nav::-webkit-scrollbar-track{
	background: #181d2d;
}
#top_menu.active .menu_nav::-webkit-scrollbar-thumb{
   background: #ec6304; 
}
#top_menu.active .menu_nav{
	right: 0;
}
#top_menu .menu_nav .nav_link{
	display: block;
    
	font-family: "Apercu-Pro-Bold";
	font-size: 1.4rem;
	text-transform: uppercase;
    color: #fff;
	line-height: 60px;
	letter-spacing: 0.14em;
}
#top_menu .menu_nav .nav_link *{
	position: relative;
	display: inline-block;
	padding-left: 100px;
}

@media (min-width: 1251px){
	#top_menu .menu_nav .nav_link *{
		-webkit-transition: color 0.3s ease-in-out;
		transition: color 0.3s ease-in-out;
	}
	#top_menu .menu_nav .nav_link *::before{
		content: "";
		position: absolute;
		top: 28px;
		left: 0;
		width: 0;
		height: 4px;
		background: #ec6304;
		
		-webkit-transition: width 0.3s ease-in-out;
		transition: width 0.3s ease-in-out;
	}
	#top_menu .menu_nav .nav_link *:hover{
		color: #ec6304;
	}
	#top_menu .menu_nav .nav_link *:hover::before{
		width: 50px;
	}
}

@media (min-width: 768px){
	#top_menu .menu_nav .nav_link a{
		display: none;
	}
}

@media (max-width: 991px){
	#top_menu,
	#top_menu .top_menu_inner{
		height: 50px;
	}
	#top_menu .main_logo{
		top: 7px;
		left: 15px;
		width: 146px;
		height: 36px;
	}
	#top_menu #sandwich{
		top: 10px;
	}
	#top_menu .top_inner_elements{
		top: 10px;
	}
}

@media (max-width: 767px){
	#top_menu .top_inner_elements{
		display: none;
	}
	#top_menu .menu_nav{
		right: -100%;
		width: 100%;
		padding-top: 100px;
		padding-left: 30px;
	}
	#top_menu .menu_nav .nav_link{
		line-height: 50px;
	}
	#top_menu .menu_nav .nav_link *{
		padding-left: 0;
	}
}
/*END #top_menu*/

/*BEGIN FORM SETTINGS*/
.form_simple{
	max-width: 360px;
}
.field_checkout{
	display: none;
}
.field_wrapper{
	position: relative;
	width: 100%;
	margin-bottom: 25px;
}
.field_wrapper .field{
	width: 100%;
	height: 50px;
	line-height: 48px;
	padding: 0 10px;
	background: #333238;
	outline: none !important;
	border: 1px solid #fff;
	
	font-size: 1.6rem;
	color: #fff;
	letter-spacing: 0.02em;
	
	-webkit-transition: 0.3s ease;
	transition: 0.3s ease;
	
	-webkit-transition: border-color 0.1s ease-in-out, color 0.1s ease-in-out;
	transition: border-color 0.1s ease-in-out, color 0.1s ease-in-out;
}
.field_wrapper select.field{
	background: url(../img/general/tick.svg) no-repeat 96% 20px / 14px 12px;
}
.field_wrapper .field option{
	color: #333238;
}
.form_go, .form_go *{
	-webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
	cursor: pointer;
}
.form_go{
	position: relative;
}
.form_go::after{
	content: "";
	position: absolute;
	top: 50%;
	right: 40px;
	width: 25px;
	height: 14px;
	margin-top: -7px;
	background: url(../img/general/form_go_arrow.svg) no-repeat 50% 50% / 100% 100%;
}
.field_wrapper .alarm{
	position: absolute;
	opacity: 0;
	margin: 0;
	bottom: -20px;
	right: 0;
	
	font-size: 1.4rem;
	color: #ec6304;
	letter-spacing: 0.01em;
	
	-webkit-transition: opacity 0.1s ease-in-out;
	transition: opacity 0.1s ease-in-out;
}
.field_wrapper.warning .field{
	border-color: #ec6304;
	color: #ec6304;
}
.field_wrapper.warning .alarm{
	opacity: 1;
}

@media (max-width: 767px){
	.form_go::after{
		display: none;
	}
}
/*END FORM SETTINGS*/

/*BEGIN #thanx_popup*/
#thanx_popup{
	z-index: 201;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	height: calc(100vh + 1px);
	display: none;
}
#thanx_popup_cover{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
	
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
#thanx_popup_inner{
	position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 30px);
    max-width: 880px;
	height: auto;
	max-height: calc(100vh - 70px);
    margin: auto;
	background: #fff;
	padding: 60px 15px;
	
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
#thanx_popup_close{
    position: absolute;
    top: -45px;
    right: -5px;
    width: 40px;
    height: 40px;
    padding: 5px;
	background: url(../img/general/close_white.svg) no-repeat 50% 50% / 30px 30px;
    cursor: pointer;
	
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
#thanx_popup_info{
	text-align: center;
}
#thanx_popup_info p:nth-child(1){
	font-family: "Apercu-Pro-Bold";
	font-size: 4.8rem;
	color: #ec6304;
	text-transform: uppercase;
	letter-spacing: 0.006em;
}
#thanx_popup_info p:nth-child(2), #thanx_popup_info p:nth-child(3){
	font-size: 2.56rem;
	letter-spacing: 0.02em;
}

@media (max-width: 767px){
	#thanx_popup_info p:nth-child(1){
		font-size: 3.6rem;
	}
	#thanx_popup_info p:nth-child(2), #thanx_popup_info p:nth-child(3){
		font-size: 2.3rem;
	}
}

@media (max-height: 400px){
	#thanx_popup_inner{
		padding: 15px;
	}
}
/*END #thanx_popup*/

/*BEGIN #vertical_line_block*/
#vertical_line_block{
	z-index: -1;
	position: absolute;
	top: 0;
	left: 50%;
	width: 1170px;
	height: 100%;
	
	-webkit-transform: translateX(-585px);
	transform: translateX(-585px);
}
#vertical_line_block div{
	position: absolute;
	top: 0;
	left: 50%;
	width: 1px;
	height: 100%;
	background: rgba(236,99,4,0.2);
}
#vertical_line_block div:nth-child(2){
	-webkit-transform: translateX(570px);
	transform: translateX(570px);
}
#vertical_line_block div:nth-child(3){
	-webkit-transform: translateX(-570px);
	transform: translateX(-570px);
}

@media (max-width: 1190px){
	#vertical_line_block{
		display: none;
	}
}
/*END #vertical_line_block*/

/*BEGIN #top_figures_block*/
#top_figures_block{
	z-index: 1;
	position: absolute;
	top: 50vh;
	left: 50%;

	width: 80vh;
	height: 80vh;
	max-width: 640px;
	max-height: 640px;
	margin-top: 35px;
	
	-webkit-transform: translate3d(-50%, -50%, 0);
	transform: translate3d(-50%, -50%, 0);
}
#top_figures_block > div{
	position: absolute;
	top: 8%;
	left: 8%;
	width: 84%;
	height: 84%;
}
#top_figures_block > div div{
	position: absolute;
	width: 50%;
	height: 50%;
	background: rgba(236,99,4,0.1);
}
#top_figures_block > div div:nth-child(1){
	top: 0;
	left: 0;
}
#top_figures_block > div div:nth-child(2){
	top: 50%;
	left: 50%;
}

@media (max-width: 991px){
	#top_figures_block{
		margin-top: 25px;
	}
}

@media (max-width: 767px){
	#top_figures_block{
		width: 80vw;
		height: 80vw;
	}
}
/*END #top_figures_block*/

/*BEGIN .big_figures_block*/
.big_figures_block{
	z-index: 1;
	position: fixed;
	top: 50%;
	left: 50%;

	width: 80vh;
	height: 80vh;
	max-width: 640px;
	max-height: 640px;
	margin-top: 35px;
	
	-webkit-transform: translate3d(-50%, -50%, 0);
	transform: translate3d(-50%, -50%, 0);
}
.big_figures_block div{
	border: 1px solid rgba(236,99,4,0.2);
}
.big_figures_block div:nth-child(1){
	width: 100%;
	height: 100%;
	
	-webkit-border-radius: 100%;
	border-radius: 100%;
}
.big_figures_block div:nth-child(2){
	position: absolute;
	top: 8%;
	left: 8%;
	width: 84%;
	height: 84%;
}

@media (max-width: 991px){
	.big_figures_block{
		margin-top: 25px;
	}
}

@media (max-width: 767px){
	.big_figures_block{
		display: none;
	}
}
/*END #big_figures_block*/

/*BEGIN #screen_1*/
#screen_1{
	position: relative;
	background: url(../img/content/screen_1_bg.jpg) no-repeat 50% 0 / cover fixed;
}
#screen_1::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.15);
}
#screen_1 .middle_element{
	width: 100%;
	padding: 0 15px;
}
#screen_1 .middle_element .text_type_2{
	position: absolute;
	top: -35px;
	left: 15px;
}
#screen_1 .middle_element .text_type_1{
	position: absolute;
	top: 94px;
	left: 588px;
}
#screen_1 .screen_inner .navigation_btn{
	position: absolute;
	bottom: 50px;
	left: 50%;
	width: 180px;
	height: 56px;
	margin-left: -90px;
	border-bottom: 4px solid #ec6304;
	
}
#screen_1 .screen_inner .navigation_btn .text_type_2{
	line-height: 56px;
	pointer-events: none;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){
	#screen_1{
		background-position: 50% 0 !important;
	}
}

@supports (-ms-ime-align:auto){
	#screen_1{
		background-position: 50% 0 !important;
	}
}

@media (max-width: 1250px){
	#screen_1{
		background-position: 50% 50% !important;
	}
}

@media (max-width: 991px){
	#screen_1 .middle_element{
		padding: 0 30px;
	}
	#screen_1 .middle_element .text_type_2,
	#screen_1 .middle_element .text_type_1{
		position: static;
	}
	#screen_1 h1{
		margin: 0 0 30px 0;
	}
	#screen_1 .animated_element.fade_in_from_left.prepare{
		-webkit-transform: translateY(70px);
		transform: translateY(70px);
	}
}

@media (max-width: 767px){
	#screen_1::after{
		display: none;
	}
	#screen_1 .middle_element{
		margin-top: -30px;
		padding: 0 15px;
	}
	#screen_1 h1{
		margin: 0 0 25px 0;
	}
}
/*END #screen_1*/

/*BEGIN #screen_2*/
#screen_2 .screen_inner{
	height: 1361px;
	padding-top: 40px;
}
#screen_2 .decor_blue_block{
	position: absolute;
	top: 0;
	width: calc(50% - 40vh - 30px);
	min-width: 235px;
	height: 40px;
	background: #181d2d;
}
#screen_2 .decor_blue_block:nth-child(1){
	left: 15px;
}
#screen_2 .decor_blue_block:nth-child(2){
	right: 15px;
}
#screen_2 .screen_inner > .text_type_1:nth-child(5){
	position: absolute;
	top: 285px;
	left: 50%;
}
#screen_2 .screen_inner > .text_type_3:nth-child(6){
	position: absolute;
	top: 540px;
	left: 50%;
}
#screen_2 .screen_inner .grey_block_type_1{
	top: 1020px;
}

@media (max-width: 1190px){
	#screen_2 .decor_blue_block{
		display: none;
	}
	#screen_2 .screen_inner{
		height: auto;
	}
	#screen_2 .stamp{
		margin-bottom: 50px;
	}
	#screen_2 .screen_inner > .text_type_1:nth-child(5),
	#screen_2 .screen_inner > .text_type_3:nth-child(6){
		position: static;
	}
	#screen_2 .screen_inner br:not(.br_i){
		display: none;
	}
}
/*END #screen_2*/

/*BEGIN #screen_3*/
#screen_3 .screen_inner{
	padding-top: 100px;
}
#screen_3 .screen_inner .cost_block.big_container_block{
	position: relative;
	height: 375px;
	background: url(../img/content/cost_block_bg.png) no-repeat 0 0 / 100% 100%;
	padding: 60px 0 0 15px;
	
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	
	-webkit-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
}
#screen_3 .screen_inner .cost_block.big_container_block .part{
	width: 24%;
	padding-right: 15px;
}
#screen_3 .screen_inner .cost_block.big_container_block .part:nth-child(6){
	width: 25%;
	padding-right: 0;
}
#screen_3 .screen_inner .cost_block.big_container_block > .text_type_2{
	position: absolute;
	bottom: -45px;
}
#screen_3 .screen_inner .cost_block.big_container_block > .text_type_2.color_yellow{
	left: 300px;
}
#screen_3 .screen_inner .cost_block.big_container_block > .text_type_2.color_orange{
	left: 875px;
}
#screen_3 .parallax_bg_block{
	position: relative;
	height: 320px;
	margin-top: 200px;
	background: url(../img/content/parallax_bg_block_1.jpg) no-repeat 50% 50% / cover fixed;
}
#screen_3 .parallax_bg_block::before{
	content: "";
	position: absolute;
	top: -70px;
	left: 50%;
    width: 141px;
    height: 141px;
	background: url(../img/content/stamp.png) no-repeat 50% 50% / 100% 100%;
	
	-webkit-transform: translateX(-70px);
	transform: translateX(-70px);
}
#screen_3 .parallax_bg_block::after{
    content: "";
    position: absolute;
    top: -25px;
    left: 15px;
    width: 50px;
    height: 50px;
    border: 4px solid #ec6304;
}

@media (max-width: 1190px){
	#screen_3 .screen_inner .title_type_2 br{
		display: none;
	}
	#screen_3 .screen_inner .cost_block.big_container_block{
		display: block;
		height: auto;
		background: rgba(236,99,4,0.1);
		padding: 30px 30px 40px 30px;
	}
	#screen_3 .screen_inner .cost_block.big_container_block .part,
	#screen_3 .screen_inner .cost_block.big_container_block .part:nth-child(6){
		width: 100%;
		padding-right: 0;
	}
	#screen_3 .screen_inner .cost_block.big_container_block .part{
		margin-bottom: 30px;
	}
	#screen_3 .screen_inner .cost_block.big_container_block .part:nth-child(6){
		margin-bottom: 0;
	}
	#screen_3 .screen_inner .cost_block.big_container_block .part br{
		display: none;
	}
	#screen_3 .screen_inner .cost_block.big_container_block > .text_type_2{
		position: static;
		margin-bottom: 20px;
	}
	#screen_3 .screen_inner .cost_block.big_container_block > .text_type_2.color_yellow{
		margin-top: 15px;
	}
	#screen_3 .screen_inner .cost_block.big_container_block > .text_type_2.color_orange{
		margin-top: 50px;
	}
	#screen_3 .parallax_bg_block{
		margin-top: 140px;
	}
}

@media (max-width: 767px){
	#screen_3 .screen_inner{
		padding-top: 60px;
	}
	#screen_3 .screen_inner .cost_block.big_container_block .part .text_type_1{
		margin-top: 5px;
	}
	#screen_3 .parallax_bg_block{
		height: 270px;
		margin-top: 105px;
	}
	#screen_3 .parallax_bg_block::after{
		display: none;
	}
}
/*END #screen_3*/

/*BEGIN #screen_4*/
#screen_4{
	height: 1260px;
	background: url(../img/content/screen_4_bg.png) no-repeat 50% 0;
}
#screen_4 .screen_inner{
	padding-top: 85px;
}
#screen_4 .approach_block{
	position: absolute;
	top: 80px;
	left: 50%;
	padding: 0 15px 0 110px;
}
#screen_4 .approach_block .part{
	margin-bottom: 40px;
}
#screen_4 .approach_block .num{
	font-family: "Apercu-Pro-Bold";
	font-size: 7.2rem;
}
#screen_4 .approach_block .stick{
	margin-right: 25px;
}
#screen_4 .approach_block .decor_line{
	width: 100%;
	max-width: 390px;
	height: 2px;
	margin-bottom: 10px;
	background: #f59a00;
}
#screen_4 .content_img_2{
	position: absolute;
	top: 430px;
	left: 125px;
	width: 100%;
	max-width: 348px;
	height: auto;
}
#screen_4 .content_img_3{
	position: absolute;
	top: 606px;
	right: 0;
}
#screen_4 .title_type_2_block.pa{
	position: absolute;
	top: 879px;
	left: 15px;
}
#screen_4 .support_info_block{
	position: absolute;
	top: 1130px;
	left: 15px;
	width: 100%;
	
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	
	-webkit-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
}
#screen_4 .support_info_block .part{
	width: 33.33%;
	padding-right: 15px;
}
#screen_4 .support_info_block .part:last-child{
	padding-right: 0;
}
#screen_4 .support_info_block .part .support_decor{
	width: 225px;
	height: 15px;
	margin-bottom: 20px;
	background: url(../img/content/support_decor.jpg);
}

@media (max-width: 1190px){
	#screen_4{
		height: auto;
		background: none;
	}
	#screen_4 .title_type_2 br{
		display: none;
	}
	#screen_4 .approach_block{
		position: static;
		padding: 0;
	}
	#screen_4 .approach_block br{
		display: none;
	}
	#screen_4 .content_img_2{
		position: static;
	}
	#screen_4 .content_img_2{
		position: static;
		display: block;
		margin: 70px auto;
	}
	#screen_4 .content_img_device{
		margin-top: 50px;
	}
	#screen_4 .title_type_2_block.pa{
		position: static;
	}
	#screen_4 .support_info_block{
		position: static;
	}
}

@media (max-width: 991px){
	#screen_4 .support_info_block{
		display: block;
		max-width: 320px;
		margin: auto;
	}
	#screen_4 .support_info_block .part{
		width: 100%;
		margin-bottom: 40px;
		padding-right: 0;
	}
	#screen_4 .support_info_block .part:last-child{
		margin-bottom: 0;
	}
}

@media (max-width: 767px){
	#screen_4 .screen_inner{
		padding-top: 50px;
	}
	#screen_4 .approach_block .num{
		font-size: 3.6rem;
	}
	#screen_4 .approach_block .stick{
		margin-right: 15px;
	}
	#screen_4 .content_img_2{
		margin: 45px auto;
	}
	#screen_4 .support_info_block .part .text_type_1{
		font-size: 2.4rem;
	}
}
/*END #screen_4*/

/*BEGIN #screen_5*/
#screen_5{
	z-index: 2;
}
#screen_5 > .screen_inner{
	padding-top: 90px;
}
#screen_5 > .screen_inner .stamp{
	margin-bottom: 35px;
}
#screen_5 > .screen_inner .title_type_1{
	margin: 0 0 30px 0;
}
#screen_5 > .screen_inner .text_type_3:nth-child(3){
	margin: 0 0 20px 0;
}
#screen_5 > .screen_inner .text_type_3:nth-child(4){
	margin: 0 0 60px 0;
}
.slider_type_1_screen{
	z-index: 1;
	position: relative;
	height: 864px;
	margin-bottom: 100px;
}
.slider_type_1_screen:last-child{
	margin-bottom: 0;
}
.slider_type_1_screen::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 620px;
	background: #333238;
}
.slider_type_1_screen .info_block{
	height: 315px;
	padding-top: 60px;
	
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	
	-webkit-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
}
.slider_type_1_screen .info_block .part:nth-child(1){
	width: 360px;
}
.slider_type_1_screen .info_block .part:nth-child(2){
	position: relative;
	width: 420px;
	padding-left: 30px;
}
.slider_type_1_screen .info_block .part:nth-child(2)::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 165px;
	background: #4d4c51;
}
.slider_type_1_screen .info_block .title_type_3{
	margin-bottom: 35px;
	line-height: 0.9em;
}
.slider_type_1_screen .info_block .text_type_1{
	line-height: 1.8em;
}
.slider_type_1_screen .info_block .text_type_1 .bigger_t{
	font-size: 1.25em;
}
.slider_type_1_screen .info_block ul{
	margin-top: 35px;
	padding-left: 20px;
}
.slider_type_1_switcher{
    z-index: 2;
	position: relative;
	max-width: 1000px;
	height: 50px;
	margin: auto;
	
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	
	-webkit-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.slider_type_1_switcher .switch_btn{
	position: relative;
	height: 50px;
	line-height: 50px;
	font-size: 1.2rem;
}
.slider_type_1_switcher .switch_btn.active{
	/*cursor: default;*/
	opacity: 1 !important;
}
.slider_type_1_switcher .switch_btn::before{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 220px;
	height: 70px;
	border: 4px solid #ec6304;
	opacity: 0;
	pointer-events: none;
	
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	
	-webkit-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}
.slider_type_1_switcher .switch_btn.active::before{
	opacity: 1;
}
.slider_type_1_block{
	position: relative;
	height: 498px;
}
.slider_type_1_block .preloader_inner{
	z-index: 1;
	display: none;
}
.slider_type_1_block .preloader_inner .preloader_element{
	background: #fff;
}
.slider_type_1_block .slider_type_1_container{
	position: relative;
	width: 1000px;
	height: 498px;
	margin: auto;
	background: #484848;
}
.slider_type_1{
	z-index: 2;
	position: relative;
	width: 100%;
	max-width: 1000px;
	margin: auto;
	height: 498px;
}
.slider_type_1_block .slider_type_1{
	display: none;
}
.slider_type_1 .square_info{
	z-index: 2;
	position: absolute;
	top: 50%;
	left: -52px;
	width: 190px;
	height: 190px;
	margin-top: -95px;
	padding: 0 15px;
	background: #181d2d;
	
	font-family: "Apercu-Pro-Bold";
	font-size: 3rem;
    letter-spacing: 0.02em;
    line-height: 190px;
}
.slider_type_1 .nav_block{
	z-index: 2;
	position: absolute;
	top: 50%;
	right: -28px;
	width: 128px;
	height: 56px;
	margin-top: -28px;
	
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	
	-webkit-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.slider_type_1 .nav_block .slider_nav{
	width: 56px;
	height: 56px;
}
.slider_type_1 .nav_block .slider_nav.prev{
	background: url(../img/general/arrow_left.png) no-repeat 50% 50% / 100% 100%;
}
.slider_type_1 .nav_block .slider_nav.next{
	background: url(../img/general/arrow_right.png) no-repeat 50% 50% / 100% 100%;
}
.slider_type_1 .big_orange_btn{
	z-index: 2;
	position: absolute;
	bottom: -30px;
	left: 50%;
	
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.slider_type_1 .slide_wrapper{
	position: relative;
}
.slider_type_1 .slide_wrapper .slide{
	z-index: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	opacity: 0;
	
	-webkit-transition: opacity 0.2s linear 0.2s;
	transition: opacity 0.2s linear 0.2s;
}
.slider_type_1 .slide_wrapper .slide.active{
	z-index: 1;
	opacity: 1;
	
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
}

@media (max-width: 1190px){
	.slider_type_1_screen{
		height: auto;
		background: #333238;
	}
	.slider_type_1_screen::before{
		display: none;
	}
	.slider_type_1_screen .info_block{
		display: block;
		height: auto;
	}
	.slider_type_1_screen .info_block .part:nth-child(1){
		width: 100%;
		margin-bottom: 25px;
	}
	.slider_type_1_screen .info_block .part:nth-child(2){
		width: 100%;
		margin-bottom: 30px;
		padding-left: 0;
	}
	.slider_type_1_screen .info_block .part:nth-child(2)::before{
		display: none;
	}
	.slider_type_1_screen .info_block br:not(.br_i){
		display: none;
	}
	.slider_type_1_screen .info_block .title_type_3{
		margin-bottom: 25px;
	}
	.slider_type_1_screen .info_block ul{
		margin-top: 25px;
	}
	.slider_type_1_switcher{
		margin-top: 50px;
	}
	.slider_type_1_switcher .switch_btn{
		padding: 0 15px;
	}
	.slider_type_1_switcher .switch_btn::before{
		width: 100%;
	}
	.slider_type_1 .square_info{
		left: 15px;
		width: 100px;
		height: 100px;
		margin-top: -50px;
		background: #181d2d;
		font-size: 1.6rem;
		line-height: 100px;
	}
	.slider_type_1 .nav_block{
		right: 15px;
	}
}

@media (max-width: 1050px){
	.slider_type_1_block{
		height: auto;
		padding-bottom: 49.8%;
	}
	.slider_type_1_block .slider_type_1_container,
	.slider_type_1,
	.slider_type_1 .slide_wrapper{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	.slider_type_1 .slide_wrapper .slide{
		height: 100%;
	}
}

@media (max-width: 991px){
	.slider_type_1_switcher{
		display: block;
		height: auto;
		margin: 40px auto;
		text-align: center;
	}
	.slider_type_1_switcher .switch_btn{
		margin-bottom: 5px;
	}
	.slider_type_1_switcher .switch_btn::before{
		top: 0;
		left: 0;
		height: 100%;
		background: rgba(255,255,255,0.1);
		border: none;
		opacity: 1;
		
		-webkit-transform: none;
		transform: none;
		
		-webkit-transition: background 0.2s ease-in-out;
		transition: background 0.2s ease-in-out;
	}
	.slider_type_1_switcher .switch_btn.active::before{
		background: rgba(255,255,255,0.3);
	}
}

@media (max-width: 767px){
	#screen_5 > .screen_inner{
		padding-top: 60px;
	}
	.slider_type_1_screen{
		margin-bottom: 15px;
		padding-bottom: 150px;
	}
	.slider_type_1 .square_info{
		top: 0;
		left: 0;
		width: 110px;
		height: 30px;
		margin-top: 0;
		font-size: 1.4rem;
		line-height: 30px;
	}
	.slider_type_1 .nav_block{
		top: auto;
		bottom: -70px;
		right: auto;
		left: 50%;
		margin-top: 0;
		margin-left: -64px;
	}
	.slider_type_1 .big_orange_btn{
		bottom: -135px;
	}
}
/*END #screen_5*/

/*BEGIN #screen_6*/
#screen_6 .screen_inner{
	padding-top: 130px;
}
#screen_6 .form_block{
	position: relative;
	margin-top: 70px;
	padding: 80px 90px;
	background: #333238;
}
#screen_6 .content_img_4{
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: 15px;
}

@media (max-width: 1190px){
	#screen_6 .form_block{
		padding: 60px 30px;
	}
	#screen_6 .content_img_4{
		position: absolute;
		bottom: 0;
		left: auto;
		right: 30px;
		margin-left: 0;
	}
}

@media (max-width: 991px){
	#screen_6 .form_simple{
		margin: auto;
	}
	#screen_6 .content_img_4{
		position: static;
		display: block;
		width: 100%;
		max-width: 486px;
		height: auto;
		margin: 40px auto 0;
	}
}

@media (max-width: 767px){
	#screen_6 .screen_inner{
		padding-top: 60px;
	}
	#screen_6 .form_block{
		margin-top: 40px;
		padding: 30px 15px;
	}
}
/*END #screen_6*/

/*BEGIN #screen_7*/
#screen_7 .screen_inner{
	padding-top: 100px;
}
.benefits_block{
	padding-top: 30px;
	padding-right: 15px;
	
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	
	-webkit-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
}
.benefits_block .part{
	width: 33.33%;
	margin-bottom: 40px;
}
.benefits_block .part:last-child{
	margin-bottom: 0;
}
.benefits_block .part .support_decor{
	width: 225px;
	height: 15px;
	margin-bottom: 20px;
	background: url(../img/content/support_decor.jpg);
}
.benefits_block .part .text_type_1{
	margin-bottom: 0;
}
.benefits_block .part .decor_line{
    width: 100%;
    height: 2px;
    margin-top: 40px;
    margin-bottom: 15px;
    background: #f59a00;
}
.benefits_block .part .text_type_3{
	line-height: 1.6em;
}
.benefits_block .part > div:nth-child(1) .text_type_3{
	min-height: 50px;
}

@media (min-width: 1191px){
	.benefits_block .part .text_type_1{
		font-size: 2.3rem;
	}
}

@media (max-width: 1190px){
	#screen_7 .screen_inner .title_type_2 br{
		display: none;
	}
	.benefits_block{
		display: block;
		padding-top: 15x;
		padding-right: 0;
	}
	.benefits_block .part{
		width: 100%;
	}
	.benefits_block .part > div:nth-child(1) .text_type_3{
		min-height: 0;
	}
	.benefits_block .part .decor_line{
		margin-top: 20px;
		max-width: 360px;
	}
}

@media (max-width: 767px){
	#screen_7 .screen_inner{
		padding-top: 60px;
	}
	.benefits_block .part .decor_line{
		max-width: 225px;
	}
}
/*END #screen_7*/

/*BEGIN #screen_8*/
#screen_8 .screen_inner{
	padding-top: 60px;
}
#screen_8 > .screen_inner .stamp{
    margin-bottom: 35px;
}
#screen_8 > .screen_inner .title_type_1{
    margin: 0 0 55px 0;
}
.gallery_block{
	max-width: 1016px;
	margin: auto;
	
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	
	-webkit-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
}
.gallery_block .part{
	width: 33.33%;
	margin-bottom: 40px;
	padding: 0 8px;
}
.gallery_block .part:last-child{
	margin-bottom: 0;
}
.gallery_block .part .img_block{
	position: relative;
}
.gallery_block .part .img_block img{
	width: 100%;
	height: auto;
}
.gallery_block .part .img_block .cover,
.gallery_block .part .img_block .gallery_select{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	background: rgba(0,0,0,0.3);
}
.gallery_block .part .img_block .cover{
	background: rgba(0,0,0,0.3);
}
.gallery_block .part .img_block .gallery_select{
	cursor: pointer;
}
.gallery_block .part .gallery_cross{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 114px;
	height: 114px;
	background: url(../img/general/gallery_cross.svg) no-repeat 50% 50% / 100% 100%;
	opacity: 0;
	
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

@media (min-width: 768px){
	.gallery_block .part .text_type_1{
		margin: 15px 0 0 0;
		font-size: 1.8rem;
	}
	
}

@media (min-width: 1251px){
	.gallery_block .part .img_block .cover,
	.gallery_block .part .img_block .gallery_cross{
		-webkit-transition: opacity 0.3s ease-in-out;
		transition: opacity 0.3s ease-in-out;
	}
	.gallery_block .part .img_block:hover .cover,
	.gallery_block .part .img_block:hover .gallery_cross{
		opacity: 1;
	}
}

@media (max-width: 991px){
	.gallery_block{
		max-width: 670px;
	}
	.gallery_block .part{
		width: 50%;
	}
}

@media (max-width: 767px){
	#screen_8 > .screen_inner .title_type_1{
		margin: 0 0 40px 0;
	}
	.gallery_block .part .text_type_1{
		margin: 5px 0 0 0;
	}
	.gallery_block .part{
		margin-bottom: 25px;
	}
}

@media (max-width: 560px){
	.gallery_block{
		max-width: 320px;
	}
	.gallery_block .part{
		width: 100%;
		padding: 0;
	}
}
/*END #screen_8*/

/*BEGIN #gallery_slider_popup, #reviews_video_popup*/
#gallery_slider_popup,
#reviews_video_popup{
	z-index: 201;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	height: calc(100vh + 1px);
	display: none;
}
#gallery_slider_popup_cover,
#reviews_video_popup_cover{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
	
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
#gallery_slider_popup_inner,
#reviews_video_popup_inner{
	position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 30px);
    max-width: 1000px;
	background: #484848;
	
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
#gallery_slider_popup_inner{
	height: 498px;
}
#reviews_video_popup_inner{
	height: 562px;
}
#reviews_video_popup_container,
#reviews_video_popup_inner iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#gallery_slider_popup_close,
#reviews_video_popup_close{
    position: absolute;
    top: -45px;
    right: -5px;
    width: 40px;
    height: 40px;
    padding: 5px;
	background: url(../img/general/close_white.svg) no-repeat 50% 50% / 30px 30px;
    cursor: pointer;
	
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

@media (max-width: 1050px){
	#gallery_slider_popup_inner,
	#reviews_video_popup_inner{
		height: auto;
	}
	#gallery_slider_popup_inner{
		padding-bottom: 49.8%;
	}
	#reviews_video_popup_inner{
		padding-bottom: 50%;
	}
	#reviews_video_popup_container{
		height: auto;
		padding-bottom: 56.2%;
	}
}
/*END #gallery_slider_popup, #reviews_video_popup*/

/*BEGIN #screen_9*/
#screen_9 > .screen_inner{
	padding-top: 70px;
}
#screen_9 > .screen_inner .title_type_1{
    margin: 0 0 55px 0;
}
.slider_type_1_switcher.review_switcher{
    -webkit-justify-content: start;
    justify-content: start;
}
.open_video{
	cursor: pointer;
}

@media (min-width: 992px){
	.slider_type_1_switcher.review_switcher .switch_btn{
		min-width: 220px;
		text-align: center;
	}
}

@media (max-width: 991px){
	.review_block{
		z-index: 1;
		position: relative;
		background: #333238;
		padding: 40px 0;
	}
	.review_block .slider_type_1_switcher.review_switcher{
		margin-top: 0;
	}
	.review_block .slider_type_1_switcher .switch_btn{
		color: #fff;
	}
}

@media (max-width: 767px){
	#screen_9 > .screen_inner{
		padding-top: 60px;
	}
	#screen_9 > .screen_inner .title_type_1{
		margin: 0 0 40px 0;
	}
	.review_block{
		padding: 40px 0 85px 0;
	}
}
/*END #screen_9*/

/*BEGIN #footer*/
#footer{
	z-index: 1;
	margin-top: 160px;
	padding-bottom: 170px;
}
#footer > div:nth-child(1){
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 412px;
	background: #fcf9f8;
}
#footer > div:nth-child(2){
	position: absolute;
	bottom: 0;
	left: 0;
	width: calc(50% + 410px);
	height: 100%;
	background: #333238;
}
#footer .screen_inner{
	padding-top: 70px;
}
#footer .main_logo{
	width: 180px;
    height: 44px;
	margin-bottom: 40px;
}
#footer .company_name{
	margin-bottom: 10px;
}
#footer .gm_address{
	display: inline-block;
}
#footer .part{
	position: absolute;
	top: 167px;
	left: 50%;
	width: 580px;
	padding-left: 110px;
}
#footer .social_info{
	margin-top: 100px;
}
#footer .social_info .icon_block{
	margin-top: 35px;
	
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	
	-webkit-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
}
#footer .social_info .icon_block a{
	display: block;
	margin: 0 15px;
}
#footer .social_info .icon_block a:first-child{
	margin-left: 0;
}
#footer .social_info .icon_block a:last-child{
	margin-right: 0;
}

@media (min-width: 768px){
	#footer .tel_links{
		font-size: 3rem;
	}
}

@media (max-width: 991px){
	#footer{
		margin-top: 100px;
		background: #333238;
		text-align: center;
		padding-bottom: 100px;
	}
	#footer *{
		margin-left: auto;
		margin-right: auto;
	}
	#footer > div:nth-child(1),
	#footer > div:nth-child(2){
		display: none;
	}
	#footer .part{
		position: static;
		width: 100%;
		margin-top: 50px;
		padding-left: 0;
	}
	#footer .social_info{
		margin-top: 55px;
	}
	#footer .social_info .icon_block{
		-webkit-justify-content: center;
		justify-content: center;
	}
}

@media (max-width: 767px){
	#footer{
		margin-top: 30px;
	}
}
/*END #footer*/

.animated_element,
.animated_element img{
	will-change: transform, opacity;
}
/*.animated_element.draw,
.animated_element.draw img{
	will-change: auto;
}*/