*,
*:after,
*:before {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	height: 100%;
}

body {
	height: 100%;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 16px;
	color: #4a4a4a;
	line-height: 1.2;
	background: #f0f0f0;
}

.page {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	webkit-flex-direction: column;
	flex-direction: column;

	height: 100%;
	margin: 0;
	padding: 0;
}


/* Header */
/**********/
.header {
	-webkit-flex-shrink: 0;
	flex-shrink: 0;

	background: #f0f0f0;
}

.header-content {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	padding: 15px 0;
	font-size: 15px;
	font-weight: 300;
	color: #fff;
}

.header-logo {
	flex: 1;
	margin: auto 0;
}

.header-logo img {
	width: auto;
	height: 75px;
}

.header-contacts {
	margin: auto 0;
	line-height: 1.6;
	white-space: nowrap;
}

.header-contacts a {
	font-size: 14px;
	font-weight: 300;
	color: #333;
}

@media (min-width: 360px) {
	.header-logo img {
		width: 161px;
		height: 96px;
	}

	.header-contacts a {
		font-size: 15px;
	}
}

@media (min-width: 480px) {
	.header-contacts a {
		font-size: 16px;
	}
}
/* --- */



/* Navigation */
/**************/
.navigation-bar {
	-webkit-flex-shrink: 0;
	flex-shrink: 0;

	width: 100%;
	height: 44px;
	margin: 0;
	padding: 0;
	background: #686866;
	border-top: 1px solid #fff;
}

.navigation {
	height: 44px;
}

.navigation-button-wrapper {
	padding: 5px 25px;
}

.navigation-button {
	position: relative;
	float: left;
	padding: 4px 10px;
	margin: 1px 15px 0 0;
	background: rgba(204, 204, 202, 0.25);
	border: 1px solid rgba(251, 251, 251, 0.35);
	border-radius: 3px;
}

.navigation-button.collapsed {
	background: rgba(204, 204, 202, 0.15);
	border: 1px solid rgba(251, 251, 251, 0.25);
}

.navigation-button .icon-bar {
	display: block;
	width: 22px;
	height: 2px;
	margin: 4px 0;
	border-radius: 1px;
	background-color: rgba(251, 251, 251, 0.75);
}

.navigation-list {
	position: relative;
	margin: 0 -30px;
	padding: 0;
	background: #f8f8f8;
	border: 1px solid #ddd;
	box-shadow: 0 3px 7px rgba(151, 151, 151, .5);
}

@media (min-width: 768px) {
	.navigation-button-wrapper {
		display: none;
	}

	.navigation-list.collapse {
		display: block;
		height: 44px !important;
		margin: 0;
		padding: 0 45px;
		background: transparent;
		border: none;
		box-shadow: none;
	}
}
/* --- */


/* Menu */
/********/
.menu {
	margin: 7.5px 0;
	padding: 0;
	list-style: none;
}

.menu li {
	position: relative;
	display: block;
}

.menu li a {
	position: relative;
	display: block;
	padding: 10px 30px;
	line-height: 20px;
	font-size: 16px;
	font-weight: 300;
	color: #666;
}

.menu li.active a {
	color: #333;
	background: #ddd;
}

.menu li a:hover,
.menu li a:focus {
	text-decoration: none;
	color: #333;
	background: #eee;
}

@media (min-width: 768px) {
	.menu {
		margin: 0;
	}

	.menu li {
		position: relative;
		display: inline-block;
		line-height: 44px;
		margin: 0 45px 0 0;
	}

	.menu li:last-of-type {
		margin: 0;
	}

	.menu li  a {
		display: inline;
		padding: 0;
		font-size: 17px;
		font-weight: 300;
		color: #fff;
		text-decoration: none;
		line-height: 44px;
	}

	.menu li.active a {
		color: #fff;
		background: transparent;
	}

	.menu li a:hover {
		color: #fff;
		text-decoration: underline;
		background: transparent;
	}

	.menu li.active:before {
		content: '';
		position: absolute;
		bottom: -2px;
		left: 0;
		right: 0;
		display: block;
		height: 6px;
		border-radius: 3px;
		border: 1px solid #fff;
		background: #333;
		z-index: 100;
	}

	.menu li.active:after {
		content: '';
		position: absolute;
		left: 50%;
		bottom: -10px;
		width: 0;
		height: 0;
		margin-left: -8px;
		border-left: 8px solid rgba(0, 0, 0, 0);
		border-right: 8px solid rgba(0, 0, 0, 0);
		border-top: 12px solid #333;
		z-index: 110;
	}
}

@media (min-width: 992px) {
	.menu li {
		margin: 0 50px 0 0;
	}

	.menu li  a {
		font-size: 18px;
	}
}
/* -- */


/* Main section */
/****************/
.main {
	flex-grow: 1;
	-webkit-flex-grow: 1;
	flex-shrink: 0;
	-webkit-flex-shrink: 0;

	margin: 0 15px;
	border-left: 1px solid #cccccc;
	border-right: 1px solid #cccccc;
	background: #fff url(../img/vsl-01.png) no-repeat left bottom;
	box-shadow: -5px 0 5px rgba(151, 151, 151, .15), 5px 0 5px rgba(151, 151, 151, .15);
}

article {
	padding: 30px 10px;
	font-size: 16px;
	font-weight: 300;
	color: #4a4a4a;
}

h1 {
	margin: 0 0 25px;
	font-size: 30px;
	font-weight: 400;
	color: #40525b;
}

h2 {
	margin: 0 0 20px;
	font-size: 24px;
	font-weight: 400;
}

p {
	margin: 0 0 20px;
}

.em {
	font-weight: 400;
	font-style: normal;
}

.certs {
	margin: 0 0 20px;
}

.cert {
	margin: 0 0 20px;
	padding: 0 10px;
	text-align: center;
}

.cert-single {
	width: 100% !important;
}

.cert img {
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}

.cert-border img {
	padding: 1px ;
	border: 1px solid #ddd;
}

.map {
	margin: 0 0 10px;
	padding: 1px;
	border: 1px solid #ddd;
}

table.analog {
	width: auto;
	table-layout: auto;
	margin: 0 0 20px;
	border-collapse: collapse;
	border-spacing: 0;
	border-top: 1px solid #ddd;
	border-left: 1px solid #ddd;
}

table.analog th {
	font-weight: 400;
	background: #f8f8f8;
}

table.analog th .short {
	display: inline;
}

table.analog th .long {
	display: none;
}

table.analog th,
table.analog td {
	margin: 0;
	padding: 3px 2px;
	font-size: 14px;
	text-align: center;
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	white-space: normal;
}

@media (min-width: 768px) {
	.main {
		width: 750px;
		margin: 0 auto;
	}

	article {
		padding: 55px 45px;
	}

	h1 {
		margin: 0 0 35px;
		text-transform: uppercase;
	}

	p {
		margin: 0 0 25px;
	}

	.cert {
		float: left;
		width: 50%;
	}

	table.analog th,
	table.analog td {
		padding: 3px 7px;
		font-size: 18px;
	}

	table.analog th .short {
		display: none;
	}

	table.analog th .long {
		display: inline;
	}
}

@media (min-width: 992px) {
	.main {
		width: 970px;
	}

	article {
		padding: 55px 45px;
	}

	h1 {
		margin: 0 0 35px;
	}

	p {
		margin: 0 0 25px;
	}
}

@media (min-width: 1200px) {
	.main {
		width: 1170px;
	}

	article {
		font-size: 18px;
	}
}
/* --- */


/* Copyright line */
/******************/
.copyright {
	-webkit-flex-shrink: 0;
	flex-shrink: 0;

	height: 40px;
	line-height: 40px;
	background: #333;
	border-bottom: 1px solid #999;
}

.copyright-content {
	padding: 0 25px;
	font-size: 15px;
	font-weight: 300;
	color: #fff;
}

@media (min-width: 768px) {
	.copyright-content {
		padding: 0 45px;
		font-size: 16px;
	}
}
/* --- */


/* Footer */
/**********/
.footer {
	-webkit-flex-shrink: 0;
	flex-shrink: 0;

	background: #4a4f55;
}

.footer-content {
	padding: 25px 25px;
	font-size: 15px;
	font-weight: 300;
	color: #fff;
}

.footer-logo {
	float: left;
	display: none;
}


.footer-logo img {
	width: 161px;
	height: 96px;
}

.footer-address,
.footer-contacts {
	float: left;
	width: 100%;
	margin: 0 0 20px;
	line-height: 1.5;
}

.footer-content h2 {
	display: none;
	margin: 0 0 15px;
	padding: 0;
	font-size: 20px;
	font-weight: 600;
	color: #cbc9c9;
	text-transform: uppercase;
}

.footer-content h2.name {
	display: block;
	margin-bottom: 5px;
	font-size: 18px;
	font-weight: 400;
	color: #ebe9e9;
	text-transform: none;
}

.footer-content a {
	color: #fff;
	text-decoration: none;
}

.footer-content a:hover {
	text-decoration: underline;
}

@media (min-width: 480px) {
	.footer-content {
		padding: 25px 25px;
	}

	.footer-address {
		width: 60%;
	}

	.footer-contacts {
		width: 40%;
	}

	.footer-content h2 {
		display: block;
	}

	.footer-content h2.name {
		margin: 0 0 15px;
		font-size: 20px;
		font-weight: 600;
		color: #cbc9c9;
		text-transform: uppercase;
	}
}

@media (min-width: 768px) {
	.footer-content {
		padding: 25px 45px;
		font-size: 16px;
	}

	.footer-logo {
		display: block;
		width: 35%;
		margin-bottom: 0;
	}

	.footer-address {
		width: 40%;
		margin-bottom: 0;
	}

	.footer-contacts {
		width: 25%;
		margin-bottom: 0;
	}

	.footer-content h2,
	.footer-content h2.name {
		font-size: 22px;
		margin-bottom: 20px;
	}
}

@media (min-width: 992px) {
	.footer-content {
		padding: 35px 45px;
	}

	.footer-content h2,
	.footer-content h2.name {
		font-size: 24px;
		margin-bottom: 25px;
	}
}
/* --- */


/* helpers */
.email img,
.phone img,
.fax img {
	width: 20px;
	height: 18px;
	margin: 0 5px 0 0;
}

.no-mobile {
	display: none;
}

@media (min-width: 768px) {
	.no-mobile {
		display: block;
	}
}

@media (min-width: 480px) {
	.mobile-only {
		cursor: default;
		text-decoration: none !important;
	}
}
/* --- */

.page._underconstruction {
	position: relative;
	background-color: #f6f6f6;
	z-index: 1;
}

.page._underconstruction::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("../img/vsl-02.png");
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0.15;
	z-index: -1;
}

.underconstruction {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 30px;
	width: 100%;
	height: 100%;
}

.underconstruction h1 {
	margin: 0;
	font-size: 50px;
	font-weight: 600;
	color: 
}

.underconstruction a {
    font-size: 22px;
    font-weight: 600;
    color: #2076e0;
}