@font-face {
  font-family: 'Intro';
  src: url('../font/Intro.eot?#iefix') format('embedded-opentype'),  url('../font/Intro.otf')  format('opentype'),
	     url('../font/Intro.woff') format('woff'), url('../font/Intro.ttf')  format('truetype'), url('../font/Intro.svg#Intro') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'OpenSans';
  src: url('../font/OpenSans.eot?#iefix') format('embedded-opentype'),  url('../font/OpenSans.woff') format('woff'), url('../font/OpenSans.ttf')  format('truetype'), url('../font/OpenSans.svg#OpenSans') format('svg');
  font-weight: normal;
  font-style: normal;
}

:root {
  --color-primary: #156199;
  --color-primary-hover: #376490;

	--color-secondary: #dddddd;
	--color-secondary-hover: #bbbbbb;

	--color-success: #198754;
	--color-success-hover: #177c4d;

	--color-danger: #f50000;
	--color-danger-hover: #c50000;

	--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;
	line-height: 1.3em;
	font-family: "OpenSans",Arial,sans-serif;
	color: var(--color-dark);
	box-sizing: border-box;
}
@media screen and (max-width: 360px) {
	* {
		font-size: 17px;
	}
}
@media screen and (max-width: 260px) {
	* {
		font-size: 14px;
	}
}

body {
	position: relative;
	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_mobile-menu-active {
	overflow: hidden;
}

div, a {
	box-sizing: border-box;
}

a {
	color: var(--color-primary);
}
a:hover {
	color: var(--color-danger);
}

h3 {
	font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
	text-align:center;
	margin: 0 0 24px 0;
}
@media screen and (max-width: 640px) {
	h3 {
		font-size: 32px;
	}
}

h4 {
	font-size: 20px;
	font-weight: 600;
	margin: 0 0 20px 0;
	text-decoration: underline;
}

p {
	margin: 0 0 25px 0;
	text-align: justify;
}

iframe {
	max-width: 100%;
}

img {
	max-width: 100%;
}



.overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10;
	background-color: #000000;
	opacity: 0.7;
	display: none;
}

.body_mobile-menu-active .overlay {
	visibility: visible;
	opacity: 0.4;
	transition: opacity 0.3s linear;
}



.container {
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
}
@media screen and (max-width: 980px) {
	.container {
		padding: 0 15px;
	}
}
@media screen and (max-width: 800px) {
	.container {
		padding: 0 10px;
	}
}
@media screen and (max-width: 320px) {
	.container {
		padding: 0 5px;
	}
}



.anchor {
	position: absolute;
	top: -40px;
}



.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	bottom: auto;

	background-color: rgba(15, 67, 106, 0.95);
	max-width: 100%;
	box-shadow: 0 0 5px #ffffff;
}

	.header__inner {
		width: 100%;
		max-width: 960px;
		margin: 0 auto;

		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		padding-top: 10px;
		padding-bottom: 10px;
		column-gap: 20px;
	}
	@media screen and (max-width: 980px) {
		.header__inner {
			padding-left: 9px;
			padding-right: 15px;
		}
	}
	@media screen and (max-width: 800px) {
		.header__inner {
			padding-top: 10px;
			padding-bottom: 10px;
		}
	}

		a.header__logo {
			flex-grow: 0;
			flex-shrink: 0;

			text-decoration: none;

			display: flex;
			flex-direction: row;
			flex-wrap: nowrap;
			align-items: center;
			justify-content: flex-start;
			column-gap: 10px;
		}

			.header__logo-img-container {
				flex-grow: 0;
				flex-shrink: 0;

				margin-top: -15px;
				margin-bottom: -15px;

				border-radius: 50%;
				overflow: hidden;
				box-shadow: 0px 0px 10px #ffffff;
			}

				.header__logo-img-container img {
					display: block;
					height: 54px;
				}
				@media screen and (max-width: 800px) {
					.header__logo-img-container img {
						height: 40px;
					}
				}

			.header__logo-text {
				flex-grow: 0;
				flex-shrink: 1;

				margin: 0;
				padding: 0;
				text-align: left;
			}

				h1.header__logo-name {
					margin: 0;
					padding: 0;
					text-align: left;
					color: #ffffff;
					font-weight: bold;
					white-space: nowrap;
					text-decoration: none;
					text-transform: uppercase;
					font-size: 22px;
					line-height: 22px;
				}
				@media screen and (max-width: 800px) {
					h1.header__logo-name {
						font-size: 20px;
						line-height: 20px;
					}
				}

				h2.header__logo-slogan {
					margin: 0;
					padding: 0;
					text-align: left;
					color: #ffffff;
					font-size: 16px;
					line-height: 16px;
					font-weight: normal;
				}

		.header__menu {
			flex-grow: 0;
			flex-shrink: 1;
		}
		@media screen and (max-width: 800px) {
			.header__menu {
				display: none;
			}
		}

			ul.header__menu-list {
				padding-left: 0;
				margin-block-start: 0;
				margin-block-end: 0;

				display: flex;
				flex-direction: row;
				flex-wrap: wrap;
				justify-content: center;
				align-items: center;
				column-gap: 20px;
				row-gap: 5px;
			}
			@media screen and (max-width: 980px) {
				ul.header__menu-list {
					column-gap: 15px;
				}
			}

				li.header__menu-item {
					list-style-type: none;
				}

					li.header__menu-item a {
						font-size: 16px;
						color: #ffffff;
						white-space: nowrap;
						text-decoration: none;
					}
					li.header__menu-item a:hover {
						color: var(--color-danger);
					}

				li.header__lang {
					list-style-type: none;
				}

					.header__lang-link, .header__lang-selected, .header__lang-divider {
						font-size: 14px;
						font-family: Verdana;
					}

					a.header__lang-link {
						font-weight: bold;
						text-decoration: underline;
						color: #ffffff;
					}
					a.header__lang-link:hover {
						color: var(--color-danger);
					}

					span.header__lang-selected {
						font-weight: bold;
						color: #5496d5;
					}

					span.header__lang-divider {
						color: #ffffff;	
					}

		.header__contacts {
			flex-grow: 0;
			flex-shrink: 0;

			text-align: right;
		}
		@media screen and (max-width: 800px) {
			.header__contacts {
				display: none;
			}
		}

			a.header__phone-num {
				display: block;
				color: #ffffff;
				font-size: 16px;
				line-height: 1.2em;
				white-space: nowrap;
				text-decoration: none;
			}
			a.header__phone-num:hover {
				color: var(--color-danger);
			}

		.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: #ffffff;
			}

			.header__hamburger:hover svg {
				fill: var(--color-danger);
			}



.mobile-menu {
	position: fixed;
	top: 0;
	bottom: 0;
	right: 100%;
	z-index: 200;
	width: 300px;
	max-width: 100%;
	height: 100%;
	background-color: #ffffff;
	padding: 30px 15px;
	overflow-y: scroll;

	transform: translate3d(0,0,0);
	transition: transform 0.3s linear;
}
.body_mobile-menu-active .mobile-menu {
	transform: translate3d(100%,0,0);
}

	.mobile-menu__close {
		position: absolute;
		top: 15px;
		right: 15px;
		display: block;
	}

		.mobile-menu__close svg {
			display: block;
			width: 22px;
			height: 22px;
			fill: var(--color-danger);
		}
	    
		.mobile-menu__close:hover svg {
			fill: var(--color-danger-hover);
		}

	a.mobile-menu__logo {
		text-decoration: none;
		width: 100%;
		font-size: 16px;
		margin-bottom: 24px;
		font-weight: bold;

		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: flex-start;
		column-gap: 10px;
	}

		.mobile-menu__logo-img-container {
			flex-grow: 0;
			flex-shrink: 0;

			margin-top: -15px;
			margin-bottom: -15px;
		}

			.mobile-menu__logo-img-container img {
				display: block;
				height: 40px;
			}

		.mobile-menu__logo-text {
			flex-grow: 0;
			flex-shrink: 1;

			margin: 0;
			padding: 0;
		}

			h1.mobile-menu__logo-name {
				margin: 0;
				padding: 0;
				text-align: left;
				color: var(--color-primary);
				font-weight: bold;
				white-space: nowrap;
				text-decoration: none;
				text-transform: uppercase;
				font-size: 22px;
				line-height: 22px;
			}

			h2.mobile-menu__logo-slogan {
				margin: 0;
				padding: 0;
				text-align: left;
				color: var(--color-primary);
				font-size: 16px;
				line-height: 16px;
				font-weight: normal;
			}

	.mobile-menu__lang {
		margin-bottom: 20px;
		text-align: center;
	}

		.mobile-menu__lang-link, .mobile-menu__lang-selected, .mobile-menu__lang-divider {
			font-family: Verdana;
		}

		a.mobile-menu__lang-link {
			color: var(--color-primary);
			text-decoration: underline;
		}
		a.mobile-menu__lang-link:hover {
			color: var(--color-danger);
		}

		span.mobile-menu__lang-selected {
			color: var(--color-secondary);
		}

		span.mobile-menu__lang-divider {
			color: var(--color-primary);
		}

	.mobile-menu__contacts {
		text-align: center;
		padding-bottom: 20px;
	}

		a.mobile-menu__phone-num {
			display: block;
			padding: 10px 0;
			border: 1px solid var(--color-primary);

			font-size: 16px;
			color: var(--color-primary);
			white-space: nowrap;
			text-decoration: none;
		}
		a.mobile-menu__phone-num:first-child {
			border-bottom: none;
		}

	ul.mobile-menu__menu-list {
		width: 100%;
		padding-left: 0;
		margin-block-start: 0;
		margin-block-end: 0;
	}

		li.mobile-menu__menu-item {
			list-style-type: none;
			width: 100%;
			border-top: 1px solid var(--color-primary);
		}
		li.mobile-menu__menu-item:last-child {
			border-bottom: 1px solid var(--color-primary);
		}

			li.mobile-menu__menu-item a {
				display: block;
				padding: 15px 10px;
				font-size: 16px;
				color: var(--color-dark);
				text-decoration: none;
			}

				li.mobile-menu__menu-item span {
					display: block;
					margin: 0 auto 10px auto;
					font-size: 16px;
					text-align: center;
				}

				li.mobile-menu__menu-item img {
					display: block;
					margin: 0 auto;
				}



.wrapper {
	width: 100%;

	/* Контент без фона */
	padding: 0;
	margin: 0;
}



.block-01 {
	background: url('/img/bg-header.jpg') no-repeat;
	background-size: cover;
	background-position: center center;
	padding-top: 130px;
	padding-bottom: 60px;
	position: relative;
}
@media screen and (max-width: 800px) {
	.block-01 {
		padding-top: 100px;
	}
}

	.block-01__inner {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-items: center;
		gap: 30px;
	}
	@media screen and (max-width: 800px) {
		.block-01__inner {
			flex-direction: column;
		}
	}

		.block-01__image {
			width: 40%;
		}
		@media screen and (max-width: 800px) {
			.block-01__image {
				width: 80%;
				max-width: 300px;
			}
		}

			.block-01__image img {
				width: 100%;
			}

		.block-01__main {
			flex-grow: 0;
			flex-shrink: 1;

			width: 60%;
		}
		@media screen and (max-width: 800px) {
			.block-01__main {
				width: 100%;
			}
		}

			.block-01__slogan {
				font-size: 46px;
				font-family: 'Intro';
				color: #ffffff;
				text-transform: uppercase;
				margin-bottom: 20px;
			}
			@media screen and (max-width: 980px) {
				.block-01__slogan {
					font-size: 38px;
				}
			}
			@media screen and (max-width: 800px) {
				.block-01__slogan {
					font-size: 36px;
					text-align: center;
				}
			}
			@media screen and (max-width: 420px) {
				.block-01__slogan {
					font-size: 28px;
				}
			}
			@media screen and (max-width: 330px) {
				.block-01__slogan {
					font-size: 22px;
				}
			}
			@media screen and (max-width: 270px) {
				.block-01__slogan {
					font-size: 18px;
				}
			}

			ul.block-01__list {
				padding-left: 0;
				margin-block-start: 0;
				margin-block-end: 0;
				margin-bottom: 24px;
			}

				ul.block-01__list li {
					color: #ffffff;
					padding-bottom: 10px;
					margin-left: 24px;
				}

			.block-01__buy {
				padding-left: 50px;
			}
			@media screen and (max-width: 800px) {
				.block-01__buy {
					padding-left: 0;
					text-align: center;
				}
			}

				.block-01__price {
					color: #fff;
					font-size: 25px;
					margin-bottom: 20px;
					text-transform: uppercase;
					font-family: 'Intro';
				}

				.block-01__buy-button {
					display: block;
					width: 247px;
					height: 58px;
					font-size: 20px;
					line-height: 58px;
					background: url(/img/buttom-head.png) no-repeat;
					color: #fff;
					text-decoration: none;
					text-transform: uppercase;
					text-align: center;
					margin-bottom: 15px;
					font-weight: bold;
					max-width: 100%;
					white-space: nowrap;
				}
				.block-01__buy-button:hover {
					color: #ffff00;
				}
				@media screen and (max-width: 800px) {
					.block-01__buy-button {
						margin: 0 auto 15px auto;
					}
				}
				@media screen and (max-width: 260px) {
					.block-01__buy-button {
						font-size: 16px;
					}
				}

				.block-01__oca-button {
					display: block;
					width: 247px;
					height: 58px;
					font-size: 20px;
					line-height: 58px;
					background: url(/img/buttom-heads.png) no-repeat;
					color: #fff;
					text-decoration: none;
					text-transform: uppercase;
					text-align: center;
					font-weight: bold;
					max-width: 100%;
					white-space: nowrap;
				}
				.block-01__oca-button:hover {
					color: #ffff00;
				}
				@media screen and (max-width: 800px) {
					.block-01__oca-button {
						margin: 0 auto;
					}
				}
				@media screen and (max-width: 260px) {
					.block-01__oca-button {
						font-size: 16px;
					}
				}



.block-02 {
	padding-top: 60px;
	padding-bottom: 60px;
	position: relative;
}

	.block-02__inner {

	}

		h3.block-02__header {
			color: var(--color-primary);
		}
		h3.block-02__header:after {
			display: block;
			content: "▼";
		}

		.block-02__text {
			max-width: 820px;
			margin: 0 auto;
			text-align: justify;
			margin-bottom: 32px;
		}
		@media screen and (max-width: 320px) {
			.block-02__text {
				text-align: left;
			}
		}


		.block-02__subheader {
			text-align: center;
		}

		ul.block-02__list {
			padding-left: 0;
			margin-block-start: 0;
			margin-block-end: 0;
			text-align: left;
			margin: 0;
			columns: 2;
			column-gap: 40px;
			margin-bottom: 40px;
		}
		@media screen and (max-width: 640px) {
			ul.block-02__list {
				columns: 1;
			}
		}

			ul.block-02__list li {
				list-style-image: url('/img/galka.png');
				padding-bottom: 6px;
				margin-left: 24px;
			}



.videos {
	width: 100%;
	box-sizing: border-box;
}

	.videos__list {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
		align-items: center;
		justify-items: center;
		gap: 30px;
	}
	@media screen and (max-width: 800px) {
		.videos__list {
			flex-direction: column;
		}
	}

		.videos__item {
			width: 48%;
		}
		@media screen and (max-width: 800px) {
			.videos__item {
				width: 100%;
				max-width: 640px;
			}
		}

			.videos__item-inner {
				position: relative;
				padding-bottom: 56.25%;
			  	height: 0;
			  	overflow: hidden;
			}

				.videos__item iframe {
					position: absolute;
					top: 0;
					left: 0;
					width: 100%;
					height: 100%;
					border-width: 0;
					outline-width: 0;
				}



.block-03 {
	background: url('/img/bg-block-3.jpg') no-repeat;
	background-size: cover;
	background-position: center center;
	padding-top: 60px;
	padding-bottom: 60px;
	position: relative;
}

	.block-03__inner {

	}

		h3.block-03__header {
			color: #ffffff;
		}
		h3.block-03__header:after {
			display: block;
			content: "▼";
		}

		.block-03__contents {
			margin-bottom: 60px;

			display: flex;
			flex-direction: row;
			flex-wrap: nowrap;
			justify-content: flex-start;
			align-items: center;
			gap: 40px;
		}
		@media screen and (max-width: 640px) {
			.block-03__contents {
				flex-direction: column;
			}
		}

			.block-03__image {
				flex-grow: 0;
				flex-shrink: 0;
			}

				.block-03__image img {

				}

			.block-03__main {
				flex-grow: 0;
				flex-shrink: 1;
			}

				.block-03__contents-btn {
					margin-left: 50px;
				}
				@media screen and (max-width: 640px) {
					.block-03__contents-btn {
						margin: 0 auto;
					}
				}

		.block-03__chapters {

		}

			.block-03__chapters-inner {
				display: flex;
				flex-direction: row;
				flex-wrap: wrap;
				justify-content: center;
				align-items: flex-start;
				column-gap: 30px;
				row-gap: 50px;
			}

				.block-03__chapter {
					
				}

					a.block-03__chapter-page {
						display: block;
						width: auto;
						max-width: 100%;
						color: #ffffff;
						text-decoration: none;
						position: relative;
					}
					a.block-03__chapter-page:hover {
						outline: none;
					}


						.block-03__chapter-img {

						}

						.block-03__chapter-text {
							position: absolute;
							top: 0;
							left: 0;
							right: 0;
							bottom: 0;
							width: 100%;
							height: 100%;

							display: flex;
							flex-direction: row;
							justify-content: center;
							align-items: center;
						}

							.block-03__chapter-text h4 {
								font-family: 'Intro';
								font-weight: normal;
								font-size: 20px;
								color: #6C6C6C;
								text-align: center;
								padding-bottom: 50px;
								text-decoration: none;
							}

					a.block-03__chapter-btn {
						display: block;
						margin: 0 auto;
					}
    


.chapter-button {
    display: block;
    width: 168px;
    height: 40px;
    background: url('/img/button-chapter.png') no-repeat;
    color: #ffffff;
    font-size: 17px;
    line-height: 40px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
}
.chapter-button:hover {
    color: var(--color-danger);
    outline: none;
}



.block-04 {
	padding-top: 60px;
	padding-bottom: 60px;
	position: relative;
}

	.block-04__inner {

	}

		h3.block-04__header {
			color: var(--color-primary);
		}
		h3.block-04__header:after {
			display: block;
			content: "▼";
		}

		.block-04__contents {
			display: flex;
			flex-direction: row;
			flex-wrap: nowrap;
			justify-content: flex-start;
			align-items: flex-start;
			gap: 40px;
		}
		@media screen and (max-width: 640px) {
			.block-04__contents {
				flex-direction: column;
				align-items: center;
			}
		}

			.block-04__image {
				flex-grow: 0;
				flex-shrink: 0;
				max-width: 30%;
			}
			@media screen and (max-width: 640px) {
				.block-04__image {
					max-width: 300px;
				}
			}

				.block-04__image img {

				}

			.block-04__main {
				flex-grow: 0;
				flex-shrink: 1;
			}

				.block-04__author {
					
				}

				ul.block-04__list {
					padding-left: 0;
					margin-block-start: 0;
					margin-block-end: 0;
				}

					ul.block-04__list li {
						padding-bottom: 10px;
						margin-left: 24px;
					}
					ul.block-04__list li:last-child {
						padding-bottom: 0;
					}



.block-05 {
	background: url('/img/bg-block-5.jpg') no-repeat;
	background-size: cover;
	background-position: center center;
	padding-top: 60px;
	padding-bottom: 60px;
	position: relative;
}

	.block-05__inner {

	}

		h3.block-05__header {
			color: #ffffff;
			margin-bottom: 10px;
		}
		h3.block-05__header:after {
			display: block;
			content: "▼";
		}

		h4.block-05__subheader {
			color: #ffffff;
			text-align: center;
			margin-bottom: 40px;
		}

		.block-05__books {

		}

			.block-05__books-inner {
				display: flex;
				flex-direction: row;
				flex-wrap: wrap;
				justify-content: center;
				align-items: flex-end;
				column-gap: 30px;
				row-gap: 50px;
			}

				.block-05__books-item {
					
				}

					img.block-05__book {
						display: block;
						margin: 0 auto;
					}

					img.block-05__polka {
						display: block;
						margin: 0 auto;
						margin-top: -20px;
					}

					.block-05__books-text {
						color:#ffffff;
						font-weight: 600;
						text-align: center;
						margin-top: -22px;
						margin-bottom: 6px;
					}

					.block-05__books-price {
						font-family: 'Intro';
						font-size: 22px;
						color: #ffffff;
						text-transform: uppercase;
					}

					.block-05__buy-button {
						display: inline-block;
						width: 171px;
						height: 58px;	
						font-family: 'Intro';
						font-size: 21px;
						background: url('/img/button-block5.png') no-repeat;
						color: #fff;
						padding: 14px 0 0 30px;
						text-align: center;
						text-decoration: none;
					}
					.block-05__buy-button:hover{
						color: var(--color-danger);
					}



.block-06 {
	background: url('/img/bg-block-6.jpg') no-repeat;
	background-size: cover;
	background-position: center center;
	padding-top: 60px;
	padding-bottom: 60px;
	position: relative;
}

	.block-06__inner {

	}

		h3.block-06__header {
			color: var(--color-primary);
		}
		h3.block-06__header:after {
			display: block;
			content: "▼";
		}

		.block-06__reviews {

		}

			.block-06__reviews-inner {
				display: flex;
				flex-direction: row;
				flex-wrap: wrap;
				justify-content: space-between;
				align-items: stretch;
				column-gap: 30px;
				row-gap: 40px;
			}
					
				.block-06__reviews-item {
					width: 47%;

					display: flex;
					flex-direction: column;
					flex-wrap: nowrap;
					justify-content: flex-start;
					align-items: stretch;
				}
				@media screen and (max-width: 640px) {
					.block-06__reviews-item {
						width: 100%;
					}
				}

					.block-06__reviews-text-container {
						flex-grow: 1;
						flex-shrink: 1;

						background-image: url('/img/oblako-bottom.png');
						background-size: 100% 18px;
						background-color: transparent;
						background-repeat: no-repeat;
						background-position: center bottom;
						padding-bottom: 18px;
					}

						.block-06__reviews-text {
							border-top: 2px solid #156199;
							border-left: 2px solid #156199;
							border-right: 2px solid #156199;
							font-size: 15px;
							padding: 15px 15px 25px 15px;
							height: 100%;
						}
					
					.block-06__reviews-person {
						flex-grow: 0;
						flex-shrink: 0;

						margin-top: -36px;

						display: flex;
						flex-direction: row;
						flex-wrap: nowrap;
						justify-content: flex-start;
						align-items: center;
						gap: 20px;
					}
					@media screen and (max-width: 350px) {
						.block-06__reviews-person {
							margin-top: -15px;
						}
					}

						.block-06__reviews-img {

						}

							.block-06__reviews-img img {

							}
						
						.block-06__reviews-name {
							padding-top: 20px;
						}

							.block-06__reviews-fio {
								font-weight: bold;
							}

							.block-06__reviews-adress {
								font-size: 14px;
							}

							.block-06__reviews-age {
								font-size: 14px;
							}



.block-08 {
	background: url('/img/bg-block-8.jpg') no-repeat;
	background-size: cover;
	background-position: center center;
	padding-top: 60px;
	padding-bottom: 60px;
	position: relative;
}

	.block-08__inner {

	}

		h3.block-08__header {
			color: var(--color-primary);
		}
		h3.block-08__header:after {
			display: block;
			content: "▼";
		}

		.block-08__steps {
			padding: 26px 0 0 0;
		}

			.block-08__steps-inner {
				display: flex;
				flex-direction: row;
				flex-wrap: wrap;
				justify-content: center;
				align-items: flex-start;
				column-gap: 50px;
				row-gap: 30px;
			}

				.block-08__steps-item {

				}

					.block-08__steps-img {

					}

					.block-08__steps-text {
						padding: 10px;
						text-align: center;
						font-size: 18px;
						line-height: 20px;
						text-shadow: 1px 1px 0px #fff;
					}



.block-13 {
	background-color: rgba(0, 0, 0, 0.7);
	padding-top: 60px;
	padding-bottom: 60px;
	position: relative;
}

	.block-13__inner {

	}

		h3.block-13__header {
			color: #ffffff;
		}
		h3.block-13__header:after {
			display: block;
			content: "▼";
		}

		.block-13__contacts {
			padding: 0;
			margin-bottom: 30px;
		}

			.block-13__contacts-inner {
				display: flex;
				flex-direction: row;
				flex-wrap: nowrap;
				justify-content: space-around;
				align-items: flex-start;
				column-gap: 50px;
				row-gap: 30px;
			}
			@media screen and (max-width: 640px) {
				.block-13__contacts-inner {
					flex-direction: column;
					justify-content: flex-start;
				}
			}

				.block-13__adress, .block-13__adress * {
					color: #ffffff;
				}

				.block-13__phones, .block-13__phones * {
					color: #ffffff;
				}

		.block-13__map {
			margin: 0 auto;
			text-align: center;
			margin-bottom: 30px;
		}

		.block-13__img {
			display: block;
			margin: 0 auto;
			max-width: 800px;
			width: 100%;
		}



.popup {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 300;
	transform: translate(-50%, -50%);
	background: #0F436A;
	box-shadow: 0 0 5px #ffffff;
	width: 100%;
	max-width: 400px;
}
@media screen and (max-width: 260px) {
	.popup__button {
		font-size: 16px;
	}
}

	.popup__close {
		display: block;
		position: absolute;
		top: 10px;
		right: 10px;
	}

		.popup__close svg {
			display: block;
			width: 22px;
			height: 22px;
			fill: #ffffff;
		}
	    
		.popup__close:hover svg {
			fill: var(--color-danger);
		}

	.popup__inner {
		width: 100%;
		margin: 0 auto;
		padding: 50px 30px 40px 30px;
		text-align: center;
	}
	@media screen and (max-width: 400px) {
		.popup__inner {
			padding: 50px 10px 30px 10px;
		}
	}

		.popup h3 {
			font-size:26px;
			font-weight:700;
			color:#FCD019;
			text-transform:uppercase;
			margin:0;
		}
		.popup h3 span {
			font-size:20px;
			color:#ffffff;
			margin: 3px 0 19px;
			display: block;
		}



.popup-form {

}

	.popup-form__row {
		text-align: center;
	}

		input.popup-form__fio {
			background: #ffffff url(/img/icon_fio.png) 6px center no-repeat;
			background-size: 20px;
		}
		input.popup-form__phone {
			background: #ffffff url(/img/icon_phone.png) 6px center no-repeat;
			background-size: 20px;
		}
		textarea.popup-form__home {
			background: #ffffff url(/img/icon_home.png) 6px 4px no-repeat;
			background-size: 20px;
		}
		input.popup-form__email {
			background: #ffffff url(/img/icon_email.png) 6px center no-repeat;
			background-size: 20px;
		}
		@media screen and (max-width: 400px) {
			input.popup-form__fio, input.popup-form__phone, textarea.popup-form__home, input.popup-form__email {
				background-image: none;
			}
		}

		input.popup-form__button {
			display: block;
			width: 240px;
			max-width: 100%;
			font-size: 20px;
			line-height: 1.1;
			color: #fff;
			text-decoration: none;
			text-transform: uppercase;
			text-align: center;
			margin-bottom: 15px;
			font-weight: bold;
			margin: 0 auto;
			border: 1px solid var(--color-danger-hover);
			background-color: var(--color-danger);
			cursor: pointer;
			white-space: normal;
			padding: 15px 20px;
		}
		input.popup-form__button:hover {
			color: #ffff00;
			background-color: var(--color-danger-hover);
		}
		@media screen and (max-width: 260px) {
			input.popup-form__button {
				font-size: 16px;
			}
		}

		.popup-form__row input[type="text"], .popup-form__row input[type="tel"], .popup-form__row input[type="email"] {
			width: 100%;
			height: 39px;
			border: 1px solid #ffffff;
			margin-bottom: 20px;
			font-size: 16px;
			padding-left: 36px;
		}
		.popup-form__row textarea{
			width: 100%;
			height: 60px;
			border: 1px solid #ffffff;
			margin-bottom: 20px;
			font-size: 16px;
			padding: 5px 0 0 36px;
		}
		@media screen and (max-width: 400px) {
			.popup-form__row input[type="text"], .popup-form__row input[type="tel"], .popup-form__row input[type="email"], .popup-form__row textarea {
				padding: 5px 0 0 10px;
			}
		}
		.popup-form__row input::-webkit-input-placeholder, .popup-form__row textarea::-webkit-input-placeholder {color:var(--color-secondary);}
		.popup-form__row input::-moz-placeholder, .popup-form__row textarea::-moz-placeholder {color:var(--color-secondary);}
		.popup-form__row input:-moz-placeholder, .popup-form__row textarea:-moz-placeholder {color:var(--color-secondary);}
		.popup-form__row input:-ms-input-placeholder, .popup-form__row textarea:-ms-input-placeholder {color:var(--color-secondary);}
