@font-face {
	font-family: "Inter";
	src: url("/fonts/Inter18pt-Medium.eot");
	src: url("/fonts/Inter18pt-Medium.eot?#iefix") format("embedded-opentype"),
	url("/fonts/Inter18pt-Medium.woff2") format("woff2"),
	url("/fonts/Inter18pt-Medium.woff") format("woff"),
	url("/fonts/Inter18pt-Medium.ttf") format("truetype"),
	url("/fonts/Inter18pt-Medium.svg#Inter18pt-Medium") format("svg");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Inter";
	src: url("/fonts/Inter18pt-Regular.eot");
	src: url("/fonts/Inter18pt-Regular.eot?#iefix") format("embedded-opentype"),
	url("/fonts/Inter18pt-Regular.woff2") format("woff2"),
	url("/fonts/Inter18pt-Regular.woff") format("woff"),
	url("/fonts/Inter18pt-Regular.ttf") format("truetype"),
	url("/fonts/Inter18pt-Regular.svg#Inter18pt-Regular") format("svg");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Commissioner";
	src: url("/fonts/Commissioner-SemiBold.eot");
	src: url("/fonts/Commissioner-SemiBold.eot?#iefix") format("embedded-opentype"),
	url("/fonts/Commissioner-SemiBold.woff2") format("woff2"),
	url("/fonts/Commissioner-SemiBold.woff") format("woff"),
	url("/fonts/Commissioner-SemiBold.ttf") format("truetype"),
	url("/fonts/Commissioner-SemiBold.svg#Commissioner-SemiBold") format("svg");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Inter";
	src: url("/fonts/Inter18pt-SemiBold.eot");
	src: url("/fonts/Inter18pt-SemiBold.eot?#iefix") format("embedded-opentype"),
	url("/fonts/Inter18pt-SemiBold.woff2") format("woff2"),
	url("/fonts/Inter18pt-SemiBold.woff") format("woff"),
	url("/fonts/Inter18pt-SemiBold.ttf") format("truetype"),
	url("/fonts/Inter18pt-SemiBold.svg#Inter18pt-SemiBold") format("svg");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}


body, th, td {
	font-family: "Inter", sans-serif;
	font-size: 14px;
	color: #000e33;
	margin:0;
}

.flex {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: row;
	flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
}



.h1_caps,
.h1_caps_black,
.h2, .h2_caps,
.h3, .h3_caps,
.h4, .h4_caps {
	white-space: normal;
	overflow-wrap: normal;
	word-break: normal;
	hyphens: none;
}

.h1_caps {
	font: normal 600 56px 'Inter', sans-serif;
	line-height: 70px;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.h1_caps_black {
	font: normal 600 56px 'Inter', sans-serif;
	line-height: 70px;
	color: #02295C;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.h2_caps {
	font: normal 600 36px 'Inter', sans-serif;
	color: #02295C;
	letter-spacing: 1px;
	line-height: 1.2;
	text-transform: uppercase;
}

.h4_caps {
	color: #02295C;
	font: normal 600 18px 'Inter', sans-serif;
	line-height: 24px;
	letter-spacing: 1px;
}

.text_bold_16 {
	font: normal 600 16px 'Inter', sans-serif;
	line-height: 24px;
}

.text_20_caps_blue {
	font: normal 400 24px 'Inter', sans-serif;
	line-height: 24px;
	color: rgba(57, 129, 204);
	text-transform: uppercase;
}

.text_12_caps_bold {
	color: #000E32;
	font: normal bold 12px 'Inter', sans-serif;
	line-height: 16px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.text_12_caps_bold_subheader {
	color: #000E32;
	font: normal bold 12px 'Inter', sans-serif;
	line-height: 16px;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.h3_caps {
	font: normal 600 26px 'Inter', sans-serif;
	line-height: 32px;
	letter-spacing: 1px;
	color: #000E32;
	text-transform: uppercase;
}


.text_14 {
	font: normal 400 14px 'Inter', sans-serif;
	color: #000E32;
	line-height: 1.3;
}

.text_12_caps {
	color: #02295C;
	font: normal 500 12px 'Inter', sans-serif;
	line-height: 16px;
	letter-spacing: 1px;
	text-transform: uppercase;
}



/*  ---------- Header & Menu --------------------------------------------------------	*/

.headerMain {
	position: fixed;
	width: 100%;
	max-width: 100%;
	z-index: 999;
	background: #fff;
}

.header-wrapper {
	max-width: 1600px;
	margin: 0 auto;
}

.header {
	padding: 22px 0;
	justify-content: space-between;
	align-items: center;
	flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	-webkit-flex-wrap: nowrap;
}

.headerLeft {
	align-items: center;
	justify-content: space-between;
	width: 55%;
}

.headerRight {
	align-items: center;
	margin-left:50px;
}

.headerBtn {
	width: 46px;
	height: 46px;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: relative;
	display:none;
}

.headerBtn:before {
	content: '';
	display: block;
	background: rgba(241, 243, 244, 1);
	height: 46px;
	width: 46px;
	position: absolute;
	transform: skewX(-12deg);
	top: -3px;
	transition: opacity, 0.5s;
	opacity: 0;
}

.headerBtn:hover:before {
	opacity: 1;
}

.headerBtn span {
	display: block;
	height: 2px;
	background: #000;
	width: 22px;
	margin-bottom: 6px;
	position: relative;
	transition: all, 0.5s;
}

.headerRightMenu.active {
	visibility: hidden;
}

.headerBtn.active span:last-of-type,
.headerBtn.active span:first-child {
	display: none;
}

.header__logo {
	max-width:257px;
	width:100%;
}

.headerRightMenu {
	justify-content:left;
	gap:25px;
}

.headerRightMenu li a {
	text-transform: uppercase;
	-webkit-transition: all, 0.5s;
	-moz-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.headerMenuListMenu li a:hover,
.headerRightMenu li a:hover {
	color: rgba(57, 129, 204);
}

.headerMenuListMenu li a.active,
.headerRightMenu li a.active {
	color: rgba(57, 129, 204);
}

.headerRightInfo__search {
	width: 20px;
	height: 20px;
	margin-right: 0;
	position: relative;
}


.headerRightInfo__search:after {
	content: '';
	background: url('/images/search.svg') no-repeat center center;
	display: block;
	width: 20px;
	height: 20px;
	z-index: 9;
	position: relative;
	left: 20px;
}

.wrap {
	margin: 0 auto;
	width: 1600px;
}

.header__logo {
	max-width:257px;
	width:100%;
}


.auth {
	width:100%;
}

.wrap {
	width:100%;
	max-width: 1600px;
}


.btn {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	position: relative;
	height: 48px;
}

.btn.blue::before {
	background: #02295C;
}

.btn.blue:hover:before {
	background: #001A64;
}

.btn.blue span {
	color: #FFFFFF;
}

.btn span {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	position: relative;
}

.btn:before {
	content: '';
	display: block;
	position: absolute;
	height: 100%;
	width: 100%;
	background: #fff;
	transform: skewX(-10deg);
	-webkit-transition: all, 0.5s;
	-moz-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.btn span:after {
	content: "";
	display: block;
	background: url('/img/arrow2.svg') no-repeat center;
	width: 10px;
	height: 12px;
	margin-left: 8px;
	margin-top: 1px;
}




.footer {
	padding: 40px 0 20px;
}
.footer .wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.footer__menu li:not(:last-child) {
	margin-bottom: 8px;
}
.footer__menu li a {
	display: block;
	text-decoration: none;
	text-transform: uppercase;
	color: #02295c;
	font-size: 16px;
	font-weight: 600;
	line-height: 19px;
}
.footer__catalog h2 {
	text-transform: uppercase;
	margin-bottom: 8px;
	color: #02295c;
	font-size: 16px;
	font-weight: 600;
	line-height: 19px;
}
.footer__catalog ul li:not(:last-child) {
	margin-bottom: 8px;
}
.footer__catalog ul li a {
	display: block;
	text-decoration: none;
	line-height: 17px;
	color: #02295c;
}
.footer__contacts {
	margin-right: 170px;
}
.footer__contacts p {
	margin-bottom: 8px;
	line-height: 17px;
}
.footer__social {
	margin-bottom: 16px;
	margin-left: 8px;
}
.footer__social a {
	display: inline-block;
	text-decoration: none;
	width: 74px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background: #d7e6f5;
	transform: skew(-15deg);
}
.footer__social a:not(:last-child) {
	margin-right: 8px;
}
.footer__social a img {
	vertical-align: middle;
	transform: skew(15deg);
}
.footer__phone {
	display: block;
	text-decoration: none;
	color: #02295c;
	font-size: 16px;
	font-weight: 600;
	line-height: 19px;
}
.footer__copy {
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-top: 40px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 20px 40px 17px;
	background: #d7e6f5;
	font-size: 12px;
	font-weight: 400;
	line-height: 15px;
	color: #02295c;
	align-items: center; 
}
.footer__copy a {
	text-decoration: none;
	color: #02295c;
}



@media (max-width: 1660px) {
	.header__logo {
		max-width: 230px;
		margin-left:0;
	}

	.text_16,
	.text_bold_16,
	.contactsRight .mapPopupListBlock2__title {
		font-size:15px;
		line-height: 1.3;
	}

	.h4_caps {
		font-size: 16px;
		line-height: 24px;
	}

	.text_14 {
		font-size:13px;
		line-height: 1.3;
	}

	.text_12_caps {
		font-size:11px;
		line-height: 1.3;
	}

	.header {
		padding: 16px 0;
	}

	.wrap,
	.footer {
		width: 93%;
		margin: 0 auto;
	}
	.aside {
		max-width: 23%;
		min-width: 300px;
	}
}