/*------------    RESET  --------------*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent
}
body {
	line-height:1
}
ol, ul {
	list-style:none
}
blockquote, q {
	quotes:none
}
blockquote:before, blockquote:after, q:before, q:after {
	content:'';
	content:none
}
:focus {
	outline:0
}
ins {
	text-decoration:none
}
del {
	text-decoration:line-through
}
table {
	border-collapse:collapse;
	border-spacing:0
}
.clear {
	clear:both;
	display:block;
	overflow:hidden;
	visibility:hidden;
	width:0;
	height:0
}
.clearfix:after {
	clear:both;
	content:' ';
	display:block;
	font-size:0;
	line-height:0;
	visibility:hidden;
	width:0;
	height:0
}
.clearfix {
	display:inline-block
}
* html .clearfix {
	height:1%
}
.clearfix {
	display:block
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box; /* Firefox */
    -webkit-box-sizing: border-box;/* Safari and Chrome */
}
.wrapper {
	width: 100%;
	max-width: 1300px;
	padding-left: 15px;
	padding-right: 15px;
	margin: 0 auto;
	display: block;
}


.display_flex {
	display: -webkit-flex;
		display: flex;
}
.flex_wrap {
	-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
			-ms-flex-wrap: wrap;
				flex-wrap: wrap;
}
.jc_sb {
	-webkit-justify-content: space-between;
		-moz-justify-content: space-between;
			-ms-justify-content: space-between;
				justify-content: space-between;
}
.jc_center {
	-webkit-justify-content: center;
		-moz-justify-content: center;
			-ms-justify-content: center;
				justify-content: center;
}
.ai_center {
	-webkit-align-items: center;
		-moz-align-items: center;
			-ms-align-items: center;
				align-items: center;
}
.row {
	width: calc(100% + 30px);
	margin-left: -15px;
	margin-right: -15px;
	display: -webkit-flex;
		display: flex;
	-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
			-ms-flex-wrap: wrap;
				flex-wrap: wrap;
}
.col-6, .col-mob-6 {
	-webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 15px;
    padding-right: 15px;
}
.col-12 {
	-webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}
.mob_visible {
	display: none;
}
.mob_invisible { 
	display: block;
}

.blue_light { background: #f4fbff; }

body {
	font-size: 20px;
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	line-height: 28px;
	color: #212121;
	min-width: 320px;
	overflow-x: hidden;
}
body:after {
	content: '';
	width: 100%;
	height: 0;
    display: block;
	background: rgba(0,0,0,.4);
	position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    pointer-events: none;
	-webkit-transition: all .25s ease;
		-moz-transition: all .25s ease;
			transition: all .25s ease;
}
body.active_nav { overflow: hidden; }
body.active_nav:after {
	height: 100vh;
}


/* ---- HEADER ---- */
.header {
	width: 100%;
	height: 130px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 200;
	background: rgb(255,255,255);
	background: -moz-linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,1) 100%);
	background: -webkit-linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,1) 100%);
	background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
	-webkit-transition: all .5s ease;
		-moz-transition: all .5s ease;
			transition: all .5s ease;
}
.header .head { padding-top: 27px; }
.header.scroll {
	background: #ffffff;
	height: 64px;
	box-shadow: 5px 0 10px rgba(0,0,0,.15);
}
.header.scroll .head {
	padding: 15px 0;
}
.header.active_nav { background: #ffffff; }
.toggle_mobile_nav {
	width: 30px;
	height: 30px;
	display: none;
	position: absolute;
	top: 18px;
	left: 40px;
}
.header.scroll .head .toggle_mobile_nav { top: 18px; }
.toggle_mobile_nav span {
	width: 30px;
	height: 2px;
	display: block;
	background: #333333;
	position: absolute;
	left: 0;
	cursor: pointer;
	-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
			transition: all .3s ease;
}
.toggle_mobile_nav span:nth-of-type(1) { top: 7px; }
.toggle_mobile_nav span:nth-of-type(2) { top: 14px; }
.toggle_mobile_nav span:nth-of-type(3) { top: 21px; }
.toggle_mobile_nav.active span:nth-of-type(2) {
	left: 50%;
	width: 0;
	-webkit-transform: translateX(-50%);
		-moz-transform: translateX(-50%);
			transform: translateX(-50%);
}
.toggle_mobile_nav.active span:nth-of-type(1) {
	width: 20px;
	top: 50%;
	left: 5px;
	-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
			transform: rotate(-45deg);
}
.toggle_mobile_nav.active span:nth-of-type(3) {
	width: 20px;
	top: 50%;
	left: 5px;
	-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
			transform: rotate(45deg);
}
.logo {
	margin-right: 15px;
	max-width: 320px;
}
.logo .logo_icon img {
	max-width: 100%;
	height: auto;
	display: block;
}
.navigation nav {
	padding-top: 4px;
	margin-right: 35px;
}
.navigation nav ul {
	display: -webkit-flex;
		display: flex;
}
.navigation nav ul li {
	margin: 0 15px;
}
.navigation nav ul li a {
	font-size: 14px;
	font-weight: 900;
	color: #212121;
	text-decoration: none;
	text-transform: uppercase;
	-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
			transition: all .3s ease;
}
.navigation nav ul li a:hover { color: #999999; }

.lang_block {
	position: relative;
	-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
			transition: all .3s ease;
}
.lang_block .active_lang {
	width: 100%;
	padding: 8px 8px 4px 8px;
	cursor: pointer;
	position: relative;
	z-index: 250;
	display: block;
	-webkit-transition: all .5s ease;
		-moz-transition: all .5s ease;
			transition: all .5s ease;
	-webkit-border-radius: 4px 4px 0 0;
		-moz-border-radius: 4px 4px 0 0;
			border-radius: 4px 4px 0 0;
}
.lang_block.open .active_lang {
	background: #ffffff;
	-webkit-transition: all .5s ease;
		-moz-transition: all .5s ease;
			transition: all .5s ease;
	-webkit-box-shadow: -5px -5px 10px -5px rgba(0,0,0,.25), 5px -5px 10px -5px rgba(0,0,0,.25);
		-moz-box-shadow: -5px -5px 10px -5px rgba(0,0,0,.25), 5px -5px 10px -5px rgba(0,0,0,.25);
			box-shadow: -5px -5px 10px -5px rgba(0,0,0,.25), 5px -5px 10px -5px rgba(0,0,0,.25);
}
.lang_block .active_lang * { display: block; }
.lang_block .active_lang:before {
	content: '';
	width: 18px;
	height: 18px;
	display: none;
	background: url('../images/svg/arrow_down.svg') center center no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	right: -20px;
	-webkit-opacity: .4;
		-moz-opacity: .4;
			opacity: .4;
	-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);	
			transform: translateY(-50%);
	-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
			transition: all .3s ease;
}
.lang_block.open .active_lang:before {
	display: block;
	-webkit-transform: translateY(-50%) rotate(-180deg);
		-moz-transform: translateY(-50%) rotate(-180deg);
			transform: translateY(-50%) rotate(-180deg);
}
.lang_block .active_lang .active_lang_icon {
	height: 24px;
	display: block;
}
.lang_block ul, .lang_block ul li, .lang_block ul li .lang_item_icon, .lang_block ul li .lang_item_icon img {
	width: 100%;
	height: auto;
	display: block;
}
.lang_block ul {
	position: absolute;
	top: 36px;
	left: 0;
	display: none;
	background: #ffffff;
	-webkit-border-radius: 0 0 4px 4px;
		-moz-border-radius: 0 0 4px 4px;
			border-radius: 0 0 4px 4px;
	-webkit-box-shadow: 5px 0 10px rgba(0,0,0,.25);
		-moz-box-shadow: 5px 0 10px rgba(0,0,0,.25);
			box-shadow: 5px 0 10px rgba(0,0,0,.25);
}
.lang_block ul li .lang_item_icon {
	padding: 4px 8px;
	cursor: pointer;
}
.lang_block ul li .lang_item_icon img {
	width: 100%;
	height: 24px;
	display: block;
}




/* ---- PANDORA CAMPER ---- */
.pandora_camper {
	width: 100%;
	height: auto;
	min-height: 100vh;
	background: url('../images/pandora_camper.jpg') center center no-repeat;
	background-size: cover;
	position: relative;
}
.pandora_camper:after {
	content: '';
	width: 100%;
	height: 130px;
	display: block;
	background: -moz-linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,1) 100%);
	background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
	position: absolute;
	bottom: 0;
	left: 0;
}
.pandora_camper .pandora_camper__text {
	width: 60%;
    position: absolute;
    top: 37%;
    left: 50%;
    color: #fff;
    -webkit-transform: translateX(-50%);
    	-moz-transform: translateX(-50%);
    		transform: translateX(-50%);
}
.pandora_camper .pandora_camper__text .title {
	text-transform: uppercase;
	font-size: 64px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1;
    margin-bottom: 40px;
    display: block;
}
.pandora_camper .pandora_camper__text .title span { color: #ffd167; }
.pandora_camper .pandora_camper__text .description {
	max-width: 580px;
	font-size: 24px;
	font-weight: 300;
	color: #ffffff;
	line-height: 32px;
}


/* ---- INFO BLOCK ---- */
.info_block {
	width: 100%;
	height: auto;
	display: block;
	padding: 90px 0;
}
.info_block.locate_track {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.info_block .img_block img, .info_block .video_block_cover, .info_block .video_block_cover img {
	width: auto;
	height: auto;
	display: block;
	max-width: 90%;
	margin: auto;
}
.info_block .video_block_cover, .info_block .video_block_cover img {
	position: relative;
}
.info_block .video_block_cover img {
	max-width: 100%;
	z-index: 5;
}
.info_block .video_cover {
	display: block;
	position: absolute;
	z-index: 1;
}
.info_block .video_cover.pro_bt_app {
	width: 225px;
	height: 482px;
    top: 43px;
    left: 50%;
    -webkit-transform: translateX(-200px);
    	-moz-transform: translateX(-200px);
    		transform: translateX(-200px);
}
.info_block .video_cover.locate {
	width: 225px;
	height: 482px;
    top: 13px;
    left: 50%;
    -webkit-transform: translateX(-112px);
    	-moz-transform: translateX(-112px);
    		transform: translateX(-112px);
}
.info_block .video_block_cover video {
	width: 100%;
	height: 100%;
	display: block;
	-webkit-object-fit: cover;
		object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}
.info_block__data .title {
	text-transform: uppercase;
	font-size: 40px;
	font-weight: 300;
	color: #000000;
	display: block;
	line-height: 50px;
	margin-bottom: 55px;
}
.info_block__data  .description {
	font-size: 20px;
	font-weight: 300;
	color: #212121;
	line-height: 28px;
}
.locate_track .info_block__data .title, .locate_track .info_block__data  .description { color: #ffffff; }
.info_block__data  .description p { margin-top: 35px; }
.info_block__data  .description p:first-child { margin-top: 0; }
.info_block__data  .description ul li {
	display: block;
	padding-left: 45px;
	position: relative;
	margin-top: 35px;
}
.info_block__data  .description ul li:before,
.info_block__data  .description ul li:after {
	content: '';
	display: block;
	position: absolute;
	-webkit-border-radius: 50%;
		-moz-border-radius: 50%;
			border-radius: 50%;
}
.info_block__data  .description ul li:before {
	width: 24px;
	height: 24px;
	background: #ffd167;
	box-shadow: 0 0 25px #ffd167;
	top: 2px;
	left: 0;
}
.info_block__data  .description ul li:after {
	width: 6px;
	height: 6px;
	background: #000000;
	top: 11px;
	left: 9px;
}
.info_block__data  .description .app_links {
	display: block;
	margin-top: 35px;
}
.info_block__data  .description .app_links a {
	width: 131px;
	height: 40px;
	display: inline-block;
	margin-right: 15px;
	-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
			transition: all .3s ease;
}
.info_block__data  .description .app_links a.g_play {
	background: url('../images/g_play.png') center center no-repeat;
	background-size: contain;
}
.info_block__data  .description .app_links a.app_store {
	background: url('../images/app_store.png') center center no-repeat;
	background-size: contain;
	margin-right: 0;
}
.info_block__data  .description .app_links a:hover {
	-webkit-opacity: .7;
		-moz-opacity: .7;
			opacity: .7;
}


/* ---- PARALLAX BLOCK ---- */
.parallax_block {
	width: 100%;
	display: block;
	padding: 180px 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}
.parallax_block.parallax_onlytitle { padding: 270px 0; }
.parallax_block .parallax_block__data {
	width: calc(100% - 80px);
	max-width: 850px;
	padding: 50px 40px;
	margin: 0 auto;
	display: block;
	background: #ffffff;
	background: rgba(255,255,255,.85);
}
.parallax_block.parallax_content_left .parallax_block__data {
	margin-left: 0;
	max-width: 630px;
}
.parallax_block.parallax_onlytitle .parallax_block__data {
	background: transparent;
	max-width: 100%;
	padding: 0;
}
.parallax_block .parallax_block__data .title {
	text-transform: uppercase;
	font-size: 40px;
	font-weight: 300;
	color: #000000;
	display: block;
	line-height: 50px;
	margin-bottom: 45px;
	text-align: center;
}
.parallax_block.parallax_onlytitle .parallax_block__data .title {
	color: #ffffff;
	text-align: left;
	margin-bottom: 0;
}
.parallax_block .parallax_block__data .description {
	font-size: 20px;
	font-weight: 300;
	color: #212121;
	line-height: 28px;
	text-align: center;
}
.parallax_block .parallax_block__data .description p { margin: 15px 0; }
.parallax_block.parallax_content_left .title, .parallax_block.parallax_content_left .description { text-align: left; }


/* ---- ADVANTAGES ---- */
.advantages {
	width: 100%;
	display: block;
	padding: 100px 0;
	background: #ffd167;
}
.advantages .advantages_title {
	font-size: 40px;
	font-weight: 300;
	text-transform: uppercase;
	color: #000000;
	display: block;
	margin-bottom: 30px;
}
.advantages .advantage_item {
	width: 100%;
	margin-top: 15px;
}
.advantages .advantage_item .advantage_item__icon {
	width: 50px;
	padding-top: 27px;
	margin-right: 30px;
}
.advantages .advantage_item .advantage_item__icon img {
	width: auto;
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	max-height: 50px;
}
.advantages .advantage_item .advantage_item__data {
	width: calc(100% - 80px);
	padding-top: 27px;
	position: relative;
}
.advantages .advantage_item .advantage_item__data .title {
	font-size: 22px;
	font-weight: 400;
	line-height: 1.3;
	display: block;
	margin-bottom: 15px;
}
.advantages .advantage_item .advantage_item__data .description {
	font-size: 20px;
	font-weight: 300;
	color: #212121;
	line-height: 28px;
}
.advantages .advantage_item .advantage_item__data .title,
.advantages .advantage_item .advantage_item__data .description {
	position: relative;
	z-index: 5;
}
.advantages .advantage_item .advantage_item__data .number {
	font-size: 100px;
	font-weight: 900;
	line-height: 80px;
	color: rgba(0,0,0,.1);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}


/* ---- VIDEO BLOCK --- */
.video_block {
	width: 100%;
	display: block;
	padding: 100px 0;
}
.video_block .wrapper { margin-bottom: 55px; }
.video_block .video_block_title {
	font-size: 40px;
	font-weight: 300;
	text-transform: uppercase;
	color: #000000;
	display: block;
}
.video_slider_nav div {
	width: 40px;
	height: 40px;
	display: inline-block;
	margin-left: 15px;
	position: relative;
	cursor: pointer;
	border: 1px solid #e2e2e2;
	-webkit-border-radius: 50%;
		-moz-border-radius: 50%;
			border-radius: 50%;
	-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
			transition: all .3s ease;
}
.video_slider_nav div.swiper-button-disabled {
	cursor: no-drop;
	-webkit-opacity: .3;
		-moz-opacity: .3;
			opacity: .3;
}
.video_slider_nav div:after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
		-moz-transform: translate(-50%, -50%);
			transform: translate(-50%, -50%);
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
}
.video_slider_nav div.video_slider_nav_prev:after {
	border-right: 6px solid #000;
	margin-left: -1px;
}
.video_slider_nav div.video_slider_nav_next:after {
	border-left: 6px solid #000;
	margin-left: 1px;
}
.video_slider { padding-left: calc(50% - 635px); }
.video_slider .video_slider_item {
	/*width: 630px;*/
	width: 100%;
	height: 420px;
	display: block;
	position: relative;
	float: left;
}
.video_slider .video_slider_item .video_poster {
	width: 100%;
	height: 100%;
	display: block;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
}
.video_slider .video_slider_item .video_link {
	width: 100%;
	height: 100%;
	display: block;
	background: rgba(0,0,0,.2);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
			transition: all .3s ease;
}
.video_slider .video_slider_item .video_link:hover {
	-webkit-opacity: .5;
		-moz-opacity: .5;
			opacity: .5;
}
.video_slider .video_slider_item .play_btn {
	width: 64px;
	height: 64px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: 2px;
	z-index: 15;
	pointer-events: none;
	-webkit-transform: translate(-50%, -50%);
		-moz-transform: translate(-50%, -50%);
			transform: translate(-50%, -50%);
	cursor: pointer;
	border: 3px solid #ffffff;
	-webkit-border-radius: 50%;
		-moz-border-radius: 50%;
			border-radius: 50%;
	-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
			transition: all .3s ease;
}
.video_slider .video_slider_item .play_btn:after {
	content: '';
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 10px solid #000;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
		-moz-transform: translate(-50%, -50%);
			transform: translate(-50%, -50%);
}
.video_slider .video_slider_item:hover .play_btn {
	background: #ffd167;
	border-color: #ffd167;
}


/* ---- BRANDS ---- */
.brands {
	width: 100%;
	display: block;
	background: #ffd167;
}
.brands .brand {
	width: auto;
	display: block;
	margin: 8px 60px;
}
.brands .brand img {
	width: auto;
	height: auto;
	max-height: 80px;
	display: block;
}



/* ---- TABS ---- */
.tabs {
	display: block;
	padding: 100px 0;
}
.tabs .tabs_head { margin-bottom: 40px; }
.tabs .tabs_head .tad_head {
	text-transform: uppercase;
	font-size: 28px;
	font-weight: 300;
	line-height: 1;
	padding: 0 10px 15px 10px;
	margin-left: 43px;
	cursor: pointer;
	border-bottom: 3px solid #eeeeee;
	-webkit-transition: all .5s ease;
		-moz-transition: all .5s ease;
			transition: all .5s ease;
}
.tabs .tabs_head .tad_head:first-child { margin-left: 0; }
.tabs .tabs_head .tad_head:hover, .tabs .tabs_head .tad_head.active {
	font-weight: 400;
	border-bottom: 3px solid #ffd167;
}

.tabs .tabs_content, .tabs .tab_content.active {
	width: 100%;
	display: block;
}
.tabs .tab_content,
.tabs .sub-tab_content {
	width: 100%;
	display: none;
}
.tabs .tab_content .tab_content__subhead { margin-bottom: 60px; }
.tabs .tab_content .tab_content__subhead .tab_subhead {
	font-size: 22px;
	font-weight: 400;
	color: #999;
	cursor: pointer;
	margin-left: 35px;
	border-bottom: 1px solid transparent;
	-webkit-transition: all .5s ease;
		-moz-transition: all .5s ease;
			transition: all .5s ease;
}
.tabs .tab_content .tab_content__subhead .tab_subhead:hover,
.tabs .tab_content .tab_content__subhead .tab_subhead.active {
	color: #000;
}
.tabs .tab_content .tab_content__subhead .tab_subhead.active {
	border-bottom-color: #ffd167;
}

.tabs .tab_content li, .tabs .tab_content p {
	font-size: 20px;
	font-weight: 300;
	color: #212121;
	line-height: 32px;
}
.tabs .tab_content li {
	position: relative;
	padding-left: 35px;
	color: #999999;
	-webkit-transition: all .5s ease;
		-moz-transition: all .5s ease;
			transition: all .5s ease;
}
.tabs .tab_content li.active { color: #212121; }
.tabs .tab_content li:before {
	content: '';
	width: 6px;
	height: 6px;
	display: block;
	background: #e0e0e0;
	position: absolute;
	top: 14px;
	left: 0;
	-webkit-border-radius: 50%;
		-moz-border-radius: 50%;
			border-radius: 50%;
}
.tabs .tab_content li.active:before { background: #ffd167; }



/* ---- EQUIPMENT ---- */
.equipment {
	display: block;
	padding: 100px 0;
}
.equipment .title {
	text-transform: uppercase;
	font-size: 40px;
	font-weight: 300;
	color: #000000;
	display: block;
	line-height: 50px;
	margin-bottom: 55px;
}
.equipment__content { width: 100%; }
.equipment__content .preview {
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	width: 410px;
	height: 410px;
	margin-top: 20px;
	padding: 20px 15px;
}
.equipment__content .preview .equipment_data {
	max-width: 100%;
	overflow: hidden;
}
.equipment__content .preview .equipment_img {
	display: block;
	margin-bottom: 12px;
}
.equipment__content .preview .equipment_img img {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 200px;
	display: block;
	margin: 0 auto;
}
.equipment__content .preview .equipment_title {
	display: block;
	margin-bottom: 12px;
	text-align: center;
	font-size: 22px;
	font-weight: 400;
	color: #212121;
}
.equipment__content .preview .equipment_description {
	max-width: 100%;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
}
.equipment__content .equipment_slider {
	width: calc(100% - 410px);
	height: 460px;
	padding-top: 20px;
    padding-left: 32px;
}
.equipment__content .equipment_slider .swiper-wrapper {
	height: 410px;
	/*-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
			flex-wrap: wrap;*/
}
.equipment__content .equipment_slider .swiper-slide {
	height: calc((100% - 32px) / 2);
}
.equipment__content .equipment_slider .equipment_data {
	width: 100%;
	height: 100%;
	padding: 20px 15px;
	cursor: pointer;
	-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
			transition: all .3s ease;
}
.equipment__content .equipment_slider .equipment_data:hover {
	box-shadow: 0 0 20px rgba(0,0,0,.15);
}
.equipment__content .equipment_slider .equipment_data .equipment_img {
	display: block;
	margin-bottom: 20px;
}
.equipment__content .equipment_slider .equipment_data .equipment_img  img {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100px;
	display: block;
	margin: 0 auto;
}
.equipment__content .equipment_slider .equipment_data .equipment_title {
	display: block;
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	color: #212121;
}
.equipment_pagination {
	width: 100%;
	text-align: center;
}
.equipment_pagination span { margin: 0 4px; }



/* ---- MAP ---- */
.map_container {
	width: 100%;
	display: block;
	padding-top: 80px;
}
.map_container .title {
	width: auto;
	text-transform: uppercase;
	font-size: 40px;
	font-weight: 300;
	color: #000000;
	display: block;
	line-height: 50px;
}
.map_container .select_country {
	position: relative;
	width: 410px;
	height: 56px;
}
.map_container .select_country select {
	width: 100%;
	height: 100%;
	font-size: 20px;
	font-weight: 300;
	color: #212121;
	padding: 0 35px 0 20px;
	border: 1px solid #e0e0e0;
	cursor: pointer;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.map_container .select_country select::-ms-expand {
    display: none;
}
.map_container .select_country:after {
	content: '';
	display: block;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 6px solid #000000;
	position: absolute;
    top: 50%;
    right: 20px;
    z-index: 1;
    margin-top: -3px;
    pointer-events: none;
}
.map_container .map_contain {
	width: 100%;
	height: 600px;
	display: block;
	margin-top: 40px;
	overflow: hidden;
	position: relative;
}
.map_container .map_contain img {
	width: auto;
	height: 100%;
	display: block;
	position: relative;
	left: 50%;
	z-index: 1;
	-webkit-transform: translateX(-50%);
		-moz-transform: translateX(-50%);
			transform: translateX(-50%);
}
/*
.map_container .infowindow {
	width: 200px;
	height: auto;
	display: block;
	background: #ffffff;
	padding: 15px;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 5;
	-webkit-transform: translate(-50%, -50%);
		-moz-transform: translate(-50%, -50%);
			transform: translate(-50%, -50%);
	-webkit-box-shadow: 5px 5px 10px rgba(0,0,0,.15);
		-moz-box-shadow: 5px 5px 10px rgba(0,0,0,.15);
			box-shadow: 5px 5px 10px rgba(0,0,0,.15);

}
*/
.map_container .infowindow .company_name {
	display: block;
	font-size: 16px;
	font-weight: 600;
}
.map_container .infowindow p {
	font-size: 14px;
	font-weight: 400;
	margin: 7px 0;
	line-height: 1.5;
}
.map_container .infowindow a {
	color: #f6b31a;
	text-decoration: none;
	border-bottom: 1px dashed #f6b31a;
}
.map_container .infowindow a:hover { border-bottom: transparent; }



/* ---- FAQ ---- */
.faq_block {
	width: 100%;
	padding: 100px 0;
	background: #ffd167;
}
.faq_block .wrapper { position: relative; }
.faq_block .wrapper:after {
	content: 'FAQ';
	font-size: 333px;
	font-weight: 900;
	line-height: 1;
	color: rgba(0,0,0,.08);
	position: absolute;
	top: 120px;
	right: 0;
	z-index: 1;
}
.faq_block .head_faq {
	margin-bottom: 40px;
	position: relative;
	z-index: 5;
}
.faq_block .head_faq .title {
	width: auto;
	text-transform: uppercase;
	font-size: 40px;
	font-weight: 300;
	color: #000000;
	display: block;
	line-height: 50px;
}
.faq_block .head_faq .faq_toggle_btn {
	width: 410px;
	height: 56px;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	text-align: center;
	border: 2px solid #ffffff;
	background: transparent;
	cursor: pointer;
	-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
			transition: all .3s ease;
}
.faq_block .head_faq .faq_toggle_btn:hover { background: #ffffff; }
.faq_block .faq_content {
	width: 100%;
	max-width: 850px;
	position: relative;
	z-index: 5;
}
.faq_content .faq_item {
	width: 100%;
	display: block;
	padding: 17px 0 17px 60px;
	position: relative;
	border-top: 1px solid #ffffff;
	border-top: 1px solid rgba(255,255,255,.5);
}
.faq_content .faq_item:first-child { border-top: 0; }
.faq_content .faq_item .faq_item__title {
	display: block;
	font-size: 22px;
	font-weight: 400;
	color: #212121;
	line-height: 1.3;
	position: relative;
	cursor: pointer;
}
.faq_content .faq_item .faq_item__title:before {
	content: '+';
	width: 32px;
	height: 32px;
	font-size: 22px;
	font-weight: 400;
	color: #ffd167;
	text-align: center;
	line-height: 32px;
	background: #333333;
	display: block;
	position: absolute;
	top: -3px;
	left: -60px;
	-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
			transition: all .3s ease;
}
.faq_content .faq_item.active .faq_item__title:before, .faq_content .faq_item .faq_item__title:hover:before {
	background: #ffffff;
	color: #333333;
}
.faq_content .faq_item.active .faq_item__title:before {
	content: '\2212';
}
.faq_content .faq_item .faq_item__data {
	display: none;
	font-size: 20px;
	font-weight: 300;
	color: #212121;
	line-height: 28px;
	margin-top: 10px;
}


/* ---- TEAMS ---- */
.teams {
	width: 100%;
	padding: 100px 0;
}
.teams_slider .team_item {
	width: 25%;
	text-align: center;
}
.teams_slider .team_item .team_photo {
	width: 160px;
	height: 160px;
	display: block;
	margin: 0 auto 30px;
	-webkit-border-radius: 50%;
		-moz-border-radius: 50%;
			border-radius: 50%;
}
.teams_slider .team_item .team_photo img {
	width: 100%;
	height: 100%;
	display: block;
	-webkit-object-fit: cover;
	object-fit: cover;
	border-radius: 50%;
}
.teams_slider .team_item .team_name {
	display: block;
	font-size: 20px;
	font-weight: 400;
}
.teams_slider .team_item .team_place {
	display: block;
	font-size: 18px;
	font-weight: 300;
}
.teams_slider .team_item .team_email a {
	font-size: 18px;
	font-weight: 300;
	color: #f6b31a;
	text-decoration: none;
	border-bottom: 1px dashed #f6b31a;
	-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
			transition: all .3s ease;
}
.teams_slider .team_item .team_email a:hover { border-bottom: 1px solid transparent; }



/* ---- FOOTER ---- */
.footer {
	width: 100%;
	display: block;
	background: #212121;
	padding: 80px 0;
}
.footer .footer_logo {
	display: block;
	margin-bottom: 75px;
}
.footer .footer_logo a {
	width: auto;
	display: table;
}
.footer .footer_logo img {
	width: auto;
	max-width: 230px;
	height: auto;
	display: block;
}
.footer .social {
	display: block;
	margin-bottom: 20px;
}
.footer .social a {
	width: 40px;
	height: 40px;
	display: inline-block;
	text-align: center;
	line-height: 40px;
	margin-left: 12px;
	background: #383838;
	border: 2px solid #1e1e1e;
	-webkit-border-radius: 50%;
		-moz-border-radius: 50%;
			border-radius: 50%;
	-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
			transition: all .3s ease;
}
.footer .social a:first-child { margin-left: 0; }
.footer .social a:nth-child(2){ margin-left: 0; }
.footer .social a svg {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 18px;
	display: block;
	margin: 9px auto;
	fill: #ffffff;
	-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
			transition: all .3s ease;
}
.footer .social a:hover {
	background: #ffd167;
	border-color: #000000;
}
.footer .social a:hover svg { fill: #212121; }
.footer .phone {
	font-size: 28px;
	font-weight: 400;
	color: #ffffff;
	display: block;
	margin-bottom: 20px;
}
.footer .email {
	display: block;
	margin-bottom: 50px;
}
.footer .email a {
	font-size: 20px;
	font-weight: 300;
	color: #f6b31a;
	text-decoration: none;
	border-bottom: 1px dashed #f6b31a;
	-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
			transition: all .3s ease;
}
.footer .email a:hover { border-bottom: 1px solid transparent; }
.footer .copy {
	font-size: 16px;
	font-weight: 300;
	color: #ffffff;
	color: rgba(255,255,255,.5);
}
.footer .copy a {
	text-decoration: none;
	color: #f6b31a;
}
.footer .feedback_block {
	width: 100%;
	max-width: 520px;
	margin-left: auto;
}
.footer .feedback_block .feedback_title {
	display: block;
	font-size: 22px;
	font-weight: 400;
	color: #ffffff;
	margin-bottom: 30px;
	line-height: 1;
}
.footer .feedback_block .feedback_form > div { margin-top: 15px; }
.footer .feedback_block .feedback_form input, .footer .feedback_block .feedback_form textarea {
	width: 100%;
	color: #fff;
	border: 2px solid #383838;
	padding-left: 20px;
	padding-right: 20px;
	font-size: 16px;
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	background: transparent;
	-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
			transition: all .3s ease;
}
.footer .feedback_block .feedback_form input { height: 56px; }
.footer .feedback_block .feedback_form textarea {
	min-height: 130px;
	padding-top: 15px;
	padding-bottom: 15px;
	resize: none;
	overflow-y: auto;
}
.footer .feedback_block .feedback_form input:focus, .footer .feedback_block .feedback_form textarea:focus { color: #ffffff; }
.footer .feedback_block .feedback_form .feedback_row-6 {
	width: calc(50% - 7px);
	margin-left: 14px;
}
.footer .feedback_block .feedback_form .feedback_row-6:first-child { margin-left: 0; }
.footer .feedback_block .feedback_form .feedback_row-6:nth-child(3) { margin-left: 0;}
.footer .feedback_block .feedback_form .feedback_row-12 { width: 100%; }
.footer .feedback_block .feedback_form .political {
	width: calc(100% - 235px);
	font-size: 13px;
	font-weight: 300;
	color: #999999;
	line-height: 20px;
}
.footer .feedback_block .feedback_form .political a {
	color: #999999;
	text-decoration: none;
	border-bottom: 1px solid #999999;
	-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
			transition: all .3s ease;
}
.footer .feedback_block .feedback_form .political a:hover { border-color: transparent; }
.footer .feedback_block .feedback_form  .political .checked  {
 	height: 20px;
 	width:10%;
 }
.footer .feedback_block .feedback_form .feedback_btn {
	width: 157px;
	height: 56px;
	background: transparent;
	text-align: center;
	cursor: pointer;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 600;
	color: #ffffff;
	border: 2px solid #ffd167;
	-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
			transition: all .3s ease;
}
.footer .feedback_block .feedback_form .feedback_btn:hover {
	background: #ffd167;
	color: #1e1e1e;
}



/* ---- POPUP ---- */
.overlay, .popup {
	width: 100%;
	height: 100%;
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	-webkit-transform: translateY(-100%);
		-moz-transform: translateY(-100%);
			transform: translateY(-100%);
	-webkit-transition: all .7s ease;
		-moz-transition: all .7s ease;
			transition: all .7s ease;
}
.overlay.active, .popup.active {
	-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
			transform: translateY(0);
}
.overlay {
	background: rgb(0,0,0,.5);
	z-index: 8990;
}
.popup {
	z-index: 8992;
	overflow-y: auto;
	/*pointer-events: none;*/
}
.popup_body {
	width: 90%;
	max-width: 530px;
	background: #ffffff;
	padding: 60px;
	margin: 50px auto;
	position: relative;
}
.popup_body .close_popup {
	width: 25px;
	height: 25px;
	display: block;
	background: url('../images/svg/close.svg') center center no-repeat;
	background-size: 20px 20px;
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 9995;
}
.popup_body .popup_title {
	display: block;
	font-size: 28px;
	font-weight: 400;
	text-transform: uppercase;
	color: #000000;
	line-height: 1;
	margin-bottom: 20px;
}
.popup_body.popup_thank .popup_title { text-align: center; }
.popup_body .popup_description {
	display: block;
	font-size: 20px;
	font-weight: 300;
	color: #212121;
	line-height: 28px;
	margin-bottom: 35px;
}
.popup_body.popup_thank .popup_description  {
	text-align: center;
	margin-bottom: 0;
}
.popup_body .popup_form input, .popup_body .popup_form textarea, .popup_body .popup_form button {
	width: 100%;
	font-size: 16px;
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	color: #000000;
	margin-top: 15px;
}
.popup_body .popup_form .checked {
	margin-top: 0px;
	height: 34px;
	width: 50%;
}

.popup_body .popup_form input, .popup_body .popup_form button {
	height: 56px;
	padding: 0 20px;
}
.popup_body .popup_form input, .popup_body .popup_form textarea { border: 2px solid #eeeeee; }
.popup_body .popup_form textarea {
	padding: 18px 20px;
	min-height: 130px;
	resize: none;
	overflow-y: auto;
}
.popup_body .popup_form button {
	background: #ffd167;
	text-align: center;
	text-transform: uppercase;
	font-weight: 600;
	border: 2px solid #ffd167;
	cursor: pointer;
	-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
			transition: all .3s ease;
}
.popup_body .popup_form button:hover { background: transparent; }
.popup_body .popup_form .mess {
	display: flex;
	font-size: 14px;
	font-weight: 300;
	color: #999999;
	line-height: 20px;
	margin-top: 15px;
}
.popup_body .is_done_icon {
	width: 100%;
	display: block;
	margin-bottom: 30px;
}
.popup_body .is_done_icon img {
	width: auto;
	max-width: 100%;
	height: 42px;
	display: block;
	margin: 0 auto;
}


/* ---- CUSTOM SLIDER ---- */
.swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #999999;
	-webkit-opacity: .5;
		-moz-opacity: .5;
			opacity: .5;
}
.swiper-pagination-bullet-active {
	background: #999999;
	-webkit-opacity: 1;
		-moz-opacity: 1;
			opacity: 1;
}
.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic { margin-top: 15px; }