@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
* {
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
}

body {
	min-height: 100vh;
	width: 100%;
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
	font-family: "Inter", sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 160%;
	background: #F9F9F9;
	color: #100F0E;
}

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

h1 {
	font-weight: 600;
	font-size: 45px;
	line-height: 130%;
}

h2 {
	font-weight: 600;
	font-size: 36px;
	line-height: 130%;
}

h3 {
	font-weight: 500;
	font-size: 24px;
	line-height: 130%;
}

h4 {
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
}

@media (max-width: 767px) {
	h1 {
		font-size: 30px;
		line-height: 140%;
	}
	h2 {
		font-size: 24px;
		line-height: 130%;
	}
	h3 {
		font-size: 18px;
		line-height: 22px;
	}
}

li {
	margin: 1.5em 0;
}

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

.uppercase {
	text-transform: uppercase;
}

ul {
	list-style: none;
	padding: 0;
}

ul li {
	padding-left: 30px;
	position: relative;
}

ul li:before {
	position: absolute;
	content: '';
	display: block;
	background: #D6AA6D;
	width: 14px;
	height: 14px;
	top: 5px;
	left: 0;
}

ol {
	list-style: none;
	padding: 0;
}

ol li {
	counter-increment: num;
	padding-left: 30px;
	position: relative;
}

ol li:before {
	position: absolute;
	display: block;
	content: counter(num) ".";
	color: #D6AA6D;
	font-weight: 600;
	font-size: 18px;
	line-height: 150%;
	left: 0;
	top: 0;
}

.font-m {
	font-weight: 400;
	font-size: 18px;
	line-height: 170%;
}

.container {
	width: 1210px;
	padding-left: 15px;
	padding-right: 15px;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 1229px) {
	.container {
		width: 1180px;
	}
}

@media (max-width: 1199px) {
	.container {
		width: 975px;
	}
}

@media (max-width: 991px) {
	.container {
		width: 750px;
	}
}

@media (max-width: 767px) {
	.container {
		width: 100%;
	}
}

.btn {
	display: flex;
	justify-content: center;
	color: #FFFFFF;
	text-decoration: none;
	border: none;
	padding: 19px 50px 19px;
	cursor: pointer;
	width: fit-content;
	text-align: center;
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
}

.btn.-sm {
	padding: 13px 6px 14px;
	font-size: 15px;
	line-height: 18px;
}

@media (max-width: 449px) {
	.btn {
		width: 100%;
	}
}

.btn-main {
	background: #D6AA6D;
}

.btn-main:hover {
	background: #E3AB5E;
}

.btn-main-transparent {
	border: 2px solid #D6AA6D;
}

.header {
	color: #FFFFFF;
	position: fixed;
	z-index: 9;
	top: 0;
	left: 0;
	width: 100%;
	height: 116px;
	animation: fade .5s linear;
	display: flex;
}

.header-bg {
	background: #343A51;
}

.header .container {
	display: flex;
	align-items: center;
}

.header .logo {
	position: absolute;
	left: 30px;
	top: calc(50% - 24px);
}

@keyframes fade {
	0%, 100% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@media (max-width: 1699px) {
	.header .logo {
		max-width: 150px;
	}
}

@media (max-width: 1599px) {
	.header .logo {
		position: relative;
		left: 0;
		top: 0;
		margin-right: 50px;
	}
}

@media (max-width: 1199px) {
	.header .contacts .phone {
		font-size: 18px;
	}
}

@media (max-width: 991px) {
	.header {
		height: 90px;
	}
	.header.active {
		background: #343A51;
	}
}

.logo {
	display: flex;
}

.nav-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex: 1;
}

@media (max-width: 991px) {
	.nav-bar {
		color: #FFFFFF;
		background: #343A51;
		position: fixed;
		top: 90px;
		left: 0;
		width: 100%;
		height: calc(100% - 90px);
		z-index: 99;
		padding: 15px;
		overflow-y: auto;
		display: none;
		flex-direction: column;
		align-items: flex-start;
	}
	.nav-bar.active {
		display: flex !important;
	}
	.nav-bar .menu-header-menu-container {
		width: 100%;
	}
}

.menu-main {
	display: flex;
	list-style: none;
	padding-left: 0;
}

.menu-main li {
	margin: 0 50px 0 0;
	padding-left: 0;
	cursor: pointer;
}

.menu-main li:before {
	display: none;
}

.menu-main li a {
	color: #FFFFFF;
	text-decoration: none;
	position: relative;
	line-height: 19px;
}

.menu-main li a:hover:before, .menu-main li a:focus:before {
	content: '';
	position: absolute;
	display: block;
	width: 100%;
	height: 3px;
	background: #D6AA6D;
	bottom: -7px;
	left: 0;
}

.menu-main .menu-item-has-children {
	position: relative;
}

.menu-main .menu-item-has-children > a {
	padding-right: 25px;
	position: relative;
}

.menu-main .menu-item-has-children > a:after {
	position: absolute;
	content: '';
	display: block;
	background: url(../img/caret-down.svg) center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	width: 15px;
	height: 10px;
	top: calc(50% - 5px);
	right: 0;
	transition: all 0.2s ease-in-out;
}

.menu-main .menu-item-has-children.active > a:after {
	transform: rotate(180deg);
}

.menu-main .menu-item-has-children .sub-menu {
	display: none;
	flex-direction: column;
	align-items: flex-start;
	list-style: none;
	position: absolute;
	top: 23px;
	left: 0;
	background: #FFFFFF;
	width: max-content;
	z-index: 100;
	padding: 20px 0;
	border-top: 3px solid #D6AA6D;
}

.menu-main .menu-item-has-children .sub-menu li {
	margin-right: 0;
}

.menu-main .menu-item-has-children .sub-menu li a {
	color: #100F0E;
	padding: 12px 25px;
	display: inline-block;
	width: 100%;
}

.menu-main .menu-item-has-children .sub-menu li a:hover:before, .menu-main .menu-item-has-children .sub-menu li a:focus:before {
	display: none;
}

.menu-main .menu-item-has-children .sub-menu li:hover, .menu-main .menu-item-has-children .sub-menu li:focus {
	background: #D6AA6D;
}

.menu-main .menu-item-has-children .sub-menu li:hover a, .menu-main .menu-item-has-children .sub-menu li:focus a {
	color: #FFFFFF;
}

.menu-main .menu-item-has-children .sub-menu.active {
	display: flex;
}

@media (max-width: 1599px) {
	.menu-main li {
		margin-right: 25px;
	}
}

@media (max-width: 991px) {
	.menu-main {
		width: 100%;
	}
}

@media (max-width: 991px) {
	.header .menu-main {
		flex-direction: column;
		margin: 0 0 25px 0;
	}
	.header .menu-main li {
		margin-right: 0;
		border-bottom: 1px solid #A4A8B8;
		padding: 15px 0;
	}
	.header .menu-main li:first-child {
		border-top: 1px solid #A4A8B8;
	}
	.header .menu-main li a:hover {
		color: #D6AA6D;
	}
	.header .menu-main li a:hover:before {
		display: none;
	}
	.header .menu-main .menu-item-has-children > a {
		display: inline-block;
		width: 100%;
	}
	.header .menu-main .menu-item-has-children .sub-menu {
		position: static;
		width: 100%;
		background: none;
		border-top: none;
		padding: 0;
		margin-bottom: -15px;
	}
	.header .menu-main .menu-item-has-children .sub-menu li {
		padding: 0;
		margin: 15px 0;
		border: none;
	}
	.header .menu-main .menu-item-has-children .sub-menu li a {
		color: #FFFFFF;
		padding: 0;
	}
	.header .menu-main .menu-item-has-children .sub-menu li:hover, .header .menu-main .menu-item-has-children .sub-menu li:focus {
		background: none;
	}
}

.footer .menu-main {
	flex-direction: column;
	margin: 0;
}

.footer .menu-main li {
	margin-right: 0;
}

.footer .menu-main li + li {
	margin-top: 30px;
}

.footer .menu-main .menu-item-has-children .sub-menu {
	padding: 0;
}

.footer .menu-main .menu-item-has-children .sub-menu li a {
	padding-top: 7px;
	padding-bottom: 7px;
}

.footer .menu-main .menu-item-has-children .sub-menu li + li {
	margin-top: 0;
}

@media (max-width: 767px) {
	.footer .menu-main {
		margin-bottom: 60px;
	}
	.footer .menu-main li {
		border-bottom: 1px solid #A4A8B8;
		padding: 15px 0;
	}
	.footer .menu-main li:first-child {
		border-top: 1px solid #A4A8B8;
	}
	.footer .menu-main li + li {
		margin-top: 0;
	}
	.footer .menu-main li a:hover {
		color: #D6AA6D;
	}
	.footer .menu-main li a:hover:before {
		display: none;
	}
	.footer .menu-main .menu-item-has-children > a {
		display: inline-block;
		width: 100%;
	}
	.footer .menu-main .menu-item-has-children .sub-menu {
		position: static;
		width: 100%;
		background: none;
		border-top: none;
		padding: 0;
		margin-bottom: -15px;
	}
	.footer .menu-main .menu-item-has-children .sub-menu li {
		padding: 0;
		margin: 15px 0;
		border: none;
	}
	.footer .menu-main .menu-item-has-children .sub-menu li a {
		color: #FFFFFF;
		padding: 0;
	}
	.footer .menu-main .menu-item-has-children .sub-menu li:hover, .footer .menu-main .menu-item-has-children .sub-menu li:focus {
		background: none;
	}
}

.email {
	color: #FFFFFF;
	text-decoration: none;
	position: relative;
	width: fit-content;
	line-height: 1.5;
}

.email:after {
	content: '';
	position: absolute;
	display: block;
	width: 100%;
	height: 1px;
	background: #FFFFFF;
	bottom: -3px;
	left: 0;
}

.contacts-info {
	display: flex;
	align-items: center;
}

.contacts-info .email {
	margin-right: 70px;
}

@media (max-width: 1599px) {
	.contacts-info .email {
		margin-right: 35px;
	}
}

@media (max-width: 1199px) {
	.contacts-info {
		flex-direction: column;
		align-items: flex-start;
	}
	.contacts-info .email {
		margin-right: 0;
		margin-bottom: 15px;
	}
}

@media (max-width: 991px) {
	.contacts-info {
		margin-top: auto;
	}
	.contacts-info .email {
		margin-bottom: 30px;
	}
}

.contacts {
	display: flex;
	align-items: center;
}

.contacts a {
	display: flex;
	color: #FFFFFF;
	font-weight: 500;
	font-size: 24px;
	line-height: 100%;
	text-decoration: none;
	margin-right: 15px;
}

.contacts a:hover img, .contacts a:focus img {
	filter: invert(55%) sepia(42%) saturate(741%) hue-rotate(358deg) brightness(134%) contrast(88%);
}

.contacts .phone {
	white-space: pre;
}

.menu-lang {
	list-style: none;
	padding-left: 0;
	display: flex;
	align-items: center;
}

.menu-lang li {
	margin: 0;
	padding-left: 0;
}

.menu-lang li + li {
	margin-left: 10px;
}

.menu-lang li:before {
	display: none;
}

.menu-lang a {
	color: #FFFFFF;
	text-decoration: none;
	position: relative;
	line-height: 19px;
	text-transform: uppercase;
}

.menu-lang a:hover:after, .menu-lang a:focus:after {
	content: '';
	position: absolute;
	display: block;
	width: 100%;
	height: 3px;
	background: #D6AA6D;
	bottom: -7px;
	left: 0;
}

@media (max-width: 991px) {
	.menu-lang {
		margin: 1.5em 0;
	}
}

.btn-hamburger {
	display: none;
}

@media (max-width: 991px) {
	.btn-hamburger {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		padding: 0;
		background: none;
		border: none;
		outline: none !important;
		width: 30px;
		height: 20px;
		flex-shrink: 0;
		cursor: pointer;
		margin-left: auto;
	}
	.btn-hamburger__inner {
		-webkit-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
		display: block;
		background: #D6AA6D;
		width: 100%;
		height: 1px;
	}
	.btn-hamburger.active {
		align-items: center;
		justify-content: center;
		background: none;
		height: 30px;
	}
	.btn-hamburger.active .btn-hamburger__inner {
		background: #D6AA6D;
	}
	.btn-hamburger.active .btn-hamburger__inner.-top {
		transform: translateY(0px) rotate(45deg);
	}
	.btn-hamburger.active .btn-hamburger__inner.-middle {
		display: none;
	}
	.btn-hamburger.active .btn-hamburger__inner.-bottom {
		transform: translateY(-2px) rotate(-45deg);
		margin-top: 1px;
	}
}

.section-main {
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	color: #FFFFFF;
	padding: 180px 0 129px;
}

.section-main .container {
	display: flex;
	align-items: center;
}

.section-main h1 {
	font-weight: 700;
	font-size: 54px;
	line-height: 140%;
	display: flex;
	flex-direction: column;
	margin-right: 100px;
}

.section-main h1 span {
	position: relative;
	width: fit-content;
}

.section-main h1 span:after {
	content: '';
	position: absolute;
	display: block;
	width: 100%;
	height: 8px;
	background: #D6AA6D;
	bottom: -8px;
	left: 0;
}

.section-main h1 small {
	margin-top: 15px;
	font-weight: 400;
	font-size: 54px;
	line-height: 130%;
}

.section-main__buttons {
	display: flex;
}

.section-main__buttons .btn {
	margin: 0 15px;
}

@media (max-width: 1199px) {
	.section-main h1 {
		font-size: 50px;
		margin-right: 70px;
	}
	.section-main h1 small {
		font-size: 50px;
	}
}

@media (max-width: 991px) {
	.section-main .container {
		flex-direction: column;
	}
	.section-main h1 {
		margin-right: 0;
		font-size: 45px;
		text-align: center;
		align-items: center;
	}
	.section-main h1 small {
		font-size: 45px;
	}
}

@media (max-width: 767px) {
	.section-main {
		padding-bottom: 15px;
	}
	.section-main h1 {
		font-size: 30px;
		line-height: 140%;
		margin-bottom: 40px;
	}
	.section-main h1 span:after {
		height: 5px;
	}
	.section-main h1 small {
		font-size: 30px;
		line-height: 140%;
	}
	.section-main__buttons {
		flex-direction: column;
		align-items: center;
	}
	.section-main__buttons .btn + .btn {
		margin-top: 20px;
	}
}

.section-main.-service .container {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.section-main.-service h1 {
	margin-right: auto;
	margin-left: auto;
	align-items: center;
}

@media (max-width: 767px) {
	.section-main.-service {
		height: 100vh;
		padding-top: 15px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
}

.section {
	padding: 120px 0;
	position: relative;
}

.section.-sm {
	padding: 100px 0;
}

.section.-white {
	background: #FFFFFF;
}

.section.-thank-you {
	padding-top: 140px;
	min-height: 789px;
	background: #EEF2F5;
}

.section.-thank-you .container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left: 100px;
	margin-top: 40px;
	position: relative;
	z-index: 1;
}

.section.-thank-you h2 {
	max-width: 584px;
}

@media (max-width: 1199px) {
	.section.-thank-you .container {
		padding-left: 15px;
		margin-top: 0;
	}
}

@media (max-width: 991px) {
	.section.-thank-you {
		background: #F0F4F7;
	}
	.section.-thank-you h2 {
		max-width: 375px;
	}
}

@media (max-width: 767px) {
	.section {
		padding: 60px 0;
	}
	.section.-sm {
		padding: 60px 0;
	}
	.section.-thank-you {
		min-height: 680px;
		padding-top: 60px;
		text-align: center;
	}
	.section.-thank-you h2 {
		max-width: 100%;
	}
	.section.-thank-you p {
		max-width: 100% !important;
	}
}

.section-title {
	margin-bottom: 50px;
	position: relative;
	z-index: 0;
}

.section-title:first-child {
	margin-top: 0;
}

.section-title.font-xl {
	font-weight: 600;
	font-size: 45px;
	line-height: 130%;
}

@media (max-width: 767px) {
	.section-title {
		margin-bottom: 30px;
	}
	.section-title.font-xl {
		font-size: 30px;
		line-height: 140%;
	}
}

.section-button {
	margin-top: 40px;
}

.section-form {
	background: url(../img/bg-section-form.jpg) center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	color: #FFFFFF;
	padding: 87px 0;
}

.section-form .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.section-form__title {
	font-weight: 600;
	font-size: 45px;
	line-height: 130%;
	margin-left: 130px;
	max-width: 500px;
}

@media (max-width: 1199px) {
	.section-form__title {
		margin-left: 0;
		margin-right: 50px;
		max-width: 100%;
	}
}

@media (max-width: 767px) {
	.section-form .container {
		flex-direction: column;
	}
	.section-form__title {
		margin-right: 0;
		font-size: 24px;
		line-height: 140%;
	}
}

.section-404 {
	padding: 80px 0 120px;
	background: #FFFFFF;
}

.section-404 .section-title {
	margin: 0;
}

.section-404 .container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

@media (max-width: 767px) {
	.section-404 {
		padding: 60px 0 80px;
	}
	.section-404 .section-title {
		margin-bottom: 30px;
	}
}

.form-container {
	width: 342px;
	flex-shrink: 0;
	background: #F9F9F9;
	backdrop-filter: blur(38px);
	color: #100F0E;
	padding: 30px;
}

.form-container h3 {
	margin-top: 10px;
	margin-bottom: 30px;
}

@media (max-width: 767px) {
	.form-container h3 {
		font-size: 24px;
		line-height: 130%;
	}
}

@media (max-width: 449px) {
	.form-container {
		width: auto;
	}
}

.wpcf7-form .btn {
	width: 100%;
	margin-top: 35px;
}

.wpcf7-form .wpcf7-spinner {
	position: absolute;
	left: calc(50% - 12px);
	margin-left: 0;
	margin-right: 0;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: red;
}

.wpcf7 form .wpcf7-response-output {
	font-size: 14px;
	line-height: 1.4;
}

.wpcf7 .wpcf7-not-valid-tip {
	font-size: .8em;
}

.form-group {
	margin-bottom: 25px;
}

.form-control {
	border: none;
	border-bottom: 1px solid #A4A8B8;
	border-radius: 0;
	background: none;
	outline: none !important;
	width: 100%;
	padding: 6px 0;
}

.form-control::placeholder {
	color: #686868;
}

.select2.select2-container {
	width: 100% !important;
}

.select2.select2-container--default .select2-selection--single .select2-selection__arrow b {
	border: none;
	background: url(../img/arrow-down.svg) center no-repeat;
	width: 20px;
	height: 26px;
	top: 0;
	left: 0;
	margin: 0;
	transition: all 3ms ease-out;
}

.select2.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
	transform: rotate(180deg);
}

.select2.select2-container--default .select2-selection--single {
	border: none;
	border-bottom: 1px solid #A4A8B8;
	background: none;
	outline: none !important;
	width: 100%;
	padding: 6px 0;
	border-radius: 0;
}

.select2.select2-container .select2-selection--single .select2-selection__rendered {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding-left: 0;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
	margin: 0;
}

.select2-results__option--selectable {
	margin: 0;
}

.select2-results__option--selectable:before {
	display: none;
}

.select2-container {
	z-index: 10001;
}

.select2-results__options .select2-results__option {
	font-size: 14px;
	line-height: 1.4;
}

.select2-results__options .select2-results__option:not(:last-child) {
	border-bottom: 1px solid #A4A8B8;
}

.select2-results__options .select2-results__option:first-child {
	display: none;
}

.select2-search--dropdown {
	display: none;
}

.company-info {
	position: relative;
	padding-left: 40px;
	max-width: 400px;
	margin-top: 40px;
}

.company-info:before {
	position: absolute;
	display: block;
	content: '';
	top: 0;
	left: 0;
	height: 100%;
	width: 1px;
	background: #D6AA6D;
}

.company-info a {
	color: #100F0E;
}

.service-list {
	-webkit-column-count: 2;
	-moz-column-count: 2;
	column-count: 2;
	-webkit-column-width: 100%;
	-moz-column-width: 100%;
	column-width: 100%;
}

@media (max-width: 767px) {
	.service-list {
		-webkit-column-count: 1;
		-moz-column-count: 1;
		column-count: 1;
	}
}

li.service {
	padding: 25px 100px 30px 46px;
	margin-top: 0;
	margin-bottom: 20px;
	display: inline-block;
	width: 100%;
}

li.service:before {
	top: 28px;
	left: 20px;
}

@media (max-width: 991px) {
	li.service {
		margin-bottom: 30px;
		padding-right: 60px;
	}
}

.service {
	background: #FFFFFF;
	position: relative;
	cursor: pointer;
}

.service:hover .service__more {
	display: block;
}

.service__title {
	margin-top: 0;
	margin-bottom: 10px;
}

.service__text {
	color: #686868;
}

.service__more {
	position: absolute;
	width: 84px;
	height: 100%;
	background: url(../img/arrow-next-circle.svg) center no-repeat #D6AA6D;
	top: 0;
	right: 0;
	display: none;
	animation: fade .5s linear;
}

@media (max-width: 991px) {
	.service__more {
		width: 50px;
	}
}

@keyframes fade {
	0%, 100% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.block-image {
	display: flex;
	align-items: center;
	justify-content: center;
}

.before-after-square {
	position: relative;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}

.before-after-square img {
	z-index: 1;
}

.before-after-square:before, .before-after-square:after {
	position: absolute;
	content: '';
	display: block;
}

.before-after-square:before {
	background: #EEF0F6;
	width: 142px;
	height: 142px;
	bottom: -50px;
	left: -50px;
	z-index: 2;
}

.before-after-square:after {
	background: #F9F9F9;
	width: 206px;
	height: 206px;
	top: -50px;
	right: -40px;
	z-index: 0;
}

@media (max-width: 767px) {
	.before-after-square:before {
		bottom: 5px;
		left: -15px;
		z-index: 1;
	}
	.before-after-square:after {
		top: 5px;
		right: -15px;
	}
}

.after-square {
	position: relative;
}

.after-square img {
	z-index: 1;
}

.after-square:after {
	position: absolute;
	content: '';
	display: block;
	background: #EEF0F6;
	width: 206px;
	height: 206px;
	top: -50px;
	right: -40px;
	z-index: 0;
}

.before-square {
	position: relative;
}

.before-square img {
	z-index: 1;
}

.before-square:after {
	position: absolute;
	content: '';
	display: block;
	background: #EEF0F6;
	width: 206px;
	height: 206px;
	top: -30px;
	left: -20px;
	z-index: 0;
}

.flex {
	display: flex;
	justify-content: space-between;
}

.flex__left {
	margin-right: 50px;
	width: 50%;
}

.flex__right {
	width: 50%;
}

.flex blockquote {
	border-left: 5px solid #D6AA6D;
	padding: 20px 40px 20px 25px;
	position: relative;
	z-index: 3;
	margin: 1.5em -170px 1.5em 0;
}

.flex blockquote p {
	margin: 0;
	position: relative;
	z-index: 3;
}

.flex blockquote:before {
	position: absolute;
	content: '';
	display: block;
	background: #FFFFFF;
	opacity: 0.8;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 2;
}

.flex img {
	margin: 1.5em 0;
}

@media (max-width: 991px) {
	.flex {
		flex-direction: column;
		margin-top: -30px;
	}
	.flex.-reverse {
		flex-direction: column-reverse;
	}
	.flex.-reverse .flex__right {
		margin-top: 0;
		margin-bottom: 30px;
	}
	.flex__left {
		width: 100%;
		margin-right: 0;
	}
	.flex__right {
		width: 100%;
		margin-top: 20px;
	}
	.flex blockquote {
		margin-right: 0;
	}
}

.block-text ul {
	margin: 35px 0;
}

.block-text .btn {
	margin-top: 70px;
}

@media (max-width: 991px) {
	.block-text .btn {
		margin-top: 40px;
	}
}

@media (max-width: 767px) {
	.block-text {
		margin-top: -15px;
	}
}

.article-preview-wrap {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.article-preview-wrap.-column-3 {
	grid-template-columns: repeat(3, 1fr);
}

.article-preview-wrap.-column-3 .article-preview__image {
	height: 280px;
}

.article-preview-wrap.-column-3 .article-preview__title {
	margin-top: 25px;
}

@media (max-width: 1199px) {
	.article-preview-wrap.-column-3 .article-preview__image {
		height: 190px;
	}
}

@media (max-width: 991px) {
	.article-preview-wrap.-column-3 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 449px) {
	.article-preview-wrap.-column-3 {
		grid-template-columns: repeat(1, 1fr);
	}
	.article-preview-wrap.-column-3 .article-preview__image {
		height: 220px;
	}
	.article-preview-wrap.-column-3 .article-preview__text {
		display: none;
	}
}

.article-preview {
	margin-top: 10px;
	position: relative;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	color: #100F0E;
}

.article-preview:after {
	position: absolute;
	content: '';
	display: block;
	background: #D6AA6D;
	height: 1px;
	width: 50px;
	bottom: 0;
	left: 0;
}

.article-preview__link {
	position: absolute;
	width: 100%;
	height: 100%;
}

.article-preview__image {
	display: flex;
	height: 194px;
	align-items: stretch;
	justify-content: center;
}

.article-preview__image img {
	margin: 0;
	object-fit: cover;
}

.article-preview__title {
	margin: 15px 0;
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
}

.article-preview__text {
	margin-bottom: 25px;
}

.article-preview__text p {
	margin: 0;
}

.step-wrap {
	counter-reset: num;
	max-width: 945px;
}

.step-wrap.-color-dark {
	margin-right: 60px;
}

.step-wrap.-color-dark .step {
	min-height: 68px;
	display: flex;
	align-items: center;
}

.step-wrap.-color-dark .step__text {
	color: #100F0E;
}

@media (max-width: 991px) {
	.step-wrap.-color-dark {
		margin-right: 0;
	}
}

.step {
	counter-increment: num;
	position: relative;
	padding-left: 140px;
	font-size: 16px;
	line-height: 20px;
	margin-top: 40px;
}

.step:before {
	content: counter(num);
	color: #D6AA6D;
	background: #EEF0F6;
	width: 68px;
	height: 68px;
	position: absolute;
	left: 0;
	top: calc(50% - 34px);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-weight: 700;
	font-size: 24px;
	line-height: 130%;
}

.step:nth-child(-n+9):before {
	content: "0" counter(num);
}

.step:after {
	position: absolute;
	content: '';
	display: block;
	width: 1px;
	height: 100%;
	left: 103px;
	top: 0;
	background: #D6AA6D;
}

.step__title {
	font-weight: 500;
	line-height: 140%;
	margin-bottom: 5px;
}

.step__text {
	font-size: 18px;
	line-height: 150%;
	color: #686868;
}

@media (max-width: 767px) {
	.step {
		padding-left: 60px;
	}
	.step:before {
		width: 33px;
		height: 33px;
		font-size: 15px;
		line-height: 130%;
		top: calc(50% - 16px);
	}
	.step:after {
		left: 45px;
	}
	.step__text {
		font-size: 16px;
		line-height: 160%;
	}
}

.benefit-content {
	max-width: 60%;
}

@media (max-width: 991px) {
	.benefit-content {
		max-width: 100%;
		margin-bottom: 250px;
	}
}

@media (max-width: 767px) {
	.benefit-content {
		margin-bottom: 300px;
	}
}

.benefit-wrap {
	display: flex;
	flex-wrap: wrap;
	margin-top: -35px;
}

.benefit-wrap.-row .benefit {
	text-align: center;
	width: 33.33%;
	margin-right: 0;
	padding-left: 25px;
	padding-right: 25px;
	min-height: 168px;
}

.benefit-wrap.-row .benefit:nth-child(2) {
	border-left: 1px solid #D6AA6D;
	border-right: 1px solid #D6AA6D;
	padding-left: 40px;
	padding-right: 40px;
}

.benefit-wrap.-row .benefit__icon {
	justify-content: center;
}

.benefit-wrap.-row + .-row {
	margin-top: 30px;
	border-top: 1px solid #D6AA6D;
}

@media (max-width: 991px) {
	.benefit-wrap.-row .benefit {
		margin-left: 0;
		margin-right: 0;
	}
	.benefit-wrap.-row .benefit:nth-child(2) {
		padding-left: 25px;
		padding-right: 25px;
	}
}

@media (max-width: 767px) {
	.benefit-wrap.-row {
		flex-direction: column;
		margin-top: 0;
	}
	.benefit-wrap.-row .benefit {
		width: 100%;
		margin-top: 0;
		padding: 30px 0;
	}
	.benefit-wrap.-row .benefit:nth-child(2) {
		border-right: none;
		border-left: none;
	}
	.benefit-wrap.-row .benefit + .benefit {
		border-top: 1px solid #D6AA6D;
	}
	.benefit-wrap.-row + .-row {
		border-top: 1px solid #D6AA6D;
		margin-top: 0;
	}
}

@media (max-width: 449px) {
	.benefit-wrap {
		flex-direction: column;
	}
}

.benefit {
	margin-right: 70px;
	margin-top: 35px;
	width: calc(50% - 70px);
	z-index: 1;
}

.benefit__icon {
	display: flex;
	align-items: center;
	height: 50px;
}

.benefit__text {
	margin-top: 15px;
}

@media (max-width: 991px) {
	.benefit {
		margin-right: 25px;
		margin-left: 25px;
		width: calc(50% - 50px);
	}
}

@media (max-width: 449px) {
	.benefit {
		width: 100%;
		margin-right: 0;
		margin-left: 0;
		text-align: center;
	}
	.benefit__icon {
		justify-content: center;
	}
}

.banner-form {
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	color: #FFFFFF;
	padding: 70px 0;
}

.banner-form__title {
	font-size: 45px;
	line-height: 130%;
	max-width: 810px;
	margin: 0 auto 1.03em;
}

.banner-form .btn {
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 767px) {
	.banner-form {
		padding: 90px 0;
	}
	.banner-form__title {
		font-size: 24px;
		line-height: 140%;
		font-weight: 500;
		margin-bottom: 40px;
	}
}

.image-pos {
	position: absolute;
	max-height: -webkit-fill-available;
	overflow: hidden;
	display: flex;
}

.image-pos.-man {
	right: 0;
	top: 0;
	z-index: 0;
}

.image-pos.-man img {
	max-width: 100%;
	max-height: 100%;
}

.image-pos.-thank-you {
	height: -webkit-fill-available;
	right: -230px;
	bottom: 0;
	z-index: 0;
	align-items: flex-end;
	overflow: inherit;
}

@media (max-width: 1869px) {
	.image-pos.-man {
		right: -100px;
	}
}

@media (max-width: 1669px) {
	.image-pos.-man {
		right: -150px;
	}
}

@media (max-width: 1599px) {
	.image-pos.-man {
		right: -200px;
	}
	.image-pos.-thank-you {
		right: -350px;
	}
}

@media (max-width: 1499px) {
	.image-pos.-man {
		right: -290px;
	}
	.image-pos.-thank-you {
		right: -430px;
	}
}

@media (max-width: 1299px) {
	.image-pos.-man {
		right: -350px;
	}
}

@media (max-width: 1199px) {
	.image-pos.-man {
		bottom: 0;
		top: auto;
		height: 63%;
		right: -150px;
	}
	.image-pos.-thank-you {
		right: -540px;
	}
}

@media (max-width: 991px) {
	.image-pos.-man {
		height: auto;
		right: calc(50% - 172px);
		left: calc(50% - 172px);
	}
	.image-pos.-thank-you {
		right: -590px;
	}
}

@media (max-width: 767px) {
	.image-pos.-thank-you {
		right: -100px;
		height: 400px;
		width: auto;
	}
}

@media (max-width: 599px) {
	.image-pos.-thank-you {
		right: -180px;
	}
}

.footer {
	margin-top: auto;
	background: #343A51;
}

.footer .logo {
	margin-left: auto;
}

.footer .logo img {
	width: 183px;
}

.footer__top {
	padding: 82px 0;
}

.footer__top .container {
	display: flex;
	justify-content: space-between;
}

.footer__col {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.footer__bottom {
	position: relative;
	padding: 15px 0;
}

.footer__bottom:before {
	position: absolute;
	display: block;
	content: '';
	height: 1px;
	width: auto;
	top: 0;
	left: 50px;
	right: 50px;
	background: #A4A8B8;
}

.footer__bottom .container {
	display: flex;
	justify-content: center;
	align-items: center;
}

@media (max-width: 767px) {
	.footer .logo {
		margin-left: 0;
		order: 1;
	}
	.footer .contacts,
	.footer .address,
	.footer .email {
		margin-bottom: 30px;
	}
	.footer .socials {
		margin-bottom: 60px;
		order: 0;
	}
	.footer .email {
		order: -1;
	}
	.footer__top {
		padding: 60px 0;
	}
	.footer__top .container {
		flex-direction: column;
	}
	.footer__bottom {
		padding: 30px 0;
	}
	.footer__bottom:before {
		left: 15px;
		right: 15px;
	}
	.footer__bottom .container {
		flex-direction: column-reverse;
		align-items: flex-start;
	}
	.footer__bottom .menu-resources {
		flex-direction: column;
	}
}

.address-wrap {
	display: flex;
	flex-direction: column;
}

.address {
	color: #FFFFFF;
	line-height: 130%;
	text-decoration: none;
	padding-left: 30px;
	background: url(../img/address-icon.svg) left center no-repeat;
}

.socials {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
}

.socials a {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 24px;
}

.socials a:hover img, .socials a:focus img {
	filter: invert(55%) sepia(42%) saturate(741%) hue-rotate(358deg) brightness(134%) contrast(88%);
}

@media (max-width: 767px) {
	.socials {
		justify-content: flex-start;
	}
	.socials a {
		margin-left: 0;
		margin-right: 24px;
	}
}

.copyright {
	color: #FFFFFF;
	font-size: 14px;
	line-height: 160%;
}

@media (max-width: 767px) {
	.copyright {
		color: #D6AA6D;
	}
}

.menu-resources {
	list-style: none;
	padding-left: 0;
	margin: 0;
	display: flex;
	align-items: center;
}

.menu-resources li {
	margin: 0 0 0 30px;
	padding-left: 0;
}

.menu-resources li:before {
	display: none;
}

.menu-resources a {
	color: #FFFFFF;
	text-decoration: none;
	font-size: 14px;
	line-height: 17px;
}

@media (max-width: 767px) {
	.menu-resources {
		align-items: flex-start;
	}
	.menu-resources li {
		margin-left: 0;
		margin-bottom: 10px;
	}
}

.category-list {
	list-style: none;
	padding-left: 0;
	display: flex;
	flex-wrap: wrap;
}

.category-list li {
	padding: 10px 20px;
	margin-right: 15px;
	margin-top: 11px;
	margin-bottom: 0;
	background: #F9F9F9;
	color: #686868;
	cursor: pointer;
}

.category-list li:before {
	display: none;
}

.category-list li:hover, .category-list li:focus {
	background: #D6AA6D;
	color: #FFFFFF;
}

.article {
	font-size: 18px;
	line-height: 170%;
	max-width: 780px;
	margin-left: auto;
	margin-right: auto;
}

.article blockquote {
	background: #FFFFFF;
	border-left: 5px solid #D6AA6D;
	margin: 1.5em 0;
	padding: 20px 20px 20px 25px;
	font-weight: 500;
	font-size: 16px;
	line-height: 170%;
}

.article blockquote p {
	margin: 0;
}

.article figure {
	margin: 2.5em 0;
}

@media (max-width: 767px) {
	.article p {
		font-size: 16px;
		line-height: 160%;
	}
}

.block-contacts {
	display: flex;
}

.block-contacts__info {
	background: #FFFFFF;
	display: flex;
	flex-direction: column;
	max-width: 472px;
	padding: 50px;
}

.block-contacts__info .contacts a,
.block-contacts__info .address,
.block-contacts__info .email {
	color: #100F0E;
}

.block-contacts__info .contacts {
	margin-bottom: 35px;
}

.block-contacts__info .email {
	font-weight: 500;
	margin-bottom: 35px;
}

.block-contacts__info .email:after {
	background: #100F0E;
}

.block-contacts__info .address:not(:last-child) {
	margin-bottom: 20px;
}

.block-contacts__info .socials {
	justify-content: flex-start;
	margin-top: 35px;
}

.block-contacts__info .socials a {
	margin-left: 0;
	margin-right: 24px;
}

.block-contacts__map {
	display: flex;
	overflow: hidden;
}

@media (max-width: 991px) {
	.block-contacts {
		flex-direction: column;
	}
	.block-contacts__info {
		max-width: 100%;
	}
}

@media (max-width: 767px) {
	.block-contacts__info {
		padding: 15px;
	}
	.block-contacts__info .socials {
		margin-top: 0;
		margin-bottom: 35px;
	}
	.block-contacts .address-wrap {
		order: 1;
	}
}

.block-contacts-form {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: url(../img/bg-contact-form.jpg) center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	color: #FFFFFF;
	padding: 87px 150px;
}

.block-contacts-form h2 {
	font-weight: 600;
	font-size: 45px;
	line-height: 130%;
	max-width: 330px;
}

@media (max-width: 1199px) {
	.block-contacts-form {
		padding-left: 50px;
		padding-right: 50px;
	}
}

@media (max-width: 991px) {
	.block-contacts-form {
		flex-direction: column;
		padding: 50px;
	}
	.block-contacts-form h2 {
		max-width: 100%;
		text-align: center;
		margin-top: 0;
		margin-bottom: 0;
	}
	.block-contacts-form img {
		margin: 30px 0;
	}
}

@media (max-width: 767px) {
	.block-contacts-form {
		padding: 60px 15px 15px 15px;
		margin-left: -15px;
		margin-right: -15px;
		margin-top: 60px;
	}
	.block-contacts-form h2 {
		font-size: 24px;
		line-height: 140%;
	}
	.block-contacts-form img {
		width: 90px;
		height: 90px;
	}
}

.popbox {
	background: rgba(43, 43, 42, 0.9) !important;
	padding-top: 18px !important;
}

.popbox:not(.opened) {
	display: none;
}

.popbox.opened {
	display: flex !important;
	align-items: center;
	justify-content: center;
}

.popbox .popbox_container {
	background: none;
	padding: 0;
	margin: 0 auto;
	max-width: none;
}

.popbox__close {
	position: absolute;
	top: 24px;
	right: 24px;
	content: '';
	display: block;
	background: url(../img/close-black.svg) center no-repeat;
	width: 16px;
	height: 16px;
	border: none;
	cursor: pointer;
}

.popbox .form-container {
	position: relative;
}

@media (max-width: 767px) {
	.popbox .form-container {
		margin: auto;
	}
}

@media (max-width: 767px) {
	.page-service .section-title.font-xl {
		font-size: 24px;
		line-height: 130%;
	}
	.page-service .flex .block-image {
		height: 315px;
	}
	.page-service .flex .block-image img {
		height: inherit;
	}
	.page-service .before-square:after {
		top: -20px;
		left: 80px;
	}
	.page-service .after-square:after {
		top: -20px;
		right: 80px;
	}
}

@media (max-width: 549px) {
	.page-service .before-square:after {
		left: 20px;
	}
	.page-service .after-square:after {
		right: 20px;
	}
}

@media (max-width: 449px) {
	.page-service .before-square:after {
		left: -15px;
	}
	.page-service .after-square:after {
		right: -15px;
	}
}

/*# sourceMappingURL=style.css.map */