/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
html {
	line-height: 1.15;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
}

article,
aside,
footer,
header,
nav,
section {
	display: block;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

figcaption,
figure,
main {
	display: block;
}

figure {
	margin: 1em 40px;
}

hr {
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

a {
	background-color: transparent;
	-webkit-text-decoration-skip: objects;
}

abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted;
}

b,
strong {
	font-weight: inherit;
}

b,
strong {
	font-weight: var(--medium);
}

code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

dfn {
	font-style: italic;
}

mark {
	background-color: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

audio,
video {
	display: inline-block;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

img {
	border-style: none;
}

svg:not(:root) {
	overflow: hidden;
}

button,
input,
optgroup,
select,
textarea {
	font-family: sans-serif;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

[type="reset"],
[type="submit"],
button,
html [type="button"] {
	-webkit-appearance: button;
}

[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
	outline: 1px dotted ButtonText;
}

fieldset {
	padding: 0.35em 0.75em 0.625em;
}

legend {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

progress {
	display: inline-block;
	vertical-align: baseline;
}

textarea {
	overflow: auto;
}

[type="checkbox"],
[type="radio"] {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

details,
menu {
	display: block;
}

summary {
	display: list-item;
}

canvas {
	display: inline-block;
}

template {
	display: none;
}

[hidden] {
	display: none;
}

:focus::-webkit-input-placeholder {
	color: transparent;
}

:focus::-moz-placeholder {
	color: transparent;
}

:focus:-moz-placeholder {
	color: transparent;
}

:focus:-ms-input-placeholder {
	color: transparent;
}

::-webkit-input-placeholder {
	color: rgba(255, 255, 255, 0.5);
	opacity: 1;
}

:-moz-placeholder {
	color: rgba(255, 255, 255, 0.5);
	opacity: 1;
}

::-moz-placeholder {
	color: rgba(255, 255, 255, 0.5);
	opacity: 1;
}

:-ms-input-placeholder {
	color: rgba(255, 255, 255, 0.5);
	opacity: 1;
}

body input:focus:required:invalid,
body textarea:focus:required:invalid {
	color: rgba(255, 255, 255, 0.5);
}

body input:required:valid,
body textarea:required:valid {
	color: rgba(255, 255, 255, 0.5);
}

*,
:after,
:before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	min-height: 100%;
	font-size: 10px;
}

:root {
	--dark-blue: #1f1e59;
	--orange: #ff8326;
	--grey: #eef3f7;
	--text: #333333;
	--main-font: "Roboto", sans-serif;
	--normal: 400;
	--medium: 500;
	--bold: 700;
	--black: 900;
}

body {
	position: relative;
	min-width: 320px;
	min-height: 100%;
	margin: 0;
	padding: 0;
	font-size: 1.6rem;
	line-height: 1.4;
	font-weight: var(--normal);
	font-family: var(--main-font);
	color: var(--text);
	background-color: #fff;
	background-image: url(../images/bg-body.png), url(../images/bg-body-top.jpg);
	-webkit-background-size: auto, auto;
	background-size: auto, auto;
	background-position: 50% 0, 100% 0;
	background-repeat: repeat, no-repeat;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	overflow-y: scroll;
	position: relative;
}

/* body:after {
	content : '';
	background: url(../images/bg-body-bottom.png) no-repeat 0 100%;
	position: absolute;
	bottom: 0;
	top: 0;
	display: block;
	width: 100%;
} */

.container {
	max-width: 1200px;
	padding: 0 15px;
	margin: 0 auto;
	width: 100%;
}

.clearfix:after {
	content: "";
	display: table;
	clear: both;
}

.hidden {
	display: none;
}

a {
	outline: 0 !important;
}

a[href^="tel:"] {
	white-space: nowrap;
	text-decoration: none;
}

.button {
	display: inline-block;
	vertical-align: top;
	padding: 0;
	border: none;
	outline: 0;
	text-decoration: none;
	background-color: transparent;
	cursor: pointer;
	padding: 1.2rem 2rem;
	font-size: 1.6rem;
	font-weight: var(--medium);
	line-height: 1.4;
	color: inherit;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	text-align: center;
	border-radius: 6px;
	color: #fff;
	background-color: var(--orange);
}

.button.button_black {
	background-color: var(--text);
}

.button.button_white {
	color: var(--text);
	background-color: #fff;
}

.button.button_white_transparent {
	color: #fff;
}

.button:active,
.button:hover {
	color: #fff;
	background-color: var(--orange);
}

.title {
	margin: 0;
	font-weight: var(--medium);
	line-height: 1.2;
}

.title.title_orange {
	color: var(--orange);
}

h1.title {
	font-size: 7.2rem;
	padding-bottom: 1rem;
	background-image: -webkit-gradient(linear, left top, left bottom, from(var(--orange)), to(var(--orange)));
	background-image: -webkit-linear-gradient(var(--orange), var(--orange));
	background-image: -o-linear-gradient(var(--orange), var(--orange));
	background-image: linear-gradient(var(--orange), var(--orange));
	background-position: 0 100%;
	-webkit-background-size: 8rem 0.4rem;
	background-size: 8rem 0.4rem;
	background-repeat: no-repeat;
}

h2.title {
	margin: 0;
	font-size: 4.8rem;
	margin-bottom: 3rem;
}

h3 {
	line-height: 1.2;
	text-transform: uppercase;
	font-size: 2.4rem;
	font-weight: var(--medium);
}

.subtitle {
	margin: 3rem 0 0 0;
	font-size: 2.4rem;
}

.header {
	padding: 4rem 0;
	position: relative;
	z-index: 10;
}

.header.header_fullscreen {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	min-height: 100vh;
}

.header.header_fullscreen .container:first-child {
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	max-width: 1680px;
	position: relative;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	.header.header_fullscreen {
		min-height: auto;
	}
}

.header__box {
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;

	max-width: 1200px;
	margin: 0 auto;
}

.header__logo {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	margin: 0;
	width: 150px;
}

.header__logo img {
	max-width: 100%;
	width: auto;
	height: auto;
}

.header__menu {
	-webkit-box-ordinal-group: 2;
	-webkit-order: 1;
	-ms-flex-order: 1;
	order: 1;
	flex: 1 1 auto;
	/* width: 63%; */
	margin: 0 0 0 2%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.header__objects {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 45%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.header__objects-item {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 50%;
	position: relative;
}

.header__objects-item.active .header__objects-list,
.header__objects-item:active .header__objects-list,
.header__objects-item:hover .header__objects-list {
	visibility: visible;
	-webkit-transform: translateY(-webkit-calc(100% + 1rem));
	-ms-transform: translateY(calc(100% + 1rem));
	transform: translateY(calc(100% + 1rem));
	opacity: 1;
	z-index: 1;
}

.header__objects-title {
	margin: 0;
	display: inline-block;
	vertical-align: top;
	font-size: 1.3rem;
	line-height: 1.4;
	font-weight: var(--medium);
	text-transform: uppercase;
	padding: 0 3.5rem 0 1.5rem;
	position: relative;
}

.header__objects-title:before {
	content: "";
	position: absolute;
	top: 0.5rem;
	right: 1.5rem;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	width: 0.7rem;
	height: 0.7rem;
	border-left: 2px solid var(--orange);
	border-bottom: 2px solid var(--orange);
}

.header__objects-list {
	position: absolute;
	margin: 0;
	padding: 1rem 0;
	list-style: none;
	visibility: hidden;
	-webkit-transform: translateY(-webkit-calc(100% + 3rem));
	-ms-transform: translateY(calc(100% + 3rem));
	transform: translateY(calc(100% + 3rem));
	opacity: 0;
	position: absolute;
	z-index: -1;
	bottom: 0;
	left: 0;
	min-width: 100%;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background-color: #191818;
	-webkit-box-shadow: 0 0 3rem 0 rgba(217, 155, 98, 0.4);
	box-shadow: 0 0 3rem 0 rgba(217, 155, 98, 0.4);
	font-size: 1.4rem;
	line-height: 1.4;
}

.header__objects-list li {
	padding: 1rem 1.5rem;
}

.header__objects-list li a {
	text-decoration: none;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.header__objects-list li a:active,
.header__objects-list li a:hover {
	color: var(--orange);
}

.header__nav {
	order: 1;
	flex: 1 1 auto;
	width: 100%;
	margin: 0;
	font-size: 1.6rem;
	white-space: nowrap;
}

.header__nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: flex-start;
}

.header__nav ul li {
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	margin: 0 2rem;
}

.header__nav ul li a {
	text-decoration: none;
	color: inherit;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.header__nav ul li a:active,
.header__nav ul li a:hover {
	color: var(--orange);
}

.header__feedback {
	-webkit-box-ordinal-group: 3;
	-webkit-order: 2;
	-ms-flex-order: 2;
	order: 2;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	margin: 0 0 0 2%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.header__feedback-title {
	font-size: 1.4rem;
	text-transform: uppercase;
	opacity: 0.7;
	font-weight: var(--medium);
}

.header__feedback-link {
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	display: inline-block;
	vertical-align: top;
	padding: 0 0 0 4rem;
	text-decoration: none;
	color: inherit;
	font-size: 2rem;
	line-height: 1.4;
	position: relative;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	font-weight: var(--medium);
}

.header__feedback-link svg {
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 3rem;
	height: 3rem;
	fill: var(--orange);
	-webkit-transition: inherit;
	-o-transition: inherit;
	transition: inherit;
}

.header__feedback-link b {
	font-size: 2.4rem;
	font-weight: var(--medium);
}

.header__feedback-link:active,
.header__feedback-link:hover {
	color: var(--orange);
}

.header__feedback-button {
	text-decoration: none;
	color: var(--orange);
	display: inline-block;
	vertical-align: top;
	padding: 0.4rem;
	font-size: 1.4rem;
	font-weight: var(--medium);
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	position: relative;
}

.header__feedback-button:active,
.header__feedback-button:hover {
	color: var(--text);
}

.header__banner {
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	margin: 4rem -15px 0 -15px;
	padding: 12rem 4rem;
	color: #fff;
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
}

.header__banner.mainpage {
	text-align: left;
	justify-content: flex-end;
}

.header__banner-img {
	position: absolute;
	z-index: -1;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}
/* 
.header__banner-img:before {
	content: '';
	position: absolute;
	z-index: 1;
	left: 2rem;
	top: 2rem;
	right: 2rem;
	bottom: 2rem;
	background-color:var(--orange);
	opacity: 0.2;
} */

.header__banner-img-item {
	margin: 0;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}

.header__banner-img-item img {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.header__banner-title {
	margin: 0;
	font-size: 7.8rem;
	font-weight: var(--bold);
	line-height: 1;
}

.header__banner-text {
	margin: 2rem 0 0 0;
	position: relative;
}

.header__banner-text-item {
	margin: 0;
	font-weight: var(--bold);
	letter-spacing: 1px;
	text-transform: uppercase;
}

.header__banner-dots {
	margin: 5rem 0 0 0;
	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: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.header__banner-dot {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 0.8rem;
	height: 0.8rem;
	margin: 0.8rem;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background-color: #fff;
	cursor: pointer;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.header__banner-dot.active {
	-webkit-transform: scale(2);
	-ms-transform: scale(2);
	transform: scale(2);
}

.header__banner-button {
	display: inline-block;
	vertical-align: top;
	padding: 0;
	border: none;
	outline: 0;
	text-decoration: none;
	background-color: transparent;
	cursor: pointer;
	position: absolute;
	bottom: 6rem;
	left: 50%;
	-webkit-transform: translateX(-50%) rotate(-45deg);
	-ms-transform: translateX(-50%) rotate(-45deg);
	transform: translateX(-50%) rotate(-45deg);
	width: 2.4rem;
	height: 2.4rem;
	border-left: 0.5rem solid #fff;
	border-bottom: 0.5rem solid #fff;
}

.to-plan {
	color: var(--text);
	text-decoration: none;
	display: inline-block;
	width: 200px;
	padding: 15px 20px;
	/* margin-top: 8rem; */
	transition: 0.5s all ease;
	background-color: #fff;
	text-align: center;
	border-radius: 0.6rem;
}

.to-plan:hover {
	color: #fff;
	background-color: var(--orange);
}

.banner-nav div {
	color: #000;
	width: 40px;
	height: 40px;
	border-radius: 20px;
	cursor: pointer;
	background-color: #fff;
	font-size: 24px;
	text-align: center;
	line-height: 40px;
	position: absolute;
	top: calc(50% + 40px);
	transition: 0.3s all ease;
}

.banner-nav div:hover {
	color: #fff;
	background-color: var(--orange);
}

.banner-nav .prev {
	left: 30px;
}

.banner-nav .next {
	right: 30px;
}

@media only screen and (max-width: 1320px) {
}

@media only screen and (max-width: 992px) {
	.header__logo {
		width: 10%;
	}

	.header__menu {
		display: block;
		width: 54%;
	}

	.header__objects {
		width: auto;
		margin: 2rem 0 0 0;
	}

	.header__nav {
		width: auto;
	}

	.header__feedback {
		width: 29%;
	}
}

@media only screen and (max-width: 768px) {
	.header__box {
		-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;
	}

	.header__logo {
		width: 10.4rem;
	}

	.header__feedback {
		-webkit-box-ordinal-group: 2;
		-webkit-order: 1;
		-ms-flex-order: 1;
		order: 1;
		width: -webkit-calc(100% - 11.4rem);
		width: calc(100% - 11.4rem);
		margin: 0 0 0 1rem;
	}

	.header__menu {
		-webkit-box-ordinal-group: 3;
		-webkit-order: 2;
		-ms-flex-order: 2;
		order: 2;
		width: 100%;
		margin: 4rem 0 0 0;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: start;
		-webkit-align-items: flex-start;
		-ms-flex-align: start;
		align-items: flex-start;
	}

	.header__objects {
		width: 45%;
		margin: 0;
	}

	.header__objects-title {
		padding: 0 3.5rem 0 0.5rem;
	}

	.header__nav {
		width: 55%;
	}

	.header__nav ul li {
		margin: 0 0.5rem;
	}

	.header__banner-title {
		font-size: 6rem;
	}
}

@media only screen and (max-width: 640px) {
	.header__menu {
		display: block;
	}

	.header__nav {
		width: auto;
	}

	.header__nav ul {
		-webkit-justify-content: space-around;
		-ms-flex-pack: distribute;
		justify-content: space-around;
	}

	.header__nav ul li:first-child {
		margin-left: 0;
	}

	.header__nav ul li:last-child {
		margin-right: 0;
	}

	.header__objects {
		width: auto;
		margin: 3rem 0 0 0;
		-webkit-justify-content: space-around;
		-ms-flex-pack: distribute;
		justify-content: space-around;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.header__objects br {
		display: none;
	}

	.header__objects-item {
		width: auto;
		-webkit-box-flex: 0;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}

	.header__banner-title {
		font-size: 5rem;
	}
}

@media only screen and (max-width: 360px) {
	.header__feedback-link {
		padding: 0 0 0 3rem;
	}

	.header__feedback-link svg {
		width: 2.4rem;
		height: 2.4rem;
	}
}

.main {
	padding: 6rem 0 0 0;
}

.main__head {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.main__title {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 65%;
	padding: 0 0 0 3.5%;
}

.main__title-img {
	margin: 0;
}

.main__title-img img {
	max-width: 100%;
	width: auto;
	height: auto;
}

.main__title-text {
	margin: 3rem 0 0 0;
	font-size: 7.2rem;
	line-height: 1;
	font-weight: var(--medium);
}

.main__advantages {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 30%;
	margin: 0 0 0 5%;
}

.main__advantages-item {
	margin: 3rem 0 0 0;
}

.main__advantages-title {
	background: 0 0;
	font-size: 7.2rem;
	line-height: 1;
	font-weight: var(--medium);

	color: var(--orange);
}

.main__advantages-text {
	margin: 0;
	font-weight: var(--medium);
}

.main__grid {
	margin: 6rem 0 0 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.main__grid-item {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: -webkit-calc(50% - 1rem);
	width: calc(50% - 1rem);
	min-height: 3.7rem;
	margin-bottom: 2rem;
	padding: 2rem;
	color: #fff;
	overflow: hidden;
	position: relative;
}

.main__grid-item:nth-child(even) {
	margin-left: 2rem;
}

.main__grid-item:nth-child(4n-3) {
	width: -webkit-calc(45% - 1rem);
	width: calc(45% - 1rem);
}

.main__grid-item:nth-child(4n-2) {
	width: -webkit-calc(55% - 1rem);
	width: calc(55% - 1rem);
}

.main__grid-item.active .main__grid-item-inner,
.main__grid-item:active .main__grid-item-inner,
.main__grid-item:hover .main__grid-item-inner {
	border-color: #fff;
	background-color: rgba(0, 0, 0, 0.45);
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0);
}

.main__grid-item.active .main__grid-item-head,
.main__grid-item:active .main__grid-item-head,
.main__grid-item:hover .main__grid-item-head {
	text-align: inherit;
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0);
}

.main__grid-item.active .main__grid-item-subtitle,
.main__grid-item:active .main__grid-item-subtitle,
.main__grid-item:hover .main__grid-item-subtitle {
	opacity: 0;
}

.main__grid-item.active .main__grid-item-button,
.main__grid-item.active .main__grid-item-list,
.main__grid-item:active .main__grid-item-button,
.main__grid-item:active .main__grid-item-list,
.main__grid-item:hover .main__grid-item-button,
.main__grid-item:hover .main__grid-item-list {
	opacity: 1;
}

.main__grid-item-special {
	margin: -2rem;
	width: -webkit-calc(100% + 4rem);
	width: calc(100% + 4rem);
	height: -webkit-calc(100% + 4rem);
	height: calc(100% + 4rem);
	padding: 4rem 2rem;
	background-image: -webkit-linear-gradient(315deg, var(--orange) 0, var(--orange) 100%);
	background-image: -o-linear-gradient(315deg, var(--orange) 0, var(--orange) 100%);
	background-image: linear-gradient(135deg, var(--orange) 0, var(--orange) 100%);

	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.main__grid-item-special-number {
	display: block;
	margin: 15rem 0 0 0;
	background: 0 0;
	color: inherit;
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	font-size: 18rem;
	font-weight: var(--medium);
	line-height: 0.8;
}

.main__grid-item-special-text {
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	display: block;
	margin: 13rem 0 0 2rem;
	padding: 1rem 0 0.3rem 0;
	font-size: 4.2rem;
	line-height: 1.2;
	border-top: 0.4rem solid currentColor;
	border-bottom: 0.4rem solid currentColor;
	position: relative;
}

.main__grid-item-special-text:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 13rem;
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIMAAACDCAMAAACZQ1hUAAAAAXNSR0IB2cksfwAAAdFQTFRFAAAA////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////z/gbBgAAAJt0Uk5TAA/G/8wQnJkG8ktKn/BAyAOhb0hMGEbKmu2jeEROH0LUlgGkgkFPMD6V4JLnpYtQOTr2jqbfUUM2j4qnnuE3UsC9hKC+/PdogM/06gl/kHO/IMTQ2Pvk6O9Uco3r1fp7YLBXcFZdrwLbNVvTasthbebc8bXZbLz15eN9Zi8E4mmGcfiI/ZiJY7bWlBTXVWvH0sO5l7SqP3X5ZFgj+D1KAAAIAklEQVR4nOWa6WMTRRTAV4eBotkVERS8qcdCqI1Uo1ZFoyuQVFsTAhq04NZIRakcgoAiKOCt9cID/WvdN+/Nsdumzc4mux+cD83MdI7fvvfmzczbdZx+0k03M0preF8dhpDWMpXWFYQwsl4zrB8phuEWZqRbi2EoRVO7XpRuizJrC0HYAKq4HXIbQRkbimC4A1SwCXKbIXdnEQxrtSneFWW3FICwYWs08d2YvyfKbi1AGfeCAu7D/P2QfyB/hnWmV3gwKmzLHWEUVPGQLD0MyhjNm+EREP+jsuRDaXveDDviDrocFXfmjDA6Fk36mC6PR8WxnJWxHYRf0eXHobwrX4ad0ZQTxl4p5PJErghiyifNGrCPsaHN51XNPbrqQd0uyD5ltnoaap4ZFkOZxVIV6iYTqiDX/eywGFgiQR2o4rl4s+ejqt05MrwAvy/Gm20SZ9talvTSyysxBJ5IrxgoezbHm43sTcJapH0rMNRFjsemafixZt7UABhefW01Bi/RY9poNTMAgii9npaBNVvUxm/oyr37pX7limrLijVUcUBW7D8IxTew8GZSEJVpmZIM9XpdzddBd60rBJkcQrWiWxjvyBqpxiYUalQ4BIW3NMLb8Qc2GUg0B/E/JR4Twiz8mUHZiBmFLBo4qGjnGlRCgWV5Txw9DANoQRyJMwRLGWbp4avj+FsW5XfEFCE8tJgx4G1BCt1LQi98TlGFgkmb9rtQ7qZhcDzTgwb8Pfg5KsbtROPO44yOL6nkjIoKBRVq4b9/LCrv+SANg4OPJIaO7AIZUL5VLqTitpRZ+OKoJWYkKi72oRnDBp0PoeaYyeBhtjeD0zqOCEcWHMXg1ISsRb2nte66ekak+kgIykRwToh/jKRhCJWds3muGLgrK6Vqa7KiRhXKmbixuAWt/ZMGQ7gyA583tVX1JAMecFWnKHEyHLUCFFXM1fr0SKdIEKeZXJC9GD7GHm7XpxnOSAa0PnZWP6M/ARUTekZ+SjQJTQSulvgnWHEuys6tyEDSjayOG35aMHRF9rDBcD7x1PzCUgaxXNxPtSA+g4rWagwuabyiTOCoo136vJqRTmIdRUVq7Bi6CMSA/kX4WRA1n0O2sQpDu6VmkQqOGFrKUkmZ6JEhSS+ufHtVUWFVxbl0SgtCDNrkKzHIKRwtf7aF1NqkISEJVV2+DH/NtbnGpAqVbhYg8wWqEIU17fdkuBA36gPEQB5Z+Usa3lf+UvpHXC0zxmxilhFDECEz0rJy6IQaoUIKOCrkAXtAAJkG1x5ZUtFG4mgvTuqjNXAS8vsSSuvFwNikRJiWNV9qHQg7n0d7DJROqlxuJEmqNtnGCOy9uy/Rsylr77k2hcE4hrcSi5BOfrhLi+FxwLaqcFuOQVUzqqJ0BYoXqcDrcmfseX6AQyWdH9QueqCOKZAVV69hxbWr6pmoCRyd2Feizdd1mb6BsnFN8L1ukoGOVrM4RadCphCcYANN35oWn2SgNOt0zWIX96zBpe/6YLgclZXBqPPD4FKwPAM325yDNfU95s+CHxgow8QPPyYZmnjE/slodcXRgnA9yeCkT6yPfklEqlrEODWljQUxCK/MzuO+XOLDZEjEH8rULSSv4PvC9bDGz0NkiB3hWdmjbnjFrXF1vJ4aIkOvbpDoZK4PUrkzuKGsCN2CGMrGAUIebHNmKMfuBnSnzpkBL7ISYb4ge2goSajrf+4M6mzuqaN0/gx0SzF8dr4MO1wyCo4+2x3Pn2ERj8Xsl1/FT9sf5n7Ri4ECKpjm+FD3zZ4MdIeABGecghic3xDhd6cwBh0xgHtGIQy+DgXBPaMIBrqQXkej6FQKYPhDOaku5v7MnwEdk3DW+p5hMRbPyCCvyq22PYM4CJatGfRViAe2DHgMHLdlCM2quh2DvD56dgyd5QKcaUeSSmyu3nQ5hlgsSIaNUw4k1nfZShDSAlUsaNLSJkEMbsu1EYRaiktiQenGEeuyjraU9qs/JUFWTcSC0o0jVNFyWkssvE+GRVyOiVhQunHAN9QcDMgGqzVejsHpMiN1bfYsmBuuizNMv9tIx2DGgjyrvbvN8PgDBtGwY9CxIIgtWjBAD4inhhZLSjJkjQVBj9L1MbbVniFzLMg0KCsGnj0WlJVhAb1CO0ssyIzwpN2+oQ/GguYyxYKMMFM57YahetKrHP2aIeVAajDLbgONBZUs981BxoKM7znSdOsMMhbEkmeiPruVDIgMsSBll51UkqBODdUpSyzIP85mz6I6LBiU+CpZYkE4gjDqNIapPUsIRetYUOsvDQG905whoP0AYkFd82UzeNs0+zfMtkjL8bB9LAieQn6ngfGUtAzZY0HQQX0PY8eQORYUEz8U2iu17sGQMRYkHoE+DA5tbHIAsSBx2cTP3XB1p12b8VhQ1SoWhF9uNEolfJhamr6CIRELCi0YWjp4wsy37v0yYCwItu8uDnEmPQN9AkEINnsWG0AsyJcf0ogvjGwYBhEL8oKoczuwvfsbsaA5awbbhPOFZpVlLCgjQ+Lc0yxEDjGIUjG6YB1lSLxZkD1ok9BOO1+G8xqipT8szpfhb3RMkyo0uS1/BnmOKiGCa/3uIAuDPEfdIKddCINxmIN9oxgGFa4/DvtGQQzSM+1W30flz1CSuugUpQvlHBGiCAZyjgGd6WzOclkZKCYWqmNUAT5qSvtqP8t7vSwM6Byx7JcLY5j6x6O06XRhclia/l8MN3ohHMyP4d8eEDcODXCS/wAua2tokkgdtAAAAABJRU5ErkJggg==);
	-webkit-background-size: contain;
	background-size: contain;
	background-position: 0 100%;
	background-repeat: no-repeat;
}

.main__grid-item-img {
	margin: 0;
	position: absolute;
	z-index: -1;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}

.main__grid-item-img img {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.main__grid-item-img:before {
	content: "";
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(76, 36, 1, 0.5);
}

.main__grid-item-inner {
	padding: 3rem 4rem;
	border: 2px solid transparent;
	background-color: transparent;
	-webkit-transform: translate(-webkit-calc(100% + 2rem), -webkit-calc(100% + 2rem));
	-ms-transform: translate(calc(100% + 2rem), calc(100% + 2rem));
	transform: translate(calc(100% + 2rem), calc(100% + 2rem));
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.main__grid-item-head {
	display: inline-block;
	vertical-align: top;
	-webkit-transform: translate(-webkit-calc(-100% - 8rem), -webkit-calc(-100% - 6rem));
	-ms-transform: translate(calc(-100% - 8rem), calc(-100% - 6rem));
	transform: translate(calc(-100% - 8rem), calc(-100% - 6rem));
	text-align: right;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.main__grid-item-title {
	display: inline-block;
	vertical-align: top;
	margin: 0;
	font-size: 3.8rem;
	font-weight: var(--medium);
	line-height: 1.2;

	border-bottom: 0.4rem solid var(--orange);
}

.main__grid-item-subtitle {
	margin: 1rem 0 0 0;
	font-size: 1.4rem;
	font-weight: var(--medium);
	text-transform: uppercase;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.main__grid-item-list {
	opacity: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 1.8rem;
	line-height: 1.4;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.main__grid-item-button {
	margin: 4rem 0 0 0;
	opacity: 0;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

@media only screen and (max-width: 992px) {
	.main__grid-item-special-number {
		font-size: 14rem;
	}

	.main__grid-item-special-text {
		font-size: 3.2rem;
	}
}

@media only screen and (max-width: 768px) {
	.main__head {
		display: block;
		text-align: center;
	}

	.main__title {
		width: auto;
		padding: 0;
	}

	.main__advantages {
		margin: 4rem 0 0 0;
		width: auto;
		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;
	}

	.main__advantages-item {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 auto;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 47.5%;
	}

	.main__grid-item-inner {
		padding: 3rem 2rem;
	}

	.main__grid-item-head {
		-webkit-transform: translate(-webkit-calc(-100% - 6rem), -webkit-calc(-100% - 6rem));
		-ms-transform: translate(calc(-100% - 6rem), calc(-100% - 6rem));
		transform: translate(calc(-100% - 6rem), calc(-100% - 6rem));
	}

	.main__grid-item-list {
		font-size: 1.6rem;
	}
}

@media only screen and (max-width: 640px) {
	.main__grid {
		display: block;
	}

	.main__grid-item {
		width: auto;
	}

	.main__grid-item:nth-child(even) {
		margin-left: auto;
	}

	.main__grid-item:nth-child(4n-3) {
		width: auto;
	}

	.main__grid-item:nth-child(4n-2) {
		width: auto;
	}
}

@media only screen and (max-width: 480px) {
	.main__advantages-title,
	.main__title-text {
		font-size: 6rem;
	}

	.main__advantages {
		display: block;
	}

	.main__advantages-item {
		width: auto;
	}
}

.offer {
	padding: 6rem 0 0 0;
}

.offer__title.title {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.offer__title.title:before {
	content: "";
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	display: block;
	width: 6rem;
	height: 6rem;
	margin: 0 2rem 0 0;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='36' height='36' viewBox='0 0 58 58'%3E%3Cdefs%3E%3Cpath id='i87na' d='M154.5 1472.67a1.83 1.83 0 1 1 0 3.66 1.83 1.83 0 0 1 0-3.66zm5.5 1.83a5.5 5.5 0 1 0-11.01.01 5.5 5.5 0 0 0 11.01-.01z'/%3E%3Cpath id='i87nb' d='M165.5 1495.33a1.83 1.83 0 1 1 0-3.66 1.83 1.83 0 0 1 0 3.66zm-5.5-1.83a5.5 5.5 0 1 0 11.01-.01 5.5 5.5 0 0 0-11.01.01z'/%3E%3Cpath id='i87nc' d='M149.76 1497.66a1.84 1.84 0 0 0 2.56-.42l18.34-25.38a1.8 1.8 0 0 0-.43-2.52 1.85 1.85 0 0 0-2.55.42l-18.34 25.38a1.8 1.8 0 0 0 .42 2.52'/%3E%3Cpath id='i87nd' d='M137.28 1483.4l-2.31-6.04 5.03-4.07c.35-.28.58-.68.65-1.12l1.02-6.4 6.39-1.01c.44-.07.84-.3 1.12-.65l4.07-5.03 6.04 2.32c.42.16.88.16 1.3 0l6.04-2.32 4.07 5.03c.29.35.68.58 1.12.65l6.4 1.02 1.01 6.4c.07.43.3.83.65 1.11l5.03 4.08-2.31 6.04c-.16.42-.16.88 0 1.3l2.31 6.04-5.03 4.07a1.8 1.8 0 0 0-.65 1.12l-1.01 6.4-6.4 1.01c-.44.07-.83.3-1.12.65l-4.06 5.03-6.05-2.32a1.8 1.8 0 0 0-1.3 0l-6.04 2.32-4.07-5.03a1.8 1.8 0 0 0-1.12-.65l-6.4-1.02-1.01-6.39a1.8 1.8 0 0 0-.65-1.12l-5.03-4.07 2.32-6.04a1.8 1.8 0 0 0 0-1.3zm-.1 13.8l1.11 7c.13.78.73 1.38 1.5 1.5l7.01 1.12 4.47 5.51c.5.61 1.32.84 2.05.55l6.62-2.54 6.63 2.54a1.83 1.83 0 0 0 2.05-.55l4.47-5.5 7-1.12a1.81 1.81 0 0 0 1.5-1.5l1.12-7.01 5.51-4.47c.6-.49.83-1.32.55-2.05l-2.54-6.62 2.54-6.63c.28-.73.06-1.56-.55-2.05l-5.51-4.47-1.12-7a1.81 1.81 0 0 0-1.5-1.5l-7-1.12-4.47-5.51c-.5-.6-1.32-.83-2.06-.55l-6.62 2.54-6.62-2.54a1.8 1.8 0 0 0-2.05.55l-4.47 5.51-7 1.12c-.78.12-1.38.73-1.5 1.5l-1.12 7-5.51 4.47c-.6.5-.83 1.32-.55 2.05l2.54 6.63-2.54 6.62c-.28.73-.06 1.56.55 2.05z'/%3E%3C/defs%3E%3Cg%3E%3Cg transform='translate%28-131 -1455%29'%3E%3Cuse fill='%23fff' xlink:href='%23i87na'/%3E%3C/g%3E%3Cg transform='translate%28-131 -1455%29'%3E%3Cuse fill='%23fff' xlink:href='%23i87nb'/%3E%3C/g%3E%3Cg transform='translate%28-131 -1455%29'%3E%3Cuse fill='%23fff' xlink:href='%23i87nc'/%3E%3C/g%3E%3Cg transform='translate%28-131 -1455%29'%3E%3Cuse fill='%23fff' xlink:href='%23i87nd'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
		-webkit-linear-gradient(315deg, var(--orange) 0, #ff862b 100%);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='36' height='36' viewBox='0 0 58 58'%3E%3Cdefs%3E%3Cpath id='i87na' d='M154.5 1472.67a1.83 1.83 0 1 1 0 3.66 1.83 1.83 0 0 1 0-3.66zm5.5 1.83a5.5 5.5 0 1 0-11.01.01 5.5 5.5 0 0 0 11.01-.01z'/%3E%3Cpath id='i87nb' d='M165.5 1495.33a1.83 1.83 0 1 1 0-3.66 1.83 1.83 0 0 1 0 3.66zm-5.5-1.83a5.5 5.5 0 1 0 11.01-.01 5.5 5.5 0 0 0-11.01.01z'/%3E%3Cpath id='i87nc' d='M149.76 1497.66a1.84 1.84 0 0 0 2.56-.42l18.34-25.38a1.8 1.8 0 0 0-.43-2.52 1.85 1.85 0 0 0-2.55.42l-18.34 25.38a1.8 1.8 0 0 0 .42 2.52'/%3E%3Cpath id='i87nd' d='M137.28 1483.4l-2.31-6.04 5.03-4.07c.35-.28.58-.68.65-1.12l1.02-6.4 6.39-1.01c.44-.07.84-.3 1.12-.65l4.07-5.03 6.04 2.32c.42.16.88.16 1.3 0l6.04-2.32 4.07 5.03c.29.35.68.58 1.12.65l6.4 1.02 1.01 6.4c.07.43.3.83.65 1.11l5.03 4.08-2.31 6.04c-.16.42-.16.88 0 1.3l2.31 6.04-5.03 4.07a1.8 1.8 0 0 0-.65 1.12l-1.01 6.4-6.4 1.01c-.44.07-.83.3-1.12.65l-4.06 5.03-6.05-2.32a1.8 1.8 0 0 0-1.3 0l-6.04 2.32-4.07-5.03a1.8 1.8 0 0 0-1.12-.65l-6.4-1.02-1.01-6.39a1.8 1.8 0 0 0-.65-1.12l-5.03-4.07 2.32-6.04a1.8 1.8 0 0 0 0-1.3zm-.1 13.8l1.11 7c.13.78.73 1.38 1.5 1.5l7.01 1.12 4.47 5.51c.5.61 1.32.84 2.05.55l6.62-2.54 6.63 2.54a1.83 1.83 0 0 0 2.05-.55l4.47-5.5 7-1.12a1.81 1.81 0 0 0 1.5-1.5l1.12-7.01 5.51-4.47c.6-.49.83-1.32.55-2.05l-2.54-6.62 2.54-6.63c.28-.73.06-1.56-.55-2.05l-5.51-4.47-1.12-7a1.81 1.81 0 0 0-1.5-1.5l-7-1.12-4.47-5.51c-.5-.6-1.32-.83-2.06-.55l-6.62 2.54-6.62-2.54a1.8 1.8 0 0 0-2.05.55l-4.47 5.51-7 1.12c-.78.12-1.38.73-1.5 1.5l-1.12 7-5.51 4.47c-.6.5-.83 1.32-.55 2.05l2.54 6.63-2.54 6.62c-.28.73-.06 1.56.55 2.05z'/%3E%3C/defs%3E%3Cg%3E%3Cg transform='translate%28-131 -1455%29'%3E%3Cuse fill='%23fff' xlink:href='%23i87na'/%3E%3C/g%3E%3Cg transform='translate%28-131 -1455%29'%3E%3Cuse fill='%23fff' xlink:href='%23i87nb'/%3E%3C/g%3E%3Cg transform='translate%28-131 -1455%29'%3E%3Cuse fill='%23fff' xlink:href='%23i87nc'/%3E%3C/g%3E%3Cg transform='translate%28-131 -1455%29'%3E%3Cuse fill='%23fff' xlink:href='%23i87nd'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
		-o-linear-gradient(315deg, var(--orange) 0, #ff862b 100%);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='36' height='36' viewBox='0 0 58 58'%3E%3Cdefs%3E%3Cpath id='i87na' d='M154.5 1472.67a1.83 1.83 0 1 1 0 3.66 1.83 1.83 0 0 1 0-3.66zm5.5 1.83a5.5 5.5 0 1 0-11.01.01 5.5 5.5 0 0 0 11.01-.01z'/%3E%3Cpath id='i87nb' d='M165.5 1495.33a1.83 1.83 0 1 1 0-3.66 1.83 1.83 0 0 1 0 3.66zm-5.5-1.83a5.5 5.5 0 1 0 11.01-.01 5.5 5.5 0 0 0-11.01.01z'/%3E%3Cpath id='i87nc' d='M149.76 1497.66a1.84 1.84 0 0 0 2.56-.42l18.34-25.38a1.8 1.8 0 0 0-.43-2.52 1.85 1.85 0 0 0-2.55.42l-18.34 25.38a1.8 1.8 0 0 0 .42 2.52'/%3E%3Cpath id='i87nd' d='M137.28 1483.4l-2.31-6.04 5.03-4.07c.35-.28.58-.68.65-1.12l1.02-6.4 6.39-1.01c.44-.07.84-.3 1.12-.65l4.07-5.03 6.04 2.32c.42.16.88.16 1.3 0l6.04-2.32 4.07 5.03c.29.35.68.58 1.12.65l6.4 1.02 1.01 6.4c.07.43.3.83.65 1.11l5.03 4.08-2.31 6.04c-.16.42-.16.88 0 1.3l2.31 6.04-5.03 4.07a1.8 1.8 0 0 0-.65 1.12l-1.01 6.4-6.4 1.01c-.44.07-.83.3-1.12.65l-4.06 5.03-6.05-2.32a1.8 1.8 0 0 0-1.3 0l-6.04 2.32-4.07-5.03a1.8 1.8 0 0 0-1.12-.65l-6.4-1.02-1.01-6.39a1.8 1.8 0 0 0-.65-1.12l-5.03-4.07 2.32-6.04a1.8 1.8 0 0 0 0-1.3zm-.1 13.8l1.11 7c.13.78.73 1.38 1.5 1.5l7.01 1.12 4.47 5.51c.5.61 1.32.84 2.05.55l6.62-2.54 6.63 2.54a1.83 1.83 0 0 0 2.05-.55l4.47-5.5 7-1.12a1.81 1.81 0 0 0 1.5-1.5l1.12-7.01 5.51-4.47c.6-.49.83-1.32.55-2.05l-2.54-6.62 2.54-6.63c.28-.73.06-1.56-.55-2.05l-5.51-4.47-1.12-7a1.81 1.81 0 0 0-1.5-1.5l-7-1.12-4.47-5.51c-.5-.6-1.32-.83-2.06-.55l-6.62 2.54-6.62-2.54a1.8 1.8 0 0 0-2.05.55l-4.47 5.51-7 1.12c-.78.12-1.38.73-1.5 1.5l-1.12 7-5.51 4.47c-.6.5-.83 1.32-.55 2.05l2.54 6.63-2.54 6.62c-.28.73-.06 1.56.55 2.05z'/%3E%3C/defs%3E%3Cg%3E%3Cg transform='translate%28-131 -1455%29'%3E%3Cuse fill='%23fff' xlink:href='%23i87na'/%3E%3C/g%3E%3Cg transform='translate%28-131 -1455%29'%3E%3Cuse fill='%23fff' xlink:href='%23i87nb'/%3E%3C/g%3E%3Cg transform='translate%28-131 -1455%29'%3E%3Cuse fill='%23fff' xlink:href='%23i87nc'/%3E%3C/g%3E%3Cg transform='translate%28-131 -1455%29'%3E%3Cuse fill='%23fff' xlink:href='%23i87nd'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
		linear-gradient(135deg, var(--orange) 0, #ff862b 100%);
	background-position: 50% 50%;
	-webkit-background-size: auto auto;
	background-size: auto;
	background-repeat: no-repeat;
}

.offer__box {
	margin: 2rem 0 0 0;
}

.offer__box.slider {
	position: relative;
}

.offer__box.slider .owl-nav {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
}

.offer__box.slider .owl-nav .owl-next,
.offer__box.slider .owl-nav .owl-prev {
	position: absolute;
	top: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 2rem;
	height: 2rem;
	border-left: 0.5rem solid var(--orange);
	border-bottom: 0.5rem solid var(--orange);
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.offer__box.slider .owl-nav .owl-next:active,
.offer__box.slider .owl-nav .owl-next:hover,
.offer__box.slider .owl-nav .owl-prev:active,
.offer__box.slider .owl-nav .owl-prev:hover {
	border-color: var(--orange);
}

.offer__box.slider .owl-nav .owl-prev {
	left: 2.5rem;
	-webkit-transform: translateY(-50%) rotate(45deg);
	-ms-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}

.offer__box.slider .owl-nav .owl-next {
	right: 2.5rem;
	-webkit-transform: translateY(-50%) rotate(-135deg);
	-ms-transform: translateY(-50%) rotate(-135deg);
	transform: translateY(-50%) rotate(-135deg);
}

.offer__item {
	padding: 2rem 10rem;
	position: relative;
	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;
}

.offer__item + .offer__item {
	margin-top: 2rem;
}

.offer__item-img {
	margin: 0;
	position: absolute;
	z-index: -1;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}

.offer__item-img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.offer__item-content {
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.offer__item-button {
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	-webkit-align-self: flex-end;
	-ms-flex-item-align: end;
	align-self: flex-end;
	margin-top: 2rem;
}

.offer__item-title {
	margin: 0;
	font-size: 2.4rem;
	font-weight: var(--medium);
	background-color: #fff;
	padding: 1rem 2rem;
	color: #000;
}

.offer__item-text {
	margin: 0;
	font-size: 2.4rem;
	font-weight: var(--medium);
	color: #fff;
	background-color: var(--orange);
	padding: 0.5rem 2rem;
}

@media only screen and (max-width: 640px) {
	.offer__title.title {
		display: block;
	}

	.offer__title.title:before {
		margin: 0 auto 2rem auto;
	}

	.offer__box.slider .owl-nav {
		position: relative;
		top: auto;
		margin: 3rem 0 0 0;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.offer__box.slider .owl-nav .owl-next,
	.offer__box.slider .owl-nav .owl-prev {
		position: relative;
		top: auto;
		left: auto;
		right: auto;
	}

	.offer__box.slider .owl-nav .owl-prev {
		margin-right: 2rem;
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	.offer__box.slider .owl-nav .owl-next {
		margin-left: 2rem;
		-webkit-transform: rotate(-135deg);
		-ms-transform: rotate(-135deg);
		transform: rotate(-135deg);
	}

	.offer__item {
		padding: 2rem;
	}
}

.completed {
	padding: 6rem 0 0 0;
}

.completed__title.title {
	padding-right: 10rem;
}

.completed__box {
	margin-top: 2rem;
	margin-left: -1rem;
	margin-right: -1rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.completed__box.owl-carousel {
	display: block;
	width: auto;
	margin-top: -4.5rem;
	padding: 6rem 0 0 0;
	position: relative;
}

.completed__box.owl-carousel .owl-stage {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.completed__box.owl-carousel .owl-stage .owl-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}

.completed__box.owl-carousel .owl-stage .owl-item [class$="__item"] {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: -webkit-calc(100% - 2rem);
	width: calc(100% - 2rem);
}

.completed__box.owl-carousel .owl-nav {
	position: absolute;
	top: 0;
	right: 1rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.completed__box.owl-carousel .owl-nav .owl-next,
.completed__box.owl-carousel .owl-nav .owl-prev {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 4rem;
	height: 4rem;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background-color: var(--orange);
	position: relative;
}

.completed__box.owl-carousel .owl-nav .owl-next:active,
.completed__box.owl-carousel .owl-nav .owl-next:hover,
.completed__box.owl-carousel .owl-nav .owl-prev:active,
.completed__box.owl-carousel .owl-nav .owl-prev:hover {
	background-color: var(--orange);
}

.completed__box.owl-carousel .owl-nav .owl-next:before,
.completed__box.owl-carousel .owl-nav .owl-prev:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1.8rem;
	height: 1.8rem;
	border-left: 0.3rem solid #fff;
	border-bottom: 0.3rem solid #fff;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.completed__box.owl-carousel .owl-nav .owl-prev {
	left: 0;
	margin-right: 0.2rem;
}

.completed__box.owl-carousel .owl-nav .owl-prev:before {
	left: 60%;
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	-ms-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
}

.completed__box.owl-carousel .owl-nav .owl-next {
	right: 0;
	margin-left: 0.2rem;
}

.completed__box.owl-carousel .owl-nav .owl-next:before {
	left: 40%;
	-webkit-transform: translate(-50%, -50%) rotate(-135deg);
	-ms-transform: translate(-50%, -50%) rotate(-135deg);
	transform: translate(-50%, -50%) rotate(-135deg);
}

.completed__item {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: -webkit-calc(25% - 2rem);
	width: calc(25% - 2rem);
	margin: 0 1rem 2rem;
	padding: 2rem;
	min-height: 27rem;
	color: #fff;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	position: relative;
}

.completed__item a {
	text-decoration: none;
	color: inherit;
}

.completed__item-img {
	margin: 0;
	position: absolute;
	z-index: -1;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}

.completed__item-img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.completed__item-img:before {
	content: "";
	position: absolute;
	z-index: 0;
	left: 1.5rem;
	top: 1.5rem;
	right: 1.5rem;
	bottom: 1.5rem;
	background-color: var(--orange);
	opacity: 0.2;
}

.completed__item-title {
	margin: 0;
	font-size: 2.4rem;
	font-weight: var(--medium);
	background-image: -webkit-gradient(linear, left top, left bottom, from(var(--orange)), to(var(--orange)));
	background-image: -webkit-linear-gradient(var(--orange), var(--orange));
	background-image: -o-linear-gradient(var(--orange), var(--orange));
	background-image: linear-gradient(var(--orange), var(--orange));
	background-position: 0 100%;
	-webkit-background-size: 7rem 0.4rem;
	background-size: 7rem 0.4rem;
	background-repeat: no-repeat;
	padding-bottom: 1rem;
}

.completed__item-text {
	margin: 0.5rem 0 0 0;
	font-size: 1.4rem;
	font-weight: var(--medium);
}

@media only screen and (max-width: 992px) {
	.completed__item {
		width: -webkit-calc(33.3333% - 2rem);
		width: calc(33.3333% - 2rem);
	}
}

@media only screen and (max-width: 768px) {
	.completed__item {
		width: -webkit-calc(50% - 2rem);
		width: calc(50% - 2rem);
	}
}

@media only screen and (max-width: 640px) {
	.completed__title.title {
		padding-right: 0;
	}

	.completed__box {
		display: block;
	}

	.completed__box.owl-carousel {
		margin-top: 2rem;
	}

	.completed__box.owl-carousel .owl-nav {
		left: 1rem;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

@media only screen and (max-width: 480px) {
	.completed__item {
		width: auto;
	}
}

.about {
	padding: 6rem 0 0 0;
}

.about__box {
	margin: 6rem 0 0 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.about__content {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 55%;
	margin-right: 3%;
	line-height: 2;
}

.about__content :first-child {
	margin-top: 0;
}

.about__content :last-child {
	margin-bottom: 0;
}

.about__side {
	width: 42%;
}

.about__advantages {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	align-self: center;
	/*margin: 0 0 0 5%;*/
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.about__advantages-item {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: -webkit-calc(33.33% - 2rem);
	width: calc(33.33% - 2rem);
	margin: 0 1rem 6rem 1rem;
	text-align: center;
}

.about__advantages-img {
	margin: 0;
}

.about__advantages-img img {
	display: inline-block;
	vertical-align: top;
	max-width: 100%;
	width: auto;
	height: auto;
}

.about__advantages-title {
	background: 0 0;
	display: block;
	margin: 2rem 0 0 0;
	font-size: 7.2rem;
	line-height: 1;
	font-weight: var(--medium);

	color: var(--orange);
}

.about__advantages-text {
	position: relative;
}

.about__advantages-text.active .about__advantages-text-list,
.about__advantages-text:active .about__advantages-text-list,
.about__advantages-text:hover .about__advantages-text-list {
	visibility: visible;
	-webkit-transform: translateY(-webkit-calc(100% + 1rem));
	-ms-transform: translateY(calc(100% + 1rem));
	transform: translateY(calc(100% + 1rem));
	opacity: 1;
	z-index: 1;
}

.about__advantages-text-title {
	margin: 0;
	font-weight: var(--medium);
	display: inline-block;
	vertical-align: top;
	font-size: 1.3rem;
	line-height: 1.4;
	font-weight: var(--medium);
	text-transform: uppercase;
	padding: 0 2rem 0 1rem;
	position: relative;
	white-space: nowrap;
}

.about__advantages-text-title:before {
	content: "";
	position: absolute;
	top: 0.5rem;
	right: 0;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	width: 0.7rem;
	height: 0.7rem;
	border-left: 2px solid var(--orange);
	border-bottom: 2px solid var(--orange);
}

.about__advantages-text-list {
	position: absolute;
	margin: 0;
	padding: 1rem 0;
	list-style: none;
	visibility: hidden;
	-webkit-transform: translateY(-webkit-calc(100% + 3rem));
	-ms-transform: translateY(calc(100% + 3rem));
	transform: translateY(calc(100% + 3rem));
	opacity: 0;
	position: absolute;
	z-index: -1;
	bottom: 0;
	left: 0;
	min-width: 100%;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background-color: #191818;
	-webkit-box-shadow: 0 0 3rem 0 rgba(217, 155, 98, 0.4);
	box-shadow: 0 0 3rem 0 rgba(217, 155, 98, 0.4);
	font-size: 1.4rem;
	line-height: 1.4;
}

.about__advantages-text-list li {
	padding: 1rem 1.5rem;
}

.about__advantages-text-list li a {
	text-decoration: none;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.about__advantages-text-list li a:active,
.about__advantages-text-list li a:hover {
	color: var(--orange);
}

@media only screen and (max-width: 768px) {
	.about__box {
		display: block;
	}

	.about__content {
		width: auto;
	}

	.about__advantages {
		width: auto;
		margin: 6rem 0 0 0;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

@media only screen and (max-width: 640px) {
	.about__content {
		text-align: center;
	}
}

@media only screen and (max-width: 480px) {
	.about__advantages-item {
		width: -webkit-calc(50% - 2rem);
		width: calc(50% - 2rem);
	}
}

@media only screen and (max-width: 360px) {
	.about__advantages {
		display: block;
	}

	.about__advantages-item {
		width: auto;
		margin: 6rem 0 0 0;
	}
}

.keys {
	padding: 6rem 0 0 0;
}

.keys__box {
	margin: 6rem 0 0 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.keys__list {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	margin: 0;
	padding: 0;
	list-style: none;
}

.keys__list li {
	padding: 0 0 0 4rem;
	background-image: -webkit-gradient(linear, left top, left bottom, from(var(--orange)), to(var(--orange)));
	background-image: -webkit-linear-gradient(var(--orange), var(--orange));
	background-image: -o-linear-gradient(var(--orange), var(--orange));
	background-image: linear-gradient(var(--orange), var(--orange));
	background-position: 0 1.1rem;
	-webkit-background-size: 2rem 0.4rem;
	background-size: 2rem 0.4rem;
	background-repeat: no-repeat;
}

.keys__list li + li {
	margin: 2rem 0 0 0;
}

.keys__slider {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	margin-top: 4rem;
}

.keys__slider-title {
	padding-right: 10rem;
	margin: 0;
	font-size: 1.3rem;
	font-weight: var(--medium);
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.keys__slider-box {
	margin: 2rem 0 0 0;
}

.keys__slider-box.owl-carousel {
	padding: 6rem 0 0 0;
	margin-top: -3rem;
	position: relative;
}

.keys__slider-box.owl-carousel .owl-nav {
	position: absolute;
	bottom: 0;
	right: 20px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.keys__slider-box.owl-carousel .owl-nav .owl-next,
.keys__slider-box.owl-carousel .owl-nav .owl-prev {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 4rem;
	height: 4rem;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	position: relative;
}

.keys__slider-box.owl-carousel .owl-nav .owl-next:active,
.keys__slider-box.owl-carousel .owl-nav .owl-next:hover,
.keys__slider-box.owl-carousel .owl-nav .owl-prev:active,
.keys__slider-box.owl-carousel .owl-nav .owl-prev:hover {
}

.keys__slider-box.owl-carousel .owl-nav .owl-next:before,
.keys__slider-box.owl-carousel .owl-nav .owl-prev:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1.8rem;
	height: 1.8rem;
	border-left: 0.2rem solid var(--orange);
	border-bottom: 0.2rem solid var(--orange);
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.keys__slider-box.owl-carousel .owl-nav .owl-prev {
	left: 0;
	margin-right: 0.2rem;
}

.keys__slider-box.owl-carousel .owl-nav .owl-prev:before {
	left: 60%;
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	-ms-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
}

.keys__slider-box.owl-carousel .owl-nav .owl-next {
	right: 0;
	margin-left: 0.2rem;
}

.keys__slider-box.owl-carousel .owl-nav .owl-next:before {
	left: 40%;
	-webkit-transform: translate(-50%, -50%) rotate(-135deg);
	-ms-transform: translate(-50%, -50%) rotate(-135deg);
	transform: translate(-50%, -50%) rotate(-135deg);
}

.keys__slider-item {
	min-height: 30rem;
	display: flex;
}

.keys__slider-item-img {
	margin: 0;
	position: relative;
	z-index: -1;
	width: 80%;
}

.keys__slider-item-img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.keys__slider-item-img:before {
	content: "";
	position: absolute;
	z-index: 0;
	left: 15px;
	top: 15px;
	right: 15px;
	bottom: 15px;
	background-color: var(--orange);
	opacity: 0.2;
}

.keys__slider-item-text {
	margin-left: 2rem;
	font-size: 1.6rem;
	font-weight: var(--medium);
	line-height: 1.4;
}

.keys__note {
	margin: 6rem 25% 0 10%;
	padding: 0 0 0 15%;
	background-image: -webkit-gradient(linear, left top, left bottom, from(var(--orange)), to(var(--orange)));
	background-image: -webkit-linear-gradient(var(--orange), var(--orange));
	background-image: -o-linear-gradient(var(--orange), var(--orange));
	background-image: linear-gradient(var(--orange), var(--orange));
	background-position: 0 1.5rem;
	-webkit-background-size: 18% 0.4rem;
	background-size: 18% 0.4rem;
	background-repeat: no-repeat;
	line-height: 2;
}

.keys__note :first-child {
	margin-top: 0;
}

.keys__note :last-child {
	margin-bottom: 0;
}

.keys__grid {
	margin: 6rem 0 0 0;
	-webkit-column-count: 3;
	-moz-column-count: 3;
	column-count: 3;
	-webkit-column-gap: 1rem;
	-moz-column-gap: 1rem;
	column-gap: 1rem;
}

.keys__grid-item {
	overflow: hidden;
}

.keys__grid-item + .keys__grid-item {
	margin-top: 1rem;
}

.keys__grid-item img {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	height: auto;
}

.keys__grid-item.keys__grid-item_first {
	padding: 9rem 6% 3rem 6%;
	background-image: -webkit-linear-gradient(315deg, var(--orange) 0, var(--orange) 100%);
	background-image: -o-linear-gradient(315deg, var(--orange) 0, var(--orange) 100%);
	background-image: linear-gradient(135deg, var(--orange) 0, var(--orange) 100%);

	color: #fff;
	position: relative;
}

.keys__grid-item.keys__grid-item_first:before {
	content: "";
	position: absolute;
	top: 0;
	right: 2rem;
	width: 5rem;
	height: 8rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='50' height='80' viewBox='0 0 50 80'%3E%3Cdefs%3E%3Cpath id='9djna' d='M408.87 1496.3l-5 15a2.5 2.5 0 0 1-2.37 1.7H394v7.5a2.5 2.5 0 0 1-2.5 2.5h-5v1.47a4.91 4.91 0 0 0 3.02 4.58 14.92 14.92 0 0 1 5.03 24.5A14.87 14.87 0 0 1 384 1558c-8.27 0-15-6.73-15-15a2.5 2.5 0 1 1 5 0c0 5.51 4.48 10 10 10a9.9 9.9 0 0 0 7.02-2.98 9.9 9.9 0 0 0-3.34-16.32 9.95 9.95 0 0 1-6.18-9.23V1523h-5a2.5 2.5 0 0 1-2.5-2.5v-7.5h-7.5a2.5 2.5 0 0 1-2.37-1.7l-5-15a2.5 2.5 0 0 1 0-1.6l5-15a2.5 2.5 0 0 1 2.37-1.7h35a2.5 2.5 0 0 1 2.37 1.7l5 15a2.5 2.5 0 0 1 0 1.6zm-13.34-13.3h-4.73l-8.33 25h4.73zm-18.33 25l8.33-25h-4.73l-8.33 25zm-9.45-1.66l7.78-23.34h-7.23l-4.16 12.5zM389 1513h-10v5h10zm14.86-17.5l-3.6-10.84-7.8 23.34h7.24z'/%3E%3C/defs%3E%3Cg%3E%3Cg transform='translate%28-359 -1478%29'%3E%3Cg%3E%3Cuse fill='%23fff' xlink:href='%239djna'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	-webkit-background-size: contain;
	background-size: contain;
	background-position: 0 100%;
	background-repeat: no-repeat;
}

.keys__grid-item.keys__grid-item_last {
	padding: 4rem 6%;

	background-color: var(--orange);
}

.keys__grid-item-title {
	padding: 1.5rem 0 0 0;
	font-size: 4rem;
	font-weight: var(--medium);
	line-height: 1.2;
}

.keys__grid-item-title span {
	padding: 1.5rem 0 0 0;
	background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor));
	background-image: -webkit-linear-gradient(currentColor, currentColor);
	background-image: -o-linear-gradient(currentColor, currentColor);
	background-image: linear-gradient(currentColor, currentColor);
	background-position: 0 0;
	-webkit-background-size: 100% 0.4rem;
	background-size: 100% 0.4rem;
	background-repeat: no-repeat;
}

.keys__grid-item-link {
	color: inherit;
	font-size: 2.4rem;
	font-weight: var(--medium);
	line-height: 1.2;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.keys__grid-item-link:active,
.keys__grid-item-link:hover {
	color: var(--orange);
}

@media only screen and (max-width: 992px) {
	.keys__grid-item-title {
		font-size: 3.8rem;
	}
}

@media only screen and (max-width: 768px) {
	.keys__box {
		display: block;
	}

	.keys__list {
		width: auto;
	}

	.keys__slider {
		margin: 6rem 0 0 0;
		width: auto;
	}

	.keys__note {
		margin: 6rem 0 0 0;
		-webkit-background-size: 12% 0.4rem;
		background-size: 12% 0.4rem;
	}

	.keys__grid {
		-webkit-column-count: 2;
		-moz-column-count: 2;
		column-count: 2;
	}
}

@media only screen and (max-width: 640px) {
	.keys__grid-item-title {
		font-size: 3.4rem;
	}
}

@media only screen and (max-width: 480px) {
	.keys__grid {
		-webkit-column-count: auto;
		-moz-column-count: auto;
		column-count: auto;
	}
}

.contacts {
	padding: 6rem 0 0 0;
}

.contacts__box {
	margin: 6rem -1rem 0 -1rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.contacts__address,
.contacts__form,
.contacts__message,
.contacts__phone {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: -webkit-calc(33.33% - 2rem);
	width: calc(33.33% - 2rem);
	margin: 0 1rem 6rem 1rem;
}

.contacts__address-icon,
.contacts__message-icon,
.contacts__phone-icon {
	margin: 0;
}

.contacts__address-icon img,
.contacts__message-icon img,
.contacts__phone-icon img {
	display: inline-block;
	vertical-align: top;
	max-width: 100%;
	width: auto;
	height: auto;
}

.contacts__address-box,
.contacts__message-box,
.contacts__phone-box {
}

.adress-top {
	margin-top: 2rem;
}

.contacts__address-box,
.worktime {
	font-style: normal;
	font-size: 2rem;
	font-weight: var(--medium);
}

.worktime-title {
	margin-top: 2rem;
}

.contacts__phone-box {
	padding: 0;
	list-style: none;
}

.contacts__phone-box li + li {
	margin: 1rem 0 0 0;
}

.contacts__phone-box li a {
	text-decoration: none;
	color: inherit;
	font-size: 2rem;
	font-weight: var(--medium);
	line-height: 1.2;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.contacts__phone-box li a:active,
.contacts__phone-box li a:hover {
	color: var(--orange);
}

.contacts__item-message-title {
	margin: 1rem 0 0 0;
}

.contacts__item-message-messangers {
	margin: 1rem 0 0 0;
	padding: 0;
	list-style: none;
}

.contacts__item-message-messangers li {
	display: inline-block;
	vertical-align: top;
	margin: 0 1rem 2rem 0;
}

.contacts__item-message-messangers li a img {
	display: inline-block;
	vertical-align: top;
	max-width: 100%;
	width: auto;
	height: auto;
}

.contacts__item-message-link {
	margin: 1rem 0 0 0;
	font-weight: var(--medium);
}

.contacts__item-message-link a {
	color: var(--orange);
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.contacts__item-message-link a:active,
.contacts__item-message-link a:hover {
	color: var(--orange);
}

.contacts__map {
	height: 500px;
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
}

#location-map {
	height: 660px;
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
}

.contacts__form {
	-webkit-box-ordinal-group: 2;
	-webkit-order: 1;
	-ms-flex-order: 1;
	order: 1;
	padding: 2rem;
	background-color: var(--orange);
	background-image: -webkit-linear-gradient(315deg, var(--orange) 0, var(--orange) 100%);
	background-image: -o-linear-gradient(315deg, var(--orange) 0, var(--orange) 100%);
	background-image: linear-gradient(135deg, var(--orange) 0, var(--orange) 100%);
}

.contacts__form-text {
	margin: 0;
}

.contacts__form-title {
	margin: 0;
	font-size: 2.6rem;
}

.contacts__form-input {
	display: block;
	width: 100%;
	height: 5.4rem;
	margin: 2rem 0 0 0;
	background-color: transparent;
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-border-radius: 0;
	border-radius: 0;
	padding: 1rem 0;
	border: none;
	border-bottom: 3px solid #fff;
	font: inherit;
	color: #fff;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.contacts__form-input:focus,
.contacts__form-input:hover {
	border-color: var(--orange);
}

.contacts__form-textarea {
	min-height: 12rem;
	resize: vertical;
	display: block;
	width: 100%;
	margin: 2rem 0 0 0;
	background: 0 0;
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-border-radius: 0;
	border-radius: 0;
	padding: 1rem 0;
	border: none;
	font: inherit;
	color: #fff;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	border-bottom: 3px solid #fff;
}

.contacts__form-textarea:focus,
.contacts__form-textarea:hover {
	border-color: var(--orange);
}

.contacts__form-submit {
	margin: 3.4rem 0 0 0;
}

@media only screen and (max-width: 768px) {
	.contacts__address,
	.contacts__form,
	.contacts__message,
	.contacts__phone {
		width: -webkit-calc(50% - 2rem);
		width: calc(50% - 2rem);
	}

	.contacts__map {
		width: -webkit-calc(100% - 2rem);
		width: calc(100% - 2rem);
	}

	.contacts__form {
		-webkit-box-ordinal-group: 1;
		-webkit-order: 0;
		-ms-flex-order: 0;
		order: 0;
	}
}

@media only screen and (max-width: 640px) {
	.contacts__top {
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.contacts__item {
		text-align: center;
	}
}

@media only screen and (max-width: 480px) {
	.contacts__box {
		display: block;
	}

	.contacts__address,
	.contacts__message,
	.contacts__phone {
		text-align: center;
	}

	.contacts__address,
	.contacts__form,
	.contacts__message,
	.contacts__phone {
		width: auto;
	}
}

.project {
	padding: 6rem 0;
}

.project__box {
	margin: 6rem 0 0 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.project__text {
	flex: 1 0 65%;
	width: 45%;
	font-size: 1.8rem;
	line-height: 2;
}

.project__text :first-child {
	margin-top: 0;
}

.project__text :last-child {
	margin-bottom: 0;
}

.project__data {
	flex: 1 0 30%;
	/* width: 50%; */
	padding: 0 0 0 5%;
	display: flex;
	position: relative;
	flex-direction: column;
}

/* .project__data:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 20%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='34' height='271' viewBox='0 0 34 271'%3E%3Cdefs%3E%3Cpath id='qc9ga' d='M718 1383.42l-.27 1.44-1.46.86c-6.14-5.18-16.27-18.72-20.54-30.24-3.06-8.06-4.4-16.13-4.4-26.5 0-8.92 1.07-17.28 2.14-25.63.93-7.2 1.46-12.96 1.46-18.43 0-14.98-5.06-29.95-10.93-34.56 5.87-4.6 10.93-19.58 10.93-34.56 0-5.47-.53-11.23-1.46-18.43-1.07-8.35-2.14-16.7-2.14-25.63 0-10.37 1.34-18.44 4.4-26.5 4.27-11.52 14.4-25.06 20.54-30.24l1.46.86.27 1.44-.67 3.17c-4 5.76-7.46 12.39-11.2 21.89-2.93 7.49-4 12.1-4 21.6 0 10.08 1.2 18.14 2 25.92 1.74 17.86 1.6 23.9 1.6 24.77 0 16.41-5.73 23.61-13.73 34.85v1.72c8 11.24 13.73 18.44 13.73 34.85 0 .87.14 6.91-1.6 24.77-.8 7.78-2 15.84-2 25.92 0 9.5 1.07 14.11 4 21.6 3.74 9.5 7.2 16.13 11.2 21.89z'/%3E%3C/defs%3E%3Cg%3E%3Cg transform='translate%28-684 -1115%29'%3E%3Cuse fill='%23d99b62' xlink:href='%23qc9ga'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	-webkit-background-size: contain;
	background-size: contain;
	background-position: 0 50%;
	background-repeat: no-repeat;
} */

.project__data-item {
	margin: 0 1rem 3rem 1rem;
}

/* .project__data-item:nth-child(n+3):before {
	content: '~';
	position: absolute;
	top: -2rem;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 4rem;
	font-size: 6rem;
	line-height: .8;
	font-family: 'Times New Roman';
	color: var(--orange);
} */

.project__data-item-text {
	margin: 0;
	color: var(--text);
}

.project__data-item-title {
	display: block;
	background: 0 0;
	font-weight: var(--medium);
	color: var(--orange);
	font-size: 4.2rem;
}

.project__data-item-title span {
	font-size: 2rem;
}

@media only screen and (max-width: 992px) {
	.project__text {
		width: 45%;
	}

	.project__data {
		width: 50%;
		margin: 0 0 0 5%;
		padding: 0 0 0 5%;
	}

	.project__data:before {
		width: 10%;
	}
}

@media only screen and (max-width: 768px) {
	.project__box {
		display: block;
	}

	.project__text {
		width: auto;
	}

	.project__data {
		width: auto;
		margin: 6rem 0 0 0;
		padding: 0;
	}

	.project__data:before {
		display: none;
	}
}

@media only screen and (max-width: 640px) {
	.project__text {
		text-align: center;
	}
}

@media only screen and (max-width: 360px) {
	.project__data {
		display: block;
	}

	.project__data-item {
		width: auto;
		margin: 0 0 4rem 0;
		text-align: center;
	}

	.project__data-item:nth-child(n + 2) {
		position: relative;
		padding-top: 5rem;
	}

	.project__data-item:nth-child(n + 2):before {
		content: "~";
		position: absolute;
		top: -2rem;
		left: 50%;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
		width: 4rem;
		font-size: 6rem;
		line-height: 0.8;
		font-family: "Times New Roman";
		color: var(--orange);
	}
}

.adv_bg {
	position: absolute;
	top: 0;
	width: 100%;
	bottom: 0;
	z-index: 0;
	opacity: 0.2;

	-webkit-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
}

.adv_bg.zhk-na-nagornoy {
	background-image: url(/images/zhk-na-nagornoy.jpg);
}

.adv_bg.zhk-na-zakgeima {
	background-image: url(/images/zhk-na-zakgeima.png);
}

.adv_bg.zhk-globus {
	background-image: url(/images/zhk-globus.jpg);
}

.advantages {
	padding: 6rem 0 0 0;
	/*background-image: url(../images/bg-advantages.png);*/
	/*background-position: 100% 50%;*/
	position: relative;
	z-index: 1;
}

.advantages .container {
	position: relative;
	z-index: 1;
}

.advantages__box {
	margin: 6rem -2rem 0 -2rem;
	/*padding: 0 20% 0 0;*/
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.advantages__item {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: -webkit-calc(33.3333% - 4rem);
	width: calc(33.3333% - 4rem);
	margin: 0 2rem 6rem 2rem;
}

.advantages__item-img {
	margin: 0;
	width: 72px;
}

.advantages__item-img img {
	display: inline-block;
	vertical-align: top;
	max-width: 100%;
	width: auto;
	height: auto;
}

.advantages__item-title {
	margin: 4rem 0 0 0;
	font-size: 1.8rem;
	font-weight: var(--medium);
	color: var(--orange);
}

.advantages__item-title span {
	padding-bottom: 0.5rem;
}

.advantages__item-title.no-icon span {
	border-bottom: none;
}

.advantages__item-text {
	margin: 2rem 0 0 0;
}

.advantages__item-title.no-icon {
	/*margin: 0 0 0 140px;*/
	display: inline-block;
	vertical-align: middle;
	width: calc(100% - 80px);
	padding-left: 2rem;
	margin: -1rem 0 0 0;
}

.advantage-digit {
	width: 60px;
	height: 60px;
	background: var(--orange);
	border-radius: 50%;
	color: #fff;
	text-align: center;
	font-size: 3.2rem;
	font-weight: var(--medium);
	line-height: 1.8;
	margin: 0;
	display: inline-block;
}

@media only screen and (max-width: 992px) {
	.advantages__box {
		padding: 0;
	}
}

@media only screen and (max-width: 768px) {
	.advantages__item {
		width: -webkit-calc(50% - 4rem);
		width: calc(50% - 4rem);
		text-align: center;
	}
}

@media only screen and (max-width: 480px) {
	.advantages__box {
		display: block;
	}

	.advantages__item {
		width: auto;
	}
}

.place {
	padding: 6rem 0 0 0;
}

.place__box {
	display: block;
	margin-top: 4rem;
	margin-bottom: 10rem;
}

.place__box.legend {
	margin: 6rem -1rem 0 -1rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
}

.place__map {
	width: 100%;
	margin-top: 4rem;
	min-height: 50rem;
	display: block;
}

.legend .place__map {
	margin: 0 1rem 6rem 1rem;
	width: -webkit-calc(66.66% - 2rem);
	width: calc(66.66% - 2rem);
	-webkit-box-ordinal-group: 0;
	-webkit-order: -1;
	-ms-flex-order: -1;
	order: -1;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}

.legend .place__content {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: -webkit-calc(33.33% - 2rem);
	width: calc(33.33% - 2rem);
	margin: 0 1rem 6rem 1rem;
}

@media screen and (max-width: 768px) {
	.legend .place__map,
	.legend .place__content {
		width: 100%;
		margin-right: 0;
		margin-left: 0;
	}

	.legend .place__map {
		-webkit-order: 1;
		-ms-flex-order: 1;
		order: 1;
	}
}

.place__content {
	display: block;
}

.place__content-title {
	margin: 0;
	font-size: 2rem;
}

.place__content-address {
	margin: 3rem 0 0 0;
	font-style: normal;
	padding: 0 0 0 7rem;
	position: relative;
}

.place__content-address:before {
	content: "";
	position: absolute;
	left: 2rem;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 2.5rem;
	height: 3.9rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='25' height='39' viewBox='0 0 25 39'%3E%3Cdefs%3E%3Cpath id='4729a' d='M950.5 2480.07c-2.76 0-5-2.2-5-4.88a4.95 4.95 0 0 1 5-4.88c2.76 0 5 2.19 5 4.88a4.95 4.95 0 0 1-5 4.88zm12.5-3.67c0-7.4-5.6-13.4-12.5-13.4s-12.5 6-12.5 13.4c0 .42.01.82.05 1.23H938c0 7.36 12.5 24.37 12.5 24.37s12.5-17.06 12.5-24.37h-.05c.04-.4.05-.81.05-1.23z'/%3E%3C/defs%3E%3Cg%3E%3Cg clip-path='url%28%23clip-EB2D5DFF-D75E-4066-8997-FB80EFB96A60%29' transform='translate%28-938 -2463%29'%3E%3Cuse fill='%23d99b62' xlink:href='%234729a'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	background-position: 50% 50%;
	-webkit-background-size: contain;
	background-size: contain;
	background-repeat: no-repeat;
}

.place__board {
	margin: 5rem 0 0 0;
	padding: 3rem;
	background-color: #fff;
	color: #000;
	border: 0.4rem solid var(--orange);
}

.place__board-title {
	margin: 0;
	font-size: 2.4rem;
	position: relative;
	padding-bottom: 3rem;
}

.place__board-title:before {
	content: "~";
	position: absolute;
	bottom: 0;
	left: 0.5rem;
	width: 4rem;
	font-size: 4.6rem;
	line-height: 0.8;
	font-family: "Times New Roman";
	color: var(--orange);
}

.place__board-list {
	margin: 3rem 0 0 0;
	padding: 0;
	list-style: none;
}

.place__board-list-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.place__board-list-item.active {
	font-weight: var(--medium);
}

.place__board-list-item + .place__board-list-item {
	margin-top: 1rem;
}

.place__board-list-icon {
	margin: 0;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 4rem;
}

.place__board-list-icon img {
	display: inline-block;
	vertical-align: top;
	max-width: 100%;
	width: auto;
	height: auto;
}

.place__board-list-text {
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	align-self: center;
	display: block;
	margin-left: 3rem;
}

@media only screen and (max-width: 768px) {
	.place__box {
		display: block;
	}

	.place__map {
		-webkit-box-ordinal-group: 1;
		-webkit-order: 0;
		-ms-flex-order: 0;
		order: 0;
		width: auto;
		margin: 0 1rem 6rem 1rem;
	}

	.place__content {
		width: auto;
		margin: 0 1rem 6rem 1rem;
	}

	.place__board-list {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.place__board-list-item {
		-webkit-box-flex: 0;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
		margin: 2rem 2rem 0 0;
	}

	.place__board-list-item + .place__board-list-item {
		margin: 2rem 2rem 0 0;
	}

	.place__board-list-text {
		margin-left: 1.5rem;
	}
}

@media only screen and (max-width: 640px) {
	.place__content-title {
		text-align: center;
	}

	.place__content-address {
		padding: 6rem 0 0 0;
		text-align: center;
	}

	.place__content-address:before {
		left: 50%;
		top: 0;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
	}
}

@media only screen and (max-width: 360px) {
	.place__board-list {
		display: block;
	}

	.place__board-list-item {
		margin: 0;
	}

	.place__board-list-item + .place__board-list-item {
		margin: 0;
		margin-top: 1rem;
	}
}

.plan {
	padding: 6rem 0 0 0;
}

.plan__head {
	margin: 6rem 0 0 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.plan__head-text {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: -webkit-calc(50% - 1rem);
	width: calc(50% - 1rem);
	line-height: 1.8;
}

.plan__head-text :first-child {
	margin-top: 0;
}

.plan__head-text :last-child {
	margin-bottom: 0;
}

.plan__head-button {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: -webkit-calc(50% - 1rem);
	width: calc(50% - 1rem);
	margin: 0 0 0 2rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.plan__head-button > * {
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
}

.plan__head-button span {
	display: inline-block;
	vertical-align: top;
	padding: 1.2rem 2rem;
	font-size: 1.3rem;
	font-weight: var(--medium);
	text-transform: uppercase;
}

.plan__box {
	margin: 6rem 0 0 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.plan__secton {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: -webkit-calc(50% - 1rem);
	width: calc(50% - 1rem);
	padding: 4rem;
	background-color: var(--grey);
}

.plan__secton-title {
	margin: 0;
	font-size: 2.4rem;
	font-weight: var(--medium);
	text-transform: uppercase;
}

.plan__secton-tabs {
	margin: 2rem 0 0 0;
}

.plan__secton-tabs-buttons {
	margin: 2rem 0 0 0;
}

.plan__secton-tabs-buttons button {
	display: inline-block;
	vertical-align: top;
	padding: 0;
	border: none;
	outline: 0;
	text-decoration: none;
	background-color: transparent;
	cursor: pointer;
	margin: 1rem 3rem 0 0;
	font-family: inherit;
	font-size: 1.4rem;
	font-weight: var(--medium);
	text-transform: uppercase;
	opacity: 0.3;
	color: #fff;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.plan__secton-tabs-buttons button:active,
.plan__secton-tabs-buttons button:hover {
	opacity: 1;
}

.plan__secton-tabs-buttons button.active {
	opacity: 1;
	-webkit-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}

.section {
	margin: 4rem 0 0 0;
	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;
}

.section__scheme {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}

.section__scheme table {
	border-collapse: separate;
	border-spacing: 1rem;
	line-height: 1;
	padding: 1rem 0 1rem 1rem;
	margin: 0 5rem 0 0;
	background-color: #fff;
	color: #000;
	border: 1px solid #cdcdcd;
}

.section__scheme table tr:after {
	content: attr(data-floor);
	position: absolute;
	padding: 0.5rem 0.8rem;
	margin: 0 0 0 4rem;
	font-size: 1.3rem;
	font-weight: var(--medium);
	color: var(--text);
}

.section__scheme table tr td {
	position: relative;
	padding: 0.5rem 0.8rem;
	border: 1px solid #cdcdcd;
	text-align: center;
	vertical-align: middle;
}

.section__scheme table tr td[data-status="reserve"] {
	background-color: #cdcdcd;
	border-color: #cdcdcd;
}

.section__scheme table tr td[data-status="busy"] {
	background-color: var(--orange);
	border-color: var(--orange);
}

.section__scheme table tr td[data-status="placeholder"] {
	background-color: #fff;
	border-color: #fff;
	pointer-events: none;
}

.section__scheme table tr td:active > .section__tooltip,
.section__scheme table tr td:hover > .section__tooltip {
	visibility: visible;
	opacity: 1;
}

.section__scheme table tr td a {
	display: block;
	margin: -0.5rem -0.8rem;
	padding: 0.5rem 0.8rem;
	text-decoration: none;
	color: inherit;
}

.section__tooltip {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, -webkit-calc(-100% - 2rem));
	-ms-transform: translate(-50%, calc(-100% - 2rem));
	transform: translate(-50%, calc(-100% - 2rem));
	width: 20rem;
	padding: 2rem 1rem;
	background-color: #fff;
	-webkit-box-shadow: 0 0 3rem 0 rgba(217, 155, 98, 0.4);
	box-shadow: 0 0 3rem 0 rgba(217, 155, 98, 0.4);
	-webkit-transition: opacity 0.5s ease;
	-o-transition: opacity 0.5s ease;
	transition: opacity 0.5s ease;
}

.section__tooltip:before {
	content: "";
	position: absolute;
	z-index: -1;
	right: 50%;
	bottom: 0;
	-webkit-transform: translate(50%, 100%);
	-ms-transform: translate(50%, 100%);
	transform: translate(50%, 100%);
	border: 1rem solid transparent;
	border-top-color: #fff;
}

.section__tooltip-img {
	margin: 0;
}

.section__tooltip-img img {
	display: inline-block;
	vertical-align: top;
	max-width: 100%;
	width: auto;
	height: auto;
}

.section__tooltip-title {
	margin: 1rem 0 0 0;
	font-size: 1.6rem;
	font-weight: var(--medium);
}

.section__tooltip-text {
	margin: 1rem 0 0 0;
	font-size: 1.6rem;
}

.section__description {
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	margin: 1.5rem 0 0 2rem;
}

.section__description-item {
	margin: 1rem 0 0 0;
	padding: 0 0 0 3.5rem;
	-webkit-background-size: 2.6rem 2.6rem;
	background-size: 2.6rem 2.6rem;
	background-position: 0 0;
	background-repeat: no-repeat;
}

.section__description-item[data-status="reserve"] {
	background-image: -webkit-gradient(linear, left top, left bottom, from(#cdcdcd), to(#cdcdcd));
	background-image: -webkit-linear-gradient(#cdcdcd, #cdcdcd);
	background-image: -o-linear-gradient(#cdcdcd, #cdcdcd);
	background-image: linear-gradient(#cdcdcd, #cdcdcd);
}

.section__description-item[data-status="busy"] {
	background-image: -webkit-gradient(linear, left top, left bottom, from(var(--orange)), to(var(--orange)));
	background-image: -webkit-linear-gradient(var(--orange), var(--orange));
	background-image: -o-linear-gradient(var(--orange), var(--orange));
	background-image: linear-gradient(var(--orange), var(--orange));
}

.plan__img {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: -webkit-calc(50% - 1rem);
	width: calc(50% - 1rem);
	margin: 0 0 0 2rem;

	background: no-repeat center center;
	background-size: cover;
}

.plan__img img {
	display: inline-block;
	vertical-align: top;
	max-width: 100%;
	width: auto;
	height: auto;
}

.section__popup {
	background-color: #fff;
	color: #000;
	max-width: 1170px;
	margin: 0 auto;
	padding: 5rem 5%;
}

.section__popup-title {
	margin: 0;
	font-size: 4.8rem;
	text-transform: uppercase;
}

.section__popup-title sup {
	top: 0;
	display: inline-block;
	vertical-align: top;
	font-size: 1.3rem;
	color: var(--orange);
}

.section__popup-box {
	/*margin: 5rem 0 0 0;*/
	/* margin: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex; */
}

.section__popup-tabs {
	/* -webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto; */
	/* width: 47.5%; */
}

.section__popup-tabs-buttons {
	margin: 2rem 0 4rem 0;
}

.section__popup-tabs-buttons button {
	display: inline-block;
	vertical-align: top;
	padding: 0;
	border: none;
	outline: 0;
	text-decoration: none;
	background-color: transparent;
	cursor: pointer;
	margin: 1rem 3rem 0 0;
	padding: 0.5rem 0;
	font-family: inherit;
	font-size: 1.3rem;
	font-weight: var(--medium);
	text-transform: uppercase;
	border-bottom: 2px solid transparent;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.section__popup-tabs-buttons button:active,
.section__popup-tabs-buttons button:hover {
	color: var(--orange);
}

.section__popup-tabs-buttons button.active {
	color: var(--orange);
	border-bottom-color: currentColor;
}

.section__popup-tabs-item {
	display: flex;
	align-items: flex-start;
}

.section__popup-tabs-item img {
	max-width: 100%;
	width: auto;
	height: auto;
}

.section__popup-content {
	margin-left: 2%;
	width: 40%;
}

.one__flat-img {
	width: 58%;
}

.one__flat-img,
.floor__plan-img {
	position: relative;
}

.one__flat-img:before,
.floor__plan-img:before {
	position: absolute;
	content: "";
	width: 100px;
	height: 100px;
	background: url("../images/compass.svg") no-repeat;
	top: 0px;
	right: 0px;
}

.section__popup-data {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.section__popup-data-item {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: -webkit-calc(50% - 2rem);
	width: calc(50% - 2rem);
	margin: 0 1rem 4rem 1rem;
}

.section__popup-data-title {
	margin: 0;
	font-size: 1.3rem;
	font-weight: var(--medium);
	text-transform: uppercase;
}

.section__popup-data-text {
	margin: 1rem 0 0 0;
	font-size: 2.4rem;
}

.section__popup-board {
	margin: 3rem 0 0 0;
	padding: 3rem;
	background-color: #ecf8ff;
}

.section__popup-board-title {
	margin: 0;
	font-size: 2.4rem;
	font-weight: var(--medium);
}

.section__popup-board-content {
	margin: 3rem 0 0 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.section__popup-board-text {
	margin: 0;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 47.5%;
}

.section__popup-board-price {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 47.5%;
	margin: 0 0 0 5%;
	font-size: 2.4rem;
	font-weight: var(--medium);
}

.section__popup-board-button {
	margin: 1rem 0 0 0;
	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;
}

.section__popup-board-button > * {
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	-webkit-flex-basis: 45%;
	-ms-flex-preferred-size: 45%;
	flex-basis: 45%;
	margin-top: 2rem;
	margin-right: 5%;
	text-align: center;
}

@media only screen and (max-width: 768px) {
	.section__popup-title {
		font-size: 3.8rem;
	}

	.section__popup-box {
		display: block;
	}

	.section__popup-tabs {
		width: auto;
	}

	.section__popup-content {
		width: auto;
		margin: 6rem 0 0 0;
	}
}

@media only screen and (max-width: 640px) {
	.plan__head {
		display: block;
	}

	.plan__head-text {
		width: auto;
		text-align: center;
	}

	.plan__head-button {
		width: auto;
		margin: 4rem 0 0 0;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.plan__box {
		display: block;
	}

	.plan__secton {
		width: auto;
	}

	.plan__img {
		width: auto;
		margin: 4rem 0 0 0;
		text-align: center;
	}

	.section__popup-title {
		font-size: 2.8rem;
	}
}

@media only screen and (max-width: 480px) {
	.section__popup-title {
		font-size: 2.4rem;
	}

	.section__popup-board-content {
		display: block;
	}

	.section__popup-board-text {
		width: auto;
	}

	.section__popup-board-price {
		margin: 1rem 0 0 0;
		width: auto;
	}
}

.report {
	padding: 6rem 0 0;
}

.report__head {
	margin: 6rem -1rem 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.report__head-subtitle {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: -webkit-calc(33.3333% - 2rem);
	width: calc(33.3333% - 2rem);
	margin: 0 1rem;
	font-size: 2.4rem;
	font-weight: var(--medium);
	text-transform: uppercase;
}

.report__head-subtitle :first-child {
	margin-top: 0;
}

.report__head-subtitle :last-child {
	margin-bottom: 0;
}

.report__head-text {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: -webkit-calc(33.3333% - 2rem);
	width: calc(33.3333% - 2rem);
	margin: 0 1rem;
	line-height: 1.8;
}

.report__head-text :first-child {
	margin-top: 0;
}

.report__head-text :last-child {
	margin-bottom: 0;
}

.report__head-button {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: -webkit-calc(33.3333% - 2rem);
	width: calc(33.3333% - 2rem);
	margin: 0 1rem;
}

.report__gallery {
	margin: 4rem 0 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.report__gallery.owl-carousel {
	display: block;
	width: auto;
	position: relative;
}

.report__gallery.owl-carousel:active .owl-nav,
.report__gallery.owl-carousel:hover .owl-nav {
	opacity: 1;
}

.report__gallery.owl-carousel .owl-stage {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.report__gallery.owl-carousel .owl-stage .owl-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}

.report__gallery.owl-carousel .owl-stage .owl-item .report__gallery-item {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 100%;
}

.report__gallery.owl-carousel .owl-nav {
	-webkit-transition: opacity 0.5s ease;
	-o-transition: opacity 0.5s ease;
	transition: opacity 0.5s ease;
	opacity: 0;
}

.report__gallery.owl-carousel .owl-nav .owl-next,
.report__gallery.owl-carousel .owl-nav .owl-prev {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 5rem;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background-color: rgba(236, 248, 255, 0.6);
}

.report__gallery.owl-carousel .owl-nav .owl-next:active:before,
.report__gallery.owl-carousel .owl-nav .owl-next:hover:before,
.report__gallery.owl-carousel .owl-nav .owl-prev:active:before,
.report__gallery.owl-carousel .owl-nav .owl-prev:hover:before {
	border-color: var(--orange);
}

.report__gallery.owl-carousel .owl-nav .owl-next:before,
.report__gallery.owl-carousel .owl-nav .owl-prev:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 2.6rem;
	height: 2.6rem;
	border-left: 0.5rem solid #fff;
	border-bottom: 0.5rem solid #fff;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.report__gallery.owl-carousel .owl-nav .owl-prev {
	left: 0;
}

.report__gallery.owl-carousel .owl-nav .owl-prev:before {
	left: 60%;
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	-ms-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
}

.report__gallery.owl-carousel .owl-nav .owl-next {
	right: 0;
}

.report__gallery.owl-carousel .owl-nav .owl-next:before {
	left: 40%;
	-webkit-transform: translate(-50%, -50%) rotate(-135deg);
	-ms-transform: translate(-50%, -50%) rotate(-135deg);
	transform: translate(-50%, -50%) rotate(-135deg);
}

.report__gallery-item {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 25%;
	padding: 2rem;
	min-height: 19rem;
	color: #fff;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
	cursor: pointer;
}

.report__gallery-img {
	margin: 0;
	position: absolute;
	z-index: -1;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}

.report__gallery-img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.report__gallery-img:before {
	content: "";
	position: absolute;
	z-index: 0;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: var(--orange);
	opacity: 0.3;
}

.report__gallery-title {
	margin: 0;
	font-size: 1.4rem;
	font-weight: var(--medium);
	text-transform: uppercase;
}

.report__gallery-text {
	margin: 0.5rem 0 0;
	font-size: 1.6rem;
	font-weight: var(--medium);
}

.report__gallery-links {
	visibility: hidden;
}

.report__history {
	background-color: var(--grey);
	color: #000;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	border-radius: 0 0 10px 10px;
}

.report__history-img {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 30%;
	/* margin: 0 0 -5rem 10%; */
}

.report__history-img img {
	display: inline-block;
	vertical-align: top;
	max-width: 100%;
	width: auto;
	height: auto;
}

.report__history-content {
	-webkit-box-ordinal-group: 0;
	-webkit-order: -1;
	-ms-flex-order: -1;
	order: -1;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 60%;
	padding: 3rem 10rem;
}

.report__history-title {
	margin: 0;
	font-size: 2.4rem;
	font-weight: var(--medium);
	text-transform: uppercase;
}

.report__history-slider {
	margin: 4rem 0 0 0;
}

.report__history-slider.owl-carousel {
	position: relative;
}

.report__history-slider.owl-carousel .owl-nav {
	position: absolute;
	right: -6rem;
	left: -6rem;
	top: 50%;
}

.report__history-slider.owl-carousel .owl-nav .owl-next,
.report__history-slider.owl-carousel .owl-nav .owl-prev {
	position: absolute;
	top: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 2.6rem;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.report__history-slider.owl-carousel .owl-nav .owl-next:active:before,
.report__history-slider.owl-carousel .owl-nav .owl-next:hover:before,
.report__history-slider.owl-carousel .owl-nav .owl-prev:active:before,
.report__history-slider.owl-carousel .owl-nav .owl-prev:hover:before {
	border-color: var(--orange);
}

.report__history-slider.owl-carousel .owl-nav .owl-next:before,
.report__history-slider.owl-carousel .owl-nav .owl-prev:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 2.6rem;
	height: 2.6rem;
	border-left: 0.5rem solid var(--orange);
	border-bottom: 0.5rem solid var(--orange);
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.report__history-slider.owl-carousel .owl-nav .owl-prev {
	left: 0;
}

.report__history-slider.owl-carousel .owl-nav .owl-prev:before {
	left: 60%;
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	-ms-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
}

.report__history-slider.owl-carousel .owl-nav .owl-next {
	right: 0;
}

.report__history-slider.owl-carousel .owl-nav .owl-next:before {
	left: 40%;
	-webkit-transform: translate(-50%, -50%) rotate(-135deg);
	-ms-transform: translate(-50%, -50%) rotate(-135deg);
	transform: translate(-50%, -50%) rotate(-135deg);
}

.report__history-item + .report__history-item {
	margin-top: 2rem;
}

.report__history-item-title {
	margin: 0;
	font-size: 1.4rem;
	font-weight: var(--medium);
	text-transform: uppercase;
}

.report__history-item-text {
	margin: 1rem 0 0 0;
	line-height: 1.8;
}

.report__history-item-text :first-child {
	margin-top: 0;
}

.report__history-item-text :last-child {
	margin-bottom: 0;
}

.report__history-progress {
	margin: 3rem 0 0 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.report__history-progress-title {
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	margin: 0 3rem 0 0;
	font-size: 1.4rem;
	font-weight: var(--medium);
	text-transform: uppercase;
}

.report__history-progress-bar {
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	max-width: 33rem;
	width: 100%;
	height: 3.2rem;
	margin: 1rem 0;
	border: 0.5rem solid rgba(255, 255, 255, 0);
	-webkit-box-shadow: 0 0 0 2px var(--orange);
	box-shadow: 0 0 0 2px var(--orange);
	background-image: -webkit-gradient(linear, left top, left bottom, from(var(--orange)), to(var(--orange)));
	background-image: -webkit-linear-gradient(var(--orange), var(--orange));
	background-image: -o-linear-gradient(var(--orange), var(--orange));
	background-image: linear-gradient(var(--orange), var(--orange));
	background-position: 0 0;
	background-repeat: no-repeat;
}

.report__history-deadline {
	margin: 1rem 0 0 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.report__history-deadline-title {
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	margin: 0 3rem 0 0;
	font-size: 1.4rem;
	font-weight: var(--medium);
	text-transform: uppercase;
}

.report__history-deadline-date {
	font-size: 4.2rem;
	font-weight: var(--medium);
	color: var(--orange);
}

.report__history-img h3 {
	margin-bottom: 0;
}

.report__percent {
	font-weight: var(--medium);
	font-size: 152px;
	color: var(--orange);
	letter-spacing: -10px;
	line-height: 140px;
}

@media only screen and (max-width: 992px) {
	.report__head-subtitle {
		width: -webkit-calc(100% - 2rem);
		width: calc(100% - 2rem);
		margin: 0 1rem 2rem;
	}

	.report__head-text {
		width: -webkit-calc(50% - 2rem);
		width: calc(50% - 2rem);
	}

	.report__head-button {
		width: -webkit-calc(50% - 2rem);
		width: calc(50% - 2rem);
	}

	.report__gallery-item {
		width: 33.3333%;
	}
}

@media only screen and (max-width: 768px) {
	.report__gallery-item {
		width: 50%;
	}

	.report__history-content {
		padding: 3rem 7rem;
	}

	.report__history-slider.owl-carousel .owl-nav {
		right: -5rem;
		left: -5rem;
	}
}

@media only screen and (max-width: 640px) {
	.report__head {
		display: block;
		text-align: center;
	}

	.report__head-subtitle {
		width: auto;
		margin: 2rem 1rem 0;
	}

	.report__head-text {
		width: auto;
		margin: 2rem 1rem 0;
	}

	.report__head-button {
		width: auto;
		margin: 2rem 1rem 0;
	}

	.report__history {
		display: block;
	}

	.report__history-img {
		width: auto;
		margin: 0 3%;
	}

	.report__history-content {
		width: auto;
		margin: 5rem 0 0 0;
	}
}

@media only screen and (max-width: 480px) {
	.report__gallery {
		display: block;
	}

	.report__gallery-item {
		width: auto;
	}

	.report__history-content {
		padding: 3rem 2.5rem;
	}

	.report__history-title {
		padding: 0 8rem 0 0;
	}

	.report__history-slider.owl-carousel .owl-nav {
		margin: -7.5rem 0 0 0;
		position: absolute;
		left: auto;
		top: 0;
		right: 0;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}

	.report__history-slider.owl-carousel .owl-nav .owl-next,
	.report__history-slider.owl-carousel .owl-nav .owl-prev {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 auto;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		position: relative;
		top: auto;
		height: 2.6rem;
		margin: 0 0.5rem;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

.buy {
	padding: 6rem 0 0 0;
}

.buy__top {
	margin: 6rem 0 0 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.buy__top-left {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 60%;
	padding: 4rem;
	border: 2rem solid var(--orange);
	-webkit-box-shadow: inset 0 0 0 0.4rem #fff;
	box-shadow: inset 0 0 0 0.4rem #fff;
	background-color: var(--orange);
	color: #fff;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.buy__top-left-content {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 60%;
}

.buy__top-left-title {
	margin: 0;
	font-size: 2.4rem;
	line-height: 1.4;
	font-weight: var(--medium);
	text-transform: uppercase;
}

.buy__top-left-text {
	margin: 1rem 0 0 0;
	line-height: 1.8;
}

.buy__top-left-text :first-child {
	margin-top: 0;
}

.buy__top-left-text :last-child {
	margin-bottom: 0;
}

.buy__top-left-button {
	margin: 2.5rem 0 0 0;
}

.buy__top-left-img {
	-webkit-align-self: flex-end;
	-ms-flex-item-align: end;
	align-self: flex-end;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: -webkit-calc(35% + 9rem);
	width: calc(35% + 9rem);
	margin: -12rem -9rem -6rem 5%;
	text-align: right;
}

.buy__top-left-img img {
	display: inline-block;
	vertical-align: top;
	max-width: 100%;
	width: auto;
	height: auto;
}

.buy__top-right {
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	align-self: center;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 30%;
	margin: 0 0 0 10%;
}

.buy__top-right-icon {
	margin: 0;
}

.buy__top-right-icon img {
	display: inline-block;
	vertical-align: top;
	max-width: 100%;
	width: auto;
	height: auto;
}

.buy__top-right-text {
	margin: 2rem 0 0 0;
	line-height: 1.8;
}

.buy__top-right-text :first-child {
	margin-top: 0;
}

.buy__top-right-text :last-child {
	margin-bottom: 0;
}

.buy__top-right-button {
	margin: 2.5rem 0 0 0;
}

.buy__variants {
	margin: 6rem 0 0 0;
}

.buy__variants-title {
	margin: 0;
	font-size: 2.4rem;
	line-height: 1.4;
	font-weight: var(--medium);
	text-transform: uppercase;
}

.buy__variants-box {
	counter-reset: counter-variants;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.buy__variants-item {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: -webkit-calc(50% - 8rem);
	width: calc(50% - 8rem);
	margin: 5rem 4rem 0 4rem;
	padding: 0 0 0 3.5rem;
	counter-increment: counter-variants;
	position: relative;
}

.buy__variants-item:before {
	content: counter(counter-variants);
	position: absolute;
	left: 0;
	top: 0;
	font-size: 4.2rem;
	line-height: 1;
	font-weight: var(--medium);

	color: var(--orange);
}

.buy__variants-item-title {
	margin: 0;
	font-size: 1.4rem;
	font-weight: var(--medium);
	text-transform: uppercase;
}

.buy__variants-item-text {
	margin: 1rem 0 0 0;
}

@media only screen and (max-width: 768px) {
	.buy__top {
		display: block;
	}

	.buy__top-left {
		width: auto;
	}

	.buy__top-right {
		width: auto;
		margin: 6rem 0 0 0;
	}

	.buy__variants-item {
		width: -webkit-calc(50% - 4rem);
		width: calc(50% - 4rem);
		margin: 5rem 2rem 0 2rem;
	}
}

@media only screen and (max-width: 640px) {
	.buy__top-right {
		text-align: center;
	}

	.buy__variants-box {
		display: block;
	}

	.buy__variants-item {
		width: auto;
		margin: 5rem 0 0 0;
	}
}

@media only screen and (max-width: 480px) {
	.buy__top-left {
		display: block;
	}

	.buy__top-left-content {
		width: auto;
		text-align: center;
	}

	.buy__top-left-img {
		width: auto;
		margin: 5rem 0 -6rem 0;
		text-align: center;
	}
}

.document {
	padding: 6rem 0 0 0;
}

.document__box {
	margin: 6rem 0 0 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.document__content {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 45%;
}

.document__content-title {
	margin: 0;
	font-size: 3.2rem;
	font-weight: var(--medium);
	color: var(--orange);
	line-height: 1;

	position: relative;
}

.document__content-text {
	margin: 1rem 0 0 0;
	font-size: 1.8rem;
	line-height: 2;
}

.document__content-text :first-child {
	margin-top: 0;
}

.document__content-text :last-child {
	margin-bottom: 0;
}

.document__download {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 50%;
	margin: 0 0 0 5%;
	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;
}

.document__download-item {
	text-decoration: none;
	color: inherit;
	display: block;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: -webkit-calc(50% - 1rem);
	width: calc(50% - 1rem);
	margin: 0 0 2rem 0;
	padding: 5.5rem 7rem 2rem 2rem;
	background-color: var(--grey);
	font-size: 1.3rem;
	font-weight: var(--medium);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	position: relative;
}

.document__download-item:active,
.document__download-item:hover {
	color: var(--orange);
}

.document__download-item:before {
	content: "";
	position: absolute;
	left: 2rem;
	top: 2rem;
	width: 2.2rem;
	height: 2.6rem;
	background-image: url("../images/doc.svg");
	background-position: 50% 50%;
	-webkit-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
}

.document__download-item:after {
	content: "";
	position: absolute;
	right: 2rem;
	bottom: 2rem;
	width: 4.2rem;
	height: 3.2rem;
	background-image: url("../images/download.svg");
	background-position: 50% 50%;
	-webkit-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
}

@media only screen and (max-width: 992px) {
	.document__box {
		display: block;
	}

	.document__content {
		width: auto;
	}

	.document__download {
		width: auto;
		margin: 6rem 0 0 0;
	}

	.document__download-item {
		width: -webkit-calc(33.3333% - 1.3333rem);
		width: calc(33.3333% - 1.3333rem);
	}
}

@media only screen and (max-width: 640px) {
	.document__download-item {
		width: -webkit-calc(50% - 1rem);
		width: calc(50% - 1rem);
	}
}

@media only screen and (max-width: 480px) {
	.document__download {
		display: block;
	}

	.document__download-item {
		width: auto;
	}
}

.footer {
	padding: 0 0 6rem 0;
}

.footer__box {
	margin: 6rem 0 0 0;
	border-top: 0.1rem solid var(--orange);
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.footer__copy {
	order: -1;
	flex: 0 0 auto;
	margin: 4rem 0 0 0;
}

.footer__copy a {
	color: inherit;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	opacity: 0.7;
	text-decoration: none;
	font-size: 1.4rem;
}

.footer__copy a:active,
.footer__copy a:hover {
	color: var(--orange);
}

.footer__contacts {
	flex: 0 0 auto;
	margin: 2.5rem 0 0 2.5%;
	padding: 0 0 0 6rem;
	position: relative;
}

.footer__contacts-icon {
	position: absolute;
	left: 0.5rem;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 3.1rem;
	height: 4.7rem;
}

.footer__contacts-icon svg {
	display: inline-block;
	vertical-align: top;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	fill: var(--orange);
}

.footer__contacts-title {
	margin: 0;
	font-size: 1.5rem;
	font-weight: var(--medium);
	text-transform: uppercase;
	opacity: 0.7;
}

.footer__contacts-text {
	margin: 2rem 0 0 0;
	font-size: 1.5rem;
}

.footer__contacts-text address {
	font-style: normal;
}

.footer__contacts-text a {
	color: inherit;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.footer__contacts-text a:active,
.footer__contacts-text a:hover {
	color: var(--orange);
}

.footer__phones {
	margin-top: 6rem;
}

.footer__phones a[href^="tel:"] {
	text-decoration: none;
	color: var(--text);
	font-size: 1.8rem;
	font-weight: var(--medium);
}

.footer__social {
	flex: 0 0 auto;
	margin: 2.5rem 0 0 2.5%;
}

.footer__social-title {
	margin: 0;
	font-size: 1.5rem;
	font-weight: var(--medium);
	opacity: 0.7;
	text-transform: uppercase;
}

.footer__social-list {
	margin: 2rem 0 0 0;
	padding: 0;
	list-style: none;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.footer__social-list li {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 4rem;
	margin: 0 2rem 1rem 0;
}

.footer__social-list li a {
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.footer__social-list li a img {
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
	width: auto;
	height: auto;
}

.footer__social-list li a:active,
.footer__social-list li a:hover {
	-webkit-filter: saturate(2);
	filter: saturate(2);
}

.footer__author {
	flex: 0 0 auto;
	margin: 5rem 0 0 2.5%;
	font-size: 1.4rem;
}

.footer__author svg {
	fill: var(--orange);
}

.footer__author a {
	color: #fff;
	text-decoration: none;
}

@media only screen and (max-width: 768px) {
	.footer__box {
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.footer__contacts {
		width: 62.5%;
		margin: 2.5rem 0 0 0;
	}

	.footer__social {
		width: 32.5%;
		margin: 2.5rem 0 0 5%;
		text-align: right;
	}

	.footer__social-list {
		-webkit-box-pack: end;
		-webkit-justify-content: flex-end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}

	.footer__social-list li {
		margin: 0 0 1rem 1.5rem;
	}

	.footer__copy {
		-webkit-box-ordinal-group: 1;
		-webkit-order: 0;
		-ms-flex-order: 0;
		order: 0;
		width: 50%;
	}

	.footer__author {
		width: 47.5%;
	}
}

@media only screen and (max-width: 480px) {
	.footer__box {
		display: block;
		text-align: center;
	}

	.footer__contacts {
		width: auto;
		margin: 4rem 0 0 0;
		padding: 6rem 0 0 0;
	}

	.footer__contacts-icon {
		left: 50%;
		top: 0;
		-webkit-transform: translateY(0) translateX(-50%);
		-ms-transform: translateY(0) translateX(-50%);
		transform: translateY(0) translateX(-50%);
	}

	.footer__social {
		margin: 4rem 0 0 0;
		width: auto;
		text-align: inherit;
	}

	.footer__social-list {
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.footer__social-list li {
		margin: 0 0.5rem 1rem 0.5rem;
	}

	.footer__copy {
		margin: 4rem 0 0 0;
		width: auto;
	}

	.footer__author {
		margin: 4rem 0 0 0;
		width: auto;
		text-align: inherit;
	}
}

.pagination {
	position: fixed;
	z-index: 999;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.pagination a {
	display: block;
	width: 0.4rem;
	height: 0.4rem;
	margin: 3rem;
	background-color: var(--orange);
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	position: relative;
}

.pagination a.active {
	width: 6.4rem;
	margin: 3rem 0;
}

@media only screen and (max-width: 1380px) {
	.pagination {
		display: none;
	}

	.header__banner-button {
		display: none;
	}
}

.owl-carousel,
.owl-carousel .owl-item {
	-webkit-tap-highlight-color: transparent;
	position: relative;
}

.owl-carousel {
	display: none;
	width: 100%;
	z-index: 1;
}

.owl-carousel .owl-stage {
	position: relative;
	-ms-touch-action: pan-Y;
	-moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.owl-carousel .owl-stage-outer {
	position: relative;
	overflow: hidden;
	-webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
	min-height: 1px;
	float: left;
	-webkit-backface-visibility: hidden;
	-webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
	display: block;
	width: 100%;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
	display: none;
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
	display: block;
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
	cursor: pointer;
	cursor: hand;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-loading {
	opacity: 0;
	display: block;
}

.owl-carousel.owl-hidden {
	opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
	visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-grab {
	cursor: move;
	cursor: -webkit-grab;
	cursor: grab;
}

.owl-carousel.owl-rtl {
	direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
	float: right;
}

.owl-carousel .animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
	z-index: 0;
}

.owl-carousel .owl-animated-out {
	z-index: 1;
}

.owl-carousel .fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

.owl-height {
	-webkit-transition: height 0.5s ease-in-out;
	-o-transition: height 0.5s ease-in-out;
	transition: height 0.5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
	opacity: 0;
	-webkit-transition: opacity 0.4s ease;
	-o-transition: opacity 0.4s ease;
	transition: opacity 0.4s ease;
}

.owl-carousel .owl-item img.owl-lazy {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
	position: relative;
	height: 100%;
	background: #000;
}

.owl-carousel .owl-video-play-icon {
	position: absolute;
	height: 80px;
	width: 80px;
	left: 50%;
	top: 50%;
	margin-left: -40px;
	margin-top: -40px;
	background: url(owl.video.play.png) no-repeat;
	cursor: pointer;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	-webkit-transition: -webkit-transform 0.1s ease;
	transition: -webkit-transform 0.1s ease;
	-o-transition: transform 0.1s ease;
	transition: transform 0.1s ease;
	transition: transform 0.1s ease, -webkit-transform 0.1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
	-ms-transform: scale(1.3, 1.3);
	-webkit-transform: scale(1.3, 1.3);
	transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
	display: none;
}

.owl-carousel .owl-video-tn {
	opacity: 0;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	-webkit-transition: opacity 0.4s ease;
	-o-transition: opacity 0.4s ease;
	transition: opacity 0.4s ease;
}

.owl-carousel .owl-video-frame {
	position: relative;
	z-index: 1;
	height: 100%;
	width: 100%;
}

.my-mfp-zoom-in .zoom-anim-dialog {
	opacity: 0;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-transform: scale(0.8);
	-ms-transform: scale(0.8);
	transform: scale(0.8);
}

.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
	opacity: 1;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
	-webkit-transform: scale(0.8);
	-ms-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0;
}

.my-mfp-zoom-in.mfp-bg {
	opacity: 0;
	-webkit-transition: opacity 0.3s ease-out;
	-o-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
}

.my-mfp-zoom-in.mfp-ready.mfp-bg {
	opacity: 0.8;
}

.my-mfp-zoom-in.mfp-removing.mfp-bg {
	opacity: 0;
}

.my-mfp-slide-bottom .zoom-anim-dialog {
	opacity: 0;
	-webkit-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	-webkit-transform: translateY(-20px) perspective(600px) rotateX(10deg);
	-ms-transform: translateY(-20px) perspective(600px) rotateX(10deg);
	transform: translateY(-20px) perspective(600px) rotateX(10deg);
}

.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
	opacity: 1;
	-webkit-transform: translateY(0) perspective(600px) rotateX(0);
	-ms-transform: translateY(0) perspective(600px) rotateX(0);
	transform: translateY(0) perspective(600px) rotateX(0);
}

.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
	opacity: 0;
	-webkit-transform: translateY(-10px) perspective(600px) rotateX(10deg);
	-ms-transform: translateY(-10px) perspective(600px) rotateX(10deg);
	transform: translateY(-10px) perspective(600px) rotateX(10deg);
}

.my-mfp-slide-bottom.mfp-bg {
	opacity: 0;
	-webkit-transition: opacity 0.3s ease-out;
	-o-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
}

.my-mfp-slide-bottom.mfp-ready.mfp-bg {
	opacity: 0.8;
}

.my-mfp-slide-bottom.mfp-removing.mfp-bg {
	opacity: 0;
}

.mfp-bg {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1042;
	overflow: hidden;
	position: fixed;
	background: #0b0b0b;
	opacity: 0.8;
}

.mfp-wrap {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1043;
	position: fixed;
	outline: 0 !important;
	-webkit-backface-visibility: hidden;
}

.mfp-container {
	text-align: center;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	padding: 0 8px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.mfp-container:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
	display: none;
}

.mfp-content {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin: 0 auto;
	text-align: left;
	z-index: 1045;
}

.mfp-ajax-holder .mfp-content,
.mfp-inline-holder .mfp-content {
	width: 100%;
	cursor: auto;
}

.mfp-ajax-cur {
	cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
	cursor: -webkit-zoom-out;
	cursor: zoom-out;
}

.mfp-zoom {
	cursor: pointer;
	cursor: -webkit-zoom-in;
	cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
	cursor: auto;
}

.mfp-arrow,
.mfp-close,
.mfp-counter,
.mfp-preloader {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.mfp-loading.mfp-figure {
	display: none;
}

.mfp-hide {
	display: none !important;
}

.mfp-preloader {
	color: #ccc;
	position: absolute;
	top: 50%;
	width: auto;
	text-align: center;
	margin-top: -0.8em;
	left: 8px;
	right: 8px;
	z-index: 1044;
}

.mfp-preloader a {
	color: #ccc;
}

.mfp-preloader a:hover {
	color: #fff;
}

.mfp-s-ready .mfp-preloader {
	display: none;
}

.mfp-s-error .mfp-content {
	display: none;
}

button.mfp-arrow,
button.mfp-close {
	overflow: visible;
	cursor: pointer;
	background: 0 0;
	border: 0;
	-webkit-appearance: none;
	display: block;
	outline: 0;
	padding: 0;
	z-index: 1046;
	-webkit-box-shadow: none;
	box-shadow: none;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

.mfp-close {
	width: 44px;
	height: 44px;
	line-height: 44px;
	position: absolute;
	right: 0;
	top: 0;
	text-decoration: none;
	text-align: center;
	opacity: 0.65;
	padding: 0 0 18px 10px;
	color: #fff;
	font-style: normal;
	font-size: 28px;
	font-family: Arial, Baskerville, monospace;
}

.mfp-close:focus,
.mfp-close:hover {
	opacity: 1;
}

.mfp-close:active {
	top: 1px;
}

.mfp-close-btn-in .mfp-close {
	color: #333;
}

.mfp-iframe-holder .mfp-close,
.mfp-image-holder .mfp-close {
	color: #fff;
	right: -6px;
	text-align: right;
	padding-right: 6px;
	width: 100%;
}

.mfp-counter {
	position: absolute;
	top: 0;
	right: 0;
	color: #ccc;
	font-size: 12px;
	line-height: 18px;
	white-space: nowrap;
}

.mfp-arrow {
	position: absolute;
	opacity: 0.65;
	margin: 0;
	top: 50%;
	margin-top: -55px;
	padding: 0;
	width: 90px;
	height: 110px;
	-webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
	margin-top: -54px;
}

.mfp-arrow:focus,
.mfp-arrow:hover {
	opacity: 1;
}

.mfp-arrow:after,
.mfp-arrow:before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	left: 0;
	top: 0;
	margin-top: 35px;
	margin-left: 35px;
	border: medium inset transparent;
}

.mfp-arrow:after {
	border-top-width: 13px;
	border-bottom-width: 13px;
	top: 8px;
}

.mfp-arrow:before {
	border-top-width: 21px;
	border-bottom-width: 21px;
	opacity: 0.7;
}

.mfp-arrow-left {
	left: 0;
}

.mfp-arrow-left:after {
	border-right: 17px solid #fff;
	margin-left: 31px;
}

.mfp-arrow-left:before {
	margin-left: 25px;
	border-right: 27px solid #3f3f3f;
}

.mfp-arrow-right {
	right: 0;
}

.mfp-arrow-right:after {
	border-left: 17px solid #fff;
	margin-left: 39px;
}

.mfp-arrow-right:before {
	border-left: 27px solid #3f3f3f;
}

.mfp-iframe-holder {
	padding-top: 40px;
	padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
	line-height: 0;
	width: 100%;
	max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
	top: -40px;
}

.mfp-iframe-scaler {
	width: 100%;
	height: 0;
	overflow: hidden;
	padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	background: #000;
}

img.mfp-img {
	width: auto;
	max-width: 100%;
	height: auto;
	display: block;
	line-height: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 40px 0 40px;
	margin: 0 auto;
}

.mfp-figure {
	line-height: 0;
}

.mfp-figure:after {
	content: "";
	position: absolute;
	left: 0;
	top: 40px;
	bottom: 40px;
	display: block;
	right: 0;
	width: auto;
	height: auto;
	z-index: -1;
	-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	background: #444;
}

.mfp-figure small {
	color: #bdbdbd;
	display: block;
	font-size: 12px;
	line-height: 14px;
}

.mfp-figure figure {
	margin: 0;
}

.mfp-bottom-bar {
	margin-top: -36px;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	cursor: auto;
}

.mfp-title {
	text-align: left;
	line-height: 18px;
	color: #f3f3f3;
	word-wrap: break-word;
	padding-right: 36px;
}

.mfp-image-holder .mfp-content {
	max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
	cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
	.mfp-img-mobile .mfp-image-holder {
		padding-left: 0;
		padding-right: 0;
	}

	.mfp-img-mobile img.mfp-img {
		padding: 0;
	}

	.mfp-img-mobile .mfp-figure:after {
		top: 0;
		bottom: 0;
	}

	.mfp-img-mobile .mfp-figure small {
		display: inline;
		margin-left: 5px;
	}

	.mfp-img-mobile .mfp-bottom-bar {
		background: rgba(0, 0, 0, 0.6);
		bottom: 0;
		margin: 0;
		top: auto;
		padding: 3px 5px;
		position: fixed;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}

	.mfp-img-mobile .mfp-bottom-bar:empty {
		padding: 0;
	}

	.mfp-img-mobile .mfp-counter {
		right: 5px;
		top: 3px;
	}

	.mfp-img-mobile .mfp-close {
		top: 0;
		right: 0;
		width: 35px;
		height: 35px;
		line-height: 35px;
		background: rgba(0, 0, 0, 0.6);
		position: fixed;
		text-align: center;
		padding: 0;
	}
}

@media all and (max-width: 900px) {
	.mfp-arrow {
		-webkit-transform: scale(0.75);
		-ms-transform: scale(0.75);
		transform: scale(0.75);
	}

	.mfp-arrow-left {
		-webkit-transform-origin: 0;
		-ms-transform-origin: 0;
		transform-origin: 0;
	}

	.mfp-arrow-right {
		-webkit-transform-origin: 100%;
		-ms-transform-origin: 100%;
		transform-origin: 100%;
	}

	.mfp-container {
		padding-left: 6px;
		padding-right: 6px;
	}
}

@media only screen and (max-width: 1200px) {
	html {
		font-size: 9px;
	}
}

@media only screen and (max-width: 640px) {
	.subtitle,
	.title {
		text-align: center;
	}

	h1.title {
		background-position: 50% 100%;
	}
}

.special__box__full-text a {
	color: var(--orange);
}

.gallery {
	padding: 6rem 0 0 0;
}

.project-gallery {
	margin: 2rem 0 4rem 0;
	position: relative;
}

.gallery.otdelka {
	margin-top: 10rem;
}

.project-gallery.owl-carousel .owl-nav {
	position: absolute;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	top: 40%;
	width: 100%;
}

.project-gallery.owl-carousel .owl-nav .owl-next,
.project-gallery.owl-carousel .owl-nav .owl-prev {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 4rem;
	height: 4rem;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	position: relative;
	position: absolute;
}

.project-gallery.owl-carousel .owl-nav .owl-next:before,
.project-gallery.owl-carousel .owl-nav .owl-prev:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1.8rem;
	height: 1.8rem;
	border-left: 0.2rem solid var(--orange);
	border-bottom: 0.2rem solid var(--orange);
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.project-gallery.owl-carousel .owl-nav .owl-prev {
	left: -40px;
	margin-right: 0.2rem;
}

.project-gallery.owl-carousel .owl-nav .owl-prev:before {
	left: 60%;
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	-ms-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
}

.project-gallery.owl-carousel .owl-nav .owl-next {
	right: -40px;
	margin-left: 0.2rem;
}

.project-gallery.owl-carousel .owl-nav .owl-next:before {
	left: 40%;
	-webkit-transform: translate(-50%, -50%) rotate(-135deg);
	-ms-transform: translate(-50%, -50%) rotate(-135deg);
	transform: translate(-50%, -50%) rotate(-135deg);
}

.project-gallery-item {
	/* height: 420px; */
	padding-top: 100%;
	background-size: cover !important;
	background-repeat: no-repeat;
	background-position: 50%;
	/*margin: 0 40px 20px 0;*/
	cursor: pointer;
	position: relative;
	margin: 0;
	border-radius: 10px;
}

.project-gallery-item:before {
	content: "";
	display: block;
	background-color: var(--orange);
	opacity: 0.2;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.project-gallery-item {
	font-size: 2rem;
}

.features {
	padding: 6rem 0 0 0;
}

.features__box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.features__item {
	width: 50%;
	height: 500px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding-top: 48px;
	overflow: hidden;
}

.features__item:nth-child(odd) {
	padding-right: 20px;
}

.features__item:nth-child(2n) {
	padding-left: 20px;
}

@media screen and (max-width: 650px) {
	.features__item {
		width: 100%;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
}

.features__item-wrapper {
	cursor: pointer;
	height: 100%;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}

.features__item-img {
	-webkit-transition: all 0.3s cubic-bezier(0.8, 1.21, 0.77, 1.06);
	transition: all 0.3s cubic-bezier(0.8, 1.21, 0.77, 1.06);
}

.features__item-wrapper:hover .features__item-img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.features__item-img {
	position: relative;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	border-radius: 10px;
}

.features__item-text {
	font-weight: var(--medium);
	color: #fff;
	position: absolute;
	left: 40px;
	bottom: 40px;
	z-index: 2;
	max-width: 400px;
}

.features__item-text h3 {
	font-size: 2.4rem;
	line-height: 3.6rem;
}

.features__item-text p {
	margin-top: 2rem;
	font-size: 2rem;
}

.features__item-gradient {
	position: absolute;
	height: 100%;
	width: 100%;
	bottom: 0;
	z-index: 1;
	opacity: 1;
	transition: background 0.3s cubic-bezier(0.8, 1.21, 0.77, 1.06);
	background: rgba(0, 0, 0, 0.2);
	border-radius: 20px;
}

.features__item:hover .features__item-gradient {
	background: rgba(0, 0, 0, 0.5);
}

.features__item-arrow {
	position: absolute;
	width: 40px;
	height: 40px;
	right: 40px;
	bottom: 50px;
	z-index: 2;
	-webkit-transition: all 0.3s cubic-bezier(0.8, 1.21, 0.77, 1.06);
	transition: all 0.3s cubic-bezier(0.8, 1.21, 0.77, 1.06);
	opacity: 0;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	stroke: #78a4bb;
}

.features__item:hover .features__item-arrow {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
	border-radius: 50%;
}

.feature-item__detail {
	display: none;
}

.feature-item__detail h3 {
	font-size: 4rem;
	margin: 0;
}

.feature-item__detail .container {
	max-width: 800px;
}

.feature-item__detail .container img {
	max-width: 100%;
}

.fullview {
	text-align: center;
	margin-bottom: 10rem;
}

.fullview img {
	max-width: 100%;
}

.header__objects-list a {
	color: #ffffff;
}
.section__scheme table tr td[data-status="free"] {
	background-color: #ffffff;
	border-color: #cdcdcd;
}
.section__description-item[data-status="free"] {
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#ffffff));
	background-image: -webkit-linear-gradient(#ffffff, #ffffff);
	background-image: -o-linear-gradient(#ffffff, #ffffff);
	background-image: linear-gradient(#ffffff, #ffffff);
}
.about__advantages-text-title {
	padding: 0 1rem;
}
.about__advantages-text-title:before {
	display: none;
}
#footer-map-cont {
	width: 100%;
	height: 100%;
}
.special {
	padding: 6rem 0 0 0;
}
.special__box {
	margin: 6rem 0 0 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.special__box-item {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: -webkit-calc(33.33% - 2rem);
	width: calc(33.33% - 2rem);
	margin: 0 1rem 6rem 1rem;
}
.special__box-item-image {
	margin: 0;
}
.special__box-item-image img {
	display: inline-block;
	vertical-align: top;
	max-width: 100%;
	width: auto;
	height: auto;
}
.special__box-item-name {
	text-transform: uppercase;

	font-size: 38px;
	line-height: 47px;
	margin: 2rem 0 0 0;
}
.special__box-item-name a {
	text-decoration: none;
	color: #ffffff;
}
.special__box-item-text {
	font-size: 16px;
	line-height: 24px;
	margin: 1rem 0;
}
.special__box-item-objects {
	font-size: 16px;
	line-height: 22px;
}
.special__box-item-objects a {
	color: var(--orange);
}
.special__box__full-image {
	margin: 0 0 2rem;
}
.special__box__full-image img {
	display: inline-block;
	vertical-align: top;
	max-width: 100%;
	width: auto;
	height: auto;
}
.special__box__full-objects {
	margin: 4rem 0 0 0;
}
.special__box__full-objects a {
	color: var(--orange);
}
.special__box__full-back {
	margin: 5rem 0 0 0;
}
.special__box__full-back {
	margin: 5rem 0 0 0;
	text-transform: uppercase;

	font-size: 38px;
	line-height: 47px;
}
.special__box__full-back a {
	color: #ffffff;
	text-decoration: none;
}
.alert {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -150px 0 0 -150px;
	width: 300px;
	padding: 50px;
	text-align: center;
	color: #000;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	background: #fff;
	font-size: 18px;
}
.alert-wrap {
	position: fixed;
	z-index: 9999;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
	background: rgba(0, 0, 0, 0.6);
}
.modal__form {
	width: 380px;
	padding: 2rem;
	background-color: var(--orange);
	background-image: -webkit-linear-gradient(315deg, var(--orange) 0, var(--orange) 100%);
	background-image: -o-linear-gradient(315deg, var(--orange) 0, var(--orange) 100%);
	background-image: linear-gradient(135deg, var(--orange) 0, var(--orange) 100%);
}
.modal__form-text {
	margin: 0 0 0.5rem 0;
	color: #ffffff;
	font-size: 16px;
}
.modal__form-title {
	margin: 0;
	font-size: 2.6rem;
	color: #ffffff;
	text-transform: uppercase;
}
.modal__form-input {
	display: block;
	width: 100%;
	height: 5.4rem;
	margin: 2rem 0 0 0;
	background-color: transparent;
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-border-radius: 0;
	border-radius: 0;
	padding: 1rem 0;
	border: none;
	border-bottom: 3px solid #fff;
	font: inherit;
	color: #fff;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.modal__form-input:focus,
.modal__form-input:hover {
	border-color: var(--orange);
}
.modal__form-submit {
	margin: 5rem 0 0 0;
}
.js-map-hidden {
	cursor: pointer;
}
.modal__form-agree {
	margin-top: 2rem;
	display: flex;
	display: -ms-flex;
}
.modal__form-agree input {
	display: none;
}
.modal__form-agree__text {
	display: block;
	margin-left: 11px;
	font-size: 14px;
	color: #ffffff;
}
.modal__form-agree__text a {
	color: #ffffff;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.modal__form-agree__text a:hover {
	text-decoration: none;
}
.modal__form-agree__icon {
	display: block;
	width: 20px;
	height: 20px;
	border: 2px solid #ffffff;
	margin-top: 4px;
}
.modal__form-agree input:checked + .modal__form-agree__icon {
	position: relative;
}
.modal__form-agree input:checked + .modal__form-agree__icon:after {
	content: "";
	position: absolute;
	left: 2px;
	top: 2px;
	width: 12px;
	height: 12px;
	background: url("images/tick.svg") no-repeat;
}

.bank__list-wrap {
	display: flex;
	flex-wrap: wrap;
	margin-top: 6rem;
}

.bank__item {
	width: 33%;
	padding: 3rem;
}

.maininfo__wrap {
	display: flex;
}

.maininfo__logo {
	width: 20%;
	font-size: 4.8rem;
	font-weight: var(--medium);
	line-height: 1;
}

.maininfo__text {
	width: 55%;
	line-height: 2;
	font-size: 1.8rem;
	opacity: 0.8;
	padding-right: 2rem;
}

.maininfo__facts {
	width: 25%;
}

.fact-1-text {
	font-size: 3.6rem;
	color: var(--orange);
	font-weight: var(--bold);
	line-height: 1;
}

.fact-2 {
	display: flex;
	align-items: center;
	margin-top: 2rem;
}

.fact-3 {
	margin-top: 2rem;
}

.fact-2-head,
.fact-3-head {
	font-size: 6.8rem;
	color: var(--orange);
	font-weight: var(--bold);
	line-height: 1;
}

.fact-3-head span {
	font-size: 4.2rem;
}

.page-location__map-btns {
	margin-top: 3rem;
}

.page-location__map-btns a {
	display: inline-block;
	border-radius: 4rem;
	background-color: var(--grey);
	color: #fff;
	padding: 1rem 2rem;
	text-decoration: none;
	margin-right: 3rem;
	transition: 0.3s all ease;
}

.page-location__map-btns a[data-type="all"] {
	color: var(--text);
}

.page-location__map-btns a[data-type="study"] {
	background-color: #f38d14;
}

.page-location__map-btns a[data-type="transport"] {
	background-color: #ac5858;
}

.page-location__map-btns a[data-type="child"] {
	background-color: #1a7eb5;
}

.page-location__map-btns a[data-type="med"] {
	background-color: #58ac5c;
}

.page-location__map-btns a[data-type="sport"] {
	background-color: #2fbced;
}

.page-location__map-btns a[data-type="torg"] {
	background-color: #6f64b5;
}

.page-location__map-btns a:hover {
	background-color: var(--orange);
}

.ancor__item {
	cursor: pointer;
	flex: 1 0 auto;
	padding: 0 1rem;
}

.project__nav {
}

.scroll__inner {
	background-color: #fff;
	max-width: 1600px;
	margin: 0 auto;
	margin-top: -4rem;
}

.ancors__list {
	display: flex;
	justify-content: space-between;
	padding: 2rem 1rem;
	background-color: #fff;
	box-shadow: 0 10px 30px -20px rgba(0, 0, 0, 0.5);
	border-radius: 1rem;
	text-align: center;
}

.scroll[active] > div {
	position: fixed;
	z-index: 999;
	left: 0;
	top: 0;
	right: 0;
}

.ipoteka__wrap {
	display: flex;
}

.ipoteka__wrap a {
	flex: 0 1 400px;
	margin-right: 40px;
}

.ipoteka__wrap a img {
	max-width: 100%;
}

.uchastok {
	margin-top: 20px;
}

.uchastok a {
	color: var(--orange);
}

#medal {
	width: 180px;
	position: fixed;
	right: 20px;
	top: 20px;
	z-index: 100;
}
