/* Базовые стили, типографика и саппорт классы */
html {
	height: 100%;
}

html, body {
	background-color: white;
	box-sizing: border-box;
	min-height: 100%;
	font-family: 'FuturaPT-Book', sans-serif;
}

.h1, .h2, .h3, .h4, .h5, .h6, .header_title,
h1, h2, h3, h4, h5, h6 {
	font-family: 'FuturaPT-Medium', sans-serif;
	font-weight: normal;
	text-transform: uppercase;
	color: #2b2e2f;
	letter-spacing: 0.145em;
	margin: 1.3em 0;
}

.header_title {
	font-size: 28px;
	margin-bottom: 0.4em;
}

.h1,
h1 {
	font-size: 42px;
	margin-bottom: 0.4em;
}

.h2,
h2 {
	font-size: 24px;
	/*font-family: 'FuturaPT-Demi';*/
	margin-bottom: 0.6em;
	line-height: 1.3;
}

.h3,
h3 {
	font-family: 'FuturaPT-Demi';
	font-size: 24px;
	margin-bottom: 0.6em;
}

.h4,
h4 {
	font-size: initial; /* @TODO: define it. */
}

.h5,
h5 {
	font-size: initial; /* @TODO: define it. */
}

.h6,
h6 {
	font-size: initial; /* @TODO: define it. */
}

* {
	box-sizing: inherit;
}

a,
a:hover,
a:visited,
a:active,
a:focus {
	color: white;
	text-decoration: none;
}

strong,
b {
	font-family: 'FuturaPT-Heavy', sans-serif;
}

.image {
	overflow: hidden;
}

.image img {
	max-width: 100%;
	max-height: 100%;
}

.border__bottom__dotted {
	background-image: url('../images/dotted_border.png');
	background-repeat: no-repeat;
	background-position: center bottom;
}


/* Скрытие кнопки в фотогалерее */
.pswp__button--share {
	display: none;
}



/* Основной макет страницы */
.body__full_height {
	height: 100%;
}

.fixedmenu_wrapper {
	position: fixed;
	z-index: 5;
	left: 0;
	top: 0;
	bottom: 0;
	min-height: 100%;
	background-color: #141C22;
	width: 85px;
}

.fixedmenu_closed {
	position: relative;
	height: 100%;
	cursor: pointer;
}

.fixedmenu_logo {
	padding-top: 25px;
	padding-left: 15px;
	padding-right: 13px;
	padding-bottom: 28px;
	display: block;
}

.fixedmenu_logo svg {
	max-width: 100%;
	max-height: 100%;
}

.fixedmenu_icon {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: block;
	width: 29px;
	height: 25px;
	margin: auto;
}

.fixedmenu_icon_dash {
	background-color: white;
	height: 7px;
}

.fixedmenu_icon_dash + .fixedmenu_icon_dash {
	margin-top: 2px;
}

.page_wrapper {
	min-height: 100%;
	position: relative;
}

.page_wrapper__fullheight {
	height: 100%;
}

.page_wrapper__leftmenupad {
	padding-left: 85px;
}

.page_wrapper_sizer {
	position: relative;
	height: 100%;
	min-height: 600px;
	z-index: 1;
}

/* SM Mobile */
@media (max-width: 991px) {
	.fixedmenu_logo {
		height: 100%;
		width: 100px;
		float: right;
		padding-bottom: 13px;
		padding-top: 14px;
	}

	.fixedmenu_icon {
		position: absolute;
		top: -3px;
		bottom: 0;
		left: 15px;
		display: block;
		width: 23px;
		height: 20px;
		margin: auto;
		right: auto;
	}

	.fixedmenu_logo {
		height: 100%;
	}

	.page_wrapper__leftmenupad {
		padding-left: 0;
		padding-top: 55px;
	}

	.fixedmenu_wrapper {
		width: 100%;
		height: 55px;
		min-height: 55px;
	}

	.fixedmenu_opened {
		position: fixed;
	}
}










/* Боковое меню */
.fixedmenu_opened {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	transition: all .3s cubic-bezier(0.51, 0.88, 0.69, 0.93);
	color: #ffffff;
	z-index: 1;
}

.fixedmenu_opened:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #141C22;
	z-index: -1;
}

.fixedmenu_opened__invisible {
	transform: translateX(-100%);
}

.fixedmenu_opened__visible {
	left: 0;
	transform: translateX(0);
}

.fixedmenu_overlay {
	position: fixed;
	display: block;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: rgba(255,255,255,.9);
	transition: opacity .3s cubic-bezier(0.51, 0.88, 0.69, 0.93);
}

.fixedmenu_overlay__invisible {
	transform: translateX(-100%);
	opacity: 0;
}

.fixedmenu_overlay__visible {
	transform: translateX(0%);
	opacity: 1;
}

.fixedmenu_logo_inner {
	background-image: url('../images/logo_in_fixedmenu_inner.png');
	background-position: center;
	background-repeat: no-repeat;
	display: block;
	min-width: 137px;
	min-height: 116px;
	margin-left: 40px;
	margin-top: 43px;
	margin-right: 168px;
	margin-bottom: 76px;
}

.fixed_left_menu {
	padding: 0;
	margin: 0;
}

.fixed_left_menu_link {
	display: block;
	font-size: 21px;
	font-family: 'FuturaPT-Book', sans-serif;
	padding: 12.5px 79px;
	transition: all .3s;
	position: relative;
}

.fixed_left_menu_link:hover {}

.fixed_left_menu_link__parent:after {
	content: '';
	display: inline-block;
	background-image: url('../images/fixedmenu_parent_icon.png');
	background-repeat: no-repeat;
	vertical-align: middle;
	width: 8px;
	height: 20px;
	margin-left: 6px;
}

.fixed_left_menu_sublist {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
}

.fixed_left_menu_sublist_items {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	transition: transform .3s cubic-bezier(0.51, 0.88, 0.69, 0.93);
}

.fixed_left_menu_sublist_items:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 323px;
	height: 100%;
	background-color: #66BFD7;
	z-index: -1;
}

.fixed_left_menu_sublist_items_list {
	padding: 0;
	margin: 0;
	list-style: none;
	margin-top: 235px;
}

.fixed_left_menu_sublist_items_list_item {}

.fixed_left_menu_sublist_items_list_link {
	padding: 11px 42px 9px;
	font-size: 21px;
	display: block;
}

.fixed_left_menu_sublist_items_list_link__parent {}
.fixed_left_menu_sublist_items_list_link__selected {}

.fixed_left_menu_sublist_items__visible {
	transform: translateX(100%);
	transition-delay: .1s;
}

.fixed_left_menu_sublist_items__invisible {
	transform: translateX(-100%);
	transition-delay: .0s;
}

.fixed_left_menu_link:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #66BFD7;
	z-index: -1;
	transform: translateX(-100%);
	transition: transform .3s cubic-bezier(0.51, 0.88, 0.69, 0.93);
}

.fixed_left_menu_link__active:before {
	transform: translateX(0%);
}

.fixed_left_menu_close {
	position: absolute;
	top: 43px;
	right: 27px;
	z-index: 5;
	height: 14px;
	width: 14px;
	fill: white;
	opacity: 0.5;
	cursor: pointer;
}

/* Превращаем его в мобильный вид. */
@media (max-width: 991px) {
	.fixedmenu_opened {
		position: fixed;
		width: 100%;
	}

	.fixed_left_menu_sublist {
		z-index: 1;
		left: -100%;
	}

	.fixed_left_menu_sublist_items:before {
		z-index: -1;
		width: 100%;
	}

	.fixed_left_menu_sublist_items__visible {
		transform: translateX(100%);
		transition-delay: .1s;
	}

	.fixedmenu_logo_inner {
		margin-bottom: 40px;
		margin-left: 20px;
		margin-top: 24px;
		display: inline-block;
	}

	.fixed_left_menu_sublist_items_list {
		margin-top: 0;
		position: relative;
		top: 50%;
		transform: translateY(-50%);
	}

	.fixed_left_menu_link {
		padding-left: 20px;
	}
}








/* Слайдер на главной */
.fullpage_slider {
	background-color: rgba(14, 22, 29, 0.82);
	color: white;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	position: absolute;
	overflow: hidden;

	-webkit-user-select: none;  /* Chrome all / Safari all */
	-moz-user-select: none;     /* Firefox all */
	-ms-user-select: none;      /* IE 10+ */
	user-select: none;  
}

.fullpage_slider__initialized .fullpage_slider_item {
	transition: opacity .9s ease-in-out;
}

.fullpage_slider_item {
	height: 100%;
	width: 100%;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	background-color: black;
	opacity: 0;
	z-index: 0;
}

.fullpage_slider_item__active {
	opacity: 1;
	z-index: 1;
}

.fullpage_slider_item_background {
	top: 0;
	left: 0;
	right: 0;  /* hapy */
	bottom: 0;   /* new */
	width: 100%;   /* year */
	font-size: 0;
	height: 100%;
	display: block;
	position: absolute;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: -1;
}

.fullpage_slider_item_background:after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	background-color: rgba(19, 30, 36, 0.7);
}

.fullpage_slider_item_emptylayer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.fullpage_slider_item_sizer {
	display: inline-block;
	position: absolute;
	top: 47%;
	left: 50%;
	z-index: 1;
	/* right: 50%; */
	/* bottom: 50%; */
	transform: translate(-50%, -50%);
}

.fullpage_slider_item_title {
	margin-bottom: 0;
	font-size: 72px;
	font-family: 'FuturaPT-Demi';
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.fullpage_slider_item_desc {
	font-size: 21px;
	padding-top: 10px;
	margin-bottom: 60px;
}

.fullpage_slider_item_link {
	text-transform: uppercase;
}

.fullpage_slider_controls {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 50%;
	z-index: 5;
}
.fullpage_slider_arrow {
	background-image: url('../images/slider_arrow_left.png');
	background-repeat: no-repeat;
	background-position: center;
	width: 31px;
	height: 56px;
	display: block;
	float: left;
	padding: 0 50px;
	cursor: pointer;
}

.fullpage_slider_arrow__left {}
.fullpage_slider_arrow__right {
	transform: rotate(180deg);
	float: right;
}

.fullpage_slider_items {
	width: 100%;
	height: 100%;
}

.video_background {
	min-width: 100%;
	min-height: 100%;
}

/* XS */
@media (max-width: 767px)  {
	h1 {
		font-size: 24px;
	}
	.fullpage_slider_item_title {
		font-size: 25px;
	}
	.fullpage_slider_item_desc {
		font-size: 18px;
		line-height: 22px;
	}
	.fullpage_slider_arrow {
		padding: 0 14px;
		height: 24px;
		background-size: contain;
	}
	.fullpage_slider_item_background .video_background {
		min-width: 100%;
		min-height: 100%;
		height: 100%;
		// display: none;
		// position: absolute;
		// width: 0px;
		// height: 0px;
		// right: -100%;
		// top: -100%;
	}
	.fullpage_slider_item_background .image_background {
		display: block;
	}
}







/* Ссылки на слайдер */
.fullpage_links {
	position: absolute;
	z-index: 4;
	width: 100%;
	bottom: 0;
	left: 0;
	text-align: center;
	font-size: 0;
}

.fullpage_links_item {
	display: inline-block;
	width: 25.65%;
	font-size: 14px;
}

.fullpage_links_item_link {
	display: inline-block;
	margin-bottom: 79px;
	font-size: 27px;
	color: white;
}

.fullpage_links_item_image {
	padding: 15px;
}

.fullpage_links_item_link_line {
	border-bottom: 1px solid rgba(255, 255, 255, 0.66);
}

/* XS */
@media (max-width: 767px)  {
	.fullpage_links_item {
		width: 33.333333333%;
	}
	.fullpage_links_item_link {
		margin-bottom: 15px;
	}
}

@media (max-width: 991px)  {
	.fullpage_links_item_link {
		font-size: 16px;
	}
	.fullpage_links_item_image {
		padding: 26px;
		padding-bottom: 10px;
	}
}















/* Кнопки */
.button {
	display: inline-block;
	padding: 16px 44px 13px 51px;
	margin-right: 6px;
	border: 3px solid #3BC0CC;
	border-radius: 30px;
	font-size: 16px;
	font-family: 'FuturaPT-Heavy';
	letter-spacing: 0.16em;
	transition: all .3s ease-in-out;
	overflow: hidden;
	z-index: 1;
	position: relative;

	background: transparent;
	outline: 0;
}

.button:before {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.button:after {}
.button:hover {}

.page_wrapper_usercontent .button_blue,
.page_wrapper_usercontent .button_blue:hover {
	z-index: 1;
	position: relative;
	display: inline-block;
	padding: 12px 37px 9px;
	border: 2px solid #3BC0CC;
	border-radius: 30px;
	font-size: 16px;
	font-family: 'FuturaPT-Heavy';
	letter-spacing: 0.16em;
	transition: all .3s ease-in-out;
	overflow: hidden;
	background: transparent;
	outline: 0;
	text-transform: uppercase;
	color: #66bfd7;
}












/* Внутренние страницы */
.inner_page_header {
	position: relative;
	z-index: 1;
	padding-top: 100px;
	height: 256px;
}

.inner_page_header__image {
	position: relative;
	background-color: rgba(233, 233, 233, 0.4);
	color: white;
	overflow: hidden;
}

.inner_page_header__image_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	transform: translate3d(0,0,0);
}

.inner_page_header h1,
.inner_page_header .header_title {
	margin: 0.67em 0;
	color: white;
}

.page_wrapper_usercontent {
	color: #2b2b2b;
	font-size: 18px;
}

.page_wrapper_usercontent__small {
	font-size: 16px;
}

.page_wrapper_usercontent a {
	color: inherit;
	border-bottom: 1px solid #66bfd7;
}

.page_wrapper_usercontent a:hover {
	color: #66bfd7;
	border-bottom: 1px solid #66bfd7;
}

.page_wrapper_usercontent p {
	margin-bottom: -5px;
	margin-top: 0;
}

.page_wrapper_usercontent ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.page_wrapper_usercontent li {
	position: relative;
	margin: 0 0 12px;
	padding: 0 0 0 50px;
}

.page_wrapper_usercontent li:before {
	content: '';
	position: absolute;
	top: 14px;
	left: 0;
	display: block;
	width: 29px;
	height: 2px;
	background-color: #66bfd7;
}

.page_wrapper_usercontent > .container:last-of-type {
	// padding-bottom: 20px;
}

@media (max-width: 767px)  {
	.inner_page_header {
		padding-top: 30px;
		padding-bottom: 30px;
		text-align: center;
	}
}

.blue-line-block {
	position: relative;
	margin: 40px 0;
	font-size: 24px;
	padding: 0 60px 0 35px;
	line-height: 1.35;
}

.blue-line-block:before {
	content: '';
	position: absolute;
	top: 5%;
	left: 6px;
	display: block;
	width: 3px;
	height: 90%;
	background-color: #66bfd7;
}













/* Поиск на верхне части страницы */
.topsearch_component {
	position: absolute;
	z-index: 10;
	top: 32px;
	right: 50px;
}

.topsearch_button:before {
	content: '';
	display: inline-block;
	margin-top: 2px;
	margin-right: 11px;
	width: 18px;
	height: 18px;
	background-image: url('../images/search_icon.png');
}

.topsearch_button span {
	opacity: .22;
	vertical-align: top;
	padding-bottom: 8px;
}

a.topsearch_button {
	font-size: 16px;
	color: white;
	border-bottom: 0px solid;
}

a.topsearch_button:hover { /* reset user styles */
	color: white;
	border-bottom: 0px solid;
}

a.topsearch_button:hover span {
	opacity: 1;
}

.topsearch_button_inner {
	position: absolute;
	z-index: 20;
	right: -5px;
	top: -12px;
	background-color: rgba(20, 28, 34, 1);
	max-width: 0;
	overflow: hidden;
	transition: all .3s ease-in-out;
	opacity: .6;
}

.topsearch_button_inner__visible {
	transform: translateX(0);
	opacity: 1;
	max-width: 500px;
}

.topsearch_line {
	width: 448px;
	height: 54px;
	float: right;
}

.topsearch_line_wrap,
.topsearch_form {
	width: 100%;
	height: 100%;
}

.topsearch_line_wrap {
	padding-right: 55px;
}
.topsearch_line_wrap {}
.topsearch_line_input {
	background-color: transparent;
	border: 0;
	outline: 0;
	color: white;
	width: 100%;
	height: 100%;
	padding: 15px 20px;
	font-size: 16px;
}
.topsearch_line_close {
	height: 100%;
	width: 55px;
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
	background-image: url('../images/serach_button_close_icon.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 16px;
}



/* XS */
@media (max-width: 767px)  {
	a.topsearch_button { /* А ещё тут будет меню */
		top: 8px;
		right: 8px;
	}
}












/* Футер */
.footer {
	background-color: #12181D;
	color: rgba(255, 255, 255, 0.55);
	padding-top: 62px;
	padding-bottom:30px;
	font-size: 16px;
}

.footer a {
	color: inherit;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer a:hover {
	color: white;
	border-bottom: 1px solid rgba(255,255,255,0.5);
}

.footer ul,
.footer ul li {
	padding: 0;
	margin: 0;
}

.footer ul li:before {
	display: none;
}

.footer ul.submenu_list {
	list-style: none;
	padding: 0;
	margin: 0;
	margin-bottom: 40px;
}

.submenu_list__title {
	color: #66bfd7;
	display: block;
	padding-bottom: 9px;
	border-bottom: 1px solid #4b4b4b;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.footer ul li.submenu_list_item {
	margin-bottom: 18px;
}

.footer ul li.submenu_list_item + .submenu_list__title {
	margin-top: 40px;
}













/* Форма */
.modern_form {
	position: relative;
}

.modern_form_label {
	display: block;
	position: absolute;
	z-index: 0;
	top: -1px;
	left: 4px;
	font-size: 16px;
	transition: all .2s ease-in-out;
}

.modern_form_control__focused .modern_form_label {
	top: -18px;
	left: 3px;
	font-size: 12px;
	color: #66bfd7;
}

.modern_form_input {
	display: block;
	position: relative;
	z-index: 1;
	width: 100%;
	background-color: transparent;
	border: 0;
	outline: 0;
	border-bottom: 1px solid #898C8E;
	padding: 0px 4px;
	padding-bottom: 2px;
}

.modern_form_control {
	width: 100%;
	position: relative;
	margin-top: 36px;
	margin-bottom: 45px;
}

.modern_form_input:focus {
	color: #66bfd7;
	border-bottom: 1px solid #66bfd7;
}

.modern_form_submit {
	text-transform: uppercase;
	padding-left: 37px;
	padding-bottom: 9px;
	padding-top: 12px;
	padding-right: 37px;
	margin-top: 10px;
	border-width: 2px;
	color: #66bfd7;
	margin-left: -3px;
}

.modern_form_overlay {
	opacity: 0;
	height: 100%;
	width: 100%;
	max-height: 0;
	top: 0;
	left: 0;
	position: absolute;
	transition: all .3s ease-in-out;
}

.modern_form_overlay_error,
.modern_form_overlay_success {
	display: none;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	text-align: center;
	font-size: 18px;
	padding-top: 30px;
	color: white;
}

.modern_form_overlay__send_error,
.modern_form_overlay__send_success {
	z-index: 3;
	opacity: 1;
	max-height: 100%;
}

.modern_form_overlay_error:before,
.modern_form_overlay_success:before {
	z-index: -1;
	content: '';
	background-color: rgba(18, 24, 29, 0.80);
	width: 110%;
	height: 110%;
	position: absolute;
	top: -5%;
	left: -5%;
}

.modern_form_overlay__send_error:before {}
.modern_form_overlay__send_success:before {}

.modern_form_overlay__send_error .modern_form_overlay_error {
	display: block;
}

.modern_form_overlay__send_success .modern_form_overlay_success {
	display: block;
}













/* Менюшка внутренних страниц */
.left_inner_submenu {
	position: relative;
	z-index: 1;
	margin-right: 10px;
}

.left_inner_submenu ul,
.left_inner_submenu ul li {
	margin: 0;
	padding: 0;
}

.left_inner_submenu ul li:before {
	display: none;
}

.left_inner_submenu:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 3000px;
	height: 100%;
	background-color: #66BFD7;
	z-index: -1;
}

.left_inner_submenu ul.left_inner_submenu_list {
	margin-top: -55px;
	margin-bottom: 0;
	list-style: none;
	padding: 0;
	padding-top: 26px;
	padding-bottom: 9px;
}

.left_inner_submenu ul li.left_inner_submenu_item {}

a.left_inner_submenu_item_link {
	color: white;
	margin-bottom: 14px;
	display: inline-block;
	font-size: 16px;
	padding-right: 10px;
}
a.left_inner_submenu_item_link span {
	padding-bottom: 1px;
	border-bottom: 1px solid rgba(255,255,255,0.2);
}

a.left_inner_submenu_item_link:hover {
	color: white;
}

.left_inner_submenu_item_link_selected {
	font-family: 'FuturaPT-Bold';
}



/* Аккордеон жейквери BEGIN */

.accordion-jquery {
	border-bottom: 2px solid #ccc;
}

.accordion-jquery .ui-accordion-header {
	position: relative;
	outline: 0;
	border-top: 1px solid #ccc;
	padding-right: 60px;
}

.accordion-jquery .ui-accordion-header>div {
	display: inline-block;
	vertical-align: middle;
}

.accordion-jquery .ui-accordion-header:after {
	content: '';
	display: inline-block;
	width: 0;
	min-height: 50px;
	vertical-align: middle;
}

.accordion-jquery .ui-accordion-header-icon {
	position: absolute;
	top: 50%;
	right: 10px;
	display: block;
	width: 48px;
	height: 48px;
	margin-top: -24px;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20version%3D%221.1%22%20viewBox%3D%220%200%2064%2064%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%3E%3Cg%20style%3D%22fill%3A%20%2354b8d2%3B%22%20transform%3D%22translate%28237.000000%2C%20335.000000%29%22%3E%3Cpolyline%20class%3D%22st0%22%20id%3D%22Fill-35%22%20points%3D%22-218.7%2C-308.6%20-216.7%2C-310.6%20-205%2C-298.8%20-193.3%2C-310.6%20-191.3%2C-308.6%20-205%2C-294.9%20%20%20%20%20%20-218.7%2C-308.6%20%20%20%20%22/%3E%3C/g%3E%3C/svg%3E');
	background-size: contain;
}


.accordion-jquery .ui-accordion-header-collapsed .ui-accordion-header-icon {
	background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20version%3D%221.1%22%20viewBox%3D%220%200%2064%2064%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%3E%3Cg%20style%3D%22fill%3A%20%2354b8d2%3B%22%20transform%3D%22translate%28237.000000%2C%20335.000000%29%22%3E%3Cpolyline%20points%3D%22-191.3%2C-296.9%20-193.3%2C-294.9%20-205%2C-306.6%20-216.7%2C-294.9%20-218.7%2C-296.9%20-205%2C-310.6%20%20%20%20%20%20-191.3%2C-296.9%20%20%20%20%22/%3E%3C/g%3E%3C/svg%3E');
}

.vakansii-title {
	font-family: 'FuturaPT-Bold';
	margin-bottom: 0.7em;
}

.vakansii-text {
	margin-bottom: 1.5em;
}

.vakansii-text p {
	margin-bottom: 0.5em;
}

/* Аккордеон жейквери END*/




/* Компонент сертификаты и системы качества компании */
.documenty_container {
	padding-top: 110px;
}

.documenty_container h1 {
	text-align: center;
	font-size: 40px;
	line-height: 1;
	margin: 0 0 90px;
}

.documenty_items_container {
	margin-bottom: 120px;
}

.documenty_items {
	
}

.documenty_item {
	display: inline-block;
	vertical-align: top;
	cursor: pointer;
}

.documenty_item:hover .documenty_item_item_img {
	background-size: 100% auto;
}

.documenty_item:hover .documenty_item_text_title span {
	color: #ff1764;
	border-bottom-color: rgba(255, 23, 100, 0.5);
}

.documenty_item_img_container {
	position: relative;
	display: block;
}

.documenty_item_item_img {
	display: block;
	width: 100%;
	padding-bottom: 141%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 95% auto;
	background-color: white;
	transition-duration: 0.3s;
	transition-property: background-size;
}

.documenty_item_pages,
.documenty_item_pages>figure {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
}

.documenty_item_pages>figure>a {
	position: relative;
	display: block;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

.documenty_item_pages>figure>a>img {
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	width: 100%;
	transform: translateY(-50%);
}

.documenty_item_pages>figure {
	z-index: -1;
}
.documenty_item_pages>figure:first-child {
	//z-index: 0;
}

.documenty_item_text_container {
	display: block;
	padding: 10px 0 0 20px;
}

.documenty_item_text {
	
}

.documenty_item_text_title {
	font-size: 16px;
	text-transform: uppercase;
	line-height: 1.4;
	font-family: 'FuturaPT-Bold';
}

.documenty_item_text_title span {
	border-bottom: 1px solid transparent;
}

/* XS */
@media (max-width: 500px) {
	.documenty_item {
		width: 100%;
		margin-bottom: 4%;
	}
}

/* XS */ /* SM */ /* MD */
@media (min-width: 501px) and (max-width: 1199px) {
	.documenty_item {
		width: 48%;
		margin-bottom: 4%;
		margin-right: 4%;
	}
	.documenty_item:nth-child(2n) {
		margin-right: 0;
	}
}

/* LG */
@media (min-width: 1200px) {
	.documenty_item {
		width: 30.666666667%;
		margin-right: 4%;
		margin-bottom: 4%;
	}
	
	.documenty_item:nth-child(3n) {
		margin-right: 0;
	}
}


/* Компонент истории компании */
.history_list {
	margin-bottom: 101px;
}
.history_list_item {
	margin-bottom: 40px;
}

.history_list_item_name {
	float: left;
	width: 27.5%;
	position: relative;
	/*z-index: 1*/
	font-family: 'FuturaPT-Bold';
	color: #2b2b2b;
	font-size: 30px;
	padding-right: 9%;
	text-align: right;
}

.history_list_item_name:before { /* Цацка */
	position: absolute;
	content: '';
	top: 10px;
	right: 23px;
	width: 21px;
	height: 21px;
	background-image: url('../images/history_list_point.png');
	background-position: center;
	background-repeat: no-repeat;
}

.history_list_item_text {
	float: left;
	width: 72.5%;
	position: relative;
	padding: 7px 2px;
	padding-bottom: 3px;
}

.history_list_item_text:after { /* Полоска */
	position: absolute;
	content: '';
	top: 20px;
	left: -34px;
	height: 100%;
	width: 1px;
	z-index: -1;
	background-color: #E9EAEA;
}

.history_column_pad {
	padding-left: 55px;
}

/* XS */
@media (max-width: 767px) {
	.history_column_pad {
		padding-left: 15px;
	}
	.history_list_item_name {
		width: 100%;
		float: none;
	}
	.history_list_item + .history_list_item .history_list_item_name {
		margin-top: 30px;
	}
	.history_list_item_name:before {
		position: static;
		display: inline-block;
		margin-right: 10px;
	}
	.history_list_item_text {
		width: 100%;
		float: none;
	}
	.history_list_item_text:after {
		display: none;
	}
	.history_list {
		margin-bottom: 20px;
	}
}

/* SM */
@media (min-width: 768px) and (max-width: 991px) {
	.history_column_pad {
		padding-left: 15px;
	}
	.history_list_item_name {
		width: 34%;
	}
	.history_list_item_name:before {
		right: 14px;
	}
	.history_list_item_text {
		width: 66%;
	}
	.history_list_item_text:after {
		left: -25px;
	}
}

/* MD */
@media (min-width: 992px) and (max-width: 1199px) {
	.history_list_item_name {
		width: 34%;
	}
	.history_list_item_name:before {
		right: 14px;
	}
	.history_list_item_text {
		width: 66%;
	}
	.history_list_item_text:after {
		left: -25px;
	}
}

/* LG */
@media (min-width: 1200px) {}










.press-center-novosti-block h1 {
	margin-left: 25%;
}

.novosti_list {
	margin-top: 25px;
}


.novosti_list_item:first-child {
	left: 8.33333333%;
	width: 83.33333333%;
	margin-bottom: 100px;
}

.novosti_list_item:first-child .novosti_list_item_link {
	width: 100%;
	height: 100%;
}

.novosti_list_item:first-child .novosti_list_item_img_container {
	float: none;
	width: 100%;
}

.novosti_list_item:first-child .novosti_list_item_img {
	padding: 17%;
}

.novosti_list_item:first-child .novosti_list_item_img_filter {
	display: block;
	background-color: rgba(0,0,0,0.65);
}

.novosti_list_item:first-child .novosti_list_item_date {
	color: white;
	font-family: 'FuturaPT-Heavy', sans-serif;
	font-size: 18px;
	letter-spacing: 2px;
}

.novosti_list_item:first-child .novosti_list_item_title {
	color: white;
	font-size: 27px;
	padding-top: 13px;
}

.novosti_list_item:first-child .novosti_list_item_title span {
	border: 0;
}

.novosti_list_item:first-child .novosti_list_item_content {
	float: none;
	position: absolute;
	left: 0;
	bottom: 0;
	padding-bottom: 12px;
}

.novosti_list_item:first-child .novosti_list_item_text {
	display: none;
}

.novosti_list_item {
	position: relative;
	margin-bottom: 50px;
	left: 8.33333333%;
	width: 83.33333333%;
}

.novosti_list_item:after {
	content: '';
	display: block;
	height: 0;
	visibility: hidden;
	clear: both;
}

a.novosti_list_item_link {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 0;
	height: 0;
	border: 0;
	z-index: 1;
}

a.novosti_list_item_img_container {
	float: left;
	display: block;
	width: 30%;
	border: 0;
}

.novosti_list_item_img {
	display: block;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 100%;
	height: 0;
	padding-bottom: 70%;
}

.novosti_list_item_img_filter {
	position: absolute;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
}

.novosti_list_item_content {
	float: left;
	display: block;
	width: 70%;
	padding: 0 0 0 30px;
}

.novosti_list_item_date {
	text-transform: uppercase;
	font-size: 15px;
	line-height: 1;
	font-family: 'FuturaPT-Medium', sans-serif;
}
.novosti_list_item_title {
	text-transform: uppercase;
	font-size: 30px;
	line-height: 1.4;
	font-family: 'FuturaPT-Medium', sans-serif;
	letter-spacing: 3px;
	padding: 6px 0 20px;
}
a.novosti_list_item_title_link {
	border: 0;
}

.novosti_list_item_title_link span {
	border-bottom: 1px solid #2b2b2b;
}

a.novosti_list_item_img_container:hover,
a.novosti_list_item_link:hover,
a.novosti_list_item_title_link:hover {
	border: 0;
}

.novosti_list_item_title_link:hover span {
	border-bottom-color: #66bfd7;
}

.novosti_list_item_text {
	
}


.novosti_list_more_container {
	margin-top: 100px;
	text-align: center;
}




.novosti_detail {
	margin-top: 50px;
}

.novosti_detail_date {
	text-transform: uppercase;
	font-size: 15px;
	line-height: 1;
	font-family: 'FuturaPT-Medium', sans-serif;
}

.novosti_detail_title {
	text-transform: uppercase;
	font-size: 30px;
	line-height: 1;
	font-family: 'FuturaPT-Medium', sans-serif;
	letter-spacing: 3px;
	padding: 6px 0 20px;
	margin: 0;
}

.novosti_detail_preview {
	margin-bottom: 15px;
}

.novosti_detail_detail {
	
}





/* Слоган компании */
.kompany_slogan {
	text-align: center;
	color: #2b2b2b;
	font-size: 37px;
	font-family: 'FuturaPT-Demi';
	text-transform: uppercase;
	letter-spacing: 0.18em;
	padding-top: 100px;
	padding-bottom: 100px;
	background-color: #F1F1F1;
}

/* SM */
@media (min-width: 768px) and (max-width: 991px) {
	.kompany_slogan {
		letter-spacing: 0.1em;
	}
}

/* XS */
@media (max-width: 767px) {
	.kompany_slogan {
		font-size: 20px;
		letter-spacing: 0.1em;
		padding-top: 50px;
		padding-bottom: 50px;
	}
}







/* Страница контакты */
/* Вроде говорят что по центру оно будет только на этой странице. Посмотрим, если что перенесите в отдельный стиль */
.inner_page_header__text_center h1,
.inner_page_header__text_center .h1 {
	text-align: center;
}

.inner_page_header__text_center .inner_page_header {
	padding-top: 92px;
	padding-bottom: 48px;
}

.contacts_ymap {
	height: 550px;
}

.contacts_text_pad {
	padding-top: 38px;
}

@media (max-width: 767px)  {
	.inner_page_header__text_center .inner_page_header {
		padding-top: 30px;
		padding-bottom: 30px;
	}
}






/* Страница проекты */
.projectslist_page {}
.projectslist_padwrap {
	padding-left: 3%;
}

.projectslist_filter {
	background-color: #12181D;
	color: white;
	padding-top: 21px;
	padding-bottom: 28px;
}

.projectslist_filter_label {
	position: absolute;
	font-size: 14px;
	top: 0;
	left: 0;
	color: #66BFD7;
	transition: all .3s ease-in-out;
}

.projectslist_filter_input {
	display: block;
	background-color: transparent;
	outline: 0;
	border: 0;
	border-bottom: 1px solid #66BFD7;
	width: 100%;
	font-size: 14px;
	padding: 0px 0px;
}

.projectslist_slider {
	padding-top: 55px;
}

.projectslist_columns {}

.projectslist_filter_input_wrapper__focused .projectslist_filter_label {
	top: -17px;
	font-size: 12px;
}

.projectslist_filter_input_wrapper__focused .projectslist_filter_input {
	
}

.projectslist_filter_title {
	float: left;
	letter-spacing: 0.013em;
}

.projectslist_filter_input_wrapper {
	float: left;
	margin-left: 30px;
	position: relative;
	width:120px;
	
}
.filter_input_wrapper-block{
  float:left;
}

.projectslist_filter_input_wrapper__focused {}
.projectslist_slider {}
.projectslist_slider_wrapper {}

.projectslist_slider_item {
	outline: 0;
	padding-right: 37px;
	float: left;
	width: 336px;
}

.projectslist_slider_wrapper_arrow__right,
.projectslist_slider_wrapper_arrow__left {
	position: absolute;
	top: 0;
	left: -42px;
	height: 100%;
	width: 20px;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url('../images/slider_arrow_left__black.png');
	cursor: pointer;
}

.projectslist_slider_wrapper_arrow__right {
	left: auto;
	right: -36px;
	background-image: url('../images/slider_arrow_right__black.png');
}

.projectslist_columns .projectslist_padwrap,
.projectslist_slider .projectslist_padwrap {
	padding-right: 3%;
}

.projectslist_slider_item_title {
	font-family: 'FuturaPT-Medium';
	font-size: 21px;
	padding-top: 10px;
}

.projectslist_slider_item_desc {
	font-size: 16px;
	padding: 4px 0;
	opacity: 0.77;
}
.projectslist_filter_input_wrapper2{
    float: left;
    margin-left: 30px;
    position: relative;
    width:275px;
   
}

.projectslist_slider_item_img {
	width: 100%;
}

.projectslist_columns {
	padding-top: 112px;
}

.projectslist_columns_title {
	font-family: 'FuturaPT-Bold';
	font-size: 55px;
	line-height: 43px;
	position: relative;
	margin-bottom: 60px;
}
.projectslist_columns_title:after {
	content: '';
	position: absolute;
	bottom: -16px;
	left: 0;
	height: 1px;
	width: 100%;
	background-color: #D7D7D7;
}

.projectslist_columns_col {
	float: left;
	width: 20%;
	padding-right: 37px;
}

.projectslist_columns_item {
	background-color: #F1F4F6;
	padding: 23px;
	padding-bottom: 30px;
	margin-bottom: 28px;
}

.projectslist_columns_item_title {
	font-family: 'FuturaPT-Medium';
	font-size: 21px;
	color: #12181d;
	margin-bottom: 17px;
}

.projectslist_columns_item_text {
	font-size: 16px;
	padding-right: 20px;
	color: #12181d;
}

.projectslist_columns_row {
	margin-bottom: 58px;
}
.proect-goda{
	display: inline-block;
	width:250px;
	background-color: #f1f4f6;
	vertical-align: top;
	margin:20px;
	padding: 20px;
}
.proect-goda-conteyner{
	margin-top: 50px;
	margin-bottom: 50px;
}
.proect-goda-god{
	padding-left: 40px;
	width:20%;
	float: left;
	height: 100%;
	font-family: 'FuturaPT-Bold';
  font-size: 55px;
}
.proect-goda-name{
	font-family: 'FuturaPT-Medium';
    font-size: 21px;
   
}
.proect-goda-text{
    font-size: 16px;
    color: #12181d;
}

.proect-goda-content{
		float: left;
    width:80%;
    padding: 20px;
}
.proect-goda-god-text{
	border-bottom:1px solid #D7D7D7;
}
.proect-goda-razdel{
	margin-top:50px;
}
.container-fluid-button{
	border-radius: 15px;
	outline: 0;
	background-color:transparent;
	padding-left: 15px;
	padding-right: 15px;
	padding-top:4px;
	padding-bottom: 4px;
	font-size: 12px;
	letter-spacing:2px;
	font-family: 'FuturaPT-Heavy';
	font-weight:normal;
}
.container-fluid-button.infiltr{
   border:2px solid #63ADBF;
   color:#63ADBF;
}
.infiltr{
	margin-right: 13px;
}
.container-fluid-button.outfiltr{
  border:2px solid #EA6B57;
   color:#EA6B57;
}
.silect-otrasli select{
	display: block;
	width:120px;
	color:#66BFD7;
	background-color:#12181D;
	border:none;
	border-bottom:1px solid #66BFD7;
	font-size:14px;
  font-family: 'FuturaPT-Book', sans-serif; 
  outline: 0;
  
}
.silect-otrasli:after{
	content: '';
	z-index: 2;
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 15px;
	height: 100%;
	pointer-events: none;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(../images/down.svg);
	background-color: #12181D;
}
.outfiltr{
	display:none;
}
.filter_input_wrapper-block2{
	float:left;
}

/*
	Брейкпойты как в JS
	Колво колонок | max width
	            4 | 1500
	            3 | 1340
	            3 | 991
	            2 | 870
	            1 | 690
*/


@media (max-width: 1500px) {
	.projectslist_columns_col {
		width: 25%;
	}
}
@media (max-width: 1340px) {
	.projectslist_columns_col {
		width: 33.333333333%;
	}
}
@media (max-width: 991px)  {
	.projectslist_columns_col {
		// width: 100%;
	}
}
@media (max-width: 870px)  {
	.projectslist_columns_col {
		width: 50%;
	}
}
@media (max-width: 690px)  {
	.projectslist_columns_col {
		width: 100%;
	}
}





.index-fullpage-vertical-slide-1-bg {
	/*background-color: #66bfd7;*/
	background: url('../images/backgeda.jpg') no-repeat top / cover;
}

.index-fullpage-vertical-slide-1-title {
	display: block;
	text-transform: uppercase;
	font-family: "FuturaPT-Bold";
	text-align: center;
	letter-spacing: 0.31em;
	line-height: 1.3;
	font-size: 32px;
	margin-bottom: 30px;
	color: #141C22;
}

.index-fullpage-vertical-slide-1-subtitle {
	display: block;
	text-transform: uppercase;
	font-family: "FuturaPT-Medium";
	text-align: center;
	letter-spacing: 0.14em;
	line-height: 1.6;
	font-size: 20px;
	margin-bottom: 30px;
	color: #141C22;
}

.index-fullpage-vertical-slide-1-button {
	display: block;
	text-transform: uppercase;
	text-align: left;
}

.index-fullpage-vertical-slide-1-button-link,
.index-fullpage-vertical-slide-1-button-link:focus {
	position: relative;
	display: inline-block;
	font-family: "FuturaPT-Bold";
	border: 5px solid white;
	padding: 0 10px 0 70px;
	letter-spacing: 0.18em;
	height: 100px;
	width: 380px;

/*	display: block;
  color: #fefefe !important;
  text-align: center;
	padding: 0 10px 0 70px;
	letter-spacing: 0.18em;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  z-index: 9;
  background: rgb(76, 121, 130);
  box-shadow: 0 6px #2d454c;
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;*/
}

/*.index-fullpage-vertical-slide-1-button-link:hover {
  box-shadow: 0 4px #2d454c;
  top: 2px;
}

.index-fullpage-vertical-slide-1-button-link:active {
    box-shadow: 0 0 #2d454c;
    top: 6px;
}
*/
.index-fullpage-vertical-slide-1-button-link span {
	vertical-align: middle;
}

.index-fullpage-vertical-slide-1-button-link:after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 0;
	height: 100%;
	line-height: 1.6;
}

.index-fullpage-vertical-slide-1-button-link:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 30px;
	display: block;
	width: 27px;
	height: 15px;
	margin-top: -7px;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url('../images/index-arrow-down-white.png');
}

.index-fullpage-vertical-slide-2 .row,
.index-fullpage-vertical-slide-2 .row>div {
	margin: 0;
	padding: 0;
}

.index-fullpage-vertical-slide-2-block-link {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
}

.index-fullpage-vertical-slide-2-block-link span {
	position: absolute;
	top: 10%;
	left: 5%;
	display: block;
	text-transform: uppercase;
	font-family: "FuturaPT-Medium";
	font-size: 28px;
	line-height: 1.9;
	letter-spacing: 0.14em;
}


.index-fullpage-vertical-slide-2-block-link-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	display: block;
	width: 100%;
	height: 100%;
}

.index-fullpage-vertical-slide-2-block-video-bg {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition-duration: 1s;
	transition-property: opacity;
}

.index-fullpage-vertical-slide-2-block-video-bg:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.6);
}

.index-fullpage-vertical-slide-2-block-video-bg video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate3d(-50%,-50%,0);
}

.index-fullpage-vertical-slide-2-block-video-bg.playing {
	opacity: 1;
}


.index-fullpage-vertical-slide-2-block-link.proizvodstvo {
	background-image: url('../images/index-deyatelnost-proizvodstvo.png');
}

.index-fullpage-vertical-slide-2-block-link.resheniya {
	background-image: url('../images/index-deyatelnost-resheniya.png');
}

.index-fullpage-vertical-slide-2-block-link.energeticheskaya {
	background-image: url('../images/index-deyatelnost-energeticheskaya.png');
}

.index-fullpage-vertical-slide-2-block-link.metallurgiya {
	background-image: url('../images/index-deyatelnost-metallurgiya.png');
}

.index-fullpage-vertical-slide-2-block-link.metallografika {
	background-image: url('../images/index-deyatelnost-metallographika.png');
}

.index-fullpage-vertical-slide-2-block-link.stroitelnaya {
	background-image: url('../images/index-deyatelnost-stroitelnaya.png');
}

.index-fullpage-vertical-slide-2-block-link.servisnoye {
	background-image: url('../images/index-deyatelnost-servisnoe.png');
}


@media (max-width: 500px) {
	
	.index-fullpage-vertical-slide-1-button-link {
		width: auto;
	}
	
	.index-fullpage-vertical-slide-2-block-link span {
		font-size: 23px;
		line-height: 1.5;
	}
	.index-fullpage-vertical-slide-2-block {
		padding-bottom: 40px;
	}

	.next-prev-block span:last-child {font-size: 15px !important;}	

}

@media (max-width: 767px) {
	
.back_to_project {left: 50px;}

}


@media (max-width: 991px) {
	
	#index-fullpage-vertical .section,
	#index-fullpage-vertical .section>div{
		height: auto !important;
	}
	
	.index-fullpage-vertical-slide-1 {
		padding: 50px 20px;
	}
	
	.index-fullpage-vertical-slide-2-block-video-bg video {
		display: none;
	}
	
	.index-fullpage-vertical-slide-2-block {
		position: relative;
		padding-bottom: 30%;
	}
	
	.index-fullpage-vertical-slide-2-block-link {
		position: absolute;
		top: 0;
		left: 0;
	}
	
}

@media (min-width: 992px) {
	.index-fullpage-vertical-slide-1-bg {
		width: 100%;
		height: 100%;
	}

	.index-fullpage-vertical-slide-1_sert {
    position: absolute;
    bottom: 5%;
    right: 10%;
    float: left;
    font-size: 20px;
    line-height: 1;
	}

	.index-fullpage-vertical-slide-1_sert:before {
		content: '';
		display: block;
		width: 63px;
		height: 51px;
		background: url('../images/isoicon.svg') no-repeat center / cover;
		margin-right: 20px;
		float: left;
	}

	.index-fullpage-vertical-slide-1 {
		position: absolute;
		top: 87px;
		left: 64px;
		/*transform: translate3d(-50%,-50%,0);*/
	}

	.index-fullpage-vertical-slide-1-title {
		font-size: 108px;
		margin-bottom: 15px;
	}

	.index-fullpage-vertical-slide-1-subtitle {
		font-size: 28px;
		margin-bottom: 60px;
		text-align: left;
	}

	.index-fullpage-vertical-slide-1-button-link {
		font-size: 23px;
		width: 380px;
		height: 100px;
	}

	.index-fullpage-vertical-slide-2 {
		height: 100%;
	}

	.index-fullpage-vertical-slide-2 .div-height-50 {
		height: 50%;
	}

	.index-fullpage-vertical-slide-2 .div-height-100 {
		height: 100%;
	}

	.index-fullpage-vertical-slide-2-block {
		display: block;
	}

	.index-fullpage-vertical-slide-2-block-link span {
		position: absolute;
		bottom: 30px;
		left: 30px;
		font-size: 28px;
	}
	
	.index-fullpage-vertical-slide-2-block-link.energeticheskaya span,
	.index-fullpage-vertical-slide-2-block-link.metallografika span,
	.index-fullpage-vertical-slide-2-block-link.servisnoye span {
		top: 30px;
		bottom: unset;
	}
	
}

@media (min-width: 992px) and (max-width: 1600px) {
	.index-fullpage-vertical-slide-2-block-link span {
    font-size: 18px;
	}
}

/* XS */
@media (max-width: 767px)  {

}

/* SM */
@media (min-width: 768px) and (max-width: 991px) {
	.index-fullpage-vertical-slide-2-block {
		padding-bottom: 20%;
	}
}

/* MD */
@media (min-width: 992px) and (max-width: 1199px) {
	.index-fullpage-vertical-slide-2 .div-md-height-33 {
		height: 33.333333333%;
	}
	.index-fullpage-vertical-slide-2 .div-md-height-66 {
		height: 66.666666667%;
	}
	.index-fullpage-vertical-slide-1-title {
		font-size: 96px;
	}
}

/* LG */
@media (min-width: 1200px) {

}








/* Дополнение для БС которое убирает паддинги у колонок */
.col-no-pad {
	padding-left: 0px;
	padding-right: 0px;
}

/* XS */
@media (max-width: 767px)  {
	.col-xs-no-pad {
		padding-left: 0px;
		padding-right: 0px;
	}
}

/* SM */
@media (min-width: 768px) and (max-width: 991px) {
	.col-sm-no-pad {
		padding-left: 0px;
		padding-right: 0px;
	}
}

/* MD */
@media (min-width: 992px) and (max-width: 1199px) {
	.col-md-no-pad {
		padding-left: 0px;
		padding-right: 0px;
	}
}

/* LG */
@media (min-width: 1200px) {
	.col-lg-no-pad {
		padding-left: 0px;
		padding-right: 0px;
	}
}


/* Админочка выключил т.к не нравится. */
.admin_panel_wrapper_dis {
	position: fixed;
	width: 100%;
	z-index: 100;
	left: 0;
	right: 0;
	bottom: 0;
}


/* bootstrap brakepoints for copy and paste to сomponents */
/* XS */
@media (max-width: 767px)  {

}

/* SM */
@media (min-width: 768px) and (max-width: 991px) {

}

/* MD */
@media (min-width: 992px) and (max-width: 1199px) {

}

/* LG */
@media (min-width: 1200px) {

}
@media (max-width: 1224px){
 .filter_input_wrapper-block{
 	margin-top: 30px;
 }
 .ctslist_filter_input_wrapper1{
 	margin-left: 0;
 }
}
@media (max-width: 514px){
	.ctslist_filter_input_wrapper3{
     margin-left: 0;
	}
}

@media (max-width: 676px){
 .filter_input_wrapper-block{
 	margin-top: 30px;
 }
}
@media (max-width: 730px){
.topsearch_component{
 display: none;
 }
.projectslist_slider_wrapper_arrow__right{
 	right: -9px;
 }
}
@media (max-width: 671px){
	.projectslist_filter_input_wrapper2{
     margin-top: 30px;
	}
	.ctslist_filter_input_wrapper2{
		margin-left:0;
	}
	
}
@media (max-width: 789px) {
	.proect-goda-content {
		width: 100%;
	}
		.proect-goda-god {
		width: 100%;
	}
	.proect-goda{
		width:80%;
	}
}









.login_overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	background-color: #12181D;
	color: white;
}

.vertical_center_block {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.login_overlay_toggle_links {
	margin-bottom: 100px;
}

.login_overlay_toggle_links .login_overlay_toggle_link {
	text-transform: uppercase;
	position: relative;
	font-size: 28px;
	letter-spacing: 0.164em;
	text-decoration: none;
	border-bottom: 0;
	margin-left: 30px;
	margin-right: 30px;
	color: #848484;
}

.login_overlay_toggle_links .login_overlay_toggle_link:hover,
.login_overlay_toggle_links .login_overlay_toggle_link:active {
	color: white;
	border-bottom: 0;
}

.login_overlay_toggle_links .login_overlay_toggle_link__active {
	color: white;
}

.login_overlay_toggle_link:after,
.login_overlay_toggle_link:before {
	content: '';
	display: inline-block;
	position: absolute;
	border-bottom: 3px dotted #292929;
	top: 100%;
	left: 0;
	width: 100%;
}

.login_overlay_toggle_link__active:after {
	border-width: 0px;
}
.login_overlay_toggle_link__active:before {
	content: '';
	border-bottom: 4px solid #77c0cb;
	margin-top: 4px;
}

.login_overlay_toggle_forms {
	margin-left: 24px;
}

.login_overlay .modern_form_label {
	font-size: 26px;
	top: -11px;
	left: 7px;
	font-size: 27px;
}

.login_overlay .modern_form_control {
	margin-bottom: 55px;
}

.login_overlay .modern_form_input {
	height: 40px;
	padding-left: 8px;
}

.login_overlay .modern_form_control__focused .modern_form_label {
	top: -18px;
	left: 8px;
	font-size: 12px;
	color: #66bfd7;
}

.login_overlay .modern_form_submit {
	padding: 20px 49px;
	-webkit-border-radius: 100px;
	        border-radius: 100px;
}

.login_overlay .reset_password_link {
	margin-left: 20px;
	color: #9c9c9c;
	border-bottom: 1px dotted;
}

.login_overlay_close {
	position: absolute;
	top: 50px;
	right: 50px;
	width: 40px;
	height: 40px;
	cursor: pointer;
}

.login_info {
	background-color: #f4f4f4;
	padding-top: 16px;
	padding-bottom: 26px;
	margin-bottom: 6px;
}

.login_info_username {
	font-size: 39px;
	font-weight: bold;
	line-height: 51px;
}

.login_info_links {
	padding-top: 20px;
	padding-left: 15px;
}

.login_info_links a {
	margin-right: 42px;
	padding-bottom: 3px;
}

a.logout {
	color: #f56262;
	font-size: 16px;
	margin-left: 2px;
	border-color: #ffb7b7;
}

a.logout:hover {
	color: #ff0000;
	border-color: #ff0000;
}

a.login_info_links__active:hover,
a.login_info_links__active {
	border-width: 4px;
}

.show_login_overlay__fixedlink {
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 5;
	margin: 30px;
}

.company_info_titlesup {
	color: #CCC;
}

.company_info_title {
	font-size: 25px;
}

.tenders_list {
	width: 100%;
	display: block;
}

.tenders_list .tenders_item {
	display: inline-block;
	vertical-align: top;
	padding: 0;
	margin: 0;
	margin-right: 30px;
	margin-bottom: 50px;
	width: 315px;
}


.tenders_list .tenders_item:before {
	content: none;
	display: none;
}

.tenders_item_counters_time {
	display: inline-block;
	text-align: center;
	font-size: 34px;
	font-weight: bold;
	margin-right: 23px;
}
.tenders_item_counters_time:last-child {
	margin-right: 0;
}

.tenders_item_counters_time__counter {
	display: block;
	line-height: 1.2;
	margin-top: 5px;
}

.tenders_item_counters_time__descr {
	display: block;
	font-size: 14px;
	opacity: 0.6;
}

.tenders_item_header {
	position: relative;
	padding: 25px 21px;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 0.16em;
	min-height: 110px;
	background-color: #66bfd7;
}

.tenders_item_export_link {
	position: absolute;
	top: 25px;
	right: 15px;
	display: block;
	width: 25px;
	height: 25px;
	/*background-color: #ccc;*/
	background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20x%3D%220%22%20y%3D%220%22%20viewBox%3D%220%200%20512%20512%22%20xml%3Aspace%3D%22preserve%22%20fill%3D%22%23000%22%3E%3Cpath%20d%3D%22M439.7%2091.2L351.4%203C349.5%201.1%20346.9%200%20344.2%200H79.6c-5.6%200-10.2%204.6-10.2%2010.2v491.6c0%205.6%204.6%2010.2%2010.2%2010.2h352.9c5.6%200%2010.2-4.6%2010.2-10.2V98.4C442.6%2095.7%20441.6%2093.1%20439.7%2091.2zM354.4%2034.8l53.4%2053.4h-53.4V34.8zM422.2%20491.6H89.8V20.4h244.3v78c0%205.6%204.6%2010.2%2010.2%2010.2h78V491.6z%22/%3E%3Cpath%20d%3D%22M282%20454.9H119.3c-5.6%200-10.2%204.6-10.2%2010.2s4.6%2010.2%2010.2%2010.2h162.7c5.6%200%2010.2-4.6%2010.2-10.2S287.6%20454.9%20282%20454.9z%22/%3E%3Cpath%20d%3D%22M334%20454.9h-11.1c-5.6%200-10.2%204.6-10.2%2010.2s4.6%2010.2%2010.2%2010.2h11.1c5.6%200%2010.2-4.6%2010.2-10.2S339.7%20454.9%20334%20454.9z%22/%3E%3Cpath%20d%3D%22M311.6%20263.1l75.7-93.5c2.5-3.1%203-7.3%201.3-10.8%20-1.7-3.5-5.3-5.8-9.2-5.8h-85c-3.1%200-6%201.4-7.9%203.8L256%20194.5l-30.5-37.7c-1.9-2.4-4.8-3.8-7.9-3.8H132.6c-3.9%200-7.5%202.3-9.2%205.8%20-1.7%203.5-1.2%207.8%201.3%2010.8l75.7%2093.5%20-75.7%2093.5c-2.5%203.1-3%207.3-1.3%2010.8%201.7%203.5%205.3%205.8%209.2%205.8h85c3.1%200%206-1.4%207.9-3.8L256%20331.8l30.5%2037.7c1.9%202.4%204.8%203.8%207.9%203.8h85c3.9%200%207.5-2.3%209.2-5.8%201.7-3.5%201.2-7.8-1.3-10.8L311.6%20263.1zM299.3%20173.4h58.7l-59.6%2073.5%20-29.4-36.2L299.3%20173.4zM212.7%20352.9h-58.7l59.6-73.5%2029.4%2036.3L212.7%20352.9zM299.3%20352.9L154%20173.4h58.7l145.4%20179.5H299.3z%22/%3E%3C/svg%3E');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}




.tenders_item_counters {
	min-height: 20px;
	padding: 13px 20px;
	font-size: 14px;
	background-color: #141c22;
	color: white;
}

.tenders_item_counters_title {
	opacity: 0.7;
}

.tenders_item a {
	border-bottom: 0;
}

.tenders_item a:hover {
	color: white;
	border-bottom: 0;
}

.tenders_item_name {
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.tenders_item a:hover .tenders_item_name {
	border-bottom: 1px solid rgba(255, 255, 255, 0.15)
}


.tenders_export_form_container {
	display: none;
}

.tenders_export_form {
	padding: 0 20px 50px;
}

.tenders_export_form input[type="button"] {
	padding: 15px 0;
	width: 100%;
}


.tenders_list_table {
	width: 100%;
	max-width: 100%;
	min-width: auto;
	overflow: hidden;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	table-layout: fixed;
	margin-bottom: 150px;
}

.tenders_list_table__order {
	// margin-left: 15px;
	table-layout: fixed;
	border-radius: 0;
}

.tenders_list_table input {
	max-width: 100%;
}

.tenders_list_table th {
	vertical-align: top;
	text-align: left;
	font-size: 15px;
	font-weight: bold;
	background-color: #141c22;
	color: #8fd0e2;
	padding: 17px 17px;
	padding-right: 0;
	padding-bottom: 11px;
}

.tenders_list_th__number {
	width: 39px;
}

.tenders_list_th__name {
	width: 415px;
	text-align: left;
}

.tenders_list_th__manuf {
	width: 140px;
}

.tenders_list_th__col {
	width: 65px;
}

.tenders_list_th__ed {
	width: 92px;
}

.tenders_list_table td {
	padding: 13px 17px;
	font-size: 16px;
	vertical-align: middle;
}

.tenders_list_table__order td {
	padding: 1px;
}

.tenders_list_table tr.colored_row.colored_row_odd td {
	background-color: #F7F7F7;
}

.tenders_list_table tr.colored_row.colored_row_even td {
	background-color: #E9E9E9;
}

.no-pad {
	padding-left: 0;
	padding-right: 0;
}

th.tenders_list_td_space,
td.tenders_list_td_space,
th.tenders_list_th__space,
td.tenders_list_th__space {
	background-color: white !important;
	padding: 0;
	width: 9px;
}

.tenders_list_table input,
.tenders_list_table textarea {
	padding: 3px 5px;
	outline: 0;
	border: 1px solid #dadada;
	vertical-align: middle;
}

.tenders_list_table input:invalid,
.tenders_list_table textarea:invalid {
	border: 1px solid #e84c3d;
}

span.gray {
	color: #797979;
}
	
.tenders_list__submit {
	display: block;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #66BFD7;
	border: 0;
	color: white;
	font-size: 56px;
	line-height: 120px;
	opacity: 0;
	transform: translate(0, 150px);
	transition: all .7s ease-in-out;
	outline: 0;
}

.tenders_list__submit__show {
	transform: translate(0px, 0px);
	opacity: 1;
}

.tenders_item_close_box {
	font-size: 25px;
	padding-bottom: 49px;
}

.open_select_items {
	position: relative;
	border-bottom: 1px dashed rgba(119, 192, 203, 0.53);
	cursor: pointer;
}

.select_items {
	position: absolute;
	top: 100%;
	left: -10px;
	overflow: hidden;
	max-height: 0;
	transition: all .3s ease-in-out;
	background-color: #141c22;
	transform: translate(0, 7px);
}

.select_items__show {
	max-height: 100px;
}

.select_item {
	padding: 5px 10px;
	font-size: 14px;
	font-weight: normal;
	margin-bottom: 0;
	padding-bottom: 0px;
	padding-top: 3px;
}

.select_item:last-child {
	padding-bottom: 7px;
}

.tenders_list_table textarea {
	max-width: 100%;
	height: 30px;
}

.tenders_item_counters__white {
	background-color: #FFF;
	color: #353535;
}

span.rotate90 {
	transform: rotate(-90deg) translateX(-100%) translateY(10px);
	transform-origin: left top;
	margin-top: 11px;
	display: inline-block;
	white-space: nowrap;
	min-height: 180px;
}

.tenders_list_table .replace_item .replace_item__color_number {
	vertical-align: top;
	background-color: #8fd0e2 !important;
	padding: 0;
	overflow: hidden;
}

.tenders_list_table .replace_item:nth-child(odd) td {
	background-color: #c3e6ef;
}

.tenders_list_table .replace_item:nth-child(even) td {
	background-color: #ddf1f6;
}

.tenders_list_table .tenders_list_table {
	border-radius: 0;
	margin-bottom: 0;
}

.tenders_list_table td.replace_item__hiddenrow_td {
	padding: 0;
}

.tenders_list_table td:nth-child(1) {
	width: 39px;
}

.tenders_list_table td:nth-child(2) {
	width: 415px;
}

.tenders_list_table td:nth-child(3) {
	width: 140px;
}

.tenders_list_table td:nth-child(4) {
	width: 65px;
}

.tenders_list_table td:nth-child(5) {
	width: 92px;
}

.tenders_list_table td:nth-child(6) {
	width: 9px;
}

.tenders_list_table td:nth-child(7) {
	width: 163px;
}

.tenders_list_table td:nth-child(8) {
	width: 163px;
}

.tenders_list_table td:nth-child(9) {
	width: 164px;
}

.replace_item__toggle_visible {
	overflow: hidden;
}

.tender_list_td_name {
	position: relative;
}

.tenders_list_table .tender_list_td_name__widthreplace {
	padding-bottom: 20px;
	cursor: pointer;
}

.tenders_list_table .tender_list_td_name__widthreplace span {
	position: absolute;
	bottom: 5px;
	left: 17px;
	font-size: 13px;
	color: #66bfd7;
	text-decoration: underline;
}



.copyright{
  margin-top:50px;
  font-size:14px;
   text-align:center;
    padding-right:30px;

}


.project_slider .slick-prev:before {content: none;}
.project_slider .slick-next:before {content: none;}

.project_slider .slick-arrow,
.project_slider .slick-arrow:focus,
.project_slider .slick-arrow:hover {
	position: static;
	top: auto;
	left: auto;
	right: auto;
	bottom: auto;
	display: block;
	width: 100%;
	height: 35px;
	color: transparent;
	overflow: hidden;
	border: 0;
	background: transparent center no-repeat;
	background-size: contain;
	margin: 0 0 5px;
	outline: 0;
	transform: none;
}

.project-detalie {
	position: relative;
	top: 50px;
	margin-bottom: 140px;
}

.project_slider .slick-arrow.slick-prev {
	background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20data-name%3D%22Layer%201%22%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpolyline%20style%3D%22fill%3Anone%3Bstroke%3A%231d1d1b%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3Bstroke-width%3A2px%3B%22%20points%3D%223.4%2016.3%2012.1%207.7%2020.6%2016.1%22/%3E%3C/svg%3E');
}

.project_slider .slick-arrow.slick-next {
	background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20data-name%3D%22Layer%201%22%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpolyline%20style%3D%22fill%3Anone%3Bstroke%3A%231d1d1b%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3Bstroke-width%3A2px%3B%22%20points%3D%2220.6%207.7%2011.9%2016.3%203.4%207.9%22/%3E%3C/svg%3E');
}

.project_slider {float: left; width: 105px;}

.sliderItem:hover {text-decoration: none; border-bottom: none !important;}

.sliderItem {
  display: block;
  margin: 0 0 5px;
  width: 102px !important;
  height: 102px !important;
  outline: 0;
  border: 1px solid #F2F2F2;
}

.sliderItem img {width: 100px;}

.img-project-detalie {
	margin-left: 127px;
	height: 524px;
}

.img-project-detalie a {display: block;}
.img-project-detalie img {   
	width: 100%;
  height: 524px;
  object-fit: cover;
}

.project-detalie .novosti_detail {margin-top: 0; margin-bottom: 40px;}

.fancybox-button--thumbs {display: none !important;}

.slick-vertical .slick-slide {border-bottom: none !important; outline: none !important;}

.projectslist_slider_item_image .preview_picture {max-width: 289px; height: 212px; object-fit: cover; float: none !important;}

.projectslist_slider_item a:hover .projectslist_slider_item_desc {color: #2b2b2b;}


.back_to_project {position: absolute; top: 90px; z-index: 1}
.back_to_project a {display: inline-block; font-size: 20px; text-transform: uppercase; color: #fff; border-bottom: 1px solid #fff;}
.back_to_project a:before {
	content: '';
	background: url('../images/back.svg') no-repeat;
	background-size: cover;
	width: 15px;
  height: 15px;
  display: inline-block;
  margin-right: 5px;
  position: relative;
  top: 1px;
  margin-left: -21px;
}
.back_to_project a:hover {border: none;}

.page_wrapper_usercontent a {outline: none;}

.projectslist_slider_item a {display: inline-block; border: none;}

.projectslist_slider_item a:hover {border: none;}

.next-prev-block .next-project-block .link-on-project,
.next-prev-block .prev-project-block .link-on-project  {display: block; height: 200px; opacity: 0.9;}

.next-prev-block .next-project-block a:hover .link-on-project,
.next-prev-block .prev-project-block a:hover .link-on-project  {opacity: 0.7;}

.next-project-block {float: right; width: 50%; position: relative; left: 1px; margin-right: 1px; background-color: #000;}
.prev-project-block {float: left; width: 50%; position: relative; right: 1px; margin-left: -1px; background-color: #000;}

.next-prev-block span {
	display: block; 
	margin-left: 20px; 
	color: #fff; 
	position: absolute; 
	top: 20px;
	font-size: 14px;
	max-width: 290px;
}

.next-prev-block span:last-child {font-size: 20px; text-transform: uppercase; font-weight: bold; top: 45px;}

@media screen and (max-width: 1199px) {
	.novosti_list_item:first-child .novosti_list_item_content .novosti_list_item_title {
		font-size: 18px;
		padding-right: 10px;
	}
	.novosti_list_item:first-child .novosti_list_item_img {padding: 25%;}
}

@media screen and (max-width: 625px) {
	.novosti_list_item_content {
		width: 100%;
		padding-left: 10px;
	}

	.novosti_list_item_title {font-size: 18px;}
.novosti_list_item:first-child .novosti_list_item_content {padding-bottom: 0;}
.novosti_list_item:not(:first-child) .novosti_list_item_img {display: none;}


}

@media screen and (max-width: 490px) {
	.novosti_list_item:first-child .novosti_list_item_img {padding: 35%;}
	.novosti_list_item:first-child .novosti_list_item_content .novosti_list_item_title {font-size: 16px;}
}

@media screen and (max-width: 360px) {
		.novosti_list_item:first-child .novosti_list_item_img {padding: 40%;}
	.novosti_list_item:first-child .novosti_list_item_content .novosti_list_item_title {font-size: 14px;}
}

@media screen and (max-width: 760px) {
	.novosti_detail_title {font-size: 25px;}
}

@media screen and (max-width: 550px) {
	.novosti_detail_title {font-size: 20px;}
}

.partner_block .partner_block_item {
  padding: 20px;
  float: left;
  width: 48%;
  border: 1px solid #000;
  height: 271px;
  margin: 0 0 0 -1px;
  position: relative;
  margin-right: 2%;
  margin-bottom: 2%;
}

.first_partner_block_item img {
	width: 50%;
}

.partner_block_item_text_block {
	position: absolute;
	right: 20px;
	top: 20px;
	width: 40%;
}

.partner_block .partner_block_item:before{content: initial;}

.inner_page_outer_container .partner_block {
	display: block;
  clear: both;
  overflow: hidden;
  padding-left: 50px;
}

.partner_block_wrapper {overflow: hidden; margin-bottom: 100px;}

.partner_block_cont h2 {
	text-align: center;
	margin-bottom: 20px;
}

.partner_block_item img {
	text-align: center;
}

.partner_block_item a:not(.first_partner_block_item_link) {
	color: #000;
	border: none;
}

.partner_block_item a:hover:not(.first_partner_block_item_link) {
	color: #000;
	border: none;
}

.last_partner_block {text-align: center;}

.last_partner_block .partner_block_item {
	width: 31.3%;
	height: 200px;
	max-height: 200px;
	position: relative;
}

.last_partner_block .partner_block_item img {
  width: 50%;
  margin: auto;
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
}

@media screen and (max-width: 1220px) {
	.partner_block .partner_block_item {width: 100%;}

	.inner_page_outer_container .partner_block {padding-right: 50px;}
}

@media screen and (max-width: 991px) {
	.partner_block_item.first_partner_block_item {
		height: 100%;
	}

	.index-fullpage-vertical-slide-1-button {
		text-align: center;
	}

	.index-fullpage-vertical-slide-1_sert {
	    position: relative;
	    bottom: auto; 
	    right: auto; 
	    float: none; 
	    font-size: 20px;
	    line-height: 1;
	    display: block;
	    margin: 0 auto 50px;
	    width: 335px;
	}
	.index-fullpage-vertical-slide-1_sert:before {
	    content: '';
	    display: block;
	    width: 63px;
	    height: 51px;
	    background: url(../images/isoicon.svg) no-repeat center / cover;
	    margin-right: 20px;
	    float: left;
	}
}

@media screen and (max-width: 1024px) {
	.index-fullpage-vertical-slide-1-button-link {
	    font-size: 21px;
	    width: 350px;
	    height: 85px;
	}	
}

@media screen and (max-width: 1561px) {
	.index-fullpage-vertical-slide-1-title {font-size: 80px;}
	.index-fullpage-vertical-slide-1-subtitle {font-size: 20px;}
	.index-fullpage-vertical-slide-1-button-link {
    font-size: 20px;
    width: 330px;
    height: 90px;
	}
}

@media screen and (max-width: 1200px) {
	.index-fullpage-vertical-slide-1-title {font-size: 60px;}
	.index-fullpage-vertical-slide-1-subtitle {font-size: 18px;}
	.index-fullpage-vertical-slide-1-button-link {
		font-size: 18px;
    width: 291px;
    height: 75px;
	}
}

.page_wrapper_usercontent .equipment_list {
	margin-bottom: 100px;
}

.equipment_list .equipment_list_item:before {content: initial;}

.equipment_list .equipment_list_item {
	padding: 0;
	border-top: 1px solid #CCCCCC;
	margin: 0;
}

.equipment_list .equipment_list_item:after {
	display: block;
	content: '';
	clear: both;
}

.equipment_list_item_info {
	float: right;
	height: 100%;
}

.equipment_list_item_info:after {
	content: '';
	display: block;
	clear: both;
}

.equipment_list .equipment_list_item a {
	display: block;
	width: 78%;
	height: 100%;
	padding: 25px 17px;
	text-decoration: none;
	border-bottom:none;
	float: left;
}

.equipment_list .equipment_list_item a span {
	font-size: 18px;
}

.equipment_list .equipment_list_item:first-child {
	border-top: 1px solid #CCCCCC;	
	border-bottom: none;
}

.equipment_list .equipment_list_item:last-child {
	border-top: 1px solid #CCCCCC;	
	border-bottom: 1px solid #CCCCCC;	
}

.equipment_list_item_info .video,
.equipment_list_item_info .pdf {
	float: left;
}

.equipment_list_item_info .video a:before,
.equipment_list_item_info .pdf a:before {
	content: '';
	display: block;
	width: 31px;
	height: 31px;
	background-size: 31px;
}

.equipment_list_item_info .video a:before {
	background: url('../images/video.svg') no-repeat center / cover;
}

.equipment_list_item_info .pdf a:before {
	background: url('../images/pdf.svg') no-repeat center / cover;
}

.equipment_list_item_info .video a,
.equipment_list_item_info .pdf a {
	width: auto;
}

.linl_on_hand {
    position: absolute;
    height: 10%;
    width: 20%;
    right: 2%;
    top: 10%;
}

.linl_on_hand a {
	display: block;
	width: 100%;
	height: 100%;
	border: none;
}

.linl_on_hand a:focus {
	border: none;
}

.linl_on_hand a:after,
.linl_on_hand a:before  {
	content: none;
}

.innovacii_img {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	min-height: 100%;
}

.innovacii_img.one {
	height: 358px;
}

.innovacii_img.two {
	height: 552px;
}

.innovacii_img.three {
	height: 388px;
	position: relative;	
	margin-bottom: 56px;
}

.gray_block {
	position: relative;
	margin-top: 50px;
}

.gray_block:before {
	content: '';
	display: block;
	background-color: #F5F5F5;
	position: absolute;
	top: 50%;
	margin-top: -216px;
	left: 0;
	height: 433px;
	width: 100%;
}

.innovacii_title {
	font-size: 34px;
	line-height: 34px;
	margin-bottom: 60px;
}

.innovacii_title_small {
	font-size: 20px;
	line-height: 26px;
	margin-bottom: 25px;
}

.container .innovacii_p {
	font-size: 18px;
	line-height: 22px;
	margin-bottom: 22px;
}

.gray_block .innovacii_title_small {
	padding-top: 119px;
}

.innovacii_effect_block {
	text-align: center;
	margin-top: 112px;
	margin-bottom: 60px;
}

.innovacii_effect_block ul {
	padding-top: 50px;
	text-align: left;
}

.innovacii_effect_block ul li {
	display: inline-block;
	width: 31.3333%;
	vertical-align: top;
}

.container .innovacii_list_item {
	font-size: 18px;
	line-height: 25px;
   padding-right: 20px;
}

.innovacii_img.three h3 {
	color: #fff;
	position: absolute;
	bottom: 60px;
	left: 44px;
	font-size: 35px;
	line-height: 35px;
}

.innovacii_button_price {
	border: 1.3px solid #61C2D3;
	padding: 37px 100px;
	text-align: center;
	display: inline-block;
	margin: 40px auto 50px;
}
.innovacii_button_price h3 {
	font-size: 35px;
	line-height: 35px;
	margin-bottom: 26px;
	margin-top: 0;
}

.innovacii_button_price {
	text-transform: uppercase;
	font-size: 20px;
}

.left_block {
	padding-right: 60px;
}

@media screen and (max-width: 991px) {
	.left_block  {
		padding-right: 0;
	}
	.gray_block:before {
    top: 0;
    margin-top: 0;
	}

	.innovacii_button_price {
		padding: 37px 20px;
	}

	.innovacii_effect_block ul li {
		width: 100%;
	}

	.gray_block .innovacii_title_small {
		padding-top: 0;
	}

	.innovacii_effect_block {
		margin-top: 60px;
	}
}

/*    display: block;
    color: #fefefe !important;
    font-size: 18px;
    text-align: center;
    width: 280px;
    height: 62px;
    line-height: 62px;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    z-index: 9;
    background: rgb(76, 121, 130);
    box-shadow: 0 6px #2d454c;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;*/