/* srollbar */
@media(min-width: 768px) {
	::-webkit-scrollbar {
	    width: 15px;
	    height: 15px;
	    background-color: #fafafa;
	    border: 1px solid #eee;
	}
	::-webkit-scrollbar-thumb {
	    background-color: #fe4a00;
	}
	::-webkit-scrollbar-thumb:hover {
	    background-color: #fe4a00;
	}
	::-webkit-scrollbar-corner,
	::-webkit-resizer {
		display: none;
	}
}
/* fonts */
@font-face {
	font-family: 'Rubik';
	src: url('../fonts/Rubik-Regular.eot');
	src: url('../fonts/Rubik-Regulard41d.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Rubik-Regular.woff') format('woff'),
		url('../fonts/Rubik-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
/* selection */
*::selection {
    background-color: #393939;
}
::selection {
    color: #EACB9D;
}
/* reset */
* {
	font-family: 'Rubik';
	padding: 0;
	margin: 0;
	outline: 0;
	list-style: none;
    text-decoration: none;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
img {
	max-width: 100%;
}
/* main */
html,body {
	position: relative;
	overflow-x: hidden;
	min-height: 100vh;
	width: 100%;
	margin: 0;
	z-index: 0;
}
.content {
	position: relative;
	max-width: 1700px;
	margin: 0 auto;
	padding: 0 20px;
	z-index: 0;
}
.Mtitle {
	color: #fff;
	font-size: 24px;
	padding: 10px;
	margin: 0 10px;
	display: inline-block;
	border-radius: 10px;
	background: #fe4a00;
}
.overlay {
	position: fixed;
	top: -100%;
	left: 0;
	right: 0;
	bottom: 0;
	background: #000;
	visibility: hidden;
	opacity: 0;
	z-index: 1;
	transition: 0.35s;
	-webkit-transition: 0.35s;
	-moz-transition: 0.35s;
	-ms-transition: 0.35s;
	-o-transition: 0.35s;
}
.overlay.active {
	visibility: visible;
	opacity: 0.5;
}
/*header*/
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
}
header.scroll {
	box-shadow: 0 0 5px rgba(0,0,0,0.25);
}
header .header-block {
	background: #fff;
	z-index: 1;
}
header:before {
	content: "";
	position: absolute;
	left: -80%;
	bottom: 0;
	height: 7px;
	width: 80%;
	background: #fe4a00;
	border-radius: 10px;
	transition: 1s;
	-webkit-transition: 1s;
	-moz-transition: 1s;
	-ms-transition: 1s;
	-o-transition: 1s;
}
header.scroll:before {
	left: 180%;
}
header .brgr {
	display: none;
}
header .logo {
	padding: 30px 10px;
	display: inline-block;
	vertical-align: middle;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
}
header.scroll .logo {
	padding: 20px 10px;
}
header .logo img {
	height: 90px;
	transition: 0.35s;
	-webkit-transition: 0.35s;
	-moz-transition: 0.35s;
	-ms-transition: 0.35s;
	-o-transition: 0.35s;
}
header.scroll .logo img {
	height: 46px;
}
header .nav-logo {
	display: none;
}
header .nav {
	font-size: 0;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 40px;
	margin: auto 0;
	z-index: -1;
}
header .nav li {
	position: relative;
	display: inline-block;
	vertical-align: middle;
}
header .nav li a {
	color: #707070;
	font-size: 16px;
	line-height: 40px;
	display: block;
	margin: 0 30px;
	padding: 0 15px;
	opacity: 0.6;
    border-radius: 10px;
	box-shadow: 0 0 0 1px transparent;
	transition: 0.15s;
	-webkit-transition: 0.15s;
	-moz-transition: 0.15s;
	-ms-transition: 0.15s;
	-o-transition: 0.15s;
}
header .nav li a:hover {
	opacity: 1;
	box-shadow: 0 0 0 1px #fe4a00;
}
header .nav li.active a {
	color: #fff;
	border-radius: 10px;
	background: #fe4a00;
	opacity: 1;
}
header .nav li.nav-js:before {
    content: "";
    position: absolute;
    top: 90px;
	left: -1000px;
    right: 0;
    margin: 0 auto;
    height: 15px;
    width: 80px;
    border-radius: 10px;
    background: #fe4a00;
    visibility: hidden;
    opacity: 0;
	transition: 0.35s;
	-webkit-transition: 0.35s;
	-moz-transition: 0.35s;
	-ms-transition: 0.35s;
	-o-transition: 0.35s;
}
header.scroll .nav li.nav-js:before {
    top: 58px;
}
header .nav li.nav-js.open:before {
    left: 0;
    visibility: visible;
    opacity: 1;
}
header .contacts {
	display: none;
}
header .c-block {
	text-align: right;
	position: absolute;
	top: 0;
	right: 20px;
	bottom: 0;
	margin: auto 0;
	height: 80px;
}
header .c-block p {
	position: relative;
	z-index: 0;
}
header .c-block a {
    color: #292929;
    font-size: 14px;
    line-height: 22px;
    height: 40px;
    padding: 10px 50px 10px 10px;
    display: inline-block;
    border-radius: 10px;
	box-shadow: 0 0 0 1px transparent;
	transition: 0.15s;
	-webkit-transition: 0.15s;
	-moz-transition: 0.15s;
	-ms-transition: 0.15s;
	-o-transition: 0.15s;
}
header .c-block a:hover {
	box-shadow: 0 0 0 1px #fe4a00;
}
header .c-block p img {
	position: absolute;
	top: 10px;
	right: 10px;
	height: 20px;
	z-index: -1;
}
header .inner-block {
	color: #fff;
	font-size: 0;
	position: absolute;
	top: -1000px;
	left: 0;
	right: 0;
	padding: 25px 0 40px;
	background: #484848;
	z-index: -1;
	transition: 0.35s;
	-webkit-transition: 0.35s;
	-moz-transition: 0.35s;
	-ms-transition: 0.35s;
	-o-transition: 0.35s;
}
header .inner-block.active {
	top: 100%;
}
header .inner-box {
	width: 25%;
	display: inline-block;
	vertical-align: top;
}
header .inner-box.pad {
	padding-top: 98px;
}
header .inner-box .title {
	color: #fe4a00;
	font-size: 21px;
	display: inline-block;
	margin: 20px 10px;
	padding: 15px 20px 15px 0;
	border-bottom: 3px solid #fe4a00;
}
header .inner-box .subtitle {
	font-size: 16px;
	padding: 20px 10px;
}
header .inner-box ul {
	padding: 10px 0;
}
header .inner-box a {
	color: #fff;
	font-size: 14px;
	position: relative;
	display: inline-block;
	padding: 10px 0;
	margin: 0 10px;
}
header .inner-box a:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background: #fe4a00;
	transition: 0.35s;
	-webkit-transition: 0.35s;
	-moz-transition: 0.35s;
	-ms-transition: 0.35s;
	-o-transition: 0.35s;
}
header .inner-box a:hover:before {
	width: 100%;
}
.scrl {
	position: fixed;
	right: 20px;
	bottom: 20px;
}
/*s1*/
.s1 {
	font-size: 0;
	position: relative;
	width: 100%;
	z-index: 0;
}
.s1 .scrl-block {
	width: 100%;
	overflow: auto;
	cursor: default;
}
.s1 .scrl-box {
	position: relative;
	width: 100%;
	min-width: 100%;
}
.s1 .bg img {
	width: 100%;
}
.s1 .inner-block {
	position: absolute;
	top: 20%;
	left: 0;
	right: 0;
	bottom: 0;
}
.s1 .inner-block .inner-box {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	height: 100%;
	width: 25%;
	opacity: 0.6;
	transition: 0.15s;
	-webkit-transition: 0.15s;
	-moz-transition: 0.15s;
	-ms-transition: 0.15s;
	-o-transition: 0.15s;
}
.s1 .inner-block .inner-box:hover {
	opacity: 1;
}
.s1 .inner-block .inner-box.inb-1 {
	padding-top: 50px;
}
.s1 .inner-block .inner-box.inb-2 {
	padding-top: 30px;
}
.s1 .inner-block .inner-box.inb-3 {
	padding-top: 130px;
}
.s1 .inner-block .inner-box .inner {
	position: relative;
	min-height: 150px;
    width: 300px;
    padding: 25px 35px 15px;
	margin: 0 auto;
	border-radius: 40px;
	background: #fff;
    z-index: 1;
}
.s1 .inner-block .inner-box .inner:before {
	content: "";
	position: absolute;
	top: 180px;
	left: 0;
	right: 0;
	height: 150px;
	width: 4px;
	margin: 0 auto;
	background: #fff;
}
.s1 .inner-block .inner-box.inb-1 .inner:before {
	height: 70px;
}
.s1 .inner-block .inner-box.inb-2 .inner:before {
	height: 265px;
}
.s1 .inner-block .inner-box.inb-3 .inner:before {
	height: 150px;
}
.s1 .inner-block .inner-box .inner .title {
	color: #141414;
	font-size: 16px;
}
.s1 .inner-block .inner-box .inner p {
	color: #707070;
	font-size: 12px;
	padding: 15px 0 10px;
}
.s1 .inner-block .inner-box img {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
}
.s1 .inner-block .inner-box img.sdvig {
	left: 30px;
}
/*s2*/
.s2 {
	position: relative;
	font-size: 0;
	color: #fff;
	height: 900px;
	background: #fff;
	overflow: hidden;
	z-index: 0;
}
.s2 .content {
	height: 100%;
	z-index: 3;
}
.s2:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(../img/grad.png) no-repeat left center;
	background-size: 100% 100%;
	z-index: 1;
}
.s2 .slider-img .ibox {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	background: no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
	z-index: -1;
	transition: 1s;
	-webkit-transition: 1s;
	-moz-transition: 1s;
	-ms-transition: 1s;
	-o-transition: 1s;
}
.s2 .slider-img .ibox.active {
	opacity: 1;
}
.s2 p {
	font-size: 14px;
	line-height: 24px;
	padding: 40px 10px;
}
/*s2-slider*/
.s2-slider {
	text-align: center;
	position: absolute;
	top: 0;
	left: 20px;
	right: 20px;
	bottom: 0;
	font-size: 0;
}
.s2-slider:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}
.s2-slider .slick-list {
	display: inline-block;
	vertical-align: middle;
	width: 100%;
}
.s2-slider .slide {
	text-align: left;
	position: relative;
}
.s2-slider .inner-block {
	text-align: left;
	display: inline-block;
	vertical-align: bottom;
	max-width: 380px;
}
.s2-slider .inner-block a {
	color: #fff;
	font-size: 16px;
	line-height: 32px;
	display: inline-block;
	padding: 0 20px;
	margin: 20px 0;
	border-radius: 10px;
	background: #AC8F64;
	transition: 0.15s;
	-webkit-transition: 0.15s;
	-moz-transition: 0.15s;
	-ms-transition: 0.15s;
	-o-transition: 0.15s;
}
.s2-slider .inner-block a:hover {
	color: #AC8F64;
	background: #fff;
}
.s2-slider .slick-dots {
	text-align: left;
	left: 0;
	right: 0;
	bottom: 50px;
	padding: 0 5px;
}
.s2-slider .slick-dots li {
	width: auto;
	height: auto;
	padding: 10px 5px;
	margin: 0;
}
.s2-slider .slick-dots li button {
	width: 20px;
	height: 5px;
	padding: 0;
	border: 0;
	border-radius: 40px;
	background: #717171;
	opacity: 0.6;
	transition: 0.15s;
	-webkit-transition: 0.15s;
	-moz-transition: 0.15s;
	-ms-transition: 0.15s;
	-o-transition: 0.15s;
}
.s2-slider .slick-dots li:hover button {
	opacity: 1;
	background: #fff;
}
.s2-slider .slick-dots li.slick-active button {
	width: 40px;
	opacity: 1;
}
.s2-slider .slick-dots li button::before {
	content: "";
	position: absolute;
	top: 0;
	left: 5px;
	bottom: 0;
	width: 0;
	height: 5px;
	margin: auto 0;
	background: #fe4a00;
	transition: 0.15s;
	-webkit-transition: 0.15s;
	-moz-transition: 0.15s;
	-ms-transition: 0.15s;
	-o-transition: 0.15s;
}
.s2-slider .slick-dots li.slick-active button::before {
	width: 40px;
	transition: 8s;
	-webkit-transition: 8s;
	-moz-transition: 8s;
	-ms-transition: 8s;
	-o-transition: 8s;
}
/*s3*/
.s3 {
	font-size: 0;
	position: relative;
	background: #fff;
}
.s3 .imgs-block {
	position: absolute;
	width: 56%;
	top: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
}
.s3.innr .imgs-block {
	position: fixed;
    height: 100vh;
}
.s3 .imgs-block img {
	position: absolute;
	top: -100%;
	left: -100%;
	right: -100%;
	bottom: -100%;
	margin: auto auto;
	min-height: 100%;
	min-width: 100%;
	max-width: inherit;
	visibility: hidden;
	opacity: 0;
	transition: 1s;
	-webkit-transition: 1s;
	-moz-transition: 1s;
	-ms-transition: 1s;
	-o-transition: 1s;
}
.s3 .imgs-block img.active {
	visibility: visible;
	opacity: 1;
}
.s3 .inner-block {
	width: 44%;
	min-height: 730px;
	max-width: 650px;
	padding: 40px 0 60px;
}
.s3 .tabs {
	padding: 30px 0 20px;
}
.s3 .tabs .tab-nav {
	color: #909090;
	font-size: 21px;
	line-height: 38px;
	display: inline-block;
	vertical-align: middle;
	padding: 0 20px;
	margin: 10px;
	border-radius: 10px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: 0.15s;
	-webkit-transition: 0.15s;
	-moz-transition: 0.15s;
	-ms-transition: 0.15s;
	-o-transition: 0.15s;
}
.s3 .tabs .tab-nav:hover {
	border: 1px solid #fe4a00;
}
.s3 .tabs .tab-nav.active {
	color: #fff;
	background: #969696;
	border: 1px solid #969696;
}
.s3 .inner-box {
	display: none;
}
.s3 .inner-box.active {
	display: block;
}
.s3 .inner-box .inner {
	padding-top: 30px;
	display: inline-block;
	vertical-align: top;
	width: 50%;
}
.s3 p {
	font-size: 14px;
	line-height: 20px;
	padding: 10px;
	opacity: 0.7;
}
.s3 .t {
	font-size: 16px;
	padding: 0 10px 20px;
}
.s3 li {
	padding: 0 10px;
}
.s3 li a {
	color: #000;
	font-size: 14px;
	line-height: 28px;
	display: inline-block;
	position: relative;
	z-index: 0;
	transition: 0.15s;
	-webkit-transition: 0.15s;
	-moz-transition: 0.15s;
	-ms-transition: 0.15s;
	-o-transition: 0.15s;
}
.s3 li a:hover {
	color: #fe4a00;
}
.s3 li a:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	width: 0;
	background: #fe4a00;
	z-index: -1;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
}
.s3 li a:hover:before {
	width: 100%;
}
/*s4*/
.s4 {
	font-size: 0;
	padding: 100px 0;
	background: url(../img/s4-bg.jpg) no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
}
.s4 .content {
	min-height: 1080px;
}
.s4 .inner-block {
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 90px;
}
.s4 .inner-box {
	display: inline-block;
	vertical-align: top;
	width: 33.33%;
	padding: 10px;
}
.s4 .inner-box .inner {
	position: relative;
	min-height: 285px;
	padding: 30px 40px;
	border-radius: 30px;
	background: #fff;
	overflow: hidden;
	z-index: 0;
}
.s4 .inner-box .inner:before {
	content: "";
	position: absolute;
	top: -600%;
	left: -100%;
	right: -100%;
	width: 50%;
	height: 600%;
	margin: 0 auto;
	border-radius: 100%;
	background: #fe4a00;
	z-index: -1;
	transition: 1s;
	-webkit-transition: 1s;
	-moz-transition: 1s;
	-ms-transition: 1s;
	-o-transition: 1s;
}
.s4 .inner-box:hover .inner:before {
	top: -150%;
	width: 250%;
	background: #3C3C3C;
}
.s4 .inner-box .inner .title {
	color: #fe4a00;
	font-size: 21px;
	line-height: 32px;
	position: relative;
	padding: 10px 0 10px 50px;
	text-shadow: 1px 1px 1px rgba(0,0,0,0);
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
}
.s4 .inner-box:hover .inner .title {
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.25);
}
.s4 .inner-box .inner .title svg {
	position: absolute;
	top: 10px;
	left: 0;
	height: 32px;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
}
.s4 .inner-box:hover .inner .title svg {
	fill: #fe4a00;
}
.s4 .inner-box .inner p {
	color: #000;
	font-size: 14px;
	padding: 10px 0;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
}
.s4 .inner-box:hover p {
	color: #fff;
}
/*s5*/
.s5 {
	padding: 70px 0 100px;
	background: #fff;
}
.s5 .inner-block {
	max-width: 420px;
	padding: 80px 0 40px;
}
.s5 .inner-box {
	color: #7E7E7E;
	line-height: 24px;
	position: relative;
	padding: 10px 10px 20px 60px;
	cursor: pointer;
}
.s5 .t1 {
	font-size: 18px;
}
.s5 .t2 {
	font-size: 13px;
}
.s5 .inner-box .mrk {
	position: absolute;
	top: 0;
	left: 10px;
}
.s5 .inner-box .mrk svg path {
	stroke: #c7c7c7;
	transition: 0.15s;
	-webkit-transition: 0.15s;
	-moz-transition: 0.15s;
	-ms-transition: 0.15s;
	-o-transition: 0.15s;
}
.s5 .inner-box.full .mrk svg path {
	fill: #C7C7C7;
}
.s5 .inner-box:hover .mrk svg path {
	stroke: #fe4a00;
}
.s5 .inner-box.full:hover .mrk svg path {
	fill: #fe4a00;
}
.s5 p {
	font-size: 12px;
	max-width: 420px;
	padding: 10px;
	opacity: 0.5;
}
.s5 .map-block {
	position: absolute;
	top: 0;
	left: 440px;
	right: 20px;
	bottom: 0;
}
.s5 .map-block svg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	margin: auto auto;
	padding: 10px;
}
#Group_92 path {
	transition: 0.15s;
	-webkit-transition: 0.15s;
	-moz-transition: 0.15s;
	-ms-transition: 0.15s;
	-o-transition: 0.15s;
}
#Group_92 path.active {
	fill: #fe4a00;
}
/*s6*/
.s6 {
	margin-bottom: 100vh;
}
	
 
.s6	.inner-block {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
}
.s6	#footer-map {
	position: absolute!important;
	top: 0;
	left: 530px;
	right: 0;
	bottom: 0;
	height: 100%;
}
.s6	.inner-box {
	position: absolute;
	top: 0;
	left: 20px;
	right: 0;
	height: 100vh;
	max-width: 530px;
	z-index: 2;
}
.s6	.inner-box:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 4000px;
	background: #212121;
	z-index: -1;
}
.s6	.inner-box .inner {
	padding: 140px 10px 10px;
	max-height: 100%;
	overflow: auto;
}
.s6	.inner-box .block {
	max-width: 400px;
}
.s6	.inner-box li {
	color: #fff;
	font-size: 14px;
	line-height: 24px;
	position: relative;
	padding: 5px 0 5px 40px;
}
.s6	.inner-box li img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto 0;
}
.s6	.inner-box li a {
	color: #fff;
	display: inline-block;
	transition: 0.15s;
	-webkit-transition: 0.15s;
	-moz-transition: 0.15s;
	-ms-transition: 0.15s;
	-o-transition: 0.15s;
}
.s6	.inner-box li a:hover {
	color: #fe4a00;
}
.s6	.inner-box form {
	font-size: 0;
	padding: 80px 0;
}
.s6	.inner-box input {
	color: #fff;
	font-size: 16px;
	line-height: 46px;
	height: 46px;
	width: 100%;
	padding: 0 20px;
	margin-bottom: 15px;
	background: #3C3C3C;
	border-radius: 10px;
	border: 1px solid #3C3C3C;
	cursor: default;
	transition: 0.15s;
	-webkit-transition: 0.15s;
	-moz-transition: 0.15s;
	-ms-transition: 0.15s;
	-o-transition: 0.15s;
}
.s6	.inner-box input.half {
	width: 48%;
}
.s6	.inner-box input.half.hlf-l {
	margin-right: 4%;
}
.s6	.inner-box input:focus,
.s6	.inner-box input:hover {
	background: #525252;
}
.s6	.inner-box input.error {
	border: 1px solid red;
}
.s6	.inner-box input.button {
	width: 150px;
	background: #fe4a00;
	cursor: pointer;
	transition: 0.15s;
	-webkit-transition: 0.15s;
	-moz-transition: 0.15s;
	-ms-transition: 0.15s;
	-o-transition: 0.15s;
}
.s6	.inner-box input.button:hover {
	color: #fe4a00;
	background: #fff;
}
.s6	.inner-box label {
	position: relative;
	display: inline-block;
	width: 100%;
}
.s6	.inner-box textarea {
	color: #fff;
	font-size: 16px;
	height: 130px;
	min-height: 130px;
	max-height: 130px;
	width: 100%;
	min-width: 100%;
	max-width: 100%;
	padding: 20px;
	margin-bottom: 15px;
	border-radius: 10px;
	background: #3C3C3C;
	border: 0;
	cursor: default;
	transition: 0.15s;
	-webkit-transition: 0.15s;
	-moz-transition: 0.15s;
	-ms-transition: 0.15s;
	-o-transition: 0.15s;
}
.s6	.inner-box label textarea:focus,
.s6	.inner-box label:hover textarea {
	background: #525252;
}
.s6	.inner-box label span {
	color: #fff;
	font-size: 16px;
	position: absolute;
	top: 20px;
	left: 20px;
	visibility: visible;
	opacity: 0.3;
}
.s6	.inner-box label.active span {
	visibility: hidden;
	opacity: 0;
}
.s6	.inner-box .robot {
	width: 260px;
	border-radius: 10px;
	height: 80px;
	margin-bottom: 15px;
	background: #3C3C3C;
	border: 1px solid #3C3C3C;
	cursor: pointer;
	transition: 0.15s;
	-webkit-transition: 0.15s;
	-moz-transition: 0.15s;
	-ms-transition: 0.15s;
	-o-transition: 0.15s;
}
.s6	.inner-box .robot:hover {
	background: #525252;
}
.s6	.inner-box .robot.error {
	border: 1px solid red;
}
.s6	.inner-box .robot .chckbx {
	display: inline-block;
	vertical-align: middle;
	width: 40px;
	height: 40px;
	margin: 20px;
	border-radius: 10px;
	background: #696969;
	border: 5px solid #696969;
	transition: 0.15s;
	-webkit-transition: 0.15s;
	-moz-transition: 0.15s;
	-ms-transition: 0.15s;
	-o-transition: 0.15s;
}
.s6	.inner-box .robot:hover .chckbx {
	background: #aaa;
}
.s6	.inner-box .robot.active .chckbx {
	background: #fff;
}
.s6	.inner-box .robot .txt {
	color: #fff;
	font-size: 16px;
	display: inline-block;
	vertical-align: middle;
	opacity: 0.5;
	transition: 0.15s;
	-webkit-transition: 0.15s;
	-moz-transition: 0.15s;
	-ms-transition: 0.15s;
	-o-transition: 0.15s;
}
.s6	.inner-box .robot.active .txt {
	opacity: 1;
}
.s6	.inner-box .cprt {
	color: #fff;
	font-size: 14px;
	opacity: 0.5;
}
.s6	.inner-box .btxt {
	color: #999;
	font-size: 12px;
	padding: 10px 0;
}
.s6	.inner-box .btxt a {
	color: #fff;
	opacity: 0.5;
}
.s6	.inner-box .btxt a:hover {
	opacity: 1;
}
/*done*/
form .done {
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #212121;
}
form .done:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
	width: 0;
}
form .done .load {
	display: inline-block;
	vertical-align: middle;
    height: 100px;
}
form .done .load span {
    display: block;
    background: rgba(0,0,0,0);
    width: 7px;
    height: 10%;
    border-radius: 14px;
    margin-right: 5px;
    float: left;
    margin-top: 25%;
}
form .done .load span:last-child {
  margin-right: 0px;
}
form .done .load span:nth-child(1) {
  animation: load 2.5s 1.4s infinite linear;
}
form .done .load span:nth-child(2) {
  animation: load 2.5s 1.2s infinite linear;
}
form .done .load span:nth-child(3) {
  animation: load 2.5s 1s infinite linear;
}
form .done .load span:nth-child(4) {
  animation: load 2.5s 0.8s infinite linear;
}
form .done .load span:nth-child(5) {
  animation: load 2.5s 0.6s infinite linear;
}
form .done .load span:nth-child(6) {
  animation: load 2.5s 0.4s infinite linear;
}
form .done .load span:nth-child(7) {
  animation: load 2.5s 0.2s infinite linear;
}
form .done .load span:nth-child(8) {
  animation: load 2.5s 0s infinite linear;
}
form .done .load span:nth-child(9) {
  animation: load 2.5s 0.2s infinite linear;
}
form .done .load span:nth-child(10) {
  animation: load 2.5s 0.4s infinite linear;
}
form .done .load span:nth-child(11) {
  animation: load 2.5s 0.6s infinite linear;
}
form .done .load span:nth-child(12) {
  animation: load 2.5s 0.8s infinite linear;
}
form .done .load span:nth-child(13) {
  animation: load 2.5s 1s infinite linear;
}
form .done .load span:nth-child(14) {
  animation: load 2.5s 1.2s infinite linear;
}
form .done .load span:nth-child(15) {
  animation: load 2.5s 1.4s infinite linear;
}
@keyframes load {
  0% {
    height: 10%;
    margin-top: 25%;
    background: #212121;
  }
  50% {
    height: 100%;
    margin-top: 0%;
    background: #fe4a00;
  }
  100% {
    height: 10%;
    margin-top: 25%;
    background: #212121;
  }
}
form .done p {
	color: #fff;
	font-size: 16px;
	display: inline-block;
	vertical-align: middle;
}
form .done p span {
	color: #fe4a00;
	font-size: 28px;
    display: block;
}
/*s7*/
.s7 {
	font-size: 0;
	z-index: 0;
	overflow: hidden;
}
.s7.dark:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 50%;
	background: #505050;
	z-index: -1;
}
.s7 .open,
.s7 .close {
	display: none;
}
.s7 .content {
	height: 100vh;
}
.s7 .imgs-block {
	position: absolute;
	top: 90px;
	right: 0;
	bottom: 0;
	width: 42.4%;
	overflow: hidden;
    z-index: 1;
}
.s7 .imgs-block .img-box {
	position: absolute;
	top: 0;
	left: 0;
	right: -500px;
	bottom: 0;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	transition: 0.35s;
	-webkit-transition: 0.35s;
	-moz-transition: 0.35s;
	-ms-transition: 0.35s;
	-o-transition: 0.35s;
}
.s7 .imgs-block .img-box.active {
	right: 0;
	opacity: 1;
	visibility: visible;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
	transition-delay: 0.15s;
	-webkit-transition-delay: 0.15s;
	-moz-transition-delay: 0.15s;
	-ms-transition-delay: 0.15s;
	-o-transition-delay: 0.15s;
}
.s7 .imgs-block img {
	position: absolute;
	top: -200%;
	left: -200%;
	right: -200%;
	bottom: -200%;
	margin: auto auto;
	min-height: 100%;
	min-width: 100%;
	max-width: inherit;
	max-height: 200%;
}
.s7 .imgs-block .s7-slider-main {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 150px;
	overflow: hidden;
}
.s7 .imgs-block .s7-mini-slider {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 150px;
	overflow-x: hidden;
}
/**/
.s7 .slick-list,
.s7 .slick-track,
.s7 .slick-slide,
.s7 .slick-slide > div {
	position: relative;
	height: 100%;
}
.s7 .slide {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	overflow: hidden;
}
.s7 .slick-prev:focus,
.s7 .slick-next:focus {
	opacity: 0.7;
}
.s7 .slick-prev:hover,
.s7 .slick-next:hover {
	opacity: 1;
}
.s7 .slick-prev {
	top: -50px;
	left: 50px;
	z-index: 1;
}
.s7 .slick-prev:before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-top: 10px solid #fff;
	border-left: 10px solid #fff;
	transform: rotateZ(-45deg);
}
.s7 .slick-next {
	top: -50px;
	right: 50px;
	width: auto;
	height: auto;
}
.s7 .slick-next:before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-top: 10px solid #fff;
	border-right: 10px solid #fff;
	transform: rotateZ(45deg);
}
/**/
.s7 .inner-block {
	position: relative;
	width: 58%;
	height: 100%;
	background: #fff;
}
.s7 .side-block {
	position: absolute;
	top: 90px;
	left: -1px;
	bottom: 0;
	width: 40%;
	overflow: auto;
	z-index: 2;
}
.s7.dark .side-block {
	background: #505050;
}
.s7 .side-block.single:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}
.s7 .side-block.single ul {
	display: inline-block;
	vertical-align: middle;
	width: 100%;
}
.s7 .side-block.single ul li {
	position: relative;
	padding: 10px 0;
	cursor: pointer;
	transition: 0.15s;
	-webkit-transition: 0.15s;
	-moz-transition: 0.15s;
	-ms-transition: 0.15s;
	-o-transition: 0.15s;
}
.s7 .side-block.single ul svg {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 65px;
	height: 32px;
	margin: auto 0;
	transition: 0.15s;
	-webkit-transition: 0.15s;
	-moz-transition: 0.15s;
	-ms-transition: 0.15s;
	-o-transition: 0.15s;
}
.s7 .side-block.single ul li:hover svg path,
.s7 .side-block.single ul li.active svg path {
	fill: #fff!important;
}
.s7 .side-block.single ul span {
	color: #393939;
	font-size: 14px;
	line-height: 32px;
	display: inline-block;
	padding: 10px 35px 10px 65px;
}
.s7 .side-block.single ul li:hover span,
.s7 .side-block.single ul li.active span {
	color: #fff;
	border-radius: 10px;
	background: #fe4a00;
}
.s7 .side-block.single .cpr {
	color: #727272;
	font-size: 14px;
	position: absolute;
	left: 10px;
	bottom: 3%;
}

.s7 .side-block .side-box {
	color: #fff;
	display: inline-block;
	vertical-align: middle;
	width: 100%;
	padding: 20px 10px;
}
.s7 .side-block .side-box .inner {
	padding: 20px 0;
}
.s7 .side-block .side-box .title {
	color: #fe4a00;
	font-size: 18px;
	padding-bottom: 10px;
}
.s7 .side-block .side-box p {
	font-size: 12px;
	line-height: 20px;
	max-width: 260px;
	opacity: 0.7;
}
.s7 .side-block .side-box .t {
	font-size: 16px;
	line-height: 32px;
	position: relative;
	padding: 10px 0 10px 20px;
	cursor: pointer;
	transition: 0.15s;
	-webkit-transition: 0.15s;
	-moz-transition: 0.15s;
	-ms-transition: 0.15s;
	-o-transition: 0.15s;
}
.s7 .side-block .side-box .t:hover {
	color: #fe4a00;
}
.s7 .side-block .side-box .t:before {
	content: "";
	position: absolute;
    top: 17px;
    left: 3px;
    height: 5px;
    width: 5px;
	border-right: 5px solid #CCC;
	border-bottom: 5px solid #CCC;
	transform: rotateZ(45deg);
	transition: 0.15s;
	-webkit-transition: 0.15s;
	-moz-transition: 0.15s;
	-ms-transition: 0.15s;
	-o-transition: 0.15s;
}
.s7 .side-block .side-box .t:hover:before {
    top: 19px;
	border-color: #fe4a00;
}
.s7 .side-block .side-box .t.active:before {
    top: 20px;
    left: 0;
	border-color: #fe4a00;
	transform: rotateZ(-45deg);
}
.s7 .side-block .side-box .t.active:hover:before {
	left: 3px;
}
.s7 .side-block .side-box li {
	padding-left: 20px;
}
.s7 .side-block .side-box li a {
	color: #fff;
	line-height: 0px;
	position: relative;
	transition: 0.35s;
	-webkit-transition: 0.35s;
	-moz-transition: 0.35s;
	-ms-transition: 0.35s;
	-o-transition: 0.35s;
}
.s7 .side-block .side-box ul.active li a {
	font-size: 14px;
	line-height: 24px;
}
.s7 .side-block .side-box ul.active li a:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 1px;
	background: #fe4a00;
	transition: 0.35s;
	-webkit-transition: 0.35s;
	-moz-transition: 0.35s;
	-ms-transition: 0.35s;
	-o-transition: 0.35s;
}
.s7 .side-block .side-box ul.active li a:hover:before {
	width: 100%;
}

.s7 .main-box {
	text-align: center;
	position: absolute;
	top: 90px;
	left: 40%;
	bottom: 0;
	width: 60%;
	padding: 10px 0;
	overflow: auto;
}
.s7 .main-box:after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}
.s7 .main-box .inner-box {
	text-align: left;
	display: none;
	vertical-align: middle;
	width: 100%;
	max-width: 460px;
	padding: 0 10px;
}
.s7 .main-box .inner-box.active {
	display: inline-block;
}
.s7 .main-box p {
	font-size: 14px;
	line-height: 28px;
	padding: 30px 10px 10px;
}
}
.s7.dark .main-box p {
	font-size: 12px;
}
.s7.dark .main-box .inner {
	padding: 80px 0;
}
.s7.dark .main-box .title {
	font-size: 21px;
	padding: 10px;
}
.s7.dark .main-box .box {
	padding: 10px 0;
}
.s7.dark .main-box .box div {
	font-size: 14px;
	min-width: 145px;
	padding: 0 10px;
	display: inline-block;
	vertical-align: top;
}
.s7.dark .main-box .cpr {
	font-size: 10px;
	padding: 10px;
}
.s7 .scrl {
	position: absolute;
	left: -50px;
	bottom: 40px;
	right: auto;
	z-index: 3;
}
.s7 .scrl.hide {
	display: none;
}
/*preloader*/
.preloader {
	position: fixed;
	top: -100%;
	left: 0;
	right: 0;
    height: 300vh;
	margin: auto 0;
	background: #fff;
	overflow: hidden;
	z-index: 100;
	visibility: visible;
	opacity: 1;
	transition: 1s;
	-webkit-transition: 1s;
	-moz-transition: 1s;
	-ms-transition: 1s;
	-o-transition: 1s;
	transition-delay: 1s;
	-webkit-transition-delay: 1s;
	-moz-transition-delay: 1s;
	-ms-transition-delay: 1s;
	-o-transition-delay: 1s;
}
.preloader.step-3 {
	visibility: hidden;
	opacity: 0;
	top: 0;
}
.preloader:before {
	content: "";
	position: absolute;
	top: -600%;
	left: -10%;
	right: -10%;
	bottom: 0;
	margin: auto auto;
	width: 110%;
	height: 300%;
	border-radius: 100%;
	background: #fe4a00;
	z-index: -1;
	transition: 2.5s;
	-webkit-transition: 2.5s;
	-moz-transition: 2.5s;
	-ms-transition: 2.5s;
	-o-transition: 2.5s;
}
.preloader.step-1:before {
	top: 0;
}
.preloader.step-2:before {
	background: #fff;
}
.preloader svg {
	width: 300px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto auto;
	opacity: 0;
	transition: 1.5s;
	-webkit-transition: 1.5s;
	-moz-transition: 1.5s;
	-ms-transition: 1.5s;
	-o-transition: 1.5s;
	transition-delay: 0.5s;
	-webkit-transition-delay: 0.5s;
	-moz-transition-delay: 0.5s;
	-ms-transition-delay: 0.5s;
	-o-transition-delay: 0.5s;
}
.preloader.step-1 svg {
	opacity: 1;
}
.preloader svg #Group_1,
.preloader svg #Group_4,
.preloader svg #Group_5 {
	fill: #fff;
	transition: 1.5s;
	-webkit-transition: 1.5s;
	-moz-transition: 1.5s;
	-ms-transition: 1.5s;
	-o-transition: 1.5s;
}
.preloader.step-2 svg #Group_1,
.preloader.step-2 svg #Group_4,
.preloader.step-2 svg #Group_5 {
	fill: #4C4C4C;
}