/*!
Theme Name: Revolt
Theme URI: http://underscores.me/
Author: Ihor Tryhuk
Author URI: https://tryhuk.pp.ua/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: revolt
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Revolt is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
	font-family: 'Neue Machina';
	src: local('Neue Machina Black'), local('Neue-Machina-Black'),
		url('fonts/NeueMachina-Black.woff2') format('woff2'),
		url('fonts/NeueMachina-Black.woff') format('woff'),
		url('fonts/NeueMachina-Black.ttf') format('truetype');
	font-weight: 900;
	font-style: normal;
}
@font-face {
	font-family: 'Segoe Script';
	src: url('fonts/Segoe_Script.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}

:root {
	--container: 1160px;
	--gap: 30px;
	--radius: 20px;
	--shadow: 0 0px 5px 0px rgba(0, 0, 0, 0.1);

	--text-size: 16px;
	--text-size-sm: 14px;
	--text-size-esm: 12px;
	--h1-size: 48px;
	--h2-size: 40px;
	--h3-size: 32px;
	--h4-size: 28px;
	--h5-size: 24px;
	--h6-size: 20px;

	--black: #000000;
	--grey: #2B2C31;
	--pink: #E61A5E;
	--yellow: #F2EC60;
	--gray-4: #BDBDBD;
	--gray-light: #7C7C7C;
	--white: #FFFFFF;
	--violet: #776F94;
	--light: #EEEFF1;
}
*, ::after, ::before {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	margin: 0;
	padding: 0;
	font-size: var(--text-size);
	font-weight: 400;
	font-family: 'Inter', sans-serif;
	line-height: 1.5;
	color: var(--black);
	background: var(--light);
}
a {
	color: var(--pink);
	text-underline-offset: 4px;
	transition: .5s;
}
a:hover {
	text-decoration: none;
	color: var(--violet);
}
img {
	margin: 0;
	vertical-align: middle;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	transition: .5s;
}
.bg-cover {
	position: relative;
}
.bg-cover img,
.bg-cover video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.bg-cover-span {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	margin: calc(var(--gap) * 1.667) 0 calc(var(--gap) / 1.5);
	line-height: 1.1;
}
p > img.alignnone {
	margin-top: var(--gap);
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child, p:first-child > img.alignnone {
	margin-top: 0;
}
h1 {
	font-size: var(--h1-size);
}
h2 {
	font-size: var(--h2-size);
}
h3 {
	font-size: var(--h3-size);
}
h4 {
	font-size: var(--h4-size);
}
h5 {
	font-size: var(--h5-size);
}
h6 {
	font-size: var(--h6-size);
}
p, ul, ol, blockquote {
	margin: 0 0 calc(var(--gap) / 1.5);
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child, p:last-child, ul:last-child, ol:last-child, blockquote:last-child {
	margin-bottom: 0;
}
iframe {
	max-width: 100%;
}
.form-fields {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -3) calc(var(--gap) / -1.5);
}
.form-field {
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0 calc(var(--gap) / 3);
	margin-bottom: calc(var(--gap) / 1.5);
}
.form-field-50 {
	flex: 0 0 50%;
	max-width: 50%;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
	font-size: var(--text-size);
	font-weight: 400;
	font-family: 'Inter', sans-serif;
	line-height: 1.5;
	width: 100%;
	background: var(--white);
	border: 1px solid var(--gray-light);
	color: var(--black);
	-moz-border-radius: calc(var(--radius) / 2);
	-webkit-border-radius: calc(var(--radius) / 2);
	border-radius: calc(var(--radius) / 2);
	padding: 10px 19px;
	height: 50px;
	outline: none;
	transition: .5s;
}
textarea {
	height: 120px;
	resize: vertical;
}
select {
	cursor: pointer;
}
.wpcf7-spinner {
	position: absolute;
	right: 0;
	top: 0;
}
.wpcf7-not-valid-tip {
	margin-top: 4px;
	font-size: calc(var(--text-size-sm) / 1.1667);
}
.wpcf7 form .wpcf7-response-output {
	margin: calc(var(--gap) / 1.5) 0 0;
	padding: 15px 19px;
	font-size: var(--text-size-sm);
}
.form-field-policy {
	line-height: 1.11;
}
.wpcf7-acceptance {
	display: block;
	cursor: pointer;
}
.wpcf7-acceptance .wpcf7-list-item {
	margin-left: 0;
	display: block;
}
.wpcf7-acceptance .wpcf7-list-item-label {
	display: block;
	padding-left: 33px;
	cursor: pointer;
}
.wpcf7-acceptance label {
	position: relative;
	display: inline-block;
}
.wpcf7-acceptance input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	display: inline-block;
	vertical-align: middle;
	background: var(--white);
	border: 1px solid var(--gray-light);
	width: 18px;
	height: 18px;
	outline: 0;
	padding: 0px;
	margin: 0;
	margin-right: 0;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	position: absolute;
	left: 0;
	top: 0;
	cursor: pointer;
	transition: .5s;
}
.wpcf7-acceptance input[type="checkbox"]:checked:after {
	content: '';
    width: 5px;
    height: 11px;
    border-bottom: 1px solid var(--black);
    border-right: 1px solid var(--black);
    display: block;
    position: absolute;
    top: 1px;
    left: 6px;
    transform: rotate(45deg);
}




.screen-reader-text {
	display: none;
}
.container {
	width: 100%;
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
}
.section {
	position: relative;
	padding-top: 160px;
	padding-bottom: 160px;
	z-index: 1;
}
.section-lg {
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
	z-index: 1;
}
.section-md {
	position: relative;
	padding-top: 80px;
	padding-bottom: 80px;
	z-index: 1;
}
.section-sm {
	position: relative;
	padding-top: 50px;
	padding-bottom: 50px;
	z-index: 1;
}
.pt-0 {
	padding-top: 0 !important;
}
.pb-0 {
	padding-bottom: 0 !important;
}
.mt-0 {
	margin-top: 0 !important;
}
.mb-0 {
	margin-bottom: 0 !important;
}
@media (min-width: 992px) {
	.hide-lg {
		display: none !important;
	}
}


.heading {
	margin-bottom: calc(var(--gap) * 1.667);
	color: var(--grey);
}
.heading:last-child {
	margin-bottom: 0;
}
.heading.center {
	text-align: center;
}
.heading.white {
	color: var(--white);
}
.heading h2 {
	font-size: var(--h1-size);
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: calc(var(--gap) / 2);
}
.heading h2:last-child {
	margin-bottom: 0;
}
.heading p {
	font-size: var(--h6-size);
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: .04em;
}



.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: calc(var(--gap) / 3);
	font-size: var(--text-size);
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	line-height: 1.5;
	border: 2px solid transparent;
	padding: 6px 40px;
	-moz-border-radius: calc(var(--radius) / 1.333);
	-webkit-border-radius: calc(var(--radius) / 1.333);
	border-radius: calc(var(--radius) / 1.333);
	outline: none;
	min-height: 60px;
	cursor: pointer;
	text-decoration: none;
	letter-spacing: .09em;
	z-index: 1;
	transition: .5s;
}
.btn-primary {
	background-color: var(--grey);
	border-color: var(--grey);
	color: var(--white);
}
.btn-primary:hover {
	background-color: var(--pink);
	border-color: var(--pink);
	color: var(--white);
}
.btn-primary:active {
	background-color: var(--violet);
	border-color: var(--violet);
	color: var(--white);
}
.btn.btn-link {
	padding: 0;
	border: none;
	font-weight: 600;
	letter-spacing: 0;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	color: var(--grey);
	min-height: inherit;
	text-decoration: underline;
}
.btn.btn-link:hover {
	color: var(--gray-light);
}
.btn.btn-link:active {
	color: var(--violet);
}

/*
.swiper-pagination {
	position: relative !important;
	bottom: auto !important;
	top: auto !important;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: calc(var(--gap) * 1.5);
	gap: 8px;
}
.swiper-pagination-bullet {
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px !important;
	height: 10px !important;
	background: #E2E5F0 !important;
	margin: 0 !important;
	opacity: 1 !important;
	-moz-border-radius: 0 !important;
	-webkit-border-radius: 0 !important;
	border-radius: 0 !important;
	transform: skew(-25deg);
}
.swiper-pagination.white .swiper-pagination-bullet {
	background: #ffffff !important;
	opacity: .4 !important;
}
.swiper-pagination-bullet-active {
	background: #019658 !important;
}
.swiper-pagination.white .swiper-pagination-bullet-active {
	background: #ffffff !important;
	opacity: 1 !important;
}

.swiper-navigation {
	position: relative;
	display: flex;
	align-items: center;
	z-index: 9;
}
.swiper-navigation button {
	position: relative;
	flex: 0 0 56px;
	max-width: 56px;
	width: 56px;
	height: 36px;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	border: none;
	background: var(--blue);
	display: flex;
	align-items: center;
	justify-content: center;
	outline: none;
	padding: 0;
	cursor: pointer;
	clip-path: polygon(30% 0, 100% 0%, 70% 100%, 0% 100%);
	transition: .5s;
}
.swiper-navigation button:hover {
	background: var(--blue-dark);
}
.swiper-navigation button:disabled {
	background: var(--blue);
	opacity: .15;
	cursor: no-drop;
}
.swiper-navigation button:before {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/expand-down.svg);
    mask-image: url(images/expand-down.svg);
    background-color: var(--white);
    flex: 0 0 20px;
    max-width: 20px;
    width: 20px;
    height: 20px;
    transition: .5s;
    z-index: 1;
}
.swiper-navigation button.swiper-navigation-prev:before {
	transform: rotate(90deg);
}
.swiper-navigation button.swiper-navigation-next:before {
	transform: rotate(-90deg);
}*/


.soc-links {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 2.5);
}
.soc-links li.soc-mobile {
	display: none;
}
@media (max-width: 991px) {
	.soc-links li.soc-desktop {
		display: none;
	}
	.soc-links li.soc-mobile {
		display: block;
	}
}
.soc-links li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
}
.soc-links li a svg {
	flex: 0 0 100%;
	max-width: 100%;
	height: 100%;
}
.soc-links li a path {
	fill: var(--pink);
	transition: .5s;
}
.soc-links.white li a path {
	fill: var(--white);
}
.soc-links li a:hover path {
	fill: var(--black);
}
.soc-links.white li a:hover path {
	opacity: .5;
}



.modal-mobile {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -9999;
	opacity: 0;
	transition: .5s;
}
.modal-mobile.show {
	z-index: 9999;
	opacity: 1;
}
.modal-mobile-bg {
	background: rgb(0 0 0 / 45%);
	position: absolute;
	opacity: 0;
	transition: .5s;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.modal-mobile.show .modal-mobile-bg {
	opacity: 1;
}
.modal-mobile-wrap {
	position: relative;
	background: var(--light);
	height: 100%;
	width: 100%;
	max-width: 360px;
	margin-left: auto;
	transform: translateX(100%);
	padding: 60px var(--gap) var(--gap);
	transition: .5s;
	overflow: auto;
	z-index: 1;
}
.modal-mobile.show .modal-mobile-wrap {
	transform: translateX(0);
}
.modal-mobile-close {
	position: absolute;
	top: 15px;
	right: 15px;
	-webkit-mask-image: url(images/close.svg);
	mask-image: url(images/close.svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--black);
	width: 34px;
	height: 34px;
	border: none;
	padding: 0;
	outline: none !important;
	transition: .5s;
}
.modal-mobile-close:hover {
	background-color: var(--pink);
}
.mobile-menu {
	margin: 0 0 calc(var(--gap) * 1.5);
	padding: 0;
	list-style: none;
	font-size: var(--text-size);
	text-align: center;
	letter-spacing: .09em;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 3);
}
.mobile-menu li a {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--white);
	-moz-border-radius: calc(var(--radius) / 2);
	-webkit-border-radius: calc(var(--radius) / 2);
	border-radius: calc(var(--radius) / 2);
	color: var(--grey);
	text-decoration: none;
	width: 100%;
	min-height: 35px;
}
.mobile-menu li a:hover {
	background: var(--violet);
	color: var(--white);
}
.mobile-menu li a:active,
.mobile-menu li.current-post-ancestor a,
.mobile-menu li.current-menu-item a,
.mobile-menu li.current-category-ancestor a {
	background: var(--light);
	color: var(--grey);
}
.modal-mobile-phone {
	margin: 0 0 calc(var(--gap) / 2);
	font-size: var(--h5-size);
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: .04em;
	text-align: center;
}
.modal-mobile-phone a {
	color: var(--black);
	text-decoration: none;
}
.modal-mobile-phone a:hover {
	color: var(--pink);
}
.modal-mobile-email {
	font-size: var(--text-size-sm);
	font-weight: 500;
	letter-spacing: .03em;
	line-height: 1.4;
	max-width: 360px;
	text-align: center;
	color: var(--grey);
	margin: 0 0 calc(var(--gap) / 2);
}
.modal-mobile-email a {
	font-weight: 700;
	color: var(--black);
	text-decoration: none;
}
.modal-mobile-email a:hover {
	color: var(--pink);
}
.modal-mobile-soc {
	display: flex;
	justify-content: center;
	gap: calc(var(--gap) * 2);
}




.wp-caption {
	max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}
.wp-caption-text {
	text-align: center;
}
.gallery {
	display: flex;
	flex-wrap: wrap;
	margin: calc(var(--gap) + 2px) calc(var(--gap) / -2) 2px;
}
.gallery:first-child {
	margin-top: 0;
}
.gallery:last-child {
	margin-bottom: calc(var(--gap) * -1);
}
.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.gallery-item > * {
	overflow: hidden;
	border: 1px solid var(--line);
}
.gallery-columns-2 .gallery-item {
	flex: 0 0 calc(100% / 2);
	max-width: calc(100% / 2);
}
.gallery-columns-2 .gallery-item > * {
	height: calc((var(--container) - var(--gap)) / 2 / 1.4);
}
.gallery-columns-3 .gallery-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.gallery-columns-3 .gallery-item > * {
	height: calc((var(--container) - var(--gap) * 2) / 3 / 1.4);
}
.gallery-columns-4 .gallery-item {
	flex: 0 0 calc(100% / 4);
	max-width: calc(100% / 4);
}
.gallery-columns-4 .gallery-item > * {
	height: calc((var(--container) - var(--gap) * 3) / 4 / 1.4);
}
.gallery-columns-5 .gallery-item {
	flex: 0 0 calc(100% / 5);
	max-width: calc(100% / 5);
}
.gallery-columns-5 .gallery-item > * {
	height: calc((var(--container) - var(--gap) * 4) / 5 / 1.4);
}
.gallery-columns-6 .gallery-item {
	flex: 0 0 calc(100% / 6);
	max-width: calc(100% / 6);
}
.gallery-columns-6 .gallery-item > * {
	height: calc((var(--container) - var(--gap) * 5) / 6 / 1.4);
}
.gallery-columns-7 .gallery-item {
	flex: 0 0 calc(100% / 6);
	max-width: calc(100% / 6);
}
.gallery-columns-7 .gallery-item > * {
	height: calc((var(--container) - var(--gap) * 6) / 7 / 1.4);
}
.gallery-columns-8 .gallery-item {
	flex: 0 0 calc(100% / 8);
	max-width: calc(100% / 8);
}
.gallery-columns-8 .gallery-item > * {
	height: calc((var(--container) - var(--gap) * 7) / 8 / 1.4);
}
.gallery-columns-9 .gallery-item {
	flex: 0 0 calc(100% / 9);
	max-width: calc(100% / 9);
}
.gallery-columns-9 .gallery-item > * {
	height: calc((var(--container) - var(--gap) * 8) / 9 / 1.4);
}
.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: .5s;
}
.gallery-item a:hover img {
	transform: scale(1.08);
}
.gallery-caption {
	display: block;
}
.alignleft {
	float: left;
	margin-right: var(--gap);
	margin-bottom: var(--gap);
}
.alignright {
	float: right;
	margin-left: var(--gap);
	margin-bottom: var(--gap);
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: var(--gap);
}
img.alignleft,
img.alignright,
img.aligncenter {
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
}




@keyframes arrowMove {
	0% {
		transform: rotate(5deg);
	}
	70% {
		transform: rotate(-10deg);
	}
	100% {
		transform: rotate(5deg);
	}
}
@keyframes handMove {
	0% {
		transform: translateY(5px);
	}
	70% {
		transform: translateY(-10px);
	}
	100% {
		transform: translateY(5px);
	}
}







.wrapper {
	position: relative;
	z-index: 1;
}
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: var(--light);
	padding: var(--gap) 0;
	width: 100%;
	z-index: 92;
	transition: .5s;
}
.header.fixed {
	padding: calc(var(--gap) / 3) 0;
	box-shadow: var(--shadow);
}
.admin-bar .header {
	top: 32px;
}
.header-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
	gap: calc(var(--gap) / 1.5);
	transition: .5s;
}
.header.fixed .header-wrap {
	height: 48px;
}
.header-logo img {
	max-height: 80px;
}
.header.fixed .header-logo img {
	max-height: 48px;
}
.main-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 3);
	font-size: calc(var(--text-size-sm) / 1.0769);
	letter-spacing: .09em;
	text-align: center;
}
.main-menu li a {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--white);
	-moz-border-radius: calc(var(--radius) / 2);
	-webkit-border-radius: calc(var(--radius) / 2);
	border-radius: calc(var(--radius) / 2);
	color: var(--grey);
	text-decoration: none;
	min-width: 110px;
	min-height: 35px;
}
.main-menu li a:hover {
	background: var(--violet);
	color: var(--white);
}
.main-menu li a:active,
.main-menu li.current-post-ancestor a,
.main-menu li.current-menu-item a,
.main-menu li.current-category-ancestor a {
	background: var(--light);
	color: var(--grey);
}
.header-phone {
	flex: 0 0 auto;
	font-weight: 700;
	margin-bottom: 0;
}
.header-phone a {
	color: var(--black);
	text-decoration: none;
}
.header-phone a:hover {
	color: var(--pink);
}
.header-toggle {
	display: flex;
}
.header-toggle button {
	flex: 0 0 25px;
	max-width: 25px;
	width: 25px;
	height: 31px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/menu.svg);
	mask-image: url(images/menu.svg);
	background-color: var(--grey);
	border: none;
	outline: none;
	padding: 0;
	cursor: pointer;
	transition: .5s;
}
.header-toggle button:hover {
	background-color: var(--pink);
}




.main {
	position: relative;
	padding-top: 190px;
	overflow: hidden;
	z-index: 1;
}




.footer {
	position: relative;
	z-index: 1;
}
.footer-main {
	position: relative;
	background: var(--pink);
	color: var(--white);
	padding: calc(var(--gap) * 1.667) 0 var(--gap);
	z-index: 1;
}
.footer-wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: calc(var(--gap) * 1.5) var(--gap);
	flex-wrap: wrap;
}
.footer-logo {
	flex: 0 0 100%;
	max-width: 100%;
}
.footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 2.5);
	line-height: 1.2;
	letter-spacing: .09em;
}
.footer-menu li a {
	color: var(--light);
	text-decoration: none;
}
.footer-menu li a:hover {
	opacity: .51;
}
.footer-right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: calc(var(--gap) / 1.5);
}
.footer-phone {
	margin: 0;
	font-size: var(--h5-size);
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: .04em;
	text-align: right;
}
.footer-phone a {
	color: var(--light);
	text-decoration: none;
}
.footer-phone a:hover {
	opacity: .51;
}
.footer-email {
	font-weight: 500;
	letter-spacing: .03em;
	line-height: 1.4;
	max-width: 360px;
	text-align: right;
	margin: 0;
}
.footer-email a {
	font-weight: 700;
	color: var(--grey);
	text-decoration: none;
}
.footer-email a:hover {
	color: var(--black);
}
.footer-soc {
	display: flex;
	gap: calc(var(--gap) * 2);
}
.bottom-menu {
	margin: calc(var(--gap) / 1.2) 0 0;
	border-top: 1px solid var(--light);
	padding: calc(var(--gap) / 1.2) 0 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: calc(var(--gap) * 1.667);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: .05em;
	text-transform: uppercase;
}
.bottom-menu li a {
	color: var(--white);
	opacity: .7;
}
.bottom-menu li a:hover {
	opacity: 1;
}
.footer-bottom {
	position: relative;
	padding: calc(var(--gap) * 1.16) 0;
	background: var(--black);
	color: var(--gray-4);
	letter-spacing: .09em;
	line-height: 1.2;
	text-align: center;
	z-index: 1;
}





.page-title {
	font-size: var(--h1-size);
	font-weight: 700;
	line-height: 1.1;
	color: var(--grey);
	margin-bottom: calc(var(--gap) / 1.5);
}
.page-title:last-child {
	margin-bottom: 0;
}
.page-description {
	font-size: var(--h6-size);
	color: var(--grey);
	line-height: 1.4;
	letter-spacing: .04em;
}
.page-description strong {
	font-weight: 600;
}
.page-block {
	position: relative;
	background: var(--white);
	padding: calc(var(--gap) * 1.667) calc(var(--gap) * 1.333);
	-moz-border-radius: calc(var(--radius) * 1.5);
	-webkit-border-radius: calc(var(--radius) * 1.5);
	border-radius: calc(var(--radius) * 1.5);
	z-index: 1;
}
.page-content img {
	-moz-border-radius: calc(var(--radius) * 1.5);
	-webkit-border-radius: calc(var(--radius) * 1.5);
	border-radius: calc(var(--radius) * 1.5);
}

.error-404-number {
	font-size: calc(var(--h1-size) * 5);
	font-weight: 700;
	color: var(--gray-light);
	line-height: 1;
	text-align: center;
}
.error-404-button {
	text-align: center;
}

.page-nav {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: calc(var(--gap) / 1.5);
	font-size: var(--h5-size);
	font-weight: 600;
	font-family: 'Montserrat', sans-serif;
	line-height: 1.2;
	color: var(--gray-light);
}
.page-nav li {
	flex: 0 0 auto;
	display: flex;
	gap: calc(var(--gap) / 1.2);
}
.page-nav li a {
	color: var(--gray-light);
	text-decoration: none;
}
.page-nav li a:hover {
	color: var(--black);
}
.page-nav li a:active,
.page-nav li.active a {
	color: var(--black);
	text-decoration: underline;
}
.page-nav li:after {
	content: '/';
}
.page-nav li:last-child:after {
	display: none;
}



.blog-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -1.5) calc(var(--gap) * -1.667);
}
.blog-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 calc(var(--gap) * 1.667);
	padding: 0 calc(var(--gap) / 1.5);
}
.blog-item__wrap {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 1.5);
}
.blog-item__image {
	flex: 0 0 calc((var(--container) - var(--gap) * 1.333 * 2) / 3 / 1.084);
	max-height: calc((var(--container) - var(--gap) * 1.333 * 2) / 3 / 1.084);
	overflow: hidden;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
}
.blog-item__wrap:hover .blog-item__image img {
	transform: scale(1.05);
}
.blog-item__date {
	margin: 0;
	font-size: calc(var(--text-size-sm) / 1.1667);
	font-weight: 500;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: .02em;
	color: var(--gray-light);
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 3);
}
.blog-item__date:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/calendar.svg);
	mask-image: url(images/calendar.svg);
	background-color: var(--gray-light);
	flex: 0 0 15px;
	max-width: 15px;
	width: 15px;
	height: 15px;
	margin-top: -2px;
}
.blog-item__title {
	margin: 0;
	font-size: var(--h5-size);
	font-weight: 600;
	line-height: 1.2;
}
.blog-item__title a {
	color: var(--grey);
	text-decoration: none;
}
.blog-item__title a:hover {
	color: var(--pink);
}
.blog-item__excerpt {
	overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}




.navigation.pagination {
	position: relative;
	margin-top: calc(var(--gap) * 2.667);
	z-index: 2;
}
.nav-links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	gap: calc(var(--gap) * 1.5);
	margin: 0;
	padding: 0;
	list-style: none;
}
.nav-links .page-numbers {
	min-width: 38px;
	height: 38px;
	font-size: var(--h6-size);
	font-weight: 600;
	color: var(--black);
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 0 10px;
	text-decoration: none;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	letter-spacing: .04em;
}
.nav-links .page-numbers:not(.dots):hover,
.nav-links .page-numbers.current {
	background: var(--black);
	color: var(--white);
}
.nav-links .page-numbers.prev,
.nav-links .page-numbers.next {
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
}
.nav-links .page-numbers.next {
	flex-direction: row-reverse;
}
.nav-links .page-numbers.prev:hover,
.nav-links .page-numbers.next:hover {
	background: transparent;
	color: var(--gray-light);
}
.nav-links .page-numbers.prev:active,
.nav-links .page-numbers.next:active {
	color: var(--violet);
}
.nav-links .page-numbers.prev:before,
.nav-links .page-numbers.next:before {
	content: '';
	flex: 0 0 24px;
	max-width: 24px;
	width: 24px;
	height: 24px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow_right.svg);
	mask-image: url(images/arrow_right.svg);
	background-color: var(--black);
	transition: .5s;
}
.nav-links .page-numbers.prev:before {
	transform: scale(-1, 1);
}
.nav-links .page-numbers.prev:hover:before,
.nav-links .page-numbers.next:hover:before {
	background-color: var(--gray-light);
}
.nav-links .page-numbers.prev:active:before,
.nav-links .page-numbers.next:active:before {
	background-color: var(--violet);
}


.singleBlog-wrap {
	background: var(--white);
	-moz-border-radius: calc(var(--radius) * 1.5);
	-webkit-border-radius: calc(var(--radius) * 1.5);
	border-radius: calc(var(--radius) * 1.5);
	overflow: hidden;
}
.singleBlog-info {
	position: relative;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
	min-height: calc(var(--container) / 1.65);
	padding: calc(var(--gap) * 2) calc(var(--gap) * 1.333);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: calc(var(--gap) / 1.5);
	z-index: 1;
}
.singleBlog-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.singleBlog-image:after {
	content: '';
	background: var(--black);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: .5;
	z-index: 1;
}
.singleBlog-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: calc(var(--gap) / 1.5);
}
.singleBlog-cats {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: calc(var(--gap) / 4);
}
.singleBlog-meta span {
	color: var(--black);
	font-size: calc(var(--text-size-sm) / 1.1667);
	font-weight: 500;
	font-family: 'Montserrat', sans-serif;
	line-height: 1.11;
	letter-spacing: .02em;
	background: var(--white);
	padding: 8px;
	-moz-border-radius: calc(var(--radius) / 4);
	-webkit-border-radius: calc(var(--radius) / 4);
	border-radius: calc(var(--radius) / 4);
}
.singleBlog-date {
	margin: 0;
	font-size: calc(var(--text-size-sm) / 1.1667);
	font-weight: 500;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: .02em;
	color: var(--white);
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 3);
}
.singleBlog-date:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/calendar.svg);
	mask-image: url(images/calendar.svg);
	background-color: var(--white);
	flex: 0 0 15px;
	max-width: 15px;
	width: 15px;
	height: 15px;
	margin-top: -2px;
}
.singleBlog-title {
	margin: 0;
	color: var(--white);
	font-size: var(--h1-size);
	font-weight: 700;
	line-height: 1.1;
	max-width: 850px;
}
.singleBlog-footer {
	display: flex;
	flex-direction: column;
	gap: var(--gap);
}
.singleBlog-share {
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 1.5);
	padding: calc(var(--gap) / 3);
}
.singleBlog-share p {
	font-size: calc(var(--text-size-sm) / 1.1667);
	line-height: 1.11;
	color: var(--black);
	margin: 0;
}
.singleBlog-share ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 1.5);
}
.singleBlog-share ul li a {
	width: 26px;
	height: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.singleBlog-share ul li a svg {
	flex: 0 0 100%;
	max-width: 100%;
	height: 100%;
}
.singleBlog-share ul li a svg path {
	transition: .5s;
	fill: var(--black);
}
.singleBlog-share ul li a:hover svg path {
	fill: var(--pink);
}

.singleBlog-nav {
	display: flex;
	gap: calc(var(--gap) * 1.333);
}
.singleBlog-nav-item {
	flex: 0 0 calc(50% - var(--gap) / 1.5);
	max-width: calc(50% - var(--gap) / 1.5);
}
.singleBlog-nav-item.next {
	margin-left: auto;
}
.singleBlog-nav-item a {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 1.5);
	height: 100%;
	background: var(--white);
	text-decoration: none;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	padding: calc(var(--gap) / 1.5) calc(var(--gap) * 1.333);
	z-index: 1;
}
.singleBlog-nav-item.prev a {
	padding-left: calc(var(--gap) * 2.333);
}
.singleBlog-nav-item.next a {
	padding-right: calc(var(--gap) * 2.333);
}
.singleBlog-nav-item .nav-date {
	margin: 0;
	font-size: calc(var(--text-size-sm) / 1.1667);
	font-weight: 500;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: .02em;
	color: var(--grey);
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 3);
}
.singleBlog-nav-item .nav-date:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/calendar.svg);
	mask-image: url(images/calendar.svg);
	background-color: var(--grey);
	flex: 0 0 15px;
	max-width: 15px;
	width: 15px;
	height: 15px;
	margin-top: -2px;
}
.singleBlog-nav-item .nav-title {
	font-size: var(--h5-size);
	font-weight: 600;
	font-family: 'Montserrat', sans-serif;
	color: var(--grey);
	line-height: 1.2;
	display: block;
	transition: .5s;
}
.singleBlog-nav-item a:hover .nav-title {
	text-decoration: underline;
	text-underline-offset: 5px;
}
.singleBlog-nav-item a:before {
	content: '';
	position: absolute;
	top: calc(var(--gap) / 1.5);
	width: 24px;
	height: 24px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow_right.svg);
	mask-image: url(images/arrow_right.svg);
	background-color: var(--black);
	transition: .5s;
}
.singleBlog-nav-item.prev a:before {
	left: calc(var(--gap) / 3);
	transform: scale(-1, 1);
}
.singleBlog-nav-item.next a:before {
	right: calc(var(--gap) / 3);
}



.pageContacts-social-text {
	font-size: var(--h6-size);
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: .04em;
	color: var(--grey);
}
.pageContacts-social-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
}
.pageContacts-social-buttons .btn {
	padding-left: 23px;
	padding-right: 23px;
	min-width: 172px;
}
.pageContacts-social-buttons .btn.mobile {
	display: none;
}
@media (max-width: 991px) {
	.pageContacts-social-buttons .btn.mobile {
		display: inline-flex;
	}
	.pageContacts-social-buttons .btn.desktop {
		display: none;
	}
}
.pageContacts-social-buttons .btn svg {
	flex: 0 0 30px;
	max-width: 30px;
	width: 30px;
	height: 30px;
}

.contactsInfo-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -1.5) calc(var(--gap) * -1.667);
}
.contactsInfo-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 calc(var(--gap) * 1.667);
	padding: 0 calc(var(--gap) / 1.5);
}
.contactsInfo-item__wrap {
	position: relative;
	min-height: 142px;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	background: var(--white);
	padding: calc(var(--gap) / 1.5) var(--gap);
	display: flex;
	gap: var(--gap);
	z-index: 1;
}
.contactsInfo-item__image {
	flex: 0 0 34px;
	max-width: 34px;
}
.contactsInfo-item__info {
	flex: auto;
}
.contactsInfo-item__title {
	margin-bottom: calc(var(--gap) / 3);
	font-size: var(--h6-size);
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: .04em;
}
.contactsInfo-item__content p {
	margin-bottom: 4px;
}
.contactsInfo-item__content p:last-child {
	margin-bottom: 0;
}
.contactsInfo-item__content p a {
	color: var(--black);
	text-decoration: none;
}
.contactsInfo-item__content p a:hover {
	color: var(--pink);
}
.contactsInfo-item__content iframe {
	margin-top: calc(var(--gap) / 3);
	border: none;
	width: 100%;
	height: 396px;
	-moz-border-radius: calc(var(--radius) / 2);
	-webkit-border-radius: calc(var(--radius) / 2);
	border-radius: calc(var(--radius) / 2);
}
.contactsInfo-item__content .wpcf7 {
	margin-top: calc(var(--gap) / 1.5);
}



.quote-block {
	position: relative;
	display: flex;
	gap: var(--gap);
	z-index: 1;
}
.quote-block-info {
	flex: 0 0 117px;
	max-width: 117px;
	line-height: 1.2;
	text-align: right;
	letter-spacing: .09em;
	color: var(--grey);
}
.quote-block-image {
	width: 100%;
	height: 117px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	margin-bottom: calc(var(--gap) * 1.5);
	overflow: hidden;
}
.quote-block-name {
	text-transform: uppercase;
}
.quote-block-text {
	position: relative;
	flex: auto;
	padding-left: 100px;
	font-size: var(--h2-size);
	font-weight: 700;
	line-height: 1.3;
	font-family: 'Montserrat', sans-serif;
	color: var(--grey);
	z-index: 1;
}
.quote-block-text:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/quote.svg);
	mask-image: url(images/quote.svg);
	background-color: var(--grey);
	position: absolute;
	width: 67px;
	height: 67px;
	top: 5px;
	left: 5px;
	z-index: 1;
}



.galleryDesign-items {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) * 1.667);
}
.galleryDesign-item {
	display: flex;
	gap: calc(var(--gap) * 1.333);
}
.galleryDesign-item__image {
	flex: 0 0 100%;
	max-width: 100%;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
}
.galleryDesign-item__image a:hover img {
	transform: scale(1.05);
}
.galleryDesign-item-66-33 .galleryDesign-item__image:nth-child(1),
.galleryDesign-item-33-66 .galleryDesign-item__image:nth-child(2) {
	flex: 0 0 calc(100% / 3 * 2 - var(--gap) * 1.333 / 2);
	max-width: calc(100% / 3 * 2 - var(--gap) * 1.333 / 2);
}
.galleryDesign-item-66-33 .galleryDesign-item__image:nth-child(2),
.galleryDesign-item-33-66 .galleryDesign-item__image:nth-child(1) {
	flex: 0 0 calc(100% / 3 - var(--gap) * 1.333 / 2);
	max-width: calc(100% / 3 - var(--gap) * 1.333 / 2);
}







.prices-block-heading {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: calc(var(--gap) / 3);
	margin-bottom: calc(var(--gap) * 2);
	text-align: center;
	font-size: var(--h2-size);
	font-weight: 700;
	line-height: 1.3;
	color: var(--grey);
}
.prices-block-heading:before,
.prices-block-heading:after {
	content: '';
	border: 1px solid var(--grey);
	border-bottom: none;
	flex: auto;
	max-width: 440px;
	height: 16px;
}
.prices-block-heading:before {
	border-right: none;
}
.prices-block-heading:after {
	border-left: none;
}
.prices-items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 calc(var(--gap) / -1.5) calc(var(--gap) * -1.667);
}
.prices-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 calc(var(--gap) * 1.667);
	padding: 0 calc(var(--gap) / 1.5);
}
.prices-item__wrap {
	position: relative;
	z-index: 1;
}
.prices-item__title {
	font-size: var(--h2-size);
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	line-height: 1.4;
	color: var(--gray-light);
	text-align: center;
	margin: 0;
}
.prices-item__image {
	margin-bottom: calc(var(--gap) * 1.333);
	text-align: center;
}
.prices-item__price {
	display: flex;
	flex-direction: column;
	gap: var(--gap);
}
.prices-item__price-label {
	width: 100%;
	height: 23px;
	background: linear-gradient(90deg, var(--yellow) 0%, var(--pink) 100%);
	padding: 0 calc(var(--gap) / 2.5);
	display: flex;
	align-items: center;
	justify-content: space-between;
	line-height: 1.2;
	letter-spacing: .09em;
	color: var(--grey);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
}
.prices-item__price-label span:last-child {
	color: var(--white);
}
.prices-item__price-value {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: calc(var(--gap) / 3);
	font-size: var(--h6-size);
	font-weight: 800;
	font-family: 'Montserrat', sans-serif;
	line-height: 1.05;
	color: var(--grey);
}
.prices-item__price-value span:first-child {
	order: 1;
}
.prices-item__price-value:after {
	content: '';
	order: 2;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrows_right.svg);
	mask-image: url(images/arrows_right.svg);
	background-color: var(--grey);
	flex: 0 0 28px;
	max-width: 28px;
	width: 28px;
	height: 15px;
}
.prices-item__price-value span:last-child {
	order: 3;
}




.stickers-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -1.5) calc(var(--gap) * -1.667);
}
.stickers-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 calc(var(--gap) * 1.667);
	padding: 0 calc(var(--gap) / 1.5);
}
.stickers-item__wrap {
	position: relative;
	padding: calc(var(--gap) / 1.5);
	z-index: 1;
}
.stickers-item__rating {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: calc(var(--gap) / 1.5);
}
.stickers-item__rating span {
	flex: 0 0 31px;
	max-width: 31px;
	height: 31px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/star.svg);
	mask-image: url(images/star.svg);
	background-color: var(--gray-light);
	opacity: .5;
}
.stickers-item__rating span.active {
	background-color: #FFD52D;
	opacity: 1;
}
.stickers-item__title {
	margin-bottom: calc(var(--gap) / 7.5);
	text-align: center;
	font-weight: 700;
	line-height: 1.4;
	color: var(--grey);
}
.stickers-item__term {
	color: var(--pink);
	text-align: center;
	margin-bottom: 0;
}
.stickers-item__name {
	text-align: center;
	color: var(--grey);
}
.stickers-item__description {
	border-top: 2px solid var(--black);
	padding-top: calc(var(--gap) / 1.5);
	color: var(--grey);
}




.pagePricesInfo-content {
	color: var(--violet);
	line-height: 1.2;
	letter-spacing: .09em;
}



.pagePortfolio-nav {
	margin-top: calc(var(--gap) * 1.667);
}



.portfolio-wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) * 1.667);
	z-index: 1;
}
.portfolio-block {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) * 1.667);
}
.portfolio-items {
	display: none;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -1.5);
}
.portfolio-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	padding: 0 calc(var(--gap) / 1.5);
}
.portfolio-items-100 .portfolio-item {
	flex: 0 0 100%;
	max-width: 100%;
}
.portfolio-items:nth-child(1),
.portfolio-items:nth-child(2),
.portfolio-items:nth-child(3),
.portfolio-items:nth-child(4),
.portfolio-block.active .portfolio-items {
	display: flex;
}
.portfolio-image {
	position: relative;
	overflow: hidden;
	height: calc(var(--container) / 3.5);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	z-index: 1;
}
.portfolio-items:nth-child(1) .portfolio-image {
	height: calc(var(--container) / 8.6);
}
.portfolio-image a:hover img {
	transform: scale(1.05);
}
.portfolio-info {
	position: relative;
	border: 1px solid var(--grey);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	padding: 3px 21px;
	min-height: 106px;
	z-index: 1;
}
.portfolio-title {
	font-size: calc(var(--h2-size) / 1.111);
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	line-height: 1;
	text-transform: lowercase;
	color: var(--grey);
	max-width: 210px;
}
.portfolio-preview {
	position: absolute;
	width: 300px;
	height: 137px;
	top: 10px;
	right: -21px;
	z-index: 1;
}
.portfolio-more {
	text-align: center;
}





.hero-wrap {
	display: flex;
	gap: var(--gap);
	justify-content: space-between;
}
.hero-left {
	flex: 0 0 60%;
	max-width: 60%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.hero-content {
	color: var(--grey);
	margin-bottom: calc(var(--gap) / 2);
}
.hero-text-mark {
	font-size: var(--h6-size);
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: .04em;
	color: var(--grey);
	padding: 2px 6px;
	background: var(--yellow);
	-moz-border-radius: calc(var(--radius) / 2);
	-webkit-border-radius: calc(var(--radius) / 2);
	border-radius: calc(var(--radius) / 2);
	margin-bottom: var(--gap);
}
.hero-right {
	flex: 0 0 auto;
	max-width: calc(40% - var(--gap));
}
.hero-image {
	position: relative;
	z-index: 1;
}
.hero-image-arrow span {
	content: '';
	background: url(images/hero-arrow.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 248px;
	height: 46px;
	left: -220px;
	bottom: -16px;
	transform: rotate(190deg);
	z-index: -1;
}


.heroGallery-swiper {
	overflow: hidden;
	width: 100%;
}
.heroGallery-swiper .swiper-wrapper {
	transition-timing-function: linear !important;
}
.heroGallery-swiper .swiper-slide {
	--sizeHeroGalleryImage: 360px;
	width: var(--sizeHeroGalleryImage);
	user-select: none;
}
.heroGallery-item {
	height: var(--sizeHeroGalleryImage);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.heroGallery-item__image {
	overflow: hidden;
	-moz-border-radius: calc(var(--radius) * 1.5);
	-webkit-border-radius: calc(var(--radius) * 1.5);
	border-radius: calc(var(--radius) * 1.5);
}
.heroGallery-item__image a:hover img {
	transform: scale(1.05);
}
.heroGallery-item__image img {
	max-height: var(--sizeHeroGalleryImage);
}
.heroGallery-text {
	margin-top: calc(var(--gap) * 2);
	font-size: var(--h6-size);
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: .04em;
	color: var(--grey);
	text-align: center;
}
.heroGallery-text p {
	display: flex;
	justify-content: center;
	gap: 6px;
}
.heroGallery-text p:before {
	content: '';
	background: url(images/arrow-text-up.svg) no-repeat center;
	background-size: contain;
	flex: 0 0 33px;
    max-width: 33px;
    height: 20px;
    margin-top: -5px;
    animation: arrowMove 2s infinite;
}



.counter-wrap {
	position: relative;
	padding: var(--gap) calc(var(--gap) * 1.333) calc(var(--gap) * 1.333);
	background: var(--white);
	-moz-border-radius: calc(var(--gap) * 1.5);
	-webkit-border-radius: calc(var(--gap) * 1.5);
	border-radius: calc(var(--gap) * 1.5);
	z-index: 1;
}
.counter-items {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -1.5) calc(var(--gap) * -1.667);
}
.counter-item {
	flex: auto;
	max-width: calc(232px + var(--gap) * 1.333);
	margin: 0 0 calc(var(--gap) * 1.667);
	padding: 0 calc(var(--gap) / 1.5);
}
.counter-item__wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.counter-item__value {
	margin-bottom: 0;
	font-size: calc(var(--h1-size) * 1.333);
	font-weight: 900;
	font-family: 'Neue Machina';
	color: var(--grey);
	line-height: 1.21875;
}
.counter-item__text {
	letter-spacing: .09em;
	color: var(--grey);
}



.offers-heading.heading {
	display: flex;
	gap: var(--gap);
}
.offers-heading.heading img {
	flex: auto;
	max-width: 190px;
}
.offers-heading.heading h2 {
	margin-top: 0;
}

.offers-items {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-template-rows: repeat(3, 1fr);
	grid-column-gap: calc(var(--gap) * 1.333);
	grid-row-gap: calc(var(--gap) * 1.333);
}
.offers-item {

}
.offers-item__wrap {
	position: relative;
	-moz-border-radius: calc(var(--radius) * 1.5);
	-webkit-border-radius: calc(var(--radius) * 1.5);
	border-radius: calc(var(--radius) * 1.5);
	background: var(--yellow);
	height: 160px;
	z-index: 1;
}
.offers-item__title {
	margin: 0;
	line-height: 1.05;
	font-size: var(--h6-size);
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	color: var(--grey);
	text-transform: lowercase;
}
.offers-item__content {
	color: var(--grey);
}
.offers-item:nth-child(1) {
	grid-area: 1 / 1 / 3 / 3;
}
.offers-item:nth-child(1) .offers-item__wrap {
	overflow: hidden;
	height: 360px;
}
.offers-item:nth-child(2) {
	grid-area: 1 / 3 / 2 / 5;
}
.offers-item:nth-child(2) .offers-item__wrap {
	display: flex;
	flex-direction: column-reverse;
	justify-content: space-between;
	padding-top: 20px;
	padding-left: 30px;
	gap: 20px;
}
.offers-item:nth-child(2) .offers-item__image {
	margin-bottom: -8px;
}
.offers-item:nth-child(3) {
	grid-area: 2 / 3 / 3 / 5;
}
.offers-item:nth-child(3) .offers-item__wrap {
	display: flex;
	flex-direction: column;
	padding-top: 18px;
	padding-left: 22px;
	padding-right: 190px;
	padding-bottom: 16px;
	gap: 14px;
	overflow: hidden;
}
.offers-item:nth-child(3) .offers-item__image {
	position: absolute;
	width: 180px;
	height: 146px;
	right: 0;
	bottom: 0;
	z-index: -1;
}
.offers-item:nth-child(3) .offers-item__content p {
	margin-bottom: 7px;
	line-height: 1.2;
	letter-spacing: .09em;
	color: rgba(43, 44, 49, .5);
}
.offers-item:nth-child(3) .offers-item__content p:last-child {
	margin-bottom: 0;
}
.offers-item:nth-child(4) {
	grid-area: 1 / 5 / 2 / 6;
}
.offers-item:nth-child(4) .offers-item__wrap {
	background: none;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.offers-item:nth-child(4) .offers-item__image {
	position: absolute;
	width: 133px;
	height: 92px;
	top: -12px;
	right: -17px;
	z-index: -1;
}
.offers-item:nth-child(4) .offers-item__title {
	font-size: calc(var(--h2-size) / 1.111);
	font-weight: 700;
	line-height: .82;
}
.offers-item:nth-child(5) {
	grid-area: 2 / 5 / 3 / 6;
}
.offers-item:nth-child(5) .offers-item__wrap {
	padding: 20px 5px 20px 30px;
}
.offers-item:nth-child(5) .offers-item__image {
	position: absolute;
	bottom: 0;
	right: 2px;
	width: 147px;
	height: 105px;
	z-index: -1;
}
.offers-item:nth-child(6) {
	grid-area: 1 / 6 / 3 / 7;
}
.offers-item:nth-child(6) .offers-item__wrap {
	padding: 20px 30px 25px;
	text-align: center;
	height: 360px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 13px;
}
.offers-item:nth-child(6) .offers-item__content p {
	margin-bottom: 13px;
}
.offers-item:nth-child(6) .offers-item__content p:last-child {
	margin-bottom: 0;
}
.offers-item:nth-child(6) .offers-item__content blockquote {
	margin: 0 auto 2px;
	background: var(--light);
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	width: 64px;
	height: 63px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.offers-item:nth-child(6) .offers-item__content p img {
	margin-top: 0;
	max-height: 37px;
	margin-bottom: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
}
.offers-item:nth-child(7) {
	grid-area: 3 / 1 / 4 / 3;
}
.offers-item:nth-child(7) .offers-item__wrap {
	padding: 20px 30px 10px 120px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: space-between;
	gap: 15px;
	text-align: right;
}
.offers-item:nth-child(7) .offers-item__image {
	position: absolute;
	width: 220px;
	height: 96px;
	left: 5px;
	bottom: 11px;
	z-index: -1;
}
.offers-item:nth-child(7) .offers-item__content p {
	line-height: 1.2;
	letter-spacing: .09em;
}
.offers-item:nth-child(7) .offers-item__content p strong {
	font-size: var(--h5-size);
	font-family: 'Neue Machina';
	font-weight: 900;
}
.offers-item:nth-child(8) {
	grid-area: 3 / 3 / 4 / 4;
}
.offers-item:nth-child(8) .offers-item__wrap {
	padding: 20px 30px;
}
.offers-item:nth-child(8) .offers-item__image {
	position: absolute;
	width: 201px;
	height: 119px;
	bottom: -7px;
	left: -42px;
	transform: rotate(7.36deg);
	z-index: -1;
}
.offers-item:nth-child(9) {
	grid-area: 3 / 4 / 4 / 5;
}
.offers-item:nth-child(9) .offers-item__wrap {
	overflow: hidden;
	background: none;
}
.offers-item:nth-child(9) .offers-item__image {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.offers-item:nth-child(9) .offers-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	background-position: center;
}
.offers-item:nth-child(9) .offers-item__title {
	padding: 20px 0;
}
.offers-item:nth-child(10) {
	grid-area: 3 / 5 / 4 / 7;
}
.offers-item:nth-child(10) .offers-item__wrap {
	padding: 20px 30px;
	text-align: right;
}
.offers-item:nth-child(10) .offers-item__image {
	position: absolute;
	width: 274px;
	height: 127px;
	top: 22px;
	left: 8px;
	z-index: -1;
}




.consequences-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -1.5) calc(var(--gap) * -3.333);
}
.consequences-item {
	flex: 0 0 50%;
	max-width: 50%;
	margin: 0 0 calc(var(--gap) * 3.333);
	padding: 0 calc(var(--gap) / 1.5);
}
.consequences-item__wrap {
	display: flex;
	align-items: flex-start;
	gap: calc(var(--gap) * 1.5);
}
.consequences-item__left {
	position: relative;
	flex: 0 0 47%;
	max-width: 47%;
	z-index: 1;
}
.consequences-item:nth-child(4) .consequences-item__left {
	margin-top: -12px;
}
.consequences-item__title {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	padding: 50px 10px 30px 20px;
	display: flex;
	gap: 10px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--grey);
	z-index: 1;
}
.consequences-item__title:before {
	content: '';
	flex: 0 0 24px;
	max-width: 24px;
	width: 24px;
	height: 24px;
	background: url(images/finger1.png) no-repeat center;
	background-size: contain;
}
.consequences-item__title .cut {
	display: inline-block;
	overflow: hidden;
	position: relative;
	height: 1em;
}
.consequences-item__title .cut.lower {
	top: 5px;
}
.consequences-item__title .cut.lower span,
.consequences-item__title .cut.lower {
	position: relative;
}
.consequences-item:nth-child(4) .consequences-item__image {
	transform: rotate(10deg);
}
.consequences-item__right {
	flex: auto;
}
.consequences-item__content {
	line-height: 1.5;
}
.consequences-item__content ol {
	padding-left: 17px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.consequences-text-after {
	margin-top: calc(var(--gap) * 1.333);
	text-align: center;
	font-size: var(--h3-size);
	line-height: 1.111;
	font-weight: 400;
	color: var(--grey);
	font-family: 'Segoe Script';
}
.consequences-text-after span {
	background: url(images/finger2.png) no-repeat center;
	background-size: contain;
	display: block;
	width: 64px;
	height: 64px;
	margin: 0 auto calc(var(--gap) / 2);
    animation: handMove 2s infinite;
}
.consequences-button {
	text-align: center;
	margin-top: calc(var(--gap) * 1.833);
	position: relative;
	z-index: 2;
}



.galleryGrid-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -1.5) calc(var(--gap) * -1.667);
}
.galleryGrid-item {
	display: none;
	flex: 0 0 25%;
	max-width: 25%;
	margin: 0 0 calc(var(--gap) * 1.667);
	padding: 0 calc(var(--gap) / 1.5);
}
.galleryGrid-item:nth-child(1),
.galleryGrid-item:nth-child(2),
.galleryGrid-item:nth-child(3),
.galleryGrid-item:nth-child(4) {
	flex: 0 0 50%;
	max-width: 50%;
}
.galleryGrid-item:nth-child(1),
.galleryGrid-item:nth-child(2),
.galleryGrid-item:nth-child(3),
.galleryGrid-item:nth-child(4),
.galleryGrid-item:nth-child(5),
.galleryGrid-item:nth-child(6),
.galleryGrid-item:nth-child(7),
.galleryGrid-item:nth-child(8),
.galleryGrid-item:nth-child(9),
.galleryGrid-item:nth-child(10),
.galleryGrid-item:nth-child(11),
.galleryGrid-item:nth-child(12),
.galleryGrid-item:nth-child(13),
.galleryGrid-item:nth-child(14),
.galleryGrid-item:nth-child(15),
.galleryGrid-item:nth-child(16),
.galleryGrid-items.active .galleryGrid-item {
	display: block;
}
.galleryGrid-item__image {
	position: relative;
	height: calc((var(--container) - var(--gap) * 1.333  * 3) / 4 / 1.625);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
	z-index: 1;
}
.galleryGrid-item:nth-child(1) .galleryGrid-item__image,
.galleryGrid-item:nth-child(2) .galleryGrid-item__image,
.galleryGrid-item:nth-child(3) .galleryGrid-item__image,
.galleryGrid-item:nth-child(4) .galleryGrid-item__image {
	height: calc((var(--container) - var(--gap) * 1.333) / 2 / 1.65);
}
.galleryGrid-item__image a:hover img {
	transform: scale(1.05);
}
.galleryGrid-more {
	text-align: center;
	margin-top: calc(var(--gap) * 1.667);
}




.advantages-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -1.5) calc(var(--gap) * -1.667);
}
.advantages-item {
	flex: 0 0 25%;
	max-width: 25%;
	margin: 0 0 calc(var(--gap) * 1.667);
	padding: 0 calc(var(--gap) / 1.5);
}
.advantages-item__wrap {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) * 1.333);
	align-items: flex-start;
}
.advantages-item__image {
	height: 61px;
	display: flex;
	align-items: center;
}
.advantages-item__image img {
	max-height: 61px;
}
.advantages-button {
	margin-top: calc(var(--gap) * 2);
	text-align: center;
}




.steps-items {
	position: relative;
	z-index: 1;
}
.steps-item {
	width: calc((100% - var(--gap) * 1.333) / 2);
	margin-top: calc(var(--gap) * -1.166);
}
.steps-item:nth-child(2n+1) {
	margin-left: auto;
}
.steps-item:first-child {
	margin-top: 0;
}
.steps-item:last-child {
	margin-bottom: 0;
}
.steps-item__wrap {
	position: relative;
	display: flex;
	gap: calc(var(--gap) * 1.333);
	z-index: 1;
}
.steps-item:nth-child(2n) .steps-item__wrap {
	flex-direction: row-reverse;
}
.steps-item__wrap.full {
	display: block;
}
.steps-item__image {
	flex: 0 0 160px;
	max-width: 160px;
	height: 156px;
	background: var(--white);
	-moz-border-radius: calc(var(--radius) / 1.333);
	-webkit-border-radius: calc(var(--radius) / 1.333);
	border-radius: calc(var(--radius) / 1.333);
	overflow: hidden;
}
.steps-item__wrap.full .steps-item__image {
	max-width: 360px;
	height: 134px;
	background: none;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.steps-item:nth-child(2n+1) .steps-item__wrap.full .steps-item__image {
	margin-left: auto;
}
.steps-item__wrap.full .steps-item__image img {
	max-height: 134px;
}
.steps-item__info {
	position: relative;
	flex: auto;
	max-width: calc(100% - 160px - var(--gap) * 1.333);
	background: var(--grey);
	-moz-border-radius: calc(var(--radius) / 1.333);
	-webkit-border-radius: calc(var(--radius) / 1.333);
	border-radius: calc(var(--radius) / 1.333);
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 1;
}
.steps-item__title {
	position: absolute;
	width: 100%;
	padding: 15px 23px;
	top: 0;
	left: 0;
	font-size: var(--h6-size);
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	line-height: 1.05;
	color: var(--yellow);
	margin: 0;
	z-index: 1;
}
.steps-item__text {
	margin: 0;
	font-weight: 700;
	line-height: 1.4;
	color: var(--light);
	padding: 50px 67.5px 35px;
}
.steps-item__wrap:before {
	content: '';
	border-top: 10px solid var(--gray-light);
	border-right: 10px solid var(--gray-light);
	-moz-border-top-right-radius: calc(var(--radius) / 2);
	-webkit-border-top-right-radius: calc(var(--radius) / 2);
	border-top-right-radius: calc(var(--radius) / 2);
	position: absolute;
	width: 200px;
	height: 50%;
	top: calc(50% - 5px);
	right: calc(var(--gap) * -1.333 - 10px - var(--gap));
	opacity: .49;
	z-index: -1;
}
.steps-item:nth-child(2n+1) .steps-item__wrap:before {
	left: calc(var(--gap) * -1.333 - 10px - var(--gap));
	right: auto;
	transform: scale(-1, 1);
}
.steps-item:first-child .steps-item__wrap:before {
	width: 280px;
}
.steps-item:last-child .steps-item__wrap:before {
	display: none;
}
.steps-item:nth-last-child(2) .steps-item__wrap:before {
	left: calc(100% - var(--gap) - 10px);
	right: auto;
	top: auto;
	bottom: -35px;
	width: 280px;
    transform: scale(-1, -1);
}

.stepsResult-items {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: var(--gap) calc(var(--gap) * 1.166);
	margin-top: calc(var(--gap) * 1.3);
}
.stepsResult-item {
	position: relative;
	flex: 0 0 calc((var(--container) / 3) - (2 * var(--gap) * 1.166) / 3);
	max-width: calc((var(--container) / 3) - (2 * var(--gap) * 1.166) / 3);
	z-index: 1;
}
.stepsResult-item.full {
	flex: 0 0 100%;
	max-width: 100%;
}
.stepsResult-item:nth-child(2):before,
.stepsResult-item:nth-child(3):before {
	content: '';
	background: url(images/arrow-step-result.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 27px;
	height: 43px;
	left: -31px;
	top: 44px;
	z-index: -1;
}
.stepsResult-item__text {
	position: relative;
	min-height: 156px;
	height: 100%;
	background: var(--yellow);
	-moz-border-radius: calc(var(--radius) / 1.333);
	-webkit-border-radius: calc(var(--radius) / 1.333);
	border-radius: calc(var(--radius) / 1.333);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 40px 67px 30px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--grey);
	z-index: 1;
}
.stepsResult-item__image {
	padding: 0 22px;
}
.stepsResult-item__label {
	position: relative;
	padding-left: 184px;
	color: var(--pink);
	font-size: var(--h6-size);
	font-family: 'Segoe Script';
	line-height: 1.1;
	z-index: 1;
}
.stepsResult-item__label:before {
	content: '';
	background: url(images/arrow-step-result-label.svg) no-repeat center;
	background-size: contain;
	width: 53px;
	height: 44px;
	position: absolute;
	left: 122px;
	top: -30px;
    animation: arrowMove 2s infinite;
	z-index: -1;
}



.priceRange-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -1.5) calc(var(--gap) * -1.667);
}
.priceRange-item {
	flex: 0 0 50%;
	max-width: 50%;
	margin: 0 0 calc(var(--gap) * 1.667);
	padding: 0 calc(var(--gap) / 1.5);
}
.priceRange-item__wrap {
	position: relative;
	z-index: 1;
}
.priceRange-item__title {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: calc(var(--gap) / 3);
	margin-bottom: calc(var(--gap) * 1.667);
	text-align: center;
	font-weight: 700;
	line-height: 1.4;
	color: var(--grey);
}
.priceRange-item__title:before,
.priceRange-item__title:after {
	content: '';
	border: 1px solid var(--grey);
	border-bottom: none;
	flex: auto;
	max-width: 218px;
	height: 16px;
}
.priceRange-item__title:before {
	border-right: none;
}
.priceRange-item__title:after {
	border-left: none;
}
.priceRange-item__images {
	display: flex;
	align-items: center;
	justify-content: center;
}
.priceRange-item__image {
	flex: 0 0 calc(50% - 78px / 2);
	max-width: calc(50% - 78px / 2);
	height: 99px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.priceRange-item__image img {
	max-height: 99px;
}
.priceRange-item__images-dots {
	flex: 0 0 78px;
	max-width: 78px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
}
.priceRange-item__images-dots span {
	flex: 0 0 8px;
	max-width: 8px;
	width: 8px;
	height: 8px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: var(--grey);
}
.priceRange-item__price {
	display: flex;
	flex-direction: column;
	gap: var(--gap);
	margin-top: calc(var(--gap) / 1.5);
}
.priceRange-item__price-label {
	width: 100%;
	height: 23px;
	background: linear-gradient(90deg, var(--yellow) 0%, var(--pink) 100%);
	padding: 0 calc(var(--gap) / 3);
	display: flex;
	align-items: center;
	justify-content: space-between;
	line-height: 1.2;
	letter-spacing: .09em;
	color: var(--grey);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
}
.priceRange-item__price-label span:last-child {
	color: var(--white);
}
.priceRange-item__price-value {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: calc(var(--gap) / 3);
	font-size: var(--h6-size);
	font-weight: 800;
	font-family: 'Montserrat', sans-serif;
	line-height: 1.05;
	color: var(--grey);
}
.priceRange-item__price-value span:first-child {
	order: 1;
}
.priceRange-item__price-value:after {
	content: '';
	order: 2;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrows_right.svg);
	mask-image: url(images/arrows_right.svg);
	background-color: var(--grey);
	flex: 0 0 28px;
	max-width: 28px;
	width: 28px;
	height: 15px;
}
.priceRange-item__price-value span:last-child {
	order: 3;
}
.priceRange-item__end {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	text-align: center;
	gap: calc(var(--gap) * 1.5);
}
.priceRange-text {
	line-height: 1.2;
	letter-spacing: .09em;
}



.guarantees-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -1.5) calc(var(--gap) * -1.667);
}
.guarantees-item {
	flex: 0 0 25%;
	max-width: 25%;
	margin: 0 0 calc(var(--gap) * 1.667);
	padding: 0 calc(var(--gap) / 1.5);
}
.guarantees-item__wrap {
	position: relative;
	height: 100%;
	-moz-border-radius: calc(var(--radius) / 1.333);
	-webkit-border-radius: calc(var(--radius) / 1.333);
	border-radius: calc(var(--radius) / 1.333);
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 1.2);
	padding: 8px 16px;
	transition: .5s;
	z-index: 1;
}
.guarantees-item__wrap.active {
	background: var(--pink);
	color: var(--white);
}
.guarantees-item__image span {
	width: 62px;
	height: 62px;
	display: block;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--grey);
	transition: .5s;
}
.guarantees-item__wrap.active .guarantees-item__image span {
	background-color: var(--white);
}



.compare-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -1.5) calc(var(--gap) * -1.667);
}
.compare-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 calc(var(--gap) * 1.667);
	padding: 0 calc(var(--gap) / 1.5);
}
.compare-item__wrap {
	position: relative;
	height: 180px;
	-moz-border-radius: calc(var(--radius) * 1.5);
	-webkit-border-radius: calc(var(--radius) * 1.5);
	border-radius: calc(var(--radius) * 1.5);
	border: 2px solid var(--grey);
	color: var(--grey);
	padding: 6px 20px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 1;
}
.compare-item__wrap.active {
	border-color: var(--pink);
	background: var(--pink);
	color: var(--light);
}
.compare-item__image {
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--black);
}
.compare-item__title {
	line-height: 1.35;
	font-weight: 700;
	margin-bottom: calc(var(--gap) / 3);
}
.compare-item__text {
	font-size: var(--h2-size);
	font-weight: 700;
	line-height: 1.3;
	font-family: 'Montserrat', sans-serif;
}
.compare-item__wrap.active .compare-item__title {
	font-size: var(--h3-size);
	font-weight: 500;
	line-height: 1.02;
	padding-bottom: 12px;
	margin-bottom: 12px;
	border-bottom: 2px solid var(--white);
}
.compare-item__label {
	position: relative;
	font-size: var(--h6-size);
	font-family: 'Segoe Script';
	line-height: 1.11;
	color: var(--pink);
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	gap: calc(var(--gap) / 3);
	margin-top: 13px;
	z-index: 1;
}
.compare-item__label:before {
	content: '';
	background: url(images/arrow-compare-label.svg) no-repeat center;
	background-size: contain;
	flex: 0 0 53px;
	max-width: 53px;
	width: 53px;
	height: 44px;
    animation: arrowMove 2s infinite;
}


.compareRange-wrap {
	position: relative;
	z-index: 1;
}
.compareRange-items {
	display: flex;
	gap: 3px;
}
.compareRange-item {
	flex: 1;
}
.compareRange-item__title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	height: 17px;
	margin-bottom: calc(var(--gap) * 1.667);
}
.compareRange-item__title p {
	font-size: 10px;
	line-height: 1.2;
	letter-spacing: .09em;
	flex: 0 0 100%;
	max-width: 100%;
	background: var(--yellow);
	height: 17px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.compareRange-item:nth-last-child(3) .compareRange-item__title p {
	background: #F2C94C;
}
.compareRange-item:last-child .compareRange-item__title p {
	background: var(--pink);
	color: var(--light);
	font-weight: 700;
}
.compareRange-item__title span {
	flex: 0 0 13px;
	max-width: 13px;
	width: 13px;
	height: 13px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
.compareRange-item__title span:nth-child(1) {
	background: #FFC329;
}
.compareRange-item__title span:nth-child(2) {
	background: #E6571A;
}
.compareRange-item__title span:nth-child(3) {
	background: var(--pink);
}
.compareRange-item__image_car {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 27px;
	margin-bottom: calc(var(--gap) * 3);
}
.compareRange-item__image_car img {
	max-height: 27px;
}
.compareRange-item__image_car.dots:before {
	content: '';
	background: url(images/dots-line.svg) no-repeat center;
	background-size: contain;
	flex: 0 0 43px;
	max-width: 43px;
	height: 11px;
	margin-top: 6px;
}
.compareRange-item__image_board {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
}
.compareRange-item__image_board img {
	max-height: 50px;
}
.compareRange-item__image_board.line:before {
	content: '';
	background: var(--grey);
	flex: 0 0 35px;
	max-width: 35px;
	height: 3px;
	margin-top: 5px;
}
.compareRange-item__image_board.dots:before {
	content: '';
	background: url(images/dots.svg) no-repeat center;
	background-size: contain;
	flex: 0 0 36px;
	max-width: 36px;
	height: 8px;
	margin-top: 3px;
}
.compareRange-price-1 {
	position: absolute;
	margin: 0;
	top: 114px;
	left: 0;
	width: 100%;
	font-weight: 700;
	line-height: 1.2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: calc(var(--gap) / 2.5);
	z-index: 1;
}
.compareRange-price-1:before {
	content: '';
	background: url(images/staple-cars.svg) no-repeat center;
	background-size: contain;
	flex: 0 0 18px;
	max-height: 18px;
	width: 100%;
}
.compareRange-price-2 {
	position: relative;
	margin: calc(var(--gap) / 1.5) 0 0 5px;
	width: 129px;
	font-weight: 700;
	line-height: 1.2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: calc(var(--gap) / 2.5);
	z-index: 1;
}
.compareRange-price-2:before {
	content: '';
	background: url(images/staple-board.svg) no-repeat center;
	background-size: contain;
	flex: 0 0 18px;
	max-height: 18px;
	width: 100%;
}
.compareRange-text {
	font-size: var(--h6-size);
	font-family: 'Segoe Script';
	line-height: 1.1;
	color: var(--pink);
	position: relative;
	display: flex;
	justify-content: center;
	gap: calc(var(--gap) / 3);
	z-index: 1;
}
.compareRange-text:before {
	content: '';
	background: url(images/arrow-compare-text.svg) no-repeat center;
	background-size: contain;
	flex: 0 0 37px;
	max-width: 37px;
	width: 37px;
	height: 17px;
    animation: arrowMove 2s infinite;
}



.saving-items {
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -1.5) calc(var(--gap) * -1.667);
}
.saving-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 calc(var(--gap) * 1.667);
	padding: 0 calc(var(--gap) / 1.5);
}
.saving-item__icon {
	margin-bottom: calc(var(--gap) / 2.09);
	text-align: right;
}
.saving-item__icon img {
	max-height: 32px;
}
.saving-item__wrap {
	position: relative;
	border: 2px solid var(--grey);
	-moz-border-radius: calc(var(--radius) * 1.5);
	-webkit-border-radius: calc(var(--radius) * 1.5);
	border-radius: calc(var(--radius) * 1.5);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: calc(var(--gap) / 2) calc(var(--gap) / 1.5) calc(var(--gap) / 1.5);
	z-index: 1;
}
.saving-item__image {
	flex: 0 0 50%;
	max-width: 50%;
	text-align: center;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.saving-item__image img {
	max-width: 90px;
	max-height: 54px;
}
.saving-item__title {
	flex: 0 0 50%;
	max-width: 50%;
	font-size: var(--h3-size);
	font-weight: 500;
	line-height: 1.02;
	color: var(--grey);
	padding-left: calc(var(--gap) / 3);
	margin: 0;
}
.saving-item__text {
	flex: 0 0 100%;
	max-width: 100%;
	margin-top: calc(var(--gap) / 1.5);
	padding-top: calc(var(--gap) / 1.5);
	border-top: 2px solid var(--black);
	font-size: var(--h2-size);
	font-weight: 700;
	font-family: 'Montserrat', sans-serif;
	line-height: 1.3;
	color: var(--grey);
	text-align: center;
}
.saving-item__label {
	font-size: var(--h6-size);
	font-family: 'Segoe Script';
	line-height: 1.1;
	color: var(--pink);
	position: relative;
	display: flex;
	justify-content: center;
	gap: calc(var(--gap) / 3);
	margin-top: calc(var(--gap) * 1.11);
	z-index: 1;
}
.saving-item__label:before {
	content: '';
	background: url(images/arrow-saving-label.svg) no-repeat center;
	background-size: contain;
	flex: 0 0 46px;
	max-width: 46px;
	width: 46px;
	height: 24px;
	margin-top: -6px;
    animation: arrowMove 2s infinite;
}


.listAdvantages-wrap {
	max-width: 406px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: var(--gap);
}
.listAdvantages-image-top {
	text-align: center;
}
.listAdvantages-image-bottom {
	text-align: center;
}
.listAdvantages-image-bottom img {
	max-height: 120px;
}
.listAdvantages-items {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) * 2.4);
}
.listAdvantages-item {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 1.25);
	padding-left: 40px;
	z-index: 1;
}
.listAdvantages-item__count {
	font-weight: 900;
	line-height: 1.4;
	letter-spacing: .03em;
	color: var(--pink);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.listAdvantages-item__title {
	margin: 0;
	font-weight: 700;
	line-height: 1.4;
	color: var(--grey);
	transition: .5s;
}
.listAdvantages-item:hover .listAdvantages-item__title {
	text-shadow: 0 4px 4px rgba(0, 0, 0, .25);
}
.listAdvantages-button {
	text-align: center;
}



.reviews-items {
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -1.5) calc(var(--gap) * -1.667);
}
.reviews-item {
	flex: 0 0 calc(100% / 4);
	max-width: calc(100% / 4);
	margin: 0 0 calc(var(--gap) * 1.667);
	padding: 0 calc(var(--gap) / 1.5);
}
.reviews-item__wrap {
	position: relative;
	background: var(--white);
	-moz-border-radius: calc(var(--radius) * 1.5);
	-webkit-border-radius: calc(var(--radius) * 1.5);
	border-radius: calc(var(--radius) * 1.5);
	padding: calc(var(--gap) / 1.5);
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap) calc(var(--gap) / 3);
	z-index: 1;
}
.reviews-item__info {
	position: relative;
	flex: auto;
	max-width: calc(100% - 60px - var(--gap) / 3);
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 2);
	padding-left: var(--gap);
	z-index: 1;
}
.reviews-item__info:before {
	content: '';
	background: url(images/quote-reviews.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 33px;
	height: 21px;
	top: 0;
	left: 0;
	z-index: -1;
}
.reviews-item__company {
	margin-bottom: 0;
	font-size: var(--text-size-sm);
	font-weight: 700;
	line-height: 1.11;
	color: var(--grey);
}
.reviews-item__name {
	font-size: var(--text-size-esm);
	line-height: 1.11;
	color: var(--grey);
}
.reviews-item__image {
	flex: 0 0 60px;
	max-width: 60px;
	height: 60px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	overflow: hidden;
	border: 5px solid var(--gray-4);
}
.reviews-item__content {
	flex: 0 0 100%;
	max-width: 100%;
	font-size: var(--text-size-esm);
	font-style: italic;
	line-height: 1.46;
	color: var(--grey);
}



.clients-wrap {
	background: var(--grey);
	padding-left: var(--gap);
	padding-right: calc(var(--gap) * 1.833);
	-moz-border-radius: calc(var(--radius) * 1.5);
	-webkit-border-radius: calc(var(--radius) * 1.5);
	border-radius: calc(var(--radius) * 1.5);
	display: flex;
	gap: var(--gap);
}
.clients-left {
	flex: 0 0 25%;
	max-width: 25%;
}
.clients-right {
	flex: 0 0 calc(75% - var(--gap));
	max-width: calc(75% - var(--gap));
}
.clients-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -3) calc(var(--gap) / -1.5);
}
.clients-item {
	flex: 0 0 25%;
	max-width: 25%;
	margin: 0 0 calc(var(--gap) / 1.5);
	padding: 0 calc(var(--gap) / 3);
}
.clients-item__image {
	position: relative;
	background: var(--light);
	-moz-border-radius: calc(var(--radius) / 1.333);
	-webkit-border-radius: calc(var(--radius) / 1.333);
	border-radius: calc(var(--radius) / 1.333);
	height: calc(((var(--container) * .75 - var(--gap)) - var(--gap) / 1.5 * 3) / 4 / 2.5);
	padding: 8px 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}
.clients-item__image img {
	max-height: calc(((var(--container) * .75 - var(--gap)) - var(--gap) / 1.5 * 3) / 4 / 2.5 - 8px * 2);
}




.faq-items {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) * 1.667);
}
.faq-item {
	background: var(--white);
	-moz-border-radius: calc(var(--radius) / 1.333);
	-webkit-border-radius: calc(var(--radius) / 1.333);
	border-radius: calc(var(--radius) / 1.333);
}
.faq-item__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: var(--h6-size);
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: .03em;
	color: var(--grey);
	padding: calc(var(--gap) / 1.2) 0 calc(var(--gap) / 1.2) calc(var(--gap) * 1.11);
	cursor: pointer;
	transition: .5s;
}
.faq-item__toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 80px;
	max-width: 80px;
	width: 80px;
	height: 13px;
	-webkit-mask-size: 21px;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/arrow-faq.svg);
    mask-image: url(images/arrow-faq.svg);
    background-color: var(--pink);
	transition: .5s;
}
.active .faq-item__toggle {
	transform: rotate(180deg);
}
.faq-item__body {
	padding: calc(var(--gap) / 2) calc(var(--gap) * 1.11) calc(var(--gap) / 1.2);
	color: var(--grey);
}



@media(max-width: 1279px) {
	:root {
		--container: 916px;
		--gap: 24px;
		--radius: 16px;
		--shadow: 0 0px 5px 0px rgba(0, 0, 0, 0.1);

		--text-size: 16px;
		--text-size-sm: 14px;
		--text-size-esm: 12px;
		--h1-size: 42px;
		--h2-size: 34px;
		--h3-size: 28px;
		--h4-size: 24px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.section {
		padding-top: 120px;
		padding-bottom: 120px;
	}
	.section-lg {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.section-md {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.section-sm {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.btn {
		min-height: 54px;
		padding: 6px 30px;
	}
	.header-wrap {
		height: 68px;
	}
	.header-logo img {
		max-height: 68px;
	}
	.main-menu li a {
		min-width: 90px;
	}
	.hero-image-arrow span {
		width: 180px;
		height: 35px;
		left: -180px;
		bottom: -5px;
	}
	.hero-left {
		flex: 0 0 67%;
		max-width: 67%;
	}
	.hero-right {
		max-width: calc(33% - var(--gap));
	}
	.heroGallery-swiper .swiper-slide {
		--sizeHeroGalleryImage: 280px;
	}
	.main {
		padding-top: 140px;
	}
	.offers-items {
		gap: var(--gap);
	}
	.offers-item__wrap {
		height: 127px;
	}
	.offers-item:nth-child(1) .offers-item__wrap,
	.offers-item:nth-child(6) .offers-item__wrap {
		height: 279px;
	}
	.offers-item:nth-child(2) .offers-item__wrap {
		padding-top: 15px;
		gap: 10px;
	}
	.offers-item:nth-child(2) .offers-item__image {
		width: 235px;
		height: 80px;
	}
	.offers-item:nth-child(3) .offers-item__wrap {
		padding-top: 15px;
		padding-right: 130px;
		gap: 10px;
	}
	.offers-item:nth-child(3) .offers-item__image {
		width: 130px;
		height: 105px;
	}
	.offers-item__content {
		font-size: var(--text-size-sm);
	}
	.offers-item:nth-child(3) .offers-item__content p {
		margin-bottom: 3px;
	}
	.offers-item:nth-child(4) .offers-item__image {
		width: 110px;
		height: 76px;
	}
	.offers-item:nth-child(5) .offers-item__wrap {
		padding: 16px 5px 16px 20px
	}
	.offers-item:nth-child(5) .offers-item__image {
		width: 120px;
		height: 80px;
	}
	.offers-item:nth-child(6) .offers-item__wrap {
		gap: 10px;
		padding: 15px 20px;
	}
	.offers-item:nth-child(6) .offers-item__content blockquote {
		width: 44px;
		height: 44px;
	}
	.offers-item:nth-child(6) .offers-item__content p img {
		max-height: 24px;
	}
	.offers-item:nth-child(7) .offers-item__wrap {
		padding: 15px 20px 10px 100px;
		gap: 10px;
	}
	.offers-item:nth-child(7) .offers-item__image {
		width: 168px;
		height: 74px;
	}
	.offers-item:nth-child(8) .offers-item__wrap {
		padding: 15px 20px;
	}
	.offers-item:nth-child(8) .offers-item__image {
		width: 169px;
		height: 100px;
		left: -25px;
	}
	.offers-item:nth-child(9) .offers-item__title {
		padding: 15px 0;
	}
	.offers-item:nth-child(10) .offers-item__wrap {
		padding: 15px 20px;
	}
	.offers-item:nth-child(10) .offers-item__image {
		width: 220px;
		height: 103px;
	}
	.quote-block-text {
		padding-left: 82px;
	}
	.quote-block-text:before {
		width: 54px;
		height: 54px;
		top: 3px;
		left: 3px;
	}
	.consequences-item__title {
		padding: 30px 10px 20px 8px;
	}
	.consequences-item__title:before {
		flex: 0 0 20px;
		max-width: 20px;
		width: 20px;
		height: 20px;
	}
	.counter-item {
		max-width: calc(232px + var(--gap));
	}
	.counter-items,
	.galleryGrid-items,
	.advantages-items,
	.priceRange-items,
	.guarantees-items,
	.compare-items,
	.saving-items,
	.reviews-items,
	.blog-items,
	.prices-items,
	.stickers-items,
	.contactsInfo-items {
		margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1.333);
	}
	.counter-item,
	.galleryGrid-item,
	.advantages-item,
	.priceRange-item,
	.guarantees-item,
	.compare-item,
	.saving-item,
	.reviews-item,
	.blog-item,
	.prices-item,
	.stickers-item,
	.contactsInfo-item {
		margin: 0 0 calc(var(--gap) * 1.333);
		padding: 0 calc(var(--gap) / 2);
	}
	.consequences-items {
		margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -2);
	}
	.consequences-item {
		margin: 0 0 calc(var(--gap) * 2);
		padding: 0 calc(var(--gap) / 2);
	}
	.galleryGrid-item__image {
		height: calc((var(--container) - var(--gap) * 3) / 4 / 1.625);
	}
	.galleryGrid-item:nth-child(1) .galleryGrid-item__image, .galleryGrid-item:nth-child(2) .galleryGrid-item__image, .galleryGrid-item:nth-child(3) .galleryGrid-item__image, .galleryGrid-item:nth-child(4) .galleryGrid-item__image {
		height: calc((var(--container) - var(--gap)) / 2 / 1.65);
	}
	.advantages-item__wrap {
		gap: var(--gap);
	}
	.steps-item__wrap {
		gap: var(--gap);
	}
	.steps-item__info {
		max-width: calc(100% - 160px - var(--gap));
	}
	.steps-item__text {
		padding: 40px 24px 35px;
	}
	.stepsResult-item:nth-child(2):before, .stepsResult-item:nth-child(3):before {
		width: 20px;
		height: 32px;
		left: -24px;
	}
	.stepsResult-item__text {
		padding: 30px 40px;
		min-height: 120px;
	}
	.priceRange-item__title {
		margin-bottom: calc(var(--gap) * 1.2);
	}
	.priceRange-item__image {
		height: 76px;
	}
	.priceRange-item__image img {
		max-height: 76px;
	}
	.listAdvantages-items {
		gap: calc(var(--gap) * 2);
	}
	.faq-items {
		gap: calc(var(--gap) * 1.25);
	}
	.footer-logo img {
		max-height: 60px;
	}
	.soc-links li a {
		width: 36px;
		height: 36px;
	}
	.footer-bottom {
		padding: var(--gap) 0;
		font-size: var(--text-size-sm);
	}
	.portfolio-preview {
		width: 240px;
		height: 110px;
		top: 18px;
		right: -15px;
	}
	.portfolio-info {
		padding: 3px 16px;
	}
	.portfolio-wrap,
	.portfolio-block,
	.galleryDesign-items {
		gap: calc(var(--gap) * 1.333);
	}
	.portfolio-items {
		margin: 0 calc(var(--gap) / -2);
	}
	.portfolio-item {
		padding: 0 calc(var(--gap) / 2);
	}
	.quote-block-text {
		font-size: var(--h3-size);
	}
	.galleryDesign-item {
		gap: var(--gap);
	}
	.blog-item__image {
		flex: 0 0 calc((var(--container) - var(--gap) * 2) / 3 / 1.084);
		max-height: calc((var(--container) - var(--gap) * 2) / 3 / 1.084);
	}
	.blog-item__wrap {
		gap: calc(var(--gap) / 2);
	}
	.prices-block-heading:before, .prices-block-heading:after {
		max-width: 320px;
	}
	.prices-block-heading {
		margin-bottom: calc(var(--gap) * 1.5);
	}
	.contactsInfo-item__image {
		flex: 0 0 24px;
		max-width: 24px;
	}
	.contactsInfo-item__content iframe {
		height: 374px;
	}
}



@media(max-width: 991px) {
	:root {
		--container: 696px;
		--gap: 24px;
		--radius: 16px;
		--shadow: 0 0px 5px 0px rgba(0, 0, 0, 0.1);

		--text-size: 16px;
		--text-size-sm: 14px;
		--text-size-esm: 12px;
		--h1-size: 32px;
		--h2-size: 28px;
		--h3-size: 24px;
		--h4-size: 22px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	[data-aos] {
		opacity: 1 !important;
		transform: none !important;
	}
	body {
		font-size: var(--text-size-esm);
	}
	h1, h2, h3, h4, h5, h6 {
		margin: calc(var(--gap) * 1.25) 0 calc(var(--gap) / 2);
	}
	p, ul, ol, blockquote {
		margin: 0 0 calc(var(--gap) / 2);
	}
	input[type="text"], input[type="email"], input[type="tel"], input[type="password"], select, textarea {
		font-size: var(--text-size-sm);
	}
	.section,
	.section-lg {
		padding-top: 64px;
		padding-bottom: 64px;
	}
	.section-md {
		padding-top: 48px;
		padding-bottom: 48px;
	}
	.section-sm {
		padding-top: 36px;
		padding-bottom: 36x;
	}
	.btn {
		min-height: 48px;
		padding: 6px 22px;
		font-size: var(--text-size-sm);
	}
	.btn.btn-link {
		letter-spacing: .04em;
	}
	.heading {
		margin-bottom: calc(var(--gap) * 1.5);
	}
	.header {
		padding: calc(var(--gap) / 1.5);
	}
	.header-wrap {
		height: 44px;
	}
	.header-logo img {
		max-height: 44px;
	}
	.main-menu {
		display: none;
	}
	.header-phone {
		font-size: var(--text-size);
	}
	.main {
		padding-top: 124px;
	}
	.hero-wrap {
		flex-direction: column;
		gap: var(--gap);
	}
	.hero-left {
		flex: auto;
		max-width: 100%;
	}
	.hero-content {
		margin-bottom: 0;
	}
	.hero-left .hero-text-mark,
	.hero-left .hero-button {
		display: none;
	}
	.hero-right {
		flex: auto;
		max-width: 100%;
	}
	.hero-image {
		text-align: center;
	}
	.hero-image img {
		max-height: 182px;
	}
	.hero-image-arrow span {
		background-image: url(images/arrow-hero-mob.svg);
		left: calc(50% + 120px);
		bottom: 140px;
		transform: none;
		width: 17px;
		height: 49px;
	}
	.hero-text-mark {
		width: max-content;
		max-width: 100%;
		margin: calc(var(--gap) * 1.5) auto 0;
		font-size: var(--text-size);
		letter-spacing: .03em;
	}
	.heroGallery-swiper .swiper-slide {
		--sizeHeroGalleryImage: 130px;
	}
	.hero-button {
		text-align: center;
		margin-top: calc(var(--gap) * 1.2);
	}
	.btn,
	.hero-text-mark,
	.heroGallery-item__image,
	.counter-wrap,
	.galleryGrid-item__image,
	.steps-item__image,
	.steps-item__info,
	.stepsResult-item__text,
	.guarantees-item__wrap,
	.faq-item,
	.clients-item__image {
		-moz-border-radius: calc(var(--radius) / 1.6);
		-webkit-border-radius: calc(var(--radius) / 1.6);
		border-radius: calc(var(--radius) / 1.6);
	}
	.counter-wrap {
		padding: calc(var(--gap) / 3);
	}
	.counter-item__value {
		font-size: var(--h3-size);
		line-height: 1;
	}
	.counter-item__text {
		font-size: 8px;
	}
	.offers-heading.heading {
		margin-left: auto;
		margin-right: auto;
		max-width: 343px;
		flex-direction: column;
		align-items: flex-start;
		gap: calc(var(--gap) / 3);
	}
	.offers-heading.heading img {
		max-width: 97px;
	}
	.offers-items {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(9, 1fr);
		grid-column-gap: calc(var(--gap) / 3);
		grid-row-gap: calc(var(--gap) / 3);
		max-width: 343px;
		margin: auto;
	}
	.offers-item:nth-child(1) { grid-area: 1 / 1 / 3 / 3; }
	.offers-item:nth-child(2) { grid-area: 3 / 1 / 4 / 3; }
	.offers-item:nth-child(3) { grid-area: 4 / 1 / 5 / 3; }
	.offers-item:nth-child(4) { grid-area: 5 / 1 / 6 / 2; }
	.offers-item:nth-child(5) { grid-area: 6 / 1 / 7 / 2; }
	.offers-item:nth-child(6) { grid-area: 5 / 2 / 7 / 3; }
	.offers-item:nth-child(7) { grid-area: 7 / 1 / 8 / 3; }
	.offers-item:nth-child(8) { grid-area: 8 / 1 / 9 / 2; }
	.offers-item:nth-child(9) { grid-area: 8 / 2 / 9 / 3; }
	.offers-item:nth-child(10) { grid-area: 9 / 1 / 10 / 3; }

	.offers-item__wrap {
		height: 168px;
	}
	.compare-item__wrap,
	.offers-item__wrap,
	.saving-item__wrap,
	.reviews-item__wrap {
		-moz-border-radius: var(--radius);
		-webkit-border-radius: var(--radius);
		border-radius: var(--radius);
	}
	.offers-item:nth-child(1) .offers-item__wrap, .offers-item:nth-child(6) .offers-item__wrap {
		height: 343px;
	}
	.offers-item__title {
		font-size: var(--h5-size);
	}
	.offers-item:nth-child(2) .offers-item__wrap {
		padding: 18px 16px;
		gap: 17px;
		justify-content: flex-start;
	}
	.offers-item:nth-child(2) .offers-item__image {
		width: 286px;
		height: 102px;
	}
	.offers-item:nth-child(3) .offers-item__wrap {
		padding: 20px 184px 20px 16px;
	}
	.offers-item:nth-child(3) .offers-item__image {
		width: 170px;
		height: 140px;
		bottom: calc(50% - 70px);
	}
	.offers-item:nth-child(3) .offers-item__content p {
		margin-bottom: 7px;
	}
	.offers-item:nth-child(4) .offers-item__image {
		width: 133px;
		height: 92px;
		top: 0;
		right: 2px;
	}
	.offers-item:nth-child(4) .offers-item__title {
		font-size: var(--h1-size);
		font-weight: 800;
		line-height: .8;
		padding-bottom: 10px;
	}
	.offers-item:nth-child(5) .offers-item__wrap {
		padding: 10px 12px;
	}
	.offers-item:nth-child(5) .offers-item__image {
		width: 147px;
		height: 105px;
		right: 10px;
	}
	.offers-item:nth-child(6) .offers-item__content blockquote {
		width: 64px;
		height: 63px;
	}
	.offers-item:nth-child(6) .offers-item__content p img {
		max-height: 37px;
	}
	.offers-item:nth-child(7) .offers-item__wrap {
		padding: 20px 16px 15px 120px;
		gap: 10px;
	}
	.offers-item:nth-child(7) .offers-item__image {
		width: 220px;
		height: 96px;
		bottom: 20px;
	}
	.offers-item:nth-child(7) .offers-item__content p strong {
		font-size: var(--h3-size);
	}
	.offers-item:nth-child(8) .offers-item__wrap {
		padding: 16px 12px;
	}
	.offers-item:nth-child(8) .offers-item__image {
		width: 185px;
		height: 110px;
		left: -19px;
		transform: none;
	}
	.offers-item:nth-child(10) .offers-item__wrap {
        padding: 16px 22px;
	}
	.offers-item:nth-child(10) .offers-item__image {
		width: 274px;
		height: 127px;
		top: 29px;
		left: 0;
	}
	.quote-block {
		flex-direction: column;
	}
	.quote-block-info {
		flex: auto;
		max-width: 100%;
		padding-left: 60px;
		text-align: left;
		font-size: var(--text-size-sm);
	}
	.quote-block-image {
		width: 103px;
		height: 103px;
		margin-bottom: var(--gap);
	}
	.quote-block-name {
		margin-bottom: calc(var(--gap) / 3);
	}
	.quote-block-text {
		font-size: var(--h5-size);
		padding-left: 60px;
	}
	.quote-block-text:before {
		left: 0;
		top: 5px;
		width: 46px;
		height: 40px;
	}
	.heroGallery-text {
		margin-top: calc(var(--gap) / 1.25);
		font-size: var(--text-size-sm);
	}
	.heroGallery-text p:before {
		background-image: url(images/arrow-text-up-mob.svg);
		flex: 0 0 31px;
		max-width: 31px;
		height: 19px;
		margin-top: -8px;
	}
	.consequences-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.consequences-item__title {
		font-size: var(--text-size);
		padding: 50px 10px 30px 20px;
	}
	.consequences-item__wrap {
		max-width: 560px;
		margin: auto;
	}
	.consequences-text-after {
		font-size: var(--text-size);
		margin-top: calc(var(--gap) * 1.5);
	}
	.consequences-text-after span {
		width: 36px;
		height: 36px;
	}
	.consequences-button {
		margin-top: calc(var(--gap) * 1.5);
	}
	.galleryGrid-items {
		margin: 0 calc(var(--gap) / -6) calc(var(--gap) / -3);
	}
	.galleryGrid-item {
		margin: 0 0 calc(var(--gap) / 3);
		padding: 0 calc(var(--gap) / 6);
		flex: 0 0 50%;
		max-width: 50%;
	}
	.galleryGrid-item:nth-child(1), .galleryGrid-item:nth-child(2), .galleryGrid-item:nth-child(3), .galleryGrid-item:nth-child(4) {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.galleryGrid-item__image {
		height: calc((var(--container) - var(--gap) / 3) / 2 / 1.9);
	}
	.galleryGrid-item:nth-child(1) .galleryGrid-item__image, .galleryGrid-item:nth-child(2) .galleryGrid-item__image, .galleryGrid-item:nth-child(3) .galleryGrid-item__image, .galleryGrid-item:nth-child(4) .galleryGrid-item__image {
		height: calc(var(--container) / 2.13);	
	}
	.galleryGrid-more {
		margin-top: calc(var(--gap) * 1.5);
	}
	.advantages-items {
		margin: 0;
		gap: calc(var(--gap) * 1.5);
		flex-direction: column;
	}
	.advantages-item {
		flex: auto;
		max-width: 100%;
		margin: 0;
		padding: 0;
	}
	.advantages-item__wrap {
		flex-direction: row;
		gap: calc(var(--gap) * 1.5);
	}
	.advantages-item__image {
		flex: 0 0 56px;
		max-width: 56px;
		width: 56px;
		height: 56px;
	}
	.advantages-item__image img {
		max-height: 56px;
	}
	.advantages-button {
		margin-top: calc(var(--gap) * 1.5);
	}

    .steps-item {
    	width: 100%;
    	margin-top: 0;
    }
    .steps-item__wrap {
    	padding-bottom: calc(var(--gap) * 1.5);
    	gap: calc(var(--gap) * 1.5);
    }
    .steps-item:last-child .steps-item__wrap {
    	padding-bottom: 0;
    }
    .steps-item:nth-child(2n) .steps-item__wrap {
    	flex-direction: row;
    }
    .steps-item__image {
		flex: 0 0 100px;
		max-width: 100px;
		height: 100px;
	}
	.steps-item__info {
		max-width: calc(100% - 100px - var(--gap) * 1.5);
	}
	.steps-item__title {
		position: relative;
		font-size: var(--text-size);
		padding: 8px 16px;
	}
	.steps-item__text {
		padding: 8px 16px;
		font-size: var(--text-size);
	}
	.steps-item__wrap.full .steps-item__image {
		max-width: 100%;
		max-height: 83px;
		text-align: left;
		justify-content: flex-start;
	}
	.steps-item__wrap.full .steps-item__image img {
		max-height: 83px;
	}
	.steps-item:nth-child(2n+1) .steps-item__wrap.full .steps-item__image {
		margin-left: calc(100px + var(--gap) * 1.5);
	}
	.steps-item__wrap:before {
		width: 180px;
		right: auto;
		left: 60px;
		height: 100%;
	}
	.steps-item:nth-child(2n+1) .steps-item__wrap:before {
		left: 60px;
	}
	.steps-item:first-child .steps-item__wrap:before {
		width: 60px;
	}
	.steps-item:nth-last-child(2) .steps-item__wrap:before {
		left: 60px;
		transform: none;
		bottom: auto;
		top: calc(50% - 5px);
		width: 190px;
	}

	.stepsResult-items {
		margin: calc(var(--gap) / 1.25) 0 0;
		gap: calc(var(--gap) * 2.333);
		flex-direction: column-reverse;
		max-width: 220px;
		margin-left: calc(100px + var(--gap) * 1.5);
	}
	.stepsResult-item {
		order: 2;
		margin: 0;
		padding: 0;
		flex: auto;
		max-width: 100%;
	}
	.stepsResult-item:last-child {
		order: 1;
	}
	.stepsResult-item__text {
		font-size: var(--text-size);
		letter-spacing: .03em;
		padding: 8px 20px;
		min-height: auto;
	}
	.stepsResult-item:nth-child(2):before, .stepsResult-item:nth-child(3):before {
		width: 27px;
		height: 43px;
		left: calc(50% - 21px);
		transform: rotate(-90deg);
		top: auto;
		bottom: -50px;
	}
	.stepsResult-item__image {
		padding: 0;
	}
	.stepsResult-item__label {
		padding-left: 15px;
		font-size: var(--text-size);
		margin-top: calc(var(--gap) / -2);
	}
	.stepsResult-item__label:before {
		background-image: url(images/arrow-step-result-label-mob.svg);
		left: -5px;
		width: 13px;
		height: 37px;
		top: -27px;
	}
	.heading p,
	.page-description {
		font-size: var(--text-size);
	}
	.priceRange-items {
		margin: 0;
		flex-direction: column;
		gap: calc(var(--gap) * 2.333);
	}
	.priceRange-item {
		flex: auto;
		max-width: 100%;
		margin: 0;
		padding: 0;
	}
	.priceRange-item__title {
		font-size: var(--text-size);
	}
	.priceRange-item__title:before, .priceRange-item__title:after {
		margin-bottom: -6px;
	}
	.priceRange-item__title {
		margin-bottom: calc(var(--gap) / 1.25);
	}
	.priceRange-item__image {
		height: 55px;
	}
	.priceRange-item__image img {
		max-height: 55px;
	}
	.priceRange-item__image {
		flex: 0 0 calc(50% - 70px / 2);
		max-width: calc(50% - 70px / 2);
	}
	.priceRange-item__images-dots {
		flex: 0 0 70px;
		max-width: 70px;
		gap: 6px;
	}
	.priceRange-item__images-dots span {
		flex: 0 0 5px;
		max-width: 5px;
		width: 5px;
		height: 5px;
	}
	.priceRange-item__price-label {
		height: 14px;
		font-size: var(--text-size-sm);
	}
	.priceRange-item__price {
		gap: calc(var(--gap) / 2.4);
	}
	.priceRange-item__price-value {
		font-size: var(--text-size);
	}
	.priceRange-item__price-value:after {
		flex: 0 0 21px;
		max-width: 21px;
		width: 21px;
		height: 11px;
	}
	.priceRange-item__end {
		margin-top: -20px;
	}
	.priceRange-text {
		font-size: var(--text-size-sm);
	}
	.guarantees-items {
		flex-direction: column;
		margin: 0;
		gap: calc(var(--gap) / 1.5);
	}
	.guarantees-item {
		flex: auto;
		max-width: 100%;
		margin: 0;
		padding: 0;
	}
	.guarantees-item__wrap {
		flex-direction: row;
		gap: calc(var(--gap) / 1.5);
		padding: 8px 34px;
	}
	.guarantees-item__image span {
		width: 48px;
		height: 48px;
	}
	.compare-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.compare-item__label {
		justify-content: center;
		font-size: var(--text-size);
	}
	.compare-item__wrap {
		height: 168px;
	}
	.compare-item__title {
		font-size: var(--text-size);
	}
	.compare-item__text {
		font-size: calc(var(--h1-size) * 1.125);
	}
	.compare-item__image img {
		max-height: 56px;
	}
	.compare-item__label:before {
		flex: 0 0 36px;
		max-width: 36px;
		width: 36px;
		height: 31px;
	}
	.compareRange-items {
		flex-direction: column;
		gap: calc(var(--gap) / 3);
	}
	.compareRange-item {
		flex: auto;
		display: flex;
		align-items: center;
	}
	.compareRange-item__title {
		flex: 0 0 50px;
		max-width: 50px;
		height: auto;
		margin-bottom: 0;
		margin-right: calc(var(--gap) / 1.5);
		display: flex;
		flex-direction: column;
	}
	.compareRange-item__title p {
		font-size: 11px;
		height: 32px;
		width: 100%;
		flex: 0 0 32px;
		max-height: 32px;
	}
	.compareRange-item__title span {
		flex: 0 0 10px;
		max-width: 10px;
		max-height: 10px;
		width: 10px;
		height: 10px;
	}
	.compareRange-item__image_car {
		margin-bottom: 0;
		height: 32px;
		margin-right: 70px;
	}
	.compareRange-item__image_car img {
		max-height: 32px;
		max-width: 48px;
	}
	.compareRange-item__image_board {
		flex: 0 0 44px;
		max-width: 44px;
		height: auto;
	}
	.compareRange-item__image_board img {
		max-height: 36px;
	}
	.compareRange-item__image_car.dots:before {
		height: 8px;
		transform: rotate(90deg);
		margin-left: 4px;
	}
	.compareRange-item__image_board.dots:before {
		height: 6px;
		transform: rotate(90deg);
		margin-left: 4px;
	}
	.compareRange-price-1 {
		transform: rotate(-90deg);
		transform-origin: right top;
		width: 570px;
		top: 0;
		left: calc(-570px + 130px);
		gap: calc(var(--gap) / 8);
		font-size: var(--text-size);
	}
	.compareRange-price-2 {
		transform: rotate(-90deg);
        transform-origin: right top;
        top: -8px;
        width: 95px;
        left: calc(-90px + 244px);
        gap: calc(var(--gap) / 8);
        font-size: var(--text-size);
        position: absolute;
        margin: 0;
	}
	.compareRange-text {
		font-size: var(--text-size);
		position: absolute;
		width: calc(100% - 260px);
		right: 0;
		top: 100px;
		z-index: 1;
		padding-top: 65px;
		display: block;
	}
	.compareRange-text:before {
		background-image: url(images/arrow-compare-text-mob.svg);
		position: absolute;
        width: 18px;
        height: 51px;
        max-width: 18px;
        top: 0;
        left: 10px;
	}
	.compareRange-text br {
		display: none;
	}
	.saving-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.saving-item__icon {
		margin-bottom: calc(var(--gap) / 3);
		text-align: left;
	}
	.saving-item__icon img {
		max-height: 26px;
	}
	.saving-item__image img {
		max-width: 72px;
		max-height: 46px;
	}
	.saving-item__title {
		font-size: var(--h5-size);
	}
	.saving-item__text {
		margin-top: calc(var(--gap) / 2);
		padding-top: calc(var(--gap) / 2);
		font-size: calc(var(--h1-size) * 1.125);
	}
	.saving-item__label {
		font-size: var(--text-size);
		margin-top: calc(var(--gap) / 1.25);
	}
	.saving-item__label:before {
		background-image: url(images/arrow-saving-label-mob.svg);
		flex: 0 0 49px;
		max-width: 49px;
		width: 49px;
		height: 32px;
		margin-top: -15px;
	}
	.listAdvantages-image-top img {
		max-height: 160px;
	}
	.listAdvantages-items {
        gap: calc(var(--gap) * 1.5);
    }
    .listAdvantages-item {
    	gap: calc(var(--gap) / 1.5);
    }
    .listAdvantages-item__count {
    	font-size: var(--text-size);
    	letter-spacing: .03em;
    }
    .listAdvantages-item__title {
    	font-size: var(--text-size);
    	letter-spacing: .03em;
    }
    .listAdvantages-image-bottom img {
    	max-height: 88px;
    }
    .reviews-item {
    	flex: 0 0 100%;
    	max-width: 100%;
    }
    .reviews-item__company {
    	font-size: var(--text-size);
    }
    .reviews-item__wrap {
    	gap: calc(var(--gap) / 1.5) calc(var(--gap) / 3);
    }
    .clients-wrap.section-md {
    	padding: calc(var(--gap) * 1.5) var(--gap);
    	flex-direction: column;
    	gap: calc(var(--gap) * 1.5);
    }
    .clients-left {
    	flex: auto;
    	max-width: 100%;
    }
    .clients-right {
    	flex: auto;
    	max-width: 100%;
    }
    .clients-item__image {
    	height: calc(((var(--container) - var(--gap) * 2) - var(--gap) / 1.5 * 3) / 4 / 2.5);
    }
    .clients-item__image img {
    	max-height: calc(((var(--container) - var(--gap) * 2) - var(--gap) / 1.5 * 3) / 4 / 2.5 - 8px * 2);
    }
    .faq-items {
    	gap: var(--gap);
    }
    .faq-item__head {
    	font-size: var(--text-size-sm);
    	padding: calc(var(--gap) / 3) 0 calc(var(--gap) / 3) calc(var(--gap) / 2);
    }
    .faq-item__toggle {
		flex: 0 0 50px;
		max-width: 50px;
		width: 50px;
		height: 20px;
		-webkit-mask-size: 14px;
	}
	.faq-item__body {
		padding: calc(var(--gap) / 3) calc(var(--gap) / 2) calc(var(--gap) / 2);
	}
	.clients-wrap {
		-moz-border-radius: var(--radius);
		-webkit-border-radius: var(--radius);
		border-radius: var(--radius);
	}

	.flex-wrap {
		align-items: flex-start;
		gap: var(--gap);
	}
	.footer-logo {
		order: 1;
		flex: calc(50% - var(--gap) / 2);
		max-width: calc(50% - var(--gap) / 2);
	}
	.footer-logo img {
		max-height: 36px;
	}
	.footer-phone {
		order: 2;
		flex: calc(50% - var(--gap) / 2);
		max-width: calc(50% - var(--gap) / 2);
		text-align: right;
		font-size: var(--text-size);
	}
	.footer-right .footer-phone {
		display: none;
	}
	.footer-right {
		order: 3;
		flex: 0 0 100%;
		max-width: 100%;
		align-items: center;
	}
	.footer-email {
		text-align: center;
		max-width: 100%;
	}
	.footer-email a {
		display: block;
		width: max-content;
		max-width: 100%;
		margin: auto;
	}
	.footer-soc {
		max-width: 320px;
	}
	.footer-left {
		order: 4;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.soc-links {
		gap: calc(var(--gap) / 2);
	}
	.soc-links li a {
        width: 28px;
        height: 28px;
    }
    .footer-menu {
    	flex-direction: row;
    	flex-wrap: wrap;
    	justify-content: center;
    }
    .footer-menu li a {
		display: flex;
		align-items: center;
		justify-content: center;
		background: var(--white);
		-moz-border-radius: calc(var(--radius) / 3);
		-webkit-border-radius: calc(var(--radius) / 3);
		border-radius: calc(var(--radius) / 3);
		color: var(--grey);
		text-decoration: none;
		padding: calc(var(--gap) / 3);
		min-height: 29px;
	}
	.footer-menu li a:hover {
		background: var(--light);
		color: var(--grey);
	}
	.footer-menu li a:active,
	.footer-menu li.current-post-ancestor a,
	.footer-menu li.current-menu-item a,
	.footer-menu li.current-category-ancestor a {
		background: var(--pink);
		color: var(--white);
	}
	.bottom-menu {
		flex-direction: column;
		gap: calc(var(--gap) / 2);
	}
	.footer-bottom {
		font-size: var(--text-size-esm);
		padding: calc(var(--gap) / 2) 0;
	}

	.pagePortfolio-nav {
		margin-top: calc(var(--gap) * 1.5);
		gap: calc(var(--gap) / 3);
	}
	.page-nav,
	.page-nav li {
		gap: calc(var(--gap) / 3);
	}
	.page-nav {
		font-size: var(--text-size);
	}
	.portfolio-wrap, .portfolio-block, .galleryDesign-items {
		gap: var(--gap);
	}
	.portfolio-items:first-child .portfolio-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.portfolio-items:first-child .portfolio-item:first-child {
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: var(--gap);
	}
	.portfolio-items:nth-child(1) .portfolio-image {
		height: calc(var(--container) / 5.5);
	}
	.portfolio-info {
		padding: 8px 16px;
        max-width: 343px;
        margin: auto;
	}
	.portfolio-preview {
		top: 5px;
		right: -5px;
	}
	.blog-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.blog-item__image {
		flex: 0 0 calc((var(--container) - var(--gap)) / 2 / 1.084);
		max-height: calc((var(--container) - var(--gap)) / 2 / 1.084);
	}
	.blog-item__title {
		font-size: var(--text-size);
	}
	.blog-item__excerpt {
		font-size: var(--text-size-sm);
	}
	.singleBlog-info {
		padding: calc(var(--gap) * 1.5) var(--gap);
	}
	.page-block {
		padding: calc(var(--gap) * 1.5) var(--gap);
	}
	.singleBlog-nav {
		flex-direction: column;
		gap: calc(var(--gap) / 1.5);
	}
	.singleBlog-nav-item {
		flex: auto;
		max-width: 100%;
	}
	.singleBlog-nav-item .nav-title {
		font-size: var(--text-size);
	}
	.singleBlog-nav-item a {
		padding: calc(var(--gap) / 1.5);
		gap: calc(var(--gap) / 4);
	}
	.prices-block-heading {
		font-size: var(--text-size);
		margin-bottom: var(--gap);
	}
	.prices-block-heading:before, .prices-block-heading:after {
		margin-bottom: -6px;
	}
	.prices-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.prices-item__title {
		font-size: var(--text-size);
	}
	.prices-item__image {
		margin-bottom: calc(var(--gap) / 2);
	}
	.prices-item__image img {
		max-height: 60px;
	}
	.prices-item__price {
		gap: calc(var(--gap) / 2.4);
	}
	.prices-item__price-label {
		height: 14px;
	}
	.prices-item__price-value {
		font-size: var(--text-size);
	}
	.prices-item__price-value:after {
		height: 10px;
	}
	.stickers-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.stickers-item__wrap {
		padding: 0;
	}
	.stickers-item__rating span {
		flex: 0 0 24px;
		max-width: 24px;
		height: 24px;
	}

	.pageContacts-social-text {
		font-size: var(--text-size);
	}
	.contactsInfo-item {
		flex: 0 0 50%;
		max-width: 50%;
		order: 1;
	}
	.contactsInfo-item:nth-last-child(3) {
		order: 2;
	}
	.contactsInfo-item:nth-last-child(2) {
		order: 3;
	}
	.contactsInfo-item__content iframe {
		height: 359px;
	}
	.contactsInfo-item__wrap {
		gap: calc(var(--gap) / 2);
		padding: calc(var(--gap) / 2);
	}
	.contactsInfo-item__title {
		font-size: var(--text-size);
	}
	.contactsInfo-item__content {
		font-size: var(--text-size-sm);
	}
}



@media(max-width: 767px) {
	:root {
		--container: 516px;
		--gap: 24px;
		--radius: 16px;
		--shadow: 0 0px 5px 0px rgba(0, 0, 0, 0.1);

		--text-size: 16px;
		--text-size-sm: 14px;
		--text-size-esm: 12px;
		--h1-size: 32px;
		--h2-size: 28px;
		--h3-size: 24px;
		--h4-size: 22px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.heading br {
		display: none;
	}
	.admin-bar .header {
		top: 46px;
	}
	.admin-bar .header.fixed {
		top: 0px;
	}
	.clients-item {
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}
    .clients-item__image {
    	height: calc(((var(--container) - var(--gap) * 2) - var(--gap) / 1.5 * 2) / 3 / 2.5);
    }
    .clients-item__image img {
    	max-height: calc(((var(--container) - var(--gap) * 2) - var(--gap) / 1.5 * 2) / 3 / 2.5 - 8px * 2);
    }
    .portfolio-block,
    .galleryDesign-items,
    .galleryDesign-item {
    	gap: calc(var(--gap) / 3);
    }
    .portfolio-items {
    	margin: 0 calc(var(--gap) / -6);
    }
    .portfolio-item {
    	padding: 0 calc(var(--gap) / 6);
    }
    .portfolio-more {
    	margin-top: calc(var(--gap) / 2.5);
    }
    .galleryDesign-item-66-33 .galleryDesign-item__image:nth-child(1), .galleryDesign-item-33-66 .galleryDesign-item__image:nth-child(2) {
    	flex: 0 0 calc(100% / 3 * 2 - var(--gap) / 3 / 2);
    	max-width: calc(100% / 3 * 2 - var(--gap) / 3 / 2);
    }
	.galleryDesign-item-66-33 .galleryDesign-item__image:nth-child(2), .galleryDesign-item-33-66 .galleryDesign-item__image:nth-child(1) {
		flex: 0 0 calc(100% / 3 - var(--gap) / 3 / 2);
		max-width: calc(100% / 3 - var(--gap) / 3 / 2);
	}
	.blog-items,
	.contactsInfo-items {
		margin: 0 calc(var(--gap) / -4) calc(var(--gap) * -1);
	}
	.blog-item,
	.contactsInfo-item {
		margin: 0 0 var(--gap);
		padding: 0 calc(var(--gap) / 4);
	}
	.contactsInfo-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
}



@media(max-width: 575px) {
	:root {
		--container: calc(100vw - 40px);
		--gap: 24px;
		--radius: 16px;
		--shadow: 0 0px 5px 0px rgba(0, 0, 0, 0.1);

		--text-size: 16px;
		--text-size-sm: 14px;
		--text-size-esm: 12px;
		--h1-size: 32px;
		--h2-size: 28px;
		--h3-size: 24px;
		--h4-size: 22px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.hero-image-arrow span {
		bottom: 148px;
		left: calc(50% + 100px);
	}
	.consequences-item__wrap {
		gap: calc(var(--gap) / 2);
	}
	.consequences-item__left {
		flex: 0 0 51%;
		max-width: 51%;
	}
	.consequences-item__title {
		padding: 8px;
		align-items: center;
	}
	.clients-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
    .clients-item__image {
    	height: calc(((var(--container) - var(--gap) * 2) - var(--gap) / 1.5) / 2 / 2.5);
    }
    .clients-item__image img {
    	max-height: calc(((var(--container) - var(--gap) * 2) - var(--gap) / 1.5) / 2 / 2.5 - 8px * 2);
    }
	.blog-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.blog-item__image {
		flex: 0 0 calc(var(--container) / 1.084);
		max-height: calc(var(--container) / 1.084);
	}
	.pageContacts-social-buttons {
		gap: calc(var(--gap) / 3);
		flex-direction: column;
		align-items: flex-start;
	}
}



@media (max-width: 384px) {
	.offers-item__image {
		height: 100%;
	}
	.offers-item:nth-child(1) .offers-item__image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}
}