@font-face {
	font-family: 'SF UI';
	src: url('/fonts/SFUIDisplay-Thin.woff2') format('woff2'),
		url('/fonts/SFUIDisplay-Thin.woff') format('woff');
	font-weight: 100;
	font-style: normal;
}


@font-face {
	font-family: 'SF UI';
	src: url('/fonts/SFUIDisplay-Light.woff2') format('woff2'),
		url('/fonts/SFUIDisplay-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'SF UI';
	src: url('/fonts/SFUIDisplay-Light.woff2') format('woff2'),
		url('/fonts/SFUIDisplay-Light.woff') format('woff');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'TerminatorGen';
	src: url('/fonts/TerminatorGen.woff2') format('woff2'),
		url('/fonts/TerminatorGen.woff') format('woff');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Sequel100Black-65';
	src: url('/fonts/Sequel100Black-65.woff2') format('woff2'),
		url('/fonts/Sequel100Black-65.woff') format('woff');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

html {
	overflow: auto;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 18px;
}

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

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

a {
	text-decoration: none;
	color: #ccc;
}

a:hover {
	text-decoration: none;
	color: inherit;
}

body {
	width: 100%;
	min-width: 320px;
	max-width: 1920px;
	height: 100%;
	margin: 0 auto !important;
	padding-right: 0 !important;
	color: #000;
	background-color: #fff;
	font-family: "SF UI", Arial, sans-serif;
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.2;
	letter-spacing: 3px;
}

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

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

h1,
h2 {
	margin-bottom: 10px;
	font-size: 2rem;
	letter-spacing: 10px;
}

.site {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-height: 100vh;
}

.visually-hidden {
	position: absolute;
	clip: rect(0 0 0 0);
	width: 1px;
	height: 1px;
	margin: -1px;
}

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

.overlay {
	position: fixed;
	z-index: 10;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .5);
}

.overlay--active {
	display: block;
}

.section {
	overflow: hidden;
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
}

.btn,
button {
	position: relative;
	z-index: 1;
	padding: 15px 35px;
	font-weight: 700;
}

.btn {
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	position: relative;
	background-color: transparent;
	padding: 10px 60px;
	width: 240px;
}

.btn__text {
	position: relative;
	z-index: 1;
}

.btn::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("/img/btn.png");
	z-index: -1;
}

.btn:hover {
	color: #fff;
	-webkit-transition: 0.3s all linear;
	-o-transition: 0.3s all linear;
	transition: 0.3s all linear;
}

.btn:focus,
button:focus {
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.site-header {
	background-color: #fff;
	position: relative;
	z-index: 100;
	margin-bottom: 40px;
	padding-top: 10px;
	padding-bottom: 20px;
	position: relative;
}

.site-header::before {
	content: "";
	display: block;
	left: 0;
	width: 58%;
	bottom: 0;
	height: 3px;
	position: absolute;
	background-position: center center;
	background-size: cover;
	border-radius: 0 50px 50px 0;
	background-repeat: no-repeat;
	background-image: -o-linear-gradient(right, #909396 0%, #b3b7bd 38%, #6a6e73 77%, #7a7f84 100%);
	background-image: -webkit-gradient(linear, right top, left top, from(#909396), color-stop(38%, #b3b7bd), color-stop(77%, #6a6e73), to(#7a7f84));
	background-image: linear-gradient(-90deg, #909396 0%, #b3b7bd 38%, #6a6e73 77%, #7a7f84 100%);
}

.site-footer {
	margin-top: auto;
	text-align: center;
	padding: 20px 0;
	position: relative;
}

.site-footer::before {
	content: "";
	display: block;
	right: 0;
	width: 58%;
	top: 0;
	height: 3px;
	position: absolute;
	background-position: center center;
	background-size: cover;
	border-radius: 50px 0 0 50px;
	background-repeat: no-repeat;
	background-image: -o-linear-gradient(right, #909396 0%, #b3b7bd 38%, #6a6e73 77%, #7a7f84 100%);
	background-image: -webkit-gradient(linear, right top, left top, from(#909396), color-stop(38%, #b3b7bd), color-stop(77%, #6a6e73), to(#7a7f84));
	background-image: linear-gradient(-90deg, #909396 0%, #b3b7bd 38%, #6a6e73 77%, #7a7f84 100%);
}

.logo__img {
	width: 180px;
}

.main-site-info {
	padding: 10px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.lang {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

.lang__item {
	margin: 5px;
	font-size: 0.8rem;
	width: 30px;
	height: 20px;
	padding: 3px;
}

.lang__link {
	display: block;
}

.text-accent {
	font-family: "Sequel100Black-65", Arial, Helvetica, sans-serif;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1;
	position: relative;
	padding-bottom: 5px;
	padding-right: 15px;
	display: inline-block;
}

.text-accent::after {
	content: "";
	display: block;
	right: 0;
	bottom: 0;
	position: absolute;
	left: 50%;
	border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.text-accent--mid {
	font-size: 2.2rem;
}

.text-accent--big {
	font-size: 3rem;
}

.text-accent--inkor {
	font-family: "TerminatorGen", Arial, Helvetica, sans-serif;
}

.block-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	font-size: 1.5rem;
	font-family: 'SF UI', Arial, Helvetica, sans-serif;
	font-weight: 100;
	margin-bottom: 30px;
}

.block-content:last-child {
	margin-bottom: 0;
}

.section--one .block-content__text {
	margin: auto 0;
}

.block-content--reverse {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.block-content__text {
	width: 50%;
}

.block-content__text--w-35 {
	width: 35%;
}

.block-content__text--w-75 {
	width: 75%;
}

.block-content__text--h-65 {
	height: 65%;
	padding-top: 20px;
	margin: auto 0;
}

.block-content__pic {
	width: 45%;
	text-align: center;
}

.block-content__img {
	width: 100%;
	height: auto;
	max-width: 500px;
}

.section--one .fp-tableCell {
	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: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.section--one .info {
	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%;
}

.section--one .info .block-content {
	margin: auto 0;
}

.section--two .block-content {
	height: 100vh;
}

.section--two .block-content__pic {
	-ms-flex-item-align: end;
	align-self: flex-end;
}

.block-content__text--colors {
	width: 100%;
	max-width: 460px;
}

.colors {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 30px;
}

.colors__item {
	width: 5rem;
	height: 5rem;
	margin: 1%;
	border-radius: 50%;
}

.colors__item--blue {
	background-color: #04acef;
}

.colors__item--red {
	background-color: #eb008a;
}

.colors__item--yellow {
	background-color: #fff305;
}

.colors__item--black {
	background-color: #221f20;
}

.contacts {
	text-align: center;
}

.contacts-list {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: right;
}

.contacts-list__item {
	margin-bottom: 10px;
}

.contacts-list__item:last-child {
	margin-bottom: 20px;
}

.contacts-list__content {
	color: #000;
	font-size: 1.2rem;
}

.contacts-list__content:hover {
	opacity: 0.8;
}

.map {
	width: 100%;
	min-height: 50vh;
	margin: 0 auto;
	margin-bottom: 30px;
}

[class*="ymaps-2"][class*="-ground-pane"] {
	filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
	-webkit-filter: grayscale(100%);
}


.modal-dialog {
	max-width: 80%;
	margin: 0 auto;
}

.modal-content {
	border-radius: 0;
	border: none;
}

.price-list {
	position: relative;
	position: relative;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.price-list__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-ms-flex-align: center;
	-webkit-transition: 0.3s all linear;
	-o-transition: 0.3s all linear;
	transition: 0.3s all linear;
	border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
	border-radius: 0;
	margin-bottom: 10px;
	padding-bottom: 10px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.price-list__item:last-child {
	margin-bottom: 0;
}

.price-list__name {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.price-list__cost {
	width: 25%;
	text-align: right;
	white-space: nowrap;
}

.price-list__cost span {
	font-size: 1.2rem;
	font-weight: 700;
}

.modal-form .close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 15px;
	height: 15px;
	padding: 0;
	-webkit-transition: 0.3s all linear;
	-o-transition: 0.3s all linear;
	transition: 0.3s all linear;
	opacity: 1;
	border: none;
	background-image: url("/img/close.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
	background-color: transparent;
}

.modal-form .close:hover {
	-webkit-transition: 0.3s all linear;
	-o-transition: 0.3s all linear;
	transition: 0.3s all linear;
	background-color: transparent;
	opacity: 0.8;
}

.modal-body {
	padding: 40px;
}

.appointment-form__list {
	padding: 0;
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.appointment-form__item {
	list-style: none;
	padding: 0;
	margin: 0;
}

.appointment-form__item--col-1 {
	width: 100%;
}

.appointment-form__item--col-2 {
	width: calc(50% - 5px);
}

.footer-form .appointment-form__privacy {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	text-align: left;
}

.footer-form .btn {
	margin-bottom: 20px;
}

label {
	margin: 0;
	display: block;
}

input,
textarea {
	min-width: 1px;
	line-height: 1.2;
}

textarea {
	width: 100% !important;
	min-height: 100px;
	max-height: 100px;
}

.appointment-form__control {
	position: relative;
	margin-bottom: 10px;
}

.appointment-form__label {
	margin-bottom: 5px;
	font-size: .9rem;
}

.appointment-form__required {
	font-weight: 700;
}

.appointment-form__input {
	width: 100%;
	background-color: #fff !important;
	padding: 15px 20px !important;
	margin: 0;
	position: relative;
	z-index: 1;
	border-radius: 0;
	cursor: text;
	border: 1px dashed rgba(0, 0, 0, 0.1);
}

.appointment-form__input:focus,
.appointment-form__input--readonly {
	border-color: #000;
	background-color: rgba(255, 255, 255, .15) !important;
}

.appointment-form__list--sign .btn,
.appointment-form__outro {
	margin-bottom: 10px;
}

:focus {
	outline: none !important;
}

.modal-body--form {
	padding-bottom: 30px;
}

.modal-title {
	margin-bottom: 10px;
}

.success-message {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	opacity: 0;
	z-index: 33;
	visibility: hidden;
	overflow: hidden;
	overflow-y: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
}

.success-message--active {
	visibility: visible;
	opacity: 1;
}

.success-message__wrapper {
	width: 95%;
	max-width: 480px;
	height: auto;
	-webkit-transform: translateY(-50px);
	-ms-transform: translateY(-50px);
	transform: translateY(-50px);
	margin: auto;
	z-index: 2;
	-webkit-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
}

.success-message--active .success-message__wrapper {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.success-message__content {
	position: relative;
	font-size: 1.5rem;
	font-weight: 700;
	text-transform: none;
	padding: 40px;
	text-align: center;
	background-color: #fff;
	border: 0;
	-webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
	box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
	min-width: 280px;
	z-index: 1;
}

.success-message__info span {
	display: block;
}

.modal {
	padding: 0 !important;
}

.section--five {
	padding-top: 20px;
}

.section--five>.fp-tableCell {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.section--five .info {
	margin-top: auto;
}

.btn--mobile {
	display: none;
}

@media(max-width: 1199px) {
	html {
		font-size: 16px;
	}
}

@media(max-width: 991px) {
	html {
		font-size: 14px;
	}

	.site-header::before,
	.site-footer::before {
		width: 100%;
		left: 0;
		right: 0;
	}

	h1,
	h2 {
		text-align: center;
	}

	.block-content {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.block-content__text {
		width: 100%;
		text-align: center;
	}

	.block-content__pic {
		width: 100%;
	}

	.section--two .block-content {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}

	.section--two .block-content__text {
		margin: auto 0;
	}

	.section--two .block-content__img {
		max-width: 350px !important;
		margin-bottom: auto;
	}

	.block-content__img {
		width: 100%;
		max-width: 400px;
		display: block;
		margin: 0 auto;
	}

	.contacts-list {
		text-align: center;
	}

	.block-content__text--h-65 {
		height: auto;
	}

	.site-header {
		margin-bottom: 30px;
	}

	.block-content {
		margin-bottom: 20px;
	}


	.section,
	.fp-tableCell,
	.section--two .block-content {
		height: auto !important;
	}

	.section {
		overflow: visible;
	}

	.block-content__text--colors {
		margin: 0 auto;
		max-width: 360px;
	}

	.section {
		padding: 40px 0;
	}

	.section--one {
		padding-top: 10px;
		padding-bottom: 30px;
	}

	.section--two,
	.section--five {
		padding-bottom: 0;
	}

	.section--four {
		padding-top: 10px;
	}

	.section--three,
	.section--four {
		padding-bottom: 30px;
	}

	.section::after {
		content: "";
		display: block;
		left: 0;
		width: 100%;
		bottom: 0;
		height: 3px;
		position: absolute;
		background-position: center center;
		background-size: cover;
		border-radius: 0 50px 50px 0;
		background-repeat: no-repeat;
		background-image: -o-linear-gradient(right, #909396 0%, #b3b7bd 38%, #6a6e73 77%, #7a7f84 100%);
		background-image: -webkit-gradient(linear, right top, left top, from(#909396), color-stop(38%, #b3b7bd), color-stop(77%, #6a6e73), to(#7a7f84));
		background-image: linear-gradient(-90deg, #909396 0%, #b3b7bd 38%, #6a6e73 77%, #7a7f84 100%);
	}

	.section--five::after {
		display: none;
	}

	.info--last {
		padding-bottom: 40px;
	}

	.block-content__text--h-65 {
		padding: 0;
	}

	.btn--main {
		display: none;
	}

	.btn--mobile {
    display: block;
		margin: 0 auto;
	}

	.section--one .btn {
		margin-bottom: 10px;
	}

	.site-header {
		padding: 0;
		padding-bottom: 10px;
	}

	.contacts-list__item:last-child {
		margin: 0;
	}
}

@media(max-width: 767px) {
	html {
		font-size: 12px;
	}

	h1,
	h2 {
		font-size: 1.5rem;
		letter-spacing: 5px;
	}

	.logo__img {
		width: 120px;
	}

	.text-accent--big {
		font-size: 2.5rem;
	}

	.text-accent--mid {
		font-size: 1.7rem;
	}

	.block-content {
		font-size: 1.2rem;
	}

	.modal-dialog {
		max-width: 95%;
	}

	.appointment-form__item {
		width: 100%;
	}

	.appointment-form__list--sign .btn {
		display: block;
		margin: 0 auto 10px;
	}

	.appointment-form__outro {
		text-align: center;
	}

	.block-content__text--colors {
		max-width: 330px;
	}

}

@media(max-width: 480px) {
	.btn {
		padding: 10px 25px;
	}

	h1,
	h2 {
		letter-spacing: 1px;
	}

	.logo__img {
		width: 80px;
	}

	.text-accent {
		padding: 0;
		padding-bottom: 5px;
	}

	.text-accent::after {
		left: 50%;
		right: 0;
		width: 30px;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
	}

	.block-content {
		font-size: 1rem;
		letter-spacing: 1px;
		margin-bottom: 0;
	}

	.block-content__img {
		max-width: 200px;
	}

	.colors__item {
		width: 4rem;
		height: 4rem;
	}

	.map {
		min-height: 35vh;
	}

	.modal-body {
		padding: 40px 20px;
		padding-bottom: 20px;
		letter-spacing: 1px;
	}

	.appointment-form__outro {
		margin: 0;
	}

	.contacts-list__content {
		font-size: 1rem;
		letter-spacing: 1px;
	}

	.appointment-form__input {
		padding: 10px 15px !important;
	}

	textarea {
		min-height: 80px;
		max-height: 80px;
	}

	.success-message__content {
		padding: 20px;
	}

	.section--two .block-content__img {
		max-width: 200px !important;
	}

	.block-content__text--colors {
		max-width: 240px;
	}

	.section--four {
		padding-top: 20px;
	}
}

@media(max-width: 350px) {

	.logo__img {
		width: 50px;
	}

	.block-content__img {
		max-width: 150px;
	}

	.colors__item {
		width: 3rem;
		height: 3rem;
	}

	.block-content__text--colors {
		max-width: 200px;
	}

}