:root {
    --color-site-primary: #4876a3;
    --color-site-primary-hover: #376490;

	--color-site-secondary: #6c757d;
	--color-site-secondary-hover: #5e666d;

	--color-site-success: #198754;
	--color-site-success-hover: #177c4d;

	--color-site-danger: #dc3545;
	--color-site-danger-hover: #be2d3b;

	--color-site-warning: #ffc107;
	--color-site-warning-hover: #f1b607;

	--color-site-info: #0dcaf0;
	--color-site-info-hover: #0cbde1;

	--color-site-light: #f8f9fa;
	--color-site-light-hover: #f4f5f6;

	--color-site-dark: #212529;
	--color-site-dark-hover: #1b1e21;

	--color-site-grey-border: #bbbbbb;
}

* {
	font-size: 18px;
	font-family: Ubuntu, Arial, sans-serif;
	color: var(--color-site-dark);
}

body {
	margin: 0;
	/*background-image: url('/img/bg.png');*/
	/*background-size: cover;*/
	background-image: url("../img/bg.png");
	background-repeat: repeat;
	background-color: #ffffff;

	/* Контент без фона */
	/*padding: 0;*/

	/* Контент с фоном */
	padding: 10px;
}

/* Контент с фоном */
@media screen and (max-width: 992px) {
	body {
		padding: 0;
	}
}

body.body_menu-active {
	overflow: hidden;
}

div, a {
	box-sizing: border-box;
}

a {
	color: var(--color-site-primary);
}
a:hover {
	color: var(--color-site-danger);
	border-color: var(--color-site-danger);
}

h1 {
	font-size: 30px;
	font-weight: normal;
	text-align: center;
	margin: 0 0 50px 0;
	color: var(--color-site-primary);
	text-indent: uppercase;
}
@media screen and (max-width: 800px) {
	h1 {
		font-size: 24px;
	}
}

h2 {
	font-size: 24px;
	font-weight: normal;
	text-align: left;
	margin: 0 0 24px 0;
	color: var(--color-site-primary);
	text-transform: uppercase;
	display: block;
}
@media screen and (max-width: 800px) {
	h2 {
		font-size: 18px;
	}
}

p {
	margin: 0 0 25px 0;
	text-align: justify;
}

iframe {
	max-width: 100%;
}

img {
	max-width: 100%;
}

.btn {
	border: 0px solid #ffffff;
	border-radius: 6px;
	padding: 12px 18px 10px 18px;
	font-weight: bold;
	font-size: 16px;
	line-height: 16px;
	max-width: 200px;
	margin: 0 auto;
	height: auto;
	cursor: pointer;
}

.btn-primary {
	background-color: var(--color-site-primary);
	border: 2px solid var(--color-site-primary);;
	color: #ffffff;
}

.btn-primary:hover {
	background: var(--color-site-primary-hover);
	border: 2px solid var(--color-site-primary-hover);
}



.overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10;
	background-color: #000000;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s linear;
}

.body_menu-active .overlay {
	visibility: visible;
	opacity: 0.4;
	transition: opacity 0.3s linear;
}



.wrapper {
	margin: 0 auto;
	overflow: hidden;
	
	width: 100%;
	max-width: 1010px;

	/* Контент без фона */
	padding: 0;

	/* Контент с фоном */
	padding: 0 30px;	
	background: rgba(255, 255, 255, 1);
	border: 1px solid var(--color-site-grey-border);
	border-radius: 6px;
	box-shadow: 0 1px 4px rgba(100, 100, 100, .1), -23px 0 20px -23px rgba(100, 100, 100, .4), 23px 0 20px -23px rgba(100, 100, 100, .4), 0 0 20px rgba(100, 100, 100, .05) inset;

}



/* Контент с фоном */
@media screen and (max-width: 992px) {
	.wrapper {
		border: none;
		border-radius: 0;
		padding: 0 15px;
	}
}



.header {
	height: auto;
	border-bottom: 2px solid var(--color-site-primary);
}

	.header__inner {
		padding: 10px 0;
		/*min-height: 100px;*/

		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
	@media screen and (max-width: 800px) {
		.header__inner {
			padding: 10px 0;
			/*min-height: 60px;*/
		}
	}

		.header__logo {
			flex-grow: 0;
			flex-shrink: 1;

			display: block;
			text-decoration: none;
			margin-right: 20px;
		}

			.header__logo-name {
				font-size: 26px;
				font-weight: bold;
				color: var(--color-site-primary);
			}
			@media screen and (max-width: 400px) {
				.header__logo-name {
					font-size: 20px;
				}
			}


		.content__langs {
			font-size: 20px;
		}
		@media screen and (max-width: 800px) {
			.content__langs {
				display: none;
			}
		}

		.header__contacts {
			flex-grow: 0;
			flex-shrink: 0;

			text-align: right;
		}
		@media screen and (max-width: 800px) {
			.header__contacts {
				display: none;
			}
		}

			.header__phone-num {
				color: var(--color-site-primary);
				font-size: 20px;
				text-decoration: none;
				text-align: right;
			}

		.header__hamburger {
			flex-grow: 0;
			flex-shrink: 0;

			display: none;
			text-decoration: none;
		}

		@media screen and (max-width: 800px) {
			.header__hamburger {
				display: block;
			}
		}
			.header__hamburger svg {
				display: block;
				width: 28px;
				fill: var(--color-site-primary);
			}

			.header__hamburger:hover svg {
				fill: var(--color-site-primary-hover);
			}



.menu {
	display: none;

	position: absolute;
	top: 0;
	bottom: 0;
	right: 100%;
	z-index: 200;
	width: 300px;
	max-width: 100%;
	height: 100%;
	border-bottom: none;		
	background-color: #fefefe;
	padding: 100px 15px 50px 15px;
		
	transform: translate3d(0,0,0);
	transition: transform 0.3s linear;
}	
.body_menu-active .menu {
	transform: translate3d(100%,0,0);
	box-shadow: 0 0 8px rgba(0,0,0,.3);
}
@media screen and (max-width: 800px) {
	.menu {
		display: block;
	}
}

	.menu__close {
		position: absolute;
		top: 15px;
		right: 15px;
		display: none;
	}

	@media screen and (max-width: 800px) {
		.menu__close {
			display: block;
		}
	}

		.menu__close svg {
			display: block;
			width: 22px;
			height: 22px;
			fill: var(--color-site-danger);
		}
	    
		.menu__close:hover svg {
			fill: var(--color-site-danger-hover);
		}

	.menu__logo {
		display: none;
		width: 100%;
		margin-bottom: 10px;
	}
	@media screen and (max-width: 800px) {
		.menu__logo {
			display: block;
		}
	}

		.menu__logo-name {
			font-size: 24px;
			font-weight: bold;
			text-align: center;
			color: var(--color-site-primary);
		}

	.menu__contacts {
		display: none;
		text-align: center;
		margin-bottom: 50px;
	}
	@media screen and (max-width: 800px) {
		.menu__contacts {
			display: block;
		}
	}
		.menu__phone-num {
			display: block;
			color: var(--color-site-dark);
			font-size: 20px;
			text-decoration: none;
			padding: 15px;
			border: 2px solid var(--color-site-dark);
		}

	.menu__langs {
		color: var(--color-site-dark);
		font-size: 20px;
		/*border-bottom: 1px solid var(--color-site-dark);*/
		text-align: center;
		padding-bottom: 30px;
	}

	.menu__inner {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: flex-start;
	}
	@media screen and (max-width: 800px) {
		.menu__inner {
			display: flex;
			flex-direction: column;
			flex-wrap: nowrap;
			justify-content: flex-start;
			align-items: center;
		}
	}

		.menu__item {
			flex-grow: 0;
			flex-shrink: 0;

			display: block;
			padding: 15px 20px;
			text-decoration: none;
			color: var(--color-site-primary);
		}
		@media screen and (max-width: 800px) {
			.menu__item {
				width: 100%;
				padding: 15px;
				border-bottom: 1px solid var(--color-site-dark);
			}
		}

		.menu__item:hover {
			color: #ff0000;
		}



.content {
	width: 100%;
	min-height: 300px;
	margin-bottom: 30px;
	/*border-bottom: 1px solid var(--color-site-grey-border);*/
	padding: 30px 0;
}
.content:last-child {
	margin-bottom: 0;
}
@media screen and (max-width: 1012px) {
	.content {
		padding: 20px 0;
	}
}
@media screen and (max-width: 800px) {
	.content {
		min-height: 100px;
		margin-bottom: 15px
	}
}

	.content__block {
		display: block;
		width: 100%;
		margin-bottom: 50px;
	}

		.content__block_center {
			text-align: center;
		}

		.content__block:last-child {
			margin-bottom: 0 !important;
		}



.footer {
	width: 100%;
	border-top: 1px solid var(--color-site-grey-border);
	padding: 20px 0;
}

	.footer__copyrights {
		font-size: 12px;
		color: var(--color-site-secondary);
	}



.hide-on-mobile {
	display: block;
}
.show-on-mobile {
	display: none;
}

@media screen and (max-width: 800px) {
	.hide-on-mobile {
		display: none;
	}
	.show-on-mobile {
		display: block;
	}
}



.clearfix:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; }
.clearfix { display: inline-block; }
.clearfix { display: block; zoom: 1; }


