@charset "UTF-8";

:root {
	--color-white: #fff;
	--color-white-100: #f4f2ed;
	--color-black: #000;
	--color-black-100: #202020;
	--color-red: #a94f37;
	--color-green: #2cb742;
	--color-orange: #a94f37;
	--color-gray: #e9e9e9;
	--transition-normal: all 0.3s ease 0s;
}

/*Обнуление*/

* {
	padding: 0;
	margin: 0;
	border: 0;
}

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

:focus,
:active {
	outline: none;
}

a:focus,
a:active {
	outline: none;
}

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

html,
body {
	height: 100%;
	width: 100%;
	min-width: 375px;
}

input,
button,
textarea {
	font-family: inherit;
}

input::-ms-clear {
	display: none;
}

button {
	cursor: pointer;
}

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

a,
a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	cursor: pointer;
}

img {
	vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: inherit;
}

dl,
ol,
ul {
	margin-top: 0;
	margin-bottom: 0;
}

ol,
ul {
	padding-left: 19px;
}

/*Обнуление*/

@font-face {
	font-family: "Arimo";
	src: url("../fonts/Arimo-Medium.woff2") format("woff2"), url("../fonts/Arimo-Medium.ttf") format("truetype");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Arimo";
	src: url("../fonts/Arimo-Regular.woff2") format("woff2"), url("../fonts/Arimo-Regular.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Hagrid";
	src: url("../fonts/Hagrid.woff2") format("woff2"), url("../fonts/Hagrid.ttf") format("truetype");
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Hagrid";
	src: url("../fonts/HagridText.woff2") format("woff2"), url("../fonts/HagridText.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "DejaVu-Sans";
	src: url("../fonts/DejaVuSans.woff2") format("woff2"), url("../fonts/DejaVuSans.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

body {
	color: var(--color-black);
	font-size: 16px;
	line-height: normal;
	font-family: "Arimo", sans-serif;
	font-weight: 400;
	background: var(--color-white-100);
}

body.black {
	background: var(--color-black-100);
}

body.black .header.inner {
	color: var(--color-white);
}

body.black .header.inner .header__bottom {
	border-color: var(--color-white);
}

body.black .header.inner .header-menu__link:before {
	background: var(--color-white);
}

body.black .header.inner .header-menu__list ul {
	background: var(--color-white);
}

body.black .header.inner .header-menu__list ul li a {
	color: var(--color-black-100);
}

body.black .header.inner .header-menu__list ul li a:before {
	background: var(--color-black-100);
}

body.black .desing-page-top__link {
	background: transparent;
	border-color: #fff;
}

body.black .desing-page-top__link:first-child {
	border-right: none;
}

body.black .desing-page-top__link.active {
	background-color: #312c2b;
	color: var(--color-white);
	border-color: transparent;
}

body.lock {
	overflow: hidden;
}

.container {
	padding-left: 30px;
	padding-right: 30px;
	width: 100%;
	margin: 0 auto;
	max-width: 1280px;
}

.wrapper {
	width: 100%;
	min-height: 100%;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

/* плавное изменение прозрачности  placeholder-а при фокусе */

input::-webkit-input-placeholder {
	opacity: 1;
	-webkit-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
	color: var(--color-black);
}

input::-moz-placeholder {
	opacity: 1;
	-moz-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
	color: var(--color-black);
}

input:-moz-placeholder {
	opacity: 1;
	-moz-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
	color: var(--color-black);
}

input:-ms-input-placeholder {
	opacity: 1;
	-ms-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
	color: var(--color-black);
}

input:focus::-webkit-input-placeholder {
	opacity: 0;
	-webkit-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
	color: var(--color-black);
}

input:focus::-moz-placeholder {
	opacity: 0;
	-moz-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
	color: var(--color-black);
}

input:focus:-moz-placeholder {
	opacity: 0;
	-moz-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
	color: var(--color-black);
}

input:focus:-ms-input-placeholder {
	opacity: 0;
	-ms-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
	color: var(--color-black);
}

textarea::-webkit-input-placeholder {
	opacity: 1;
	-webkit-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
	color: var(--color-black);
}

textarea::-moz-placeholder {
	opacity: 1;
	-moz-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
	color: var(--color-black);
}

textarea:-moz-placeholder {
	opacity: 1;
	-moz-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
	color: var(--color-black);
}

textarea:-ms-input-placeholder {
	opacity: 1;
	-ms-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
	color: var(--color-black);
}

textarea:focus::-webkit-input-placeholder {
	opacity: 0;
	-webkit-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
	color: var(--color-black);
}

textarea:focus::-moz-placeholder {
	opacity: 0;
	-moz-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
	color: var(--color-black);
}

textarea:focus:-moz-placeholder {
	opacity: 0;
	-moz-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
	color: var(--color-black);
}

textarea:focus:-ms-input-placeholder {
	opacity: 0;
	-ms-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
	color: var(--color-black);
}

.main {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

.footer {
	background: var(--color-black-100);
	padding: 32px 0 47px;
	text-align: center;
}

.footer__title {
	margin-bottom: 5px;
	text-align: center;
}

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

.footer__subtitle {
	font-size: 15px;
	font-weight: 300;
	letter-spacing: 0.15em;
	color: var(--color-white);
	margin-bottom: 15px;
}

.footer__logo {
	font-family: "Arimo", sans-serif;
	font-size: 32.7px;
	line-height: 1;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #f4f2ed;
	margin-bottom: 20px;
	text-align: center;
}

.footer__links {
	margin-bottom: 20px;
	color: var(--color-white);
}

.footer__link {
	font-size: 12px;
	line-height: 1.33333;
	font-weight: 400;
	text-decoration: underline;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--color-white);
	-webkit-transition: var(--transition-normal);
	-o-transition: var(--transition-normal);
	transition: var(--transition-normal);
}

.footer__link:hover {
	text-decoration: none;
}

.footer__socials {
	display: none;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-column-gap: 32px;
	-moz-column-gap: 32px;
	column-gap: 32px;
	margin-bottom: 33px;
}

.footer__social {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 31px;
	max-width: 100%;
	height: 31px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
}

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

.footer__text {
	margin-bottom: 23px;
	font-size: 12.3px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--color-white);
}

.footer__btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 26px;
}

.footer__bottom {
	font-size: 12px;
	line-height: 1.33333;
	font-weight: 400;
	letter-spacing: 0.15em;
	color: var(--color-white);
}

.footer__bottom a {
	display: inline-block;
	color: inherit;
	-webkit-transition: var(--transition-normal);
	-o-transition: var(--transition-normal);
	transition: var(--transition-normal);
	text-decoration: underline;
}

.footer__bottom a:hover {
	text-decoration: none;
}

.btn {
	height: 46px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	cursor: pointer;
	-webkit-transition: var(--transition-normal);
	-o-transition: var(--transition-normal);
	transition: var(--transition-normal);
	font-family: "DejaVu-Sans", sans-serif;
	font-size: 14px;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	padding: 7px 16px 5px;
}

.btn.btn-outline-white {
	color: var(--color-white);
	border: 1px solid var(--color-white);
}

.btn.btn-outline-white:hover {
	color: var(--color-black-100);
	background: var(--color-white);
}

.btn.btn-outline-black {
	color: #181818;
	border: 1px solid #181818;
}

.btn.btn-outline-black:hover {
	color: var(--color-white);
	background: #181818;
}

.btn.btn-white {
	background: #f5f2ed;
	color: #618990;
}

.btn.btn-white:hover {
	background: var(--color-white);
}

.btn.btn-black {
	background-color: #312c2b;
	color: var(--color-white);
}

.btn.btn-black:hover {
	background: var(--color-black-100);
}

.btn.btn-red {
	background: var(--color-red);
	color: var(--color-white);
}

.btn.btn-red:hover {
	background: #a13314;
}

.map-block {
	display: block;
	width: 100%;
	height: 0;
	position: relative;
	overflow: hidden;
	background-color: var(--color-white-100);
	padding-bottom: 26.32813%;
}

.map-block__map {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-o-object-fit: cover;
	object-fit: cover;
}

.form-block {
	background: var(--color-white-100);
	padding: 93px 0 45px;
}

.form-block__title {
	text-align: center;
	font-family: "Arimo", sans-serif;
	font-size: 42px;
	line-height: 1;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.075em;
	color: var(--color-black);
	margin-bottom: 20px;
}

.form-block__subtitle {
	text-align: center;
	margin-bottom: 53px;
	font-size: 14px;
	line-height: 1.21429;
	color: var(--color-black);
}

.form-block__subtitle span {
	text-decoration: underline;
	color: var(--color-red);
}

.form-block__block {
	max-width: 503px;
	margin: 0 auto;
}

.form-block__btn {
	margin-top: 52px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.form-block__info {
	margin-top: 12px;
	font-size: 14px;
	line-height: 1.21429;
	color: var(--color-black);
	text-align: center;
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
}

.form-block__info a {
	color: inherit;
	text-decoration: underline;
	-webkit-transition: var(--transition-normal);
	-o-transition: var(--transition-normal);
	transition: var(--transition-normal);
}

.form-block__info a:hover {
	text-decoration: none;
}

.form-group:not(:last-child) {
	margin-bottom: 43px;
}

.form-control {
	padding: 10px 0;
	background: transparent;
	width: 100%;
	border-bottom: 1px solid var(--color-black);
	font-size: 11px;
	line-height: 1.45455;
	font-weight: 400;
	letter-spacing: 0.075em;
	color: var(--color-black);
}

.watch-tour {
	position: relative;
	overflow: hidden;
}

.watch-tour__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.watch-tour__bg img {
	position: absolute;
	top: auto;
	left: auto;
	bottom: auto;
	right: auto;
	width: 120%;
	height: 120%;
	-o-object-fit: cover;
	object-fit: cover;
}

.watch-tour__content {
	position: relative;
	z-index: 2;
}

.watch-tour__body {
	min-height: 583px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 100px 0;
}

.watch-tour__subtitle {
	text-align: center;
	font-size: 14px;
	line-height: 1.42857;
	font-weight: 300;
	letter-spacing: 0.15em;
	color: var(--color-white);
	margin-bottom: 15px;
}

.watch-tour__title {
	font-family: "Arimo", sans-serif;
	font-size: 42px;
	line-height: 1;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.075em;
	color: var(--color-white);
	margin-bottom: 8px;
	text-align: center;
}

.watch-tour__text {
	text-align: center;
	font-size: 12px;
	font-weight: 300;
	color: var(--color-white);
	margin-bottom: 16px;
}

.watch-tour__btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.watch-tour__btn .btn {
	padding-left: 35px;
	padding-right: 35px;
	height: 49px;
}

.portfolio-block {
	background: var(--color-black-100);
	padding: 65px 30px 52px;
	margin-bottom: -1px;
}

.portfolio-block__top {
	margin-bottom: 16px;
	font-size: 12.1px;
	line-height: 1;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: #cccccc;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-column-gap: 20px;
	-moz-column-gap: 20px;
	column-gap: 20px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.portfolio-block__bottom {
	margin-top: 16px;
	font-size: 12.1px;
	line-height: 1;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: #cccccc;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-column-gap: 20px;
	-moz-column-gap: 20px;
	column-gap: 20px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.portfolio-block__block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 37px;
	-webkit-column-gap: 20px;
	-moz-column-gap: 20px;
	column-gap: 20px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	row-gap: 30px;
}

.portfolio-block__block .btn {
	min-width: 207px;
	height: 50px;
}

.portfolio-block__nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-item-align: center;
	align-self: center;
	-webkit-column-gap: 22px;
	-moz-column-gap: 22px;
	column-gap: 22px;
	max-width: 700px;
	width: 100%;
}

.portfolio-slider {
	position: relative;
	overflow: hidden;
}

.portfolio-slider__img {
	display: block;
	width: 100%;
	height: 0;
	position: relative;
	overflow: hidden;
	padding-bottom: 100%;
}

.portfolio-slider__img img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-o-object-fit: cover;
	object-fit: cover;
}

.portfolio-slider__prev {
	color: var(--color-white);
	cursor: pointer;
}

.portfolio-slider__prev svg {
	width: 19px;
	height: 19px;
	fill: currentColor;
}

.portfolio-slider__next {
	color: var(--color-white);
	cursor: pointer;
}

.portfolio-slider__next svg {
	width: 19px;
	height: 19px;
	fill: currentColor;
}

.our-services__title {
	text-align: center;
	margin-bottom: 35px;
	font-family: "Arimo", sans-serif;
	font-size: 42px;
	line-height: 1;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.075em;
	color: var(--color-black);
}

.our-services__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.our-services__col {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 33.333%;
	max-width: 100%;
	border-top: 1px solid var(--color-black);
	border-right: 1px solid var(--color-black);
}

.our-services__col:last-child {
	border-right: none;
}

.our-services__item {
	position: relative;
	height: 100%;
}

.our-services__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.our-services__bg img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-o-object-fit: cover;
	object-fit: cover;
}

.our-services__body {
	position: relative;
	z-index: 2;
	background: var(--color-white-100);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	height: 100%;
	min-height: 480px;
	padding: 136px 40px;
	-webkit-transition: var(--transition-normal);
	-o-transition: var(--transition-normal);
	transition: var(--transition-normal);
}

.our-services__label {
	display: none;
	font-family: "Arimo", sans-serif;
	font-size: 10px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.075em;
	color: var(--color-black);
	margin-bottom: 29px;
}

.our-services__heading {
	font-family: "Arimo", sans-serif;
	font-size: 18px;
	line-height: 1.11111;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.075em;
	color: var(--color-black);
	text-align: center;
	margin-bottom: 24px;
	-webkit-transition: var(--transition-normal);
	-o-transition: var(--transition-normal);
	transition: var(--transition-normal);
}

.our-services__text {
	margin-bottom: 16px;
	text-align: center;
	font-size: 14px;
	line-height: 1.21429;
	color: var(--color-black);
	-webkit-transition: var(--transition-normal);
	-o-transition: var(--transition-normal);
	transition: var(--transition-normal);
}

.our-services__btn {
	margin-top: auto;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	-webkit-transition: var(--transition-normal);
	-o-transition: var(--transition-normal);
	transition: var(--transition-normal);
	cursor: pointer;
	border: 1px solid var(--color-black);
	height: 50px;
	padding: 10px 51px;
	font-family: "DejaVu-Sans", sans-serif;
	font-size: 14px;
	line-height: 1;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--color-black);
}

.our-services__btn:hover {
	background: var(--color-white);
	color: var(--color-black-100);
}

.making-dreams {
	padding: 58px 0 53px;
}

.making-dreams__title {
	text-align: center;
	font-family: "Arimo", sans-serif;
	font-size: 42px;
	line-height: 1;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.075em;
	color: var(--color-black);
	margin-bottom: 35px;
	margin-left: auto;
	margin-right: auto;
	max-width: 800px;
}

.making-dreams__desc {
	max-width: 645px;
	margin: 0 auto;
}

.making-dreams__heading {
	font-size: 22px;
	line-height: 1;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--color-black);
	text-align: center;
	margin-bottom: 28px;
}

.making-dreams__text {
	margin-bottom: 46px;
	font-size: 14px;
	line-height: 1.5;
	color: var(--color-black);
	text-align: center;
	margin-top: 30px;
}

.making-dreams__text span {
	display: block;
}

.making-dreams__img {
	text-align: center;
	position: relative;
	overflow: hidden;
}

.making-dreams__img:hover .img-magnifier-glass {
	opacity: 1;
	visibility: visible;
}

.making-dreams__img img {
	max-width: 100%;
}

.making-dreams-slider {
	position: relative;
	overflow: hidden;
}

.making-dreams-slider__nav {
	display: none;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-column-gap: 30px;
	-moz-column-gap: 30px;
	column-gap: 30px;
	margin-bottom: 15px;
}

.making-dreams-slider__prev {
	color: var(--color-black);
	width: 24px;
	height: 24px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
}

.making-dreams-slider__prev svg {
	width: 14px;
	height: 14px;
	fill: currentColor;
}

.making-dreams-slider__fractions {
	font-size: 14px;
	color: var(--color-black);
	width: auto;
	margin-top: -3px;
}

.making-dreams-slider__next {
	color: var(--color-black);
	width: 24px;
	height: 24px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
}

.making-dreams-slider__next svg {
	width: 14px;
	height: 14px;
	fill: currentColor;
}

.making-dreams-slider__text {
	font-size: 14px;
	line-height: 1.5;
	color: var(--color-black);
	text-align: center;
}

.making-dreams-slider__text span {
	text-transform: uppercase;
}

.block-img {
	display: block;
	width: 100%;
	height: 0;
	position: relative;
	overflow: hidden;
	padding-bottom: 42.96875%;
}

.block-img img {
	position: absolute;
	top: auto;
	left: auto;
	bottom: auto;
	right: auto;
	width: 120%;
	height: 120%;
	-o-object-fit: cover;
	object-fit: cover;
}

.block-numbers {
	padding: 0 135px;
	border-top: 1px solid var(--color-black);
}

.block-numbers__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.block-numbers__col {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 33.333%;
	max-width: 100%;
	border-right: 1px solid var(--color-black);
}

.block-numbers__col:last-child {
	border-right: none;
}

.block-numbers__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 114px 20px;
	text-align: center;
}

.block-numbers__number {
	font-family: "Arimo", sans-serif;
	font-size: 42px;
	line-height: 1;
	font-weight: 400;
	letter-spacing: 0.075em;
	color: var(--color-black);
	margin-bottom: 15px;
}

.block-numbers__text {
	font-size: 13px;
	line-height: 1.53846;
	color: var(--color-black);
	max-width: 235px;
}

.about-home {
	margin: 74px 0 60px;
}

.about-home__body {
	max-width: 700px;
	margin: 0 auto;
}

.about-home__title {
	font-family: "Arimo", sans-serif;
	font-size: 36.5px;
	line-height: 1.20548;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--color-black);
	text-align: center;
	margin-bottom: 20px;
}

.about-home__desc {
	font-size: 14px;
	line-height: 1.5;
	font-weight: 400;
	color: var(--color-black);
}

.about-home__desc p {
	margin-top: 12px;
	margin-bottom: 12px;
}

.about-home__desc p:first-child {
	margin-top: 0;
}

.about-home__desc p:last-child {
	margin-bottom: 0;
}

.about-home__desc li:not(:last-child) {
	margin-bottom: 3px;
}

.about-home__bottom {
	display: none;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 20px;
}

.about-home__button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	row-gap: 5px;
}

.about-home__button-text {
	font-size: 13px;
	line-height: 1.46154;
	font-weight: 400;
	letter-spacing: 0.15em;
	color: var(--color-black);
}

.about-home__button-text span:last-child {
	display: none;
}

.about-home__button-icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: var(--color-black);
}

.about-home__button-icon svg {
	width: 14px;
	height: 14px;
	fill: currentColor;
}

.about-home__button-icon svg:first-child {
	margin-bottom: -8px;
}

.about-home__desc-bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-column-gap: 20px;
	-moz-column-gap: 20px;
	column-gap: 20px;
	margin-top: 10px;
}

.about-home__desc-bottom-text {
	font-size: 14px;
	line-height: 1.5;
	font-weight: 400;
	color: var(--color-black);
}

.about-home__desc-bottom-icon img {
	max-width: 100%;
}

.about-home__btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 50px;
}

.menu-home {
	margin: 30px 0;
}

.menu-home__list {
	list-style: none;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-column-gap: 25px;
	-moz-column-gap: 25px;
	column-gap: 25px;
}

.menu-home__list ul {
	position: absolute;
	list-style: none;
	padding: 10px 0 0;
	top: 100%;
	left: 0;
	z-index: 5;
	background: var(--color-white-100);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	-webkit-transition: all 0.1s ease;
	-o-transition: all 0.1s ease;
	transition: all 0.1s ease;
}

.menu-home__list ul li:not(:last-child) {
	margin-bottom: 10px;
}

.menu-home__list ul li a {
	font-size: 11px;
	line-height: 1.18182;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--color-black);
	position: relative;
}

.menu-home__list ul li a:before {
	content: "";
	display: block;
	width: 0;
	height: 1px;
	position: absolute;
	bottom: -2px;
	left: 0;
	-webkit-transition: var(--transition-normal);
	-o-transition: var(--transition-normal);
	transition: var(--transition-normal);
	background: var(--color-black);
}

.menu-home__item {
	position: relative;
}

.menu-home__link {
	font-size: 11px;
	line-height: 1.18182;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--color-black);
	position: relative;
}

.menu-home__link.menu-home__link_disabled {
	pointer-events: none;
}

.menu-home__link:before {
	content: "";
	display: block;
	width: 0;
	height: 1px;
	position: absolute;
	bottom: -2px;
	left: 0;
	-webkit-transition: var(--transition-normal);
	-o-transition: var(--transition-normal);
	transition: var(--transition-normal);
	background: var(--color-black);
}

.offer-block {
	position: relative;
}

.offer-block__bg {
	position: relative;
	display: block;
	width: 100%;
	height: 0;
	overflow: hidden;
	padding-bottom: 57.5%;
}

.offer-block__bg img,
.offer-block__bg video,
.offer-block__bg iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-o-object-fit: cover;
	object-fit: cover;
}

.offer-block__content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.offer-block__body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 50px 0;
}

.offer-block__body .btn {
	min-width: 201px;
}

.offer-block__title {
	font-family: "Arimo", sans-serif;
	font-size: 80px;
	line-height: 1;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-white);
	margin-bottom: 15px;
	text-align: center;
}

.offer-block__text {
	font-size: 22px;
	line-height: 1.35714;
	font-weight: 400;
	color: var(--color-white);
	margin-bottom: 40px;
	max-width: 560px;
	text-align: center;
}

.menu {
	position: fixed;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: -320px;
	z-index: 10;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-transition: var(--transition-normal);
	-o-transition: var(--transition-normal);
	transition: var(--transition-normal);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.menu.show {
	opacity: 1;
	visibility: visible;
}

.menu.open {
	left: 0;
}

.menu.open .menu__body {
	pointer-events: auto;
}

.menu__body {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 320px;
	max-width: 100%;
	border: 1px solid #181818;
	border-radius: 0px 39px 0px 0px;
	background: #f4f2ed;
	padding: 42px 24px 24px 42px;
	pointer-events: none;
}

.menu__list {
	padding: 0;
	list-style: none;
}

.menu__item:not(:last-child) {
	margin-bottom: 15px;
}

.menu__link {
	font-family: "Arimo", sans-serif;
	font-size: 13px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #181818;
	position: relative;
}

.menu__link:before {
	content: "";
	display: block;
	width: 0;
	height: 1px;
	position: absolute;
	bottom: -2px;
	left: 0;
	-webkit-transition: var(--transition-normal);
	-o-transition: var(--transition-normal);
	transition: var(--transition-normal);
	background: #181818;
}

.menu__btn {
	margin-top: 30px;
}

.menu__btn .btn {
	height: 33px;
	font-size: 12px;
	padding: 5px 18px;
}

.menu .social-block {
	margin-top: 15px;
	-webkit-column-gap: 30px;
	-moz-column-gap: 30px;
	column-gap: 30px;
}

.menu__close {
	display: none;
	height: 46px;
	font-size: 11px;
	line-height: 1;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--color-white);
	background: #181818;
	margin-top: auto;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 100%;
	max-width: 100%;
}

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

.social-block__iten {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #181818;
	cursor: pointer;
}

.social-block__iten svg {
	width: 32px;
	height: 32px;
	fill: currentColor;
}

.icon-menu {
	pointer-events: auto;
	height: 52px;
	width: 262px;
	background-color: #181818;
	border-radius: 0px 0px 36.6px 36.6px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-column-gap: 15px;
	-moz-column-gap: 15px;
	column-gap: 15px;
	padding: 5px 32px;
	-webkit-transform: rotate(-90deg) translateX(-52px);
	-ms-transform: rotate(-90deg) translateX(-52px);
	transform: rotate(-90deg) translateX(-52px);
	-webkit-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	transform-origin: 0 0;
	cursor: pointer;
	z-index: 11;
	position: relative;
}

.icon-menu.open .icon-menu__btn span {
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}

.icon-menu.open .icon-menu__btn span:first-child {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 5px;
}

.icon-menu.open .icon-menu__btn span:last-child {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	bottom: 5px;
}

.icon-menu__text {
	font-family: "Arimo", sans-serif;
	font-size: 14px;
	line-height: 1;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #f4f2ed;
}

.icon-menu__btn {
	display: block;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 17px;
	max-width: 100%;
	height: 11px;
	position: relative;
}

.icon-menu__btn span {
	position: absolute;
	top: 5px;
	width: 100%;
	height: 1px;
	left: 0;
	background: #f5f2ed;
	-webkit-transition: all 0.1s ease 0s;
	-o-transition: all 0.1s ease 0s;
	transition: all 0.1s ease 0s;
}

.icon-menu__btn span:first-child {
	top: 0;
}

.icon-menu__btn span:last-child {
	top: auto;
	bottom: 0;
}

.call-back {
	display: none;
}

.call-back.fancybox__content {
	max-width: 392px;
	background-color: var(--color-red);
	border-radius: 0px 60px 60px 60px;
	padding: 50px 65px;
}

.call-back.fancybox__content .f-button.is-close-btn {
	right: auto;
	left: 0;
	top: -38px;
	width: 34px;
	height: 34px;
	background: transparent;
	color: var(--color-red);
}

.call-back__title {
	margin: 0 -30px 15px;
	text-align: center;
	font-family: "Arimo", sans-serif;
	font-size: 19px;
	line-height: 1.15789;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.075em;
	color: var(--color-white);
}

.call-back__text {
	text-align: center;
	font-size: 10px;
	line-height: 1.4;
	font-weight: 400;
	letter-spacing: 0.15em;
	color: var(--color-white);
	margin-bottom: 37px;
}

.call-back__input {
	margin-bottom: 30px;
	background: transparent;
	width: 100%;
	padding-bottom: 6px;
	border-bottom: 2px solid #d0a094;
	font-size: 10px;
	line-height: 1;
	font-weight: 400;
	letter-spacing: 0.075em;
	color: #d0a094;
}

.call-back__input::-webkit-input-placeholder {
	color: #d0a094;
}

.call-back__input::-moz-placeholder {
	color: #d0a094;
}

.call-back__input:-moz-placeholder {
	color: #d0a094;
}

.call-back__input:-ms-input-placeholder {
	color: #d0a094;
}

.call-back__input:focus::-webkit-input-placeholder {
	color: #d0a094;
}

.call-back__input:focus::-moz-placeholder {
	color: #d0a094;
}

.call-back__input:focus:-moz-placeholder {
	color: #d0a094;
}

.call-back__input:focus:-ms-input-placeholder {
	color: #d0a094;
}

.call-back__button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.call-back__btn {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	height: 35px;
	cursor: pointer;
	-webkit-transition: var(--transition-normal);
	-o-transition: var(--transition-normal);
	transition: var(--transition-normal);
	background: #f4f2ed;
	color: #ad4c32;
	padding: 5px 15px;
	font-family: "DejaVu-Sans", sans-serif;
	font-size: 10px;
	line-height: 1;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.call-back__btn:hover {
	background: var(--color-white);
}

.img-magnifier-glass {
	position: absolute;
	border: 3px solid #000;
	border-radius: 50%;
	cursor: none;
	/*Установите размер стекла лупы:*/
	width: 150px;
	height: 150px;
	z-index: 2;
	background: var(--color-white-100);
	opacity: 0;
	visibility: hidden;
}

.header {
	color: var(--color-black-100);
}

.header.inner {
	color: #a13314;
}

.header.inner .header-menu__list ul li a:before {
	background: #a13314;
}

.header.inner .header-menu__link:before {
	background: #a13314;
}

.header.inner .header__bottom {
	border-color: #a13314;
}

.header__logo {
	font-family: "Arimo", sans-serif;
	font-size: 22px;
	text-align: center;
	color: inherit;
	padding: 40px 30px 24px;
	letter-spacing: 0.015em;
}

.header__bottom {
	border-top: 1px solid var(--color-black);
}

.header-menu__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-column-gap: 25px;
	-moz-column-gap: 25px;
	column-gap: 25px;
	padding: 0;
	list-style: none;
}

.header-menu__list ul {
	position: absolute;
	list-style: none;
	width: calc(100% + 40px);
	top: calc(100% - 24px);
	padding: 10px 20px;
	left: -20px;
	z-index: 5;
	background: var(--color-white-100);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	-webkit-transition: all 0.1s ease;
	-o-transition: all 0.1s ease;
	transition: all 0.1s ease;
}

.header-menu__list ul li:not(:last-child) {
	margin-bottom: 10px;
}

.header-menu__list ul li a {
	font-size: 14px;
	line-height: 1.18182;
	text-transform: uppercase;
	letter-spacing: 0.035px;
	color: inherit;
	position: relative;
}

.header-menu__list ul li a:before {
	content: "";
	display: block;
	width: 0;
	height: 1px;
	position: absolute;
	bottom: -2px;
	left: 0;
	-webkit-transition: var(--transition-normal);
	-o-transition: var(--transition-normal);
	transition: var(--transition-normal);
	background: var(--color-black-100);
}

.header-menu__item {
	position: relative;
	padding: 19px 0 30px;
}

.header-menu__link {
	font-size: 14px;
	color: inherit;
	text-transform: uppercase;
	display: inline-block;
	padding: 5px 0;
	letter-spacing: 0.035px;
	position: relative;
}

.header-menu__link.header-menu__link_disabled {
	pointer-events: none;
}

.header-menu__link:before {
	content: "";
	display: block;
	width: 0;
	height: 1px;
	position: absolute;
	bottom: 3px;
	left: 0;
	-webkit-transition: var(--transition-normal);
	-o-transition: var(--transition-normal);
	transition: var(--transition-normal);
	background: var(--color-black-100);
}

.loyalty-program__img {
	display: block;
	width: 100%;
	height: 0;
	position: relative;
	overflow: hidden;
	padding-bottom: 54.29688%;
}

.loyalty-program__img img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-o-object-fit: cover;
	object-fit: cover;
}

.loyalty-program__body {
	padding: 51px 0 63px;
	background: var(--color-red);
	margin-top: -5px;
}

.loyalty-program__box {
	max-width: 750px;
	margin: 0 auto;
}

.loyalty-program__title {
	font-family: "Arimo", sans-serif;
	font-size: 38px;
	text-align: center;
	line-height: 1.26316;
	text-transform: uppercase;
	color: var(--color-white);
	margin-bottom: 32px;
	letter-spacing: 0.15em;
	font-weight: 400;
}

.loyalty-program__desc {
	font-size: 14px;
	line-height: 1.5;
	color: var(--color-white);
	padding: 0 35px;
}

.loyalty-program__desc p:not(:last-child) {
	margin-bottom: 18px;
}

.our-partners {
	margin: 62px 0 35px;
}

.our-partners__title {
	font-size: 42px;
	letter-spacing: 0.15em;
	line-height: 1.30952;
	text-transform: uppercase;
	color: #a13314;
	font-weight: 400;
	font-family: "Arimo", sans-serif;
	text-align: center;
	margin-bottom: 42px;
}

.our-partners__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: -35px -25px;
}

.our-partners__col {
	padding: 35px 25px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 25%;
	max-width: 100%;
}

.our-partners__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.our-partners__item-logo {
	height: 90px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 10px;
}

.our-partners__item-logo img {
	max-width: 100%;
	max-height: 100%;
}

.our-partners__item-title {
	font-size: 11px;
	line-height: 1.63636;
	text-transform: uppercase;
	color: var(--color-black);
	text-align: center;
}

.our-partners__item-link {
	font-size: 11px;
	line-height: 1.63636;
	text-transform: uppercase;
	color: var(--color-red);
	text-align: center;
}

.our-partners__item-link a {
	color: inherit;
	text-decoration: underline;
}

.our-partners__item-link a:hover {
	text-decoration: none;
}

.our-partners__item-text {
	font-size: 11px;
	line-height: 1.63636;
	text-transform: uppercase;
	color: var(--color-black);
	text-align: center;
}

.our-partners__bottom {
	margin-top: 75px;
}

.our-partners__btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.our-partners__btn .btn {
	min-width: 387px;
}

.our-partners__text {
	margin-top: 25px;
	text-align: center;
	font-size: 14px;
	line-height: 1.5;
	color: var(--color-red);
}

.our-partners__text span {
	display: block;
	text-decoration: underline;
}

.about-page {
	position: relative;
}

.about-page__img {
	position: relative;
	display: block;
	width: 100%;
	height: 0;
	overflow: hidden;
	padding-bottom: 40.625%;
}

.about-page__img img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-o-object-fit: cover;
	object-fit: cover;
}

.about-page__content {
	padding: 35px 0 69px;
}

.about-page__body {
	max-width: 750px;
	margin: 0 auto;
}

.about-page__body.open .about-page__desc {
	display: block;
}

.about-page__body.open .about-page__btn-text span:first-child {
	display: none;
}

.about-page__body.open .about-page__btn-text span:last-child {
	display: block;
}

.about-page__body.open .about-page__btn-icon svg {
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.about-page__desc {
	font-size: 14px;
	line-height: 1.5;
	color: var(--color-black);
	line-clamp: 8;
	-webkit-line-clamp: 8;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.about-page__desc p:not(:last-child) {
	margin-bottom: 18px;
}

.about-page__bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 10px;
}

.about-page__btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	row-gap: 5px;
	cursor: pointer;
}

.about-page__btn-text {
	font-size: 13px;
	line-height: 1.46154;
	font-weight: 400;
	letter-spacing: 0.15em;
	color: var(--color-black);
}

.about-page__btn-text span:last-child {
	display: none;
}

.about-page__btn-icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: var(--color-black);
}

.about-page__btn-icon svg {
	width: 14px;
	height: 14px;
	fill: currentColor;
}

.about-page__btn-icon svg:first-child {
	margin-bottom: -8px;
}

.our-specialists {
	margin: 0 0 50px;
}

.our-specialists__title {
	font-size: 42px;
	letter-spacing: 0.15em;
	line-height: 1.30952;
	text-transform: uppercase;
	color: var(--color-black);
	font-weight: 400;
	font-family: "Arimo", sans-serif;
	text-align: center;
	margin-bottom: 42px;
	margin-left: auto;
	margin-right: auto;
	max-width: 1050px;
}

.our-specialists__content {
	max-width: 1040px;
	margin: 0 auto;
}

.our-specialists__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: -8px;
}

.our-specialists__col {
	padding: 8px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 50%;
	max-width: 100%;
}

.our-specialists__col.inner {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 100%;
	max-width: 100%;
}

.our-specialists__col.inner .our-specialists__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-column-gap: 16px;
	-moz-column-gap: 16px;
	column-gap: 16px;
}

.our-specialists__col.inner .our-specialists__item .our-specialists__img {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: calc(25% - 8px);
	max-width: 100%;
}

.our-specialists__col.inner .our-specialists__item .our-specialists__body {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: calc(50% - 8px);
	max-width: 100%;
	position: static;
	text-align: right;
}

.our-specialists__col:nth-child(1) .our-specialists__body,
.our-specialists__col:nth-child(6n + 1) .our-specialists__body {
	position: absolute;
	top: 0;
	left: calc(100% + 16px);
	width: 100%;
	max-width: 320px;
	z-index: 3;
}

.our-specialists__col:nth-child(2) .our-specialists__item,
.our-specialists__col:nth-child(6n + 2) .our-specialists__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-column-gap: 10px;
	-moz-column-gap: 10px;
	column-gap: 10px;
	height: 100%;
}

.our-specialists__col:nth-child(2) .our-specialists__item .our-specialists__img,
.our-specialists__col:nth-child(6n + 2) .our-specialists__item .our-specialists__img {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: calc(50% - 5px);
	max-width: 100%;
}

.our-specialists__col:nth-child(2) .our-specialists__item .our-specialists__body,
.our-specialists__col:nth-child(6n + 2) .our-specialists__item .our-specialists__body {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: calc(50% - 5px);
	max-width: 100%;
}

.our-specialists__col:nth-child(3) .our-specialists__item,
.our-specialists__col:nth-child(6n + 3) .our-specialists__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-column-gap: 10px;
	-moz-column-gap: 10px;
	column-gap: 10px;
}

.our-specialists__col:nth-child(3) .our-specialists__item .our-specialists__img,
.our-specialists__col:nth-child(6n + 3) .our-specialists__item .our-specialists__img {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: calc(50% - 5px);
	max-width: 100%;
}

.our-specialists__col:nth-child(3) .our-specialists__item .our-specialists__body,
.our-specialists__col:nth-child(6n + 3) .our-specialists__item .our-specialists__body {
	text-align: right;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: calc(50% - 5px);
	max-width: 100%;
}

.our-specialists__col:nth-child(4) .our-specialists__body,
.our-specialists__col:nth-child(6n + 4) .our-specialists__body {
	position: absolute;
	bottom: 0;
	right: calc(100% + 16px);
	width: 100%;
	z-index: 3;
	text-align: right;
}

.our-specialists__col:nth-child(5) .our-specialists__item,
.our-specialists__col:nth-child(6n + 5) .our-specialists__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-column-gap: 10px;
	-moz-column-gap: 10px;
	column-gap: 10px;
}

.our-specialists__col:nth-child(5) .our-specialists__item .our-specialists__img,
.our-specialists__col:nth-child(6n + 5) .our-specialists__item .our-specialists__img {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: calc(50% - 5px);
	max-width: 100%;
}

.our-specialists__col:nth-child(5) .our-specialists__item .our-specialists__body,
.our-specialists__col:nth-child(6n + 5) .our-specialists__item .our-specialists__body {
	text-align: right;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: calc(50% - 5px);
	max-width: 100%;
}

.our-specialists__col:nth-child(6) .our-specialists__item,
.our-specialists__col:nth-child(6n + 6) .our-specialists__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-column-gap: 10px;
	-moz-column-gap: 10px;
	column-gap: 10px;
}

.our-specialists__col:nth-child(6) .our-specialists__item .our-specialists__img,
.our-specialists__col:nth-child(6n + 6) .our-specialists__item .our-specialists__img {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: calc(50% - 5px);
	max-width: 100%;
}

.our-specialists__col:nth-child(6) .our-specialists__item .our-specialists__body,
.our-specialists__col:nth-child(6n + 6) .our-specialists__item .our-specialists__body {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: calc(50% - 5px);
	max-width: 100%;
}

.our-specialists__item {
	position: relative;
}

.our-specialists__photo {
	display: block;
	width: 100%;
	height: 0;
	position: relative;
	overflow: hidden;
	padding-bottom: 100%;
}

.our-specialists__photo img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-o-object-fit: cover;
	object-fit: cover;
}

.our-specialists__text {
	font-size: 14px;
	line-height: 1.46154;
	color: var(--color-black);
}

.our-specialists__link {
	font-size: 14px;
	line-height: 1.46154;
	color: var(--color-black);
	display: inline-block;
	text-decoration: underline;
}

.our-specialists__link:hover {
	text-decoration: none;
}

.slider-images {
	margin: 30px 0;
}

.slider-images:first-child {
	margin-top: 0;
}

.slider-images:last-child {
	margin-bottom: 0;
}

.slider-images__img {
	display: block;
	width: 100%;
	height: 0;
	position: relative;
	overflow: hidden;
	padding-bottom: 42.96875%;
}

.slider-images__img img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-o-object-fit: cover;
	object-fit: cover;
}

.slider-images__pagination {
	margin-top: 13px;
}

.slider-images__pagination.swiper-pagination-bullets {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-column-gap: 5px;
	-moz-column-gap: 5px;
	column-gap: 5px;
}

.slider-images__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
	cursor: pointer;
	margin: 0;
	opacity: 1;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 10px;
	max-width: 100%;
	height: 10px;
	border-radius: 50%;
	background-color: #e7dfda;
}

.slider-images__pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: #a94f37;
}

.customer-reviews {
	margin: 69px 0 57px;
}

.customer-reviews__title {
	font-size: 41.5px;
	line-height: 1.17;
	letter-spacing: 0.074em;
	text-align: center;
	color: #000;
	margin-bottom: 50px;
	text-transform: uppercase;
}

.reviews-slider {
	position: relative;
	overflow: hidden;
	margin: 0 -80px;
	padding: 0 80px;
}

.reviews-slider__top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-column-gap: 13px;
	-moz-column-gap: 13px;
	column-gap: 13px;
}

.reviews-slider__photo {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 72px;
	max-width: 100%;
	height: 72px;
	border-radius: 50%;
	position: relative;
	overflow: hidden;
}

.reviews-slider__photo img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: top;
	object-position: top;
}

.reviews-slider__name {
	font-size: 15px;
	font-weight: 300;
	line-height: 1.48;
	color: #000;
}

.reviews-slider__text {
	font-size: 15px;
	font-weight: 300;
	line-height: 1.42;
	color: #000;
	margin-top: 20px;
}

.reviews-slider__prev {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 30px;
	max-width: 100%;
	height: 30px;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	z-index: 3;
}

.reviews-slider__prev svg {
	width: 19px;
	height: 19px;
	fill: currentColor;
}

.reviews-slider__next {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 30px;
	max-width: 100%;
	height: 30px;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 0;
	z-index: 3;
}

.reviews-slider__next svg {
	width: 19px;
	height: 19px;
	fill: currentColor;
}

.how-implement__body {
	max-width: 685px;
	margin: 0 auto;
}

.how-implement__desc:not(:last-child) {
	margin-bottom: 30px;
}

.how-implement__title {
	font-size: 44px;
	line-height: 1.42;
	letter-spacing: 0.075em;
	text-align: center;
	color: #000;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.how-implement__text {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.62;
	color: #000;
	margin-bottom: 15px;
}

.how-implement__info {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.23;
	color: #000;
}

.how-implement__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: 25px;
	position: relative;
}

.how-implement__items:before {
	content: "";
	display: block;
	width: 5000px;
	height: 1px;
	background: #000;
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 1;
}

.how-implement__item {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 50%;
	max-width: 100%;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.62;
	color: #000;
	padding-top: 24px;
	padding-bottom: 24px;
	min-height: 140px;
	position: relative;
}

.how-implement__item:before {
	content: "";
	display: block;
	width: 2500px;
	height: 1px;
	background: #000;
	position: absolute;
	bottom: 0;
	z-index: 1;
}

.how-implement__item:after {
	content: "+";
	display: block;
	position: absolute;
	left: 0;
	top: 28px;
	font-size: 32px;
	color: #000;
	line-height: 19px;
}

.how-implement__item:nth-child(odd) {
	border-right: 1px solid #000;
	padding-right: 24px;
	padding-left: 33px;
}

.how-implement__item:nth-child(odd):before {
	right: 0;
}

.how-implement__item:nth-child(even) {
	padding-left: 57px;
}

.how-implement__item:nth-child(even):before {
	left: 0;
}

.how-implement__item:nth-child(even):after {
	left: 24px;
}

.how-implement__botton-info {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.23;
	color: #a13415;
	text-transform: uppercase;
}

.desing-page-img {
	display: block;
	width: 100%;
	height: 0;
	position: relative;
	overflow: hidden;
	padding-bottom: 38.67188%;
}

.desing-page-img img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-o-object-fit: cover;
	object-fit: cover;
}

.ultima-page-img {
	display: block;
	width: 100%;
	height: 0;
	position: relative;
	overflow: hidden;
	padding-bottom: 42.1875%;
}

.ultima-page-img img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-o-object-fit: cover;
	object-fit: cover;
}

.desing-page-top {
	margin: 54px 0;
}

.desing-page-top__body {
	max-width: 685px;
	margin: 0 auto;
}

.desing-page-top__links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 55px;
}

.desing-page-top__link {
	-webkit-box-flex: 1;
	-ms-flex: 1 0 0%;
	flex: 1 0 0%;
	width: 100%;
	max-width: 100%;
	background-color: #312c2b;
	height: 43px;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	-webkit-column-gap: 5px;
	-moz-column-gap: 5px;
	column-gap: 5px;
	font-family: "DejaVu-Sans", sans-serif;
	font-size: 14.5px;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.155em;
	border: 1px solid transparent;
}

.desing-page-top__link.active {
	border: solid 1px #312c2b;
	background-color: #f5f2ed;
	color: #000;
	pointer-events: none;
	-webkit-box-shadow: 0 0 30px orangered;
	box-shadow: 0 0 30px orangered;
}

.desing-page-top__link img {
	display: inline-block;
	width: 16px;
	height: auto;
}

.desing-page-top__block.open .desing-page-top__desc {
	display: block;
}

.desing-page-top__block.open .desing-page-top__button-text span:first-child {
	display: none;
}

.desing-page-top__block.open .desing-page-top__button-text span:last-child {
	display: block;
}

.desing-page-top__block.open .desing-page-top__button-icon svg {
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.desing-page-top__desc {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.63;
	color: #000;
	line-clamp: 7;
	-webkit-line-clamp: 7;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.desing-page-top__desc p {
	margin-top: 12px;
	margin-bottom: 12px;
}

.desing-page-top__desc p:first-child {
	margin-top: 0;
}

.desing-page-top__desc p:last-child {
	margin-bottom: 0;
}

.desing-page-top__desc li:not(:last-child) {
	margin-bottom: 3px;
}

.desing-page-top__bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 20px;
}

.desing-page-top__button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	row-gap: 5px;
	cursor: pointer;
}

.desing-page-top__button-text {
	font-size: 13px;
	line-height: 1.46154;
	font-weight: 400;
	letter-spacing: 0.15em;
	color: var(--color-black);
}

.desing-page-top__button-text span:last-child {
	display: none;
}

.desing-page-top__button-icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: var(--color-black);
}

.desing-page-top__button-icon svg {
	width: 14px;
	height: 14px;
	fill: currentColor;
}

.desing-page-top__button-icon svg:first-child {
	margin-bottom: -8px;
}

.desing-page-top-article {
	margin-top: 20px;
	position: relative;
}

.desing-page-top-article__img {
	display: block;
	width: 100%;
	height: 0;
	position: relative;
	overflow: hidden;
	padding-bottom: 49.12023%;
}

.desing-page-top-article__img img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-o-object-fit: cover;
	object-fit: cover;
}

.desing-page-top-article__body {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	padding: 32px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.desing-page-top-article__title {
	text-align: center;
	color: #fff;
	font-size: 18px;
	margin-bottom: 5px;
	text-transform: uppercase;
}

.desing-page-top-article__text {
	font-size: 14px;
	text-align: center;
	color: #fff;
}

.desing-page-top-article .btn {
	height: 41px;
	margin-top: 20px;
	color: #151514;
	min-width: 252px;
}

.desing-page-video__title {
	font-size: 41.5px;
	line-height: 1.17;
	letter-spacing: 0.074em;
	text-align: center;
	color: #000;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.desing-page-video__img {
	display: block;
	width: 100%;
	height: 0;
	position: relative;
	overflow: hidden;
	padding-bottom: 34.21875%;
}

.desing-page-video__img img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-o-object-fit: cover;
	object-fit: cover;
}

.desing-page-video__img .btn {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 2;
	min-width: 201px;
}

.discount-trust {
	background-color: #a94f37;
	padding: 90px 0 77px;
}

.discount-trust__title {
	font-size: 48.5px;
	line-height: 1;
	letter-spacing: 0.075em;
	text-align: center;
	color: #fff;
	margin-bottom: 25px;
	text-transform: uppercase;
}

.discount-trust__block {
	max-width: 765px;
	margin: 0 auto;
}

.discount-trust__text {
	font-size: 18px;
	font-weight: 300;
	line-height: 1.45;
	color: #fff;
	margin-bottom: 20px;
	text-align: center;
}

.discount-trust__info {
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.45;
	color: #fff;
	margin-bottom: 20px;
	text-align: center;
}

.discount-trust__bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 20px;
}

.discount-trust__button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	row-gap: 5px;
	cursor: pointer;
}

.discount-trust__button-icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: var(--color-white);
}

.discount-trust__button-icon svg {
	width: 14px;
	height: 14px;
	fill: currentColor;
}

.discount-trust__button-icon svg:first-child {
	margin-bottom: -8px;
}

.select-service {
	margin: 54px 0;
}

.select-service__body {
	max-width: 1060px;
	margin: 0 auto;
}

.select-service__title {
	padding: 19px 15px;
	text-align: center;
	font-size: 19.5px;
	color: #000;
	text-transform: uppercase;
	letter-spacing: 0.075em;
	border-top: solid 1px #000;
	border-left: solid 1px #000;
	border-right: solid 1px #000;
}

.select-service__info {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.46;
	color: #000;
	margin-top: 30px;
	text-align: center;
	max-width: 290px;
	margin-left: auto;
	margin-right: auto;
}

.select-service__btn {
	margin-top: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.select-service__btn .btn {
	min-width: 201px;
}

.select-service-tab__nav {
	border-top: 1px solid #000;
	border-left: 1px solid #000;
	border-right: 1px solid #000;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.select-service-tab__nav-item {
	-webkit-box-flex: 1;
	-ms-flex: 1 0 0%;
	flex: 1 0 0%;
	width: 100%;
	max-width: 100%;
	cursor: pointer;
}

.select-service-tab__nav-item.active .select-service-tab__nav-item-text {
	background: var(--color-red);
	color: var(--color-white);
}

.select-service-tab__nav-item:not(:last-child) {
	border-right: 1px solid #000;
}

.select-service-tab__nav-item-text {
	height: 62px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	font-family: Arimo;
	font-size: 19.5px;
	letter-spacing: 0.075em;
	color: #000;
	text-transform: uppercase;
	padding: 10px;
}

.select-service-tab__prev {
	display: none;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 40px;
	height: 40px;
	color: var(--color-white);
	position: absolute;
	left: 10px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 2;
}

.select-service-tab__prev svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.select-service-tab__next {
	display: none;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 40px;
	height: 40px;
	color: var(--color-white);
	position: absolute;
	right: 10px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 2;
}

.select-service-tab__next svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.select-service-tab__body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.select-service-tab__body-item {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 100%;
	max-width: 100%;
	padding-bottom: 72px;
	position: relative;
	opacity: 0;
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
}

.select-service-tab__body-item.active {
	opacity: 1;
	-webkit-box-ordinal-group: 1;
	-ms-flex-order: 0;
	order: 0;
}

.select-service-tab__box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
	border: 1px solid #000;
	padding: 30px 45px 0;
}

.select-service-tab__step {
	display: none;
	text-align: center;
	font-family: Arimo;
	font-size: 14px;
	letter-spacing: 0.075em;
	text-align: center;
	font-weight: 700;
	color: #000;
}

.select-service-tab__desc {
	margin-bottom: 30px;
}

.select-service-tab__list li {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.58;
	color: #000;
}

.select-service-tab__list li strong,
.select-service-tab__list li b {
	display: block;
	font-weight: 700;
}

.select-service-tab__list li:not(:last-child) {
	margin-bottom: 15px;
}

.select-service-tab__bottom {
	padding: 19px 45px;
	margin: auto -45px 0;
	border-top: 1px solid #000;
}

.select-service-tab__btn {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 2;
}

.select-service-tab__btn .btn {
	width: 100%;
}

.select-service-tab__price {
	font-size: 19.5px;
	letter-spacing: 0.075em;
	text-align: right;
	color: #a24228;
	text-transform: uppercase;
}

.ultima-page__title {
	font-family: Arimo;
	font-size: 37px;
	line-height: 1.24;
	letter-spacing: 0.075em;
	text-align: justify;
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 30px;
}

.ultima-page__desc {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.63;
	color: #fff;
}

.ultima-page__desc:not(:last-child) {
	margin-bottom: 50px;
}

.ultima-page__desc p {
	margin-top: 12px;
	margin-bottom: 12px;
}

.ultima-page__desc p:first-child {
	margin-top: 0;
}

.ultima-page__desc p:last-child {
	margin-bottom: 0;
}

.ultima-page__desc li:not(:last-child) {
	margin-bottom: 3px;
}

.ultima-page__block:not(:last-child) {
	margin-bottom: 50px;
}

.ultima-page__heading {
	font-size: 27px;
	font-weight: 300;
	line-height: 1.63;
	color: #fff;
	letter-spacing: 0.075em;
}

.ultima-page__text {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.63;
	color: #fff;
}

.ultima-page__text p {
	margin-top: 12px;
	margin-bottom: 12px;
}

.ultima-page__text p:first-child {
	margin-top: 0;
}

.ultima-page__text p:last-child {
	margin-bottom: 0;
}

.ultima-page__text li:not(:last-child) {
	margin-bottom: 3px;
}

.ultima-page__text-hide {
	display: none;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.63;
	color: #fff;
	margin-top: 12px;
}

.ultima-page__text-hide p {
	margin-top: 12px;
	margin-bottom: 12px;
}

.ultima-page__text-hide p:first-child {
	margin-top: 0;
}

.ultima-page__text-hide p:last-child {
	margin-bottom: 0;
}

.ultima-page__text-hide li:not(:last-child) {
	margin-bottom: 3px;
}

.ultima-page__img {
	display: block;
	height: 0;
	position: relative;
	overflow: hidden;
	padding-bottom: 34.26471%;
}

.ultima-page__img img {
	position: absolute;
	top: -10%;
	left: -10%;
	right: auto;
	bottom: auto;
	width: 120%;
	height: 120%;
	-o-object-fit: cover;
	object-fit: cover;
}

.ultima-page__box {
	margin-bottom: 30px;
}

.ultima-page__box.open .ultima-page__text-hide {
	display: block;
}

.ultima-page__box.open .ultima-page__button-text span:first-child {
	display: none;
}

.ultima-page__box.open .ultima-page__button-text span:last-child {
	display: block;
}

.ultima-page__box.open .ultima-page__button-icon svg {
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.ultima-page__bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 20px;
}

.ultima-page__button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	row-gap: 5px;
	cursor: pointer;
}

.ultima-page__button-text {
	font-size: 13px;
	line-height: 1.46154;
	font-weight: 400;
	letter-spacing: 0.15em;
	color: var(--color-white);
}

.ultima-page__button-text span:last-child {
	display: none;
}

.ultima-page__button-icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: var(--color-white);
}

.ultima-page__button-icon svg {
	width: 14px;
	height: 14px;
	fill: currentColor;
}

.ultima-page__button-icon svg:first-child {
	margin-bottom: -8px;
}

.ultima-service-tab {
	border: solid 1px #fff;
}

.ultima-service-tab__title {
	padding: 17px 15px;
	text-align: center;
	font-size: 16.5px;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.075em;
}

.ultima-service-tab__nav {
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.ultima-service-tab__nav-item {
	-webkit-box-flex: 1;
	-ms-flex: 1 0 0%;
	flex: 1 0 0%;
	width: 100%;
	max-width: 100%;
	cursor: pointer;
}

.ultima-service-tab__nav-item.active .ultima-service-tab__nav-item-text {
	background: var(--color-red);
	color: var(--color-white);
}

.ultima-service-tab__nav-item:not(:last-child) {
	border-right: 1px solid #fff;
}

.ultima-service-tab__prev {
	display: none;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 40px;
	height: 40px;
	color: var(--color-white);
	position: absolute;
	left: 10px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 2;
}

.ultima-service-tab__prev svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.ultima-service-tab__nav-item-text {
	height: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	font-family: Arimo;
	font-size: 16.5px;
	letter-spacing: 0.075em;
	color: #fff;
	text-transform: uppercase;
	padding: 10px;
}

.ultima-service-tab__next {
	display: none;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 40px;
	height: 40px;
	color: var(--color-white);
	position: absolute;
	right: 10px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 2;
}

.ultima-service-tab__next svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.ultima-service-tab__body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.ultima-service-tab__body-item {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 100%;
	max-width: 100%;
	position: relative;
	opacity: 0;
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
}

.ultima-service-tab__body-item.active {
	opacity: 1;
	-webkit-box-ordinal-group: 1;
	-ms-flex-order: 0;
	order: 0;
}

.ultima-service-tab__box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
	padding: 30px 45px 0;
}

.ultima-service-tab__step {
	display: none;
	text-align: center;
	font-family: Arimo;
	font-size: 14px;
	letter-spacing: 0.075em;
	text-align: center;
	font-weight: 700;
	color: #fff;
}

.ultima-service-tab__desc {
	margin-bottom: 30px;
}

.ultima-service-tab__list li {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.58;
	color: #fff;
}

.ultima-service-tab__list li strong,
.ultima-service-tab__list li b {
	display: block;
	font-weight: 700;
}

.ultima-service-tab__list li:not(:last-child) {
	margin-bottom: 15px;
}

.ultima-service-tab__bottom {
	padding: 25px 45px;
	margin: auto -45px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-column-gap: 15px;
	-moz-column-gap: 15px;
	column-gap: 15px;
	border-top: 1px solid #fff;
}

.ultima-service-tab__btn .btn {
	min-width: 186px;
}

.ultima-service-tab__info {
	font-size: 13px;
	line-height: 1.52;
	max-width: 280px;
	color: #fff;
}

.ultima-service-tab__price {
	font-size: 16.5px;
	line-height: 1.24;
	letter-spacing: 0.075em;
	text-align: right;
	color: #e08168;
	margin-left: auto;
}

.architectural-page {
	margin: 40px 0;
}

.architectural-page__body {
	max-width: 660px;
	margin: 0 auto;
}

.architectural-page__title {
	margin-bottom: 30px;
	font-size: 44px;
	line-height: 1.11;
	letter-spacing: 0.075em;
	text-align: center;
	color: #000;
	text-transform: uppercase;
}

.architectural-page__block {
	margin-bottom: 35px;
}

.architectural-page__block.open .architectural-page__desc {
	display: block;
}

.architectural-page__block.open .architectural-page__button-text span:first-child {
	display: none;
}

.architectural-page__block.open .architectural-page__button-text span:last-child {
	display: block;
}

.architectural-page__block.open .architectural-page__button-icon svg {
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.architectural-page__desc {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.63;
	color: #000;
}

.architectural-page__desc p {
	margin-top: 12px;
	margin-bottom: 12px;
}

.architectural-page__desc p:first-child {
	margin-top: 0;
}

.architectural-page__desc p:last-child {
	margin-bottom: 0;
}

.architectural-page__desc li:not(:last-child) {
	margin-bottom: 3px;
}

.architectural-page__bottom {
	display: none;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 20px;
}

.architectural-page__button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	row-gap: 5px;
	cursor: pointer;
}

.architectural-page__button-text {
	font-size: 13px;
	line-height: 1.46154;
	font-weight: 400;
	letter-spacing: 0.15em;
	color: #000;
}

.architectural-page__button-text span:last-child {
	display: none;
}

.architectural-page__button-icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #000;
}

.architectural-page__button-icon svg {
	width: 14px;
	height: 14px;
	fill: currentColor;
}

.architectural-page__button-icon svg:first-child {
	margin-bottom: -8px;
}

.articles-slider {
	position: relative;
	overflow: hidden;
	margin: 0 -50px;
	padding: 0 50px;
}

.articles-slider__item {
	position: relative;
}

.articles-slider__img {
	display: block;
	height: 0;
	position: relative;
	overflow: hidden;
	padding-bottom: 49.09091%;
}

.articles-slider__img img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-o-object-fit: cover;
	object-fit: cover;
}

.articles-slider__body {
	position: absolute;
	padding: 30px;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.articles-slider__title {
	text-align: center;
	color: #fff;
	font-size: 18px;
	margin-bottom: 5px;
	text-transform: uppercase;
}

.articles-slider__text {
	font-size: 14px;
	text-align: center;
	color: #fff;
}

.articles-slider__btn {
	margin-top: 15px;
}

.articles-slider__btn .btn {
	min-width: 243px;
	color: #151514;
}

.articles-slider__prev {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 40px;
	height: 40px;
	-webkit-transition: var(--transition-normal);
	-o-transition: var(--transition-normal);
	transition: var(--transition-normal);
	cursor: pointer;
	color: #000;
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 3;
}

.articles-slider__prev svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.articles-slider__next {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 40px;
	height: 40px;
	-webkit-transition: var(--transition-normal);
	-o-transition: var(--transition-normal);
	transition: var(--transition-normal);
	cursor: pointer;
	color: #000;
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 3;
}

.articles-slider__next svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.design-stages {
	margin: 50px 0;
}

.design-stages__body {
	max-width: 975px;
	margin: 0 auto;
}

.design-stages__title {
	font-size: 40px;
	line-height: 1.25;
	letter-spacing: 0.075em;
	text-align: center;
	color: #000;
	margin-bottom: 25px;
	text-transform: uppercase;
}

.design-stages__block {
	position: relative;
}

.design-stages__btn {
	margin-top: 37px;
}

.design-stages__btn .btn {
	width: 100%;
}

.design-stages__info {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.62;
	text-align: center;
	color: #000;
	margin-top: 30px;
	max-width: 440px;
	margin-left: auto;
	margin-right: auto;
}

.design-stages-slider__nav {
	display: none;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-column-gap: 5px;
	-moz-column-gap: 5px;
	column-gap: 5px;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
}

.design-stages-slider__prev {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 40px;
	height: 40px;
	-webkit-transition: var(--transition-normal);
	-o-transition: var(--transition-normal);
	transition: var(--transition-normal);
	cursor: pointer;
	color: #000;
	z-index: 3;
}

.design-stages-slider__prev svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.design-stages-slider__next {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 40px;
	height: 40px;
	-webkit-transition: var(--transition-normal);
	-o-transition: var(--transition-normal);
	transition: var(--transition-normal);
	cursor: pointer;
	color: #000;
	z-index: 3;
}

.design-stages-slider__next svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.design-stages-slider__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.design-stages-slider__left {
	-webkit-box-flex: 1;
	-ms-flex: 1 0 0%;
	flex: 1 0 0%;
	width: 100%;
	max-width: 100%;
}

.design-stages-slider__block {
	padding: 30px 30px 48px;
}

.design-stages-slider__title {
	font-size: 16.5px;
	line-height: 1.79;
	letter-spacing: 0.075em;
	text-align: left;
	color: #000;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.design-stages-slider__text {
	font-size: 14px;
	font-weight: 300;
	line-height: 1.42;
	color: #000;
	position: relative;
	padding-left: 20px;
}

.design-stages-slider__text:not(:last-child) {
	margin-bottom: 15px;
}

.design-stages-slider__text:before {
	content: "";
	display: block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #312c2b;
	position: absolute;
	top: 5px;
	left: 0;
	z-index: 1;
}

.design-stages-slider__right {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 160px;
	max-width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.design-stages-slider__prices {
	padding: 30px 15px 48px;
}

.design-stages-slider__price:not(:last-child) {
	margin-bottom: 10px;
}

.design-stages-slider__price-text {
	font-size: 10px;
	color: #000;
	text-transform: uppercase;
}

.design-stages-slider__price-number {
	font-size: 16.5px;
	color: #000;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.075em;
}

.design-stages-slider__price-number sup {
	font-size: 12px;
}

@media (min-width: 767.98px) {
	.design-stages-slider {
		border: 1px solid #000;
	}

	.design-stages-slider__wrapper {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.design-stages-slider__slide {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 100%;
		max-width: 100%;
	}

	.design-stages-slider__slide:not(:last-child) {
		border-bottom: 1px solid #000;
	}

	.design-stages-slider__left {
		border-right: 1px solid #000;
	}

	.design-stages-slider__block:not(:last-child) {
		border-bottom: 1px solid #000;
	}
}

@media (min-width: 991.98px) {
	.our-services__item:hover .our-services__body {
		background: transparent;
	}

	.our-services__item:hover .our-services__heading {
		color: var(--color-white);
	}

	.our-services__item:hover .our-services__text {
		color: var(--color-white);
	}

	.our-services__item:hover .our-services__btn {
		color: var(--color-white);
		border-color: var(--color-white);
	}

	.our-services__item:hover .our-services__btn:hover {
		color: var(--color-black-100);
	}

	.making-dreams-slider__wrapper {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.making-dreams-slider__slide {
		padding-bottom: 38px;
		margin-bottom: 30px;
		background: url("../img/chevron.svg") center bottom/14px 8px no-repeat;
	}

	.making-dreams-slider__slide:last-child {
		margin-bottom: 0;
	}

	.menu-home__item:hover ul {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.header-menu__item:hover ul {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
}

@media (max-width: 1400px) {
	.reviews-slider {
		margin: 0 -40px;
		padding: 0 40px;
	}
}

@media (max-width: 1279.98px) {
	.portfolio-slider {
		margin: 0 -30px;
		padding: 0 30px;
	}

	.block-numbers {
		padding: 0 75px;
	}

	.reviews-slider {
		padding: 0 40px;
		margin: 0;
	}
}

@media (max-width: 1199.98px) {
	.portfolio-block__top span:nth-child(7) {
		display: none;
	}

	.portfolio-block__bottom span:nth-child(7) {
		display: none;
	}

	.our-services__body {
		padding: 100px 40px;
	}

	.block-numbers {
		padding: 0;
	}

	.offer-block__title {
		font-size: 60px;
	}

	.our-specialists__text {
		font-size: 11px;
	}

	.our-specialists__link {
		font-size: 11px;
	}
}

@media (max-width: 991.98px) {
	.main {
		padding-top: 76px;
	}

	.form-block {
		padding: 60px 0 50px;
	}

	.form-block__title {
		font-size: 32px;
	}

	.watch-tour__body {
		min-height: 428px;
		padding: 50px 0;
	}

	.watch-tour__title {
		font-size: 36px;
	}

	.portfolio-block__top span:nth-child(6) {
		display: none;
	}

	.portfolio-block__bottom span:nth-child(6) {
		display: none;
	}

	.our-services__title {
		display: none;
	}

	.our-services__col {
		border-right: none;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 100%;
		max-width: 100%;
	}

	.our-services__bg {
		display: none;
	}

	.our-services__body {
		padding: 50px 94px 30px;
		min-height: 320px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.our-services__label {
		display: block;
	}

	.our-services__heading {
		font-size: 22px;
		line-height: 1.09091;
	}

	.our-services__text {
		margin-bottom: 20px;
	}

	.our-services__btn {
		border: none;
		background: transparent;
		height: auto;
		padding: 10px;
		color: var(--color-red);
		margin-top: 0;
	}

	.making-dreams__title {
		font-size: 32px;
		color: #9f462e;
	}

	.making-dreams-slider__nav {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.block-numbers__item {
		padding: 60px 20px;
	}

	.about-home {
		margin: 50px 0 60px;
	}

	.about-home__title {
		font-size: 32px;
	}

	.menu-home {
		display: none;
	}

	.offer-block__body {
		padding: 30px 0;
	}

	.offer-block__title {
		font-size: 36px;
	}

	.offer-block__text {
		margin-bottom: 30px;
		font-size: 14px;
		max-width: 340px;
	}

	.menu {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		display: block;
		position: static;
	}

	.menu.open .menu__body {
		right: 0;
	}

	.menu__body {
		-webkit-box-flex: 0;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100%;
		-webkit-transition: var(--transition-normal);
		-o-transition: var(--transition-normal);
		transition: var(--transition-normal);
		border-radius: 0px;
		padding: 0;
		z-index: 10;
		border: none;
		overflow-x: hidden;
		overflow-y: auto;
	}

	.menu__box {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		height: 100%;
		padding: 76px 0 0;
	}

	.menu__list {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 100%;
		max-width: 100%;
	}

	.menu__item:not(:last-child) {
		margin: 0;
		border-bottom: 1px solid #181818;
	}

	.menu__link {
		padding: 22px 25px;
		display: block;
	}

	.menu__link:before {
		display: none;
	}

	.menu__block {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 100%;
		max-width: 100%;
		padding: 37px 25px 44px;
		background: #181818;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-column-gap: 20px;
		-moz-column-gap: 20px;
		column-gap: 20px;
	}

	.menu__btn {
		margin: 0;
	}

	.menu__btn .btn {
		border-color: var(--color-white);
		color: var(--color-white);
	}

	.menu__btn .btn:hover {
		background: var(--color-white);
		color: #181818;
	}

	.menu .social-block {
		margin: 0;
	}

	.menu .social-block .social-block__iten {
		color: var(--color-white);
	}

	.menu__close {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.icon-menu {
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		position: fixed;
		width: 100%;
		height: 76px;
		border-radius: 0px;
		padding: 5px 25px;
	}

	.icon-menu.open .icon-menu__btn span:first-child {
		top: 10px;
	}

	.icon-menu.open .icon-menu__btn span:last-child {
		top: 10px;
	}

	.icon-menu__text {
		font-size: 16px;
		max-width: 100px;
	}

	.icon-menu__btn {
		margin-left: auto;
		width: 30px;
		height: 22px;
	}

	.icon-menu__btn span {
		height: 2px;
		top: 10px;
	}

	.img-magnifier-glass {
		display: none;
	}

	.header {
		display: none;
	}

	.loyalty-program__box {
		max-width: 680px;
	}

	.loyalty-program__title {
		font-size: 32px;
		margin-bottom: 18px;
		line-height: 1.2;
		letter-spacing: 0.08em;
	}

	.our-partners__title {
		font-size: 32px;
	}

	.our-partners__row {
		margin: -35px -10px;
	}

	.our-partners__col {
		padding: 35px 10px;
	}

	.our-specialists__title {
		font-size: 32px;
	}

	.reviews-slider {
		margin: 0 -30px;
		padding: 0 30px;
	}

	.discount-trust__title {
		font-size: 32px;
	}

	.select-service-tab__nav-item-text {
		font-size: 16px;
	}

	.ultima-service-tab__nav-item-text {
		font-size: 16px;
	}

	.design-stages__title {
		font-size: 30px;
		max-width: 750px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 767.98px) {
	body.lock-mob {
		overflow: hidden;
	}

	.container {
		padding-left: 25px;
		padding-right: 25px;
	}

	.fancybox-slide {
		padding: 30px 15px;
	}

	.footer {
		padding: 40px 0 31px;
	}

	.footer__title {
		display: none;
	}

	.footer__subtitle {
		display: none;
	}

	.footer__logo {
		display: none;
	}

	.footer__links {
		display: none;
	}

	.footer__socials {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.footer__text {
		margin-bottom: 16px;
		font-size: 11px;
	}

	.footer__btn {
		display: none;
	}

	.footer__bottom {
		font-size: 7px;
		line-height: 1.85714;
	}

	.btn {
		font-size: 12px;
		height: 41px;
		padding: 6px 18px 5px;
		letter-spacing: 0.1em;
	}

	.map-block {
		padding-bottom: 77.01863%;
	}

	.form-block {
		padding: 31px 0 31px;
	}

	.form-block__title {
		font-size: 22px;
		line-height: 1.59091;
		margin-bottom: 15px;
		margin-bottom: 2px;
	}

	.form-block__subtitle {
		max-width: 321px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 48px;
	}

	.form-block__block {
		max-width: 321px;
	}

	.form-block__btn {
		margin-top: 40px;
	}

	.form-block__info {
		margin-top: 16px;
	}

	.form-group:not(:last-child) {
		margin-bottom: 35px;
	}

	.form-control {
		padding: 7px 0;
	}

	.watch-tour__subtitle {
		font-size: 12px;
	}

	.watch-tour__title {
		font-size: 30px;
		line-height: 1.16667;
	}

	.watch-tour__text {
		font-size: 12px;
	}

	.watch-tour__btn .btn {
		height: 41px;
		padding-left: 18px;
		padding-right: 18px;
	}

	.portfolio-block {
		padding: 58px 30px 64px;
	}

	.portfolio-block__top {
		display: none;
	}

	.portfolio-block__bottom {
		display: none;
	}

	.portfolio-block__block {
		margin-top: 41px;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-column-gap: 14px;
		-moz-column-gap: 14px;
		column-gap: 14px;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}

	.portfolio-block__block .btn {
		height: 41px;
		min-width: 172px;
	}

	.portfolio-block__nav {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.portfolio-slider {
		margin: 0 -25px;
		padding: 0 25px;
	}

	.our-services__btn {
		font-size: 12px;
	}

	.making-dreams {
		padding: 33px 0 49px;
	}

	.making-dreams__title {
		font-size: 22px;
		line-height: 1.2;
	}

	.making-dreams__heading {
		font-size: 15px;
		margin-bottom: 15px;
	}

	.making-dreams__text span {
		text-transform: uppercase;
		display: inline;
	}

	.block-numbers__col {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 100%;
		max-width: 100%;
		border-right: none;
		border-bottom: 1px solid var(--color-black);
	}

	.block-numbers__col:last-child {
		border-bottom: none;
	}

	.block-numbers__item {
		padding: 40px 20px;
	}

	.block-numbers__number {
		font-size: 36px;
	}

	.about-home {
		margin: 30px 0;
	}

	.about-home__title {
		font-size: 22px;
		margin-bottom: 15px;
		line-height: 1.2;
	}

	.about-home__block.open .about-home__desc {
		display: block;
	}

	.about-home__block.open .about-home__button-text span:first-child {
		display: none;
	}

	.about-home__block.open .about-home__button-text span:last-child {
		display: block;
	}

	.about-home__block.open .about-home__button-icon svg {
		-webkit-transform: rotate(-180deg);
		-ms-transform: rotate(-180deg);
		transform: rotate(-180deg);
	}

	.about-home__desc {
		font-size: 13px;
		line-height: 1.46154;
		text-align: center;
		line-clamp: 11;
		-webkit-line-clamp: 11;
		overflow: hidden;
		display: -webkit-box;
		-webkit-box-orient: vertical;
	}

	.about-home__bottom {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.about-home__desc-bottom {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		text-align: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.about-home__desc-bottom-text {
		font-size: 13px;
		line-height: 1.46154;
	}

	.about-home__desc-bottom-icon {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		margin-top: 10px;
	}

	.about-home__btn {
		margin-top: 18px;
	}

	.offer-block__bg {
		padding-bottom: 117.59834%;
	}

	.offer-block__title {
		font-size: 26px;
	}

	.offer-block__text {
		line-height: 1.5;
		margin-bottom: 20px;
	}

	.loyalty-program__body {
		padding: 45px 0 43px;
	}

	.loyalty-program__box {
		max-width: 420px;
	}

	.loyalty-program__title {
		font-size: 22px;
	}

	.loyalty-program__desc {
		font-size: 13px;
		line-height: 1.46154;
		padding: 0;
		text-align: center;
	}

	.our-partners {
		margin: 37px 0 35px;
	}

	.our-partners__title {
		font-size: 22px;
		line-height: 1.2;
		margin-bottom: 37px;
	}

	.our-partners__col {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 100%;
		max-width: 100%;
	}

	.our-partners__item {
		max-width: 255px;
		margin: 0 auto;
	}

	.our-partners__btn .btn {
		min-width: 311px;
	}

	.our-partners__text {
		font-size: 10px;
		margin-top: 15px;
	}

	.about-page__content {
		padding: 30px 0 40px;
	}

	.about-page__desc {
		font-size: 13px;
		line-height: 1.46154;
		line-clamp: 11;
		-webkit-line-clamp: 11;
		overflow: hidden;
		display: -webkit-box;
		-webkit-box-orient: vertical;
	}

	.our-specialists__title {
		font-size: 22px;
		line-height: 1.2;
		margin-bottom: 27px;
	}

	.our-specialists__row {
		margin: -4px;
	}

	.our-specialists__col {
		padding: 4px;
	}

	.our-specialists__col.inner .our-specialists__item {
		-webkit-column-gap: 8px;
		-moz-column-gap: 8px;
		column-gap: 8px;
	}

	.our-specialists__col.inner .our-specialists__item .our-specialists__img {
		width: calc(25% - 4px);
	}

	.our-specialists__col.inner .our-specialists__item .our-specialists__body {
		width: calc(50% - 4px);
	}

	.our-specialists__col:nth-child(1) .our-specialists__body,
	.our-specialists__col:nth-child(6n + 1) .our-specialists__body {
		left: calc(100% + 8px);
	}

	.our-specialists__col:nth-child(2) .our-specialists__item,
	.our-specialists__col:nth-child(6n + 2) .our-specialists__item {
		-webkit-column-gap: 6px;
		-moz-column-gap: 6px;
		column-gap: 6px;
	}

	.our-specialists__col:nth-child(2) .our-specialists__item .our-specialists__img,
	.our-specialists__col:nth-child(6n + 2) .our-specialists__item .our-specialists__img {
		width: calc(50% - 3px);
	}

	.our-specialists__col:nth-child(2) .our-specialists__item .our-specialists__body,
	.our-specialists__col:nth-child(6n + 2) .our-specialists__item .our-specialists__body {
		width: calc(50% - 3px);
	}

	.our-specialists__col:nth-child(3) .our-specialists__item,
	.our-specialists__col:nth-child(6n + 3) .our-specialists__item {
		-webkit-column-gap: 6px;
		-moz-column-gap: 6px;
		column-gap: 6px;
	}

	.our-specialists__col:nth-child(3) .our-specialists__item .our-specialists__img,
	.our-specialists__col:nth-child(6n + 3) .our-specialists__item .our-specialists__img {
		width: calc(50% - 3px);
	}

	.our-specialists__col:nth-child(3) .our-specialists__item .our-specialists__body,
	.our-specialists__col:nth-child(6n + 3) .our-specialists__item .our-specialists__body {
		width: calc(50% - 3px);
	}

	.our-specialists__col:nth-child(4) .our-specialists__body,
	.our-specialists__col:nth-child(6n + 4) .our-specialists__body {
		right: calc(100% + 8px);
	}

	.our-specialists__col:nth-child(5) .our-specialists__item,
	.our-specialists__col:nth-child(6n + 5) .our-specialists__item {
		-webkit-column-gap: 6px;
		-moz-column-gap: 6px;
		column-gap: 6px;
	}

	.our-specialists__col:nth-child(5) .our-specialists__item .our-specialists__img,
	.our-specialists__col:nth-child(6n + 5) .our-specialists__item .our-specialists__img {
		width: calc(50% - 3px);
	}

	.our-specialists__col:nth-child(5) .our-specialists__item .our-specialists__body,
	.our-specialists__col:nth-child(6n + 5) .our-specialists__item .our-specialists__body {
		width: calc(50% - 3px);
	}

	.our-specialists__col:nth-child(6) .our-specialists__item,
	.our-specialists__col:nth-child(6n + 6) .our-specialists__item {
		-webkit-column-gap: 6px;
		-moz-column-gap: 6px;
		column-gap: 6px;
	}

	.our-specialists__col:nth-child(6) .our-specialists__item .our-specialists__img,
	.our-specialists__col:nth-child(6n + 6) .our-specialists__item .our-specialists__img {
		width: calc(50% - 3px);
	}

	.our-specialists__col:nth-child(6) .our-specialists__item .our-specialists__body,
	.our-specialists__col:nth-child(6n + 6) .our-specialists__item .our-specialists__body {
		width: calc(50% - 3px);
	}

	.slider-images {
		margin: 20px 0;
	}

	.slider-images__img {
		padding-bottom: 117.59834%;
	}

	.slider-images__pagination.swiper-pagination-bullets {
		-webkit-column-gap: 4px;
		-moz-column-gap: 4px;
		column-gap: 4px;
	}

	.slider-images__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
		width: 8px;
		height: 8px;
	}

	.customer-reviews {
		margin: 30px 0 62px;
	}

	.customer-reviews__title {
		font-size: 22.5px;
		margin-bottom: 25px;
	}

	.reviews-slider {
		margin: 0 -25px;
	}

	.how-implement__body {
		max-width: none;
	}

	.how-implement__desc {
		max-width: 415px;
		margin: 0 auto;
		text-align: center;
	}

	.how-implement__title {
		font-size: 24px;
		margin-bottom: 18px;
		line-height: 1.13;
	}

	.how-implement__info {
		color: #a13415;
		text-transform: uppercase;
	}

	.how-implement__items {
		margin: 0 -25px 25px;
		border-top: 1px solid #a94f37;
	}

	.how-implement__items:before {
		display: none;
	}

	.how-implement__item {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 100%;
		max-width: 100%;
		min-height: 92px;
		color: #9e432b;
		border-bottom: 1px solid #9e432b;
		padding-top: 11px;
		padding-bottom: 11px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
		-webkit-column-gap: 23px;
		-moz-column-gap: 23px;
		column-gap: 23px;
		padding-left: 24px;
		padding-right: 24px;
	}

	.how-implement__item:before {
		display: none;
	}

	.how-implement__item:after {
		color: #9e432b;
		position: relative;
		top: 3px;
		left: auto;
		margin-bottom: -3px;
	}

	.how-implement__item:nth-child(odd) {
		border-right: none;
		padding-left: 24px;
		padding-right: 24px;
	}

	.how-implement__item:nth-child(odd):before {
		right: auto;
	}

	.how-implement__item:nth-child(even) {
		padding-left: 24px;
		padding-right: 24px;
	}

	.how-implement__item:nth-child(even):before {
		left: auto;
	}

	.how-implement__item:nth-child(even):after {
		left: auto;
	}

	.desing-page-img {
		padding-bottom: 117.84232%;
	}

	.ultima-page-img {
		padding-bottom: 69.50207%;
	}

	.desing-page-top {
		margin: 40px 0;
	}

	.desing-page-top__links {
		margin-bottom: 38px;
	}

	.desing-page-top__link {
		font-size: 12px;
	}

	.desing-page-top__desc {
		line-clamp: 11;
		-webkit-line-clamp: 11;
		overflow: hidden;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		text-align: center;
	}

	.desing-page-top-article__img {
		padding-bottom: 76.45833%;
	}

	.desing-page-top-article__body {
		padding: 30px;
	}

	.desing-page-video__title {
		font-size: 22.5px;
		margin-bottom: 15px;
	}

	.desing-page-video__img {
		padding-bottom: 74.89627%;
	}

	.discount-trust {
		padding: 60px 0 30px;
	}

	.discount-trust__title {
		font-size: 25.5px;
		margin-bottom: 30px;
	}

	.discount-trust__text {
		font-size: 16px;
	}

	.discount-trust__info {
		font-size: 16px;
	}

	.select-service {
		margin: 45px 0;
	}

	.select-service__title {
		font-size: 28px;
		border: none;
		padding: 0;
		margin-bottom: 20px;
	}

	.select-service-tab__nav {
		border: none;
		margin: 0 -25px;
	}

	.select-service-tab__nav-item.active .select-service-tab__nav-item-text {
		color: var(--color-white);
		background-color: #202020;
	}

	.select-service-tab__nav-item.active {
		opacity: 1;
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0;
	}

	.select-service-tab__nav-item {
		background-color: #202020;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 100%;
		max-width: 100%;
		opacity: 0;
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
		position: relative;
		padding: 0 60px;
	}

	.select-service-tab__nav-item:not(:last-child) {
		border: none;
	}

	.select-service-tab__nav-item-text {
		font-size: 24px;
		color: var(--color-white);
		background-color: #202020;
		height: 66px;
		padding: 0;
	}

	.select-service-tab__prev {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.select-service-tab__next {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.select-service-tab__body {
		display: block;
	}

	.select-service-tab__body-item.active {
		display: block;
		opacity: 1;
	}

	.select-service-tab__body-item {
		padding-bottom: 0;
		display: none;
		opacity: 1;
	}

	.select-service-tab__box {
		padding: 10px 0 0;
		border: none;
		display: block;
		height: auto;
	}

	.select-service-tab__step {
		display: block;
	}

	.select-service-tab__desc {
		margin-top: 15px;
	}

	.select-service-tab__list {
		list-style: none;
		padding: 0;
	}

	.select-service-tab__list li {
		font-size: 14px;
	}

	.select-service-tab__bottom {
		padding: 15px 25px;
		margin: auto -25px 0;
		border-bottom: 1px solid #000;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-column-gap: 10px;
		-moz-column-gap: 10px;
		column-gap: 10px;
		row-gap: 10px;
	}

	.select-service-tab__btn {
		position: static;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: 100%;
	}

	.select-service-tab__btn .btn {
		width: auto;
		min-width: 170px;
	}

	.select-service-tab__price {
		font-size: 22px;
	}

	.ultima-page__title {
		text-align: center;
		font-size: 22.5px;
		margin-bottom: 15px;
	}

	.ultima-page__desc {
		text-align: center;
		line-height: 1.46;
	}

	.ultima-page__desc:not(:last-child) {
		margin-bottom: 30px;
	}

	.ultima-page__block:not(:last-child) {
		margin-bottom: 30px;
	}

	.ultima-page__heading {
		text-align: center;
		font-size: 22px;
	}

	.ultima-page__text {
		text-align: center;
		line-height: 1.46;
	}

	.ultima-page__text-hide {
		text-align: center;
		line-height: 1.46;
	}

	.ultima-page__img {
		padding-bottom: 52.90456%;
		margin: 0 -25px;
	}

	.ultima-service-tab {
		border: none;
		margin-bottom: -45px;
	}

	.ultima-service-tab__title {
		font-size: 28px;
		border: none;
		padding: 0;
		margin-bottom: 20px;
	}

	.ultima-service-tab__nav {
		border: none;
		margin: 0 -25px;
	}

	.ultima-service-tab__nav-item.active .ultima-service-tab__nav-item-text {
		color: var(--color-white);
		background-color: #a94f37;
	}

	.ultima-service-tab__nav-item.active {
		opacity: 1;
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0;
	}

	.ultima-service-tab__nav-item {
		background-color: #a94f37;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 100%;
		max-width: 100%;
		opacity: 0;
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
		position: relative;
		padding: 0 60px;
	}

	.ultima-service-tab__nav-item:not(:last-child) {
		border: none;
	}

	.ultima-service-tab__prev {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.ultima-service-tab__nav-item-text {
		font-size: 24px;
		color: var(--color-white);
		background-color: #202020;
		height: 66px;
		padding: 0;
	}

	.ultima-service-tab__next {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.ultima-service-tab__body {
		display: block;
	}

	.ultima-service-tab__body-item.active {
		display: block;
		opacity: 1;
	}

	.ultima-service-tab__body-item {
		padding-bottom: 0;
		display: none;
		opacity: 1;
	}

	.ultima-service-tab__box {
		padding: 10px 0 0;
		border: none;
		display: block;
		height: auto;
	}

	.ultima-service-tab__step {
		display: block;
	}

	.ultima-service-tab__desc {
		margin-top: 15px;
	}

	.ultima-service-tab__list {
		list-style: none;
		padding: 0;
	}

	.ultima-service-tab__list li {
		font-size: 14px;
	}

	.ultima-service-tab__bottom {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		padding: 17px 45px 0;
	}

	.ultima-service-tab__btn {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 100%;
		max-width: 100%;
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
		margin-top: 20px;
	}

	.ultima-service-tab__btn .btn {
		width: 100%;
	}

	.ultima-service-tab__info {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 100%;
		max-width: 280px;
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
		text-align: center;
		margin: 10px auto 0;
	}

	.ultima-service-tab__price {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 100%;
		max-width: 100%;
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}

	.architectural-page {
		margin: 25px 0;
	}

	.architectural-page__title {
		font-size: 22px;
		max-width: 320px;
		margin: 0 auto 20px;
	}

	.architectural-page__desc {
		text-align: center;
		line-height: 1.46;
		line-clamp: 10;
		-webkit-line-clamp: 10;
		overflow: hidden;
		display: -webkit-box;
		-webkit-box-orient: vertical;
	}

	.architectural-page__bottom {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.articles-slider {
		padding: 0;
		margin: 0 -25px;
	}

	.articles-slider__img {
		padding-bottom: 76.45833%;
	}

	.articles-slider__body {
		padding: 30px 20px;
	}

	.articles-slider__title {
		font-size: 16px;
	}

	.articles-slider__nav {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-column-gap: 10px;
		-moz-column-gap: 10px;
		column-gap: 10px;
		margin-top: 10px;
	}

	.articles-slider__prev {
		position: static;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}

	.articles-slider__next {
		position: static;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}

	.design-stages__title {
		font-size: 22px;
		margin-bottom: 14px;
		max-width: 530px;
	}

	.design-stages__btn {
		margin-top: 20px;
	}

	.design-stages__info {
		line-height: 1.46;
		margin-top: 20px;
	}

	.design-stages-slider {
		margin: 0 -25px;
	}

	.design-stages-slider__nav {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		margin: 0 -25px;
		padding: 0 25px;
	}

	.design-stages-slider__slide {
		height: auto;
		opacity: 0 !important;
	}

	.design-stages-slider__slide.swiper-slide-active {
		opacity: 1 !important;
	}

	.design-stages-slider__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		height: 100%;
	}

	.design-stages-slider__left {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 100%;
		max-width: 100%;
	}

	.design-stages-slider__block {
		padding: 10px 25px;
	}

	.design-stages-slider__title {
		font-size: 14px;
	}

	.design-stages-slider__text {
		padding-left: 0;
		font-size: 13px;
	}

	.design-stages-slider__text:before {
		display: none;
	}

	.design-stages-slider__right {
		width: auto;
		max-width: none;
		-webkit-box-flex: 0;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
		padding: 20px 25px 0 25px;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
		border-top: 1px solid #000;
		margin-top: auto;
	}

	.design-stages-slider__prices {
		padding: 0;
	}

	.design-stages-slider__price:not(:last-child) {
		margin-bottom: 5px;
	}

	.design-stages-slider__price {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
		-webkit-column-gap: 10px;
		-moz-column-gap: 10px;
		column-gap: 10px;
	}
}

@media (max-width: 685px) {
	.desing-page-top-article {
		margin: 20px -25px 0;
	}
}

@media (max-width: 578px) {
	.call-back.fancybox__content .f-button.is-close-btn {
		background: transparent;
	}
}

@media (max-width: 575.98px) {
	.loyalty-program__img {
		padding-bottom: 117.70833%;
	}

	.about-page__img {
		padding-bottom: 117.70833%;
	}

	.reviews-slider {
		margin: 0;
		padding: 0;
	}

	.reviews-slider__top {
		-webkit-column-gap: 27px;
		-moz-column-gap: 27px;
		column-gap: 27px;
	}

	.reviews-slider__photo {
		width: 86px;
		height: 86px;
		margin-bottom: -31px;
	}

	.reviews-slider__name {
		font-size: 18px;
	}

	.reviews-slider__text {
		font-size: 16px;
		margin-top: 17px;
		padding-left: 113px;
	}

	.reviews-slider__prev {
		top: 100px;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
		left: 5px;
	}

	.reviews-slider__next {
		top: 100px;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
		left: 45px;
		right: auto;
	}
}

@media (max-width: 479.98px) {
	.footer__logo {
		font-size: 26px;
	}

	.our-services__body {
		padding: 50px 40px 30px;
	}

	.select-service__title {
		font-size: 21.5px;
	}

	.ultima-service-tab__title {
		font-size: 21.5px;
	}
}

@media (max-width: 424.98px) {
	.footer__text {
		font-size: 10px;
	}

	.call-back.fancybox__content {
		padding: 50px 30px;
	}

	.select-service-tab__btn .btn {
		min-width: 140px;
	}

	.select-service-tab__price {
		font-size: 19.5px;
	}
}

@media (any-hover: hover) {
	.menu-home__list ul li a:hover:before {
		width: 100%;
	}

	.menu-home__link:hover:before {
		width: 100%;
	}

	.menu__link:hover:before {
		width: 100%;
	}

	.header-menu__list ul li a:hover:before {
		width: 100%;
	}

	.header-menu__link:hover:before {
		width: 100%;
	}
}

@media (max-height: 578px) {
	.call-back.fancybox__content .f-button.is-close-btn {
		background: transparent;
	}
}
