@charset "utf-8";
:root {
 --font-family: "Exo 2", Arial, -apple-system, "Open Sans", system-ui, "sans-serif";
--dark: #000;
 --grey: #828385;
 --lightgrey: #afb0b2;
 --borders: #c8c8c8;
 --borders-dark: #858488;
 --bg-grey: #F6F7F7;
 --white: #fff;
 --red: #E60A28;
 --box-shadow: 0 0 80px rgba(0, 0, 0, 0.1);
 --box-shadow-small: 0 0 30px rgba(0, 0, 0, 0.1);
}
html, body {
	height: 100%;
	box-sizing: border-box;
	text-rendering: optimizeLegibility !important;
	-webkit-font-smoothing: antialiased;
}
body {
	margin: 0;
	padding: 0;
	background: var(--white);
	font: normal 13px/1.4 var(--font-family);
	color: var(--dark);
	-webkit-text-size-adjust: none;
	display: flex;
	flex-direction: column;
}
*, *:before, *:after {
	box-sizing: border-box;
}
form, fieldset {
	margin: 0;
	padding: 0;
	border: 0;
}
input, select, textarea, button {
	font: normal 12px/1.2 var(--font-family);
	color: var(--dark);
	outline: none;
	text-align: left;
}
input[type="text"], input[type="password"], input[type="email"], input[type="color"], input[type="date"], input[type="datetime-local"], input[type="month"], input[type="number"], input[type="range"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], input[type="week"], textarea, select {
	-webkit-appearance: none;
	border-radius: 0;
	box-shadow: none;
	border-style: solid;
	border-width: 0 0 1px 0;
	border-color: var(--borders);
	background: none;
	margin: 0;
	padding: 6px 0;
	width: 100%;
	display: block;
	transition: border 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
opacity: 1;
color: var(--grey);
}
input::-moz-placeholder, textarea::-moz-placeholder {
opacity: 1;
color: var(--grey);
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
opacity: 1;
color: var(--grey);
}
 input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
opacity: 0.5!important;
}
input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
opacity: 0.5!important;
}
input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
opacity: 0.5!important;
}
input::-ms-clear {
 display: none;
}
button::-moz-focus-inner {
 border: 0;
}
input:not(:placeholder-shown) {
	border-color: var(--dark);
}
input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-results-button, input[type="search"]::-webkit-search-results-decoration {
 -webkit-appearance:none;
}
textarea {
	resize: none;
}
.outtaHere {
	overflow: hidden;
	max-width: 100vw;
	position: fixed!important;
	transform: scale(0)!important;
}
header, nav, section, article, aside, footer, menu, time, figure, figcaption, main {
	display: block;
}
img, svg, picture {
	border: 0;
	vertical-align: top;
}
a {
	color: var(--red);
	text-decoration: underline;
	outline: none;
	cursor: pointer;
}
a:hover {
	text-decoration: none;
}
a[href^=tel] {
	color: inherit!important;
	cursor: inherit;
	text-decoration: none!important;
}
strong {
	font-weight: 500;
}
p, ol, ul {
	margin: 1em 0;
	padding: 0;
}
ol, ul, li {
	list-style: none;
}
li {
	position: relative;
	margin: 0.5em 0;
	padding: 0 0 0 2em;
}
ul > li:before {
	content: '•';
	text-align: center;
	width: 2em;
	position: absolute;
	top: 0;
	left: 0;
}
ol {
	/*counter-reset: li;*/
	counter-reset: step-counter calc(var(--start) - 1);
}

ol > li{
	counter-increment: step-counter;
}
ol > li:before {
	/*
	counter-increment: li;
		content: counters(li, ".") ". ";*/
	
	content: counter(step-counter);
	position: relative;
	display: inline-block;
	vertical-align: top;
	min-width: 2em;
	margin: 0 0 0 -2em;
	padding: 0 0.25em 0 0;
}
h1, .h1, h2, .h2, h3, .h3, h4, h5, h6 {
	color: var(--dark);
	font-weight: 500;
	font-size: 14px;
	line-height: 1.25;
	margin: 2em 0 1em 0;
}
h1, .h1 {
	font-size: 18px;
	margin-top: 0;
	margin-bottom: 22px;
}
h2, .h2 {
	font-size: 16px;
}
.checkbox {
	display: block;
	position: relative;
	width: 14px;
	height: 14px;
	border: 1px solid var(--borders);
	transition-property: border, background;
	transition-duration: 0.2s;
	transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media (pointer:fine) {
label:hover input:not(:checked) ~ .checkbox {
	border-color: var(--dark);
}
}
input:checked ~ .checkbox {
	border-color: var(--red);
	background: var(--red);
}
.checkbox:before {
	content: '';
	position: absolute;
	top: 40%;
	left: 50%;
	width: 10px;
	height: 5px;
	border-style: solid;
	border-color: var(--white);
	border-width: 0 0 2px 2px;
	transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}
input:checked ~ .checkbox:before {
	opacity: 1;
}
.input {
	position: relative;
}
.btn {
	display: block;
	flex: 0 0 auto;
	width: 100%;
	max-width: 100%;
	font: normal 12px/1.2 var(--font-family);
	text-align: center;
	text-decoration: none;
	text-transform: none;
	background: none;
	border: 1px solid var(--borders);
	color: var(--dark);
	-webkit-appearance: none;
	cursor: pointer;
	outline: none;
	box-shadow: none;
	border-radius: 1px;
	padding: 6px 16px 7px 16px;
	transition-property: color, border, background;
	transition-duration: 0.2s;
	transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media (pointer:fine) {
.btn:hover {
	color: var(--red);
	border-color: var(--red);
}
}
.break-word {
	word-break: break-all;
}
.nowrap {
	white-space: nowrap;
}
.uppercase {
	text-transform: uppercase;
}
.grey, .gray {
	color: var(--grey);
}
.swiper {
	overflow: hidden;
}
.swiper-wrapper {
	display: flex;
}
.swiper-slide {
	flex: 0 0 auto;
	width: 100%;
}
.swiper-arrows {
	display: flex;
	align-items: center;
	font-size: 12px;
	gap: 0.5em;
	position: relative;
	z-index: 10;
}
.swiper-arrows .swiper-pagination-horizontal {
	position: static;
	flex: 0 0 auto;
	width: auto!important;
	line-height: 0;
	margin: 0 24px!important;
}
.swiper-pagination-horizontal {
	display: flex!important;
	align-items: center;
	justify-content: center;
}
.swiper-pagination-bullet {
	background: none!important;
	border: 1px solid var(--borders);
	opacity: 1!important;
	transition-property: opacity, box-shadow, border;
	transition-duration: 0.2s;
	transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
	width: 10px!important;
	height: 10px!important;
	border-radius: 50%!important;
}
.swiper-pagination-bullet-active {
	border-color: var(--red)!important;
	box-shadow: inset 0 0 0 4px var(--red)!important;
}

@media (pointer:fine) {
.swiper-pagination-bullet:hover {
	box-shadow: inset 0 0 0 4px var(--borders);
}
}
.swiper-arr {
	flex: 0 0 auto;
	width: 2.75em;
	height: 2.75em;
	display: block;
	outline: none;
	cursor: pointer;
	border-radius: 1.375em;
	box-shadow: inset 0 0 0 1px var(--borders);
	transform: translate3d(0, 0, 0);
	transition-property: opacity, box-shadow;
	transition-duration: 0.2s;
	transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.swiper-arr.swiper-button-disabled {
	pointer-events: none;
	opacity: 0.5;
}
.swiper-arr svg {
	width: 1em;
	height: 1em;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -0.5em;
	fill: var(--grey);
	transition-property: fill, opacity;
	transition-duration: 0.2s;
	transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media (pointer:fine) {
.swiper-arr:hover {
	box-shadow: inset 0 0 0 1.4em var(--borders);
}
.swiper-arr:hover svg {
	fill: var(--white)!important;
}
}
.mainwrap {
	flex: 0 0 auto;
	width: 100%;
	min-height: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
}
.content {
	order: 2;
	flex: 1 0 auto;
	padding-top: 104px;
	padding-bottom: 80px;
	display: flex;
	flex-direction: column;
}
.container {
	padding: 0 20px;
	flex: 0 0 auto;
	width: 100%;
}
.header {
	order: 1;
	flex: 0 0 auto;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 90;
	pointer-events: none;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 70px, rgba(255, 255, 255, 0) 100%);
	height: 104px;
	padding-left: 52px;
}
.header .grid {
	pointer-events: all;
	font-size: 12px;
	color: var(--grey);
	height: 52px;
	justify-content: space-between;
	margin-left: -8px;
}

@media only screen and (max-width: 374px) {
.header .grid {
	position: relative;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start!important;
}
.header .grid .btn {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate3d(0, -50%, 0);
}
}
.header .grid, .header .grid > *:not(.btn) {
	display: flex;
	gap: 2px 12px;
	align-items: center;
}
.header .grid > *:not(.btn) {
	align-items: flex-start;
	flex-direction: column;
	gap: 2px 12px;
	white-space: nowrap;
}
.header .grid .btn {
	flex: 0 0 auto;
	width: auto;
	margin-left: auto;
}
.header .grid > *:not(.btn) > * {
	flex: 0 0 auto;
}
.header .grid .btn span {
	display: none;
}
.header a {
	color: inherit;
	text-decoration: none;
}
.main-logo {
	z-index: 2000;
	position: fixed;
	width: 52px;
	height: 52px;
	overflow: hidden;
	top: 0;
	left: 0;
	text-align: left;
	text-indent: -100vw;
	background: var(--red) url(../img/logo-min.svg) no-repeat 0 0;
	background-size: contain;
	transition: box-shadow 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media (pointer:fine) {
a.main-logo:hover {
	box-shadow: 0 0 20px var(--red);
}
}
.main-logo:before {
	content: '';
	display: block;
	padding-top: 100%;
}
.side-toggle {
	cursor: pointer;
	position: fixed;
	z-index: 300;
	width: 52px;
	height: 52px;
	left: 0;
	top: 52px;
	font-size: 16px;
	backface-visibility: hidden;
	transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.side-toggle svg {
	width: 1em;
	height: 1em;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -0.5em;
	fill: var(--grey);
	transition-property: fill, opacity;
	transition-duration: 0.2s;
	transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.side-toggle svg:nth-child(2) {
	opacity: 0;
}
.side-toggle .num {
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: center;
	white-space: nowrap;
	color: var(--white);
	background: var(--red);
	font-weight: 500;
	font-size: 0.6875em;
	line-height: 1.5454em;
	height: 1.5454em;
	min-width: 1.5454em;
	padding: 0 0.18em;
	border-radius: 0.7727em;
	margin: -1.5454em 0;
	transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.text-toggle-filters {
	display: none;
}
.toggle-menu {
	background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.toggle-menu svg {
	fill: var(--red);
}
.toggle-search {
	margin-top: 80px;
}
.toggle-filters {
	margin-top: 160px;
}
.open-menu .toggle-menu svg, .open-search .toggle-search svg, .open-filters .toggle-filters-main svg, .open-results-filters .toggle-filters-search svg {
	fill: var(--dark);
}
html:not(.open-results) .toggle-filters-search, html.open-results .toggle-filters-main {
	opacity: 0;
	pointer-events: none;
}

@media only screen and (orientation: portrait) and (max-width: 767px), only screen and (max-width: 819px) {
html.open-search .toggle-menu, html.open-filters .toggle-menu {
	opacity: 0;
	pointer-events: none;
}
html:not(.open-menu):not(.open-search) .toggle-search {
	opacity: 0;
	pointer-events: none;
}
html:not(.open-menu):not(.open-results) .toggle-filters-search, html:not(.open-menu):not(.open-filters) .toggle-filters-main {
	opacity: 0;
	pointer-events: none;
}
}
.menu, .search, .search-results, .filters {
	line-height: 1.2;
	position: fixed;
	width: 100%;
	height: 100%;
	background: var(--white);
	transition-property: transform, opacity;
	transition-duration: 0.2s;
	transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
	transform: translate3d(calc(-100% + 52px), 0, 0);
	will-change: transform, opacity;
	backface-visibility: hidden;
	z-index: 200;
}
.menu, .search, .search-results, .filters {
	padding: 52px 0 0 52px;
	overflow: hidden;
	overflow-y: auto;
	opacity: 0;
	pointer-events: none;
}
.search-results {
	top: 90px;
	height: calc(100% - 90px);
	pointer-events: none;
	padding-top: 20px;
}
.open-menu .menu, .open-search .search, .open-search .search-results, .open-filters .filters-main, .open-results-filters .filters-search {
	transform: translate3d(0, 0, 0);
}
.open-menu .menu, .open-search .search, .open-results .search-results, .open-filters .filters-main, .open-results-filters .filters-search {
	pointer-events: all;
	opacity: 1;
}
.open-menu html, .open-search html, .open-filters html {
	overflow: hidden;
}
.search-results .grid-catalog {
	padding-bottom: 42px;
}
.search-results-title {
	display: none;
	color: var(--dark);
	position: sticky;
	top: 0;
	z-index: 2;
	background: var(--white);
	padding: 20px 0;
}
.menu {
	font-size: 14px;
}
.tags-ind {
	/*font-size: 16.8px;*/
	font-size: 14px;
}
.menu .container {
	padding-bottom: 48px;
}
.menu .link-big, .menu .link-small {
	display: block;
	text-decoration: none;
	transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	color: var(--grey);
}
.menu .link-big {
	/*font-size: 1.142em;*/
	/*padding: 0.625em 0;*/
	font-size: 1.2em;
	padding: 0.475em 0 0.525em 0;
	border-style: solid;
	border-width: 1px 0 0 0;
	border-color: var(--borders);
}
.menu .submenu {
	/*padding: 0.571em 0 2em 0;*/
	padding: 0 0 1em 0;
}
.menu .link-small {
	font-size: 1em;
	/*padding: 0.357em 5ex 0.285em 0.857em;*/
	padding: 0.25em 5ex 0.25em 0.857em;
	position: relative;
}
.menu .link-small .num {
	color: var(--lightgrey);
	position: absolute;
	right: 0;
	min-width: 4ex;
}
.menu .link-big.active, .menu .link-small.active {
	color: var(--dark);
}

@media (pointer:fine) {
.menu a.link-big:hover, .menu a.link-small:hover {
	color: var(--red);
}
}
.menu .dot {
	display: inline-block;
	vertical-align: middle;
	background: var(--red);
	width: 6px;
	height: 6px;
	border-radius: 50%;
	position: relative;
	top: -1px;
	left: 6px;
	opacity: 0;
	transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.menu .active-slide .dot {
	opacity: 1;
}
.filters {
	display: flex;
	flex-direction: column;
	font-size: 14px;
}
.filters-content {
	flex: 1 0 auto;
	padding-bottom: 20px;
}
.filters-foot {
	position: sticky;
	bottom: 0;
	flex: 0 0 auto;
	background: var(--white);
	padding: 0 0 30px 0;
}
.filters-section-title {
	display: block;
	position: relative;
	cursor: pointer;
	font-size: 1.142em;
	padding: 0.625em 1.875em 0.625em 0;
	border-style: solid;
	border-width: 1px 0 0 0;
	border-color: var(--borders);
	color: var(--grey);
	transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media (pointer:fine) {
.filters-section-title:hover {
	color: var(--red);
}
}
.filters-section-title:before, .filters-section-title:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0.9375em;
	width: 10px;
	height: 1px;
	margin: -0.5px -5px;
	background: var(--grey);
}
.filters-section-title:before {
	transform: rotate(-90deg);
	transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	backface-visibility: hidden;
	will-change: transform;
}
.filters-section.open .filters-section-title {
	color: var(--dark);
}
.filters-section.open .filters-section-title:before {
	transform: rotate(0deg);
}
.filters-section-ind {
	padding: 0.571em 0 1.571em 0;
}
.filters-section:not(.open) .filters-section-in {
	display: none;
}
.filters-section .check {
	font-size: 1em;
}
.check {
	display: block;
	cursor: pointer;
	position: relative;
	line-height: 1.2;
	padding: 0.357em 0 0.285em 2.857em;
	color: var(--grey);
}
.check input {
	position: absolute;
	transform: scale(0);
	z-index: -1;
}
.check .checkbox {
	position: absolute;
	top: 0.957em;
	left: 0.571em;
	transform: translate3d(0, -50%, 0);
}
.check input ~ *:not(.checkbox) {
	transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.check input:checked ~ *:not(.checkbox) {
	color: var(--dark);
}

@media (pointer:fine) {
.check:hover input ~ *:not(.checkbox) {
	color: var(--red);
}
}
.ui-slider-title {
	line-height: 1.2;
	padding: 0.357em 0 0.285em 0;
	margin: 0 12px;
}
.ui-slider-element:not(:first-child) {
	margin-top: 1em;
}
.ui-slider-wrap {
	position: relative;
	height: 1px;
	background: var(--borders);
	margin: 8px 12px 0 12px;
	padding: 0 5px;
}
.ui-slider {
	position: relative;
	height: 100%!important;
	background: none!important;
	border: 0!important;
	border-radius: 0!important;
}
.ui-slider-range {
	position: absolute;
	top: 0;
	bottom: 0;
	background: var(--borders-dark);
	border-radius: 0!important;
}
.ui-slider-handle {
	position: absolute;
	top: 50%!important;
	width: 10px!important;
	height: 10px!important;
	border: 1px solid var(--borders-dark)!important;
	outline: none!important;
	margin: -5px!important;
	background: var(--white)!important;
	border-radius: 50%!important;
}
.ui-slider-handle:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	margin: -12px;
}
.search .toggle, .search-close {
	display: none;
}
.search .input input {
	height: 38px;
	border-radius: 0;
	border-width: 0 0 1px 0;
	padding: 0 0 0 24px;
	font-size: 14px;
}
.search .input > svg {
	width: 16px;
	height: 16px;
	position: absolute;
	top: 50%;
	left: 0;
	margin: -8px 0;
	fill: var(--grey);
	transition: fill 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	pointer-events: none;
}
.search .input input:not(:placeholder-shown) ~ svg {
	fill: var(--dark);
}
.grid-catalog {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
	gap: 24px 12px;
}
.grid-clients {
	gap: 12px;
	grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
}
.grid-catalog .el {
	display: flex;
	flex-direction: column;
}
.grid-catalog .el.wide {
	grid-area: 1/1/1/3;
	justify-content: space-between;
}
.item-mini {
	display: block;
	text-decoration: none;
	color: var(--dark);
	text-align: left;
	font-size: 12px;
	line-height: 1.2;
	flex: 0 0 auto;
	width: 100%;
}
.item-mini a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media (pointer:fine) {
.item-mini a:hover {
	color: var(--red);
}
}
.item-mini .photo {
	display: block;
	margin: 0 0 1em 0;
	overflow: hidden;
	position: relative;
}
/*
.item-mini .photo:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
	opacity: 0;
}

@media (pointer:fine) {
.item-mini:hover a .photo:after {
	opacity: 0.65;
}
}
*/
.item-mini img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: center;
	max-height: 30vh;
	backface-visibility: hidden;
	will-change: transform;
	transform: scale(1);
	transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media (pointer:fine) {
.item-mini:hover a img {
	transform: scale(1.2);
}
}
.item-mini small {
	font-size: 0.642em;
	color: var(--grey);
	margin: 0.75em 0 0 0;
	display: block;
}
.item-mini .item-details {
	display: none;
}

@media (pointer:fine) {
.item-mini .photo .item-details {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0;
	padding: 0.75em;
	color: var(--white);
	transition-property: transform, opacity;
	transition-duration: 0.2s;
	transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
	opacity: 0;
	z-index: 2;
	background: rgba(0, 0, 0, 0.65);
	transform: translate3d(0, 10px, 0);
}
.item-mini:hover .photo .item-details {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}
}

@media (pointer:coarse) {
.item-mini .item-details {
	display: block;
	margin: 0.75em 0;
}
.item-mini .photo .item-details {
	display: none;
}
}
.top-title {
	padding: 0 0 28px 0;
}
.top-title h1 a, .top-title .h1 a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media (pointer:fine) {
.top-title h1 a:hover, .top-title .h1 a:hover {
	color: var(--red);
}
}
.link-up {
	display: none;
}
.bottom-form {
	flex: 0 0 auto;
	margin-top: auto;
	margin-bottom: -80px;
	padding-top: 80px;
}
.bottom-form .bg {
	margin: 0 -20px;
	background: var(--bg-grey);
	padding: 27px 20px 80px 20px;
}
.bottom-form-title {
	text-align: center;
	margin: 0 auto 26px auto;
}
.bottom-form .inputs {
	display: flex;
	flex-wrap: wrap;
	margin-left: -10px;
	gap: 12px 0;
}
.bottom-form .inputs .el {
	flex: 0 0 auto;
	padding-left: 10px;
	width: 50%;
}
.bottom-form .inputs .el.wide {
	width: 100%;
}
.bottom-form .submit {
	margin: 40px 0 0 0;
	text-align: center;
}
.bottom-form .submit .btn {
	display: inline-block;
	vertical-align: top;
	width: 100%;
}
.bottom-form .text {
	text-align: center;
	margin: 0 0 40px 0;
}
.bottom-form .text .bottom-form-title {
	font-weight: 500;
	margin-bottom: 12px;
	line-height: 1;
}
.bottom-form .text .bottom-form-title br {
	display: block;
}
.mfp-hide {
	display: none!important;
}
.modal-animation .mfp-container {
	padding: 0!important;
}
/* at start */
.modal-animation .mfp-content {
	opacity: 0;
	transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
	transform: translate3d(0, 30vh, 0);
	will-change: transform;
	backface-visibility: hidden;
}
/* animate in */
.modal-animation.mfp-ready .mfp-content {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}
/* animate out */
.modal-animation.mfp-removing .mfp-content {
	opacity: 0;
	transform: translate3d(0, 30vh, 0);
}
/* Dark overlay, start state */
.modal-animation.mfp-bg {
	opacity: 0;
	background: none!important;
	transition: opacity 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
	backface-visibility: hidden;
	will-change: opacity;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}
/* animate in */
.modal-animation.mfp-ready.mfp-bg {
	opacity: 1;
}
/* animate out */
.modal-animation.mfp-removing.mfp-bg {
	opacity: 0;
}
.modal-animation.mfp-bg:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: var(--dark);
	opacity: 0.75;
}
.modal-animation .mfp-close {
	opacity: 1!important;
	font-size: 12px;
	width: 2.75em!important;
	height: 2.75em!important;
	border-radius: 1.375em;
	text-align: left;
	text-indent: -100vw;
	overflow: hidden;
	top: 52px!important;
	right: auto!important;
	left: 0!important;
	transition: box-shadow 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	border: 1px solid var(--white);
	margin: 9.5px;
	position: fixed!important;
}
.modal-animation .mfp-close:before, .modal-animation .mfp-close:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1em;
	height: 1em;
	margin: -0.5em;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: contain;
	transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.modal-animation .mfp-close:before {
	background-image: url(../img/close-white.svg);
}
.modal-animation .mfp-close:after {
	background-image: url(../img/close-dark.svg);
	opacity: 0;
}

@media (pointer:fine) {
.modal-animation .mfp-close:hover {
	box-shadow: inset 0 0 0 1.4em var(--white);
}
.modal-animation .mfp-close:hover:before {
	opacity: 0;
}
.modal-animation .mfp-close:hover:after {
	opacity: 1;
}
}
.item-aside {
	display: none;
}
.item-head-image {
	margin-bottom: 20px;
}
.item-head-image img {
	width: 100%;
	height: auto;
}
.item-main .top-title {
	padding-bottom: 0.85em;
	min-height: 0;
}
.item-category, .item-details {
	font-size: 0.642em;
	color: var(--grey);
}
.item-category {
	margin: 0 0 1.75em 0;
}
.item-category a, .item-details a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media (pointer:fine) {
.item-category a:hover, .item-details a:hover {
	color: var(--red);
}
}
.item-details {
	margin-bottom: 4em;
}
.item-details table {
	border-collapse: collapse;
	width: auto;
	border: 0;
	margin: 0;
	padding: 0;
}
.item-details td {
	border: 0;
	text-align: left;
	vertical-align: top;
	padding: 0.05em 0 0 1em;
}
.item-details td:first-child {
	padding-left: 0;
}
.item-details tr:first-child td {
	padding-top: 0;
}
.item-image-row {
	margin: 16px 0 0 0;
}
.item-image-row, .item-image-row > * {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 16px 0;
}
.item-image-row img {
	width: 100%;
	height: auto;
	flex: 0 0 auto;
}
.grid-catalog .top-title {
	flex: 0 0 auto;
	padding-right: 0!important;
}
.grid-catalog .top-title:last-child {
	padding-bottom: 0;
}
.catalog-slider-move {
	flex: 0 0 auto;
	width: 100%;
	transition-property: transform, opacity;
	transition-duration: 0.5s;
	transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
	backface-visibility: hidden;
	will-change: transform, opacity;
}
span.catalog-slider-move {
	display: block;
}
.swiper-slide-active, .swiper-slide-duplicate-active {
	transition-delay: 0.2s;
}
.swiper-slide-prev .catalog-slider-move, .swiper-slide-duplicate-prev .catalog-slider-move {
	transition-delay: 0s!important;
	transform: translate3d(-10vmin, 0, 0);
	opacity: 0;
}
.swiper-slide-next .catalog-slider-move, .swiper-slide-duplicate-next .catalog-slider-move {
	transition-delay: 0s!important;
	transform: translate3d(10vmin, 0, 0);
	opacity: 0;
}
.swiper-slide-active .catalog-slider-move, .swiper-slide-duplicate-active .catalog-slider-move {
	transform: translate3d(0, 0, 0);
	opacity: 1;
}
.catalog-slider-move.catalog-slider-order1 {
	transition-delay: 0.2s;
}
.catalog-slider-move.catalog-slider-order2 {
	transition-delay: 0.3s;
}
.catalog-slider-move.catalog-slider-order3 {
	transition-delay: 0.4s;
}
.catalog-slider-move.catalog-slider-order4 {
	transition-delay: 0.5s;
}
.catalog-slider-move.catalog-slider-order5 {
	transition-delay: 0.6s;
}
.catalog-slider-move.catalog-slider-order6 {
	transition-delay: 0.7s;
}
.catalog-slider-move.catalog-slider-order7 {
	transition-delay: 0.8s;
}
.catalog-slider-move.catalog-slider-order8 {
	transition-delay: 0.9s;
}
.catalog-slider-move.catalog-slider-order9 {
	transition-delay: 1s;
}
.catalog-slider-move.catalog-slider-order10 {
	transition-delay: 1.1s;
}
.catalog-slider .grid-catalog {
	grid-template-columns: repeat(2, 1fr);
}

@media only screen and (min-width: 540px) {
.catalog-slider .grid-catalog {
	grid-template-columns: repeat(3, 1fr);
}
}
/*
.catalog-slider .grid-catalog .el:nth-child(6), .catalog-slider .grid-catalog .el:nth-child(7) {
	display: none;
}*/

.catalog-slider .grid-catalog .el:nth-child(7) {
	display: none;
}
.catalog-slider .grid-catalog .el.website_item:nth-child(7) {
	display: block;
}
.swiper-slide .swiper-arrows {
	margin-top: auto;
}
.client-link {
	word-wrap: break-word;
	text-decoration: none;
	color: var(--dark);
	font-size: 12px;
	line-height: 1.142;
	text-align: left;
	position: relative;
	padding: 1.142em 1.142em 1.142em 8.25em;
	flex: 1 0 auto;
	display: flex;
	min-height: 8.214em;
	flex-direction: column;
	justify-content: center;
	border: 1px solid var(--borders);
	transition: box-shadow 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.client-link .logo {
	position: absolute;
	width: 8.25em;
	top: 0;
	bottom: 0;
	left: 0;
	padding: 1.142em;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.client-link .logo img {
	flex: 0 0 auto;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 50%;
}
.client-link small {
	display: block;
	font-size: 0.642em;
	color: var(--grey);
	margin: 0.75em 0 0 0;
}

@media (pointer:fine) {
.client-link .logo img {
	backface-visibility: hidden;
	transition-property: filter, opacity;
	transition-duration: 0.2s;
	transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
	filter: grayscale(100%);
	opacity: 0.2;
}
.client-link:hover {
	box-shadow: var(--box-shadow-small);
}
.client-link:hover .logo img {
	filter: grayscale(0%);
	opacity: 1;
}
}
.page-move-up {
	backface-visibility: hidden;
	will-change: transform, opacity;
	transform: translate3d(0, 10vmin, 0);
	opacity: 0;
	transition-property: transform, opacity;
	transition-duration: 0.5s;
	transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
span.page-move-up {
	display: block;
}
.ready .page-move-up {
	transform: translate3d(0, 0, 0);
	opacity: 1;
}
.ready.removing .page-move-up {
	transform: translate3d(0, -10vmin, 0);
	opacity: 0;
}
.page-move-up-order1 {
	transition-delay: 0s;
}
.page-move-up-order2 {
	transition-delay: 0.1s;
}
.page-move-up-order3 {
	transition-delay: 0.2s;
}
.page-move-up-order4 {
	transition-delay: 0.3s;
}
.client-logo-wrap {
	position: relative;
	flex: 0 0 auto;
	width: 100%;
}
.client-logo-wrap:before {
	content: '';
	display: block;
	padding-top: 100%;
}
.client-logo-wrap img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: auto;
	height: auto;
	max-width: 50%;
	max-height: 25%;
	transform: translate3d(-50%, -50%, 0);
}
.client-logo-wrap .close {
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
	font-size: 12px;
	width: 2.75em;
	height: 2.75em;
	border-radius: 1.375em;
	box-shadow: inset 0 0 0 1px var(--borders);
	transition: box-shadow 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.client-logo-wrap .close svg {
	width: 1em;
	height: 1em;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -0.5em;
	fill: var(--grey);
	transition: fill 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media (pointer:fine) {
.client-logo-wrap .close:hover {
	box-shadow: inset 0 0 0 1.4em var(--borders);
}
.client-logo-wrap .close:hover svg {
	fill: var(--white);
}
}
.video-area {
	display: block;
	position: relative;
	flex: 1;
	background-color: #f9f9f9;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
	border-radius: 20px;
}
.video-area:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	transform: translate3d(-50%, -50%, 0);
	padding-top: 50%;
	background: url(../img/video-letters.svg) no-repeat 50% 50%;
	background-size: 70% auto;
	pointer-events: none;
}
.video-area-index:before {
	background-image: url(../img/video-letters-index.svg);
}

@media only screen and (orientation: portrait) {
.video-area:before {
	padding-top: 80%;
	background-size: 90% auto;
}
}
.video-area-index:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	border-radius: inherit;
	background: url(../img/video-cross.svg) 50% 50%;
	background-size: 62px auto;
}
.video-area .play, .video-area .play-circle {
	position: absolute;
	top: 50%;
	left: 50%;
	pointer-events: none;
	z-index: 2;
}
.video-area .play {
	border-style: solid;
	border-width: 6px 0 6px 10px;
	margin: -6px -3.5px;
	border-color: transparent var(--red);
	transition: all 0.55s linear;
}
.video-area .play-circle {
	width: 34px;
	height: 34px;
	border: 1px solid var(--red);
	margin: -17px;
	border-radius: 50%;
	transition: all 0.5s linear;
}
.top-video-grid {
	flex: 1 0 auto;
	display: flex;
	flex-direction: column;
}
.top-video-grid .top-title + *, .top-video-grid .top-title + * * {
	flex: 1;
	display: flex;
	flex-direction: column;
}
.top-scroll-block, .bottom-scroll-block {
	display: flex;
	flex-direction: column;
}
.top-scroll-block .content {
	padding-bottom: 20px;
}
.top-scroll-block {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
}
.bottom-scroll-block {
	flex: 1 0 auto;
	z-index: 2;
}
.bottom-scroll-block.scrollme {
	touch-action: pan-y !important;
}
.top-scroll-block .container {
	flex: 1 0 auto;
	display: flex;
	flex-direction: column;
}
.index-block-move {
	backface-visibility: hidden;
	will-change: transform, opacity;
	transition-property: transform, opacity;
	transition-duration: 0.5s;
	transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
span.index-block-move {
	display: block;
}
.top-scroll-block.invisible, .bottom-scroll-block:not(.visible) {
	pointer-events: none;
	z-index: 1;
}
.top-scroll-block .index-block-move {
	transform: translate3d(0, 0, 0);
	opacity: 1;
}
.top-scroll-block.invisible .index-block-move {
	transform: translate3d(0, -10vmin, 0);
	opacity: 0;
}
.bottom-scroll-block .index-block-move {
	transform: translate3d(0, 10vmin, 0);
	opacity: 0;
}
.bottom-scroll-block.visible .index-block-move {
	transform: translate3d(0, 0, 0);
	opacity: 1;
}
.index-block-order1 {
	transition-delay: 0s;
}
.index-block-order2 {
	transition-delay: 0.1s;
}
.index-block-order3 {
	transition-delay: 0.2s;
}
.index-block-order4 {
	transition-delay: 0.3s;
}
.index-block-order5 {
	transition-delay: 0.4s;
}
.index-block-order6 {
	transition-delay: 0.5s;
}
.index-block-order7 {
	transition-delay: 0.6s;
}
.index-block-order8 {
	transition-delay: 0.7s;
}
.index-block-order9 {
	transition-delay: 0.8s;
}
.index-block-order10 {
	transition-delay: 0.9s;
}
.link-more {
	margin: 40px 0 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.link-more .btn {
	width: auto;
	min-width: 100%;
}
.modal {
	width: 100%;
}
.modal .bottom-form {
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 0;
}
.content-slider {
	text-align: center;
	margin-left: -20px!important;
	margin-right: -20px!important;
	width: auto!important;
}
.content-slider:not(:first-child) {
	margin-top: 40px;
}
.content-slider:not(:last-child) {
	margin-bottom: 40px;
}
.content-slider img {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 50vh;
	margin: 0 auto;
}
.content-slider .swiper-slide, .content-slider .swiper-arrows {
	width: 100%;
	padding-left: 20px;
	padding-right: 20px;
}
.content-slider .swiper-arrows {
	margin-top: 24px;
	justify-content: center;
}
.caption {
	margin: 0.75em 0 0 0;
	color: var(--grey);
}


/*added 18.08.22 start*/
.benefits {
	font-size: 14px;
	text-align: left;
	padding: 28px 0;
	border-top: 1px solid var(--borders);
	border-bottom: 1px solid var(--borders);
}
.benefits:not(:first-child) {
	margin-top: 40px;
}
.benefits:not(:last-child) {
	margin-bottom: 40px;
}
.benefits h2, .benefits .h2 {
	margin-top: 0;
}
.benefits ul {
	margin0: 28px auto 0 auto;
	margin: 28px 0 0;
	max-width: 1000px;
	padding: 0;
	gap: 24px 12px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
.benefits li:before {
	display: none;
}
.benefits li {
	margin: 0 auto;
	padding: 0;
	flex: 0 0 auto;
	max-width: 130px;
}
.benefits li img {
	display: block;
	width: 52px;
	height: 52px;
	object-fit: contain;
	object-position: center;
	margin: 0 auto 10px auto;
}

/*added 18.08.22 end*/

