@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
	--default-color: #1c1c1c;
	--black-color: #000;
	--accent-color: #C74313;
	--gray-color: #584E44;
	--gray1-color: #666;
	--gray2-color: #E0E0E0;
	--dark-beige-color: #A39082;
	--bg-color: #CBBBAB;
}

/* Scroll Bar */
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}
::-webkit-scrollbar-track-piece {
	background-color: transparent;
	-webkit-border-radius: 8px;
}
::-webkit-scrollbar-thumb:vertical {
	height: 8px;
	background-color: var(--accent-color);
	-webkit-border-radius: 5px;
}
::-webkit-scrollbar-thumb:horizontal {
	width: 8px;
	background-color: var(--accent-color);
	-webkit-border-radius: 5px;
}
@keyframes grow {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(2.5);
	}
}
@keyframes grow-arrow {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.3);
	}
}
@-webkit-keyframes jittery {
	5%, 50% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
	10% {
		-webkit-transform: scale(.95);
		transform: scale(.95)
	}
	15% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05)
	}
	20% {
		-webkit-transform: scale(1.05) rotate(-5deg);
		transform: scale(1.05) rotate(-5deg)
	}
	25% {
		-webkit-transform: scale(1.05) rotate(5deg);
		transform: scale(1.05) rotate(5deg)
	}
	30% {
		-webkit-transform: scale(1.05) rotate(-3deg);
		transform: scale(1.05) rotate(-3deg)
	}
	35% {
		-webkit-transform: scale(1.05) rotate(2deg);
		transform: scale(1.05) rotate(2deg)
	}
	40% {
		-webkit-transform: scale(1.05) rotate(0);
		transform: scale(1.05) rotate(0)
	}
}
@keyframes jittery {
	5%, 50% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
	10% {
		-webkit-transform: scale(.95);
		transform: scale(.95)
	}
	15% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05)
	}
	20% {
		-webkit-transform: scale(1.05) rotate(-5deg);
		transform: scale(1.05) rotate(-5deg)
	}
	25% {
		-webkit-transform: scale(1.05) rotate(5deg);
		transform: scale(1.05) rotate(5deg)
	}
	30% {
		-webkit-transform: scale(1.05) rotate(-3deg);
		transform: scale(1.05) rotate(-3deg)
	}
	35% {
		-webkit-transform: scale(1.05) rotate(2deg);
		transform: scale(1.05) rotate(2deg)
	}
	40% {
		-webkit-transform: scale(1.05) rotate(0);
		transform: scale(1.05) rotate(0)
	}
}
@-webkit-keyframes heartbeat {
	50% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05)
	}
}
@keyframes heartbeat {
	50% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05)
	}
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
*:before, *:after {
	box-sizing: border-box;
}
html, body {
	width: 100%;
	overflow-x: hidden;
}
body {
	background: #fff;
	margin: 0;
	padding: 0;
	position: relative;
	min-height: 100%;
	font: 16px/1.5 'Open Sans', sans-serif;
	color: var(--default-color);
}
ul, li {
	list-style: none;
	margin: 0;
	padding: 0;
}
a {
	color: var(--default-color);
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
input, button, select, textarea {
	margin: 0;
	padding: 0;
	outline: none;
	border: none;
	font-family: 'Open Sans', sans-serif;
}
button, a {
	cursor: pointer;
	transition: 300ms;
}
table {
	border-collapse: collapse;
	width: 100%;
}
img {
	max-width: 100%;
}
.maxwidth {
	min-width: 375px;
}
.fixed {
	width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
	max-width: 100%;
}
.fixed--wide {
	padding: 0;
	width: auto;
}
.flex {
	display: flex;
	flex-wrap: wrap;
}
.grid {
	display: grid;
}
.section-title,
.section-title * {
	font: 500 20px/1.2 'Montserrat', sans-serif;
}
.section-title * {
	margin: 0;
	padding: 0;
}
.section-title--semibold,
.section-title--semibold * {
	font-weight: 600;
}
.section-title--48,
.section-title--48 * {
	font-size: 48px;
}
.section-title--40,
.section-title--40 * {
	font-size: 40px;
}
.section-title--32,
.section-title--32 * {
	font-size: 32px;
}
.section-title--28,
.section-title--28 * {
	font-size: 28px;
}
.section-title--26,
.section-title--26 * {
	font-size: 26px;
}
.section-subtitle {
	font-size: 16px;
}
.section-subtitle p:not(:last-child) {
	margin-bottom: 8px;
}
.section-toptitle {
	font-size: 16px;
	color: var(--black-color);
	line-height: 1.3;
	margin-bottom: 8px;
}
.section-top {
	align-items: flex-end;
}
.section-top--margin {
	margin-bottom: 48px;
}
.section-all {
	padding-bottom: 8px;
}
.section-top__col--1 {
	flex: 1;
}
.section-top__col--2 {
	flex-shrink: 0;
}
.section--gray {
	background: #FAFAFA;
}
.arrow-link {
	gap: 8px;
	align-items: center;
	text-decoration: none;
	color: var(--black-color);
	font-size: 16px;
	line-height: 1.3;
}
.arrow-link__arrow {
	transition: 300ms;
}
.arrow-link__arrow svg {
	width: 23px;
}
.arrow-link__arrow svg path {
	transition: 300ms;
}
.arrow-link:hover {
	color: var(--accent-color);
	text-decoration: none;
}
.arrow-link:hover .arrow-link__arrow {
	transform: translateX(2px);
}
.arrow-link:hover .arrow-link__arrow svg path {
	fill: var(--accent-color);
}
.btn {
	background: var(--accent-color)!important;
	align-items: center;
	justify-content: center;
	padding: 15px 24px;
	color: #fff!important;
	transition: 300ms;
	text-align: center;
	text-decoration: none!important;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	max-width: 100%;
	border-radius: 10px;
	border: 1px solid transparent;
	min-width: 134px;
	box-shadow: none!important;
}
.btn_arrow > svg > path {
	transition: 300ms;
}
.btn__arrow {
	transform: translateY(1px);
}
.btn--with-arrow .btn__arrow {
	margin-left: 10px;
}
.btn:hover {
	background: var(--black-color)!important;
	color: #fff!important;
	border-color: var(--black-color)!important;
}
.btn--white {
	background: #fff!important;
	color: var(--gray-color)!important;
	border-color: rgba(88, 78, 68, 0.1)!important;
}
.btn--white:hover {
	background: var(--black-color)!important;
	color: #fff!important;
	border-color: var(--black-color)!important;
}
.btn--gray {
	background: var(--gray-color)!important;
	color: var(--bg-color)!important;
}
.btn--gray:hover {
	background: var(--black-color)!important;
	color: #fff!important;
	border-color: var(--black-color)!important;
}
.image img {
	display: block;
}
.image-responsive {
	height: 0;
	position: relative;
	padding-bottom: 52.6%;
}
.image-responsive--vertical {
	padding-bottom: 130%;
}
.image-responsive--big {
	padding-bottom: 81.1%;
}
.image-responsive__image {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
}
.input-class {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.1);
	display: block;
	width: 100%;
	height: 50px;
	padding: 0 18px;
	border-radius: 12px;
	transition: 300ms;
	text-align: left;
}
textarea.input-class {
	height: 94px;
	padding: 13px 18px;
	resize: none;
}
.input-class:focus {
	border-color: var(--red-color);
}
.is-table {
	width: 100%;
	border: none;
	border-collapse: collapse;
}
.is-table th,
.is-table td {
	font-size: 13px;
	text-align: center;
	font-weight: 400;
	border-left: 1px solid rgba(0, 0, 0, 0.3);
}
.is-table th:first-child,
.is-table td:first-child {
	text-align: left;
	border-left: none;
}
.is-table th {
	background: #E0E0E0;
	font-size: 14px;
	padding: 14px 18px;
}
.is-table td {
	padding: 8px 18px;
}
.is-table tbody tr:nth-child(2n) {
	background: #E0E0E0;
}
.is-text > * {
	margin-top: 15px;
}
.is-text > *:first-child {
	margin-top: 0;
}
.is-text ol li {
	list-style: numeric outside;
}
.is-text ul li {
	list-style: disc outside;
}
.is-text ol {
	margin-left: 14px;
}
.is-text ul  {
	margin-left: 16px;
}
.is-text *:not(ul):not(ol) + ul,
.is-text *:not(ul):not(ol) + ol {
	margin-top: 0;
}
.is-text h1 {
	font-size: 32px;
	font-weight: bold;
}
.is-text h2 {
	font-size: 24px;
	font-weight: bold;
}
.is-text h3 {
	font-size: 18px;
	font-weight: bold;
}
.is-text h4 {
	font-size: 16px;
	font-weight: bold;
}
.is-text h5 {
	font-size: 16px;
	font-weight: bold;
}
.is-text h6 {
	font-size: 16px;
	font-weight: bold;
}
.is-text a {
	color: #004CFF;
	text-decoration: underline;
}
.is-text a:hover {
	text-decoration: none;
}
.is-text img {
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	display: block;
}
.logo {
	position: relative;
	max-width: unset!important;
	height: unset!important;
}
.logo__image {
	display: block;
}
.logo__link {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.head {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 10;
	color: #fff;
	transition: 300ms;
}
.head__logo {
	transition: 300ms;
}
.head__logo .logo__image {
	width: 178px;
}
.head__top {
	padding: 12px 0;
	align-items: center;
}
.head__top-col--2 {
	margin-left: auto;
}
.head__items {
	gap: 10px 0;
}
.head__item {
	align-items: center;
	margin-right: 16px;
}
.head__item:last-child {
	margin: 0;
}
.head__item--city {
	margin-right: 20px;
}
.head__item-ico {
	margin-right: 8px;
}
.head__item-text {
	color: #fff;
	font-size: 13px;
	line-height: 1.2;
}
.head__item-link {
	color: #fff!important;
	transition: 300ms;
}
.head__item-cont {
	align-items: center;
}
.head__item-arrow {
	margin-left: 8px;
	transform: translateY(-2px);
}
.head__item--phone .head__item-ico {
	transform: translateY(1px);
}
.head__item--phone .phones__inner > .phones__phone-link {
	font-size: 13px;
	font-weight: 400;
	color: #fff;
}
.head__item--phone svg path {
	fill: #fff;
}
.head__item--vk .head__item-ico {
	transform: translateY(-1px);
}
.head__main {
	background: #fff;
	border-radius: 10px;
	justify-content: space-between;
	align-items: center;
	padding: 16px 16px 16px 30px;
	transition: 300ms;
	gap: 0 30px;
}
.head__main-col--1,
.head__main-col--3 {
	flex-shrink: 0;
}
.head__main-col--2 {
	flex: 1;
}
.head__menu {
	gap: 10px 15px;
	justify-content: space-between;
	max-width: 723px;
	margin: 0 auto;
}
.head__menu-item {
	position: relative;
	margin: 0;
	padding: 0;
}
.head__menu-link {
	color: var(--black-color);
	font: 500 12px/1.3 'Montserrat', sans-serif;
	text-transform: uppercase;
	position: relative;
}
.head__menu-link > svg {
	margin-left: 6px;
	transform: translateY(-1px);
}
.head__menu-link > svg > path {
	fill: var(--black-color);
}
.head__menu-link:after {
	content: '';
	background: var(--accent-color);
	position: absolute;
	width: 0;
	height: 1px;
	top: calc(100% + 1px);
	left: 0;
	transition: 300ms;
}
.head__menu-item:hover .head__menu-link {
	color: var(--accent-color);
	text-decoration: none;
}
.head__menu-item:hover .head__menu-link:after {
	width: 100%;
}
.head__menu-item--active .head__menu-link {
	color: var(--accent-color);
}
.head__menu-dropdown {
	position: absolute;
	top: 100%;
	left: -15px;
	z-index: 5;
	padding: 7px 0 0 0;
	min-width: 140px;
	opacity: 0;
	transform: scaleY(0);
	transition: 300ms;
	visibility: hidden;
	transform-origin: 50% 0;
}
.head__menu-dropdown-items {
	background: #fff;
	border-radius: 4px;
	padding: 8px 0;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.17);
}
.head__menu-dropdown-link {
	padding: 5px 15px;
	color: var(--default-color);
	font-size: 12px;
	display: block;
}
.head__menu-dropdown-link:hover {
	background: var(--accent-color);
	color: #fff;
	text-decoration: none;
}
.head__menu-item:hover .head__menu-dropdown {
	opacity: 1;
	transform: scaleY(100%);
	visibility: visible;
}
.head__logo {
	transition: 300ms;
}
.head__logo:hover {
	transform: translateY(-2px);
}
.head {
	padding-top: 10px;
}
.head__mob {
	display: none;
	margin: 0 -20px;
}
.head__mob-main {
	width: 100%;
	background: rgba(65, 65, 65, 0.4);
	backdrop-filter: blur(62px);
	align-items: center;
	padding: 17px 20px;
	justify-content: space-between;
	height: 80px;
}
.head__mob .logo__image {
	width: 158px;
}
.head_mob-call-btn {
	width: 47px;
	height: 40px;
	align-items: center;
	justify-content: center;
}
.head__burger {
	width: 47px;
	height: 40px;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	cursor: pointer;
	position: relative;
	transition: 300ms;
	display: none;
}
.head__burger-in {
	display: grid;
	grid-template-columns: 100%;
	gap: 4px 0;
}
.head__burger-in > div {
	background: #000;
	width: 22px;
	height: 2px;
	border-radius: 2px;
}
.head__burger-in > div:last-child {
	width: 17px;
}
.body--mobile-open .head__breadcrumbs {
	display: none;
}
.head__mmenu {
	margin-bottom: 30px;
}
.head__mmenu-link {
	display: block;
	padding: 9px 0;
	font-size: 18px;
	color: #fff;
	font-weight: 500;
	position: relative;
}
.head__mmenu-dropdown {
	display: none;
}
.head__mmenu-link > svg {
	display: none;
}
.head__mcall .head_call-btn {
	width: 100%;
}
.head__mcontacts {
	margin-top: 39px;
}
.head__mcontacts .head__item {
	width: 100%;
	position: relative;
	margin: 0;
}
.head__mcontacts .head__item-arrow {
	display: none;
}
.head__mmenu-link:after,
.head__mcontacts .head__item:after {
	content: '';
	background: url(../img/marrow.svg) no-repeat;
	width: 6px;
	height: 8px;
	position: absolute;
	right: 0;
	top: 50%;
	margin: -4px 0 0 0;
}
.head__mfooter {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin: 50px -36px 0 -36px;
	padding: 30px 23px;
}
.head__mfooter .head__item--phone {
	display: none;
}
.head__mfooter .head__items {
	justify-content: space-between;
}
.head__mfooter .head__item {
	margin: 0;
}
.slider {
	position: relative;
}
.slider--with-dots .slick-dots {
	position: absolute;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	left: 50%;
	transform: translateX(-50%);
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	padding: 13px 15px;
	bottom: 0;
}
.slider--with-dots .slick-dots > li {
	background: rgba(130, 130, 130, 0.1);
	width: 10px;
	height: 10px;
	cursor: pointer;
	border-radius: 50px;
	position: relative;
	overflow: hidden;
	transition: 300ms;
}
.slider--with-dots .slick-dots > li button {
	display: none;
}
.slider--with-dots .slick-dots > li.slick-active {
	width: 21px;
}
.slider--with-dots .slick-dots > li.slick-active:before,
.slider--with-dots .slick-dots > li:hover:before {
	content: '';
	background: var(--accent-color);
	width: 10px;
	height: 10px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 50px;
	transition: 300ms;
}
.slider--with-dots .slick-dots > li:hover {
	width: 21px;
}
.slider--with-dots .slick-dots > li:hover:before {
	width: 100%;
}
.slider--with-dots {
	padding-bottom: 85px;
}
.slider__arrow {
	background: var(--bg-color);
	position: absolute;
	bottom: 0;
	right: calc((100% - 1360px) / 2);
	height: 37px;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	font-size: 16px;
	gap: 0 8px;
	transition: 300ms;
	border-radius: 4px;
	width: 128px;
	color: var(--gray-color);
}
.slider__arrow--prev {
	right: calc(((100% - 1360px) / 2) + 138px);
}
.slider__arrow:hover {
	background: #000!important;
	color: #fff!important;
}
.slider__arrow.slick-disabled {
	opacity: 0.7;
}
.slider__arrow svg {
	transform: translateY(1px);
}
.first__items {
	padding-bottom: 0;
}
.first__item {
	position: relative;
	padding-bottom: 208px;
}
@media(min-width: 768px) {
	.first__item-image {
		background: var(--bg-color)!important;
	}
}
@media(min-width: 1440px) {
	.first__item-image {
		height: 900px;
		padding: 0;
	}
}
.first__item-image img {
	object-fit: cover;
}
.first__items .slick-arrow {
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(5px);
	border-radius: 50px;
	width: 54px;
	height: 54px;
	font-size: 0;
	top: 35%;
	cursor: pointer;
	position: absolute;
	z-index: 20;
	transition: 300ms;
	border: 1px solid rgba(255, 255, 255, 0.1);
}
.first__items .slick-prev {
	left: calc((100% - 1360px) / 2);
}
.first__items .slick-next {
	right: calc((100% - 1360px) / 2);
}
.first__items .slick-arrow:before {
	content: '';
	background: url(../img/farrow.svg) no-repeat center;
	width: 100%;
	height: 100%;
	display: block;
}
.first__items .slick-prev:before {
	transform: rotate(180deg);
}
.first__items .slick-arrow:hover {
	transform: scale(0.95);
}
.first__item-spec {
	position: absolute;
	top: 194px;
	width: 100%;
	left: 0;
	z-index: 10;
}
.first__item-spec-image > img {
	display: block;
	width: 163px;
	transform: rotate(-20.11deg);
}
.first__item-bottom {
	position: absolute;
	bottom: 134px;
	width: 100%;
	left: 0;
	z-index: 10;
}
.first__item-box {
	background: #fff;
	box-shadow: 0px 134px 53px rgba(0, 0, 0, 0.01), 0px 75px 45px rgba(0, 0, 0, 0.05), 0px 33px 33px rgba(0, 0, 0, 0.09), 0px 8px 18px rgba(0, 0, 0, 0.1);
	border-radius: 24px;
	padding: 0 10px 14px 10px;
}
.first__item-col--1 {
	flex: 0 0 37.4%;
}
.first__item-col--2 {
	flex: 1;
}
.first__item-im img {
	display: block;
}
.first__item-cont {
	padding: 24px 0 0 20px;
}
.first__item-title {
	color: var(--gray-color);
}
.first__item-subtitle {
	font-size: 14px;
	margin-top: 11px;
}
.first__item-actions {
	margin-top: 38px;
	gap: 8px;
}
.first__items .slick-dots {
	border: none;
	bottom: 440px;
}
.first__items .slick-dots > li {
	background: rgba(130, 130, 130, 0.3);
}
.first__items .slick-dots > li.slick-active:before,
.first__items .slick-dots > li:hover:before {
	background: #fff;
}
.first__form {
	margin-top: -112px;
	position: relative;
	z-index: 5;
	border-top: 1px solid var(--bg-color);
	border-bottom: 1px solid var(--bg-color);
	padding: 30px 0;
}
.first__form-row {
	align-items: center;
}
.first__form-col--1 {
	flex: 1;
}
.first__form-col--2 {
	flex-shrink: 0;
}
.first__form-left {
	gap: 15px 40px;
	align-items: center;
}
.first__form-social {
	gap: 13px;
}
.social {
	align-items: center;
}
.social__item svg {
	display: block;
}
.social__item svg path {
	transition: 300ms;
}
.social__item:hover svg path {
	fill: var(--black-color);
}
.phone-block {
	align-items: center;
	gap: 12px;
}
.phone-block__ico svg {
	display: block;
}
.phone-block__text a {
	transition: 300ms;
}
.phone-block__text a:hover {
	color: var(--accent-color);
	text-decoration: none;
}
.first__form-phone-text {
	font-size: 20px;
}
.services__in {
	padding: 96px 0 80px 0;
}
.service-items {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
	gap: 20px;
}
.service-item__box {
	background: var(--bg-color);
	position: relative;
	height: 100%;
	border-radius: 8px;
	overflow: hidden;
}
.service-item__image {
	padding-bottom: 43%;
}
.service-item__link {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
}
.service-item__cont {
	background: var(--bg-color);
	width: 100%;
	height: auto;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 5;
	padding: 16px;;
	color: var(--gray-color);
	transition: 300ms;
}
.service-item__top {
	align-items: center;
	gap: 15px 20px;
}
.service-item__col--3 {
	flex-shrink: 0;
}
.service-item__col--2 {
	flex-shrink: 0;
}
.service-item__col--1 {
	flex: 1;
}
.service-item__prices {
	align-items: center;
	gap: 15px;
}
.service-item__price--new {
	font: 500 28px 'Montserrat', sans-serif;
}
.service-item__price--old {
	font: 500 18px 'Montserrat', sans-serif;
	color: rgba(88, 78, 68, 0.4);
	text-decoration: line-through;
}
.service-item__text {
	margin-top: 16px;
	display: none;
	transition: 300ms;
}
.service-item__more {
	position: absolute;
	bottom: 16px;
	right: 15px;
	display: none;
}
.service-item__discount {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 4;
}
.service-item__discount-box {
	background: var(--accent-color);
	border-radius: 10px;
	align-items: center;
	padding: 10px 15px;
	gap: 10px;
}
.service-item__discount-ico svg {
	width: 18px;
	display: block;
}
.service-item__discount-text {
	color: #fff;
	text-transform: uppercase;
	font: 600 14px/1.3 'Montserrat', sans-serif;
}
.services .service-item__box:hover .service-item__cont,
.services .service-item__box--always-display .service-item__cont,
.pservices .service-item__box:hover .service-item__cont,
.pservices .service-item__box--always-display .service-item__cont {
	padding-bottom: 80px;
	height: 100%!important;
}
.services .service-item__box:hover .service-item__text,
.services .service-item__box--always-display .service-item__text,
.pservices .service-item__box:hover .service-item__text,
.pservices .service-item__box--always-display .service-item__text {
	display: block;
}
.services .service-item__box:hover .service-item__more,
.services .service-item__box--always-display .service-item__more,
.pservices .service-item__box:hover .service-item__more,
.pservices .service-item__box--always-display .service-item__more {
	display: flex;
}
.service-item__box--always-display .service-item__link {
	display: none;
}
.steps__in {
	padding: 0 0 80px 0;
}
.steps__col--1 {
	flex: 0 0 412px;
}
.steps__col--2 {
	flex: 1;
	padding-left: 48px;
}
.steps__left {
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.steps__top {
	flex: 1;
	align-items: flex-start;
}
.steps__image {
	flex-shrink: 0;
}
.steps__image img {
	display: block;
	width: 100%;
}
.steps__items {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.steps__item {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	transition: 300ms;
}
.steps__item:hover {
	border-color: var(--black-color);
}
.steps__item-in {
	padding: 23px 0;
	align-items: center;
}
.steps__item-col--2 {
	flex-shrink: 0;
}
.steps__item-col--1 {
	flex: 1;
}
.steps__item-left {
	align-items: center;
	gap: 8px;
}
.steps__item-num {
	font: 500 48px/1.2 'Montserrat', sans-serif;
	color: var(--bg-color);
	width: 82px;
	text-align: center;
	transition: 300ms;
}
.steps__item-title {
	font-size: 20px;
	flex: 1;
}
.steps__item:hover .steps__item-num {
	color: var(--black-color);
}
.slider .slick-track {
	display: flex;
}
.projects__in {
	padding: 64px 0;
}
.projects__items .slick-track {
	gap: 12px;
}
.projects__item {
	width: 400px;
}
.project-item__box {
	position: relative;
}
.project-item__image {
	overflow: hidden;
	border-radius: 8px;
	padding-bottom: 80%;
}
.project-item__image img {
	transition: 300ms;
}
.project-item__cont {
	margin-top: 16px;
}
.project-item__category {
	color: var(--gray1-color);
	font-size: 14px;
}
.project-item__title {
	font-size: 20px;
	color: var(--black-color);
	margin-top: 16px;
	transition: 300ms;
}
.project-item__link {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
}
.project-item__box:hover .project-item__image img {
	transform: scale(1.03);
}
.project-item__box:hover .project-item__title {
	color: var(--accent-color);
}
.sales__in {
	padding: 80px 0;
	position: relative;
}
.sales__ico {
	position: absolute;
	top: 5px;
	right: 0;
}
.sales__ico img {
	display: block;
}
.sales__items {
	overflow: hidden;
}
.sales__items .slick-list {
	margin-left: calc((100% - 1360px) / 2);
}
.sales__items {
	width: 100%;
}
.sales__items .slick-track {
	gap: 20px;
}
.sales__item:first-child {
	margin-left: -20px;
}
.reviews__top {
	margin-bottom: 30px;
}
.reviews__block {
	position: relative;
	padding-top: 143px;
}
.reviews__bg img {
	display: block;
	width: 100%;
	height: 440px;
	object-fit: cover;
}
.reviews__cont {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 3;
}
.reviews__items {
	position: relative;
	z-index: 3;
	padding-bottom: 265px;
	margin: 0 -8px;
}
.reviews__items .slick-track {
	gap: 8px;
}
.reviews__item {
	height: unset;
}
.review-item {
	height: 100%;
}
.review-item__box {
	background: #FAFAFA;
	border-radius: 8px;
	height: 100%;
	flex-direction: column;
	overflow: hidden;
	padding: 30px;
}
.review-item__top {
	align-items: center;
	margin-bottom: 18px;
	gap: 15px;
}
.review-item__stars {
	flex-shrink: 0;
	align-items: center;
	gap: 6px;
	justify-content: flex-end;
}
.review-item__star {
	background: url(../img/star.svg) no-repeat;
	width: 18px;
	height: 17px;
}
.review-item__name {
	flex: 1;
	font: 600 24px/1.3 'Montserrat', sans-serif;
}
.review-item__text {
	font-size: 14px;
	line-height: 1.4;
}
.review-item__more {
	margin-top: 34px;
	justify-content: flex-end;
}
.reviews__items .slick-dots {
	border: none;
}
.reviews__items .slick-dots > li {
	background: rgba(130, 130, 130, 0.3);
}
.reviews__items .slick-dots > li.slick-active:before,
.reviews__items .slick-dots > li:hover:before {
	background: #fff;
}
.reviews__items .slider__arrow {
	background: #fff;
}
.about__in {
	padding: 80px 0;
}
.about__row {
	align-items: center;
}
.about__col--1 {
	flex: 1;
}
.about__col--2 {
	flex: 0 0 511px;
	padding-left: 48px;
}
.about__logo .logo__image {
	width: 228px;
}
.about__logo {
	margin-bottom: 28px;
}
.about__title {
	margin-bottom: 16px;
}
.about__more {
	margin-top: 28px;
}
.about__more-btn {
	min-width: 255px;
}
.about__image img {
	width: 100%;
	border-radius: 20px;
	display: block;
}
.feedback {
	background: url(../img/IMG_20251230_154911_896.png) no-repeat center / cover;
}
.feedback__in {
	padding: 96px 0;
}
.feedback__cont {
	max-width: 440px;
	margin-left: 115px;
}
.feedback__subtitle {
	margin: 16px 0 24px 0;
}
.feedback__form .form-control,
.modal__row .form-control {
	display: block;
	width: 100%;
	height: 45px;
	background: #FAFAFA;
	border-radius: 4px;
	padding: 0 20px;
	font-size: 16px;
	transition: 300ms;
	border: 1px solid transparent;
}
.feedback__form textarea.form-control,
.modal__row textarea.form-control {
	height: 80px;
	resize: none;
	padding: 14px 20px;
}
.feedback__form .form-control:focus,
.modal__row .form-control:focus {
	border-color: #000!important;
}
.feedback__form .form-body__fields,
.modal__row .form-body__fields {
	display: grid;
	grid-template-columns: 100%;
	gap: 8px;
}
.feedback__form .form-group > label,
.modal__row .form-group > label {
	display: block;
	font-size: 14px;
	color: var(--gray-color);
	margin-bottom: 5px;
}
.feedback__form .licence_block,
.modal__row .licence_block {
	margin: 18px 0;
}
.licence_block {
	position: relative;
}
.licence_block > input {
	position: absolute;
	opacity: 0;
}
.licence_block label {
	position: relative;
	min-height: 20px;
	padding: 0px 0 0 34px;
	font-size: 14px!important;
	cursor: pointer;
	color: var(--default-color)!important;
}
.licence_block label:before {
	content: '';
	width: 20px;
	height: 20px;
	background: transparent;
	border: 2px solid var(--default-color);
	border-radius: 2px;
	position: absolute;
	top: 0;
	left: 0;
}
.licence_block input:checked + label:before {
	background: url(../img/check.svg) no-repeat center;
}
.form-footer__btn .btn {
	width: 100%;
	font: 600 16px 'Montserrat', sans-serif;
}
.form-footer__btn .btn:hover {
	background: #000;
}
.miniform__block {
	align-items: center;
	gap: 8px;
}
.miniform__input {
	width: 264px;
}
.miniform__input > input {
	background: transparent;
	height: 50px;
	border-bottom: 1px solid var(--bg-color);
	font-size: 16px;
	display: block;
	width: 100%;
	transition: 300ms;
}
.miniform__input > input::placeholder {
	color: var(--bg-color);
	transition: 300ms;
}
.miniform__input > input:focus {
	border-color: var(--black-color)!important;
}
.miniform__input > input:focus::placeholder {
	opacity: 0;
}
.miniform__license {
	margin-top: 16px;
}
.footer {
	background: var(--bg-color);
	color: var(--gray-color);
}
.footer a {
	color: var(--gray-color);
}
.footer a:hover {
	color: var(--black-color);
}
.footer__top {
	padding: 96px 0;
}
.footer__top-row {
	gap: 54px 20px;
}
.footer__top-col--2 {
	margin-left: auto;
}
.footer__top-col--2,
.footer__top-col--3 {
	flex: 0 0 440px;
}
.footer__logo {
	margin-bottom: 8px;
}
.footer__slogan {
	font-size: 14px;
	color: var(--gray-color);
}
.footer__phone {
	margin-top: 16px;
}
.footer__social {
	margin-top: 22px;
	gap: 10px;
	align-items: center;
}
.footer__menus {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	align-items: flex-start;
}
.footer__menu {
	display: grid;
	grid-template-columns: 100%;
	gap: 12px;
}
.footer__menu,
.footer__menu li {
	margin: 0;
	padding: 0;
}
.footer__menu li:before {
	display: none!important;
}
.footer__menu-link:hover {
	text-decoration: none;
}
.footer__ask-title {
	font-size: 20px;
	margin-bottom: 16px;
}
.footer__ask-subtitle {
	margin-bottom: 16px;
}
.footer__ask-form .miniform__input > input {
	border-color: var(--gray-color);
}
.footer__ask-form .miniform__input > input::placeholder {
	color: var(--gray-color);
}
.footer__ask-form .miniform__license label:before {
	border-color: var(--gray-color);
}
.footer__bottom {
	padding: 16px 0;
	border-top: 1px solid rgba(250, 250, 250, 0.1);
}
.footer__bottom-row {
	gap: 34px 20px;
	align-items: center;
}
.footer__bottom-col--2 {
	flex-shrink: 0;
}
.footer__bottom-col--1 {
	flex: 1;
}
.footer__texts {
	gap: 6px 40px;
}
.footer__text {
	font-size: 14px;
}
.footer__rutu img {
	transition: 300ms;
	display: block;
}
.footer__rutu img:hover {
	transform: translateY(-2px);
}
.normal-page .head {
	position: static;
}
.normal-page .head__item-text,
.normal-page .head__item-text a {
	color: var(--black-color)!important;
}
.normal-page .head__item--phone .phones__inner > .phones__phone-link {
	color: var(--black-color)!important;
}
.normal-page .head__item--phone svg path {
	fill: var(--black-color)!important;
}
.normal-page .head__item-ico svg path {
	filter: invert(1);
}
.normal-page .head__main {
	background: #FAFAFA;
}
.pservices__in {
	padding: 0 0 128px 0;
}
.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	color: var(--bg-color);
	padding: 69px 0 24px 0;
}
.breadcrumbs__separator svg {
	display: none;
}
/*.breadcrumbs__separator:after {
	content: ' — ';
	margin: 0 5px;
}*/
.breadcrumbs a {
	color: var(--bg-color);
	transition: 300ms;
}
.breadcrumbs a:hover {
	color: var(--black-color);
	text-decoration: none;
}
.pservices__items {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
	gap: 20px;
}
.page-top {
	max-width: 580px;
}
.page-top__title {
	margin-bottom: 16px;
}
.psteps__in {
	padding: 0 0 128px 0;
}
.psteps__top {
	gap: 20px;
	margin-bottom: 96px;
}
.psteps__top-col {
	flex: 1;
}
.psteps__top-image img {
	display: block;
	border-radius: 8px;
}
.psteps__items {
	display: grid;
	grid-template-columns: 100%;
	gap: 96px;
}
.psteps__item-in {
	gap: 20px;
	align-items: center;
}
.psteps__item-col {
	flex: 1;
}
.psteps__item-image img {
	border-radius: 8px;
}
.psteps__item-col--2 .psteps__item-cont {
	padding-left: 50px;
}
.psteps__item-num {
	font: 500 48px/1.2 'Montserrat', sans-serif;
	color: var(--accent-color);
	margin-bottom: 24px;
}
.psteps__item-title {
	margin-bottom: 16px;
}
.psteps__item-text {
	line-height: 1.3;
}
.psteps__item-action {
	margin-top: 24px;
}
.psteps__item:nth-child(2n) .psteps__item-in {
	flex-direction: row-reverse;
}
.psteps__item:nth-child(2n) .psteps__item-cont {
	padding: 0 50px 0 0;
}
.body--with-head-fix .head {
	background: #fff;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 50;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding-top: 0;
}
.body--with-head-fix .head__top {
	height: 0;
	visibility: hidden;
	padding: 0;
}
.body--with-head-fix .head__main {
	backdrop-filter: none;
	background: transparent;
}
.body--with-head-fix .head__menu-link {
	color: #000;
}
.body--with-head-fix .head__menu-link > svg > path {
	fill: #000;
}
.body--with-head-fix .head__main {
	padding-top: 15px;
	padding-bottom: 15px;
}
.body--with-head-fix .head__menu-link:after {
	background: #000;
}
.body--with-head-fix .head__breadcrumbs {
	display: none;
}
.single {
	position: relative;
	padding-bottom: 30px;
}
@media(min-width: 1440px) {
	.single__image {
		height: 900px;
		padding: 0;
	}
}
.single__image img {
	object-fit: cover;
}
.single__info {
	position: absolute;
	bottom: 60px;
	left: 0;
	width: 100%;
	z-index: 3;
}
.single__info-box {
	background: #fff;
	box-shadow: 0px 134px 53px rgba(0, 0, 0, 0.01), 0px 75px 45px rgba(0, 0, 0, 0.05), 0px 33px 33px rgba(0, 0, 0, 0.09), 0px 8px 18px rgba(0, 0, 0, 0.1);
	border-radius: 24px;
	padding: 24px 30px;
	max-width: 603px;
}
.single__breadcrumbs {
	margin-bottom: 11px;
}
.single__breadcrumbs,
.single__breadcrumbs a {
	color: var(--gray-color);
}
.single__breadcrumbs a:hover {
	color: var(--accent-color);
}
.single__title {
	margin-bottom: 11px;
}
.single__price {
	font: 600 24px/1.2 'Montserrat', sans-serif;
	margin-bottom: 11px;
}
.single__text {
	font-size: 14px;
}
.single__action {
	margin-top: 17px;
}
.single__bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 5;
}
.single__bottom-box {
	background: var(--bg-color);
	border-radius: 14px;
	max-width: 1086px;
	margin: 0 auto;
	padding: 20px 32px;
	justify-content: space-between;
	color: var(--gray-color);
}
.single .service-item__top {
	gap: 15px 32px;
}
.single .service-item__prices {
	gap: 15px 32px;
}
.what__in {
	padding: 66px 0 96px 0;
}
.what__row {
	gap: 20px;
}
.what__col--1 {
	flex: 0 0 324px;
}
.what__col--2 {
	flex: 1;
}
.mtabs__items {
	display: grid;
	gap: 15px;
	grid-template-columns: repeat(4, 1fr);
}
.mtabs__item {
	font: 500 28px/1.3 'Montserrat', sans-serif;
	cursor: pointer;
}
.mtabs__item > span {
	padding: 0 20px 12px 20px;
	border-bottom: 1px solid transparent;
	transition: 300ms;
	cursor: pointer;
}
.mtabs__item--active > span {
	border-color: var(--accent-color);
}
.mtabs__divs {
	margin-top: 24px;
}
.mtabs__divs > div:not(:first-child) {
	display: none;
}
.what__item {
	border-bottom: 1px solid rgba(199, 67, 19, 0.1);
	padding: 24px 20px;
	font: 500 28px/1.3 'Montserrat', sans-serif;
}
.what__item:hover {
	background: rgba(199, 67, 19, 0.1);
}
.what__item-in {
	gap: 6px;
}
.what__item-title {
	flex: 1;
}
.what__item-value {
	flex-shrink: 0;
	color: var(--accent-color);
}
.photo__in {
	padding: 48px 0;
}
.photo__rows {
	display: grid;
	grid-template-columns: 100%;
	gap: 20px;
}
.photo__row {
	gap: 20px;
}
.photo__col {
	flex: 1;
}
.photo__items {
	margin: -10px;
}
.photo__item {
	width: 100%;
	padding: 10px;
}
.photo__item--50 {
	width: 50%;
}
.photo__item-image img {
	height: 400px;
	display: block;
	border-radius: 8px;
	transition: 300ms;
	width: 100%;
	object-fit: cover;
}
.photo__item-image img:hover {
	filter: brightness(80%);
}
.photo__col--1 .photo__items {
	height: calc(100% + 20px);
}
.photo__col--1 .photo__item,
.photo__col--1 .photo__item-image {
	height: 100%;
}
.photo__col--1 .photo__item-image img {
	height: 100%;
}
.photo__row:nth-child(2n) {
	flex-direction: row-reverse;
}
.show-more {
	margin-top: 48px;
	justify-content: center;
}
.done__in {
	padding: 96px 0;
}
.done__items {
	display: grid;
	grid-template-columns: 100%;
	gap: 48px;
}
.done__item-in {
	margin: -10px;
	align-items: flex-end;
}
.done__item-col {
	padding: 10px;
}
.done__item-col--1 {
	flex: 0 0 41.7%;
}
.done__item-col--2 {
	flex: 1;
}
.done__item-image img {
	border-radius: 8px;
	transition: 300ms;
}
.done__item-image img:hover {
	filter: brightness(85%);
}
.done__item-cont {
	max-width: 440px;
}
.done__item-category {
	font-size: 14px;
	color: var(--gray1-color);
	margin-bottom: 16px;
}
.done__item-title {
	font-size: 20px;
	line-height: 1.3;
}
.done__item-text {
	line-height: 1.3;
	margin-top: 16px;
}
.done__item:nth-child(2n) .done__item-in {
	flex-direction: row-reverse;
}
.done__item:nth-child(2n) .done__item-col--2 {
	display: flex;
	justify-content: flex-end;
}
.done__item:nth-child(2n) .done__item-cont {
	text-align: right;
}
.normal-page .head .regions__name {
	color: var(--black-color);
}
.is-mobile-visible {
	display: none;
}
body .maxwidth-theme {
	max-width: 1400px!important;
	padding-left: 20px!important;
	padding-right: 20px!important;
}
h1 {
	font-size: 48px!important;
	font-weight: 500!important;
}
.page__in {
	padding: 0 0 100px 0;
}
.miniform .form-checkbox__box {
	display: none!important;
}
.feedback__form .form--inline .form-footer {
	padding: 0;
}
.feedback__form .form.form--inline .form-group {
	margin: 0;
}
.feedback__form .form-inner {
	padding-top: 0;
}
.miniform .form-group label {
	display: none;
}
.miniform {
	width: 440px;
}
.miniform .input {
	width: 247px;
}
.miniform .input > input {
	background: transparent;
	height: 50px;
	border: none;
	border-bottom: 1px solid var(--bg-color);
	font-size: 16px;
	display: block;
	width: 100%;
	transition: 300ms;
	border-radius: 0;
}
.miniform .input > input::placeholder {
	color: var(--bg-color);
	transition: 300ms;
}
.miniform .input > input:focus {
	border-color: var(--black-color)!important;
}
.miniform .input > input:focus::placeholder {
	opacity: 0;
}
.miniform .col-xs-12 {
	width: auto!important;
	padding: 0!important;
}
.miniform .btn + br {
	display: none;
}
.miniform .form.form--inline .form-group {
	padding: 0;
	margin: 0;
}
.footer__ask-form .input > input {
	border-color: var(--gray-color);
}
.footer__ask-form .input > input::placeholder {
	color: var(--gray-color);
}
.footer__ask-form label:before {
	border-color: var(--gray-color);
}
.miniform .form-inner {
	padding-top: 0!important;
}
.single .breadcrumbs {
	padding-top: 0;
	gap: 0 5px;
}
.popup .licence_block label:before {
	display: none!important;
}
.photo__row:not(:first-child) {
	display: none;
}
.done__item {
	display: none;
}
.done__item:nth-child(-n+4) {
	display: block;
}
.load-item.active {
	display: block;
}
.load-item.active.flex {
	display: flex;
}
.miniform label.error {
	display: none!important;
}
#licenses_popup-error {
	display: none!important;
}
.feedback__form .form-checkbox__box {
	display: none!important;
}
.feedback__form .userconsent-wrap {
	margin-bottom: 18px;
}
.footer__ask .btn {
	background: var(--gray-color)!important;
	color: var(--bg-color)!important;
	border-color: var(--gray-color)!important;
}
.footer__ask .btn:hover {
	background: var(--black-color)!important;
	color: #fff!important;
	border-color: var(--black-color)!important;
}
.mob__social {
	justify-content: center;
}
.mobilemenu__close {
	top: 18px;
}
.section-all--bottom {
	justify-content: center;
	margin-top: 40px;
}
.form-send--mr-30 {
	display: none!important;
}
.form-send {
	padding: 20px!important;
}
.form-send .btn {
	display: none!important;
}
.form-send__info-text {
	padding-bottom: 0!important;
}
.mobilemenu__menu--top {
	padding: 0 40px;
}
.mobilemenu__menu--top .mobilemenu__menu-item .font_18 {
	font: 500 14px/1.3 'Montserrat', sans-serif;
	text-transform: uppercase;
}
.mobilemenu__menu--top .mobilemenu__menu-item {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.mobilemenu__menu--top .mobilemenu__menu-item a {
	padding: 20px 0!important;
	position: relative;
}
.mobilemenu__menu--top .mobilemenu__menu-item a:after {
	content: '';
	background: url(../img/moarrow.svg) no-repeat;
	width: 23px;
	height: 8px;
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -4px;
}
.footer__phone .phones__inner > .phones__phone-link {
	font-weight: 400;
	color: var(--gray-color);
}
.footer__phone .icon-block__icon svg {
	width: 20px;
	height: 20px;
}
.footer__phone svg path {
	fill: var(--gray-color);
}
.modal__col--1 {
	flex: 0 0 386px;
}
.modal__col--2 {
	background: #fff;
	flex: 1;
}
.modal__image {
	height: 100%;
}
.modal__image-img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
.modal__cont {
	padding: 48px 40px;
}
.jqmWindow {
	max-width: 900px;
}
.modal__row .form-group {
	margin: 0;
}
.modal__title {
	margin-bottom: 24px;
	font-weight: 500;
}
.modal__row .form-footer {
	padding: 0!important;
}
.modal__row .btn[type="submit"] {
	width: 100%;
}
.mobilemenu .menu-arrow.svg {
	display: none!important;
}
.mobilemenu__menu-item--selected>.link-wrapper a:before {
	display: none;
}
.mobilemenu__menu-item--selected>.link-wrapper a {
	color: var(--accent-color);
}
.mobilemenu__close {
	width: 47px;
	height: 40px;
	background: #FAFAFA;
	border-radius: 10px;
}
.mobilemenu__close svg path {
	stroke: #584E44;
}
.mobilemenu__inner .logo img {
	width: 174px;
}
.service-item__title {
	transition: 300ms;
}
.sales .service-item__box:hover .service-item__cont {
	background: var(--accent-color);
}
.sales .service-item__box:hover .service-item__title {
	color: #fff;
}
.video_block iframe {
	max-width: 100%;
}
.mobilemenu__menu-dropdown {
	padding-left: 40px;
	padding-right: 40px;
}
.mobilemenu__menu-item--back .arrow-all:after {
	display: none!important;
}
.mobilemenu__menu-item--back>.link-wrapper {
	padding-left: 0!important;
}