:root {
    --color-primary: #4876a3;
    --color-primary-hover: #376490;

	--color-secondary: #6c757d;
	--color-secondary-hover: #5e666d;

	--color-success: #198754;
	--color-success-hover: #177c4d;

	--color-danger: #dc3545;
	--color-danger-hover: #be2d3b;

	--color-warning: #ffc107;
	--color-warning-hover: #f1b607;

	--color-info: #0dcaf0;
	--color-info-hover: #0cbde1;

	--color-light: #f8f9fa;
	--color-light-hover: #f4f5f6;

	--color-dark: #212529;
	--color-dark-hover: #1b1e21;

	--color-grey-border: #bbbbbb;
}

* {
	font-size: 18px;
	font-family: "Open Sans", "Helvetica Neue", -apple-system, sans-serif;
	color: #000000;
}

body {
	margin: 0;
	background-image: url('/img/bg2.jpg');
	/*background-size: cover;*/
	background-attachment: fixed;
	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-primary);
}
a:hover {
	color: var(--color-danger);
}

h1 {
	font-size: 30px;
	font-weight: normal;
	text-align: center;
	margin: 0 0 30px 0;
	color: var(--color-dark);
	text-indent: uppercase;
}
@media screen and (max-width: 800px) {
	h1 {
		font-size: 24px;
	}
}

h2 {
	font-size: 22px;
	font-weight: bold;
	text-align: left;
	margin: 0 0 24px 0;
	color: var(--color-dark);
	display: block;
}
@media screen and (max-width: 800px) {
	h2 {
		font-size: 18px;
	}
}

h3 {
	font-size: 18px;
	font-weight: bold;
	text-align: left;
	margin: 0 0 24px 0;
	color: var(--color-primary);
	text-transform: uppercase;
	display: block;
}
@media screen and (max-width: 800px) {
	h3 {
		font-size: 16px;
	}
}

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-primary);
	border: 2px solid var(--color-primary);;
	color: #ffffff;
}

.btn-primary:hover {
	background: var(--color-primary-hover);
	border: 2px solid var(--color-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-grey-border);*/
	/*border-radius: 12px;*/
	/*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;
}

	.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: 15px 0;
			/*min-height: 60px;*/
			/*border-bottom: 1px solid var(--color-grey-border);*/
		}
	}

		.header__logo {
			flex-grow: 0;
			flex-shrink: 1;

			display: block;
			text-decoration: none;
		}

			.header__logo-img {
				display: block;
				width: 300px;
			}
			@media screen and (max-width: 800px) {
				.header__logo-img {
					width: 140px;
				}
			}

			.header__logo-text {
				font-size: 20px;
				color: #000000;
				font-weight: bold;
				color: var(--color-primary);
			}
			@media screen and (max-width: 800px) {
				.header__logo-text {
					
				}
			}

			.header__logo-slogan {
				color: #000000;
				font-size: 18px;
			}
			@media screen and (max-width: 800px) {
				.header__logo-slogan {
					display: none;	
				}
			}

		.header__contacts {
			flex-grow: 0;
			flex-shrink: 0;

			text-align: right;
		}
		@media screen and (max-width: 800px) {
			.header__contacts {
				display: none;
			}
		}

			.header__social-links {
				display: flex;
				flex-wrap: nowrap;
				column-gap: 10px;
			}

				.header__social-links-item {

				}

					.header__social-links-item svg {
						width: 30px;
						height: 30px;
					}

			.header__phone-num {
				color: #752157;
				font-size: 20px;
				font-weight: bold;
				text-decoration: none;
			}

			.header__phone-text {
				color: #000000;
				font-size: 16px;
			}

			.header__instagram {
				display: block;
				text-decoration: none;

				display: flex;
				flex-direction: row;
				flex-wrap: nowrap;
				justify-content: flex-start;
				align-items: flex-end;
			}

				.header__instagram svg {
					display: block;
					width: 24px;
					height: 24px;
					margin-right: 5px;
				}

				.header__instagram span {
					display: block;
					color: #000000;
					font-size: 16px;
					line-height:  20px;
					font-weight: bold;
				}

		.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: #752157;
			}

			.header__hamburger:hover svg {
				fill: #752157;
			}



.menu {
	width: 100%;
	/*border-bottom: 1px solid var(--color-grey-border);*/
}	
@media screen and (max-width: 800px) {
	.menu {
		position: absolute;
		top: 0;
		bottom: 0;
		right: 100%;
		z-index: 20;
		width: 300px;
		max-width: 100%;
		height: 100%;
		border-bottom: none;
		background-color: #ffffff;
		padding: 70px 15px 40px 15px;
		
		transform: translate3d(0,0,0);
		transition: transform 0.3s linear;
	}

	.body_menu-active .menu {
		transform: translate3d(100%,0,0);
	}
}

	.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-danger);
		}
	    
		.menu__close:hover svg {
			fill: var(--color-danger-hover);
		}

	.menu__logo {
		display: none;
		width: 100%;
		text-decoration: none;
		font-size: 16px;
		color: var(--color-primary);
		margin-bottom: 26px;
		font-weight: bold;
	}
	@media screen and (max-width: 800px) {
		.menu__logo {
			display: block;
		}
	}

		.menu__logo img {
			display: block;
			height: 40px;
			margin: 0 auto;
		}

	.menu__contacts {
		display: none;
		text-align: center;
		padding-bottom: 24px;
		border-bottom: 1px solid #000000;
	}
	@media screen and (max-width: 800px) {
		.menu__contacts {
			display: block;
		}
	}

		.header__social-links {
			display: flex;
			flex-wrap: nowrap;
			justify-content: center;
			column-gap: 10px;
			margin: 0 auto;
		}

			.header__social-links-item {

			}

				.header__social-links-item svg {
					width: 30px;
					height: 30px;
				}

		.menu__phone-num {
			display: block;
			color: #752157;
			font-size: 18px;
			font-weight: bold;
			text-decoration: none;
		}

		.menu__phone-text {
			color: #000000;
			font-size: 16px;
		}

		.menu__address {
			font-size: 16px;
			color: var(--color-primary);
			font-weight: bold;
		}

		.menu__instagram {
			display: block;
			color: #000000;
			font-size: 16px;
			font-weight: bold;
			text-decoration: none;
		}

	.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: #752157;
		}
		@media screen and (max-width: 800px) {
			.menu__item {
				width: 100%;
				padding: 15px;
				border-bottom: 1px solid #000000;
				color: #000000;
			}
		}

		.menu__item:hover {
			color: #ff0000;
		}



.content {
	width: 100%;
	min-height: 300px;
	margin-bottom: 30px;
	/*border-bottom: 1px solid var(--color-grey-border);*/
	padding: 0 0 30px 0;
}
@media screen and (max-width: 1012px) {
	.content {
		
	}
}
@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;
		}



.banner {
	display: block;
	width: 100%;
	margin-bottom: 40px;
}
@media screen and (max-width: 800px) {
	.banner {
		margin-bottom: 20px;
	}
}



.footer {
	width: 100%;
	border-top: 1px solid var(--color-grey-border);
	padding: 20px 0;
}
@media screen and (max-width: 1012px) {
	.footer {

	}
}

	.footer__copyrights {
		font-size: 12px;
		color: var(--color-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; }
