.header {

}
.header__desktop {
	
}
.header__mobile {
/*	display: none;*/
	position: fixed;
	top: 0;
	left: 100vw;
	bottom: 0;
	overflow-y: auto;
	transition: var(--tr);
	width: 100vw;
	background: #fff;
	z-index: 1000;
}

.menu_toggle {
	position: relative;
	z-index: 1010;
}
.header__mobile.active {
	left: 0;
}
.header_logo {
	
}
.header_logo-img {
	
}
.header_center {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	height: 100%;
	padding: 0 30px;
}
.header_center-item {
	height: 50%;
	display: flex;
	align-items: center;
}
.header_nav-holder {

}
.header_nav {
	margin-left: auto;
/*	width: 100%;*/
}
.header_nav .menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	justify-content: space-between;
}
.header__mobile .header_nav .menu {
	flex-direction: column;
    height: 100vh;
    justify-content: space-between;
    align-items: center;
    padding: 100px 0;
}
.header__mobile .header_nav .menu-item > A {
	font-size: var(--font-size-xxl);
}
.header__mobile .sub-menu {
	display: none!important;
}
.header_nav #primary-menu>.menu-item:not(:last-child) {
	margin-right: 20px;
}
.header_nav .menu-item A {
	text-decoration: none;
	color: var(--col-text);
}
.header_nav .menu-item > A {
	position: relative;
	border-bottom: 6px solid transparent;
	z-index: 201;
}
.header_nav .menu-item:hover > A {
	border-bottom: 6px solid var(--col-red);
}
.header_nav .menu-item .submenu-wrapper {
/*	display: none;*/
	position: fixed;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    z-index: 200;
    height: 0;
    transition: var(--tr);
    overflow: hidden;
    opacity: 0;
}
.header_nav .menu-item:hover .submenu-wrapper .sub-menu {
	padding-top: 20px;
}
.header_nav .menu-item:hover .submenu-wrapper {
/*	display: block;*/
    padding-top: 70px;
	opacity: 1;
    height: auto;
}
.header_nav .menu-item .submenu-wrapper .submenu-wrapper-inner {
	background: #fff;
	position: relative;
}
.header_nav .menu-item .sub-menu {
    list-style: none;
    display: flex;
    flex-flow: row wrap;
    background: transparent;
}
.header_nav .menu-item:hover .sub-menu {
	margin: 0;
    padding: 0;
}


.header_nav .menu-item .sub-menu .menu-item {
	position: relative;
	width: 25%;
	min-height: 40px;
	padding-left: 52px;
	padding-right: 12px;
	display: flex;
	align-items: center;
	padding-top: 20px;
	padding-bottom: 20px;
	border: none!important;
	padding: 12px;
}
.header_nav .menu-item .sub-menu .menu-item::after {
	/*content: "";*/
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 40px;
	background: url(../media/icon-submenu.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
.header_search-holder {
	display: flex;
	justify-content: right;
}
.header_search {
	width: 100px;
	position: relative;
}
.header_search:focus-within {
	width: 100%;
}
INPUT.header_search-input {
	width: 100%;
	border: none;
	border-bottom: 1px solid var(--col-input);
	padding-right: 32px;
	height: 32px;
	box-sizing: border-box;
	outline: none;
	background: transparent;
}
.header_search-icon {
	position: absolute;
	right: 0;
	top: 0;
}
.header_contact-holder {
	height: 100%;
    display: flex;
    align-items: center;
}
.header_contact-inner {
	height: calc(50% + 32px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;	
}
.header_contact {
	text-decoration: none;
}
.header_contact-phone,
.header_contact-phone:visited,
.header_contact-phone:active,
.header_contact-phone:hover {
	font-size: var(--font-size-sm);
	line-height: var(--line-height-md);
	color: var(--col-red);
}
.header_contact-phone__bold {
	font-weight: 700;
}
.header_contact-email,
.header_contact-email:visited,
.header_contact-email:active,
.header_contact-email:hover {
	color: var(--col-link);
}
.header_contact-request,
.header_contact-request:visited,
.header_contact-request:active,
.header_contact-request:hover {
	color: var(--col-red);
	text-decoration: underline;
}


.footer {
	padding-top: 40px;
	padding-bottom: 40px;
}

.footer__bottom {
	font-weight: 500;
	font-weight: 300;
	font-size: var(--font-size-xxs);
	line-height: var(--line-height-xl);
	color: var(--col-copyright);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer_logo-img {
	margin-bottom: 24px;
}
.footer_slogan {
	color: var(--col-article-bg);
}
.footer_nav-title {

}
.footer_nav-title-item {
	color: var(--col-white);
	text-decoration: none;
	padding-bottom: 24px;
}
.footer_nav-holder {

}
.footer_nav {

}
.footer_nav .menu {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer_nav .menu-item {
	padding-bottom: 10px;
}
.footer_nav .menu-item A {
	text-decoration: none;
	color: var(--col-copyright);
}

.footer_contacts {

}
.footer_contact {
	display: flex;
	align-items: flex-start;
	padding-bottom: 22px;
}
.footer_contact-icon {
	margin-right: 12px;
}
.footer_contact-text {
	color: var(--col-white);
}
.footer_contact__lg .footer_contact-text {
	font-family: 'Lato';
	font-size: var(--font-size-sm);
	line-height: var(--line-height-md);
}
.footer_button-holder {
}
.footer_button,
.footer_button:visited {
	height: 44px;
	border: 2px solid var(--col-red);
	display: flex;
	justify-content: center;
	align-items: center;

	/*font-family: 'Lato', sans-serif;*/
	font-weight: 700;
	font-weight: 500;
	font-size: var(--font-size-sm);
	line-height: var(--line-height-md);
	text-decoration: none;
	color: var(--col-white);
}
.footer_button:hover {
	color: var(--col-white);
	border-color: var(--col-white);
	background-color: var(--col-red);
}


.top-panel {
	padding: 10px 0;
}
.top-panel .header_contact:not(:last-child) {
	margin-right: 20px;
}
.top-panel .header_contact {
	font-size: var(--font-size-xs)!important;
}
.header_center__wtp {
	padding: 0;
}