@charset "UTF-8";
/********** UTILS **********/
/* RESET */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=block");
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
	outline: none;
}

img {
	max-width: 100%;
}

a {
	color: var(--link);
	font-weight: 500;
}

/* TYPOGRAPHY */
html {
	font-size: 15px;
}

body {
	font-family: "Montserrat", "Arial", "Helvetica", sans-serif;
}

a.active.focus,
a.active:focus,
a.focus,
a:active.focus,
a:active:focus,
a:focus,
button.active.focus,
button.active:focus,
button.focus,
button:active.focus,
button:active:focus,
button:focus,
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
	outline: 0!important;
	outline-color: transparent!important;
	outline-width: 0!important;
	outline-style: none!important;
	box-shadow: 0 0 0 0 rgba(0,123,255,0)!important;
}

h1, h2, h3,
.h1, .h2, .h3 {
	color: var(--header);
	font-weight: 500;
	margin-bottom: 25px;
}

h1, .h1 {
	font-size: 25px;
	margin-bottom: 25px;
}

h2, .h2 {
	font-size: 25px;
	margin-bottom: 25px;
}

h3, .h3 {
	font-size: 20px;
	margin-bottom: 25px;
}

.text {
	font-size: 1rem;
}

.text-sm {
	font-size: 13px;
}

@media (min-width: 768px) {
	h1, .h1 {
		font-size: 32px;
	}

	h2, .h2 {
		font-size: 32px;
	}

	h3, .h3 {
		font-size: 20px;
	}
}
@media (min-width: 1024px) {
	html {
		font-size: 17px;
	}

	.text-sm {
		font-size: 15px;
	}

	h1, .h1 {
		font-size: 46px;
	}

	h2, .h2 {
		font-size: 38px;
	}

	h3, .h3 {
		font-size: 28px;
	}
}
/* COLORS */
:root {
	--white: #ffffff;
	--black: #000000;
	--red: #e42d24;
	--red-2: #9b130c;
	--blue: #1e1d85;
	--dark-blue: #000066;
	--light-blue: #7373ba;
	--grey: #dedef4;
	--light-grey: #f6f6ff;
}

:root {
	--shadow: rgba(0, 0, 102, 0.15);
	--white-shadow: rgba(246, 246, 255, 0.5);
	--primary: var(--blue);
	--primary-contrast: var(--white);
	--primary-dark: var(--dark-blue);
	--primary-shadow: rgba(30, 29, 133, 0.5);
	--primary-variant: #3a38a3;
	/* Активный элемент меню, основное действие */
	--accent: var(--red);
	--accent-contrast: var(--white);
	--accent-dark: var(--red-2);
	--accent-shadow: var(--accent);
	--error: var(--red);
	--border: var(--grey);
}

:root {
	/* Фон */
	--background: var(--white);
	/* Cплошной текст */
	--text: var(--black);
	/* Доп. фон для блоков */
	--block-background: var(--light-grey);
	--hover-background: var(--light-grey);
	/* Подписи, даты, лейблы */
	--label: var(--light-blue);
	/* Ссылки */
	--link: var(--blue);
	--link-variant: var(--dark-blue);
	/* Фон синих блоков */
	--dark-block-background: var(--blue);
	/* Заголовки */
	--header: var(--dark-blue);
	--active-control: var(--blue);
}

.color-text {
	color: var(--text);
}
.color-text::before {
	color: var(--text);
}
.color-text::after {
	color: var(--text);
}

.color-header {
	color: var(--header);
}

.color-label {
	color: var(--label);
}

.color-link {
	color: var(--link);
}
.color-link::before {
	color: var(--link);
}
.color-link::after {
	color: var(--link);
}

.color-accent {
	color: var(--accent);
}

.color-white {
	color: var(--white);
}

.bg-block {
	background-color: var(--block-background);
}

.bg-block-dark {
	background-color: var(--dark-block-background);
}

.bg-white {
	background-color: white;
}

body {
	background: var(--background);
}

:root {
	--space-unit: 20px;
	--space-xxs: calc(0.25 * var(--space-unit));
	--space-xs: calc(0.5 * var(--space-unit));
	--space-sm: calc(0.75 * var(--space-unit));
	--space-md: calc(1.25 * var(--space-unit));
	--space-mdl: calc(1.5 * var(--space-unit));
	--space-lg: calc(2 * var(--space-unit));
	--space-xl: calc(2.5 * var(--space-unit));
	--space-xxl: calc(5.25 * var(--space-unit));
}

.m {
	margin: var(--space-unit);
}

.m-t {
	margin-top: var(--space-unit);
}

.m-b {
	margin-bottom: var(--space-unit);
}

.m-l {
	margin-left: var(--space-unit);
}

.m-r {
	margin-right: var(--space-unit);
}

.m-x {
	margin-left: var(--space-unit);
	margin-right: var(--space-unit);
}

.m-y {
	margin-top: var(--space-unit);
	margin-bottom: var(--space-unit);
}

.p {
	padding: var(--space-unit);
}

.p-t {
	padding-top: var(--space-unit);
}

.p-b {
	padding-bottom: var(--space-unit);
}

.p-l {
	padding-left: var(--space-unit);
}

.p-r {
	padding-right: var(--space-unit);
}

.p-x {
	padding-left: var(--space-unit);
	padding-right: var(--space-unit);
}

.p-y {
	padding-top: var(--space-unit);
	padding-bottom: var(--space-unit);
}

.m-xxs {
	margin: var(--space-xxs);
}

.m-t-xxs {
	margin-top: var(--space-xxs);
}

.m-b-xxs {
	margin-bottom: var(--space-xxs);
}

.m-l-xxs {
	margin-left: var(--space-xxs);
}

.m-r-xxs {
	margin-right: var(--space-xxs);
}

.m-x-xxs {
	margin-left: var(--space-xxs);
	margin-right: var(--space-xxs);
}

.m-y-xxs {
	margin-top: var(--space-xxs);
	margin-bottom: var(--space-xxs);
}

.p-xxs {
	padding: var(--space-xxs);
}

.p-t-xxs {
	padding-top: var(--space-xxs);
}

.p-b-xxs {
	padding-bottom: var(--space-xxs);
}

.p-l-xxs {
	padding-left: var(--space-xxs);
}

.p-r-xxs {
	padding-right: var(--space-xxs);
}

.p-x-xxs {
	padding-left: var(--space-xxs);
	padding-right: var(--space-xxs);
}

.p-y-xxs {
	padding-top: var(--space-xxs);
	padding-bottom: var(--space-xxs);
}

.m-xs {
	margin: var(--space-xs);
}

.m-t-xs {
	margin-top: var(--space-xs);
}

.m-b-xs {
	margin-bottom: var(--space-xs);
}

.m-l-xs {
	margin-left: var(--space-xs);
}

.m-r-xs {
	margin-right: var(--space-xs);
}

.m-x-xs {
	margin-left: var(--space-xs);
	margin-right: var(--space-xs);
}

.m-y-xs {
	margin-top: var(--space-xs);
	margin-bottom: var(--space-xs);
}

.p-xs {
	padding: var(--space-xs);
}

.p-t-xs {
	padding-top: var(--space-xs);
}

.p-b-xs {
	padding-bottom: var(--space-xs);
}

.p-l-xs {
	padding-left: var(--space-xs);
}

.p-r-xs {
	padding-right: var(--space-xs);
}

.p-x-xs {
	padding-left: var(--space-xs);
	padding-right: var(--space-xs);
}

.p-y-xs {
	padding-top: var(--space-xs);
	padding-bottom: var(--space-xs);
}

.m-sm {
	margin: var(--space-sm);
}

.m-t-sm {
	margin-top: var(--space-sm);
}

.m-b-sm {
	margin-bottom: var(--space-sm);
}

.m-l-sm {
	margin-left: var(--space-sm);
}

.m-r-sm {
	margin-right: var(--space-sm);
}

.m-x-sm {
	margin-left: var(--space-sm);
	margin-right: var(--space-sm);
}

.m-y-sm {
	margin-top: var(--space-sm);
	margin-bottom: var(--space-sm);
}

.p-sm {
	padding: var(--space-sm);
}

.p-t-sm {
	padding-top: var(--space-sm);
}

.p-b-sm {
	padding-bottom: var(--space-sm);
}

.p-l-sm {
	padding-left: var(--space-sm);
}

.p-r-sm {
	padding-right: var(--space-sm);
}

.p-x-sm {
	padding-left: var(--space-sm);
	padding-right: var(--space-sm);
}

.p-y-sm {
	padding-top: var(--space-sm);
	padding-bottom: var(--space-sm);
}

.m-md {
	margin: var(--space-md);
}

.m-t-md {
	margin-top: var(--space-md);
}

.m-b-md {
	margin-bottom: var(--space-md);
}

.m-l-md {
	margin-left: var(--space-md);
}

.m-r-md {
	margin-right: var(--space-md);
}

.m-x-md {
	margin-left: var(--space-md);
	margin-right: var(--space-md);
}

.m-y-md {
	margin-top: var(--space-md);
	margin-bottom: var(--space-md);
}

.p-md {
	padding: var(--space-md);
}

.p-t-md {
	padding-top: var(--space-md);
}

.p-b-md {
	padding-bottom: var(--space-md);
}

.p-l-md {
	padding-left: var(--space-md);
}

.p-r-md {
	padding-right: var(--space-md);
}

.p-x-md {
	padding-left: var(--space-md);
	padding-right: var(--space-md);
}

.p-y-md {
	padding-top: var(--space-md);
	padding-bottom: var(--space-md);
}

.m-lg {
	margin: var(--space-lg);
}

.m-t-lg {
	margin-top: var(--space-lg);
}

.m-b-lg {
	margin-bottom: var(--space-lg);
}

.m-l-lg {
	margin-left: var(--space-lg);
}

.m-r-lg {
	margin-right: var(--space-lg);
}

.m-x-lg {
	margin-left: var(--space-lg);
	margin-right: var(--space-lg);
}

.m-y-lg {
	margin-top: var(--space-lg);
	margin-bottom: var(--space-lg);
}

.p-lg {
	padding: var(--space-lg);
}

.p-t-lg {
	padding-top: var(--space-lg);
}

.p-b-lg {
	padding-bottom: var(--space-lg);
}

.p-l-lg {
	padding-left: var(--space-lg);
}

.p-r-lg {
	padding-right: var(--space-lg);
}

.p-x-lg {
	padding-left: var(--space-lg);
	padding-right: var(--space-lg);
}

.p-y-lg {
	padding-top: var(--space-lg);
	padding-bottom: var(--space-lg);
}

.m-xl {
	margin: var(--space-xl);
}

.m-t-xl {
	margin-top: var(--space-xl);
}

.m-b-xl {
	margin-bottom: var(--space-xl);
}

.m-l-xl {
	margin-left: var(--space-xl);
}

.m-r-xl {
	margin-right: var(--space-xl);
}

.m-x-xl {
	margin-left: var(--space-xl);
	margin-right: var(--space-xl);
}

.m-y-xl {
	margin-top: var(--space-xl);
	margin-bottom: var(--space-xl);
}

.p-xl {
	padding: var(--space-xl);
}

.p-t-xl {
	padding-top: var(--space-xl);
}

.p-b-xl {
	padding-bottom: var(--space-xl);
}

.p-l-xl {
	padding-left: var(--space-xl);
}

.p-r-xl {
	padding-right: var(--space-xl);
}

.p-x-xl {
	padding-left: var(--space-xl);
	padding-right: var(--space-xl);
}

.p-y-xl {
	padding-top: var(--space-xl);
	padding-bottom: var(--space-xl);
}

.m-xxl {
	margin: var(--space-xxl);
}

.m-t-xxl {
	margin-top: var(--space-xxl);
}

.m-b-xxl {
	margin-bottom: var(--space-xxl);
}

.m-l-xxl {
	margin-left: var(--space-xxl);
}

.m-r-xxl {
	margin-right: var(--space-xxl);
}

.m-x-xxl {
	margin-left: var(--space-xxl);
	margin-right: var(--space-xxl);
}

.m-y-xxl {
	margin-top: var(--space-xxl);
	margin-bottom: var(--space-xxl);
}

.p-xxl {
	padding: var(--space-xxl);
}

.p-t-xxl {
	padding-top: var(--space-xxl);
}

.p-b-xxl {
	padding-bottom: var(--space-xxl);
}

.p-l-xxl {
	padding-left: var(--space-xxl);
}

.p-r-xxl {
	padding-right: var(--space-xxl);
}

.p-x-xxl {
	padding-left: var(--space-xxl);
	padding-right: var(--space-xxl);
}

.p-y-xxl {
	padding-top: var(--space-xxl);
	padding-bottom: var(--space-xxl);
}

/* GRID
* xs - lg-phone-up
* sm - tablet-up (>=768px)
* md - lg-tablet-up (>= 1024px)
* lg - sm-desktop-up (>=1280px)
*/
:root {
	--gap: var(--space-xs);
	--max-content-width: 1380px;
	--viewport-width: calc(100vw - var(--scrollbar-width, 0));
	--content-width: calc(min(var(--viewport-width), var(--max-content-width)) - 2 * var(--gap));
	--content-side-offset: calc((100vw - var(--content-width)) / 2);
}
@media (min-width: 768px) {
	:root {
		--gap: var(--space-sm);
	}
}
@media (min-width: 1024px) {
	:root {
		--gap: var(--space-unit);
	}
}
.kilo,
.container {
	margin-left: auto;
	margin-right: auto;
	padding-left: calc(2 * var(--gap));
	padding-right: calc(2 * var(--gap));
	max-width: 1380px;
	width: 100%;
}

.row {
	display: flex;
	flex-wrap: wrap;
	margin-left: calc(-1 * var(--gap));
	margin-right: calc(-1 * var(--gap));
}

.col {
	padding-left: var(--gap);
	padding-right: var(--gap);
}

.col-1 {
	width: 8.3333333333%;
}
.col-2 {
	width: 16.6666666667%;
}
.col-3 {
	width: 25%;
}
.col-4 {
	width: 33.3333333333%;
}
.col-5 {
	width: 41.6666666667%;
}
.col-6 {
	width: 50%;
}
.col-7 {
	width: 58.3333333333%;
}
.col-8 {
	width: 66.6666666667%;
}
.col-9 {
	width: 75%;
}
.col-10 {
	width: 83.3333333333%;
}
.col-11 {
	width: 91.6666666667%;
}
.col-12 {
	width: 100%;
}
.col-auto {
	width: auto;
}

/* xs GRID: LG-PHONE-UP */
@media (min-width: 480px) {
	.col-xs-1 {
		width: 8.3333333333%;
	}
	.col-xs-2 {
		width: 16.6666666667%;
	}
	.col-xs-3 {
		width: 25%;
	}
	.col-xs-4 {
		width: 33.3333333333%;
	}
	.col-xs-5 {
		width: 41.6666666667%;
	}
	.col-xs-6 {
		width: 50%;
	}
	.col-xs-7 {
		width: 58.3333333333%;
	}
	.col-xs-8 {
		width: 66.6666666667%;
	}
	.col-xs-9 {
		width: 75%;
	}
	.col-xs-10 {
		width: 83.3333333333%;
	}
	.col-xs-11 {
		width: 91.6666666667%;
	}
	.col-xs-12 {
		width: 100%;
	}
	.col-xs-auto {
		width: auto;
	}
}
/* sm GRID: TABLET-UP */
@media (min-width: 768px) {
	.col-sm-1 {
		width: 8.3333333333%;
	}
	.col-sm-2 {
		width: 16.6666666667%;
	}
	.col-sm-3 {
		width: 25%;
	}
	.col-sm-4 {
		width: 33.3333333333%;
	}
	.col-sm-5 {
		width: 41.6666666667%;
	}
	.col-sm-6 {
		width: 50%;
	}
	.col-sm-7 {
		width: 58.3333333333%;
	}
	.col-sm-8 {
		width: 66.6666666667%;
	}
	.col-sm-9 {
		width: 75%;
	}
	.col-sm-10 {
		width: 83.3333333333%;
	}
	.col-sm-11 {
		width: 91.6666666667%;
	}
	.col-sm-12 {
		width: 100%;
	}
	.col-sm-auto {
		width: auto;
	}
}
/* md GRID: LG-TABLET-UP */
@media (min-width: 1024px) {
	.col-md-1 {
		width: 8.3333333333%;
	}
	.col-md-2 {
		width: 16.6666666667%;
	}
	.col-md-3 {
		width: 25%;
	}
	.col-md-4 {
		width: 33.3333333333%;
	}
	.col-md-5 {
		width: 41.6666666667%;
	}
	.col-md-6 {
		width: 50%;
	}
	.col-md-7 {
		width: 58.3333333333%;
	}
	.col-md-8 {
		width: 66.6666666667%;
	}
	.col-md-9 {
		width: 75%;
	}
	.col-md-10 {
		width: 83.3333333333%;
	}
	.col-md-11 {
		width: 91.6666666667%;
	}
	.col-md-12 {
		width: 100%;
	}
	.col-md-auto {
		width: auto;
	}
}
/* lg GRID: DESKTOP-UP */
@media (min-width: 1280px) {
	.col-lg-1 {
		width: 8.3333333333%;
	}
	.col-lg-2 {
		width: 16.6666666667%;
	}
	.col-lg-3 {
		width: 25%;
	}
	.col-lg-4 {
		width: 33.3333333333%;
	}
	.col-lg-5 {
		width: 41.6666666667%;
	}
	.col-lg-6 {
		width: 50%;
	}
	.col-lg-7 {
		width: 58.3333333333%;
	}
	.col-lg-8 {
		width: 66.6666666667%;
	}
	.col-lg-9 {
		width: 75%;
	}
	.col-lg-10 {
		width: 83.3333333333%;
	}
	.col-lg-11 {
		width: 91.6666666667%;
	}
	.col-lg-12 {
		width: 100%;
	}
	.col-lg-auto {
		width: auto;
	}
}
:root {
	--c-columns-content-width: var(--content-width);
}
.c-col-1 {
	width: calc(var(--c-columns-content-width) / 12 * 1);
}
.c-col-2 {
	width: calc(var(--c-columns-content-width) / 12 * 2);
}
.c-col-3 {
	width: calc(var(--c-columns-content-width) / 12 * 3);
}
.c-col-4 {
	width: calc(var(--c-columns-content-width) / 12 * 4);
}
.c-col-5 {
	width: calc(var(--c-columns-content-width) / 12 * 5);
}
.c-col-6 {
	width: calc(var(--c-columns-content-width) / 12 * 6);
}
.c-col-7 {
	width: calc(var(--c-columns-content-width) / 12 * 7);
}
.c-col-8 {
	width: calc(var(--c-columns-content-width) / 12 * 8);
}
.c-col-9 {
	width: calc(var(--c-columns-content-width) / 12 * 9);
}
.c-col-10 {
	width: calc(var(--c-columns-content-width) / 12 * 10);
}
.c-col-11 {
	width: calc(var(--c-columns-content-width) / 12 * 11);
}
.c-col-12 {
	width: calc(var(--c-columns-content-width) / 12 * 12);
}
@media (min-width: 768px) {
	.c-col-sm-1 {
		width: calc(var(--c-columns-content-width) / 12 * 1);
	}
	.c-col-sm-2 {
		width: calc(var(--c-columns-content-width) / 12 * 2);
	}
	.c-col-sm-3 {
		width: calc(var(--c-columns-content-width) / 12 * 3);
	}
	.c-col-sm-4 {
		width: calc(var(--c-columns-content-width) / 12 * 4);
	}
	.c-col-sm-5 {
		width: calc(var(--c-columns-content-width) / 12 * 5);
	}
	.c-col-sm-6 {
		width: calc(var(--c-columns-content-width) / 12 * 6);
	}
	.c-col-sm-7 {
		width: calc(var(--c-columns-content-width) / 12 * 7);
	}
	.c-col-sm-8 {
		width: calc(var(--c-columns-content-width) / 12 * 8);
	}
	.c-col-sm-9 {
		width: calc(var(--c-columns-content-width) / 12 * 9);
	}
	.c-col-sm-10 {
		width: calc(var(--c-columns-content-width) / 12 * 10);
	}
	.c-col-sm-11 {
		width: calc(var(--c-columns-content-width) / 12 * 11);
	}
	.c-col-sm-12 {
		width: calc(var(--c-columns-content-width) / 12 * 12);
	}
}
@media (min-width: 1024px) {
	.c-col-md-1 {
		width: calc(var(--c-columns-content-width) / 12 * 1);
	}
	.c-col-md-2 {
		width: calc(var(--c-columns-content-width) / 12 * 2);
	}
	.c-col-md-3 {
		width: calc(var(--c-columns-content-width) / 12 * 3);
	}
	.c-col-md-4 {
		width: calc(var(--c-columns-content-width) / 12 * 4);
	}
	.c-col-md-5 {
		width: calc(var(--c-columns-content-width) / 12 * 5);
	}
	.c-col-md-6 {
		width: calc(var(--c-columns-content-width) / 12 * 6);
	}
	.c-col-md-7 {
		width: calc(var(--c-columns-content-width) / 12 * 7);
	}
	.c-col-md-8 {
		width: calc(var(--c-columns-content-width) / 12 * 8);
	}
	.c-col-md-9 {
		width: calc(var(--c-columns-content-width) / 12 * 9);
	}
	.c-col-md-10 {
		width: calc(var(--c-columns-content-width) / 12 * 10);
	}
	.c-col-md-11 {
		width: calc(var(--c-columns-content-width) / 12 * 11);
	}
	.c-col-md-12 {
		width: calc(var(--c-columns-content-width) / 12 * 12);
	}
}
@media (min-width: 1280px) {
	.c-col-lg-1 {
		width: calc(var(--c-columns-content-width) / 12 * 1);
	}
	.c-col-lg-2 {
		width: calc(var(--c-columns-content-width) / 12 * 2);
	}
	.c-col-lg-3 {
		width: calc(var(--c-columns-content-width) / 12 * 3);
	}
	.c-col-lg-4 {
		width: calc(var(--c-columns-content-width) / 12 * 4);
	}
	.c-col-lg-5 {
		width: calc(var(--c-columns-content-width) / 12 * 5);
	}
	.c-col-lg-6 {
		width: calc(var(--c-columns-content-width) / 12 * 6);
	}
	.c-col-lg-7 {
		width: calc(var(--c-columns-content-width) / 12 * 7);
	}
	.c-col-lg-8 {
		width: calc(var(--c-columns-content-width) / 12 * 8);
	}
	.c-col-lg-9 {
		width: calc(var(--c-columns-content-width) / 12 * 9);
	}
	.c-col-lg-10 {
		width: calc(var(--c-columns-content-width) / 12 * 10);
	}
	.c-col-lg-11 {
		width: calc(var(--c-columns-content-width) / 12 * 11);
	}
	.c-col-lg-12 {
		width: calc(var(--c-columns-content-width) / 12 * 12);
	}
}

.d-flex {
	display: flex;
}

body.header-pane-opened {
	padding-right: var(--scrollbar-width);
	overflow: hidden;
}

.border {
	border: 1px solid var(--border);
}

.border-left {
	border-left: 1px solid var(--border);
}

.border-right {
	border-right: 1px solid var(--border);
}

.border-top {
	border-top: 1px solid var(--border);
}

.border-bottom {
	border-bottom: 1px solid var(--border);
}

.border-none {
	border: none;
}

.border-left-none {
	border-left: none;
}

.border-right-none {
	border-right: none;
}

.border-top-none {
	border-top: none;
}

.border-bottom-none {
	border-bottom: none;
}

.d-none {
	display: none;
}

.d-block {
	display: block;
}

@media (min-width: 768px) {
	.d-md-none {
		display: none;
	}

	.d-md-block {
		display: block;
	}
}
@media (min-width: 1280px) {
	.d--lg-none {
		display: none;
	}

	.d--lg-block {
		display: block;
	}
}
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	border: 0;
	clip: rect(0 0 0 0);
}

/********** /UTILS **********/
/********** COMPONENTS **********/
/* LINK */
.link {
	text-decoration: none;
	font-weight: 500;
}
.link:hover {
	text-decoration: underline;
}
.link:active {
	color: var(--link-variant);
	text-decoration: none;
}
.link[disabled], .link.disabled {
	opacity: 0.5;
}

.select-box {
	position: relative;
	width: 140px;
	margin: 0 auto;
	display: inline-block;
	vertical-align: middle;
	font-weight: 500;
	font-size: 18px;
	line-height: 120%;
	color: var(--white);
}
.select-box__current {
	position: relative;
	box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	outline: none;
}
.select-box__current:focus + .select-box__list {
	opacity: 1;
	animation-name: none;
}
.select-box__current:focus + .select-box__list .select-box__option {
	cursor: pointer;
}
.select-box__current:focus .select-box__icon svg {
	transform: translateY(-50%) rotate(180deg);
}
.select-box__icon {
	position: absolute;
	top: 60%;
	right: 15px;
	transform: translateY(-50%);
	width: 20px;
	opacity: 1;
	transition: 0.2s ease;
}
.select-box__icon svg {
	transform: translateY(-50%);
}
.select-box__value {
	display: flex;
}
.select-box__input {
	display: none;
}
.select-box__input:checked + .select-box__input-text {
	display: block;
}
.select-box__input-text {
	display: none;
	width: 100%;
	margin: 0;
}
.select-box__list {
	background-color: #fff;
	position: absolute;
	width: 185px;
	left: -30px;
	list-style: none;
	margin-top: 10px;
	opacity: 0;
	padding-top: 15px;
	padding-bottom: 20px;
	animation-name: HideList;
	animation-duration: 0.5s;
	animation-delay: 0.5s;
	animation-fill-mode: forwards;
	animation-timing-function: step-start;
	box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}
.select-box__option {
	display: block;
	background-color: #fff;
	font-weight: 400;
}
.select-box__option span {
	width: calc(100% - 20px);
	border-radius: 100px;
	font-size: 14px;
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 22px;
	margin-left: 10px;
	display: block;
	line-height: 230%;
	color: #1E1D85;
}
.select-box__option:hover, .select-box__option:focus {
	color: #1E1D85;
}
.select-box__option:hover span, .select-box__option:focus span {
	background-color: #F6F6FF;
	color: #1E1D85;
}

@keyframes HideList {
	from {
		transform: scaleY(1);
	}
	to {
		transform: scaleY(0);
	}
}
.breadcrumb__list {
	list-style-type: none;
	padding-top: var(--space-mdl);
	padding-bottom: var(--space-xl);
}
.breadcrumb span {
	font-size: 13px;
}
.breadcrumb__link {
	font-size: 13px;
	cursor: pointer;
	font-weight: 400;
	color: var(--blue);
	text-decoration: none;
}
.breadcrumb__link:hover {
	text-decoration: underline;
}
.breadcrumb__link:active {
	color: var(--link-variant);
	text-decoration: none;
}
.breadcrumb__link[disabled], .breadcrumb__link.disabled {
	opacity: 0.5;
}
.breadcrumb__link-current {
	color: var(--black);
}
.breadcrumb__link-cursor {
	font-size: 13px;
	cursor: pointer;
	font-weight: 400;
	color: var(--blue);
	text-decoration: none;
}
@media (max-width: 1023px) {
	.breadcrumb__list {
		padding-bottom: 35px;
		line-height: 110%;
	}
	.breadcrumb__link {
		font-size: 11px;
		line-height: 100%;
	}
	.breadcrumb span {
		font-size: 11px;
		line-height: 100%;
	}
}
@media (max-width: 767px) {
	.breadcrumb__list {
		padding-top: 15px;
		padding-bottom: 30px;
	}
}

/* BUTTON */
.btn {
	border: none;
	outline: none;
	font: inherit;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
	line-height: 1;
	cursor: pointer;
	height: 42px;
	padding-left: calc(2 * var(--space-sm));
	padding-right: calc(2 * var(--space-sm));
	font-size: 15px;
	font-weight: 500;
	border-radius: 40px;
	transition: all 250ms ease-in-out;
}
.btn:hover {
	text-decoration: none;
}

.btn-block {
	width: 100%;
}

.btn-icon {
	width: 15px;
	height: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: inherit;
}
.btn-icon:first-child {
	margin-right: var(--space-sm);
}
.btn-icon svg {
	max-width: 100%;
	max-height: 100%;
}

.btn-lg {
	height: 54px;
	font-size: 17px;
}
.btn-lg .btn-icon {
	width: 20px;
	height: 20px;
}
.btn-lg .btn-icon:first-child {
	margin-right: var(--space-unit);
}

.btn-round {
	width: 42px;
	height: 42px;
	padding-left: 0;
	padding-right: 0;
}
.btn-round.btn-sm {
	width: 36px;
	height: 36px;
}

.btn-accent {
	background-color: var(--accent);
	color: var(--accent-contrast);
}
.btn-accent:hover {
	box-shadow: 0 0 10px var(--accent-shadow);
}
.btn-accent:active {
	background-color: var(--accent-dark);
}

.btn-primary {
	background-color: var(--primary);
	color: var(--primary-contrast);
}
.btn-primary:hover {
	box-shadow: 0 0 15px var(--primary-shadow);
}
.btn-primary:active {
	background-color: var(--primary-dark);
}

.btn-primary-inverse {
	background-color: var(--white);
	color: var(--primary);
	border: 1px solid var(--border);
}
.btn-primary-inverse:hover {
	box-shadow: 0 0 15px var(--primary-shadow);
}
.btn-primary-inverse:active {
	color: var(--primary-dark);
}

.btn-white {
	background-color: transparent;
	color: var(--white);
	border: 1px solid var(--white);
}
.btn-white:hover {
	box-shadow: 0 0 15px var(--white-shadow);
}
.btn-white:active {
	color: var(--primary-dark);
}

.btn-dis {
	background-color: #F6F6FF;
	color: #7373BA;
	border: 1px solid transparent;
	opacity: 1 !important;
}
.btn-dis:hover {
	box-shadow: 0 0 15px var(--white-shadow);
}
.btn-dis:active {
	color: var(--primary-dark);
}

.btn[disabled],
.btn.disabled {
	opacity: 0.5;
	box-shadow: none;
	pointer-events: none;
}

.btn[disabled] {
	cursor: not-allowed;
}

.icon-btn {
	border: none;
	outline: none;
	font: inherit;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
	line-height: 1;
	cursor: pointer;
	background: transparent;
}
.icon-btn:hover {
	text-decoration: none;
}

input {
	border: 1px solid var(--border);
	outline: none;
	background: white;
	font: inherit;
	padding-left: 20px;
	padding-right: 20px;
	font-size: 15px;
	line-height: 1.2;
	min-height: 50px;
	display: block;
	width: 100%;
}
input:focus, input.focus {
	border-color: #918cff;
	box-shadow: 0px 0px 6px rgba(30, 29, 133, 0.5);
	outline: none;
}
input:invalid, input.invalid, .invalid input {
	border-color: var(--error);
}
input[disabled], input.disabled, .disabled input {
	opacity: 0.5;
}
input::placeholder {
	color: var(--label);
}

textarea {
	border: 1px solid var(--border);
	outline: none;
	background: white;
	font: inherit;
	padding-left: 20px;
	padding-right: 20px;
	font-size: 15px;
	line-height: 1.2;
	min-height: 50px;
	display: block;
	width: 100%;
	padding-top: 12px;
	padding-bottom: 12px;
	resize: vertical;
	min-height: 95px;
}
textarea:focus, textarea.focus {
	border-color: #918cff;
	box-shadow: 0px 0px 6px rgba(30, 29, 133, 0.5);
	outline: none;
}
textarea:invalid, textarea.invalid, .invalid textarea {
	border-color: var(--error);
}
textarea[disabled], textarea.disabled, .disabled textarea {
	opacity: 0.5;
}
textarea::placeholder {
	color: var(--label);
}

select {
	border: 1px solid var(--border);
	outline: none;
	background: white;
	font: inherit;
	padding-left: 20px;
	padding-right: 20px;
	font-size: 15px;
	line-height: 1.2;
	min-height: 50px;
	display: block;
	width: 100%;
}
select:focus, select.focus {
	border-color: #918cff;
	box-shadow: 0px 0px 6px rgba(30, 29, 133, 0.5);
	outline: none;
}
select:invalid, select.invalid, .invalid select {
	border-color: var(--error);
}
select[disabled], select.disabled, .disabled select {
	opacity: 0.5;
}
select::placeholder {
	color: var(--label);
}

.form-control {
	border: 1px solid var(--border);
	outline: none;
	background: white;
	font: inherit;
	padding-left: 20px;
	padding-right: 20px;
	font-size: 15px;
	line-height: 1.2;
	min-height: 50px;
	display: block;
	width: 100%;
}

.form-control.js-input-search{
	font-size: 13px;
}

.form-control:focus, .form-control.focus {
	border-color: #918cff;
	box-shadow: 0px 0px 6px rgba(30, 29, 133, 0.5);
	outline: none;
}
.form-control:invalid, .form-control.invalid, .invalid .form-control {
	border-color: var(--error);
}
.form-control[disabled], .form-control.disabled, .disabled .form-control {
	opacity: 0.5;
}
.form-control::placeholder {
	color: var(--label);
}

textarea.form-control {
	min-height: 95px;
}

.superior-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 39px;
}
.superior .tns-slider {
	display: flex;
}
.superior-item {
	display: flex;
}
.superior-item-wrap {
	width: 100%;
	display: flex;
	flex-direction: column;
	background: var(--white);
	border: 1px solid var(--grey);
	padding: 30px;
	min-height: 333px;
}
.superior-item__img {
	height: 28px;
	position: relative;
	margin-bottom: var(--space-md);
}
.superior-item__img svg {
	height: 100%;
	width: auto;
	max-width: 45px;
}
.superior-item__img svg use {
	height: 100%;
	width: auto;
}
.superior-item__title {
	font-size: 18px;
	color: var(--blue);
	font-weight: bold;
	margin-bottom: var(--space-sm);
	line-height: 120%;
}
.superior-item__description {
	font-size: 14px;
	line-height: 140%;
}
@media (max-width: 1023px) {
	.superior-grid {
		display: block;
		grid-template-columns: unset;
		grid-gap: unset;
	}
	.superior-item {
		display: flex !important;
	}
	.superior .tns-controls {
		margin-top: 30px;
	}
	.superior .tns-controls button {
		margin-right: 10px;
	}
}
@media (max-width: 479px) {
	.superior-item__title {
		font-size: 15px;
	}
}

.checkbox {
	display: flex;
}
.checkbox.disabled {
	opacity: 0.5;
}
.checkbox input {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	border: 0;
	clip: rect(0 0 0 0);
}
.checkbox .checkbox-box {
	border: 1px solid var(--border);
	outline: none;
	background: white;
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	cursor: pointer;
}
.checkbox input:focus + .checkbox-box {
	border-color: #918cff;
	box-shadow: 0px 0px 6px rgba(30, 29, 133, 0.5);
	outline: none;
}
.checkbox input.invalid + .checkbox-box {
	border-color: var(--error);
}
.checkbox input[disabled] ~ .checkbox-box,
.checkbox input[disabled] ~ .label {
	opacity: 0.5;
}
.checkbox input:checked + .checkbox-box {
	background-color: var(--active-control);
}
.checkbox input[type=checkbox]:checked + .checkbox-box:after {
	content: "";
	width: 12px;
	height: 10px;
	background-repeat: no-repeat;
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.03125 4L4.96875 8L10.9688 1.9375' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.checkbox input[type=radio] + .checkbox-box {
	border-radius: 50%;
}
.checkbox input[type=radio]:checked + .checkbox-box:after {
	content: "";
	width: 8px;
	height: 8px;
	background: white;
	border-radius: 50%;
}
.checkbox .checkbox-label {
	margin-left: 13px;
	font-size: 12px;
	color: black;
}

.form-field {
	margin-bottom: var(--space-unit);
}

.form-label {
	display: block;
	color: var(--label);
	font-size: 13px;
	margin-bottom: 9px;
}

.form-error {
	color: var(--error);
	font-size: 13px;
	margin-top: 10px;
}

.input-with-icon {
	position: relative;
}
.input-with-icon svg {
	pointer-events: none;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 16px;
}

.jumbotron {
	background: var(--primary);
	color: var(--primary-contrast);
}

.home-banner {
	height: 100%;
}
.home-banner__img {
	display: none;
}
.home-banner__content {
	padding-top: var(--space-xs);
	padding-bottom: var(--space-xs);
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.home-banner__text {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: var(--space-md);
}
.home-banner__description {
	font-size: 15px;
	font-weight: 400;
	margin-bottom: var(--space-lg);
}
@media (min-width: 768px) {
	.home-banner {
		display: flex;
	}
	.home-banner__content {
		width: 50%;
		flex-shrink: 0;
		flex-grow: 0;
		align-items: flex-start;
		text-align: left;
		padding-bottom: calc(2 * var(--space-xs));
	}
	.home-banner__img {
		width: 50%;
		flex-shrink: 0;
		flex-grow: 0;
		display: block;
		position: relative;
	}
	.home-banner__img img,
	.home-banner__img .banner-img {
		display: block;
		position: absolute;
		text-align: center;
		right: 0;
		bottom: var(--space-md);
		max-height: calc(100% - 2 * var(--space-md));
		width: auto;
		max-width: none;
	}
	.home-banner__img .banner-img svg {
		width: 375px;
		height: 350px;
	}
	.home-banner__text {
		font-size: 32px;
		margin-bottom: 30px;
	}
}
@media (min-width: 1024px) {
	.home-banner .btn {
		height: 54px;
		font-size: 17px;
	}
	.home-banner__text {
		font-size: 38px;
	}
	.home-banner__content {
		padding-bottom: 90px;
		padding-top: 30px;
	}
	.home-banner__img .banner-img svg {
		width: 375px;
		height: 350px;
	}
}
@media (min-width: 1440px) {
	.home-banner__img img,
	.home-banner__img .banner-img {
		left: 0;
		margin: auto;
	}
}

.home-banner .lighthouse .light {
	animation-name: lightRotation;
	animation-duration: 8.5s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
	transform-origin: 50.7% center;
}
.home-banner .lighthouse .cloud {
	animation-name: cloudMove;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
}
.home-banner .lighthouse .cloud-1 {
	animation-delay: 3s;
	animation-duration: 6s;
}
.home-banner .lighthouse .cloud-2 {
	animation-delay: 1.4s;
	animation-duration: 10s;
}
.home-banner .lighthouse .cloud-3 {
	animation-delay: 0s;
	animation-duration: 12s;
}

@keyframes lightRotation {
	from {
		transform: rotateY(0deg);
	}
	25% {
		opacity: 0.2;
	}
	50% {
		transform: rotateY(180deg);
		opacity: 1;
	}
	75% {
		opacity: 0.2;
	}
	to {
		transform: rotateY(360deg);
		opacity: 1;
	}
}
@keyframes cloudMove {
	from {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(10px);
	}
	to {
		transform: translateY(0px);
	}
}
.scroll-slider-viewport {
	width: 100%;
	overflow: hidden;
	padding-top: 20px;
	padding-bottom: 20px;
	margin-top: -20px;
	margin-bottom: -20px;
}
.scroll-slider-slides {
	display: flex;
	margin-left: calc(-1 * var(--gap));
	margin-right: calc(-1 * var(--gap));
}
.scroll-slider-slide {
	flex-shrink: 0;
	padding-left: var(--gap);
	padding-right: var(--gap);
	transition: opacity 400ms ease-in-out;
}
.scroll-slider-slide:not(.active) {
	opacity: 0.5;
	cursor: default;
	pointer-events: none;
}
.scroll-slider-controls {
	margin-top: calc(2 * var(--space-sm));
	margin-bottom: calc(-1 * var(--space-sm));
	display: flex;
	flex-wrap: wrap;
}
.scroll-slider-control {
	margin-bottom: var(--space-sm);
}
.scroll-slider-control:not(:last-child) {
	margin-right: var(--space-xs);
}
.scroll-slider-link {
	margin-bottom: var(--space-sm);
}

.fade-slider {
	width: 100%;
	display: flex;
	flex-direction: column;
}
.fade-slider-slides {
	flex-grow: 1;
	position: relative;
	width: 100%;
	height: 100%;
}
.fade-slider-slide {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition-property: opacity, visibility;
	transition-duration: 1000ms;
}
.fade-slider-slide.active {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
	transition-duration: 2000ms;
	transition-delay: 500ms;
}
.fade-slider-pagination {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.fade-slider-pagination__item {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--primary-contrast);
	cursor: pointer;
	transition: transform 250ms linear, background 250ms linear;
}
.fade-slider-pagination__item:not(:last-child) {
	margin-right: var(--space-md);
}
.fade-slider-pagination__item:hover {
	transform: scale(2.5);
}
.fade-slider-pagination__item.active {
	transform: scale(2.5);
	background: var(--accent);
}

.accordion-trigger {
	cursor: pointer;
}

.accordion h2{
	margin-bottom: 0;
}

.slider-filters {
	display: flex;
	list-style: none;
	font-size: 13px;
	font-weight: 500;
}
.slider-filters__item {
	display: flex;
	align-items: center;
}
.slider-filters__item:not(:last-child) {
	margin-right: var(--space-unit);
}
.slider-filters__item .slider-filter {
	border: none;
	outline: none;
	font: inherit;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
	line-height: 1;
	cursor: pointer;
	background: transparent;
	color: var(--primary);
	transition: color 250ms linear;
}
.slider-filters__item .slider-filter:hover {
	text-decoration: none;
}
.slider-filters__item .slider-filter:hover {
	color: var(--primary-dark);
}
.slider-filters__item .slider-filter.active {
	color: var(--accent);
	cursor: default;
}
.slider-filters__item .slider-filter.active:hover {
	color: var(--accent);
}
.slider-filters__item .slider-filter.active:before {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	margin-right: var(--space-xs);
	background: currentColor;
}
@media (min-width: 1024px) {
	.slider-filters {
		font-size: 17px;
	}
	.slider-filters__item:not(:last-child) {
		margin-right: calc(2 * var(--space-unit));
	}
}

.tab-head {
	display: flex;
	list-style: none;
	font-size: 13px;
	font-weight: 500;
}
.tab-head__item {
	display: flex;
	align-items: center;
}
.tab-head__item:not(:last-child) {
	margin-right: var(--space-unit);
}
.tab-head__button {
	border: none;
	outline: none;
	font: inherit;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
	line-height: 1;
	cursor: pointer;
	background: transparent;
	color: var(--primary);
	/*transition: color 250ms linear;*/
}
.tab-head__button:hover {
	text-decoration: none;
}
.tab-head__button:hover {
	color: var(--primary-dark);
}
.tab-head__button.active {
	cursor: default;
	color: var(--accent);
}
.tab-head__button.active:hover {
	color: var(--accent);
}
.tab-head__button.active:before {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	margin-right: var(--space-xs);
	background: currentColor;
}
@media (min-width: 1024px) {
	.tab-head {
		font-size: 17px;
	}
	.tab-head__item:not(:last-child) {
		margin-right: calc(2 * var(--space-unit));
	}
}

.tab-body {
	width: 100%;
}
.tab-body__item {
	display: none;
}
.tab-body__item.active {
	display: block;
}

.apps-block:not(:last-child) {
	margin-bottom: var(--space-unit);
}
.apps-title {
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 13px;
}
.apps-list {
	list-style: none;
	display: flex;
	margin-left: -7.5px;
	margin-right: -7.5px;
}
.apps-list li {
	margin-left: 7.5px;
	margin-right: 7.5px;
	flex-shrink: 0;
}
.apps .app-icon {
	display: block;
	cursor: pointer;
	width: 36px;
	height: 37px;
	position: relative;
}
.apps .app-icon .icon, .apps .app-icon .colored-icon {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 36px;
	height: auto;
}
.apps .app-icon .colored-icon {
	opacity: 0;
}
.apps .app-icon:hover .icon {
	opacity: 0;
}
.apps .app-icon:hover .colored-icon {
	opacity: 1;
}

/* CARD */
.card {
	border: 1px solid var(--border);
	background: white;
	cursor: pointer;
}
.card--dark {
	border: none;
	background: var(--primary);
	color: var(--primary-contrast);
}
.card:hover {
	cursor: pointer;
	transition: box-shadow 400ms ease-in-out;
}
.card:hover:hover {
	box-shadow: 0 5px 15px var(--shadow);
}

.modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	z-index: 110;
	font-size: 15px;
	opacity: 1;
	visibility: visible;
	transition: opacity 400ms ease-in-out, visibility 400ms ease-in-out;
}
.modal[hidden] {
	display: block;
	opacity: 0;
	visibility: hidden;
}
.modal-mask {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	cursor: pointer;
	z-index: 1;
}
.modal-container {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: auto;
}
.modal-window {
	position: relative;
	margin: auto;
	background: white;
	width: auto;
	z-index: 2;
	max-width: 700px;
	box-shadow: 0px 5px 15px rgba(0, 0, 102, 0.15);
}
.modal-close {
	position: absolute;
	top: 20px;
	right: 20px;
	cursor: pointer;
	color: var(--primary);
}
.modal-body {
	padding: 55px 20px 60px;
}
.modal-title {
	font-size: 25px;
	margin-bottom: 20px;
}
@media (min-width: 768px) {
	.modal-container {
		padding: var(--space-md);
	}
	.modal-title {
		font-size: 40px;
		margin-bottom: 25px;
	}
	.modal-body {
		padding-left: 60px;
		padding-right: 60px;
	}
}

body.modals-shown {
	overflow: hidden;
	padding-right: var(--scrollbar-width);
}

.top-button {
	position: sticky;
	bottom: 50px;
	z-index: 50;
}
.top-button .container {
	position: relative;
}
.top-button button {
	position: absolute;
	right: calc(2 * var(--gap));
	top: 0;
	transform: translateY(-50%);
	transition: opacity 400ms ease-in-out, visibility 400ms ease-in-out;
}
.top-button button[hidden] {
	display: block;
	opacity: 0;
	visibility: hidden;
}

.header-toggler {
	width: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header-toggler:not([data-closed]) {
	color: var(--accent);
}
.header-toggler:not([data-closed]):hover, .header-toggler:not([data-closed]):active {
	color: var(--accent-dark);
}
.header-toggler:not([data-closed]) .burger {
	display: none;
}
.header-toggler[data-closed] {
	color: var(--primary);
}
.header-toggler[data-closed]:hover, .header-toggler[data-closed].active {
	color: var(--primary-dark);
}
.header-toggler[data-closed] .times {
	display: none;
}

.header-contacts {
	height: 100%;
	display: flex;
	align-items: center;
	position: relative;
	font-size: 13px;
	font-weight: 500;
}
.header-contacts__view {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	height: 100%;
	justify-content: center;
}
.header-contacts__phone {
	font-size: 17px;
	display: block;
	margin-bottom: var(--space-xxs);
	line-height: 1;
	text-decoration: none;
	color: inherit;
}
.header-contacts__trigger {
	border: none;
	outline: none;
	font: inherit;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
	line-height: 1;
	cursor: pointer;
	background: transparent;
	color: inherit;
}
.header-contacts__trigger:hover {
	text-decoration: none;
}
.header-contacts__trigger svg {
	margin-left: var(--space-xxs);
	color: var(--accent);
	transition: transform 400ms ease-in-out;
}
.header-contacts__trigger.opened svg {
	transform: rotate(-180deg);
}
.header-contacts__pane {
	position: absolute;
	top: 100%;
	right: 0;
	padding-top: 2px;
	transition: opacity 400ms ease-in-out, visibility 400ms ease-in-out;
	min-width: 250px;
}
.header-contacts__pane[hidden] {
	display: block;
	opacity: 0;
	visibility: hidden;
}
.header-contacts__wrapper {
	background: var(--white);
	padding: var(--space-md);
	box-shadow: 0px 5px 15px rgba(0, 0, 102, 0.15);
}

.header-navigation {
	font-size: 15px;
	font-weight: 500;
	height: 100%;
}
.header-navigation ul {
	display: flex;
	list-style: none;
	height: 100%;
}
.header-navigation ul li {
	display: flex;
	align-items: center;
}
.header-navigation ul li:not(:last-child) {
	margin-right: var(--space-md);
}
.header-navigation ul a {
	color: inherit;
	text-decoration: none;
}
.header-navigation ul a svg {
	transform: translateY(-2px);
}
.header-navigation > ul > li.active > a {
	color: var(--accent);
	text-decoration: none;
}
.header-navigation > ul > li:not(.active) > a:not(.active):hover {
	color: var(--primary-variant);
	text-decoration: underline;
}
.header-navigation > ul > li > a.active {
	color: var(--accent);
	text-decoration: none;
}

.header-navigation-pane {
	position: absolute;
	top: 100%;
	height: calc(100vh - var(--header-height));
	padding-top: -1px;
	left: 0;
	right: 0;
	overflow: auto;
	z-index: 90;
	border-top: 1px solid var(--border);
	opacity: 1;
	visibility: visible;
	pointer-events: all;
	transition: all 400ms ease-in-out;
}
.header-navigation-pane__mask {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.7);
	cursor: pointer;
	z-index: 1;
}
.header-navigation-pane__block {
	width: calc(100vw - var(--scrollbar-width));
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	background: var(--white);
	padding-top: 45px;
	padding-bottom: 65px;
	z-index: 2;
}
.header-navigation-pane__block:after {
	content: "";
	top: 100%;
	left: 0;
	right: 0;
	position: absolute;
	height: 15px;
	background: linear-gradient(to bottom, rgba(0, 0, 102, 0.15), transparent);
}
.header-navigation-pane .row {
	flex-wrap: nowrap;
}
.header-navigation-pane[hidden] {
	display: block;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.header-navigation-pane .header-section__info {
	width: calc(335px - var(--gap));
}
.header-navigation-pane .header-section__name {
	display: block;
	font-size: 38px;
	font-weight: 700;
	color: var(--header);
	margin-bottom: var(--space-xs);
}
.header-navigation-pane .header-section__description {
	font-size: 13px;
	color: var(--text);
	line-height: 1.4;
}
.header-navigation-pane .header-section .col:not(:last-child) .header-section__list {
	max-width: 315px;
}
.header-navigation-pane .header-section__list {
	padding-top: 12px;
	padding-right: 30px;
}
.header-navigation-pane .header-section__list ul {
	display: block;
	color: var(--primary);
	font-size: 18px;
	font-weight: 700;
}
.header-navigation-pane .header-section__list ul a {
	color: inherit;
	text-decoration: none;
	font-weight: inherit;
}
.header-navigation-pane .header-section__list ul a:hover {
	text-decoration: underline;
}
.header-navigation-pane .header-section__list ul a.active {
	text-decoration: none;
	color: var(--accent);
}
.header-navigation-pane .header-section__list ul li {
	margin-bottom: 20px;
	margin-right: 0;
	display: block;
}
.header-navigation-pane .header-section__list ul li.active > a {
	text-decoration: none;
	color: var(--accent);
}
.header-navigation-pane .header-section__list ul ul {
	margin-top: 15px;
}
.header-navigation-pane .header-section__list ul > li > ul {
	font-size: 15px;
	font-weight: 500;
	margin-top: 18px;
}
.header-navigation-pane .header-section__list ul > li > ul li {
	margin-bottom: 15px;
}

.header-navigation [data-submenu=catalog] .header-section__list {
	max-width: 320px;
}
.header-navigation [data-submenu=catalog] .header-section__list > ul.products li[data-level="2"] {
	margin-bottom: 15px;
	white-space: nowrap;
}
.header-navigation [data-submenu=catalog] .header-section__list > ul.products li[data-level="2"] > a {
	/*font-weight: 500;*/
}
.header-navigation [data-submenu=catalog] .header-section__list > ul.products li[data-level="2"] > ul {
	padding-left: 15px;
	margin-top: 15px;
}
.header-navigation [data-submenu=catalog] .header-section__list > ul li[data-level="1"] > ul {
	padding-left: 15px;
}

.header-pane {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
	transition-property: opacity, visibility;
	transition-timing-function: ease-in-out;
	transition-duration: 400ms;
	position: fixed;
	top: var(--header-height);
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	z-index: 90;
}
.header-pane[hidden] {
	display: block;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.header-pane__mask {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.6);
	cursor: pointer;
}
.header-pane__content {
	padding-top: var(--space-md);
	padding-bottom: var(--space-lg);
	width: 100%;
	max-height: 100%;
	overflow: auto;
	background: var(--white);
	position: relative;
	box-shadow: 0px 5px 15px rgba(0, 0, 102, 0.15);
}
.header-pane__search {
	margin-bottom: 30px;
}
.header-pane .search-list {
	left: calc(-2 * var(--gap));
	right: calc(-2 * var(--gap));
}
.header-pane__contacts {
	margin-top: 40px;
}
@media (min-width: 1280px) {
	.header-pane {
		display: none !important;
	}
}
@media (min-width: 768px) {
	.header-pane__content {
		padding-top: 35px;
	}
	.header-pane__search {
		display: none;
	}
	.header-pane__contacts {
		display: none;
	}
	.header-pane .header-menu-section[data-section=account] {
		display: none;
	}
}

.search {
	position: relative;
}
.search-field {
	position: relative;
}
.search-field .form-control {
	height: 36px;
	min-height: 0;
	border-radius: 100px;
	padding-left: 42px;
	padding-right: 42px;
}
.search-field__icon {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	padding-left: 12px;
}
.search-field__reset {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	display: flex;
	padding-right: 16px;
	color: var(--primary);
}
.search-field input:placeholder-shown ~ .search-field__reset {
//	opacity: 0;
}
.search-list {
	background: var(--white);
	padding: var(--space-xs) var(--space-md);
	box-shadow: 0px 12px 15px rgba(0, 0, 102, 0.15);
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
}
.search-list-empty {
	color: var(--label);
	height: 30px;
	display: flex;
	align-items: center;
	padding: 4px 20px;
}
.search-list a {
	min-height: 30px;
	display: flex;
	align-items: center;
	padding: 4px 20px;
	color: var(--text);
	cursor: pointer;
	font-size: 13px;
	text-decoration: none;
	border-radius: 100px;
	transition: background 250ms ease-in-out;
}
.search-list a:hover {
	background-color: var(--hover-background);
}
@media (min-width: 768px) {
	/*.search-field .search-field__reset {
		opacity: 1 !important;
	}*/
	.search-list {
		box-shadow: 0px 8px 15px rgba(0, 0, 102, 0.15);
	}
}

.header-menu {
	color: var(--primary);
}
.header-menu a {
	color: inherit;
	text-decoration: none;
}
.header-menu ul {
	list-style: none;
}
.header-menu-section {
	margin-bottom: 25px;
}
.header-menu-section__header {
	display: flex;
	align-items: center;
}
.header-menu-section__title {
	font-size: 20px;
	font-weight: 700;
}
.header-menu-section__toggler {
	flex-shrink: 0;
	margin-left: 8px;
	width: 15px;
	height: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .3s;
}

.header-menu-section__toggler.open{
	transform: rotate(-180deg);
}

.header-menu-section__items a {
	font-weight: inherit;
}
.header-menu-section__items li:not(:last-child) {
	margin-bottom: var(--space-sm);
}

.header-menu-section__items li:last-child{
	margin-bottom: 22px;
}

.header-menu-section__items li ul {
	margin-top: var(--space-sm);
}
.header-menu-section__items > ul {
	padding-top: var(--space-sm);
	font-size: 15px;
	font-weight: 700;
	margin-bottom: calc(-1 * var(--space-sm));
}
.header-menu-section__items > ul > li {
	width: 100%;
}
.header-menu-section__items > ul > li > ul {
	font-size: 13px;
	font-weight: 500;
}

.header-menu-section__items > ul > li > ul > li {
	margin-left: 10px;
}

.header-menu-section__items > ul > li > ul > li > ul {
	font-weight: 400;
}
.header-menu-section__items ul.offset {
	padding-left: var(--space-sm);
	font-weight: 400;
}
@media (min-width: 768px) {
	.header-menu-section__title {
		font-size: 25px;
	}
	.header-menu-section__toggler {
		display: none;
	}
	.header-menu-section__items {
		height: auto !important;
		transition: none !important;
		overflow: visible !important;
	}
	.header-menu-section__items > ul {
		margin-bottom: 0;
	}
	.header-menu-section[data-section=catalog] {
		float: right;
		width: calc(50% + 40px);
		padding-left: 40px;
	}
	.header-menu:after {
		content: "";
		display: block;
		clear: both;
	}
}
@media (min-width: 1024px) {
	.header-menu-section[data-section=catalog] {
		width: calc(66% + 40px);
	}
	.header-menu-section[data-section=catalog] .header-menu-section__items > ul {
		column-count: 2;
	}
	.header-menu-section[data-section=catalog] .header-menu-section__items > ul li {
		page-break-inside: avoid;
		break-inside: avoid;
		width: 100%;
		margin-bottom: 15px;
		vertical-align: top;
	}
}

.contacts-block__question {
	margin-bottom: 20px;
}
.contacts-block__mail {
	margin-bottom: 20px;
}
.contacts-block__mail a {
	font-size: 15px;
}
.contacts-block__label {
	font-size: 15px;
	font-weight: 700;
}
.contacts-block__apps .apps-title {
	font-size: 15px;
}

:root {
	--header-height: 65px;
}

.header {
	color: var(--primary);
}
.header-view {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: white;
	transition: box-shadow 400ms ease-in-out;
	border-bottom: 1px solid var(--border);
}
.header-view__wrapper {
	display: flex;
}
.header-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	margin-right: auto;
}
.header-toggler {
	margin-left: var(--space-lg);
}
.header.fixed .header-view {
	box-shadow: 0px 5px 15px rgba(0, 0, 102, 0.15);
}

body.header-pane-opened .header .header-view {
	box-shadow: none;
	padding-right: var(--scrollbar-width);
}

.header-view__wrapper {
	height: var(--header-height);
}
.header-logo img {
	height: 55px;
}
.header__navigation {
	display: none;
}
.header__contacts {
	display: none;
}
.header__actions {
	display: none;
}
.kilo,
.page-main {
	margin-top: var(--header-height);
}

@media (min-width: 768px) {
	:root {
		--header-height: 80px;
		--search-right-offset: 105px;
		--search-left-offset: 315px;
		--search-right: calc(
				var(--content-side-offset) + var(--search-right-offset)
		);
		--search-left: calc(var(--content-side-offset) + var(--search-left-offset));
	}

	.header-logo img {
		height: 55px;
	}
	.header__contacts {
		display: block;
		margin-right: var(--space-xl);
	}
	.header__actions {
		display: flex;
		align-items: center;
	}
	.header-search {
		margin-right: var(--space-unit);
	}
	.header-search__search {
		position: absolute;
		top: 2px;
		right: var(--search-right);
		left: var(--search-left);
		display: flex;
		justify-content: flex-end;
		pointer-events: none;
	}
	.header-search__search .search {
		padding: 20px 0;
		pointer-events: all;
		width: 0;
		overflow: hidden;
		transition: width 500ms ease-in-out, padding 500ms ease-in-out;
		transition-delay: 100ms;
	}
	.header-search__search .search-list {
		margin-top: 23px;
		position: static;
		top: 0;
	}
	.header-view .header__navigation,
	.header-view .header__contacts {
		transition: opacity 200ms ease-in-out, visibility 200ms ease-in-out;
	}
	.header-view.header-search-opened .header__navigation,
	.header-view.header-search-opened .header__contacts {
		opacity: 0;
		visibility: hidden;
	}
	.header-view.header-search-opened .header-search__trigger {
		opacity: 0;
	}
	.header-view.header-search-opened .header-search__search .search {
		width: 100%;
		padding: 20px;
	}
}
@media (min-width: 1280px) {
	:root {
		--search-right-offset: 46px;
	}

	.header__navigation {
		display: flex;
		align-items: center;
		margin-right: auto;
	}
	.header__contacts {
		margin-right: var(--space-lg);
	}
	.header-toggler {
		display: none;
	}
}
.footer {
	background: var(--primary);
	color: white;
	padding-top: 40px;
	padding-bottom: 50px;
	font-size: 13px;
	line-height: 1.4;
	position: relative;
	margin-top: auto;
}
.footer__logo {
	margin-bottom: 30px;
}
.footer-contacts {
	margin-bottom: 35px;
}
.footer-contacts__title {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: var(--space-sm);
}
.footer-contacts p:not(:last-child) {
	margin-bottom: var(--space-unit);
}
.footer-contacts a {
	color: inherit;
	font-weight: 700;
}
.footer-contacts a[href*=tel] {
	text-decoration: none;
}
.footer-apps {
	margin-bottom: 35px;
}
.footer-apps .apps-list li {
	position: relative;
}
.footer-apps .apps-list li a {
	position: relative;
	z-index: 2;
}
.footer-apps .apps-list li:before {
	content: "";
	position: absolute;
	top: 1px;
	bottom: 1px;
	left: 3px;
	right: 2px;
	background: white;
	z-index: 1;
	border-radius: 50%;
	opacity: 0;
	transition: opacity 250ms ease-in-out;
}
.footer-apps .apps-list li:hover:before {
	opacity: 1;
}
.footer__links {
	font-size: 12px;
}
.footer__links .footer-logo {
	display: none;
}
.footer-link {
	font-weight: 400;
	font-size: 12px;
	display: block;
	color: inherit;
	margin-bottom: var(--space-unit);
}
@media (min-width: 768px) {
	.footer {
		padding-top: 50px;
	}
	.footer-contacts {
		margin-bottom: 0;
	}
	.footer__wrapper {
		display: flex;
	}
	.footer__logo {
		display: none;
	}
	.footer__links {
		order: 1;
	}
	.footer__links .footer-logo {
		display: inline-block;
		margin-bottom: 30px;
	}
	.footer__data {
		order: 2;
	}
}
@media (min-width: 1280px) {
	.footer {
		padding-top: 57px;
	}
}

.datepicker-grid {
	width: 260px;
	padding-left: 25px;
	padding-right: 25px;
	padding-bottom: 20px;
}
.datepicker-view {
	font-weight: 500;
	font-size: 12px;
	line-height: 100%;
}
.datepicker-view .dow {
	font-weight: 500;
	font-size: 12px;
	line-height: 100%;
	height: unset;
}
.datepicker-view .days-of-week {
	padding-left: 25px;
	padding-right: 25px;
}
.datepicker-header {
	padding-left: 20px;
	padding-right: 20px;
}
.datepicker-header .datepicker-controls {
	margin-top: 28px;
	margin-bottom: 27px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.datepicker-header .datepicker-controls .button {
	font-weight: 400;
	background-color: #ffffff;
	font-size: 12px;
	height: 18px;
}
.datepicker-header .datepicker-controls .button:hover {
	background-color: #fff;
}
.datepicker-cell {
	height: 32px;
	line-height: 32px;
}
.datepicker-cell.selected {
	background-color: var(--blue);
	border-radius: 100%;
}
.datepicker-view.datepicker-grid .datepicker-cell {
	height: 3rem;
	line-height: 3rem;
}
.datepicker .datepicker-cell.focused:not(.selected) {
	background-color: var(--blue);
	border-radius: 100%;
	color: #fff;
}

/********** /COMPONENTS **********/
/********** HOME PAGE **********/
.home-page__jumbotron .fade-slider {
	height: 250px;
}
.home-page__jumbotron .fade-slider-pagination {
	padding-bottom: var(--space-md);
}
.home-page__jumbotron .jumbotron {
	overflow: hidden;
}
.home-page__jumbotron .s-slider-pagination div {
	width: 10px;
	height: 10px;
	background: blue;
	margin: 5px;
}
.home-page__jumbotron .s-slider-pagination div.active {
	background: red;
}
@media (min-width: 768px) {
	.home-page__jumbotron .fade-slider {
		height: 450px;
		position: relative;
	}
	.home-page__jumbotron .fade-slider-pagination {
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		justify-content: flex-start;
		padding-bottom: calc(2 * var(--gap));
	}
}
@media (min-width: 1024px) {
	.home-page__jumbotron .fade-slider {
		height: 400px;
	}
	.home-page__jumbotron .fade-slider-pagination {
		padding-bottom: 70px;
	}
}

.s-slider-pagination div {
	width: 10px;
	height: 10px;
	background: blue;
	margin: 5px;
}
.s-slider-pagination div.active {
	background: red;
}

.home-stats__wrapper {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: -20px;
}
.home-stats .home-stat {
	position: relative;
	width: 50%;
	padding-left: var(--space-md);
	margin-bottom: var(--space-sm);
}
.home-stats .home-stat[data-index="1"] {
	order: 1;
}
.home-stats .home-stat[data-index="2"] {
	order: 3;
}
.home-stats .home-stat[data-index="3"] {
	order: 5;
}
.home-stats .home-stat[data-index="4"] {
	order: 2;
}
.home-stats .home-stat[data-index="5"] {
	order: 4;
}
.home-stats .home-stat__bullet {
	width: 10px;
	height: 10px;
	background: var(--accent);
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 18px;
	transform: translateY(-50%);
}
.home-stats .home-stat__value {
	font-size: 36px;
	font-weight: 700;
	color: var(--primary);
	line-height: 1;
	margin-bottom: 2px;
}
.home-stats .home-stat__text {
	font-size: 11px;
	color: var(--text);
	padding-right: var(--space-xs);
}
@media (min-width: 768px) {
	.home-stats__wrapper {
		flex-wrap: nowrap;
		overflow: hidden;
	}
	.home-stats .home-stat {
		width: auto;
	}
	.home-stats .home-stat:not(:last-child) {
		margin-right: var(--space-unit);
	}
	.home-stats .home-stat[data-index] {
		order: 1;
	}
}
@media (min-width: 1024px) {
	.home-stats .home-stat:not(:last-child) {
		margin-right: 50px;
	}
	.home-stats .home-stat__value {
		font-size: 40px;
	}
	.home-stats .home-stat__text {
		font-size: 13px;
	}
	.home-stats .home-stat__bullet {
		top: 20px;
	}
}
@media (min-width: 1280px) {
	.home-stats .home-stat:not(:last-child) {
		margin-right: 80px;
	}
	.home-stats .home-stat__value {
		font-size: 60px;
	}
	.home-stats .home-stat__bullet {
		top: 32.5px;
	}
}
@media (min-width: 1440px) {
	.home-stats .home-stat:not(:last-child) {
		margin-right: 100px;
	}
}

.home-info .home-info-company,
.home-info .home-info-products {
	display: block;
	text-decoration: none;
}
.home-info .home-info-company__container,
.home-info .home-info-products__container {
	padding: 35px 30px 50px;
}
.home-info .home-info-company__title,
.home-info .home-info-products__title {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: var(--space-xs);
}
.home-info .home-info-company__text,
.home-info .home-info-products__text {
	margin-bottom: calc(2 * var(--space-sm));
	font-size: 13px;
	line-height: 1.4;
}
.home-info .home-info-company {
	margin-bottom: var(--space-lg);
}
.home-info .home-info-company__icons {
	display: none;
}
.home-info .home-info-products {
	position: relative;
	overflow: hidden;
	min-height: 240px;
}
.home-info .home-info-products:before {
	content: "";
	display: block;
	background-image: url("./images/products/products.png");
	min-width: 300px;
	height: 125px;
	background-repeat: no-repeat;
	background-position: right bottom;
	position: absolute;
	top: 100px;
	left: 100px;
	right: 0;
}
.home-info .home-info-products__container {
	position: relative;
}
.home-info .home-info-products__title {
	color: inherit;
}
@media (min-width: 768px) {
	.home-info .home-info-company,
	.home-info .home-info-products {
		min-height: 400px;
	}
	.home-info .home-info-company {
		margin-bottom: 0;
	}
	.home-info .home-info-products:before {
		top: auto;
		bottom: 60px;
	}
}
@media (min-width: 1024px) {
	.home-info .home-info-company,
	.home-info .home-info-products {
		min-height: 370px;
	}
	.home-info .home-info-company__container,
	.home-info .home-info-products__container {
		padding-top: 50px;
		padding-bottom: 64px;
	}
	.home-info .home-info-company__title,
	.home-info .home-info-products__title {
		margin-bottom: var(--space-xs);
	}
	.home-info .home-info-company__text,
	.home-info .home-info-products__text {
		font-size: 15px;
	}
	.home-info .home-info-company {
		flex-basis: 58.33%;
	}
	.home-info .home-info-company__title {
		font-size: 24px;
	}
	.home-info .home-info-products {
		flex-basis: 41.66%;
	}
	.home-info .home-info-products__title {
		font-size: 28px;
	}
	.home-info .home-info-products:before {
		top: auto;
		bottom: 30px;
	}
}
@media (min-width: 1280px) {
	.home-info .home-info-company__container {
		display: flex;
		margin-left: calc(-1 * var(--gap));
		margin-right: calc(-1 * var(--gap));
		padding-left: 0;
		padding-right: 0;
	}
	.home-info .home-info-company__icons {
		padding-left: calc(var(--gap) * 2);
	}
	.home-info .home-info-company__content {
		padding-left: var(--gap);
		padding-right: calc(var(--gap) + 40px);
	}
	.home-info .home-info-company__icons {
		display: flex;
		justify-content: center;
		align-items: flex-start;
		width: 37.5%;
	}
	.home-info .home-info-company__content {
		width: 62.5%;
	}
}
@keyframes circleMove {
	from {
		transform: scale(0);
		opacity: 0.55;
	}
	50% {
		transform: scale(1);
		opacity: 0.01;
	}
	51% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
.home-info .circles .circle {
	opacity: 0;
	animation-name: circleMove;
	animation-duration: 7300ms;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
}
.home-info .circles-1 .circle {
	transform-origin: 70% 76%;
}
.home-info .circles-1 .circle-1 {
	animation-delay: 0ms;
}
.home-info .circles-1 .circle-2 {
	animation-delay: 1600ms;
}
.home-info .circles-1 .circle-3 {
	animation-delay: 3200ms;
}
.home-info .circles-2 .circle {
	transform-origin: 68% 36%;
}
.home-info .circles-2 .circle-1 {
	animation-delay: 2274ms;
}
.home-info .circles-2 .circle-2 {
	animation-delay: 3874ms;
}
.home-info .circles-2 .circle-3 {
	animation-delay: 5474ms;
}
.home-info .circles-3 .circle {
	transform-origin: 23% 66%;
}
.home-info .circles-3 .circle-1 {
	animation-delay: 1137ms;
}
.home-info .circles-3 .circle-2 {
	animation-delay: 2737ms;
}
.home-info .circles-3 .circle-3 {
	animation-delay: 4337ms;
}

.home-clients {
	--client-logo-offset: 16px;
}
.home-clients .client-block {
	width: 100%;
	height: 116px;
	position: relative;
	display: block;
}
.home-clients .client-block img {
	position: absolute;
	top: var(--client-logo-offset);
	left: calc(2 * var(--client-logo-offset));
	right: calc(2 * var(--client-logo-offset));
	bottom: var(--client-logo-offset);
	margin: auto;
	max-width: calc(100% - 4 * var(--client-logo-offset));
	max-height: calc(100% - 2 * var(--client-logo-offset));
	object-fit: contain;
	object-position: center;
	transition: opacity 250ms ease-in-out;
}
.home-clients .client-block img.colored {
	opacity: 0;
}
.home-clients .client-block:hover img.bw {
	opacity: 0;
}
.home-clients .client-block:hover img.colored {
	opacity: 1;
}
.home-clients .scroll-slider-slide {
	flex-shrink: 0;
	min-width: 170px;
}
@media (min-width: 768px) {
	.home-clients {
		--client-logo-offset: 20px;
	}
}

.home-solutions__header {
	margin-bottom: var(--space-md);
}
.home-solutions__title {
	margin-bottom: var(--space-sm);
}
.home-solutions .scroll-slider-slide {
	min-width: 340px;
}
.home-solutions .home-solution {
	text-decoration: none;
	padding: 40px 30px;
	display: flex;
	flex-direction: column;
	min-height: 270px;
}
.home-solutions .home-solution__group {
	color: var(--label);
	font-size: 12px;
	text-transform: uppercase;
	margin-bottom: 12px;
}
.home-solutions .home-solution__title {
	color: var(--header);
	font-size: 20px;
	font-weight: 700;
	hyphens: auto;
	word-break: break-word;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.home-solutions .home-solution__icon {
	margin-top: auto;
}
@media (min-width: 768px) {
	.home-solutions__title {
		margin-bottom: var(--space-lg);
	}
}
@media (min-width: 1024px) {
	.home-solutions__title {
		margin-bottom: 30px;
	}
	.home-solutions .home-solution__title {
		font-size: 24px;
	}
}
@media (min-width: 1280px) {
	.home-solutions__header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-bottom: var(--space-xl);
	}
	.home-solutions__title {
		margin-bottom: 0;
	}
}

.home-tech__wrapper {
	margin-bottom: -40px;
}
.home-tech-item {
	min-height: 422px;
	text-decoration: none;
	padding: var(--space-lg) calc(2 * var(--space-sm));
	display: flex;
	flex-direction: column;
	position: relative;
	margin-bottom: 40px;
}
.home-tech-item__title {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: calc(2 * var(--space-sm));
}
.home-tech-item__link {
	margin-top: auto;
	font-size: 15px;
	font-weight: 500;
}
.home-tech-item__link svg {
	margin-left: 15px;
	display: inline-block;
	transform: translateY(1px);
}
.home-tech-item__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: var(--space-md);
}
.home-tech-item:hover .envelope,
.home-tech-item:hover .box {
	animation-name: docsMove;
	animation-duration: 2000ms;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}
.home-tech-item:hover .envelope-1 {
	animation-delay: 107ms;
}
.home-tech-item:hover .envelope-2 {
	animation-delay: 213ms;
}
.home-tech-item:hover .envelope-2 {
	animation-delay: 379ms;
}
.home-tech-item:hover .box-1 {
	animation-delay: 301ms;
}
.home-tech-item:hover .line {
	animation-name: linesMove;
	animation-duration: 1400ms;
	animation-iteration-count: infinite;
}
.home-tech-item:hover .line-2 {
	animation-delay: 310ms;
}
.home-tech-item:hover .line-3 {
	animation-delay: 178ms;
}
.home-tech-item:hover .tablet {
	animation-name: tablet1Move;
	animation-duration: 2500ms;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}
.home-tech-item:hover .tablet-1 {
	animation-name: tablet2Move;
}
@media (min-width: 768px) {
	.home-tech__wrapper {
		display: flex;
		margin-left: calc(-1 * var(--gap));
		margin-right: calc(-1 * var(--gap));
	}
	.home-tech-item {
		margin-left: var(--gap);
		margin-right: var(--gap);
		flex-basis: 50%;
		flex-grow: 1;
	}
}
@media (min-width: 1024px) {
	.home-tech-item {
		padding: var(--space-lg);
	}
	.home-tech-item__title {
		font-size: 28px;
	}
	.home-tech-item__icon {
		margin-bottom: 0;
	}
}
@media (min-width: 1280px) {
	.home-tech-item {
		min-height: 290px;
	}
	.home-tech-item__icon {
		position: absolute;
		right: 40px;
		top: 0;
		bottom: 0;
	}
	.home-tech-item__title {
		max-width: calc(100% - 310px);
	}
}

@keyframes docsMove {
	from {
		transform: translateY(0);
	}
	25% {
		transform: translateY(4px);
	}
	75% {
		transform: translateY(-4px);
	}
	to {
		transform: translateY(0);
	}
}
@keyframes tablet1Move {
	from {
		transform: translateY(0);
	}
	25% {
		transform: translateY(-9px);
	}
	75% {
		transform: translateY(4px);
	}
	to {
		transform: translateY(0);
	}
}
@keyframes tablet2Move {
	from {
		transform: translateY(0);
	}
	25% {
		transform: translateY(-3px);
	}
	75% {
		transform: translateY(3px);
	}
	to {
		transform: translateY(0);
	}
}
@keyframes linesMove {
	from {
		transform: translateX(16px);
	}
	to {
		transform: translateX(0px);
	}
}
.home-faq__title {
	margin-bottom: 30px;
}
.home-faq .home-faq-item {
	border: 0;
	border-top: 1px solid var(--border);
	padding-top: 30px;
	padding-bottom: 30px;
	transition-property: padding-top, padding-bottom;
	transition-duration: 400ms;
	transition-timing-function: ease-in-out;
	margin: 0;
}
.home-faq .home-faq-item:last-child {
	border-bottom: 1px solid var(--border);
}
.home-faq .home-faq-item__header {
	display: flex;
}
.home-faq .home-faq-item__title {
	font-size: 17px;
	font-weight: 500;
	flex-grow: 1;
	margin-bottom: 0;
}
.home-faq .home-faq-item__content {
	padding-top: 16px;
	padding-right: 35px;
	line-height: 1.4;
}
.home-faq .home-faq-item__state {
	width: 18px;
	height: 18px;
	margin-left: var(--space-md);
	position: relative;
	color: var(--primary);
	align-self: center;
	transition: color 400ms ease-in-out, align-self 400ms ease-in-out;
	flex-shrink: 0;
}
.home-faq .home-faq-item__state:before, .home-faq .home-faq-item__state:after {
	content: "";
	position: absolute;
	background-color: currentColor;
	border-radius: 5px;
}
.home-faq .home-faq-item__state:before {
	left: 0;
	right: 0;
	top: 50%;
	margin-top: -1px;
	height: 2px;
}
.home-faq .home-faq-item__state:after {
	top: 0;
	bottom: 0;
	left: 50%;
	margin-left: -1px;
	width: 2px;
	transition: opacity 250ms ease-in-out;
}
.home-faq .home-faq-item.active {
	padding-top: 25px;
	padding-bottom: 25px;
}
.home-faq .home-faq-item.active .home-faq-item__state {
	align-self: flex-end;
	color: var(--accent);
}
.home-faq .home-faq-item.active .home-faq-item__state:after {
	opacity: 0;
}
@media (min-width: 768px) {
	.home-faq .home-faq-item__title {
		font-size: 20px;
	}
}
@media (min-width: 1024px) {
	.home-faq__title {
		margin-bottom: 40px;
	}
	.home-faq .home-faq-item__title {
		font-size: 24px;
	}
}
@media (min-width: 1280px) {
	.home-faq .container {
		max-width: 768px;
	}
}
@media (min-width: 1440px) {
	.home-faq .container {
		max-width: 1156px;
	}
}

.home-cases .scroll-slider-slide {
	min-width: 340px;
}
.home-cases__title {
	margin-bottom: 30px;
}
.home-cases .home-case {
	padding: 45px 30px;
	text-decoration: none;
	display: block;
	height: 100%;
	pointer-events: all;
}
.home-cases .home-case__logo {
	margin-bottom: 24px;
	width: 100%;
	height: 65px;
	position: relative;
}
.home-cases .home-case__logo img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	max-width: 100%;
	max-height: 100%;
}
.home-cases .home-case__logo .image-placeholder {
	background-color: var(--block-background);
	background-image: url("./images/placeholders/image-icon.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 32px;
	border: 1px solid var(--border);
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}
.home-cases .home-case__title {
	margin-bottom: 12px;
	font-size: 20px;
	font-weight: 500;
	color: var(--header);
}
.home-cases .home-case__text {
	color: var(--text);
	font-size: 13px;
	line-height: 1.4;
}
@media (min-width: 768px) {
	.home-cases__title {
		margin-bottom: 40px;
	}
}
@media (min-width: 1024px) {
	.home-cases .home-case {
		padding: 45px 40px;
	}
	.home-cases .home-case__title {
		font-size: 24px;
	}
	.home-cases .home-case__text {
		font-size: 15px;
	}
	.home-cases__title {
		margin-bottom: 50px;
	}
}

.home-news .scroll-slider-slide {
	min-width: 340px;
}
.home-news__header {
	margin-bottom: var(--space-md);
}
.home-news__title {
	margin-bottom: var(--space-sm);
}
.home-news-article {
	display: block;
	text-decoration: none;
	cursor: pointer;
}
.home-news-article__img {
	width: 100%;
	padding-bottom: 52.5%;
	margin-bottom: var(--space-md);
	overflow: hidden;
	position: relative;
}
.home-news-article__img .image-placeholder {
	background-color: var(--block-background);
	background-image: url("./images/placeholders/image-icon.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 64px;
	border: 1px solid var(--border);
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}
.home-news-article__img img {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	object-fit: cover;
	object-position: center;
}
.home-news-article__date {
	color: var(--label);
	font-size: 11px;
	font-weight: 400;
	text-transform: uppercase;
	margin-bottom: var(--space-sm);
}
.home-news-article__title {
	margin-bottom: var(--space-xs);
	font-size: 15px;
	font-weight: 500;
	color: var(--header);
}
.home-news-article__text {
	color: black;
	font-size: 13px;
	font-weight: normal;
}
.home-news-article:hover .home-news-article__title {
	text-decoration: underline;
}
@media (min-width: 768px) {
	.home-news .scroll-slider-slide {
		min-width: 0;
	}
	.home-news__title {
		margin-bottom: var(--space-lg);
	}
}
@media (min-width: 1024px) {
	.home-news__title {
		margin-bottom: 30px;
	}
	.home-news-article__img {
		margin-bottom: var(--space-unit);
	}
	.home-news-article__title {
		font-size: 18px;
	}
	.home-news-article__text {
		font-size: 15px;
	}
	.home-news-article__date {
		font-size: 12px;
	}
}
@media (min-width: 1280px) {
	.home-news__header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-bottom: var(--space-xl);
	}
	.home-news__title {
		margin-bottom: 0;
	}
}

.home-contact-form__title {
	margin-bottom: var(--space-sm);
	text-align: center;
	font-size: 25px;
}
.home-contact-form__subtitle {
	font-size: 15px;
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 33px;
	text-align: center;
}
.home-contact-form__wrapper {
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: center;
}
.home-contact-form__submit {
	margin-top: 25px;
}
.home-contact-form__image {
	display: none;
}
.home-contact-form__image .phone {
	animation-name: phoneMove;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-duration: 2000ms;
}
.home-contact-form__image .envelope {
	animation-name: envelopeMove;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-duration: 4000ms;
}
.home-contact-form__image .envelope .envelope-inner {
	animation-name: envelopeScale;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-duration: 4000ms;
	transform-origin: 80% 20%;
}
.home-contact-form__image .computer {
	animation-name: computerMove;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-duration: 2000ms;
}
.home-contact-form__image .ellipses {
	animation-name: ellipsesMove;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-duration: 2000ms;
	transform-origin: 50% 80%;
}
.home-contact-form__fields {
	max-width: 462px;
}
.home-contact-form__confirm .checkbox-label {
	font-size: 11px;
	padding-top: 4px;
	font-weight: 300;
	line-height: 15px;
}
.home-contact-form__confirm .checkbox-label a {
	font-weight: 400;
}
@media (min-width: 768px) {
	.home-contact-form__title {
		font-size: 32px;
	}
	.home-contact-form__subtitle {
		max-width: none;
		margin-bottom: 44px;
	}
	.home-contact-form__submit {
		margin-top: 23px;
	}
}
@media (min-width: 1024px) {
	.home-contact-form__title {
		font-size: 40px;
	}
	.home-contact-form__subtitle {
		font-size: 17px;
	}
	.home-contact-form__fields, .home-contact-form__image {
		width: calc(370px + 2 * var(--gap));
		padding-left: var(--gap);
		padding-right: var(--gap);
	}
	.home-contact-form__confirm .checkbox-label {
		font-size: 12px;
	}
	.home-contact-form__image {
		display: block;
		position: relative;
	}
	.home-contact-form__image img, .home-contact-form__image svg {
		position: absolute;
		right: 85px;
		top: 40px;
	}
	.home-contact-form__submit {
		margin-top: 23px;
	}
	.home-contact-form__submit .btn {
		height: 50px;
		font-size: 17px;
	}
}
@media (min-width: 1440px) {
	.home-contact-form__fields, .home-contact-form__image {
		width: 407px;
		padding: 0;
	}
	.home-contact-form__fields {
		margin-left: 45px;
		margin-top: 15px;
		margin-right: 48px;
	}
	.home-contact-form__image {
		margin-right: 45px;
	}
	.home-contact-form__image img, .home-contact-form__image svg {
		right: 0;
	}
}

@keyframes computerMove {
	from {
		transform: translateY(0);
	}
	50% {
		transform: translateY(15px);
	}
	to {
		transform: translateY(0);
	}
}
@keyframes phoneMove {
	from {
		transform: translateY(0);
	}
	50% {
		transform: translateY(8px);
	}
	to {
		transform: translateY(0);
	}
}
@keyframes ellipsesMove {
	from {
		transform: scale(1);
	}
	50% {
		transform: scale(0.8);
	}
	to {
		transform: scale(1);
	}
}
@keyframes envelopeMove {
	from {
		transform: translate(-100px, 50px);
	}
	50% {
		transform: translate(0, 0);
	}
	to {
		transform: translate(100px, -40px);
	}
}
@keyframes envelopeScale {
	from {
		transform: scale(0);
		opacity: 1;
	}
	50% {
		transform: scale(1);
		opacity: 1;
	}
	75% {
		opacity: 1;
	}
	95% {
		transform: scale(0);
		opacity: 0;
	}
	to {
		transform: scale(0);
	}
}
.home-page__stats {
	margin-top: 30px;
}
.home-page__info {
	margin-top: 40px;
}
.home-page__clients {
	margin-top: 40px;
	padding-bottom: 60px;
}
.home-page__solutions {
	padding-top: 80px;
}
.home-page__tech {
	margin-top: 80px;
}
.home-page__faq {
	padding-top: 90px;
	padding-bottom: 80px;
}
.home-page__cases {
	padding-top: 60px;
	padding-bottom: 67px;
}
.home-page__news {
	margin-top: 80px;
	margin-bottom: 80px;
}
.home-page__form {
	padding-top: 60px;
	padding-bottom: 80px;
}

.catalog-compl-page .home-contact-form{
	margin-bottom: 60px;
}

@media (min-width: 480px) {
	.home-page__clients {
		margin-top: 50px;
		padding-bottom: 70px;
	}
	.home-page__faq {
		padding-top: 80px;
	}
	.home-page__form {
		padding-top: 55px;
		padding-bottom: 60px;
	}
}
@media (min-width: 768px) {
	.home-page__stats {
		margin-top: 40px;
	}
	.home-page__info {
		margin-top: 50px;
	}
	.home-page__clients {
		margin-top: 60px;
		padding-bottom: 80px;
	}
	.home-page__cases {
		padding-top: 55px;
	}
	.home-page__form {
		padding-top: 80px;
		padding-bottom: 100px;
	}
}
@media (min-width: 1024px) {
	.home-page__stats {
		margin-top: 55px;
	}
	.home-page__info {
		margin-top: 55px;
	}
	.home-page__clients {
		margin-top: 80px;
		padding-bottom: 85px;
	}
	.home-page__solutions {
		padding-top: 100px;
	}
	.home-page__tech {
		margin-top: 70px;
	}
	.home-page__faq {
		padding-top: 100px;
		padding-bottom: 100px;
	}
	.home-page__cases {
		padding-top: 100px;
		padding-bottom: 100px;
	}
	.home-page__news {
		margin-top: 100px;
		margin-bottom: 100px;
	}
	.home-page__form {
		padding-top: 100px;
		padding-bottom: 100px;
	}
}
@media (min-width: 1280px) {
	.home-page__stats {
		margin-top: 40px;
	}
	.home-page__tech {
		margin-top: 105px;
	}
	.home-page__faq {
		padding-top: 110px;
		padding-bottom: 143px;
	}
	.home-page__form {
		padding-bottom: 125px;
	}
}
@media (min-width: 1440px) {
	.home-page__solutions {
		padding-top: 120px;
	}
}

/********** /HOME PAGE **********/
.about-page__jumbotron .home-banner {
	height: 450px;
	padding-top: var(--space-md);
}
.about-page__jumbotron .home-banner__content {
	align-items: flex-start;
	justify-content: center;
	text-align: left;
}
.about-page__jumbotron .home-banner__text {
	margin-bottom: var(--space-md);
}
.about-page__jumbotron .home-banner__description {
	max-width: 630px;
}
.about-page__jumbotron .home-banner__img {
	margin-bottom: var(--space-lg);
}
.about-page__jumbotron .btn-icon {
	width: 20px;
	height: 20px;
}
@media (max-width: 479px) {
	.about-page__jumbotron .home-banner {
		height: 370px;
		padding-top: 0;
		padding-bottom: 26px;
	}
	.about-page__jumbotron .home-banner .home-banner__content {
		width: 100%;
	}
	.about-page__jumbotron .home-banner__text {
		font-size: 25px;
		margin-bottom: 14px;
	}
	.about-page__jumbotron .home-banner__description {
		font-size: 13px;
		margin-bottom: 20px;
		line-height: 140%;
		letter-spacing: -0.1px;
	}
	.about-page__jumbotron .home-banner .btn-icon {
		width: 17px;
		height: 17px;
	}
}
@media (max-width: 1023px) {
	.about-page__jumbotron .home-banner__img {
		width: 43%;
		margin-bottom: 15px;
	}
	.about-page__jumbotron .home-banner__img img {
		max-height: calc(90% - 2 * var(--space-md));
	}
	.about-page__jumbotron .home-banner__description {
		font-size: 13px;
	}
	.about-page__jumbotron .home-banner__content {
		width: 57%;
	}
	.about-page__jumbotron .home-banner {
		height: 370px;
		padding-top: 0;
		padding-bottom: 26px;
	}
}

.company-mission__block {
	max-width: 1076px;
	margin-left: auto;
	margin-right: auto;
	background-color: var(--blue);
	padding: 40px 40px 55px 40px;
}
.company-mission__title {
	font-weight: 500;
	font-size: 28px;
	line-height: 120%;
	color: var(--white);
	margin-bottom: 13px;
}
.company-mission__description {
	font-weight: normal;
	font-size: 15px;
	line-height: 140%;
	color: var(--white);
}
.company-mission-wrap {
	margin-top: 38px;
	display: flex;
	align-items: flex-start;
}
.company-mission__img {
	min-width: 240px;
	width: 240px;
	margin-right: 45px;
}
.company-mission__img img {
	max-width: 100%;
}
.company-mission-content {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}
.company-mission-content__title {
	font-weight: 500;
	font-size: 28px;
	line-height: 120%;
	color: var(--white);
	margin-bottom: 14px;
}
.company-mission-content__description, .company-mission__block p {
	font-weight: normal;
	font-size: 15px;
	line-height: 140%;
	color: var(--white);
	margin-bottom: 10px;
}
.company-mission-content__list, .company-mission__block ul{
	list-style: none;
	padding-left: 0;
}
.company-mission-content__list-item, .company-mission__block li{
	padding-left: 21px;
	position: relative;
	font-weight: normal;
	font-size: 15px;
	line-height: 140%;
	color: var(--white);
	margin-bottom: 11px;
}
.company-mission-content__list-item::after, .company-mission__block li:after{
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	display: block;
	background-color: var(--red);
	border-radius: 100%;
}
.company-mission-content__list-item:last-child, .company-mission__block li:last-child {
	margin-bottom: 0;
}
@media (max-width: 1023px) {
	.company-mission__title {
		font-size: 20px;
	}
	.company-mission__description {
		font-size: 13px;
	}
	.company-mission-wrap {
		margin-top: 50px;
	}
	.company-mission-content__title {
		font-size: 20px;
		margin-bottom: 10px;
	}
	.company-mission-content__description, .company-mission__block p {
		font-size: 13px;
	}
	.company-mission-content__list-item, .company-mission__block li{
		font-size: 13px;
	}
}
@media (max-width: 767px) {
	.company-mission__img {
		display: none;
	}
}
@media (max-width: 479px) {
	.company-mission-wrap {
		margin-top: 25px;
	}
}

.about-history {
	background-color: var(--light-grey);
	padding-top: 80px;
	padding-bottom: 80px;
	overflow: hidden;
}
.about-history__wrap {
	max-width: 1076px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.about-history__title {
	font-weight: 500;
	padding-left: 20px;
	font-size: 38px;
	line-height: 100%;
	color: var(--dark-blue);
	margin-bottom: 40px;
}
.about-history .tns-ovh {
	overflow: visible;
}
.about-history .tns-controls {
	margin-top: 30px;
	padding-left: 20px;
	position: relative;
	z-index: 1;
}

.tns-controls{
	position: relative;
	z-index: 1 !important;
}

.about-team .tns-controls {
	margin-top: 0px;
	padding-left: 20px;
	position: absolute;
	z-index: 1;
	top: 45%;
	width: 100%;
}

.about-history .tns-controls button:first-child {
	margin-right: 10px;
}
@media (max-width: 1023px) {
	.about-history__title {
		font-size: 32px;
		margin-bottom: 35px;
		padding-left: 30px;
	}
}
@media (max-width: 767px) {
	.about-history__title {
		font-size: 25px;
		margin-bottom: 32px;
	}
}
@media (max-width: 479px) {
	.about-history {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.about-history__title {
		padding-left: 20px;
	}
}

.history__item {
	width: 100%;
	/*padding-left: 20px;
	padding-right: 20px;*/
	opacity: 0.3;
}
.history__item.tns-slide-active {
	transition: 0.3s ease-in-out;
	opacity: 1;
}
.history__item-wrap {
	background-color: #fff;
	padding: 34px 40px 45px 40px;
}
.history__item-title {
	font-weight: 500;
	font-size: 46px;
	line-height: 120%;
	color: var(--dark-blue);
	margin-bottom: 15px;
}
.history__item-text p {
	font-weight: normal;
	font-size: 14px;
	line-height: 140%;
	color: var(--black);
	margin-bottom: 12px;
}
.history__item-text ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 10px;
}
.history__item-text ul li {
	padding-left: 21px;
	position: relative;
	font-weight: normal;
	font-size: 15px;
	line-height: 140%;
	color: var(--black);
	margin-bottom: 11px;
}
.history__item-text ul li::after {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	display: block;
	background-color: var(--red);
	border-radius: 100%;
}
.history__item-text ul li:last-child {
	margin-bottom: 0;
}
@media (max-width: 1023px) {
	.history__item {
		padding-left: 30px;
		padding-right: 30px;
	}
	.history__item-title {
		font-size: 32px;
	}
	.history__item-text__title {
		font-size: 15px;
	}
	.history__item-text__position {
		font-size: 13px;
	}
	.history__item-text p {
		font-size: 13px;
	}
	.history__item-text ul li {
		font-size: 13px;
	}
	.history__item-text ul li::after {
		top: 6px;
	}
}
@media (max-width: 767px) {
	.history__item-title {
		font-size: 25px;
	}
	.history__item-wrap {
		flex-direction: column;
		align-items: center;
		padding: 40px 30px;
	}
	.history__item-text__title {
		text-align: center;
	}
	.history__item-text__position {
		text-align: center;
	}
	.history__item-text p {
		font-size: 13px;
	}
	.history__item-text ul li {
		font-size: 13px;
	}
}
@media (max-width: 479px) {
	.history__item {
		padding-left: 20px;
		padding-right: 20px;
	}
	.history__item-text ul li::after {
		top: 5px;
	}
}

.about-team__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: var(--space-xl);
}
.about-team__users {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 40px;
}

.about-team .tns-outer {
	position: relative;
}
.about-team .tns-outer .tns-controls button:first-child {
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translate(0, -50%);
}
.about-team .tns-outer .tns-controls button:last-child {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translate(0, -50%);
}


.about-team-user {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.about-team-user__image {
	width: 240px;
	height: 240px;
	overflow: hidden;
	position: relative;
	border-radius: 100%;
	margin-bottom: 26px;
}
.about-team-user__image img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	transform: translate(-50%, -50%);
}
.about-team-user__name {
	font-weight: 500;
	font-size: 18px;
	line-height: 120%;
	text-align: center;
	color: var(--dark-blue);
	margin-bottom: 10px;
}
.about-team-user__position {
	font-weight: normal;
	font-size: 14px;
	line-height: 140%;
	text-align: center;
	color: var(--black);
}
.about-team-slider-thumbnails {
	list-style: none;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.about-team-slider-thumbnails-wrap {
	margin-top: 20px;
	overflow-x: auto;
	width: 100%;
}
.about-team-slider-thumbnails li {
	margin-right: 20px;
	margin-bottom: 20px;
	width: 120px;
	min-width: 120px;
	height: 80px;
	cursor: pointer;
}
.about-team-slider-thumbnails li img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.about-team-slider-thumbnails li:last-child {
	margin-right: 0;
}
.about-team .tns-controls {
	margin-top: 30px;
}
.about-team .tns-controls button {
	margin-right: 10px;
}

.about-team .tab-body__item[data-type="lead"] .tns-controls{
	position: relative;
	top: 0;
	display: flex;
}

.about-team .tab-body__item[data-type="lead"] .tns-outer .tns-controls button{
	position: relative;
	left: 0;
	right: 0;
	transform: none;
}

@media (max-width: 1023px) {
	.about-team__title {
		font-size: 32px;
		margin-bottom: 32px;
	}
	.about-team__header {
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 36px;
	}
	.about-team__users {
		grid-template-columns: repeat(3, 1fr);
		grid-gap: calc(var(--gap) * 2);
	}
	.about-team-user__name {
		font-size: 15px;
	}
	.about-team-user__position {
		font-size: 13px;
	}
	.about-team-user__image {
		width: 180px;
		height: 180px;
	}
}
@media (max-width: 767px) {
	.about-team__title {
		font-size: 25px;
	}
	.about-team__users {
		display: block;
		grid-template-columns: unset;
		grid-gap: unset;
	}
	.about-team-user {
		max-width: 200px;
	}
	.about-team-user__image {
		margin-left: auto;
		margin-right: auto;
		width: 120px;
		height: 120px;
	}
}
@media (max-width: 479px) {
	.about-team .about-team-slider-thumbnails li {
		margin-right: 13px;
		width: 100px;
		min-width: 100px;
		height: 60px;
	}
	.about-team__title {
		margin-bottom: 14px;
	}
	.about-team__header {
		margin-bottom: 26px;
	}
	.about-team-user__image {
		margin-left: auto;
		margin-right: auto;
		width: 120px;
		height: 120px;
	}
}

.about-work {
	padding-top: 100px;
	padding-bottom: 100px;
	background-color: var(--light-grey);
}
.about-work__title {
	font-weight: 500;
	font-size: 28px;
	line-height: 130%;
	color: var(--dark-blue);
	margin-bottom: 12px;
}
.about-work__block {
	width: 100%;
	max-width: 1076px;
	margin-left: auto;
	margin-right: auto;
}
.about-work__content {
	display: flex;
}
.about-work__text {
	padding-right: 40px;
}
.about-work__text p {
	font-weight: normal;
	font-size: 15px;
	line-height: 140%;
	color: var(--black);
	margin-bottom: 16px;
}
.about-work__text-item:last-child {
	margin-bottom: 0;
}
.about-work__text ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 10px;
}
.about-work__text ul li {
	padding-left: 21px;
	position: relative;
	font-weight: normal;
	font-size: 15px;
	line-height: 140%;
	color: var(--black);
	margin-bottom: 11px;
}
.about-work__text ul li::after {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	display: block;
	background-color: var(--red);
	border-radius: 100%;
}
.about-work__text ul li:last-child {
	margin-bottom: 0;
}
.about-work__text ul li .title {
	display: block;
	font-weight: 500;
	font-size: 18px;
	line-height: 140%;
	color: var(--dark-blue);
}
.about-work__text .btn {
	margin-top: 30px;
}
.about-work__image {
	margin-top: 10px;
	min-width: 240px;
	width: 240px;
}
.about-work__image img {
	width: 100%;
}
@media (max-width: 1023px) {
	.about-work {
		padding-top: 60px;
		padding-bottom: 80px;
	}
	.about-work__title {
		font-size: 20px;
	}
	.about-work__image {
		margin-top: 40px;
		min-width: 212px;
		width: 212px;
	}
	.about-work__text {
		padding-right: 32px;
	}
	.about-work__text p {
		font-size: 13px;
	}
	.about-work__text ul li {
		font-size: 13px;
	}
	.about-work__text ul li .title {
		font-size: 15px;
	}
}
@media (max-width: 767px) {
	.about-work__image {
		display: none;
	}
}
@media (max-width: 479px) {
	.about-work {
		padding-top: 60px;
	}
}

.about-page .superior {
	margin-bottom: 100px;
}
.about-page .company-mission {
	margin-bottom: 100px;
}
.about-page .about-history {
	margin-bottom: 100px;
}
.about-page .about-team {
	margin-bottom: 100px;
}
@media (max-width: 1023px) {
	.about-page .superior {
		margin-bottom: 80px;
	}
	.about-page .company-mission {
		margin-bottom: 80px;
	}
	.about-page .about-history {
		margin-bottom: 80px;
	}
	.about-page .about-team {
		margin-bottom: 80px;
	}
}
.tns-controls button {
	border: none;
	outline: none;
	font: inherit;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
	line-height: 1;
	cursor: pointer;
	font-size: 15px;
	font-weight: 500;
	border-radius: 40px;
	transition: all 250ms ease-in-out;
	width: 42px;
	height: 42px;
	padding-left: 0;
	padding-right: 0;
	background-color: var(--white);
	color: var(--primary);
	border: 1px solid var(--border);
}
.tns-controls button:hover {
	text-decoration: none;
}
.tns-controls button:hover {
	box-shadow: 0 0 15px var(--primary-shadow);
}
.tns-controls button:active {
	color: var(--primary-dark);
}
.tns-controls button[disabled], .tns-controls button.disabled {
	opacity: 0.5;
	box-shadow: none;
}
.tns-controls button[disabled] {
	cursor: not-allowed;
}

.vacancies-page__jumbotron .vacancies-banner {
	height: 450px;
	padding-top: var(--space-md);
}
.vacancies-page__jumbotron .vacancies-banner .vacancies-banner__img img {
	right: unset;
	left: 210px;
}
.vacancies-page__jumbotron .vacancies-banner__img {
	left: -80px;
	display: none;
}
.vacancies-page__jumbotron .vacancies-banner__content {
	padding-top: var(--space-xs);
	padding-bottom: var(--space-xs);
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	text-align: left;
}
.vacancies-page__jumbotron .vacancies-banner__text {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: var(--space-md);
}
.vacancies-page__jumbotron .vacancies-banner__description {
	font-size: 15px;
	font-weight: 400;
	margin-bottom: var(--space-lg);
}
.vacancies-page__jumbotron .vacancies-banner__description p {
	margin-bottom: 30px;
}
.vacancies-page__jumbotron .vacancies-banner__description p:last-of-type {
	margin-bottom: 0;
}
.vacancies-page__jumbotron .vacancies-banner__phone-link {
	font-weight: bold;
	font-size: 24px;
	line-height: 100%;
	display: flex;
	align-items: center;
	text-decoration: none;
	color: var(--white);
	transition: 0.3s ease-in-out;
}
.vacancies-page__jumbotron .vacancies-banner__phone-link:hover {
	color: var(--red);
}
.vacancies-page__jumbotron .vacancies-banner__email-link {
	margin-top: 12px;
	font-weight: normal;
	font-size: 15px;
	line-height: 100%;
	display: flex;
	align-items: center;
	text-decoration-line: underline;
	color: var(--white);
	transition: 0.3s ease-in-out;
}
.vacancies-page__jumbotron .vacancies-banner__email-link:hover {
	color: var(--red);
}
@media (min-width: 768px) {
	.vacancies-page__jumbotron .vacancies-banner {
		display: flex;
	}
	.vacancies-page__jumbotron .vacancies-banner__content {
		width: 50%;
		flex-shrink: 0;
		flex-grow: 0;
		align-items: flex-start;
		text-align: left;
		padding-bottom: calc(2 * var(--space-xs));
	}
	.vacancies-page__jumbotron .vacancies-banner__img {
		width: 50%;
		flex-shrink: 0;
		flex-grow: 0;
		display: block;
		position: relative;
	}
	.vacancies-page__jumbotron .vacancies-banner__img img {
		display: block;
		position: absolute;
		right: 0;
		bottom: var(--space-md);
		max-height: calc(100% - 2 * var(--space-md));
		width: auto;
	}
	.vacancies-page__jumbotron .vacancies-banner__text {
		font-size: 32px;
		margin-bottom: 30px;
	}
}
@media (min-width: 1024px) {
	.vacancies-page__jumbotron .vacancies-banner .btn {
		height: 54px;
		font-size: 17px;
	}
	.vacancies-page__jumbotron .vacancies-banner__text {
		font-size: 42px;
	}
	.vacancies-page__jumbotron .vacancies-banner__content {
		padding-bottom: 90px;
		padding-top: 30px;
	}
}
@media (min-width: 1440px) {
	.vacancies-page__jumbotron .vacancies-banner__img img {
		left: 0;
		margin: auto;
	}
}
.vacancies-page__jumbotron .vacancies-banner__text {
	margin-bottom: var(--space-md);
}
.vacancies-page__jumbotron .vacancies-banner__description {
	max-width: 630px;
}
.vacancies-page__jumbotron .vacancies-banner__img {
	margin-bottom: var(--space-lg);
}
@media (max-width: 1023px) {
	.vacancies-page__jumbotron .vacancies-banner {
		height: 370px;
		padding-top: 0;
		padding-bottom: 26px;
	}
	.vacancies-page__jumbotron .vacancies-banner__phone-link {
		font-size: 20px;
	}
	.vacancies-page__jumbotron .vacancies-banner__email-link {
		font-size: 13px;
	}
	.vacancies-page__jumbotron .vacancies-banner .vacancies-banner__content {
		padding-top: 20px;
	}
	.vacancies-page__jumbotron .vacancies-banner .vacancies-banner__text {
		font-size: 32px;
		margin-bottom: 20px;
	}
	.vacancies-page__jumbotron .vacancies-banner .vacancies-banner__img {
		width: 43%;
		margin-bottom: 0px;
	}
	.vacancies-page__jumbotron .vacancies-banner .vacancies-banner__img img {
		max-height: calc(90% - 2 * var(--space-md));
	}
	.vacancies-page__jumbotron .vacancies-banner .vacancies-banner__description {
		font-size: 13px;
		margin-bottom: 0;
	}
	.vacancies-page__jumbotron .vacancies-banner .vacancies-banner__description p {
		margin-bottom: 20px;
	}
	.vacancies-page__jumbotron .vacancies-banner .vacancies-banner__content {
		width: 57%;
	}
	.vacancies-page__jumbotron .vacancies-banner .vacancies-banner__img img {
		right: unset;
		top: 55%;
		transform: translate(-50%, -50%);
		left: 50%;
	}
	.vacancies-page__jumbotron .vacancies-banner__img {
		left: unset;
	}
}
@media (max-width: 479px) {
	.vacancies-page__jumbotron .vacancies-banner .vacancies-vacant__search {
		margin-top: 26px;
	}
	.vacancies-page__jumbotron .vacancies-banner .vacancies-banner__text {
		font-size: 25px;
	}
	.vacancies-page__jumbotron .vacancies-banner .vacancies-banner__content {
		padding-top: 31px;
		width: 100%;
		justify-content: flex-start;
	}
}

.vacancies-vacant .search-field__icon {
	padding-left: 14px;
}
.vacancies-vacant .search-field__icon svg {
	color: #000066;
}
.vacancies-vacant__title {
	font-weight: 500;
	font-size: 46px;
	line-height: 100%;
	color: var(--dark-blue);
	margin-bottom: 45px;
}
.vacancies-vacant__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}
.vacancies-vacant__search {
	max-width: 630px;
	flex-grow: 1;
}
.vacancies-vacant__filter {
	display: flex;
	list-style: none;
	font-size: 13px;
	font-weight: 500;
}
.vacancies-vacant__filter__item {
	display: flex;
	align-items: center;
}
.vacancies-vacant__filter__item:not(:last-child) {
	margin-right: var(--space-unit);
}
.vacancies-vacant__filter__button {
	border: none;
	outline: none;
	font: inherit;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
	line-height: 1;
	cursor: pointer;
	background: transparent;
	color: var(--primary);
	transition: color 250ms linear;
}
.vacancies-vacant__filter__button:hover {
	text-decoration: none;
}
.vacancies-vacant__filter__button:hover {
	color: var(--primary-dark);
}
.vacancies-vacant__filter__button.active {
	color: var(--accent);
	cursor: default;
}
.vacancies-vacant__filter__button.active:hover {
	color: var(--accent);
}
.vacancies-vacant__filter__button.active:before {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	margin-right: var(--space-xs);
	background: currentColor;
}
@media (min-width: 1024px) {
	.vacancies-vacant__filter {
		font-size: 17px;
	}
	.vacancies-vacant__filter__item:not(:last-child) {
		margin-right: calc(2 * var(--space-unit));
	}
}
.vacancies-vacant .js-item {
	padding-top: var(--gap);
	padding-bottom: var(--gap);
	display: flex;
}
.vacancies-vacant__item {
	flex-direction: column;
	padding: 40px 30px;
	width: 100%;
	text-decoration: none;
	border: 1px solid var(--grey);
	transition: box-shadow 400ms ease-in-out;
	display: flex;
}
.vacancies-vacant__item:hover {
	box-shadow: 0 5px 15px var(--shadow);
}
.vacancies-vacant__item__subtitle {
	font-weight: 500;
	font-size: 12px;
	line-height: 150%;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--light-blue);
	margin-bottom: 13px;
}
.vacancies-vacant__item__title {
	font-weight: bold;
	font-size: 24px;
	line-height: 120%;
	color: var(--dark-blue);
	margin-bottom: 35px;
}
.vacancies-vacant__controll {
	margin-top: 30px;
	display: flex;
	align-items: center;
}
.vacancies-vacant__controll__text {
	font-weight: normal;
	font-size: 15px;
	line-height: 140%;
	color: var(--black);
}
.vacancies-vacant__controll__btn {
	margin-bottom: 0;
	margin-left: 30px;
	display: none;
}
.vacancies-vacant__controll__btn.active {
	display: block;
}
.vacancies-vacant .search-field__reset {
	display: none;
}

.partner-page .vacancies-vacant__controll__btn{
	display: none !important;
}

.partner-page .vacancies-vacant__controll__btn.active {
	display: block !important;
}

.vacancies-vacant__controll__btn{
	display: none !important;
}

.vacancies-vacant__controll__btn.active {
	display: block !important;
}

.vacancies-vacant .search-field.filled .search-field__reset {
	display: block;
}
@media (max-width: 1023px) {
	.vacancies-vacant__title {
		font-size: 32px;
		margin-bottom: 34px;
	}
	.vacancies-vacant__controll {
		margin-top: 25px;
	}
	.vacancies-vacant__search {
		order: 1;
		max-width: 400px;
	}
	.vacancies-vacant .js-item {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.vacancies-vacant__item__subtitle {
		font-size: 11px;
	}
	.vacancies-vacant__item__title {
		font-size: 20px;
	}
}
@media (max-width: 767px) {
	.vacancies-vacant__title {
		font-size: 25px;
		margin-bottom: 16px;
	}
	.vacancies-vacant__top {
		flex-direction: column;
		align-items: flex-start;
	}
	.vacancies-vacant__search {
		margin-top: 20px;
		width: 100%;
		max-width: 100%;
	}
}
@media (max-width: 479px) {
	.vacancies-vacant .js-item {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.vacancies-vacant .vacancies-vacant__search {
		margin-top: 26px;
	}
	.vacancies-vacant__top {
		margin-bottom: 10px;
	}
	.vacancies-vacant .vacancies-vacant__controll {
		margin-top: 10px;
	}
	.vacancies-vacant .vacancies-vacant__item__title {
		margin-bottom: 45px;
	}
}

.vacancies-review {
	background-color: var(--light-grey);
	padding-top: 80px;
	padding-bottom: 80px;
	overflow: hidden;
}
.vacancies-review__title {
	font-weight: 500;
	padding-left: 20px;
	font-size: 38px;
	line-height: 100%;
	color: var(--dark-blue);
	margin-bottom: 40px;
}
.vacancies-review__wrap {
	max-width: 1076px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.vacancies-review .tns-ovh {
	overflow: visible;
}
.vacancies-review .tns-controls {
	margin-top: 30px;
	padding-left: 20px;
}
.vacancies-review .tns-controls button:first-child {
	margin-right: 10px;
}
@media (max-width: 1023px) {
	.vacancies-review__title {
		font-size: 32px;
		margin-bottom: 35px;
	}
}
@media (max-width: 767px) {
	.vacancies-review__title {
		font-size: 25px;
		margin-bottom: 32px;
	}
}
@media (max-width: 479px) {
	.vacancies-review {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}

.review-item {
	width: 100%;
	padding-left: 20px;
	padding-right: 20px;
	opacity: 0.3;
}
.review-item.tns-slide-active {
	transition: 0.3s ease-in-out;
	opacity: 1;
}
.review-item-wrap {
	background-color: var(--white);
	padding: 44px 40px 45px 40px;
	display: flex;
	align-items: flex-start;
}
.review-item__image {
	width: 240px;
	min-width: 240px;
	height: 240px;
	overflow: hidden;
	border-radius: 100%;
	margin-right: 55px;
}
.review-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.review-item__text {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}
.review-item__text__title {
	font-weight: bold;
	font-size: 18px;
	line-height: 120%;
	color: var(--dark-blue);
}
.review-item__text__position {
	font-weight: normal;
	font-size: 14px;
	line-height: 140%;
	color: var(--black);
}
.review-item__text__content p {
	margin-top: 16px;
	font-weight: normal;
	font-size: 14px;
	line-height: 140%;
	color: var(--black);
}
@media (max-width: 1023px) {
	.review-item__image {
		width: 180px;
		min-width: 180px;
		height: 180px;
		margin-right: 26px;
	}
	.review-item__text__title {
		font-size: 15px;
		margin-bottom: 3px;
	}
	.review-item__text__position {
		font-size: 13px;
	}
	.review-item__text__content p {
		font-size: 13px;
	}
}
@media (max-width: 767px) {
	.review-item-wrap {
		flex-direction: column;
		align-items: center;
		padding: 40px 30px;
	}
	.review-item__image {
		width: 120px;
		min-width: 120px;
		height: 120px;
		margin-right: 0px;
		margin-bottom: 22px;
	}
	.review-item__text__title {
		text-align: center;
	}
	.review-item__text__position {
		text-align: center;
	}
	.review-item__text__content p {
		font-size: 13px;
	}
}
.vacancies-work__title {
	margin-bottom: 40px;
}
.vacancies-work .scroll-slider-offset {
	min-width: calc((100vw - 1300px) / 2);
}
.vacancies-work .btn-icon {
	width: 17px;
	height: 17px;
}
.vacancies-work-slide-wrap {
	text-decoration: none;
	padding: 40px 30px;
	border: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	min-height: 240px;
	height: 100%;
	/*pointer-events: none;*/
}
.vacancies-work-slide__date {
	font-weight: 500;
	font-size: 12px;
	line-height: 150%;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--light-blue);
	margin-bottom: 13px;
}
.vacancies-work-slide__title {
	font-weight: bold;
	font-size: 18px;
	line-height: 120%;
	color: var(--dark-blue);
	/*flex-grow: 1;*/
	min-height: 0;
	height: 62px;
	overflow: hidden;
	flex-grow: 0;
	margin-bottom: 20px;
}
.vacancies-work-slide .btn {
	width: 195px;
	margin-top: auto;
}
@media (max-width: 1380px) {
	.vacancies-work .scroll-slider-offset {
		min-width: 40px;
	}
}
@media (max-width: 1024px) {
	.vacancies-work .scroll-slider-offset {
		min-width: 30px;
	}
}
@media (max-width: 768px) {
	.vacancies-work .scroll-slider-offset {
		min-width: 20px;
	}
}
@media (max-width: 1023px) {
	.vacancies-work__title {
		font-size: 32px;
		margin-bottom: 35px;
	}
	.vacancies-work-slide__date {
		font-size: 11px;
	}
	.vacancies-work-slide__title {
		font-size: 15px;
	}
}
@media (max-width: 767px) {
	.vacancies-work__title {
		font-size: 25px;
		margin-bottom: 32px;
	}
}
@media (max-width: 479px) {
	.vacancies-work .vacancies-work-slide__date {
		font-size: 11px;
	}
	.vacancies-work .vacancies-work-slide__title {
		font-size: 15px;
		margin-bottom: 10px;
	}
}

.vacancies-page .vacancies-vacant {
	margin-bottom: 100px;
}
.vacancies-page .vacancies-review {
	margin-bottom: 100px;
}
.vacancies-page .vacancies-work {
	margin-bottom: 100px;
}
@media (max-width: 1023px) {
	.vacancies-page .vacancies-vacant {
		margin-bottom: 80px;
	}
	.vacancies-page .vacancies-review {
		margin-bottom: 80px;
	}
	.vacancies-page .vacancies-work {
		margin-bottom: 80px;
	}
}
.vacancy-main {
	display: flex;
	flex-direction: column;
}
.vacancy-main__title {
	font-weight: 500;
	font-size: 38px;
	line-height: 110%;
	color: var(--dark-blue);
	margin-bottom: 23px;
}
.vacancy-main__description {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}
.vacancy-main__description-item {
	display: flex;
	flex-direction: column;
	margin-right: 40px;
}
.vacancy-main__description-item:last-child {
	margin-right: 0;
}
.vacancy-main__description-item .title {
	font-weight: 500;
	font-size: 12px;
	line-height: 150%;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--light-blue);
	margin-bottom: 4px;
}
.vacancy-main__description-item .value {
	font-weight: normal;
	font-size: 15px;
	line-height: 120%;
	color: var(--black);
}
.vacancy-main__btn-group {
	margin-top: 37px;
}
.vacancy-main__btn-group .btn {
	margin-right: 18px;
	height: 54px;
	width: 165px;
	font-size: 17px;
}
.vacancy-main__btn-group .btn:first-child {
	width: 205px;
}
.vacancy-main__block {
	margin-top: 50px;
	display: flex;
	flex-direction: column;
}
.vacancy-main__block__title {
	font-weight: 500;
	font-size: 28px;
	line-height: 110%;
	color: var(--dark-blue);
	margin-bottom: 25px;
}
.vacancy-main__block__list {
	list-style: none;
	padding-left: 0;
	margin-bottom: 10px;
}
.vacancy-main__block__list li {
	padding-left: 21px;
	position: relative;
	font-weight: normal;
	font-size: 15px;
	line-height: 140%;
	color: var(--black);
	margin-bottom: 11px;
}
.vacancy-main__block__list li::after {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	display: block;
	background-color: var(--red);
	border-radius: 100%;
}
.vacancy-main__block__list li:last-child {
	margin-bottom: 0;
}
.vacancy-main__contacts {
	margin-top: 60px;
	width: 100%;
	border: 1px solid var(--grey);
	display: flex;
	flex-direction: column;
	padding: 40px 30px 50px 30px;
}
.vacancy-main__contacts__title {
	font-weight: 500;
	font-size: 12px;
	line-height: 150%;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--light-blue);
	margin-bottom: 15px;
}
.vacancy-main__contacts__phone-link {
	font-weight: bold;
	font-size: 24px;
	line-height: 100%;
	color: var(--blue);
	margin-bottom: 10px;
	text-decoration: none;
	transition: 0.3s ease-in-out;
}
.vacancy-main__contacts__phone-link:hover {
	color: var(--red);
}
.vacancy-main__contacts__email-link {
	font-weight: normal;
	font-size: 15px;
	line-height: 100%;
	text-decoration-line: underline;
	color: var(--blue);
	transition: 0.3s ease-in-out;
}
.vacancy-main__contacts__email-link:hover {
	color: var(--red);
}
@media (max-width: 1023px) {
	.vacancy-main__title {
		font-size: 32px;
	}
	.vacancy-main__description .title {
		font-size: 11px;
	}
	.vacancy-main__description .value {
		font-size: 13px;
	}
	.vacancy-main__btn-group {
		margin-top: 27px;
		margin-bottom: 10px;
	}
	.vacancy-main__block {
		margin-top: 30px;
	}
	.vacancy-main__block__title {
		font-size: 20px;
		margin-bottom: 19px;
	}
	.vacancy-main__block ul li {
		font-size: 13px;
		margin-bottom: 9px;
	}
	.vacancy-main__contacts {
		margin-top: 60px;
		padding: 40px 30px 40px 30px;
	}
	.vacancy-main__contacts__title {
		font-size: 11px;
		margin-bottom: 12px;
	}
	.vacancy-main__contacts__phone-link {
		font-size: 20px;
	}
	.vacancy-main__contacts__email-link {
		font-size: 13px;
	}
}
@media (max-width: 767px) {
	.vacancy-main__title {
		font-size: 25px;
	}
}
@media (max-width: 479px) {
	.vacancy-main .vacancy-main__btn-group {
		margin-bottom: 14px;
	}
	.vacancy-main .vacancy-main__btn-group .btn {
		margin-right: 0px;
		padding-left: 26px;
		padding-right: 26px;
		font-size: 15px;
		height: 42px;
	}
	.vacancy-main .vacancy-main__btn-group .btn:first-child {
		width: 171px;
		margin-right: 10px;
	}
	.vacancy-main .vacancy-main__btn-group .btn:last-child {
		width: 135px;
		margin-right: 0;
	}
	.vacancy-main .vacancy-main__contacts {
		margin-top: 47px;
	}
	.vacancy-main__block {
		margin-top: 26px;
	}
}

.vacancy-sidebar {
	padding-top: 10px;
}
.vacancy-sidebar__title {
	font-weight: 500;
	font-size: 28px;
	line-height: 100%;
	color: var(--dark-blue);
	margin-bottom: 15px;
}
.vacancy-sidebar__btn {
	margin-top: 15px;
}
.vacancy-sidebar__content {
	display: flex;
}
.vacancy-sidebar__content-item {
	border: 1px solid var(--grey);
	padding: 40px 30px;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	transition: box-shadow 400ms ease-in-out;
	margin-top: 15px;
	margin-bottom: 15px;
}
.vacancy-sidebar__content-item:hover {
	box-shadow: 0 5px 15px var(--shadow);
}
.vacancy-sidebar__content-item__subtitle {
	font-weight: 500;
	font-size: 12px;
	line-height: 150%;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--light-blue);
	margin-bottom: 13px;
}
.vacancy-sidebar__content-item__title {
	font-weight: bold;
	font-size: 18px;
	line-height: 120%;
	color: var(--dark-blue);
}
@media (max-width: 1023px) {
	.vacancy-sidebar__title {
		font-size: 20px;
	}
	.vacancy-sidebar__content .col:nth-child(3) {
		display: none;
	}
	.vacancy-sidebar__content-item {
		padding: 35px 30px;
	}
	.vacancy-sidebar__content-item__subtitle {
		font-size: 11px;
	}
	.vacancy-sidebar__content-item__title {
		font-size: 15px;
	}
	.vacancy-sidebar .btn {
		margin-top: 20px;
	}
}
@media (max-width: 479px) {
	.vacancy-sidebar .vacancy-sidebar__content-item {
		min-height: 132px;
	}
}

.vacancy-form {
	background-color: var(--light-grey);
	padding-top: 80px;
	padding-bottom: 100px;
}
.vacancy-form .form-field {
	position: relative;
	margin-bottom: 25px;
}
.vacancy-form .form-field .form-error {
	position: absolute;
	left: 0;
	bottom: -3px;
	transform: translate(0, 100%);
}
.vacancy-form__content {
	max-width: 854px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}
.vacancy-form__title {
	font-weight: 500;
	font-size: 40px;
	line-height: 120%;
	text-align: center;
	color: var(--dark-blue);
	margin-bottom: 40px;
}
.vacancy-form-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.vacancy-form-row .form-field {
	width: calc((100% - 40px) / 2);
}
.vacancy-form-row .separator {
	font-weight: normal;
	font-size: 15px;
	line-height: 150%;
	text-align: center;
	color: var(--black);
	text-transform: lowercase;
}
.vacancy-form-footer {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.vacancy-form-footer .form-field {
	max-width: 630px;
}
.vacancy-form-footer .form-field .checkbox-label {
	font-size: 12px;
}
.vacancy-form-footer .form-field .checkbox-box {
	background-color: var(--white);
}
.vacancy-form-footer .btn {
	width: 177px;
}
#drop-area-uploaded {
	display: none;
}
#drop-area {
	border: 1px solid var(--grey);
	padding: 20px 20px 25px 20px;
	background-color: var(--white);
	display: flex;
	flex-direction: column;
	align-items: center;
	font-family: "Montserrat";
}
#drop-area .drop-area-description {
	font-weight: normal;
	font-size: 13px;
	line-height: 100%;
	text-align: center;
	color: var(--light-blue);
	font-family: "Montserrat";
	margin-bottom: 18px;
}
#drop-area .btn {
	width: 238px;
}
#drop-area.highlight {
	border: 1px dashed var(--grey);
}
#fileElem {
	display: none;
}
@media (max-width: 1023px) {
	.vacancy-form .vacancy-form-row .form-field {
		width: calc((100% - 48px) / 2);
	}
	.vacancy-form__title {
		font-size: 32px;
	}
	#drop-area {
		border: unset;
		padding: unset;
		background-color: unset;
		align-items: flex-start;
	}
	#drop-area .drop-area-description {
		display: none;
	}
	#drop-area .btn {
		width: 238px;
	}
	#drop-area.highlight {
		border: unset;
	}
	.vacancy-form #fileElem {
		display: none;
	}
}
@media (max-width: 767px) {
	.vacancy-form__title {
		font-size: 25px;
	}
	.vacancy-form .vacancy-form-row {
		flex-direction: column;
		align-items: flex-start;
	}
	.vacancy-form .vacancy-form-row .separator {
		margin-top: 0px;
		margin-bottom: 10px;
	}
	.vacancy-form .vacancy-form-row .form-field {
		width: 100%;
	}
	.vacancy-form .vacancy-form-footer {
		flex-direction: column;
	}
	.vacancy-form .vacancy-form-footer .btn {
		width: 100%;
	}
}
@media (max-width: 479px) {
	.vacancy-form {
		padding-bottom: 80px;
	}
	.vacancy-form .vacancy-form-footer .form-field .checkbox-label {
		font-size: 11px;
	}
}

.vacancy-page .breadcrumb__list {
	margin-top: var(--header-height);
	padding-bottom: 40px;
}
.vacancy-page .vacancy-page-content {
	margin-bottom: 100px;
}
@media (max-width: 1023px) {
	.vacancy-page .vacancy-page-content {
		margin-bottom: 80px;
	}
}

.content-with-sidebar {
	position: relative;
	display: flex;
	align-items: flex-start;
}
.content-with-sidebar .sidebar {
	position: sticky;
	top: calc(10px + var(--header-height));
	align-self: flex-start;
}
@media (max-width: 1023px) {
	.content-with-sidebar .sidebar {
		position: relative;
		top: unset;
		margin-top: 80px;
	}
}

.awards-page .breadcrumb {
	margin-top: var(--header-height);
}
.awards-page .breadcrumb__list {
	padding-bottom: 40px;
}
.awards-page__content {
	margin-bottom: 100px;
}
.awards-page__content__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.awards-page__title {
	font-weight: 500;
	font-size: 46px;
	line-height: 100%;
	color: var(--dark-blue);
	margin-bottom: 35px;
	margin-right: 20px;
}
.awards-page__filter {
	display: flex;
	list-style: none;
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 25px;
}
.awards-page__filter__item {
	display: flex;
	align-items: center;
}
.awards-page__filter__item:not(:last-child) {
	margin-right: var(--space-unit);
}
.awards-page__filter__button {
	border: none;
	outline: none;
	font: inherit;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
	line-height: 1;
	cursor: pointer;
	background: transparent;
	color: var(--primary);
	/* transition: color 250ms linear; */
}
.awards-page__filter__button:hover {
	text-decoration: none;
}
.awards-page__filter__button:hover {
	color: var(--primary-dark);
}
.awards-page__filter__button.active {
	color: var(--accent);
	cursor: default;
}
.awards-page__filter__button.active:hover {
	color: var(--accent);
}
.awards-page__filter__button.active:before {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	margin-right: var(--space-xs);
	background: currentColor;
}
@media (min-width: 1024px) {
	.awards-page__filter {
		font-size: 17px;
	}
	.awards-page__filter__item:not(:last-child) {
		margin-right: calc(2 * var(--space-unit));
	}
}
.awards-page .js-item {
	padding-top: var(--gap);
	padding-bottom: var(--gap);
	display: flex;
}
.awards-page__item {
	width: 100%;
	align-items: flex-start;
	padding: 30px 25px;
	text-decoration: none;
	border: 1px solid var(--grey);
	transition: box-shadow 400ms ease-in-out;
	display: flex;
	height: 200px;
}
.awards-page__item:hover {
	box-shadow: 0 5px 15px var(--shadow);
}
.awards-page__item__image {
	width: 100px;
	min-width: 100px;
	margin-right: 25px;
}
.awards-page__item__image img {
	width: 100%;
}
.awards-page__item__title {
	font-weight: 500;
	font-size: 18px;
	line-height: 120%;
	color: var(--dark-blue);
	margin-bottom: 12px;
}
.awards-page__item__description {
	font-weight: normal;
	font-size: 14px;
	line-height: 140%;
	color: var(--black);
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 4;
	display: -webkit-box;
	overflow: hidden;
	word-wrap: break-word;
	-webkit-box-orient: vertical;
}
.awards-page__controll {
	margin-top: 10px;
	display: flex;
	align-items: center;
}
.awards-page__controll__text {
	font-weight: normal;
	font-size: 15px;
	line-height: 140%;
	color: var(--black);
}
.awards-page__controll__btn {
	margin-bottom: 0;
	margin-left: 30px;
	display: none;
}
.awards-page__controll__btn.active {
	display: block;
}
@media (max-width: 1023px) {
	.awards-page .breadcrumb__list {
		padding-bottom: 34px;
	}
	.awards-page .awards-page__content__top {
		flex-direction: column;
		align-items: flex-start;
	}
	.awards-page__item__title {
		font-size: 15px;
		margin-bottom: 7px;
	}
	.awards-page__item__description {
		font-size: 14px;
	}
	.awards-page .awards-page__filter {
		margin-bottom: 7px;
	}
	.awards-page__title {
		font-size: 32px;
		margin-bottom: 30px;
	}
	.awards-page .awards-page__content {
		margin-bottom: 80px;
	}
	.awards-page .js-item {
		padding-top: 20px;
		padding-bottom: 20px;
	}
}
@media (max-width: 767px) {
	.awards-page__title {
		font-size: 25px;
	}
}
@media (max-width: 479px) {
	.awards-page .breadcrumb__list {
		padding-bottom: 30px;
	}
	.awards-page .awards-page__filter {
		margin-bottom: 7px;
	}
	.awards-page__item {
		flex-direction: column;
		align-items: center;
		padding-bottom: 60px;
	}
	.awards-page__item__image {
		margin-right: 0;
		margin-bottom: 20px;
	}
	.awards-page__item__title {
		font-size: 15px;
		margin-bottom: 7px;
	}
	.awards-page__item__description {
		font-size: 13px;
	}
	.awards-page .js-item {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.awards-page .awards-page__item {
		min-height: 375px;
	}
	.awards-page .awards-page__item__description {
		overflow: hidden;
		display: -webkit-box;
		-webkit-line-clamp: 4;
		-webkit-box-orient: vertical;
		height: 5.8em;
	}
	.awards-page__title {
		margin-bottom: 15px;
		line-height: 120%;
	}
}

.awards-item-page .breadcrumb {
	margin-top: var(--header-height);
}
.awards-item-page .breadcrumb__list {
	padding-bottom: 40px;
}
.awards-item-page__title {
	font-weight: 500;
	font-size: 38px;
	line-height: 110%;
	color: var(--dark-blue);
	margin-bottom: 55px;
}
.awards-item-page__content {
	margin-bottom: 100px;
}
.awards-item-page__images-block {
	position: sticky;
	top: calc(20px + var(--header-height));
}
.awards-item-page__images-block img {
	width: 100%;
}
.awards-item-page__images-slider__top {
	margin-bottom: 20px;
}

.awards-item-page__images-slider__top .rel-block {
	position: relative;
}
.awards-item-page__images-slider__top .rel-block:hover .slider-item__icons {
	opacity: 1;
}


.awards-item-page__images-slider__top .slider-item {
	position: relative;
}
.awards-item-page__images-slider__top .slider-item:hover .slider-item__icons {
	opacity: 1;
}
.awards-item-page__images-slider__top .slider-item__icons {
	transition: 0.3s ease-in-out;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
}
.awards-item-page__images-slider__top .slider-item__icons-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	padding-left: 2px;
	background: rgba(0, 0, 102, 0.7);
}
.awards-item-page__images-slider__top .slider-item figure {
	width: 100%;
	position: relative;
	padding-bottom: 66%;
	overflow: hidden;
}
.awards-item-page__images-slider__top .slider-item figure a {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	display: block;
}
.awards-item-page__images-slider__top .slider-item figure a img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.awards-item-page__images-slider__bottom ul {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 20px;
}
.awards-item-page__images-slider__bottom ul li {
	position: relative;
	padding-bottom: 66%;
}
.awards-item-page__images-slider__bottom ul li img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.awards-item-page__images-slider__bottom ul li.tns-nav-active::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	display: block;
}
.awards-item-page__text-block__btn-group .btn {
	margin-right: 10px;
	margin-top: 10px;
}
.awards-item-page__text-block__btn-group .btn:last-child {
	margin-right: 0;
}
.awards-item-page__text-block p {
	font-weight: normal;
	font-size: 14px;
	line-height: 140%;
	color: var(--black);
	margin-bottom: 12px;
}
.awards-item-page__text-block ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 30px;
}
.awards-item-page__text-block ul li {
	padding-left: 21px;
	position: relative;
	font-weight: normal;
	font-size: 15px;
	line-height: 140%;
	color: var(--black);
	margin-bottom: 11px;
}
.awards-item-page__text-block ul li::after {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	display: block;
	background-color: var(--red);
	border-radius: 100%;
}
.awards-item-page__text-block ul li:last-child {
	margin-bottom: 0;
}
@media (max-width: 1023px) {
	.awards-item-page br {
		line-height: 12px;
		height: 12px;
		font-size: 12px;
	}
	.awards-item-page:not(.awards-item-solo-page) .awards-item-page__images-block {
		position: relative;
		top: unset;
		margin-bottom: 20px;
	}
	.awards-item-page__images-slider__bottom {
		overflow-x: auto;
	}
	.awards-item-page__images-slider__bottom ul {
		display: flex;
		grid-gap: unset;
	}
	.awards-item-page__images-slider__bottom ul li {
		min-width: 120px;
		margin-right: 15px;
		width: 120px;
		height: 80px;
		padding-bottom: unset;
	}
	.awards-item-page__images-slider__bottom ul li:last-child {
		margin-right: 0;
	}
	.awards-item-page__title {
		font-size: 32px;
		margin-bottom: 32px;
	}
	.awards-item-page__content {
		margin-bottom: 80px;
	}
	.awards-item-page__text-block p {
		font-size: 13px;
		margin-bottom: 10px;
	}
	.awards-item-page__text-block ul {
		margin-bottom: 16px;
	}
	.awards-item-page__text-block ul li {
		font-size: 13px;
	}
}
@media (max-width: 1023px) {
	.awards-item-page .awards-item-page__text-block__btn-group .btn:last-child {
		margin-top: 10px;
	}
}
@media (max-width: 767px) {
	.awards-item-page__title {
		font-size: 25px;
	}
	.awards-item-page__images-slider__bottom ul li {
		min-width: 70px;
		width: 70px;
		height: 48px;
	}
}

@media (max-width: 1023px) {
	.awards-item-solo-page .awards-item-page__content {
		position: relative;
		margin-bottom: 122px;
	}
	.awards-item-solo-page .awards-item-page__text-block__btn-group {
		position: absolute;
		left: var(--gap);
		bottom: 0;
		transform: translateY(100%);
	}
}
@media (max-width: 767px) {
	.awards-item-solo-page .awards-item-page__content {
		position: unset;
		margin-bottom: 80px;
	}
	.awards-item-solo-page .awards-item-page__images-block {
		position: relative;
		top: unset;
	}
	.awards-item-solo-page .awards-item-page__text-block__btn-group {
		position: unset;
		left: unset;
		bottom: unset;
		transform: unset;
	}
}

.catalog-compl-page .jumbotron, .catalog-ind-page .jumbotron {
	height: 450px;
}
.catalog-compl-page .jumbotron .btn, .catalog-ind-page .jumbotron .btn {
	padding-left: 42px;
	padding-right: 42px;
}
.catalog-compl-page .home-banner__content, .catalog-ind-page .home-banner__content {
	padding-top: 82px;
	padding-bottom: 86px;
}
.catalog-compl-page .home-banner__text, .catalog-ind-page .home-banner__text {
	font-size: 28px;
	margin-bottom: 19px;
}
.catalog-compl-page .btn-icon, .catalog-ind-page .btn-icon {
	width: 20px;
	height: 19px;
	margin-right: 19px;
}
.catalog-compl-page .home-banner__description, .catalog-ind-page .home-banner__description {
	margin-bottom: 25px;
}
.catalog-compl-page .home-banner__description ul, .catalog-ind-page .home-banner__description ul {
	max-width: 624px;
	list-style: none;
	padding-left: 0;
	margin-bottom: 10px;
}
.catalog-compl-page .home-banner__description ul li, .catalog-ind-page .home-banner__description ul li {
	padding-left: 25px;
	position: relative;
	font-weight: normal;
	font-size: 15px;
	line-height: 140%;
	color: var(--white);
	margin-bottom: 18px;
}
.catalog-compl-page .home-banner__description ul li::after, .catalog-ind-page .home-banner__description ul li::after {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	display: block;
	background-color: var(--red);
	border-radius: 100%;
}
.catalog-compl-page .home-banner__description ul li:last-child, .catalog-ind-page .home-banner__description ul li:last-child {
	margin-bottom: 0;
}
.catalog-compl-page .home-banner__img img, .catalog-ind-page .home-banner__img img {
	max-height: 332px;
	bottom: unset;
	top: 65px;
	right: unset;
	left: 148px;
}

@media (max-width: 1380px) {
	.catalog-compl-page .home-banner__content, .catalog-ind-page .home-banner__content {
		padding-right: 30px;
		width: unset;
		flex-grow: 1;
	}
	.catalog-compl-page .home-banner__img, .catalog-ind-page .home-banner__img {
		width: unset;
	}
	.catalog-compl-page .home-banner__img img, .catalog-ind-page .home-banner__img img {
		margin-top: 60px;
		position: relative;
		top: unset;
		left: unset;
	}
}
@media (max-width: 1090px) {
	.catalog-compl-page .jumbotron, .catalog-ind-page .jumbotron {
		height: unset;
	}
	.catalog-compl-page .jumbotron .btn, .catalog-ind-page .jumbotron .btn {
		padding-left: 30px;
		padding-right: 30px;
	}
	.catalog-compl-page .home-banner__content, .catalog-ind-page .home-banner__content {
		padding-top: 40px;
		padding-bottom: 52px;
		padding-right: 30px;
		width: unset;
		flex-grow: 1;
	}
	.catalog-compl-page .home-banner__text, .catalog-ind-page .home-banner__text {
		font-size: 20px;
		line-height: 120%;
		margin-bottom: 16px;
		max-width: 400px;
	}
	.catalog-compl-page .btn-icon, .catalog-ind-page .btn-icon {
		width: 15px;
		height: 14px;
		margin-right: 16px;
	}
	.catalog-compl-page .btn, .catalog-ind-page .btn {
		height: 42px;
		font-size: 15px;
		line-height: 100%;
	}
	.catalog-compl-page .home-banner__description, .catalog-ind-page .home-banner__description {
		margin-bottom: 27px;
	}
	.catalog-compl-page .home-banner__description ul, .catalog-ind-page .home-banner__description ul {
		max-width: 401px;
	}
	.catalog-compl-page .home-banner__description ul li, .catalog-ind-page .home-banner__description ul li {
		font-size: 13px;
		line-height: 140%;
		margin-bottom: 12px;
		padding-left: 26px;
	}
	.catalog-compl-page .home-banner__description ul li::after, .catalog-ind-page .home-banner__description ul li::after {
		top: 6px;
	}
	.catalog-compl-page .home-banner__img, .catalog-ind-page .home-banner__img {
		width: unset;
	}
	.catalog-compl-page .home-banner__img img, .catalog-ind-page .home-banner__img img {
		margin-top: 67px;
		position: relative;
		top: unset;
		left: unset;
		max-height: 252px;
	}
}
@media (max-width: 767px) {
	.catalog-compl-page .home-banner__content, .catalog-ind-page .home-banner__content {
		padding-top: 31px;
		padding-bottom: 47px;
		align-items: flex-start;
		padding-right: 0;
	}
	.catalog-compl-page .home-banner__text, .catalog-ind-page .home-banner__text {
		text-align: left;
		margin-bottom: 9px;
	}
	.catalog-compl-page .home-banner__description, .catalog-ind-page .home-banner__description {
		margin-bottom: 13px;
	}
	.catalog-compl-page .home-banner__description ul li, .catalog-ind-page .home-banner__description ul li {
		text-align: left;
		padding-left: 26px;
	}
}
.catalog-block .search-field__icon {
	padding-left: 14px;
}
.catalog-block .search-field__icon svg {
	color: #000066;
}
.catalog-block__title {
	font-weight: 500;
	font-size: 46px;
	line-height: 100%;
	color: var(--dark-blue);
}
.catalog-block__top {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 28px;
}
.catalog-block__search {
	max-width: 630px;
	flex-grow: 1;
}
.catalog-block__filter {
	display: flex;
	list-style: none;
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 3px;
}
.catalog-block__filter__item {
	display: flex;
	align-items: center;
}
.catalog-block__filter__item:not(:last-child) {
	margin-right: 41px;
}
.catalog-block__filter__button {
	border: none;
	outline: none;
	font: inherit;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
	line-height: 1;
	cursor: pointer;
	background: transparent;
	color: var(--primary);
	transition: color 250ms linear;
}
.catalog-block__filter__button:hover {
	text-decoration: none;
}
.catalog-block__filter__button:hover {
	color: var(--primary-dark);
}
.catalog-block__filter__button.active {
	color: var(--accent);
	cursor: default;
}
.catalog-block__filter__button.active:hover {
	color: var(--accent);
}
.catalog-block__filter__button.active:before {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	margin-right: 12px;
	background: currentColor;
}
@media (min-width: 1024px) {
	.catalog-block__filter {
		font-size: 17px;
	}
	.catalog-block__filter__item:not(:last-child) {
		margin-right: calc(2 * var(--space-unit));
	}
}
.catalog-block .js-item {
	padding-top: var(--gap);
	padding-bottom: var(--gap);
	display: flex;
}
.catalog-block__item {
	height: 292px;
	flex-direction: column;
	justify-content: space-between;
	padding: 30px 30px 25px 30px;
	width: 100%;
	text-decoration: none;
	border: 1px solid var(--grey);
	transition: box-shadow 400ms ease-in-out;
	display: flex;
}
.catalog-block__item:hover {
	box-shadow: 0 5px 15px var(--shadow);
}
.catalog-block__item__title {
	font-weight: bold;
	font-size: 24px;
	line-height: 120%;
	color: var(--dark-blue);
	margin-bottom: 9px;
}
.catalog-block__item__description {
	font-weight: normal;
	font-size: 15px;
	line-height: 140%;
	color: var(--black);
	flex-grow: 1;
}
.catalog-block__controll {
	margin-top: 10px;
	display: flex;
	align-items: center;
}
.catalog-block__controll__text {
	font-weight: normal;
	font-size: 15px;
	line-height: 140%;
	color: var(--black);
}
.catalog-block__controll__btn {
	margin-bottom: 0;
	margin-left: 30px;
	display: none;
}
.catalog-block__controll__btn.active {
	display: block;
}
.catalog-block .search-field__reset {
	display: none;
}
.catalog-block .search-field.filled .search-field__reset {
	display: block;
}
@media (max-width: 1023px) {
	.catalog-block__title {
		font-size: 32px;
		margin-bottom: 37px;
	}
	.catalog-block__top {
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 9px;
	}
	.catalog-block .catalog-block__item {
		height: 292px;
		padding: 28px 30px 21px 30px;
	}
	.catalog-block__controll {
		margin-top: 20px;
	}
	.catalog-block__search {
		order: 1;
		max-width: 400px;
	}
	.catalog-block .js-item {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.catalog-block__item__subtitle {
		font-size: 11px;
	}
	.catalog-block__item__title {
		font-size: 20px;
		margin-bottom: 16px;
	}
	.catalog-block__item__description {
		font-size: 13px;
	}
	.catalog-block .catalog-block__filter__item:not(:last-child) {
		margin-right: 20px;
	}
}
@media (max-width: 767px) {
	.catalog-block__title {
		font-size: 25px;
		margin-bottom: 16px;
	}
	.catalog-block__top {
		flex-direction: column;
		align-items: flex-start;
	}
	.catalog-block__search {
		margin-top: 20px;
		width: 100%;
		max-width: 100%;
	}
}
@media (max-width: 479px) {
	.catalog-block .js-item {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.catalog-block .catalog-block__search {
		margin-top: 26px;
	}
	.catalog-block__top {
		margin-bottom: 6px;
	}
	.catalog-block .catalog-block__controll {
		margin-top: 7px;
	}
	.catalog-block .catalog-block__item__title {
		margin-bottom: 15px;
	}
	.catalog-block .catalog-block__filter {
		flex-wrap: wrap;
	}
	.catalog-block .catalog-block__filter__item {
		margin-top: 14px;
	}
	.catalog-block .catalog-block__title {
		margin-bottom: 5px;
	}
}

@media (max-width: 1300px) {
	.catalog-block__item {
		height: unset;
	}
}
.catalog-compl-sertificates {
	background-color: var(--light-grey);
	padding-top: 90px;
	padding-bottom: 101px;
	overflow: hidden;
}
.catalog-compl-sertificates__title {
	font-weight: 500;
	font-size: 38px;
	line-height: 100%;
	color: var(--dark-blue);
	margin-bottom: 56px;
}
.catalog-compl-sertificates__wrap {
	max-width: 1380px;
	padding-left: 40px;
	padding-right: 40px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.catalog-compl-sertificates .tns-ovh {
	overflow: visible;
}
.catalog-compl-sertificates ul {
	list-style: none;
}
.catalog-compl-sertificates ul li {
	line-height: 143%;
}

.catalog-compl-sertificates ul li:first-child {
	font-weight: bold;
}

.catalog-compl-sertificates .catalog-compl-sertificates-slider__control {
	margin-top: 28px;
}
.catalog-compl-sertificates .catalog-compl-sertificates-slider__control button:first-child {
	margin-right: 6px;
}
.catalog-compl-sertificates .catalog-compl-sertificates-slider__control button:nth-child(2) {
	margin-right: 13px;
}
@media (max-width: 1023px) {
	.catalog-compl-sertificates {
		padding-top: 57px;
		padding-bottom: 60px;
	}
	.catalog-compl-sertificates__title {
		font-size: 32px;
		margin-bottom: 36px;
		line-height: 120%;
	}
	.catalog-compl-sertificates__wrap {
		padding-left: 30px;
		padding-right: 30px;
	}
	.catalog-compl-sertificates .catalog-compl-sertificates-slider__control {
		margin-top: 31px;
	}
}
@media (max-width: 767px) {
	.catalog-compl-sertificates__title {
		font-size: 25px;
		margin-bottom: 30px;
		line-height: 130%;
	}
	.catalog-compl-sertificates__wrap {
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media (max-width: 479px) {
	.catalog-compl-sertificates .catalog-compl-sertificates-slider__control {
		margin-top: 32px;
	}
}

.catalog-compl-sertificates__item {
	width: 100%;
	opacity: 0.3;
	transition: 0.3s ease-in-out;
}
.catalog-compl-sertificates__item__wrap {
	display: flex;
	align-items: flex-start;
	padding: 30px 25px;
	background-color: var(--white);
	text-decoration: none;
	transition: 0.3s ease-in-out;
	height: 215px;
	overflow: hidden;
}
.catalog-compl-sertificates__item__wrap:hover {
	box-shadow: 0 5px 15px var(--shadow);
}
.catalog-compl-sertificates__item-image {
	width: 100px;
	/*width: 28%;*/
	/*height: 140px;*/
	flex: none;
	border: 1px solid #DEDEF4;
}

/*.catalog-compl-sertificates__item-image figure{
	border: 1px solid #DEDEF4;
}*/

.catalog-compl-sertificates__item-image img {
	object-fit: contain;
	width: 100%;
	height: 100%;
}
.catalog-compl-sertificates__item-content {
	padding-left: 25px;
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
}
.catalog-compl-sertificates__item__title {
	font-weight: 500;
	font-size: 18px;
	line-height: 120%;
	color: var(--dark-blue);
	margin-bottom: 10px;
}
.catalog-compl-sertificates__item__subtitle {
	margin-top: -5px;
	font-weight: 500;
	font-size: 12px;
	line-height: 150%;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #7373BA;
	margin-bottom: 13px;
}
.catalog-compl-sertificates__item__description ul {
	font-weight: normal;
	font-size: 14px;
	line-height: 140%;
	color: var(--black);
}

.catalog-compl-sertificates__item.tns-slide-active {
	transition: 0.3s ease-in-out;
	opacity: 1;
}
@media (max-width: 1023px) {
	.catalog-compl-sertificates__item__title {
		font-size: 15px;
		margin-bottom: 10px;
	}
	.catalog-compl-sertificates__item__description ul {
		font-size: 13px;
	}
	.catalog-compl-sertificates__item-image {
		/*width: 106px;*/
		width: 28%;
		/*min-width: 106px;*/
	}
	.catalog-compl-sertificates__item__subtitle {
		font-size: 11px;
		margin-bottom: 9px;
	}
}
@media (max-width: 479px) {
	.catalog-compl-sertificates__item-image {
		/*width: 100px;
		min-width: 100px;*/
		width: 28%;
	}
}

.catalog-description-block {
	margin-left: auto;
	margin-right: auto;
	max-width: 1076px;
	width: 100%;
}
.catalog-description-block__wrap {
	display: flex;
	flex-direction: column;
}
.catalog-description-block__title {
	font-weight: 500;
	font-size: 38px;
	line-height: 110%;
	color: var(--dark-blue);
	margin-bottom: 16px;
}
.catalog-description-block__description {
	font-weight: normal;
	font-size: 15px;
	line-height: 140%;
	color: var(--black);
}
.catalog-description-block__description__small {
	font-size: 15px;
}
.catalog-description-block__items {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 45px;
	margin-top: 45px;
	margin-bottom: 95px;
}
.catalog-description-block__items_col:first-child .catalog-description-block__item {
	padding-left: 9px;
}
.catalog-description-block__items_col:first-child .catalog-description-block__item:nth-child(1) {
	padding-top: 2px;
}
.catalog-description-block__items_col:first-child .catalog-description-block__item:nth-child(2) {
	padding-top: 2px;
}
.catalog-description-block__items_col:first-child .catalog-description-block__item:nth-child(2) .catalog-description-block__item-text {
	margin-top: -1px;
}
.catalog-description-block__items_col:first-child .catalog-description-block__item:nth-child(3) .catalog-description-block__item-text {
	margin-top: -1px;
}
.catalog-description-block__items_col:nth-child(2) {
	margin-top: -2px;
}
.catalog-description-block__items_col:nth-child(2) .catalog-description-block__item {
	padding-left: 4px;
}
.catalog-description-block__items_col:nth-child(2) .catalog-description-block__item:nth-child(1) {
	margin-bottom: 40px;
}
.catalog-description-block__items_col:nth-child(2) .catalog-description-block__item:nth-child(1) .catalog-description-block__item-text {
	margin-top: 5px;
	margin-left: 1px;
}
.catalog-description-block__items_col:nth-child(2) .catalog-description-block__item:nth-child(2) {
	padding-left: 0px;
	margin-left: -2px;
}
.catalog-description-block__items_col:nth-child(2) .catalog-description-block__item:nth-child(2) .catalog-description-block__item-text {
	margin-top: 0px;
	margin-left: 9px;
	max-width: 216px;
}
.catalog-description-block__items_col:nth-child(2) .catalog-description-block__item:nth-child(3) .catalog-description-block__item-text {
	margin-top: -1px;
}
.catalog-description-block__item {
	display: flex;
	align-items: center;
	margin-bottom: 33px;
	min-height: 53px;
	font-size: 17px;
	line-height: 130%;
}
.catalog-description-block__item:last-child {
	margin-bottom: 0;
}
.catalog-description-block__item-icon {
	width: 104px;
	min-width: 104px;
}
.catalog-description-block__item-text {
	margin-top: -7px;
}
.catalog-description-block__subtitle {
	font-weight: 500;
	font-size: 28px;
	line-height: 110%;
	color: var(--dark-blue);
	margin-bottom: 31px;
}
.catalog-description-block__lists {
	/*display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 42px;*/
	margin-top: 32px;
}
.catalog-description-block__lists ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 10px;
	display: flex;
	flex-wrap: wrap;
}
.catalog-description-block__lists li {
	padding-left: 23px;
	position: relative;
	font-weight: normal;
	font-size: 17px;
	line-height: 140%;
	color: var(--black);
	margin-bottom: 25px;
	width: 50%;
}
.catalog-description-block__lists li::after {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	display: block;
	background-color: var(--red);
	border-radius: 100%;
}
/*.catalog-description-block__lists li:last-child {
	margin-bottom: 0;
}*/
@media (max-width: 1023px) {
	.catalog-description-block {
		padding-left: 30px;
		padding-right: 30px;
	}
	.catalog-description-block__title {
		font-size: 32px;
		margin-bottom: 18px;
	}
	.catalog-description-block__description {
		font-size: 13px;
	}
	.catalog-description-block__description__small {
		font-size: 15px;
	}
	.catalog-description-block__items {
		margin-bottom: 56px;
		grid-gap: 31px;
		margin-top: 50px;
	}
	.catalog-description-block__items_col:first-child .catalog-description-block__item {
		padding-left: 2px;
	}
	.catalog-description-block__items_col:first-child .catalog-description-block__item:nth-child(1) {
		padding-top: 2px;
	}
	.catalog-description-block__items_col:first-child .catalog-description-block__item:nth-child(2) {
		padding-top: 2px;
	}
	.catalog-description-block__items_col:first-child .catalog-description-block__item:nth-child(2) .catalog-description-block__item-text {
		margin-top: -7px;
	}
	.catalog-description-block__items_col:first-child .catalog-description-block__item:nth-child(3) {
		margin-top: -2px;
	}
	.catalog-description-block__items_col:first-child .catalog-description-block__item:nth-child(3) .catalog-description-block__item-text {
		margin-top: -7px;
	}
	.catalog-description-block__items_col:nth-child(2) {
		margin-top: -2px;
	}
	.catalog-description-block__items_col:nth-child(2) .catalog-description-block__item {
		padding-left: 5px;
	}
	.catalog-description-block__items_col:nth-child(2) .catalog-description-block__item:nth-child(1) {
		margin-bottom: 40px;
	}
	.catalog-description-block__items_col:nth-child(2) .catalog-description-block__item:nth-child(1) .catalog-description-block__item-text {
		margin-top: 5px;
		margin-left: 0px;
	}
	.catalog-description-block__items_col:nth-child(2) .catalog-description-block__item:nth-child(2) {
		padding-left: 0px;
		margin-left: 0px;
	}
	.catalog-description-block__items_col:nth-child(2) .catalog-description-block__item:nth-child(2) .catalog-description-block__item-text {
		margin-top: -5px;
		margin-left: 0px;
		max-width: 216px;
	}
	.catalog-description-block__items_col:nth-child(2) .catalog-description-block__item:nth-child(3) {
		margin-top: -2px;
	}
	.catalog-description-block__items_col:nth-child(2) .catalog-description-block__item:nth-child(3) .catalog-description-block__item-text {
		margin-top: -4px;
		margin-left: -1px;
	}
	.catalog-description-block__item {
		font-size: 15px;
		margin-bottom: 35px;
	}
	.catalog-description-block__item-icon {
		width: 93px;
		min-width: 93px;
	}
	.catalog-description-block__subtitle {
		font-size: 20px;
		margin-bottom: 17px;
	}
	.catalog-description-block__lists {
		margin-top: 16px;
		grid-gap: 33px;
	}
	.catalog-description-block__list li {
		font-size: 15px;
		line-height: 140%;
		margin-bottom: 18px;
	}
	.catalog-description-block__list li::after {
		top: 8px;
	}
}
@media (max-width: 479px) {
	.catalog-description-block {
		padding-left: 20px;
		padding-right: 20px;
	}
	.catalog-description-block__title {
		font-size: 25px;
		margin-bottom: 14px;
	}
	.catalog-description-block__description__small {
		font-size: 15px;
	}
	.catalog-description-block__items {
		margin-top: 17px;
		margin-bottom: 80px;
		grid-gap: 27px;
		grid-template-columns: 1fr;
	}
	.catalog-description-block__items_col:first-child .catalog-description-block__item {
		padding-left: 8px;
	}
	.catalog-description-block__items_col:first-child .catalog-description-block__item:nth-child(1) {
		padding-top: 2px;
		margin-bottom: 24px;
	}
	.catalog-description-block__items_col:first-child .catalog-description-block__item:nth-child(1) .catalog-description-block__item-text {
		margin-top: 1px;
	}
	.catalog-description-block__items_col:first-child .catalog-description-block__item:nth-child(2) {
		padding-top: 2px;
	}
	.catalog-description-block__items_col:first-child .catalog-description-block__item:nth-child(2) .catalog-description-block__item-text {
		margin-top: -2px;
	}
	.catalog-description-block__items_col:first-child .catalog-description-block__item:nth-child(3) {
		margin-top: -2px;
	}
	.catalog-description-block__items_col:first-child .catalog-description-block__item:nth-child(3) .catalog-description-block__item-text {
		margin-top: -2px;
	}
	.catalog-description-block__items_col:nth-child(2) {
		margin-top: -2px;
	}
	.catalog-description-block__items_col:nth-child(2) .catalog-description-block__item {
		padding-left: 5px;
	}
	.catalog-description-block__items_col:nth-child(2) .catalog-description-block__item:nth-child(1) {
		margin-bottom: 33px;
	}
	.catalog-description-block__items_col:nth-child(2) .catalog-description-block__item:nth-child(1) .catalog-description-block__item-text {
		margin-top: 5px;
		margin-left: 4px;
	}
	.catalog-description-block__items_col:nth-child(2) .catalog-description-block__item:nth-child(2) {
		padding-left: 0px;
		margin-left: 0px;
	}
	.catalog-description-block__items_col:nth-child(2) .catalog-description-block__item:nth-child(2) .catalog-description-block__item-text {
		margin-top: -5px;
		margin-left: 8px;
		max-width: 216px;
	}
	.catalog-description-block__items_col:nth-child(2) .catalog-description-block__item:nth-child(3) {
		margin-top: -2px;
	}
	.catalog-description-block__items_col:nth-child(2) .catalog-description-block__item:nth-child(3) .catalog-description-block__item-text {
		margin-top: -4px;
		margin-left: 4px;
	}
	.catalog-description-block__item {
		min-height: unset;
		margin-bottom: 26px;
	}
	.catalog-description-block__item-icon {
		width: 85px;
		min-width: 85px;
	}
	.catalog-description-block__subtitle {
		font-size: 20px;
		margin-bottom: 17px;
	}
	.catalog-description-block__lists {
		margin-top: 16px;
		grid-gap: 11px;
		grid-template-columns: 1fr;
	}
	.catalog-description-block__list li {
		margin-bottom: 17px;
	}
}

.catalog-compl-page .breadcrumb__list {
	padding-bottom: 44px;
}
.catalog-compl-page .catalog-block {
	margin-bottom: 70px;
}
.catalog-compl-page .catalog-compl-sertificates {
	margin-bottom: 95px;
}
.catalog-compl-page .catalog-description-block {
	margin-bottom: 87px;
}
.catalog-compl-page .catalog-form {
	margin-bottom: 100px;
}
@media (max-width: 1023px) {
	.catalog-compl-page .catalog-block {
		margin-bottom: 44px;
	}
	.catalog-compl-page .catalog-compl-sertificates {
		margin-bottom: 80px;
	}
	.catalog-compl-page .catalog-description-block {
		margin-bottom: 69px;
	}
	.catalog-compl-page .catalog-form {
		margin-top: 100px;
		margin-bottom: 80px;
	}
	.catalog-compl-page .breadcrumb__list {
		padding-bottom: 35px;
	}
}
@media (max-width: 479px) {
	.catalog-compl-page .breadcrumb__list {
		padding-bottom: 33px;
	}
	.catalog-compl-page .catalog-block {
		margin-bottom: 84px;
	}
	.catalog-compl-page .catalog-compl-sertificates {
		margin-bottom: 82px;
	}
	.catalog-compl-page .catalog-form {
		margin-top: 80px;
		margin-bottom: 80px;
	}
}

.catalog-ind-page .breadcrumb__list {
	padding-bottom: 44px;
}
.catalog-ind-page .catalog-block {
	margin-bottom: 70px;
}
.catalog-ind-page .catalog-compl-sertificates {
	margin-bottom: 95px;
}
.catalog-ind-page .catalog-description-block {
	margin-bottom: 87px;
}
.catalog-ind-page .catalog-form {
	margin-bottom: 100px;
}
@media (max-width: 1023px) {
	.catalog-ind-page .catalog-block {
		margin-bottom: 44px;
	}
	.catalog-ind-page .catalog-compl-sertificates {
		margin-bottom: 80px;
	}
	.catalog-ind-page .catalog-description-block {
		margin-bottom: 69px;
	}
	.catalog-ind-page .catalog-form {
		margin-top: 100px;
		margin-bottom: 80px;
	}
	.catalog-ind-page .breadcrumb__list {
		padding-bottom: 35px;
	}
}
@media (max-width: 479px) {
	.catalog-ind-page .breadcrumb__list {
		padding-bottom: 33px;
	}
	.catalog-ind-page .catalog-block {
		margin-bottom: 84px;
	}
	.catalog-ind-page .catalog-compl-sertificates {
		margin-bottom: 82px;
	}
	.catalog-ind-page .catalog-form {
		margin-top: 80px;
		margin-bottom: 80px;
	}
}

.product-card-jumbotron__wrap {
	min-height: 450px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.product-card-jumbotron__text {
	padding: 20px 0;
	display: flex;
	align-items: flex-start;
}
.product-card-jumbotron__text__icon {
	width: 84px;
	min-width: 84px;
	margin-right: 40px;
	height: 84px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.product-card-jumbotron__text__icon__mobile {
	display: none;
}
.product-card-jumbotron__text__icon img {
	width: 100%;
}
.product-card-jumbotron__text__title {
	display: inline-block;
	vertical-align: middle;
	margin-bottom: 17px;
}
.product-card-jumbotron__text__title span.product-card-jumbotron__text__title__main {
	font-weight: 500;
	font-size: 28px;
	line-height: 120%;
	color: var(--white);
	vertical-align: middle;
	margin-right: 23px;
}
.product-card-jumbotron__text__title-select {
	display: inline-block;
	vertical-align: middle;
	font-weight: 500;
	font-size: 18px;
	line-height: 120%;
	color: var(--white);
}
.product-card-jumbotron__text__title-select svg {
	margin-left: 8px;
	vertical-align: middle;
}
.product-card-jumbotron__text__description {
	font-weight: normal;
	font-size: 15px;
	line-height: 140%;
	color: var(--white);
	margin-bottom: 26px;
	max-width: 628px;
}
.product-card-jumbotron__text__items {
	display: flex;
	align-items: flex-start;
	margin-bottom: 36px;
}
.product-card-jumbotron__text__item {
	display: flex;
	flex-direction: column;
	margin-right: 24px;
	min-width: 200px;
}

.product-card-jumbotron__text__item:last-child {
	margin-right: 0;
}
.product-card-jumbotron__text__item__title {
	font-weight: 500;
	font-size: 12px;
	line-height: 150%;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--light-blue);
	margin-bottom: 4px;
}
.product-card-jumbotron__text__item__value {
	font-weight: normal;
	font-size: 15px;
	line-height: 120%;
	color: var(--white);
}

.product-card-jumbotron__text__buttons.btn-mobile {
	display: none;
}
.product-card-jumbotron__text__buttons .btn {
	margin-right: 15px;
	width: 224px;
}
.product-card-jumbotron__text__buttons .btn:last-child {
	margin-right: 0;
	width: 184px;
}
.product-card-jumbotron__description {
	margin-left: 73px;
	padding: 20px 0;
	display: flex;
	flex-direction: column;
}
.product-card-jumbotron__description__item {
	display: flex;
	align-items: center;
}
.product-card-jumbotron__description__item{
	margin-bottom: 15px;
}
.product-card-jumbotron__description__item:last-child{
	margin-bottom: 0;
}

.product-card-jumbotron__description__icon {
	width: 60px;
	height: 60px;
	min-width: 58px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 23px;
}
.product-card-jumbotron__description__text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 294px;
}
.product-card-jumbotron__description__title {
	font-style: normal;
	font-weight: bold;
	font-size: 15px;
	line-height: 130%;
	color: var(--white);
}
.product-card-jumbotron__description__text {
	font-style: normal;
	font-weight: normal;
	font-size: 15px;
	line-height: 130%;
	color: var(--white);
}

@media (max-width: 1100px) {
	.product-card-jumbotron__description {
		margin-left: 20px;
	}
	.product-card-jumbotron__description__text {
		width: 240px;
	}
}
@media (max-width: 1020px) {
	.product-card-jumbotron__wrap {
		min-height: 369px;
	}
	.product-card-jumbotron__text {
		/*padding-top: 68px;*/
		padding-left: 20px;
	}
	.product-card-jumbotron__text__icon {
		width: 42px;
		height: 42px;
		min-width: 42px;
		margin-right: 31px;
		display: none;
	}
	.product-card-jumbotron__text__icon__mobile {
		width: 42px;
		height: 42px;
		min-width: 42px;
		margin-right: 31px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.product-card-jumbotron__text__title span.product-card-jumbotron__text__title__main {
		font-size: 20px;
		margin-right: 13px;
	}
	.product-card-jumbotron__text__title-select .select-box__input-text {
		line-height: 10px;
		font-size: 15px;
	}
	.product-card-jumbotron__text__title-select .select-box__input-text svg {
		margin-left: 6px;
	}
	.product-card-jumbotron__text__title-select .select-box__icon {
		top: 66%;
		right: 31px;
	}
	.product-card-jumbotron__text__description {
		font-size: 13px;
		margin-bottom: 16px;
	}
	.product-card-jumbotron__text__items {
		margin-bottom: 39px;
	}
	.product-card-jumbotron__text__item {
		margin-right: 35px;
	}
	.product-card-jumbotron__text__item__title {
		font-size: 11px;
	}
	.product-card-jumbotron__text__item__value {
		font-size: 13px;
	}

	.product-card-jumbotron__text__item__value br {
		display: none;
	}

	.product-card-jumbotron__text__item:last-child .product-card-jumbotron__text__item__value br{
		display: block;
	}

	.product-card-jumbotron__text__buttons .btn {
		font-size: 15px;
		width: 190px;
		height: 42px;
		padding-left: 0;
		padding-right: 0;
		margin-right: 6px;
	}
	.product-card-jumbotron__text__buttons .btn:last-child {
		width: 152px;
	}
	/*.product-card-jumbotron__description {
		padding-top: 73px;
		margin-left: 20px;
	}*/
	/*.product-card-jumbotron__description__item:nth-child(1) {
		margin-bottom: 19px;
	}
	.product-card-jumbotron__description__item:nth-child(2) {
		margin-bottom: 16px;
	}
	.product-card-jumbotron__description__item:nth-child(3) {
		margin-bottom: 17px;
	}*/
	.product-card-jumbotron__description__icon {
		display: none;
	}
	.product-card-jumbotron__description__text {
		width: 182px;
	}
	.product-card-jumbotron__description__title {
		font-size: 13px;
	}
	.product-card-jumbotron__description__text {
		font-size: 13px;
	}
}
@media (max-width: 767px) {
	.product-card-jumbotron__wrap {
		padding-bottom: 39px;
		flex-direction: column;
		padding-top: 20px;
	}
	.product-card-jumbotron__text {
		padding-top: 0;
		padding-left: 0;
		position: relative;
	}
	.product-card-jumbotron__text__icon__mobile {
		position: absolute;
		top: 0;
		left: 0;
	}
	.product-card-jumbotron__text__title {
		padding-left: 60px;
		display: flex;
		flex-direction: column;
	}
	.product-card-jumbotron__text__title span.product-card-jumbotron__text__title__main {
		margin-bottom: 7px;
	}

	.product-card-jumbotron__text{
		padding-bottom: 0;
	}

	.product-card-jumbotron__text__items {
		flex-direction: column;
		margin-bottom: 23px;
	}
	.product-card-jumbotron__text__item {
		margin-right: 0;
		margin-bottom: 18px;
	}
	.product-card-jumbotron__text__item:last-child {
		margin-bottom: 0;
	}
	.product-card-jumbotron__text__buttons.btn-dekstop {
		display: none;
	}
	.product-card-jumbotron__text__buttons.btn-mobile {
		display: flex;
	}
	.product-card-jumbotron__text__buttons .btn {
		width: 150px;
		margin-right: 20px;
	}
	.product-card-jumbotron__description {
		margin-left: 0;
		padding-top: 0;
		flex-direction: column;
		flex-wrap: wrap;
		margin-bottom: 26px;
		padding-bottom: 0;
		width: 628px;
		max-width: 100%;
	}
	.product-card-jumbotron__description__item {
		width: 100%;
		margin-bottom: 17px;
	}
	/*.product-card-jumbotron__description__item:nth-child(1) {
		order: 1;
	}
	.product-card-jumbotron__description__item:nth-child(2) {
		order: 3;
		padding-left: 10px;
	}
	.product-card-jumbotron__description__item:nth-child(3) {
		order: 2;
		margin-bottom: 0;
	}
	.product-card-jumbotron__description__item:nth-child(4) {
		order: 4;
		padding-left: 10px;
		margin-bottom: 0;
	}*/
	.product-card-jumbotron__description__text {
		width: unset;
	}

	.product-card-jumbotron__description__title, .product-card-jumbotron__description__text{
		display: contents;
	}

	/*.product-card-jumbotron__description__item>.product-card-jumbotron__description__text {
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
	}*/


}
.product-card-modification {
	margin-top: 3px;
	position: relative;
	z-index: 1;
	/*overflow-x: hidden;*/
}
.product-card-modification__title {
	font-weight: 500;
	font-size: 38px;
	line-height: 110%;
	color: #000066;
	margin-bottom: 42px;
}
/*.product-card-modification__block {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 40px;
}*/

.product-card-modification__block{
	display: flex;
	align-items: stretch;
}

.product-card-modification__item-wrap {
	display: flex;
	align-items: center;
	/*height: 394px;*/
	height: 100%;
	flex-direction: column;
	padding: 30px;
	border: 1px solid var(--grey);
	transition: box-shadow 400ms ease-in-out;
	max-width: 100%;
	position: relative;
}

.product-card-modification__item-wrap.open{
	z-index: 100;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
	width: calc(100% + 50px);
	box-shadow: 0px 5px 15px rgb(0 0 102 / 15%);
	height: auto;
	background: #fff;
}

.modification-container{
	position: relative;
	height: 100%;
}

.product-card-modification .tns-ovh{
	overflow: visible;
}

.product-card-page{
	overflow: hidden;
}

/*.product-card-modification .tns-outer{
	overflow-x: hidden;
}*/

.product-card-modification__item-wrap:hover {
	box-shadow: 0 5px 15px var(--shadow);
}
.product-card-modification__item-image {
	/*width: 264px;
	min-width: 264px;
	margin-right: 43px;*/
	width: 100%;
	min-width: 264px;
	margin-bottom: 20px;
	background: no-repeat center;
	background-size: contain;
	padding-top: 57%;
}
.product-card-modification__item-image img {
	max-width: 100%;
}

.product-card-modification__item-text {
	height: 100%;
	overflow: hidden;
}

.product-card-modification__item-text__title {
	font-weight: bold;
	font-size: 24px;
	line-height: 120%;
	color: #000066;
}
.product-card-modification__item-text__subtitle {
	margin-top: -3px;
	font-weight: 500;
	font-size: 13px;
	line-height: 120%;
	color: #000066;
	margin-bottom: 15px;
}
.product-card-modification__item-text__description {
	margin-top: 11px;
	font-weight: normal;
	font-size: 13px;
	line-height: 140%;
	color: #000000;

	/*hyphens: auto;
	word-break: break-word;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;*/
}

/*.product-card-modification__item-text__description .show{
	hyphens: unset;
	word-break: unset;
	overflow: unset;
	display: flex;
	flex-direction: column;
	-webkit-line-clamp: unset;
	-webkit-box-orient: unset;
}*/

.product-card-modification__item-text__description .text-block *{
	font-size: 13px;
}

.product-card-modification__item-text__description .text-block ul{
	margin-top: 0;
}

.product-card-modification__item-text__description .text-block p, .product-card-modification__item-text__description .text-block li{
	margin-bottom: 10px;
}

.product-card-modification__item-text__extra {
	font-weight: normal;
	font-size: 15px;
	line-height: 140%;
	color: #1E1D85;
	margin-bottom: 24px;
}
.product-card-modification__item-text__blocks {
	margin-top: 18px;
	display: flex;
	flex-direction: column;
}
.product-card-modification__item-text__block {
	margin-bottom: 13px;
}
.product-card-modification__item-text__block:last-child {
	margin-bottom: 0;
}
.product-card-modification__item-text__block__title {
	font-weight: 500;
	font-size: 11px;
	line-height: 130%;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #7373BA;
	display: inline-block;
	vertical-align: middle;
	margin-bottom: 5px;
}
.product-card-modification__item-text__block__title svg {
	vertical-align: middle;
	margin-bottom: 3px;
}
.product-card-modification__item-text__block__value {
	font-weight: normal;
	font-size: 15px;
	line-height: 120%;
	color: #000000;
}
.product-card-modification__buttons {
	margin-top: 40px;
}
/*.product-card-modification__buttons .btn-round {
	display: none;
}
.product-card-modification__buttons .btn-mobile {
	display: none;
}*/

/*@media (max-width: 1380px) {
	.product-card-modification__item-image {
		width: 40%;
		min-width: 40%;
		margin-right: 5%;
	}
}*/
@media (max-width: 1150px) {
	.product-card-modification__item-wrap {
		height: unset;
		flex-direction: column;
	}
	/*.product-card-modification__item-image {
		width: 264px;
		min-width: 264px;
		margin-right: auto;
		margin-left: auto;
		margin-bottom: 19px;
	}*/
	.product-card-modification__item-text__title {
		font-size: 20px;
		line-height: 120%;
	}
	.product-card-modification__item-text__subtitle {
		font-size: 13px;
		line-height: 120%;
	}
	.product-card-modification__item-text__description {
		font-size: 13px;
		line-height: 140%;
	}
	.product-card-modification__item-text__extra {
		font-size: 13px;
		line-height: 140%;
	}
	.product-card-modification__item-text__block__title {
		font-size: 11px;
		line-height: 130%;
	}
	.product-card-modification__item-text__block__value {
		font-size: 15px;
		line-height: 120%;
	}
}
@media (max-width: 1020px) {
	.product-card-modification {
		margin-top: 0;
	}
	.product-card-modification__title {
		font-size: 32px;
		margin-bottom: 36px;
	}
	.product-card-modification__block {
		display: flex;
		grid-gap: unset;
		grid-template-columns: unset;
		align-items: flex-start;
		position: relative;
	}
	.product-card-modification__item {
		flex-direction: column;
		align-self: stretch;
	}
	.product-card-modification__item-wrap {
		height: 100%;
		padding: 30px 30px 35px 27px;
	}
	/*.product-card-modification__item-image {
		width: 264px;
		min-width: 264px;
		margin-right: auto;
		margin-left: auto;
		margin-bottom: 14px;
	}*/
	.product-card-modification__item-text__title {
		font-size: 20px;
		line-height: 120%;
	}
	.product-card-modification__item-text__subtitle {
		font-size: 13px;
		line-height: 120%;
		margin-top: -1px;
		margin-bottom: 17px;
	}
	.product-card-modification__item-text__description {
		font-size: 13px;
		line-height: 140%;
		margin-top: 7px;
	}
	.product-card-modification__item-text__extra {
		font-size: 13px;
		line-height: 140%;
	}
	.product-card-modification__item-text__blocks {
		margin-top: 24px;
	}
	.product-card-modification__item-text__block__title {
		font-size: 11px;
		line-height: 130%;
	}
	.product-card-modification__item-text__block__value {
		font-size: 15px;
		line-height: 120%;
	}
	.product-card-modification__buttons {
		display: flex;
		margin-top: 29px;
		align-items: center;
	}
	.product-card-modification__buttons .btn-round {
		display: block;
		margin-right: 8px;
	}
	.product-card-modification__buttons .btn-dekstop {
		margin-left: auto;
	}
}
@media (max-width: 767px) {
	.product-card-modification {
		margin-top: 0;
	}
	.product-card-modification__title {
		font-size: 25px;
		margin-bottom: 29px;
	}
	.product-card-modification__block {
		display: flex;
		grid-gap: unset;
		grid-template-columns: unset;
		align-items: flex-start;
		position: relative;
	}
	.product-card-modification__item {
		flex-direction: column;
		align-self: stretch;
	}
	.product-card-modification__item-wrap {
		height: 100%;
		padding: 30px 30px 35px 27px;
	}
	/*.product-card-modification__item-image {
		width: 264px;
		min-width: 264px;
		margin-right: auto;
		margin-left: auto;
		margin-bottom: 14px;
	}*/
	.product-card-modification__item-text__title {
		font-size: 20px;
		line-height: 120%;
	}
	.product-card-modification__item-text__subtitle {
		font-size: 13px;
		line-height: 120%;
		margin-top: -1px;
		margin-bottom: 17px;
	}
	.product-card-modification__item-text__description {
		font-size: 13px;
		line-height: 140%;
		margin-top: 7px;
	}
	.product-card-modification__item-text__extra {
		font-size: 13px;
		line-height: 140%;
	}
	.product-card-modification__item-text__blocks {
		margin-top: 24px;
	}
	.product-card-modification__item-text__block__title {
		font-size: 11px;
		line-height: 130%;
	}
	.product-card-modification__item-text__block__value {
		font-size: 15px;
		line-height: 120%;
	}
	.product-card-modification__buttons {
		flex-wrap: wrap;
	}
	.product-card-modification__buttons .btn:last-child {
		margin-left: 0;
	}
	.product-card-modification__buttons .btn-mobile {
		display: block;
		margin-top: 31px;
	}
	.product-card-modification__buttons .btn-dekstop {
		display: none;
	}
}
.product-card-advantages__wrap {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

/*.product-card-advantages .container{
	max-width: 1156px;
}*/

.product-card-advantages__content__title {
	font-weight: 500;
	font-size: 28px;
	line-height: 110%;
	color: #000066;
	margin-bottom: 32px;
}
.product-card-advantages__content__item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 19px;
}
.product-card-advantages__content__item__number {
	font-weight: bold;
	font-size: 17px;
	line-height: 140%;
	color: #000066;
	width: 29px;
	min-width: 29px;
	text-align: right;
}
.product-card-advantages__content__item__text {
	margin-left: 18px;
	font-weight: normal;
	font-size: 17px;
	line-height: 140%;
	color: #000000;
}
.product-card-advantages__content__btn {
	margin-top: 0px;
	padding-bottom: 3px;
}
.product-card-advantages__banner {
	margin-left: 39px;
	position: relative;
	width: 407px;
	min-width: 407px;
	height: 370px;
}
.product-card-advantages__banner__image {
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: 0px -30px;
	background-size: cover;
}
.product-card-advantages__banner-text {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;
	padding-left: 35px;
	padding-bottom: 63px;
	padding-right: 20px;
}
.product-card-advantages__banner-text__title {
	font-weight: 500;
	font-size: 28px;
	line-height: 120%;
	color: #FFFFFF;
	margin-bottom: 26px;
}
@media (max-width: 1020px) {
	.product-card-advantages__wrap {
		flex-direction: column;
	}
	.product-card-advantages__content__title {
		font-size: 20px;
		line-height: 110%;
		margin-bottom: 25px;
	}
	.product-card-advantages__content__item {
		margin-bottom: 15px;
	}
	.product-card-advantages__content__item__number {
		font-size: 15px;
		line-height: 140%;
		width: 21px;
		min-width: 21px;
	}
	.product-card-advantages__content__item__text {
		font-size: 15px;
		line-height: 140%;
	}
	.product-card-advantages__content__btn {
		margin-top: 0px;
	}
	.product-card-advantages__banner {
		margin-top: 80px;
		margin-left: 0;
		width: 100%;
		height: 200px;
	}
	.product-card-advantages__banner__image {
		background-size: 100%;
		background-position: 0 -130px;
	}
	.product-card-advantages__banner-text {
		padding-bottom: 59px;
	}
	.product-card-advantages__banner-text__title {
		font-size: 20px;
		line-height: 120%;
	}
}
@media (max-width: 640px) {
	.product-card-advantages__wrap {
		flex-direction: column;
	}
	.product-card-advantages__content__title {
		font-size: 20px;
		line-height: 110%;
		margin-bottom: 31px;
	}
	.product-card-advantages__content__item {
		margin-bottom: 15px;
	}
	.product-card-advantages__content__item__number {
		font-size: 15px;
		line-height: 140%;
		width: 12px;
		min-width: 12px;
	}
	.product-card-advantages__content__item__text {
		font-size: 15px;
		line-height: 140%;
	}
	.product-card-advantages__content__btn {
		margin-top: 0px;
	}
	.product-card-advantages__banner {
		margin-top: 60px;
		margin-left: 0;
		width: 100%;
		min-width: unset;
		height: 370px;
	}
	.product-card-advantages__banner__image {
		background-size: auto 100%;
		background-position: -27px 0px;
	}
	.product-card-advantages__banner-text {
		padding-bottom: 61px;
		padding-left: 30px;
		padding-right: 30px;
	}
	.product-card-advantages__banner-text__title {
		font-size: 20px;
		line-height: 120%;
		margin-bottom: 30px;
	}
}
.product-card-sertificates {
	background-color: var(--light-grey);
	padding-top: 90px;
	padding-bottom: 101px;
	overflow: hidden;
}
.product-card-sertificates__title {
	font-weight: 500;
	font-size: 38px;
	line-height: 100%;
	color: var(--dark-blue);
	margin-bottom: 56px;
}
.product-card-sertificates__wrap {
	max-width: 1380px;
	padding-left: 40px;
	padding-right: 40px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.product-card-sertificates .tns-ovh {
	overflow: visible;
}
.product-card-sertificates ul {
	list-style: none;
}
.product-card-sertificates ul li {
	line-height: 143%;
}
.product-card-sertificates .product-card-sertificates-slider__control {
	margin-top: 28px;
}
.product-card-sertificates .product-card-sertificates-slider__control .btn-mobile {
	display: none;
}
.product-card-sertificates .product-card-sertificates-slider__control button:first-child {
	margin-right: 6px;
}
.product-card-sertificates .product-card-sertificates-slider__control button:nth-child(2) {
	margin-right: 13px;
}
@media (max-width: 1023px) {
	.product-card-sertificates {
		padding-top: 57px;
		padding-bottom: 60px;
	}
	.product-card-sertificates__title {
		font-size: 32px;
		margin-bottom: 36px;
		line-height: 120%;
	}
	.product-card-sertificates__wrap {
		padding-left: 30px;
		padding-right: 30px;
	}
	.product-card-sertificates .product-card-sertificates-slider__control {
		margin-top: 31px;
	}
}
@media (max-width: 767px) {
	.product-card-sertificates__title {
		font-size: 25px;
		margin-bottom: 30px;
		line-height: 110%;
	}
	.product-card-sertificates__wrap {
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media (max-width: 479px) {
	.product-card-sertificates .product-card-sertificates-slider__control {
		margin-top: 32px;
	}
	.product-card-sertificates .product-card-sertificates-slider__control .btn-mobile {
		display: inline-flex;
	}
}

.product-card-sertificates__item {
	width: 100%;
	opacity: 0.3;
	transition: 0.3s ease-in-out;
}
.product-card-sertificates__item__wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 30px 25px;
	background-color: var(--white);
	text-decoration: none;
	transition: 0.3s ease-in-out;
}
.product-card-sertificates__item__wrap:hover {
	box-shadow: 0 5px 15px var(--shadow);
}
.product-card-sertificates__item-image {
	width: 100%;
	min-width: 100px;
	height: auto;
	margin-bottom: 20px;
	transition: .3s;
	border: 1px solid #DEDEF4;
}

.product-card-sertificates__item-image:hover {
	transform: scale(1.63);
	filter: drop-shadow(0px 5px 15px rgba(0, 0, 102, 0.15));
}

.product-card-sertificates__item-image img {
	object-fit: contain;
	width: 100%;
	height: 100%;
}
.product-card-sertificates__item-content {
	/*padding-left: 25px;*/
	display: flex;
	flex-direction: column;
}
.product-card-sertificates__item__title {
	font-weight: 500;
	font-size: 18px;
	line-height: 120%;
	color: var(--dark-blue);
	margin-bottom: 10px;
}
.product-card-sertificates__item__subtitle {
	margin-top: -5px;
	font-weight: 500;
	font-size: 12px;
	line-height: 150%;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #7373BA;
	margin-bottom: 13px;
}
.product-card-sertificates__item__description ul {
	font-weight: normal;
	font-size: 14px;
	line-height: 140%;
	color: var(--black);
}
.product-card-sertificates__item.tns-slide-active {
	transition: 0.3s ease-in-out;
	opacity: 1;
}
@media (max-width: 1023px) {
	.product-card-sertificates__item__title {
		font-size: 15px;
		margin-bottom: 10px;
	}
	.product-card-sertificates__item__description ul {
		font-size: 13px;
	}
	/*.product-card-sertificates__item-image {
		width: 106px;
		min-width: 106px;
	}*/
	.product-card-sertificates__item__subtitle {
		font-size: 11px;
		margin-bottom: 9px;
	}
}
@media (max-width: 479px) {
	/*.product-card-sertificates__item-image {
		width: 100px;
		min-width: 100px;
	}*/
}

.product-card-tabs {
	padding-bottom: 100px;
}
.product-card-tabs__wrap {
	width: 100%;
	max-width: 1076px;
	margin-left: auto;
	margin-right: auto;
}
.product-card-tabs__head {
	margin-bottom: 50px;
}
.product-card-tabs__banner {
	margin-top: 100px;
	display: flex;
	align-items: center;
	height: 326px;
	background: #1E1D85;
	padding-bottom: 0px;
}
.product-card-tabs__banner-text {
	flex-grow: 1;
	padding-top: 38px;
	padding-left: 40px;
	align-self: stretch;
	padding-bottom: 42px;
}
.product-card-tabs__banner-text__title {
	font-weight: 500;
	font-size: 28px;
	line-height: 120%;
	color: #FFFFFF;
	margin-bottom: 14px;
}
.product-card-tabs__banner-text__description {
	font-weight: normal;
	font-size: 15px;
	line-height: 140%;
	color: #FFFFFF;
	max-width: 445px;
	margin-bottom: 17px;
}
.product-card-tabs__banner-text__link {
	font-size: 15px;
	line-height: 140%;
	font-weight: 400;
	text-decoration: none;
	color: #FFFFFF;
	display: flex;
	align-items: center;
}
.product-card-tabs__banner-text__link svg {
	transform: rotate(-90deg);
	margin-left: 13px;
}
.product-card-tabs__banner__image {
	width: 296px;
	min-width: 296px;
}
.product-card-tabs .home-faq-item {
	border: 0;
	border-top: 1px solid var(--border);
	padding-top: 27px;
	padding-bottom: 28px;
	transition-property: padding-top, padding-bottom;
	transition-duration: 400ms;
	transition-timing-function: ease-in-out;
	margin: 0;
}
.product-card-tabs .home-faq-item:last-child {
	border-bottom: 1px solid var(--border);
}
.product-card-tabs .home-faq-item__header {
	display: flex;
}
.product-card-tabs .home-faq-item__title {
	font-size: 17px;
	font-weight: 500;
	flex-grow: 1;
}
.product-card-tabs .home-faq-item__content {
	padding-top: 21px;
	padding-bottom: 10px;
	line-height: 1.4;
}
.product-card-tabs .home-faq-item__content ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0px;
}
.product-card-tabs .home-faq-item__content ul li {
	padding-left: 23px;
	position: relative;
	font-weight: normal;
	font-size: 17px;
	line-height: 140%;
	color: var(--black);
	margin-bottom: 20px;
}
.product-card-tabs .home-faq-item__content ul li::after {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	display: block;
	background-color: var(--red);
	border-radius: 100%;
}
.product-card-tabs .home-faq-item__content ul li:last-child {
	margin-bottom: 0;
}
.product-card-tabs .home-faq-item__state {
	width: 18px;
	height: 18px;
	margin-left: var(--space-md);
	position: relative;
	color: var(--primary);
	align-self: center;
	transition: color 400ms ease-in-out, align-self 400ms ease-in-out;
	flex-shrink: 0;
}
.product-card-tabs .home-faq-item__state:before, .product-card-tabs .home-faq-item__state:after {
	content: "";
	position: absolute;
	background-color: currentColor;
	border-radius: 5px;
}
.product-card-tabs .home-faq-item__state:before {
	left: 0;
	right: 0;
	top: 50%;
	margin-top: -1px;
	height: 2px;
}
.product-card-tabs .home-faq-item__state:after {
	top: 0;
	bottom: 0;
	left: 50%;
	margin-left: -1px;
	width: 2px;
	transition: opacity 250ms ease-in-out;
}
.product-card-tabs .home-faq-item.active {
	padding-top: 25px;
	padding-bottom: 22px;
}
.product-card-tabs .home-faq-item.active .home-faq-item__state {
	align-self: flex-end;
	color: var(--accent);
}
.product-card-tabs .home-faq-item.active .home-faq-item__state:after {
	opacity: 0;
}
@media (min-width: 768px) {
	.product-card-tabs .home-faq-item__title {
		font-size: 20px;
	}
}
@media (min-width: 1024px) {
	.product-card-tabs__title {
		margin-bottom: 40px;
	}
	.product-card-tabs .home-faq-item__title {
		font-size: 24px;
	}
}
.product-card-tabs .technology-list {
	display: flex;
	flex-direction: column;
	width: 100%;
}
.product-card-tabs .technology-list__item {
	border-top: 1px solid var(--border);
	padding: 22px;
	display: grid;
	grid-template-columns: 284px 1fr;
	grid-gap: 30px;
}
.product-card-tabs .technology-list__item:last-child {
	border-bottom: 1px solid var(--border);
}
.product-card-tabs .technology-list__item__title {
	font-weight: 500;
	font-size: 15px;
	line-height: 140%;
	color: #1E1D85;
}
.product-card-tabs .technology-list__item__value {
	font-weight: normal;
	font-size: 15px;
	line-height: 140%;
	color: #000000;
}
.product-card-tabs .technology-list__item__value p {
	margin-bottom: 5px;
}
.product-card-tabs .technology-list__item__value p:last-child {
	margin-bottom: 0;
}
.product-card-tabs .technology-list__item__value p + ul {
	margin-top: 15px;
}
.product-card-tabs .technology-list__item__value ul {
	list-style: none;
	padding-left: 0;
	flex-grow: 1;
}
.product-card-tabs .technology-list__item__value ul li {
	padding-left: 21px;
	position: relative;
	font-weight: normal;
	font-size: 15px;
	line-height: 140%;
	color: var(--black);
	margin-bottom: 7px;
}
.product-card-tabs .technology-list__item__value ul li::after {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	display: block;
	background-color: var(--red);
	border-radius: 100%;
}
.product-card-tabs .technology-list__item__value ul li:last-child {
	margin-bottom: 0;
}
.product-card-tabs .exploitation {
	padding-top: 15px;
	padding-bottom: 25px;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}
.product-card-tabs .exploitation__item {
	margin-bottom: 30px;
}
.product-card-tabs .exploitation__item:last-child {
	margin-bottom: 0;
}
.product-card-tabs .exploitation__item__title, .exploitation h3{
	font-weight: bold;
	font-size: 24px;
	line-height: 150%;
	color: #000066;
	margin-bottom: 13px;
}

.exploitation h3{
	margin-top: 30px;
}

.exploitation h3:first-child{
	margin-top: 0;
}

.product-card-tabs .exploitation__item__list, .exploitation li{
	margin-bottom: 15px;
}
.product-card-tabs .exploitation__item__list:last-child, .exploitation li:last-child{
	margin-bottom: 0;
}
.product-card-tabs .exploitation__item__list ul, .exploitation ul {
	list-style: none;
	padding-left: 0;
	flex-grow: 1;
}
.product-card-tabs .exploitation__item__list ul li, .exploitation li {
	padding-left: 21px;
	position: relative;
	font-weight: normal;
	font-size: 15px;
	line-height: 140%;
	color: var(--black);
	margin-bottom: 7px;
}
.product-card-tabs .exploitation__item__list ul li::after, .exploitation li:after {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	display: block;
	background-color: var(--red);
	border-radius: 100%;
}
.product-card-tabs .exploitation__item__list ul li:last-child, .exploitation li:last-child {
	margin-bottom: 0;
}
.product-card-tabs .exploitation__item__text p, .exploitation p {
	font-weight: normal;
	font-size: 17px;
	line-height: 140%;
	color: #000000;
	margin-bottom: 14px;
}
.product-card-tabs .exploitation__item__text p:last-child, .exploitation p:last-child{
	margin-bottom: 0;
}
.product-card-tabs .exploitation__item__text p a, .exploitation p a{
	font-weight: normal;
}

@media (max-width: 1020px) {

	.product-text-wrap + .product-card-tabs {
		padding-top: 83px;
	}

	.product-card-tabs {
		padding-bottom: 80px;
	}
	.product-card-tabs__head {
		margin-bottom: 31px;
	}
	.product-card-tabs__head-item:not(:last-child) {
		margin-right: 42px;
	}
	.product-card-tabs__banner {
		margin-top: 77px;
	}
	.product-card-tabs__banner-text {
		flex-grow: 1;
		padding-top: 38px;
		padding-left: 40px;
		padding-bottom: 45px;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	.product-card-tabs__banner-text__title {
		font-size: 20px;
		line-height: 120%;
		margin-bottom: 14px;
	}
	.product-card-tabs__banner-text__description {
		flex-grow: 1;
		font-size: 13px;
	}
	.product-card-tabs .home-faq-item {
		border: 0;
		border-top: 1px solid var(--border);
		padding-top: 27px;
		padding-bottom: 33px;
		transition-property: padding-top, padding-bottom;
		transition-duration: 400ms;
		transition-timing-function: ease-in-out;
		margin: 0;
	}
	.product-card-tabs .home-faq-item:last-child {
		border-bottom: 1px solid var(--border);
	}
	.product-card-tabs .home-faq-item__header {
		display: flex;
	}
	.product-card-tabs .home-faq-item__title {
		font-size: 17px;
		font-weight: 500;
		flex-grow: 1;
	}
	.product-card-tabs .home-faq-item__content {
		padding-top: 16px;
		padding-bottom: 10px;
		line-height: 1.4;
	}
	.product-card-tabs .home-faq-item__content ul {
		list-style: none;
		padding-left: 0;
		margin-bottom: 0px;
	}
	.product-card-tabs .home-faq-item__content ul li {
		padding-left: 23px;
		position: relative;
		font-weight: normal;
		font-size: 15px;
		line-height: 140%;
		color: var(--black);
		margin-bottom: 15px;
	}
	.product-card-tabs .home-faq-item__content ul li::after {
		content: "";
		position: absolute;
		left: 0;
		top: 8px;
		width: 8px;
		height: 8px;
		display: block;
		background-color: var(--red);
		border-radius: 100%;
	}
	.product-card-tabs .home-faq-item__content ul li:last-child {
		margin-bottom: 0;
	}
	.product-card-tabs .home-faq-item__state {
		width: 18px;
		height: 18px;
		margin-left: var(--space-md);
		position: relative;
		color: var(--primary);
		align-self: center;
		transition: color 400ms ease-in-out, align-self 400ms ease-in-out;
		flex-shrink: 0;
	}
	.product-card-tabs .home-faq-item__state:before, .product-card-tabs .home-faq-item__state:after {
		content: "";
		position: absolute;
		background-color: currentColor;
		border-radius: 5px;
	}
	.product-card-tabs .home-faq-item__state:before {
		left: 0;
		right: 0;
		top: 50%;
		margin-top: -1px;
		height: 2px;
	}
	.product-card-tabs .home-faq-item__state:after {
		top: 0;
		bottom: 0;
		left: 50%;
		margin-left: -1px;
		width: 2px;
		transition: opacity 250ms ease-in-out;
	}
	.product-card-tabs .home-faq-item.active {
		padding-top: 28px;
		padding-bottom: 22px;
	}
	.product-card-tabs .home-faq-item.active .home-faq-item__state {
		align-self: flex-end;
		color: var(--accent);
	}
	.product-card-tabs .home-faq-item.active .home-faq-item__state:after {
		opacity: 0;
	}
}
@media (max-width: 1020px) and (min-width: 768px) {
	.product-card-tabs .home-faq-item__title {
		font-size: 20px;
	}
}
@media (max-width: 1020px) and (min-width: 1024px) {
	.product-card-tabs__title {
		margin-bottom: 40px;
	}
	.product-card-tabs .home-faq-item__title {
		font-size: 24px;
	}
}
@media (max-width: 1020px) {
	.product-card-tabs .technology-list__item {
		padding: 20px 0 20px 0;
		grid-template-columns: 278px 1fr;
		grid-gap: 30px;
	}
	.product-card-tabs .technology-list__item:last-child {
		border-bottom: 1px solid var(--border);
	}
	.product-card-tabs .technology-list__item__title {
		font-size: 13px;
		line-height: 140%;
	}
	.product-card-tabs .technology-list__item__value {
		font-weight: normal;
		font-size: 13px;
		line-height: 140%;
		color: #000000;
	}
	.product-card-tabs .technology-list__item__value p {
		margin-bottom: 8px;
	}
	.product-card-tabs .technology-list__item__value p:last-child {
		margin-bottom: 0;
	}
	.product-card-tabs .technology-list__item__value p + ul {
		margin-top: 15px;
	}
	.product-card-tabs .technology-list__item__value ul li {
		font-size: 13px;
		line-height: 140%;
	}
	.product-card-tabs .technology-list__item__value ul li::after {
		top: 6px;
	}
	.product-card-tabs .technology-list__item__value ul li:last-child {
		margin-bottom: 0;
	}
}
@media (max-width: 1020px) {
	.product-card-tabs .exploitation {
		padding-top: 22px;
	}
	.product-card-tabs .exploitation__item {
		margin-bottom: 27px;
	}
	.product-card-tabs .exploitation__item:last-child {
		margin-bottom: 0;
	}
	.product-card-tabs .exploitation__item__title, .exploitation h3{
		font-size: 20px;
		line-height: 150%;
	}
	.product-card-tabs .exploitation__item__list, .exploitation li {
		margin-bottom: 13px;
	}
	.product-card-tabs .exploitation__item__list:last-child, .exploitation li {
		margin-bottom: 0;
	}
	.product-card-tabs .exploitation__item__list ul,  .exploitation ul{
		list-style: none;
		padding-left: 0;
		flex-grow: 1;
	}
	.product-card-tabs .exploitation__item__list ul li, .exploitation li {
		padding-left: 21px;
		position: relative;
		font-weight: normal;
		font-size: 15px;
		line-height: 140%;
		color: var(--black);
		margin-bottom: 7px;
	}
	.product-card-tabs .exploitation__item__list ul li::after, .exploitation li:after {
		content: "";
		position: absolute;
		left: 0;
		top: 8px;
		width: 8px;
		height: 8px;
		display: block;
		background-color: var(--red);
		border-radius: 100%;
	}
	.product-card-tabs .exploitation__item__list ul li:last-child, .exploitation li:last-child {
		margin-bottom: 0;
	}
	.product-card-tabs .exploitation__item__text p, .exploitation p {
		font-weight: normal;
		font-size: 15px;
		line-height: 140%;
		color: #000000;
		margin-bottom: 14px;
	}
	.product-card-tabs .exploitation__item__text p:last-child, .exploitation p:last-child{
		margin-bottom: 0;
	}
	.product-card-tabs .exploitation__item__text p a {
		font-weight: normal;
	}
}
@media (max-width: 767px) {
	.product-text-wrap + .product-card-tabs {
		padding-top: 66px;
	}
	.product-card-tabs__head {
		margin-bottom: 28px;
		flex-wrap: wrap;
	}
	.product-card-tabs__head-item {
		margin-top: 17px;
	}
	.product-card-tabs__head-item:not(:last-child) {
		margin-right: 24px;
	}
	.product-card-tabs__banner {
		margin-top: 88px;
		height: unset;
	}
	.product-card-tabs__banner-text {
		flex-grow: 1;
		padding-top: 38px;
		padding-left: 29px;
		padding-bottom: 45px;
		padding-right: 26px;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	.product-card-tabs__banner-text__title {
		font-size: 20px;
		line-height: 120%;
		margin-bottom: 14px;
	}
	.product-card-tabs__banner-text__description {
		flex-grow: 1;
		font-size: 13px;
		margin-bottom: 28px;
	}
	.product-card-tabs__banner__image {
		display: none;
	}
	.product-card-tabs .home-faq-item {
		border: 0;
		border-top: 1px solid var(--border);
		padding-top: 27px;
		padding-bottom: 27px;
		transition-property: padding-top, padding-bottom;
		transition-duration: 400ms;
		transition-timing-function: ease-in-out;
		margin: 0;
	}
	.product-card-tabs .home-faq-item:last-child {
		border-bottom: 1px solid var(--border);
	}
	.product-card-tabs .home-faq-item__header {
		display: flex;
	}
	.product-card-tabs .home-faq-item__title {
		font-size: 17px;
		font-weight: 500;
		flex-grow: 1;
	}
	.product-card-tabs .home-faq-item__content {
		padding-top: 16px;
		padding-bottom: 10px;
		line-height: 1.4;
	}
	.product-card-tabs .home-faq-item__content ul li:last-child {
		margin-bottom: 0;
	}
	.product-card-tabs .home-faq-item.active {
		padding-top: 28px;
		padding-bottom: 36px;
	}
	.product-card-tabs .home-faq-item.active .home-faq-item__state {
		align-self: center;
		color: var(--accent);
	}
	.product-card-tabs .home-faq-item.active .home-faq-item__state:after {
		opacity: 0;
	}
}
@media (max-width: 767px) and (min-width: 768px) {
	.product-card-tabs .home-faq-item__title {
		font-size: 20px;
	}
}
@media (max-width: 767px) and (min-width: 1024px) {
	.product-card-tabs__title {
		margin-bottom: 40px;
	}
	.product-card-tabs .home-faq-item__title {
		font-size: 24px;
	}
}
@media (max-width: 767px) {
	.product-card-tabs .technology-list__item {
		padding: 20px 0 20px 0;
		grid-template-columns: 1fr;
		grid-gap: 6px;
	}
	.product-card-tabs .technology-list__item:last-child {
		border-bottom: 1px solid var(--border);
	}
	.product-card-tabs .technology-list__item__title {
		font-size: 13px;
		line-height: 140%;
	}
	.product-card-tabs .technology-list__item__value {
		font-weight: normal;
		font-size: 13px;
		line-height: 140%;
		color: #000000;
	}
	.product-card-tabs .technology-list__item__value p {
		margin-bottom: 8px;
	}
	.product-card-tabs .technology-list__item__value p:last-child {
		margin-bottom: 0;
	}
	.product-card-tabs .technology-list__item__value p + ul {
		margin-top: 15px;
	}
	.product-card-tabs .technology-list__item__value ul li {
		font-size: 13px;
		line-height: 140%;
	}
	.product-card-tabs .technology-list__item__value ul li::after {
		top: 6px;
	}
	.product-card-tabs .technology-list__item__value ul li:last-child {
		margin-bottom: 0;
	}
}
.product-card-video-slider {
	background-color: var(--light-grey);
	padding-top: 85px;
	padding-bottom: 101px;
	overflow: hidden;
}
.product-card-video-slider__title {
	font-weight: 500;
	font-size: 38px;
	line-height: 100%;
	color: var(--dark-blue);
	margin-bottom: 56px;
}
.product-card-video-slider__wrap {
	max-width: 1380px;
	padding-left: 40px;
	padding-right: 40px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.product-card-video-slider .tns-ovh {
	overflow: visible;
}
.product-card-video-slider ul {
	list-style: none;
}
.product-card-video-slider ul li {
	line-height: 143%;
}
/*.product-card-video-slider .product-card-video-slider-slider__control*/.control-wrap {
	margin-top: 14px;
}
.product-card-video-slider .product-card-video-slider-slider__control button:first-child {
	margin-right: 6px;
}
.product-card-video-slider .product-card-video-slider-slider__control button:nth-child(2) {
	margin-right: 13px;
}
@media (max-width: 1023px) {
	.product-card-video-slider {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.product-card-video-slider__title {
		font-size: 32px;
		margin-bottom: 32px;
		line-height: 120%;
	}
	.product-card-video-slider__wrap {
		padding-left: 30px;
		padding-right: 30px;
	}
	/*.product-card-video-slider .product-card-video-slider-slider__control*/.control-wrap {
		margin-top: 17px;
	}
}
@media (max-width: 767px) {
	.product-card-video-slider__title {
		font-size: 25px;
		margin-bottom: 30px;
		line-height: 110%;
	}
	.product-card-video-slider__wrap {
		padding-left: 20px;
		padding-right: 20px;
	}
}
.product-card-video-slider__item {
	width: 100%;
	opacity: 0.3;
	transition: 0.3s ease-in-out;
}
.product-card-video-slider__item__wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-decoration: none;
}
.product-card-video-slider__item-image {
	width: 100%;
	margin-bottom: 17px;
}
.product-card-video-slider__item-image img {
	object-fit: contain;
	max-width: 100%;
	max-height: 100%;
}
.product-card-video-slider__item-content {
	padding-left: 25px;
	display: flex;
	flex-direction: column;
}
.product-card-video-slider__item__title {
	font-weight: 500;
	font-size: 18px;
	line-height: 120%;
	color: var(--dark-blue);
	margin-bottom: 10px;
}
.product-card-video-slider__item__subtitle {
	margin-top: -5px;
	font-weight: 500;
	font-size: 12px;
	line-height: 150%;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #7373BA;
	margin-bottom: 13px;
}
.product-card-video-slider__item__description ul {
	font-weight: normal;
	font-size: 14px;
	line-height: 140%;
	color: var(--black);
}
.product-card-video-slider__item.tns-slide-active {
	transition: 0.3s ease-in-out;
	opacity: 1;
}
@media (max-width: 1023px) {
	.product-card-video-slider__item__title {
		font-size: 15px;
		margin-bottom: 10px;
	}
	.product-card-video-slider__item__description ul {
		font-size: 13px;
	}
	.product-card-video-slider__item__subtitle {
		font-size: 11px;
		margin-bottom: 9px;
	}
	.product-card-video-slider__item-image {
		margin-bottom: 13px;
	}
}
@media (max-width: 479px) {
	.product-card-video-slider__item-image {
		margin-bottom: 17px;
	}
}

.product-card-items-slider {
	/*padding-top: 103px;
	padding-bottom: 101px;*/
	margin-top: 103px;
	margin-bottom: 101px;
	overflow: hidden;
}
.product-card-items-slider__title {
	font-weight: 500;
	font-size: 38px;
	line-height: 100%;
	color: var(--dark-blue);
	margin-bottom: 56px;
}
.product-card-items-slider__wrap {
	max-width: 1380px;
	padding-left: 40px;
	padding-right: 40px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.product-card-items-slider .tns-ovh {
	overflow: visible;
}
.product-card-items-slider ul {
	list-style: none;
}
.product-card-items-slider ul li {
	line-height: 143%;
}
.product-card-items-slider-slider {
	display: flex;
}
.product-card-items-slider .product-card-items-slider__control {
	margin-top: 31px;
}
.product-card-items-slider .product-card-items-slider__control button:first-child {
	margin-right: 6px;
}
.product-card-items-slider .product-card-items-slider__control button:nth-child(2) {
	margin-right: 13px;
}
@media (max-width: 1023px) {
	.product-card-items-slider {
		/*padding-top: 80px;
		padding-bottom: 60px;*/
		margin-top: 80px;
		margin-bottom: 60px;
	}
	.product-card-items-slider__title {
		font-size: 32px;
		margin-bottom: 39px;
		line-height: 120%;
	}
	.product-card-items-slider__wrap {
		padding-left: 30px;
		padding-right: 30px;
	}
	.product-card-items-slider .product-card-items-slider-slider__control {
		margin-top: 17px;
	}
}
@media (max-width: 767px) {
	.product-card-items-slider__title {
		font-size: 25px;
		margin-bottom: 30px;
		line-height: 110%;
	}
	.product-card-items-slider__wrap {
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media (max-width: 479px) {
	.product-card-items-slider__title {
		font-size: 25px;
		margin-bottom: 30px;
		line-height: 120%;
	}
	.product-card-items-slider .product-card-items-slider-slider__control {
		margin-top: 26px;
	}
}

.product-card-items-slider__item {
	width: 100%;
	opacity: 0.3;
	align-self: stretch;
	transition: 0.3s ease-in-out;
}
.product-card-items-slider__item__wrap {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	min-height: 292px;
	padding: 30px 30px;
	background-color: var(--white);
	text-decoration: none;
	transition: 0.3s ease-in-out;
	border: 1px solid var(--border);
}
.product-card-items-slider__item__wrap:hover {
	box-shadow: 0 5px 15px var(--shadow);
}
.product-card-items-slider__item-content {
	padding-left: 25px;
	display: flex;
	flex-direction: column;
}
.product-card-items-slider__item__title {
	font-weight: bold;
	font-size: 24px;
	line-height: 120%;
	color: #000066;
	margin-bottom: 10px;
}
.product-card-items-slider__item__description {
	font-weight: normal;
	font-size: 15px;
	line-height: 140%;
	color: #000000;
	padding-left: 2px;
	flex-grow: 1;
}
.product-card-items-slider__item__icon {
	padding-left: 2px;
}
.product-card-items-slider__item.tns-slide-active {
	transition: 0.3s ease-in-out;
	opacity: 1;
}
@media (max-width: 1023px) {
	.product-card-items-slider__item__wrap {
		min-height: 294px;
	}
	.product-card-items-slider__item__title {
		font-size: 20px;
		line-height: 120%;
		margin-bottom: 13px;
	}
	.product-card-items-slider__item__description {
		font-size: 13px;
		line-height: 140%;
	}
	.product-card-items-slider__item-image {
		margin-bottom: 13px;
	}
}
@media (max-width: 479px) {
	.product-card-items-slider__item__wrap {
		padding: 26px 30px 30px;
	}
	.product-card-items-slider__item-image {
		margin-bottom: 17px;
	}
}

.product-card-page .product-card-modification {
	padding-bottom: 100px;
}
.product-card-page .product-card-advantages {
	margin-bottom: 100px;
}
.product-card-page .home-contact-form {
	margin: 100px 0;
}

.product-card-page .breadcrumb{
	margin-bottom: 30px;
}

@media (max-width: 1020px) {
	.product-card-page .product-card-modification {
		padding-bottom: 80px;
	}
	.product-card-page .product-card-advantages {
		margin-bottom: 80px;
	}
	.product-card-page .home-contact-form {
		/*margin-top: 18px;*/
		margin: 80px 0;
	}
}
@media (max-width: 767px) {
	/*.product-card-page .home-contact-form {
		margin-top: 15px;
		margin-bottom: 80px;
	}*/
}
.industry-card-jumbotron .jumbotron {
	min-height: 450px;
}
.industry-card-jumbotron__wrap {
	padding-top: 69px;
	padding-left: 54px;
}
.industry-card-jumbotron__text {
	display: flex;
	align-items: flex-start;
}
.industry-card-jumbotron__text__icon {
	width: 128px;
	min-width: 128px;
	margin-right: 40px;
	height: 130px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.industry-card-jumbotron__text__icon__mobile {
	display: none;
}
.industry-card-jumbotron__text__icon img {
	width: 100%;
}
.industry-card-jumbotron__text__title {
	margin-top: 20px;
	font-weight: 500;
	font-size: 28px;
	line-height: 120%;
	color: #FFFFFF;
	margin-bottom: 19px;
}
.industry-card-jumbotron__text__description {
	font-weight: normal;
	font-size: 15px;
	line-height: 140%;
	color: #FFFFFF;
	max-width: 630px;
	margin-bottom: 34px;
}
.industry-card-jumbotron__text__buttons .btn:first-child {
	width: 227px;
	margin-right: 16px;
}
.industry-card-jumbotron__text__buttons .btn:last-child {
	width: 184px;
}
.industry-card-jumbotron .btn-mobile {
	display: none;
}

@media (max-width: 1020px) {
	.industry-card-jumbotron .jumbotron {
		min-height: 369px;
	}
	.industry-card-jumbotron__wrap {
		padding-left: 0;
		padding-top: 63px;
	}
	.industry-card-jumbotron__text__icon {
		width: 66px;
		height: 66px;
		min-width: 66px;
		margin-right: 27px;
		display: none;
	}
	.industry-card-jumbotron__text__icon__mobile {
		width: 66px;
		height: 66px;
		min-width: 66px;
		margin-right: 27px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.industry-card-jumbotron__text__title {
		margin-top: 10px;
		font-size: 20px;
		line-height: 120%;
		margin-bottom: 15px;
	}
	.industry-card-jumbotron__text__description {
		font-size: 13px;
		line-height: 140%;
		max-width: 599px;
	}
	.industry-card-jumbotron__text__buttons .btn {
		font-size: 15px;
		height: 42px;
	}
	.industry-card-jumbotron__text__buttons .btn:first-child {
		width: 190px;
		margin-right: 8px;
	}
	.industry-card-jumbotron__text__buttons .btn:last-child {
		width: 152px;
		padding-left: 0;
		padding-right: 0;
	}
}
@media (max-width: 767px) {
	.industry-card-jumbotron__wrap {
		padding-top: 10px;
		position: relative;
		padding-bottom: 38px;
	}
	.industry-card-jumbotron__text__icon__mobile {
		position: absolute;
		left: 0;
		top: 10px;
	}
	.industry-card-jumbotron__text__title {
		padding-left: 86px;
		margin-bottom: 13px;
		min-height: 48px;
	}
	.industry-card-jumbotron__text__buttons .btn:first-child {
		width: 150px;
		margin-right: 20px;
	}
	.industry-card-jumbotron .btn-dekstop {
		display: none;
	}
	.industry-card-jumbotron .btn-mobile {
		display: flex;
	}
}
.industry-card-clients {
	background-color: #F6F6FF;
	padding-bottom: 84px;
	margin-bottom: 100px;
	overflow-x: hidden;
}
.industry-card-clients .breadcrumb__list {
	padding-bottom: 44px;
}
.industry-card-clients__title {
	font-weight: 500;
	font-size: 38px;
	line-height: 120%;
	color: #000066;
	margin-bottom: 52px;
}
.industry-card-clients-slider {
	display: flex;
	padding-bottom: 30px;
}
.industry-card-clients .tns-ovh {
	overflow: visible;
}
.industry-card-clients .tns-item {
	opacity: 0.3;
}
.industry-card-clients .tns-item.tns-slide-active {
	opacity: 1;
}
.industry-card-clients__item__wrap {
	background-color: #fff;
	height: 116px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: box-shadow 0.3s ease-in-out;
}
.industry-card-clients__item__wrap:hover {
	box-shadow: 0 5px 15px var(--shadow);
}
.industry-card-clients__control .btn:first-child {
	margin-right: 7px;
}
.industry-card-clients__item__image{
	padding: 14px;
	height: 100%;
	display: flex;
}

.industry-card-clients__item__image img{
	object-fit: contain;
}
@media (max-width: 1020px) {
	.industry-card-clients {
		margin-bottom: 77px;
	}
	.industry-card-clients .breadcrumb__list {
		padding-bottom: 36px;
	}
	.industry-card-clients__title {
		font-size: 32px;
		line-height: 120%;
		margin-bottom: 31px;
	}
}
@media (max-width: 767px) {
	.industry-card-clients {
		padding-bottom: 59px;
		margin-bottom: 81px;
	}
	.industry-card-clients .breadcrumb__list {
		padding-bottom: 25px;
	}
	.industry-card-clients__title {
		font-size: 25px;
		line-height: 120%;
		margin-bottom: 29px;
	}
}
.industry-card-table {
	margin-bottom: 100px;
}
.industry-card-table__title {
	font-weight: 500;
	font-size: 38px;
	line-height: 110%;
	color: #000066;
	max-width: 855px;
	margin-bottom: 40px;
}
.industry-card-table .table__head {
	width: 100%;
	display: grid;
	grid-template-columns: 24.7% 21.3% 23.9% 1fr;
}
.industry-card-table .table__head__mobile {
	display: none;
}
.industry-card-table .table__head-item {
	background-color: #f6f6ff;
	font-weight: 500;
	font-size: 15px;
	line-height: 140%;
	color: #000066;
	padding-top: 13px;
	padding-bottom: 12px;
	border-right: 1px solid #DEDEF4;
	border-top: 1px solid #DEDEF4;
	padding-left: 30px;
}
.industry-card-table .table__head-item:nth-child(2) {
	border-left: 1px solid #DEDEF4;
}
.industry-card-table .table__body-row {
	width: 100%;
	display: grid;
	grid-template-columns: 24.7% 21.3% 23.9% 1fr;
}
.industry-card-table .table__body-row:last-child {
	border-bottom: 1px solid #DEDEF4;
}
.industry-card-table .table__body-row-item {
	border-right: 1px solid #DEDEF4;
	border-top: 1px solid #DEDEF4;
	padding: 30px 30px 32px 30px;
}
.industry-card-table .table__body-row-item:first-child {
	border-left: 1px solid #DEDEF4;
}
.industry-card-table .table__body-row-item p {
	font-size: 15px;
	line-height: 140%;
	color: #000000;
	margin-bottom: 14px;
}
.industry-card-table .table__body-row-item p:last-child {
	margin-bottom: 0;
}
.industry-card-table .table__body-row-item a.link {
	font-weight: normal;
	font-size: 15px;
	line-height: 200%;
	color: #1E1D85;
	display: block;
}
.industry-card-table .table__body-row-item__title {
	font-weight: 500;
	font-size: 15px;
	line-height: 120%;
	color: #000066;
}

@media (max-width: 1020px) {
	.industry-card-table {
		margin-bottom: 80px;
	}
	.industry-card-table__title {
		font-size: 32px;
		line-height: 110%;
		margin-bottom: 34px;
	}
	.industry-card-table .table__head {
		grid-template-columns: 33.2% 30.4% 1fr;
	}
	.industry-card-table .table__head__mobile {
		display: none;
	}
	.industry-card-table .table__head-item {
		padding-left: 20px;
		font-size: 13px;
		line-height: 140%;
		padding-bottom: 16px;
	}
	.industry-card-table .table__head-item:nth-child(2) {
		display: none;
	}
	.industry-card-table .table__head-item:nth-child(3) {
		border-left: 1px solid #DEDEF4;
	}
	.industry-card-table .table__body-row {
		grid-template-areas: "a a a" "b c d";
		grid-template-columns: 33.2% 30.4% 1fr;
	}
	.industry-card-table .table__body-row-item {
		padding: 18px 20px 16px 20px;
	}
	.industry-card-table .table__body-row-item:first-child {
		grid-area: a;
	}
	.industry-card-table .table__body-row-item:nth-child(2) {
		padding-top: 16px;
		grid-area: b;
		border-left: 1px solid #DEDEF4;
	}
	.industry-card-table .table__body-row-item:nth-child(3) {
		padding-top: 16px;
		grid-area: c;
	}
	.industry-card-table .table__body-row-item:nth-child(4) {
		padding-top: 16px;
		grid-area: d;
	}
	.industry-card-table .table__body-row-item p {
		font-size: 13px;
		line-height: 140%;
		margin-bottom: 7px;
	}
	.industry-card-table .table__body-row-item a.link {
		font-size: 13px;
		line-height: 140%;
		margin-bottom: 7px;
	}
	.industry-card-table .table__body-row-item a.link:last-child {
		margin-bottom: 0;
	}
	.industry-card-table .table__body-row-item__title {
		font-size: 13px;
		line-height: 120%;
	}
}
@media (max-width: 767px) {
	.industry-card-table__title {
		font-weight: 500;
		font-size: 25px;
		line-height: 110%;
		margin-bottom: 31px;
	}
	.industry-card-table .table__head {
		grid-template-columns: 1fr;
	}
	.industry-card-table .table__head__mobile {
		display: block;
		border-right: 1px solid #DEDEF4;
		border-top: 1px solid #DEDEF4;
		border-left: 1px solid #DEDEF4;
		background-color: #f6f6ff;
		font-size: 13px;
		line-height: 140%;
		padding-left: 20px;
		font-weight: 500;
		color: #000066;
		padding-top: 12px;
		padding-bottom: 15px;
	}
	.industry-card-table .table__head-item {
		display: none;
	}
	.industry-card-table .table__body-row {
		border-right: 1px solid #DEDEF4;
		border-top: 1px solid #DEDEF4;
		border-left: 1px solid #DEDEF4;
		grid-template-columns: 1fr;
		grid-template-areas: "a" "b" "c" "d";
		padding-top: 15px;
		padding-bottom: 16px;
	}
	.industry-card-table .table__body-row-item {
		padding-top: 0;
		padding-bottom: 0;
		border-right: none;
		border-top: none;
	}
	.industry-card-table .table__body-row-item:first-child {
		margin-bottom: 6px;
		border-left: none;
	}
	.industry-card-table .table__body-row-item:nth-child(2) {
		border-left: none;
		padding-top: 0;
		margin-bottom: 11px;
	}
	.industry-card-table .table__body-row-item:nth-child(3) {
		padding-top: 0;
		margin-bottom: 11px;
	}
	.industry-card-table .table__body-row-item:nth-child(4) {
		padding-top: 0;
		margin-bottom: 11px;
	}
	.industry-card-table .table__body-row-item__title {
		line-height: 140%;
	}
}
.industry-card-page .home-faq {
	margin-bottom: 100px;
}
.industry-card-page .home-faq .container {
	max-width: 1076px;
}
.industry-card-page .home-faq .home-faq-item__content p {
	margin-bottom: 15px;
}
.industry-card-page .home-faq .home-faq-item__content p:last-child {
	margin-bottom: 0;
}
.industry-card-page .home-faq .home-faq-item.active {
	padding-bottom: 30px;
}
.industry-card-page .home-faq .home-faq-item.active .home-faq-item__state {
	align-self: center;
}
.industry-card-page .home-faq .home-faq-item {
	padding-top: 26px;
	padding-bottom: 28px;
}

@media (max-width: 1020px) {
	.industry-card-page .home-faq {
		padding-left: 30px;
		padding-right: 30px;
		margin-bottom: 80px;
	}
}
@media (max-width: 767px) {
	.industry-card-page .home-faq {
		padding-left: 20px;
		padding-right: 20px;
	}
}
.industry-card-items {
	overflow-x: hidden;
	padding-bottom: 100px;
}
.industry-card-items__title {
	font-weight: 500;
	font-size: 28px;
	line-height: 120%;
	color: #000066;
	margin-bottom: 40px;
	max-width: 855px;
}
.industry-card-items__wrap {
	max-width: 965px;
}
.industry-card-items__wrap .tns-ovh {
	overflow: visible;
}
.industry-card-items__wrap .tns-item {
	opacity: 0.3;
}
.industry-card-items__wrap .tns-item.tns-slide-active {
	opacity: 1;
}
.industry-card-items__item {
	align-self: stretch;
	transition: 0.3s ease-in-out;
}
.industry-card-items__item__wrap {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	min-height: 375px;
	padding: 30px 30px 24px 30px;
	background-color: var(--white);
	text-decoration: none;
	transition: 0.3s ease-in-out;
	border: 1px solid var(--border);
}
.industry-card-items__item__wrap:hover {
	box-shadow: 0 5px 15px var(--shadow);
}
.industry-card-items__item__title {
	font-weight: bold;
	font-size: 24px;
	line-height: 120%;
	color: #000066;
	margin-bottom: 11px;
}
.industry-card-items__item__description {
	font-weight: normal;
	font-size: 15px;
	line-height: 140%;
	color: #000000;
	margin-bottom: 20px;
}
.industry-card-items__item__blocks {
	display: flex;
	flex-direction: column;
}
.industry-card-items__item__block {
	display: flex;
	flex-direction: column;
	margin-bottom: 15px;
}
.industry-card-items__item__block:last-child {
	margin-bottom: 0;
}
.industry-card-items__item__block__title {
	font-weight: 500;
	font-size: 12px;
	line-height: 150%;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #7373BA;
	margin-bottom: 4px;
}
.industry-card-items__item__block__value {
	font-weight: normal;
	font-size: 15px;
	line-height: 120%;
	color: #000000;
}
.industry-card-items__item__footer {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-right: 5px;
}
.industry-card-items__control {
	margin-top: 43px;
}
.industry-card-items__control .btn {
	margin-right: 7px;
}

@media (max-width: 1020px) {
	.industry-card-items {
		padding-bottom: 80px;
	}
	.industry-card-items__title {
		font-size: 20px;
		line-height: 120%;
	}
	.industry-card-items__item__title {
		font-size: 20px;
		line-height: 120%;
		margin-bottom: 15px;
	}
	.industry-card-items__item__description {
		font-size: 13px;
		line-height: 140%;
		overflow: hidden;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
	}
	.industry-card-items__item__block {
		margin-bottom: 18px;
	}
	.industry-card-items__item__block__title {
		font-size: 12px;
		line-height: 150%;
	}
	.industry-card-items__item__block__value {
		font-size: 13px;
		line-height: 120%;
	}
	.industry-card-items__item__footer {
		padding-right: 0;
	}
	.industry-card-items__control {
		margin-top: 30px;
	}
}
@media (max-width: 767px) {
	.industry-card-items {
		padding-bottom: 80px;
	}
	.industry-card-items__title {
		font-size: 20px;
		line-height: 120%;
		margin-bottom: 36px;
	}
	.industry-card-items__item__title {
		font-size: 20px;
		line-height: 120%;
		margin-bottom: 15px;
	}
	.industry-card-items__item__description {
		font-size: 13px;
		line-height: 140%;
		overflow: hidden;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
	}
	.industry-card-items__item__block {
		margin-bottom: 18px;
	}
	.industry-card-items__item__block__title {
		font-size: 12px;
		line-height: 150%;
	}
	.industry-card-items__item__block__value {
		font-size: 13px;
		line-height: 120%;
	}
	.industry-card-items__item__footer {
		padding-right: 0;
	}
	.industry-card-items__control {
		margin-top: 30px;
	}
}
.industry-card-page .home-contact-form {
	margin-top: 103px;
	margin-bottom: 100px;
}

@media (max-width: 1020px) {
	.industry-card-page .home-contact-form {
		margin-top: 78px;
		margin-bottom: 80px;
	}
}
@media (max-width: 767px) {
	.industry-card-page .home-contact-form {
		margin-top: 75px;
		margin-bottom: 80px;
	}
}
.complex-card-jumbotron .jumbotron {
	min-height: 450px;
}
.complex-card-jumbotron__wrap {
	padding-top: 98px;
	padding-left: 54px;
}
.complex-card-jumbotron__text {
	display: flex;
	align-items: flex-start;
}
.complex-card-jumbotron__text__icon {
	width: 130px;
	min-width: 130px;
	height: 130px;
	margin-right: 43px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.complex-card-jumbotron__text__icon__mobile {
	display: none;
}
.complex-card-jumbotron__text__icon img {
	width: 100%;
}
.complex-card-jumbotron__text__title {
	margin-top: 29px;
	font-weight: 500;
	font-size: 28px;
	line-height: 120%;
	color: #FFFFFF;
	margin-bottom: 19px;
}
.complex-card-jumbotron__text__description {
	font-weight: normal;
	font-size: 15px;
	line-height: 140%;
	color: #FFFFFF;
	max-width: 630px;
	margin-bottom: 34px;
}
.complex-card-jumbotron__text__buttons .btn:first-child {
	width: 227px;
	margin-right: 16px;
}
.complex-card-jumbotron__text__buttons .btn:last-child {
	width: 184px;
}
.complex-card-jumbotron .btn-mobile {
	display: none;
}

@media (max-width: 1020px) {
	.complex-card-jumbotron .jumbotron {
		min-height: 369px;
	}
	.complex-card-jumbotron__wrap {
		padding-left: 0;
		padding-top: 100px;
	}
	.complex-card-jumbotron__text__icon {
		width: 66px;
		height: 66px;
		min-width: 66px;
		margin-right: 27px;
		display: none;
	}
	.complex-card-jumbotron__text__icon__mobile {
		width: 66px;
		height: 66px;
		min-width: 66px;
		margin-right: 27px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.complex-card-jumbotron__text__title {
		margin-top: 10px;
		font-size: 20px;
		line-height: 120%;
		margin-bottom: 15px;
	}
	.complex-card-jumbotron__text__description {
		font-size: 13px;
		line-height: 140%;
		max-width: 599px;
	}
	.complex-card-jumbotron__text__buttons .btn {
		font-size: 15px;
		height: 42px;
	}
	.complex-card-jumbotron__text__buttons .btn:first-child {
		width: 190px;
		margin-right: 8px;
	}
	.complex-card-jumbotron__text__buttons .btn:last-child {
		width: 152px;
		padding-left: 0;
		padding-right: 0;
	}
}
@media (max-width: 767px) {
	.complex-card-jumbotron .jumbotron {
		min-height: 273px;
	}
	.complex-card-jumbotron__wrap {
		padding-top: 10px;
		position: relative;
		padding-bottom: 38px;
	}
	.complex-card-jumbotron__text__icon__mobile {
		position: absolute;
		left: 0;
		top: 10px;
	}
	.complex-card-jumbotron__text__title {
		padding-left: 86px;
		margin-bottom: 13px;
		min-height: 50px;
	}
	.complex-card-jumbotron__text__buttons .btn:first-child {
		width: 150px;
		margin-right: 20px;
	}
	.complex-card-jumbotron .btn-dekstop {
		display: none;
	}
	.complex-card-jumbotron .btn-mobile {
		display: flex;
	}
}
.complex-card-description {
	padding-left: 40px;
	padding-right: 40px;
}
.complex-card-description__wrap {
	max-width: 1076px;
	margin-left: auto;
	margin-right: auto;
}
.complex-card-description__wrap p, .text-block p{
	font-weight: normal;
	font-size: 17px;
	line-height: 140%;
	color: #000000;
	margin-bottom: 25px;
}
.complex-card-description__wrap p:first-child, .text-block p:first-child{
	margin-top: 0;
}
.complex-card-description__wrap ul, .accordion-item-panel ul, .text-block ul{
	list-style: none;
	padding-left: 0;
	margin-top: 13px;
	margin-bottom: 25px;
}

.complex-card-description__wrap ul p, .accordion-item-panel ul p, .text-block ul p{
	margin-bottom: 14px;
}

.complex-card-description__wrap ul li, .accordion-item-panel ul li, .text-block ul li{
	padding-left: 21px;
	position: relative;
	font-weight: normal;
	font-size: 17px;
	line-height: 140%;
	color: var(--black);
	margin-bottom: 13px;
}

.complex-card-description__wrap ol, .accordion-item-panel ol, .text-block ol{
	padding-left: 21px;
	margin-bottom: 25px;
}

.complex-card-description__wrap ol li, .accordion-item-panel ol li, .text-block ol li{
	margin-bottom: 13px;
}

.complex-card-description__wrap ul li::after, .accordion-item-panel ul li:after, .text-block ul li:after{
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	display: block;
	background-color: var(--red);
	border-radius: 100%;
}
.complex-card-description__wrap ul li:last-child, .accordion-item-panel ul li:last-child, .text-block ul li:last-child{
	margin-bottom: 0;
}

.text-block > *:last-child{
	margin-bottom: 0;
}

@media (max-width: 1020px) {
	.complex-card-description {
		padding-left: 30px;
		padding-right: 30px;
	}
	.complex-card-description__wrap p, .text-block p{
		font-size: 17px;
		line-height: 140%;
	}
	.complex-card-description__wrap ul li, .accordion-item-panel ul li, .text-block ul li{
		font-size: 17px;
		line-height: 140%;
		margin-bottom: 17px;
	}
}
@media (max-width: 767px) {
	.complex-card-description {
		padding-left: 20px;
		padding-right: 20px;
	}
	.complex-card-description__wrap p, .text-block p{
		margin-top: 20px;
	}
	.complex-card-description__wrap ul, .accordion-item-panel ul, .text-block ul{
		margin-top: 16px;
	}

	.complex-card-description__wrap ul li, .accordion-item-panel ul li, .text-block ul li{
		margin-bottom: 13px;
	}
}
.complex-card-page .home-faq {
	margin-top: 89px;
	margin-bottom: 100px;
	padding: 0 40px;
}

.complex-card-page h3{
	margin-top: 40px;
}

.complex-card-page h2{
	margin-top: 80px;
}

.complex-card-page h2:first-child, .complex-card-page h3:first-child{
	margin-top: 0;
}

.complex-card-page .home-faq .container {
	max-width: 1076px;
	padding-left: 0;
	padding-right: 0;
}
.complex-card-page .home-faq .home-faq-item__content p:last-child {
	margin-bottom: 0;
}
.complex-card-page .home-faq .home-faq-item.active {
	padding-bottom: 30px;
}
.complex-card-page .home-faq .home-faq-item.active .home-faq-item__state {
	align-self: center;
}
.complex-card-page .home-faq .home-faq-item {
	padding-top: 26px;
	padding-bottom: 28px;
}
.complex-card-page .home-faq-item__content {
	padding-right: 0;
	padding-top: 30px;
}
.complex-card-page .home-faq-item__content strong {
	font-weight: bold;
	font-size: 18px;
	line-height: 150%;
	color: #000066;
	display: block;
	margin-bottom: 6px;
}
.complex-card-page .home-faq-item__content p {
	font-weight: normal;
	font-size: 17px;
	line-height: 140%;
	color: #000000;
	margin-bottom: 26px;
}
.complex-card-page .home-faq-item__content img {
	margin-bottom: 16px;
}
.complex-card-page .home-faq-item__content .btn {
	margin-bottom: 45px;
}
.complex-card-page .home-faq-item__content .table {
	margin-top: 15px;
	margin-bottom: 33px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	border: 1px solid #DEDEF4;
}
.complex-card-page .home-faq-item__content .table-col:first-child {
	border-right: 1px solid #DEDEF4;
}
.complex-card-page .home-faq-item__content .table-col__head {
	background-color: #F6F6FF;
	font-weight: 500;
	font-size: 15px;
	line-height: 140%;
	color: #000066;
	padding: 14px 20px 13px 30px;
	border-bottom: 1px solid #DEDEF4;
}
.complex-card-page .home-faq-item__content .table-col__body {
	padding: 30px 30px 43px 30px;
}
.complex-card-page .home-faq-item__content .table-col__body__title {
	font-weight: bold;
	font-size: 15px;
	line-height: 140%;
	color: #000066;
}
.complex-card-page .home-faq-item__content .table-col__body p {
	font-weight: normal;
	font-size: 15px;
	line-height: 140%;
	color: #000000;
	margin-bottom: 0;
}
.complex-card-page .home-faq-item__content .table-col__body p.separator {
	margin-top: 18px;
	margin-bottom: 18px;
}
.complex-card-page .home-faq-item__content img {
	width: 100%;
}
.complex-card-page .home-faq-item__content img + p {
	font-size: 15px;
	line-height: 140%;
	color: #000000;
}

@media (max-width: 1020px) {
	.complex-card-page .home-faq {
		margin-top: 71px;
		margin-bottom: 80px;
		padding-left: 30px;
		padding-right: 30px;
	}
	.complex-card-page .home-faq-item__content strong {
		font-size: 15px;
		line-height: 150%;
	}
	.complex-card-page .home-faq-item__content p {
		font-size: 15px;
		line-height: 140%;
	}
	.complex-card-page .home-faq-item__content .btn {
		margin-bottom: 30px;
	}
	.complex-card-page .home-faq-item__content .table {
		margin-top: 20px;
		grid-template-columns: 1fr 39%;
	}
	.complex-card-page .home-faq-item__content .table-col__head {
		font-size: 13px;
		line-height: 140%;
		padding: 14px 20px 13px 20px;
	}
	.complex-card-page .home-faq-item__content .table-col__body {
		padding: 30px 30px 30px 20px;
	}
	.complex-card-page .home-faq-item__content .table-col__body__title {
		font-size: 13px;
		line-height: 140%;
	}
	.complex-card-page .home-faq-item__content .table-col__body p {
		font-size: 13px;
		line-height: 140%;
	}
	.complex-card-page .home-faq-item__content .table-col__body p.separator {
		margin-top: 11px;
		margin-bottom: 11px;
	}
	.complex-card-page .home-faq-item__content img {
		margin-bottom: 7px;
	}
	.complex-card-page .home-faq-item__content img + p {
		font-size: 13px;
		line-height: 140%;
	}
}
@media (max-width: 767px) {
	.complex-card-page .home-faq {
		margin-top: 78px;
		padding-left: 20px;
		padding-right: 20px;
	}
	.complex-card-page .home-faq-item__content {
		padding-top: 16px;
	}
	.complex-card-page .home-faq-item__content p {
		margin-bottom: 19px;
	}
	.complex-card-page .home-faq-item__content .btn {
		height: unset;
		padding-top: 7px;
		padding-bottom: 7px;
		line-height: 110%;
		margin-top: 8px;
		margin-bottom: 24px;
	}
	.complex-card-page .home-faq-item__content .btn-icon {
		min-width: 15px;
	}
	.complex-card-page .home-faq-item__content .table {
		margin-top: 11px;
		grid-template-columns: 1fr;
		margin-bottom: 25px;
	}
	.complex-card-page .home-faq-item__content .table-col:first-child .table-col__head {
		border-top: none;
	}
	.complex-card-page .home-faq-item__content .table-col__head {
		padding: 14px 20px 15px 20px;
		border-top: 1px solid #DEDEF4;
	}
	.complex-card-page .home-faq-item__content .table-col__body {
		padding: 21px 30px 18px 20px;
	}
	.complex-card-page .home-faq-item__content img {
		margin-bottom: 12px;
	}
}
.complex-card-page .breadcrumb__list {
	padding-bottom: 48px;
}
.complex-card-page .home-contact-form {
	margin-top: 103px;
	margin-bottom: 100px;
}

@media (max-width: 1020px) {
	.complex-card-page .breadcrumb__list {
		padding-bottom: 35px;
	}
	.complex-card-page .home-contact-form {
		margin-top: 78px;
		margin-bottom: 80px;
	}
}
@media (max-width: 767px) {
	.complex-card-page .breadcrumb__list {
		padding-bottom: 25px;
	}
	.complex-card-page .home-contact-form {
		margin-top: 75px;
		margin-bottom: 80px;
	}
}
.price-main {
	margin-bottom: 60px;
}
.price-main__wrap {
	display: flex;
	align-items: flex-start;
}
.price-main__content__title {
	width: calc(100% - 518px);
	font-weight: 500;
	font-size: 38px;
	line-height: 110%;
	color: #000066;
	margin-bottom: 18px;
}
.price-main__content p {
	font-weight: normal;
	font-size: 15px;
	line-height: 140%;
	color: #000000;
	margin-bottom: 15px;
}
.price-main__content p:last-child {
	margin-bottom: 0;
}
.price-main__content p .phone-link {
	font-weight: bold;
	text-decoration: none;
}
.price-main__content p .email-link {
	font-weight: normal;
}
.price-main__notification {
	margin-top: -54px;
	width: 518px;
	min-width: 518px;
	margin-left: 40px;
}
.price-main__notification__wrap {
	border: 1px solid #DEDEF4;
	border-left: 3px solid #E42D24;
	padding: 25px 30px 30px 26px;
}
.price-main__notification__subtitle {
	font-weight: 500;
	font-size: 12px;
	line-height: 150%;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #7373BA;
	margin-bottom: 11px;
}
.price-main__notification__date {
	font-weight: bold;
	font-size: 18px;
	line-height: 120%;
	color: #000066;
	margin-bottom: 5px;
}
.price-main__notification p {
	font-style: normal;
	font-weight: normal;
	font-size: 13px;
	line-height: 140%;
	color: #000000;
	margin-bottom: 13px;
}
.price-main__notification p:last-child {
	margin-bottom: 0;
}

@media (max-width: 1020px) {
	.price-main__wrap {
		flex-direction: column;
	}
	.price-main__content {
		order: 1;
	}
	.price-main__content__title {
		width: 100%;
		font-size: 32px;
		line-height: 120%;
		margin-bottom: 33px;
	}
	.price-main__content p {
		font-size: 13px;
		line-height: 140%;
	}
	.price-main__notification {
		margin-top: 0;
		width: 100%;
		margin-left: 0;
		min-width: unset;
		margin-bottom: 25px;
	}
	.price-main__notification__subtitle {
		font-size: 11px;
		line-height: 150%;
	}
	.price-main__notification__date {
		font-size: 15px;
		line-height: 120%;
	}
	.price-main__notification p {
		font-size: 13px;
		line-height: 140%;
	}
}
@media (max-width: 767px) {
	.price-main__content__title {
		font-size: 25px;
		line-height: 120%;
		margin-bottom: 26px;
	}
	.price-main__notification {
		margin-bottom: 29px;
	}
	.price-main__notification p {
		font-size: 13px;
		line-height: 140%;
	}
}
.price-slider {
	margin-bottom: 100px;
	overflow: hidden;
}
.price-slider .tns-ovh {
	overflow: visible;
}
.price-slider__item {
	align-self: stretch;
	transition: 0.3s ease-in-out;
}
.price-slider__item__wrap {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	min-height: 343px;
	padding: 30px 30px 35px 30px;
	background-color: var(--white);
	text-decoration: none;
	transition: 0.3s ease-in-out;
	border: 1px solid var(--border);
}
.price-slider__item__wrap:hover {
	box-shadow: 0 5px 15px var(--shadow);
}
.price-slider__item__title {
	font-weight: bold;
	font-size: 24px;
	line-height: 120%;
	color: #000066;
	margin-bottom: 11px;
}
.price-slider__item__title-lite {
	margin-bottom: 35px;
}
.price-slider__item ul {
	list-style: none;
	padding-left: 0;
	flex-grow: 1;
}
.price-slider__item ul li {
	padding-left: 21px;
	position: relative;
	font-weight: normal;
	font-size: 15px;
	line-height: 140%;
	color: var(--black);
	margin-bottom: 7px;
}
.price-slider__item ul li::after {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	display: block;
	background-color: var(--red);
	border-radius: 100%;
}
.price-slider__item ul li:last-child {
	margin-bottom: 0;
}
.price-slider__item .checkbox-label {
	font-size: 12px;
	line-height: 130%;
}
.price-slider__item .checkbox-label a {
	font-weight: normal;
}
.price-slider__item .btn {
	margin-top: 26px;
	width: 153px;
}
.price-slider__item .btn-icon-mobile {
	margin-right: 15px;
	display: none;
}
.price-slider__control {
	margin-top: 30px;
	margin-bottom: 14px;
}
.price-slider__control .btn:first-child {
	margin-right: 6px;
}

@media (max-width: 1020px) {
	.price-slider {
		margin-bottom: 80px;
	}
	.price-slider__item__wrap {
		min-height: 319px;
		padding: 27px 30px 35px 30px;
	}
	.price-slider__item__title {
		font-size: 20px;
		line-height: 120%;
	}
	.price-slider__item ul li {
		font-size: 13px;
		line-height: 140%;
		margin-bottom: 8px;
	}
	.price-slider__item ul li::after {
		top: 6px;
	}
	.price-slider__item .btn-icon {
		display: none;
	}
	.price-slider__item .btn-icon-mobile {
		display: block;
	}
}
@media (max-width: 767px) {
	.price-slider {
		margin-bottom: 84px;
	}
}
.price-structure {
	margin-bottom: 100px;
}
.price-structure__title {
	font-weight: 500;
	font-size: 28px;
	line-height: 120%;
	color: #000066;
	margin-bottom: 30px;
}
.price-structure-table {
	display: grid;
	grid-template-columns: 33% 33.3% 1fr;
	margin-bottom: 35px;
}
.price-structure-table__col {
	padding: 30px;
}
.price-structure-table__col .btn {
	margin-top: 15px;
}
.price-structure-table__col__border {
	border-top: 1px solid #DEDEF4;
	border-bottom: 1px solid #DEDEF4;
	border-right: 1px solid #DEDEF4;
}
.price-structure-table__col__border:first-child {
	border-left: 1px solid #DEDEF4;
}
.price-structure-table__col__title {
	font-weight: bold;
	font-size: 18px;
	line-height: 140%;
	color: #000066;
}
.price-structure-table__col__subtitle {
	font-weight: normal;
	font-size: 15px;
	line-height: 140%;
	color: #000000;
}
.price-structure-table__col ul {
	list-style: none;
	padding-left: 0;
	flex-grow: 1;
	margin-top: 15px;
	margin-bottom: 15px;
}
.price-structure-table__col ul li {
	padding-left: 21px;
	position: relative;
	font-weight: normal;
	font-size: 15px;
	line-height: 140%;
	color: var(--black);
	margin-bottom: 7px;
}
.price-structure-table__col ul li::after {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	display: block;
	background-color: var(--red);
	border-radius: 100%;
}
.price-structure-table__col ul li:last-child {
	margin-bottom: 0;
}
.price-structure-table__col small {
	font-weight: normal;
	font-size: 13px;
	line-height: 140%;
}
.price-structure__text {
	font-weight: normal;
	font-size: 15px;
	line-height: 140%;
	color: #000000;
	max-width: 745px;
}
.price-structure__text p {
	margin-bottom: 15px;
}
.price-structure__text p:last-child {
	margin-bottom: 0;
}
.price-structure__text p .phone-link {
	font-weight: bold;
	text-decoration: none;
}
.price-structure__text p .email-link {
	font-weight: normal;
}

@media (max-width: 1020px) {
	.price-structure {
		margin-bottom: 76px;
	}
	.price-structure__title {
		font-size: 20px;
		line-height: 120%;
		margin-bottom: 37px;
	}
	.price-structure-table {
		margin-bottom: 0;
		grid-template-columns: 50% 50%;
		grid-template-areas: "a b" "c c";
	}
	.price-structure-table__col {
		padding-left: 20px;
		padding-right: 20px;
	}
	.price-structure-table__col:nth-child(1) {
		grid-area: a;
	}
	.price-structure-table__col:nth-child(2) {
		grid-area: b;
	}
	.price-structure-table__col:nth-child(3) {
		grid-area: c;
		padding-left: 0;
		padding-bottom: 24px;
		padding-top: 24px;
	}
	.price-structure-table__col .btn {
		margin-top: 21px;
	}
	.price-structure-table__col__title {
		font-size: 15px;
		line-height: 140%;
	}
	.price-structure-table__col__subtitle {
		font-size: 13px;
		line-height: 140%;
	}
	.price-structure-table__col ul {
		margin-top: 11px;
	}
	.price-structure-table__col ul li {
		font-size: 13px;
		line-height: 140%;
	}
	.price-structure-table__col ul li::after {
		top: 6px;
	}
	.price-structure-table__col small {
		font-size: 11px;
		line-height: 120%;
	}
	.price-structure__text p {
		font-size: 13px;
		line-height: 140%;
	}
}
@media (max-width: 767px) {
	.price-structure__title {
		margin-bottom: 23px;
	}
	.price-structure-table {
		grid-template-columns: 100%;
		grid-template-areas: "a " "b " "c ";
	}
	.price-structure-table__col {
		padding-top: 22px;
		padding-bottom: 24px;
	}
	.price-structure-table__col__border {
		border-top: unset;
		border-bottom: 1px solid #DEDEF4;
		border-right: 1px solid #DEDEF4;
		border-left: 1px solid #DEDEF4;
	}
	.price-structure-table__col__border:first-child {
		border-top: 1px solid #DEDEF4;
	}
	.price-structure-table__col ul {
		margin-bottom: 11px;
	}
	.price-structure-table__col ul:last-child {
		margin-bottom: 0;
	}
}
.price-page .breadcrumb__list {
	padding-bottom: 42px;
}

@media (max-width: 1020px) {
	.price-page .breadcrumb__list {
		padding-bottom: 34px;
	}
}
@media (max-width: 767px) {
	.price-page .breadcrumb__list {
		padding-bottom: 23px;
	}
}
.catalog-product-page .jumbotron {
	height: 450px;
}

.catalog-product-page{
	margin-bottom: 80px;
}

.catalog-product-page .jumbotron .btn {
	padding-left: 42px;
	padding-right: 42px;
}
.catalog-product-page .home-banner__content {
	padding-top: 66px;
	padding-bottom: 86px;
}
.catalog-product-page .home-banner__text {
	font-size: 28px;
	margin-bottom: 19px;
	max-width: 523px;
}
.catalog-product-page .btn-icon {
	width: 20px;
	height: 19px;
	margin-right: 19px;
}
.catalog-product-page .btn-icon.mobile {
	display: none;
}
.catalog-product-page .home-banner__description {
	margin-bottom: 37px;
	max-width: 630px;
}
.catalog-product-page .home-banner__description p {
	font-weight: normal;
	font-size: 15px;
	line-height: 140%;
	color: #FFFFFF;
	margin-bottom: 20px;
}
.catalog-product-page .home-banner__description p:last-child {
	margin-bottom: 0;
}
.catalog-product-page .home-banner__img img {
	max-height: 332px;
	bottom: unset;
	top: 42px;
	right: unset;
	left: 96px;
}

@media (max-width: 1380px) {
	.catalog-compl-page .home-banner__content, .catalog-ind-page .home-banner__content {
		padding-right: 30px;
		width: unset;
		flex-grow: 1;
	}
	.catalog-compl-page .home-banner__img, .catalog-ind-page .home-banner__img {
		width: unset;
	}
	.catalog-compl-page .home-banner__img img, .catalog-ind-page .home-banner__img img {
		margin-top: 60px;
		position: relative;
		top: unset;
		left: unset;
	}
}
@media (max-width: 1090px) {
	.catalog-product-page .jumbotron {
		height: unset;
	}
	.catalog-product-page .jumbotron .btn {
		padding-left: 30px;
		padding-right: 30px;
	}
	.catalog-product-page .home-banner__content {
		padding-top: 52px;
		padding-bottom: 52px;
		padding-right: 30px;
		width: unset;
		flex-grow: 1;
	}
	.catalog-product-page .home-banner__text {
		font-size: 20px;
		line-height: 120%;
		margin-bottom: 16px;
		max-width: 355px;
	}
	.catalog-product-page .btn-icon {
		width: 15px;
		height: 14px;
		margin-right: 16px;
		display: none;
	}
	.catalog-product-page .btn-icon.mobile {
		display: block;
	}
	.catalog-product-page .btn {
		height: 42px;
		font-size: 15px;
		line-height: 100%;
	}
	.catalog-product-page .home-banner__description {
		margin-bottom: 35px;
		max-width: 399px;
	}
	.catalog-product-page .home-banner__description p {
		font-size: 13px;
		margin-bottom: 15px;
	}
	.catalog-product-page .home-banner__img {
		width: unset;
	}
	.catalog-product-page .home-banner__img img {
		margin-top: 62px;
		position: relative;
		top: unset;
		left: unset;
		max-height: 242px;
	}
}
@media (max-width: 767px) {
	.catalog-product-page .home-banner__content {
		padding-top: 31px;
		padding-bottom: 47px;
		align-items: flex-start;
		padding-right: 0;
	}
	.catalog-product-page .home-banner__text {
		text-align: left;
		margin-bottom: 14px;
	}
	.catalog-product-page .home-banner__description {
		margin-bottom: 28px;
	}
	.catalog-product-page .home-banner__description p {
		text-align: left;
	}
}
.catalog-product-page .catalog-block__controll {
	margin-top: 30px;
}
.catalog-product-page .catalog-block {
	margin-bottom: 100px;
}
.catalog-product-page .catalog-block__grid {
	display: grid;
	grid-template-columns: 295px 1fr;
	grid-gap: 39px;
}
.catalog-product-page .catalog-block__top {
	margin-bottom: 48px;
}
.catalog-product-page .catalog-block__items__item {
	align-self: stretch;
	transition: 0.3s ease-in-out;
}
.catalog-product-page .catalog-block__items__item__wrap {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	min-height: 375px;
	padding: 30px 30px 24px 30px;
	background-color: var(--white);
	text-decoration: none;
	transition: 0.3s ease-in-out;
	border: 1px solid var(--border);
}
.catalog-product-page .catalog-block__items__item__wrap:hover {
	box-shadow: 0 5px 15px var(--shadow);
}
.catalog-product-page .catalog-block__items__item__title {
	font-weight: bold;
	font-size: 24px;
	line-height: 120%;
	color: #000066;
	margin-bottom: 11px;
}
.catalog-product-page .catalog-block__items__item__description {
	font-weight: normal;
	font-size: 15px;
	line-height: 140%;
	color: #000000;
	margin-bottom: 20px;
}
.catalog-product-page .catalog-block__items__item__blocks {
	display: flex;
	flex-direction: column;
}
.catalog-product-page .catalog-block__items__item__block {
	display: flex;
	flex-direction: column;
	margin-bottom: 15px;
}
.catalog-product-page .catalog-block__items__item__block:last-child {
	margin-bottom: 0;
}
.catalog-product-page .catalog-block__items__item__block__title {
	font-weight: 500;
	font-size: 12px;
	line-height: 150%;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #7373BA;
	margin-bottom: 4px;
}
.catalog-product-page .catalog-block__items__item__block__value {
	font-weight: normal;
	font-size: 15px;
	line-height: 120%;
	color: #000000;
}
.catalog-product-page .catalog-block__items__item__footer {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-right: 5px;
}
.catalog-product-page .catalog-block__items__wrap {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 39px;
}
.catalog-product-page .catalog-block__items__choosen {
	background: #F6F6FF;
	padding: 13px 34px 4px 30px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 40px;
}
.catalog-product-page .catalog-block__items__choosen__clear {
	font-weight: 500;
	font-size: 13px;
	line-height: 140%;
	color: #1E1D85;
	cursor: pointer;
	padding-bottom: 17px;
	padding-top: 10px;
	white-space: nowrap;
}
.catalog-product-page .catalog-block__items__choosen__wrap {
	display: flex;
	flex-wrap: wrap;
}
.catalog-product-page .catalog-block__items__choosen-item {
	display: flex;
	align-items: center;
	height: 35px;
	background: #FFFFFF;
	border-radius: 40px;
	border: 1px solid #fff;
	padding-left: 20px;
	padding-right: 20px;
	cursor: pointer;
	transition: border-color 0.3s ease-in-out;
	margin-right: 10px;
	margin-bottom: 9px;
}
.catalog-product-page .catalog-block__items__choosen-item:hover {
	border-color: #918CFF;
}
.catalog-product-page .catalog-block__items__choosen-item__text {
	font-weight: 500;
	font-size: 13px;
	line-height: 140%;
	color: #1E1D85;
}
.catalog-product-page .catalog-block__items__choosen-item__close {
	margin-left: 9px;
}
.catalog-product-page .btn-mobile {
	display: none;
}

.catalog-block__filter-col {
	display: flex;
	flex-direction: column;
}
.catalog-block__filter-col__search {
	margin-bottom: 35px;
}
.catalog-block__filter-col__items {
	display: flex;
	flex-direction: column;
}
.catalog-block__filter-col__items-block {
	margin-bottom: 28px;
}
.catalog-block__filter-col__items-block:last-child {
	margin-bottom: 0;
}
.catalog-block__filter-col__items-block__title {
	font-weight: bold;
	font-size: 18px;
	line-height: 120%;
	color: #000066;
	margin-bottom: 15px;
}
.catalog-block__filter-col__checkboxes {
	margin-top: 33px;
	background: #F6F6FF;
	padding: 30px 20px;
}
.catalog-block__filter-col__checkboxes__item {
	margin-bottom: 25px;
}
.catalog-block__filter-col__checkboxes__item:last-child {
	margin-bottom: 0;
}
.catalog-block__filter-col__checkboxes__item__title {
	font-weight: bold;
	font-size: 17px;
	line-height: 120%;
	color: #000066;
	margin-bottom: 19px;
}
.catalog-block__filter-col__checkboxes__item .form-field {
	margin-bottom: 15px;
	cursor: pointer;
}
.catalog-block__filter-col__checkboxes__item .form-field:last-child {
	margin-bottom: 0;
}

.filter-dropdown {
	font-weight: normal;
	font-size: 15px;
	line-height: 100%;
	color: #1E1D85;
	margin-bottom: 20px;
}
.filter-dropdown:last-child {
	margin-bottom: 0;
}
.filter-dropdown.active svg {
	opacity: 1;
}
.filter-dropdown.active .filter-dropdown-title {
	margin-bottom: 15px;
}
.filter-dropdown-title {
	position: relative;
	padding-left: 27px;
	cursor: pointer;
	transition: margin-bottom 0.3s ease-in-out;
}
.filter-dropdown-title svg {
	position: absolute;
	left: 0;
	top: 5px;
	opacity: 0.3;
}
.filter-dropdown-container {
	padding-left: 46px;
}
.filter-dropdown-item {
	margin-bottom: 12px;
}
.filter-dropdown-item:last-child {
	margin-bottom: 0;
}

@media (max-width: 1100px) {
	.catalog-product-page .catalog-block {
		margin-bottom: 67px;
	}
	.catalog-product-page .catalog-block__grid {
		display: grid;
		grid-template-columns: 1fr;
		grid-gap: 39px;
	}
	.catalog-product-page .catalog-block__top {
		margin-bottom: 29px;
	}
	.catalog-product-page .catalog-block__items__item__wrap {
		padding: 30px 29px 24px 27px;
	}
	.catalog-product-page .catalog-block__items__item__title {
		font-size: 20px;
		line-height: 120%;
		margin-bottom: 16px;
	}
	.catalog-product-page .catalog-block__items__item__description {
		font-size: 13px;
		line-height: 140%;
	}
	.catalog-product-page .catalog-block__items__item__block__title {
		font-size: 12px;
		line-height: 150%;
	}
	.catalog-product-page .catalog-block__items__item__block__value {
		font-size: 13px;
		line-height: 120%;
	}
	.catalog-product-page .catalog-block__items__item__footer {
		margin-top: auto;
	}
	.catalog-product-page .catalog-block__items__item__footer .btn {
		margin-right: -5px;
		margin-bottom: 4px;
	}
	.catalog-product-page .catalog-block__items__wrap {
		grid-gap: 30px;
		grid-row-gap: 35px;
	}
	.catalog-product-page .btn-mobile {
		display: inline-flex;
	}
	.catalog-product-page .btn-filter {
		height: 42px;
	}
	.catalog-product-page .btn-filter.active {
		color: var(--red);
	}
	.catalog-product-page .btn-filter.active svg {
		color: var(--red);
	}
	.catalog-product-page .btn-filter span {
		margin-left: 10px;
	}
}
@media (max-width: 767px) {
	.catalog-product-page .catalog-block .catalog-block__filter__item {
		margin-top: 15px;
	}
	.catalog-product-page .catalog-block__grid {
		display: grid;
		grid-template-columns: 1fr;
		grid-gap: 39px;
	}
	.catalog-product-page .catalog-block__top {
		margin-bottom: 26px;
	}
	.catalog-product-page .catalog-block__items__item__wrap {
		padding: 28px 30px 26px 27px;
	}
	.catalog-product-page .catalog-block__items__wrap {
		grid-template-columns: 1fr;
	}
	.catalog-product-page .catalog-block__items__choosen {
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		padding: 13px 15px 0px 15px;
	}
	.catalog-product-page .catalog-block__items__choosen__clear {
		padding-bottom: 15px;
	}
	.catalog-product-page .catalog-block__items__choosen-item {
		height: auto;
		padding-top: 6px;
		padding-bottom: 6px;
	}
	.catalog-product-page .btn-mobile {
		display: inline-flex;
	}
	.catalog-product-page .btn-dis {
		padding-left: 20px;
		padding-right: 20px;
		width: 186px;
	}
	.catalog-product-page .btn-filter {
		width: 42px;
		height: 42px;
		padding-left: 0;
		padding-right: 0;
		border-radius: 100%;
	}
	.catalog-product-page .btn-filter span {
		display: none;
		margin-left: 10px;
	}
}
.catalog-block__filter-col {
	display: flex;
	flex-direction: column;
}
.catalog-block__filter-col__search {
	margin-bottom: 35px;
}
.catalog-block__filter-col__items {
	display: flex;
	flex-direction: column;
}
.catalog-block__filter-col__items-block {
	margin-bottom: 28px;
}
.catalog-block__filter-col__items-block:last-child {
	margin-bottom: 0;
}
.catalog-block__filter-col__items-block__title {
	font-weight: bold;
	font-size: 18px;
	line-height: 120%;
	color: #000066;
	margin-bottom: 15px;
}
.catalog-block__filter-col__checkboxes {
	margin-top: 33px;
	background: #F6F6FF;
	padding: 30px 20px;
}
.catalog-block__filter-col__checkboxes__item {
	margin-bottom: 25px;
}
.catalog-block__filter-col__checkboxes__item:nth-child(2) {
	margin-bottom: 0;
}
.catalog-block__filter-col__checkboxes__item__title {
	font-weight: bold;
	font-size: 17px;
	line-height: 120%;
	color: #000066;
	margin-bottom: 19px;
}
.catalog-block__filter-col__checkboxes__item .form-field {
	margin-bottom: 15px;
	cursor: pointer;
}
.catalog-block__filter-col__checkboxes__item .form-field:last-child {
	margin-bottom: 0;
}
.catalog-block__filter-col__checkboxes .checkbox-label {
	margin-top: 2px;
}
.catalog-block__filter-col__checkboxes .catalog-block__filter-col__checkboxes__buttons {
	display: none;
}

.filter-dropdown {
	font-weight: normal;
	font-size: 15px;
	line-height: 100%;
	color: #1E1D85;
	margin-bottom: 20px;
}
.filter-dropdown:last-child {
	margin-bottom: 0;
}
.filter-dropdown.active svg {
	opacity: 1;
}
.filter-dropdown.active .filter-dropdown-title {
	margin-bottom: 15px;
}
.filter-dropdown-title {
	position: relative;
	padding-left: 27px;
	cursor: pointer;
	transition: margin-bottom 0.3s ease-in-out;
	display: block;
	text-decoration: none;
	font-weight: 400;
}
.filter-dropdown-title a {
	color: #1E1D85;
	text-decoration: none;
	font-weight: 400;
}
.filter-dropdown-title svg {
	position: absolute;
	left: 0;
	top: 4px;
	opacity: 0.3;
	color: #1E1D85;
}
.filter-dropdown-container {
	padding-left: 46px;
}
.filter-dropdown-item {
	margin-bottom: 12px;
	text-decoration: none;
	display: block;
	font-weight: 400;
}
.filter-dropdown-item:last-child {
	margin-bottom: 0;
}

@media (max-width: 1100px) {
	.catalog-block__filter-col {
		position: relative;
	}
	.catalog-block__filter-col__top {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.catalog-block__filter-col__search {
		margin-bottom: 0;
		width: 340px;
	}
	.catalog-block__filter-col__items {
		display: none;
	}
	.catalog-block__filter-col .catalog-block__filter-col__checkboxes__buttons {
		display: flex;
		margin-top: 25px;
		justify-content: flex-end;
		width: 100%;
	}
	.catalog-block__filter-col .catalog-block__filter-col__checkboxes__buttons .btn:first-child {
		margin-right: 10px;
	}
	.catalog-block__filter-col__checkboxes {
		display: none;
		flex-wrap: wrap;
		background-color: #fff;
		border: 1px solid #DEDEF4;
		box-shadow: 0px 0px 15px rgba(0, 0, 102, 0.15);
		padding: 27px 30px 30px 30px;
	}
	.catalog-block__filter-col__checkboxes.active {
		display: flex;
		position: absolute;
		top: 39px;
		left: 0;
	}
	.catalog-block__filter-col__checkboxes__item {
		margin-right: 62px;
	}
	.catalog-block__filter-col__checkboxes__item:nth-child(2) {
		margin-right: 0;
	}
}
@media (max-width: 767px) {
	.catalog-block__filter-col__top {
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
	}
	.catalog-block__filter-col__search {
		margin-bottom: 0;
		width: auto;
		flex-grow: 1;
		margin-left: 14px;
		margin-bottom: 4px;
	}
	.catalog-block__filter-col__items {
		display: none;
	}
	.catalog-block__filter-col__checkboxes.active {
		display: flex;
		position: absolute;
		left: -20px;
		top: 31px;
		width: 100vw;
		padding: 27px 20px 33px 28px;
	}
	.catalog-block__filter-col__checkboxes__buttons {
		margin-top: 29px !important;
	}
	.catalog-block__filter-col__checkboxes__buttons .btn:first-child {
		margin-right: 19px !important;
		margin-left: -10px !important;
		width: 149px !important;
	}
}
.catalog-product-page .breadcrumb__list {
	padding-bottom: 44px;
}
.catalog-product-page .catalog-block {
	margin-bottom: 100px;
}
.catalog-product-page .catalog-compl-sertificates {
	margin-bottom: 95px;
}
.catalog-product-page .catalog-description-block {
	margin-bottom: 87px;
}
.catalog-product-page .catalog-form {
	margin-bottom: 100px;
}
@media (max-width: 1023px) {
	.catalog-product-page .catalog-block {
		margin-bottom: 67px;
	}
	.catalog-product-page .catalog-compl-sertificates {
		margin-bottom: 61px;
	}
	.catalog-product-page .catalog-description-block {
		margin-bottom: 69px;
	}
	.catalog-product-page .catalog-form {
		margin-top: 78px;
		margin-bottom: 80px;
	}
	.catalog-product-page .breadcrumb__list {
		padding-bottom: 35px;
	}
	.catalog-product-page .catalog-compl-sertificates-2 {
		padding-bottom: 79px;
	}
}
@media (max-width: 479px) {
	.catalog-product-page .breadcrumb__list {
		padding-bottom: 33px;
	}
	.catalog-product-page .catalog-block {
		margin-bottom: 84px;
	}
	.catalog-product-page .catalog-compl-sertificates {
		margin-bottom: 82px;
	}
	.catalog-product-page .catalog-form {
		margin-top: 80px;
		margin-bottom: 80px;
	}



	.footer__logo{
		display: none;
	}
}

.support-main-page .jumbotron {
  height: 450px;
}
.support-main-page .jumbotron .btn {
  padding-left: 42px;
  padding-right: 42px;
}
.support-main-page .jumbotron .btn-icon {
  width: 22px;
  height: 22px;
  margin-right: 19px;
  color: white;
}
.support-main-page .home-banner__content {
  padding-top: 90px;
}
.support-main-page .home-banner__text {
  margin-bottom: 20px;
}
.support-main-page .home-banner__description {
  margin-bottom: 35px;
  max-width: 566px;
}
.support-main-page .home-banner__description p {
  line-height: 140%;
}
.support-main-page .home-banner-buttons {
  display: flex;
  align-items: center;
}
.support-main-page .home-banner-buttons .btn {
  padding-left: 0;
  padding-right: 0;
}
.support-main-page .home-banner-buttons .btn:first-child {
  width: 343px;
  margin-right: 18px;
}
.support-main-page .home-banner-buttons .btn:nth-child(2) {
  width: 315px;
}
.support-main-page .home-banner-buttons .btn .mobile {
  display: none;
}
.support-main-page .home-banner__img img {
  max-height: 332px;
  bottom: unset;
  top: 76px;
  right: unset;
  left: 131px;
}

@media (max-width: 1020px) {
  .support-main-page .jumbotron {
    height: 370px;
  }
  .support-main-page .jumbotron .btn {
    padding-left: 30px;
    padding-right: 30px;
  }
  .support-main-page .jumbotron .btn-icon {
    width: 19px;
    height: 19px;
    margin-right: 12px;
  }
  .support-main-page .home-banner__content {
    padding-top: 40px;
    padding-bottom: 52px;
    padding-right: 30px;
    width: unset;
    flex-grow: 1;
  }
  .support-main-page .home-banner__text {
    font-size: 32px;
    line-height: 120%;
    margin-bottom: 14px;
    max-width: 400px;
  }
  .support-main-page .btn {
    height: 42px;
    font-size: 15px;
    line-height: 100%;
  }
  .support-main-page .home-banner__description {
    margin-bottom: 32px;
  }
  .support-main-page .home-banner__description p {
    font-size: 13px;
    line-height: 140%;
    max-width: 400px;
  }
  .support-main-page .home-banner__description ul {
    max-width: 401px;
  }
  .support-main-page .home-banner__description ul li {
    font-size: 13px;
    line-height: 140%;
    margin-bottom: 12px;
    padding-left: 26px;
  }
  .support-main-page .home-banner__description ul li::after {
    top: 6px;
  }
  .support-main-page .home-banner__img {
    width: unset;
  }
  .support-main-page .home-banner-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .support-main-page .home-banner-buttons .btn:first-child {
    margin-bottom: 17px;
    width: 288px;
  }
  .support-main-page .home-banner-buttons .btn:last-child {
    margin-bottom: 17px;
    width: 242px;
    padding-left: 0;
    padding-right: 0;
    font-size: 15px;
  }
  .support-main-page .home-banner-buttons .btn .desktop {
    display: none;
  }
  .support-main-page .home-banner-buttons .btn svg {
    margin-right: 9px;
  }
  .support-main-page .home-banner-buttons .btn .mobile {
    display: block;
  }
  .support-main-page .home-banner__img img {
    margin-top: 44px;
    position: relative;
    top: unset;
    left: unset;
    max-height: 280px;
  }
}
@media (max-width: 767px) {
  .support-main-page .home-banner__content {
    padding-top: 31px;
    padding-bottom: 47px;
    align-items: flex-start;
    padding-right: 0;
  }
  .support-main-page .home-banner__text {
    text-align: left;
    margin-bottom: 15px;
  }
  .support-main-page .home-banner__description {
    margin-bottom: 34px;
    text-align: left;
  }
  .support-main-page .home-banner__description p {
    text-align: left;
  }
  .support-main-page .home-banner__description ul li {
    text-align: left;
    padding-left: 26px;
  }
}
.support-main-description__title {
  font-weight: 500;
  font-size: 28px;
  line-height: 130%;
  color: #000066;
  max-width: 852px;
  margin-bottom: 26px;
}
.support-main-description__title .description-with-title {
  position: relative;
}
.support-main-description__title .description-with-title-abs {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: opacity 0.3s ease-in-out, visibility 0s 0.3s;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  box-shadow: 0 5px 15px var(--shadow);
  background-color: #fff;
}
.support-main-description__title .description-with-title-abs__wrap {
  padding-top: 50px;
  padding-left: 60px;
  padding-right: 60px;
  padding-bottom: 50px;
  font-size: 13px;
  color: var(--black);
  line-height: 15px;
}
.support-main-description__title .description-with-title-abs__close {
  display: none;
}
.support-main-description__subtitle {
  font-weight: bold;
  font-size: 18px;
  line-height: 130%;
  color: #000066;
  margin-bottom: 8px;
}
.support-main-description__text {
  font-weight: normal;
  font-size: 15px;
  line-height: 140%;
  color: #000000;
  max-width: 852px;
  margin-bottom: 23px;
}
.support-main-description .btn {
  margin-right: auto;
  margin-top: 30px;
}
.support-main-description .btn__icon {
  color: var(--primary);
}
.support-main-description .btn .mobile {
  display: none;
}
.support-main-description__table {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.support-main-description__table .btn-icon {
  width: 17px;
  height: 17px;
}
.support-main-description .table {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.support-main-description .table__head {
  /*display: grid;
  grid-template-columns: 1fr 362px;*/
  border-top: 1px solid #DEDEF4;
  border-right: 1px solid #DEDEF4;
  border-left: 1px solid #DEDEF4;
}
.support-main-description .table__head__mobile {
  display: none;
}
.support-main-description .table__head-item {
  flex-grow: 1;
  padding-left: 30px;
  background: #F6F6FF;
  padding-top: 15px;
  padding-bottom: 15px;
  font-weight: 500;
  font-size: 15px;
  line-height: 120%;
  color: #000066;
}
/*.support-main-description .table__head-item:last-child {
  border-left: 1px solid #DEDEF4;
}*/
.support-main-description .table__body {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #DEDEF4;
}
.support-main-description .table__body-row {
  /*display: grid;
  grid-template-columns: 1fr 362px;*/
  border-right: 1px solid #DEDEF4;
  border-left: 1px solid #DEDEF4;
}
.support-main-description .table__body-row__grid {
  grid-template-areas: "a c" "b c";
}
.support-main-description .table__body-row__grid .table__body-row-item:nth-child(1) {
  grid-area: a;
}
.support-main-description .table__body-row__grid .table__body-row-item:nth-child(2) {
  grid-area: b;
}
.support-main-description .table__body-row__grid .table__body-row-item:nth-child(3) {
  grid-area: c;
}
.support-main-description .table__body-row-item {
  border-top: 1px solid #DEDEF4;
  padding: 30px;
}
.support-main-description .table__body-row-item__title {
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
  color: #000066;
  margin-bottom: 5px;
}
.support-main-description .table__body-row-item p {
  font-weight: normal;
  font-size: 15px;
  line-height: 140%;
  color: #000000;
}
/*.support-main-description .table__body-row-item:last-child {
  border-left: 1px solid #DEDEF4;
}*/

@media (min-width: 1020px) {
  .description-with-title:hover .description-with-title-abs {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in-out;
  }
}
@media (max-width: 1020px) {
  .support-main-description__title {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 130%;
    position: relative;
  }
  .support-main-description__title .description-with-title {
    position: unset;
  }
  .support-main-description__title .description-with-title-abs {
    left: unset;
    right: 0;
    transform: translate(0, 100%);
    max-width: 90vw;
    width: 90vw;
    white-space: unset;
  }
  .support-main-description__title .description-with-title-abs.open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in-out;
  }
  .support-main-description__title .description-with-title-abs__wrap {
    position: relative;
  }
  .support-main-description__title .description-with-title-abs__close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
  }
  .support-main-description__subtitle {
    font-size: 15px;
    line-height: 130%;
    margin-bottom: 12px;
  }
  .support-main-description__text {
    font-size: 13px;
    line-height: 140%;
    margin-bottom: 32px;
  }
  .support-main-description .table__head {
    grid-template-columns: 1fr 167px;
  }
  .support-main-description .table__head-item {
    padding: 15px 20px;
    font-size: 13px;
    line-height: 120%;
  }
  .support-main-description .table__body-row {
    grid-template-columns: 1fr 167px;
  }
  .support-main-description .table__body-row-item {
    padding: 26px 20px;
  }
  .support-main-description .table__body-row-item__title {
    font-size: 13px;
    line-height: 140%;
  }
  .support-main-description .table__body-row-item p {
    font-size: 13px;
    line-height: 140%;
  }
}
@media (max-width: 767px) {
  .support-main-description__title {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 130%;
  }
  .support-main-description__subtitle {
    font-size: 15px;
    line-height: 130%;
    margin-bottom: 12px;
  }
  .support-main-description__text {
    font-size: 13px;
    line-height: 140%;
    margin-bottom: 22px;
  }
  .support-main-description .btn {
    margin-left: unset;
  }
  .support-main-description__table {
    align-items: flex-start;
  }
  .support-main-description .table__head {
    grid-template-columns: 1fr;
  }
  .support-main-description .table__head__mobile {
    flex-grow: 1;
    background: #F6F6FF;
    font-weight: 500;
    display: block;
    font-size: 15px;
    line-height: 120%;
    color: #000066;
    padding: 15px 20px;
    font-size: 13px;
    line-height: 120%;
  }
  .support-main-description .table__head-item {
    display: none;
    padding: 15px 20px;
    font-size: 13px;
    line-height: 120%;
  }
  .support-main-description .table__body-row {
    grid-template-columns: 1fr;
    grid-template-areas: "b" "a";
  }
  .support-main-description .table__body-row__grid {
    grid-template-columns: 1fr;
    grid-template-areas: "c" "a" "b";
  }
  .support-main-description .table__body-row__grid .table__body-row-item {
    margin-top: 0;
    border-left: none;
  }
  .support-main-description .table__body-row__grid .table__body-row-item:nth-child(1) {
    padding-bottom: 10px;
  }
  .support-main-description .table__body-row__grid .table__body-row-item:nth-child(2) {
    margin-top: 10px;
    padding-bottom: 10px;
  }
  .support-main-description .table__body-row__grid .table__body-row-item:nth-child(3) {
    padding-top: 22px;
    padding-bottom: 10px;
  }
  .support-main-description .table__body-row__grid .table__body-row-item:last-child {
    border-left: none !important;
  }
  .support-main-description .table__body-row-item {
    border-top: unset;
    margin-top: 10px;
    padding: 0px 20px;
  }
  .support-main-description .table__body-row-item:first-child {
    grid-area: a;
    padding-bottom: 14px;
  }
  .support-main-description .table__body-row-item__title {
    font-size: 13px;
    line-height: 140%;
  }
  .support-main-description .table__body-row-item p {
    font-size: 13px;
    line-height: 140%;
  }
  .support-main-description .table__body-row-item:last-child {
    padding-top: 22px;
    grid-area: b;
    border-top: 1px solid #DEDEF4;
    border-left: none !important;
  }
}
.support-main-cards {
  margin-bottom: 100px;
/*  overflow-x: hidden;*/
  max-width: 100vw;
}
.support-main-cards-title {
  font-weight: 500;
  font-size: 38px;
  line-height: 110%;
  color: #000066;
  margin-bottom: 43px;
}
.support-main-cards-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px;
}
.support-main-cards .product-card-video-slider-slider__control {
  display: none;
}

.support-main-card {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.support-main-card-title {
  font-weight: bold;
  font-size: 18px;
  line-height: 120%;
  text-align: center;
  color: #FFFFFF;
  background-color: #B5B1FF;
  padding-top: 20px;
  padding-bottom: 20px;
}
.support-main-card-wrap {
  border: 1px solid #DEDEF4;
  padding-bottom: 25px;
  padding-left: 20px;
  padding-right: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.support-main-card-item {
  display: flex;
  align-items: flex-start;
  padding-top: 21px;
  padding-bottom: 23px;
  border-top: 1px solid #DEDEF4;
}
.support-main-card-item:first-child {
  border-top: none;
  border-bottom: 1px solid #DEDEF4;
}
.support-main-card-item:nth-child(2) {
  border-top: none;
  border-top: none;
}
.support-main-card-item-icon {
  width: 15px;
  margin-top: 5px;
  min-width: 15px;
  height: 12px;
  margin-right: 13px;
}
.support-main-card-item-icon use {
  color: #B5B1FF;
}
.support-main-card-item-text {
  font-weight: normal;
  font-size: 14px;
  line-height: 140%;
  color: #000000;
}
.support-main-card-footer {
  margin-top: auto;
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  font-weight: 500;
  font-size: 15px;
  line-height: 120%;
  color: #1E1D85;
  padding-top: 15px;
}
.support-main-card-footer-button {
  width: 100%;
  transition: all 250ms ease-in-out;
}
.support-main-card-footer-button:hover {
  box-shadow: 0 0 15px var(--primary-shadow);
}
.support-main-card-2 .support-main-card-title {
  background-color: #7470E0;
}
.support-main-card-2 .support-main-card-item-icon use, .standart .support-main-card-item-icon use {
  color: #7470E0;
}
.support-main-card-2 .support-main-card-footer-button {
  background-color: #7470E0;
  color: #fff;
}
.support-main-card-3 .support-main-card-title {
  background-color: #3A38A3;
}
.support-main-card-3 .support-main-card-item-icon use, .advanced .support-main-card-item-icon use {
  color: #3A38A3;
}
.support-main-card-3 .support-main-card-footer-button {
  background-color: #3A38A3;
  color: #fff;
}
.support-main-card-4 .support-main-card-title {
  background-color: #000066;
}
.support-main-card-4 .support-main-card-item-icon use, .premium .support-main-card-item-icon use {
  color: #000066;
}
.support-main-card-4 .support-main-card-footer-button {
  background-color: #000066;
  color: #fff;
}

@media (max-width: 1240px) {
  .support-main-cards-title {
    font-size: 32px;
    line-height: 110%;
  }
  .support-main-cards-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 435px 435px;
    grid-gap: 40px 30px;
  }

  .support-main-card-title {
    font-size: 18px;
    line-height: 120%;
  }
  .support-main-card-item-text {
    font-size: 13px;
  }
  .support-main-card-footer {
    font-size: 13px;
  }
  .support-main-card-footer-button {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .support-main-cards .product-card-video-slider-slider__control {
    display: flex;
    padding-bottom: 14px;
  }
  .support-main-cards .product-card-video-slider-slider__control .btn {
    margin-right: 8px;
  }
  .support-main-cards-title {
    font-size: 25px;
    line-height: 110%;
    margin-bottom: 24px;
  }
  .support-main-cards-wrap {
    display: flex;
    grid-template-columns: unset;
    grid-template-rows: unset;
    grid-gap: unset;
    margin-bottom: 30px;
  }

  .support-main-card {
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .support-main-card-title {
    font-size: 18px;
    line-height: 120%;
  }
  .support-main-card-wrap {
    display: flex;
    height: 372px;
  }
  .support-main-card-item-text {
    font-size: 13px;
  }
  .support-main-card-footer {
    font-size: 13px;
  }
  .support-main-card-footer-button {
    width: 100%;
  }
}
.support-main-accordion {
  margin-top: 100px;
  margin-bottom: 100px;
}
.support-main-accordion .container {
	max-width: 1156px;
}
.support-main-accordion__title {
  font-weight: 500;
  font-size: 38px;
  line-height: 110%;
  color: #000066;
  margin-bottom: 20px;
}
.support-main-accordion__subtitle {
  font-weight: normal;
  font-size: 13px;
  line-height: 140%;
  color: #000000;
  margin-bottom: 36px;
}
.support-main-accordion .home-faq-item {
  padding-top: 29px;
  padding-bottom: 27px;
}
.support-main-accordion .home-faq-item__title {
  max-width: 783px;
}
.support-main-accordion .home-faq-item__header {
  justify-content: space-between;
}
.support-main-accordion .home-faq-item.active .home-faq-item__state {
  align-self: center;
}
.support-main-accordion .home-faq-item__content {
  padding-right: 0;
}
.support-main-accordion .home-faq-item__content .btn {
  margin-bottom: 30px;
  margin-left: 21px;
}
.support-main-accordion .home-faq-item__content .search-field {
  margin-bottom: 26px;
  max-width: 1076px;
  margin-left: auto;
  margin-right: auto;
}
.support-main-accordion .home-faq-item__content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 26px;
}
.support-main-accordion .home-faq-item__content ul li {
  padding-left: 21px;
  position: relative;
  font-weight: normal;
  font-size: 17px;
  line-height: 140%;
  color: var(--black);
  margin-bottom: 11px;
}
.support-main-accordion .home-faq-item__content ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  display: block;
  background-color: var(--red);
  border-radius: 100%;
}
.support-main-accordion .home-faq-item__content ul li:last-child {
  margin-bottom: 0;
}
.support-main-accordion .home-faq-item__content .support-main-accordion-item {
  max-width: 1076px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 493px 1fr;
  grid-gap: 42px;
  padding-top: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid #DEDEF4;
}
.support-main-accordion .home-faq-item__content .support-main-accordion-item:first-child {
  border-top: 1px solid #DEDEF4;
}
.support-main-accordion .home-faq-item__content .support-main-accordion-item svg {
  width: 17px;
  min-width: 17px;
  height: 14px;
  margin-right: 12px;
}
.support-main-accordion .home-faq-item__content .support-main-accordion-item__contacts {
  display: flex;
  flex-direction: column;
}
.support-main-accordion .home-faq-item__content .support-main-accordion-item__contacts span {
  font-weight: normal;
  font-size: 15px;
  line-height: 120%;
  color: #000000;
}
.support-main-accordion .home-faq-item__content .support-main-accordion-item__contacts__phone {
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.support-main-accordion .home-faq-item__content .support-main-accordion-item__contacts__email {
  display: flex;
  align-items: center;
  text-decoration: underline;
}
.support-main-accordion .home-faq-item__content .support-main-accordion-item__contacts__email span {
  color: #1E1D85;
}
.support-main-accordion .home-faq-item__content .support-main-accordion-item__text__title {
  font-weight: bold;
  font-size: 18px;
  line-height: 100%;
  /* identical to box height, or 18px */
  color: #000066;
  margin-bottom: 8px;
}
.support-main-accordion .home-faq-item__content .support-main-accordion-item__text__description {
  font-weight: normal;
  font-size: 15px;
  line-height: 140%;
  color: #000000;
}
.support-main-accordion .home-faq-item__content .support-main-accordion-item__text__description p {
  margin-bottom: 10px;
}
.support-main-accordion .home-faq-item__content .support-main-accordion-item__text__description p a {
  font-weight: 400;
}
.support-main-accordion .home-faq-item__content .support-main-accordion-item__text__description p:last-child {
  margin-bottom: 0;
}
.support-main-accordion .home-faq-item__content small {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-weight: normal;
  font-size: 13px;
  line-height: 140%;
  color: #000000;
  display: block;
  margin-top: 29px;
}
.support-main-accordion .home-faq-item__content .support-main-accordion__block {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 26px;
}
.support-main-accordion .home-faq-item__content .support-main-accordion__block:first-child {
  margin-top: 20px;
}
.support-main-accordion .home-faq-item__content .support-main-accordion__block p {
  font-weight: normal;
  font-size: 15px;
  line-height: 140%;
  color: #000000;
}
.support-main-accordion .home-faq-item__content .support-main-accordion__block__title {
  font-weight: bold;
  font-size: 18px;
  line-height: 100%;
  color: #000066;
  margin-bottom: 14px;
}
.support-main-accordion .home-faq-item__content .support-main-accordion__block__description {
  font-weight: normal;
  font-size: 15px;
  line-height: 140%;
  color: #000000;
  display: flex;
  flex-direction: column;
}
.support-main-accordion .home-faq-item__content .support-main-accordion__block__description__item {
  display: flex;
  margin-top: 9px;
  align-items: center;
}
.support-main-accordion .home-faq-item__content .support-main-accordion__block__description__item__icon {
  width: 17px;
  min-width: 17px;
  height: 20px;
  margin-right: 10px;
  color: #7470E0;
}
.support-main-accordion .home-faq-item__content .support-main-accordion__block__alert {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  padding: 24px 30px 24px 30px;
  border: 1px solid #DEDEF4;
  border-left: 3px solid #E42D24;
  margin-bottom: 36px;
}
.support-main-accordion .home-faq-item__content .support-main-accordion__block__alert__title {
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
  color: #000000;
}
.support-main-accordion .home-faq-item__content .support-main-accordion__block__alert__text {
  font-weight: normal;
  font-size: 15px;
  line-height: 140%;
  color: #000000;
}

/*@media(min-width: 1024px){
	.support-main-accordion .home-faq-item__content ul {
		margin-left: -21px;
	}
}*/

@media (max-width: 1020px) {
  .support-main-accordion {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .support-main-accordion__title {
    font-size: 31px;
    margin-bottom: 25px;
    line-height: 110%;
  }
  .support-main-accordion__subtitle {
    font-size: 11px;
    line-height: 140%;
    margin-bottom: 25px;
  }
  .support-main-accordion .search-field__icon {
    padding-left: 16px;
  }
  .support-main-accordion .home-faq-item__content .search-field {
    margin-left: 21px;
    margin-right: 5px;
  }
  .support-main-accordion .home-faq-item__content ul li {
    font-size: 15px;
  }
  .support-main-accordion .home-faq-item__content .support-main-accordion-item-wrap, .support-main-page .home-faq-item__content .support-main-accordion-item-wrap {
    padding-left: 21px;
  }
  .support-main-accordion .home-faq-item__content .support-main-accordion-item__contacts__phone {
    font-size: 13px;
  }
  .support-main-accordion .home-faq-item__content .support-main-accordion-item__contacts__phone span {
    font-size: 13px;
  }
  .support-main-accordion .home-faq-item__content .support-main-accordion-item__contacts__email span {
    font-size: 13px;
  }
  .support-main-accordion .home-faq-item__content .support-main-accordion-item__text__title {
    font-size: 15px;
    line-height: 100%;
    margin-bottom: 7px;
  }
  .support-main-accordion .home-faq-item__content .support-main-accordion-item__text__description {
    font-size: 13px;
    line-height: 140%;
  }
  .support-main-accordion .home-faq-item__content .support-main-accordion-item__text__description p {
    font-size: 13px;
    line-height: 140%;
  }
  .support-main-accordion .home-faq-item__content .support-main-accordion__block {
    padding-left: 21px;
  }
  .support-main-accordion .home-faq-item__content .support-main-accordion__block p {
    font-size: 13px;
    line-height: 140%;
  }
  .support-main-accordion .home-faq-item__content .support-main-accordion__block__title {
    font-size: 15px;
    line-height: 100%;
  }
  .support-main-accordion .home-faq-item__content .support-main-accordion__block__description {
    font-size: 13px;
    line-height: 140%;
  }
  .support-main-accordion .home-faq-item__content .support-main-accordion__block__description__item {
    font-size: 13px;
    line-height: 140%;
  }
  .support-main-accordion .home-faq-item__content .support-main-accordion__block__alert {
    margin-left: 21px;
  }
  .support-main-accordion .home-faq-item__content .support-main-accordion__block__alert__title {
    font-size: 13px;
    line-height: 140%;
  }
  .support-main-accordion .home-faq-item__content .support-main-accordion__block__alert__text {
    font-size: 13px;
    line-height: 140%;
  }
}
@media (max-width: 767px) {
  .support-main-accordion {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .support-main-accordion__title {
    font-size: 25px;
    line-height: 110%;
  }
  .support-main-accordion__subtitle {
    font-size: 11px;
    line-height: 140%;
    margin-bottom: 20px;
  }
  .support-main-accordion .home-faq-item {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .support-main-accordion .home-faq-item__state {
    margin-left: 0;
  }
  .support-main-accordion .home-faq-item__content .search-field {
    margin-left: 5px;
    margin-bottom: 29px;
    margin-right: 5px;
  }
  .support-main-accordion .home-faq-item__content ul {
    margin-bottom: 16px;
  }
  .support-main-accordion .home-faq-item__content ul li {
    font-size: 15px;
  }
  .support-main-accordion .home-faq-item__content .support-main-accordion-item {
    grid-template-columns: 1fr;
    grid-gap: 18px;
  }
  .support-main-accordion .home-faq-item__content .support-main-accordion-item-wrap {
    padding-left: 0;
  }
  .support-main-accordion .home-faq-item__content .support-main-accordion-item__contacts span {
    font-size: 13px;
    line-height: 120%;
  }
  .support-main-accordion .home-faq-item__content .support-main-accordion-item__contacts__phone {
    font-size: 13px;
    line-height: 120%;
  }
  .support-main-accordion .home-faq-item__content .support-main-accordion-item__contacts__email {
    font-size: 13px;
    line-height: 120%;
  }
  .support-main-accordion .home-faq-item__content .support-main-accordion-item__contacts__email span {
    font-size: 13px;
    line-height: 120%;
  }
  .support-main-accordion .home-faq-item__content .support-main-accordion-item__text__title {
    font-size: 15px;
    line-height: 100%;
    margin-bottom: 7px;
  }
  .support-main-accordion .home-faq-item__content .support-main-accordion-item__text__description {
    font-size: 13px;
    line-height: 140%;
  }
  .support-main-accordion .home-faq-item__content .support-main-accordion-item__text__description p {
    font-size: 13px;
    line-height: 140%;
  }
  .support-main-accordion .home-faq-item__content .support-main-accordion__block {
    padding-left: 0;
    margin-top: 19px;
    margin-bottom: 19px;
  }
  .support-main-accordion .home-faq-item__content .support-main-accordion__block:last-child {
    margin-bottom: 0;
  }
  .support-main-accordion .home-faq-item__content .support-main-accordion__block:first-child {
    margin-top: 4px;
  }
  .support-main-accordion .home-faq-item__content .support-main-accordion__block p {
    font-size: 13px;
    line-height: 140%;
  }
  .support-main-accordion .home-faq-item__content .support-main-accordion__block__title {
    font-size: 15px;
    line-height: 120%;
  }
  .support-main-accordion .home-faq-item__content .support-main-accordion__block__description {
    font-size: 13px;
    line-height: 140%;
  }
  .support-main-accordion .home-faq-item__content .support-main-accordion__block__description__item {
    font-size: 13px;
    line-height: 140%;
  }
  .support-main-accordion .home-faq-item__content .support-main-accordion__block__alert {
    padding-left: 27px;
    margin-left: 0;
    margin-bottom: 30px;
  }
  .support-main-accordion .home-faq-item__content .support-main-accordion__block__alert__title {
    font-size: 13px;
    line-height: 140%;
  }
  .support-main-accordion .home-faq-item__content .support-main-accordion__block__alert__text {
    font-size: 13px;
    line-height: 140%;
  }
}
.support-main-video-slider {
  background-color: var(--light-grey);
  padding-top: 85px;
  padding-bottom: 101px;
  overflow: hidden;
}
.support-main-video-slider__title {
  font-weight: 500;
  font-size: 38px;
  line-height: 100%;
  color: var(--dark-blue);
  margin-bottom: 56px;
}
.support-main-video-slider__wrap {
  max-width: 1380px;
  padding-left: 40px;
  padding-right: 40px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.support-main-video-slider-slider {
  display: flex;
}
.support-main-video-slider .tns-ovh {
  overflow: visible;
}
.support-main-video-slider ul {
  list-style: none;
}
.support-main-video-slider ul li {
  line-height: 143%;
}
.support-main-video-slider .support-main-video-slider-slider__control {
  margin-top: 14px;
}
.support-main-video-slider .support-main-video-slider-slider__control button:first-child {
  margin-right: 6px;
}
.support-main-video-slider .support-main-video-slider-slider__control button:nth-child(2) {
  margin-right: 13px;
}
@media (max-width: 1023px) {
  .support-main-video-slider {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .support-main-video-slider__title {
    font-size: 32px;
    margin-bottom: 32px;
    line-height: 120%;
  }
  .support-main-video-slider__wrap {
    padding-left: 30px;
    padding-right: 30px;
  }
  .support-main-video-slider .support-main-video-slider-slider__control {
    margin-top: 17px;
  }
}
@media (max-width: 767px) {
  .support-main-video-slider__title {
    font-size: 25px;
    margin-bottom: 30px;
    line-height: 110%;
  }
  .support-main-video-slider__wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.support-main-video-slider__item {
  width: 100%;
  opacity: 0.3;
  transition: 0.3s ease-in-out;
}
.support-main-video-slider__item__wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
}
.support-main-video-slider__item-image {
  margin-bottom: 17px;
}
.support-main-video-slider__item-content {
  padding-left: 25px;
  display: flex;
  flex-direction: column;
}
.support-main-video-slider__item__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  color: var(--dark-blue);
  margin-bottom: 10px;
}
.support-main-video-slider__item__subtitle {
  margin-top: -5px;
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7373BA;
  margin-bottom: 13px;
}
.support-main-video-slider__item__description ul {
  font-weight: normal;
  font-size: 14px;
  line-height: 140%;
  color: var(--black);
}
.support-main-video-slider__item.tns-slide-active {
  transition: 0.3s ease-in-out;
  opacity: 1;
}
@media (max-width: 1023px) {
  .support-main-video-slider__item__title {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .support-main-video-slider__item__description ul {
    font-size: 13px;
  }
  .support-main-video-slider__item__subtitle {
    font-size: 11px;
    margin-bottom: 9px;
  }
  .support-main-video-slider__item-image {
    margin-bottom: 13px;
  }
}
@media (max-width: 479px) {
  .support-main-video-slider__item-image {
    margin-bottom: 17px;
  }
}

.support-main-page .breadcrumb__list {
  padding-bottom: 45px;
}

@media (max-width: 1020px) {
  .support-main-page .breadcrumb__list {
    padding-bottom: 36px;
  }
}
@media (max-width: 767px) {
  .support-main-page .breadcrumb__list {
    padding-bottom: 26px;
  }
}
.support-download-page {
  margin-bottom: 100px;
}
.support-download-page .breadcrumb__list {
  padding-bottom: 44px;
}
.support-download-page .support-download__title {
  font-weight: 500;
  font-size: 38px;
  line-height: 110%;
  color: #000066;
  margin-bottom: 35px;
}
.support-download-page .support-download__wrap {
  max-width: 1076px;
  display: flex;
  flex-direction: column;
}
.support-download-page .support-download__item {
  padding-top: 22px;
  padding-bottom: 29px;
  border-bottom: 1px solid #DEDEF4;
}
.support-download-page .support-download__item:first-child {
  border-top: 1px solid #DEDEF4;
}
.support-download-page .support-download__item__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  color: #000066;
  margin-bottom: 20px;
}

@media (max-width: 1020px) {
  .support-download-page {
    margin-bottom: 171px;
  }
  .support-download-page .breadcrumb__list {
    padding-bottom: 33px;
  }
  .support-download-page .support-download__title {
    font-size: 32px;
    line-height: 120%;
    margin-bottom: 33px;
  }
  .support-download-page .support-download__item__title {
    font-size: 15px;
    line-height: 120%;
  }
}
@media (max-width: 767px) {
  .support-download-page {
    margin-bottom: 80px;
  }
  .support-download-page .breadcrumb__list {
    padding-bottom: 31px;
  }
  .support-download-page .support-download__title {
    font-size: 25px;
    line-height: 120%;
  }
  .support-download-page .support-download__item__title {
    margin-bottom: 26px;
  }
}
.support-faq-page {
  margin-bottom: 100px;
}
.support-faq-page .breadcrumb__list {
  padding-bottom: 43px;
}
.support-faq-page__title {
  font-weight: 500;
  font-size: 38px;
  line-height: 110%;
  color: #000066;
  margin-bottom: 33px;
}
.support-faq-page__wrap {
  max-width: 1076px;
}
.support-faq-page .home-faq-item__title {
  font-size: 18px;
  line-height: 120%;
}
.support-faq-page .home-faq .home-faq-item.active .home-faq-item__state {
  align-self: center;
}
.support-faq-page .home-faq .home-faq-item.active {
  padding-bottom: 37px;
}
.support-faq-page .home-faq-item {
  padding-top: 25px;
  padding-bottom: 26px;
}
.support-faq-page .accordion-item-panel p {
  font-weight: normal;
  font-size: 17px;
  line-height: 140%;
  color: #000000;
  margin-bottom: 19px;
}
.support-faq-page .accordion-item-panel p:first-child {
  margin-top: 22px;
  margin-bottom: 38px;
}
.support-faq-page .accordion-item-panel .block {
  background-color: rgba(246, 246, 255, 0.5);
  padding: 21px 28px 25px 28px;
}
.support-faq-page .accordion-item-panel .block p, .support-faq-page .accordion-item-panel .block ul, .support-faq-page .accordion-item-panel .block ol{
  font-weight: normal;
  font-size: 15px;
  line-height: 140%;
  color: #000000;
  margin-bottom: 14px;
}



.support-faq-page .accordion-item-panel .block p:first-child {
  margin-top: 0;
}
.support-faq-page .accordion-item-panel .block p:last-child {
  margin-bottom: 0;
}

.support-faq__controll {
  margin-top: 30px;
  display: flex;
  align-items: center;
}
.support-faq__controll__wrap {
  display: flex;
  align-items: center;
}
.support-faq__controll__text {
  margin-right: 29px;
}
.support-faq__controll .btn-primary {
  margin-left: auto;
}
.support-faq__controll .btn-primary-inverse {
  display: none;
  margin-left: auto;
}
.support-faq__controll .btn-primary-inverse.active {
  display: flex;
}

@media (max-width: 1020px) {
  .support-faq-page {
    margin-bottom: 80px;
  }
  .support-faq-page .breadcrumb__list {
    padding-bottom: 33px;
  }
  .support-faq-page__title {
    font-size: 32px;
    line-height: 120%;
  }
  .support-faq-page .accordion-item-panel p {
    font-size: 15px;
    line-height: 140%;
    margin-bottom: 30px;
  }
  .support-faq-page .accordion-item-panel p:first-child {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .support-faq-page .accordion-item-panel .block p {
    font-size: 13px;
    line-height: 140%;
    margin-bottom: 13px;
  }
}
@media (max-width: 767px) {
  .support-faq-page .breadcrumb__list {
    line-height: 100%;
    padding-bottom: 31px;
  }
  .support-faq-page__title {
    font-size: 25px;
    line-height: 120%;
  }
  .support-faq-page .home-faq-item {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .support-faq-page .accordion-item-panel p {
    font-size: 15px;
    line-height: 140%;
    margin-bottom: 30px;
  }
  .support-faq-page .accordion-item-panel p:first-child {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .support-faq-page .accordion-item-panel .block {
    padding: 20px;
  }
  .support-faq-page .accordion-item-panel .block p {
    font-size: 13px;
    line-height: 140%;
    margin-bottom: 11px;
  }
  .support-faq__controll {
    flex-direction: column;
    align-items: flex-start;
  }
  .support-faq__controll .btn-primary {
    margin-left: 0;
    margin-top: 30px;
  }
}
.support-education-page {
  margin-bottom: 100px;
}
.support-education-page .breadcrumb__list {
  padding-bottom: 41px;
}
.support-education-page__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.support-education-page__title {
  font-weight: 500;
  font-size: 38px;
  line-height: 120%;
  color: #000066;
}
.support-education-page__filter {
  display: flex;
  list-style: none;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
}
.support-education-page__filter__item {
  display: flex;
  align-items: center;
}
.support-education-page__filter__item:not(:last-child) {
  margin-right: 41px;
}
.support-education-page__filter__button {
  border: none;
  outline: none;
  font: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  line-height: 1;
  cursor: pointer;
  background: transparent;
  color: var(--primary);
  transition: color 250ms linear;
}
.support-education-page__filter__button:hover {
  text-decoration: none;
}
.support-education-page__filter__button:hover {
  color: var(--primary-dark);
}
.support-education-page__filter__button.active {
  color: var(--accent);
  cursor: default;
}
.support-education-page__filter__button.active:hover {
  color: var(--accent);
}
.support-education-page__filter__button.active:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 12px;
  background: currentColor;
}
@media (min-width: 1024px) {
  .support-education-page__filter {
    font-size: 17px;
  }
  .support-education-page__filter__item:not(:last-child) {
    margin-right: calc(2 * var(--space-unit));
  }
}
.support-education-page__control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 49px;
}
.support-education-page__control .custom-select {
  width: 295px;
  height: 42px;
  min-height: 42px;
}
.support-education-page__control .search-field {
  max-width: 854px;
  width: 100%;
}
.support-education-page__control .search-field svg {
  color: #000066;
}
.support-education-page__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 40px;
  grid-row-gap: 35px;
}
.support-education-page__video__item__wrap {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.support-education-page__video__item__title {
  margin-top: 17px;
  font-size: 18px;
  line-height: 120%;
  color: #000066;
}

@media (max-width: 1020px) {
  .support-education-page {
    margin-bottom: 80px;
  }
  .support-education-page .breadcrumb__list {
    padding-bottom: 34px;
  }
  .support-education-page__top {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
  }
  .support-education-page__title {
    font-size: 32px;
    line-height: 120%;
  }
  .support-education-page__filter {
    margin-top: 30px;
  }
  .support-education-page__filter__button {
    border: none;
    outline: none;
    font: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    line-height: 1;
    cursor: pointer;
  }
  .support-education-page__filter__button:hover {
    text-decoration: none;
  }
  .support-education-page__control {
    margin-bottom: 36px;
  }
  .support-education-page__control__select {
    width: 278px;
  }
  .support-education-page__control .search-field {
    width: 339px;
  }
  .support-education-page__content {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 32px;
    grid-row-gap: 39px;
  }
  .support-education-page__video__item__title {
    margin-top: 13px;
    font-size: 15px;
    line-height: 120%;
  }
}

@media(max-width: 900px){
	.support-education-page__control{
		display: grid;
		grid-column-gap: 32px;
		grid-template-columns: repeat(2, 1fr);
	}

	.support-education-page__control .search-field{
		width: 100%;
	}
}

@media (max-width: 767px) {

	.support-education-page__control{
		display: flex;
		grid-column-gap: 0;
		grid-template-columns: 0;
	}

	.support-education-page__control .search-field{
		width: 339px;
	}

  .support-education-page .breadcrumb__list {
    padding-bottom: 24px;
  }
  .support-education-page__title {
    font-size: 25px;
    line-height: 120%;
  }
  .support-education-page__filter {
    margin-top: 19px;
  }
  .support-education-page__filter__button {
    border: none;
    outline: none;
    font: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    line-height: 1;
    cursor: pointer;
  }
  .support-education-page__filter__button:hover {
    text-decoration: none;
  }
  .support-education-page__control {
    flex-direction: column;
    margin-top: -15px;
    margin-bottom: 41px;
  }
  .support-education-page__control .custom-select {
    width: 100%;
    margin-right: 0;
  }
  .support-education-page__control .search-field {
    margin-left: 0;
    margin-top: 25px;
    width: 100%;
  }
  .support-education-page__content {
    grid-template-columns: 1fr;
  }
  .support-education-page__video__item__title {
    margin-top: 11px;
  }
}
.support-education-page__course-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}
.support-education-page__course__item {
  border: 1px solid #DEDEF4;
  display: flex;
  align-items: flex-start;
  padding: 28px 25px 30px 25px;
  min-height: 305px;
  transition: box-shadow 400ms ease-in-out;
  text-decoration: none;
}
.support-education-page__course__item:hover {
  box-shadow: 0 5px 15px var(--shadow);
}
.support-education-page__course__item-image {
  border: 1px solid #DEDEF4;
  margin-right: 25px;
  width: 140px;
  min-width: 140px;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.support-education-page__course__item-image__placeholder {
  border: unset;
  padding: 0;
}
.support-education-page__course__item-text {
  display: flex;
  flex-direction: column;
}
.support-education-page__course__item-text__title {
  font-size: 18px;
  line-height: 120%;
  color: #000066;
  margin-bottom: 13px;
	text-decoration: none;
}
.support-education-page__course__item-text__block {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}
.support-education-page__course__item-text__block__title {
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7373BA;
  margin-bottom: 4px;
}
.support-education-page__course__item-text__block__value {
  font-weight: normal;
  font-size: 15px;
  line-height: 120%;
  color: #000000;
}
.support-education-page__course__item-text__description {
  font-weight: normal;
  font-size: 15px;
  line-height: 120%;
  color: #000000;
}

@media (max-width: 1020px) {
  .support-education-page__course-content {
    grid-template-columns: 1fr;
  }
  .support-education-page__course__item {
    padding: 26px 22px 29px 25px;
    min-height: 250px;
  }
  .support-education-page__course__item-text__title {
    font-size: 15px;
    line-height: 120%;
    margin-bottom: 16px;
  }
  .support-education-page__course__item-text__block {
    margin-bottom: 19px;
  }
  .support-education-page__course__item-text__block__title {
    font-size: 11px;
    line-height: 150%;
  }
  .support-education-page__course__item-text__block__value {
    font-size: 13px;
    line-height: 120%;
  }
  .support-education-page__course__item-text__description {
    font-size: 13px;
    line-height: 120%;
    hyphens: auto;
    word-break: break-word;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
@media (max-width: 767px) {
  .support-education-page__course-content {
    grid-template-columns: 1fr;
  }
  .support-education-page__course__item {
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 33px;
  }
  .support-education-page__course__item-image {
    margin-right: 0;
    margin-bottom: 24px;
  }
  .support-education-page__course__item-text__title {
    hyphens: auto;
    word-break: break-word;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .support-education-page__course__item-text__description {
    -webkit-line-clamp: 3;
  }
}
.support-course-item-page .breadcrumb__list {
  padding-bottom: 40px;
}
.support-course-item-page .vacancy-form .select-selected {
  height: 50px;
}
.support-course-item-page .vacancy-form .select-selected span {
  display: block;
  white-space: nowrap;
  padding-right: 40px;
  overflow: hidden;
	text-overflow: ellipsis;
}
.support-course-item-page .vacancy-form .select-selected:after {
  top: 15px;
}

.support-course-item .vacancy-form{
  margin-top: 100px;
}
.support-course-item-wrap {
  display: flex;
  align-items: flex-start;
}
.support-course-item-2 .support-course-item__title {
  margin-bottom: 28px;
}
.support-course-item__content {
  width: 854px;
}
.support-course-item__content__video__wrap {
  width: 100%;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
}
.support-course-item__content__video__image {
  position: absolute;
  width: 100%;
  height: 100%;
}
.support-course-item__content__video__icon {
  position: absolute;
  /*top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);*/
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.support-course-item__content__video__icon:hover svg {
  color: #FF0000;
}
.support-course-item__content__video__icon svg {
  width: 89px;
  height: 63px;
}
.support-course-item__content__video__icon svg use {
  transition: 0.3s ease-in-out;
}
.support-course-item__content__video__description {
  margin-top: 30px;
  font-size: 17px;
  line-height: 153%;
  color: #000000;
  margin-bottom: 23px;
}
.support-course-item__content__video__description a {
  font-weight: 400;
}
.support-course-item__content__video__description p {
  margin-bottom: 14px;
}

.support-course-item__content__video__buttons{
	margin-top: 23px;
}

.support-course-item__content__video__buttons .btn {
  margin-right: 10px;
}
.support-course-item__title {
  font-size: 38px;
  line-height: 120%;
  color: #000066;
  font-weight: 500;
  margin-bottom: 31px;
  letter-spacing: 0.3px;
}
.support-course-item__blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
  margin-bottom: 34px;
}
.support-course-item__block {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.support-course-item__block:last-child {
  margin-bottom: 0;
}
.support-course-item__block__title {
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7373BA;
  margin-bottom: 4px;
}
.support-course-item__block a {
  color: #1E1D85;
  font-weight: 400;
}
.support-course-item__block__value {
  font-weight: normal;
  font-size: 15px;
  line-height: 140%;
  color: #000000;
}
.support-course-item__attention {
  padding: 24px 30px 25px 27px;
  border: 1px solid #DEDEF4;
  border-left: 3px solid #E42D24;
  margin-bottom: 40px;
}
.support-course-item__attention p {
  font-weight: normal;
  font-size: 15px;
  line-height: 140%;
  color: #000000;
  margin-bottom: 9px;
}
.support-course-item__attention p a {
  font-weight: 400;
}
.support-course-item__attention p:last-child {
  margin-bottom: 0;
}
.support-course-item__buttons {
  margin-bottom: 40px;
}
.support-course-item__buttons .btn:first-child {
  margin-right: 20px;
  width: 254px;
}
.support-course-item__buttons .btn:nth-child(2) {
  width: 225px;
  padding-right: 40px;
}
.support-course-item__buttons .btn .btn-icon {
  width: 20px;
  height: 20px;
  margin-right: 17px;
}
.support-course-item__buttons .mobile {
  display: none;
}
.support-course-item__list__title {
  font-weight: 500;
  font-size: 28px;
  line-height: 110%;
  color: #000066;
  margin-bottom: 23px;
}
.support-course-item__list ul {
  list-style: none;
  padding-left: 0;
}
.support-course-item__list ul li {
  padding-left: 22px;
  position: relative;
  font-weight: normal;
  font-size: 17px;
  line-height: 140%;
  color: var(--black);
  margin-bottom: 13px;
}
.support-course-item__list ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  display: block;
  background-color: var(--red);
  border-radius: 100%;
}
.support-course-item__list ul li:last-child {
  margin-bottom: 0;
}
.support-course-item__list__btn {
  margin-top: 40px;
  width: 189px;
  height: 42px;
  font-size: 15px;
  padding: 0;
}
.support-course-item__side {
  flex-grow: 1;
  align-self: stretch;
  margin-top: 16px;
}
.support-course-item__side .mobile {
  display: none;
}
.support-course-item__side__wrap {
  margin-left: auto;
  width: 295px;
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
}
.support-course-item__side__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  color: #000066;
  margin-bottom: 23px;
}
.support-course-item__side__container {
  display: flex;
  flex-direction: column;
}
.support-course-item__side__item {
  padding: 25px;
  border: 1px solid #DEDEF4;
  font-size: 15px;
  line-height: 120%;
  color: #000066;
  transition: box-shadow 400ms ease-in-out;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 20px;
}
.support-course-item__side__item:last-child {
  margin-bottom: 0;
}
.support-course-item__side__item:hover {
  box-shadow: 0 5px 15px var(--shadow);
}
.support-course-item__side__btn {
  margin-top: 10px;
  width: 141px;
  height: 42px;
  font-size: 15px;
  padding: 0;
}
.support-course-item__side__video {
  margin-top: 75px;
	margin-bottom: 90px;
}
.support-course-item__side__video__container {
  display: flex;
  flex-direction: column;
}
.support-course-item__side__video__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 41px;
  text-decoration: none;
}
.support-course-item__side__video__item__wrap {
  text-decoration: none;
}
.support-course-item__side__video__item:last-child {
  margin-bottom: 0;
}
.support-course-item__side__video__item-image {
  margin-bottom: 11px;
}
.support-course-item__side__video__item__title {
  font-weight: 500;
  font-size: 15px;
  line-height: 120%;
  color: #000066;
}
.support-course-item__side__video__btn {
  width: 199px;
  padding: 0;
  height: 42px;
  margin-top: 26px;
}

@media (max-width: 1280px) {
  .support-course-item__content {
    flex-grow: 1;
    margin-right: 40px;
    width: 100%;
  }
  .support-course-item__content__video__image {
    width: 100%;
  }
  .support-course-item__content__video__image img {
    width: 100%;
  }
  .support-course-item__side {
    width: 295px;
  }
}
@media (max-width: 1020px) {
  .support-course-item-page .breadcrumb__list {
    padding-bottom: 34px;
  }

  .support-course-item .vacancy-form{
    margin-top: 80px;
  }
  .support-course-item-wrap {
    flex-direction: column;
  }
  .support-course-item__content {
    margin-right: 0;
  }
  .support-course-item__content__video__description {
    font-size: 15px;
    line-height: 153%;
  }
  .support-course-item__content__video__description p {
    font-size: 15px;
    line-height: 153%;
    margin-bottom: 14px;
  }
  .support-course-item__title {
    font-size: 32px;
    line-height: 120%;
    margin-bottom: 32px;
  }
  .support-course-item__blocks {
    margin-top: -7px;
    margin-bottom: 37px;
  }
  .support-course-item__block__title {
    font-size: 11px;
    line-height: 150%;
    margin-bottom: 3px;
  }
  .support-course-item__block__value {
    font-size: 13px;
    line-height: 140%;
  }
  .support-course-item__attention {
    padding: 24px 30px 25px 29px;
    margin-bottom: 35px;
  }
  .support-course-item__attention p {
    font-size: 13px;
    line-height: 140%;
    margin-bottom: 14px;
  }
  .support-course-item__buttons {
    margin-bottom: 41px;
  }
  .support-course-item__buttons .btn:first-child {
    width: 214px;
    height: 42px;
    padding: 0;
    font-size: 15px;
    margin-right: 11px;
  }
  .support-course-item__buttons .btn:nth-child(2) {
    width: 181px;
    height: 42px;
    padding: 0;
    font-size: 15px;
  }
  .support-course-item__buttons .btn .btn-icon {
    width: 17px;
    height: 17px;
  }
  .support-course-item__buttons .desktop {
    display: none;
  }
  .support-course-item__buttons .mobile {
    display: flex;
    margin-right: 10px;
  }
  .support-course-item__list__title {
    font-size: 20px;
    line-height: 110%;
    margin-bottom: 15px;
  }
  .support-course-item__list ul {
    margin-bottom: 0;
  }
  .support-course-item__list ul li {
    font-size: 15px;
    padding-left: 25px;
    line-height: 140%;
  }
  .support-course-item__list ul li::after {
    top: 7px;
  }
  .support-course-item__list__btn {
    margin-top: 24px;
  }
  .support-course-item__side {
    width: 100%;
    margin-top: 80px;
  }
  .support-course-item__side__wrap {
    width: 100%;
  }
  .support-course-item__side__title {
    font-size: 20px;
    line-height: 100%;
    color: #000066;
    margin-bottom: 30px;
  }
  .support-course-item__side__container {
    width: 100%;
    flex-direction: unset;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
  }
  .support-course-item__side__item {
    margin-bottom: 0;
  }
  .support-course-item__side__item:nth-child(3) {
    display: none;
  }
  .support-course-item__side__btn {
    display: none;
  }
  .support-course-item__side__video {
    margin-top: 80px;
  }
  .support-course-item__side__video .mobile {
    display: block;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: #000066;
    margin-bottom: 33px;
  }
  .support-course-item__side__video__wrap {
    width: 100%;
  }
  .support-course-item__side__video__container {
    width: 100%;
    flex-direction: unset;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
  }
  .support-course-item__side__video__item {
    margin-bottom: 0;
  }
  .support-course-item__side__video__item:nth-child(3) {
    display: none;
  }
  .support-course-item__side__video__item-image {
    margin-bottom: 12px;
  }
  .support-course-item__side__video__item__title {
    font-size: 15px;
    line-height: 120%;
  }
  .support-course-item-page .vacancy-form .btn {
    height: 42px;
    font-size: 15px;
    width: 145px;
  }
}
@media (max-width: 767px) {
  /*.support-course-item-page .vacancy-form-footer .btn {
    margin-top: 20px;
  }*/

	.vacancy-form-footer .form-error{
		position: relative !important;
		transform: none !important;
	}

  .support-course-item-page .breadcrumb__list {
    line-height: 100%;
    padding-bottom: 32px;
  }
  .support-course-item-page .vacancy-form {
    padding-top: 55px;
  }
  .support-course-item-page .vacancy-form-footer .btn {
    width: 100%;
  }

  .support-course-item .vacancy-form{
    margin-top: 66px;
  }
  .support-course-item__title {
    font-size: 25px;
    line-height: 120%;
    margin-bottom: 29px;
  }
  .support-course-item__blocks {
    grid-template-columns: 1fr;
    grid-gap: 21px;
    margin-bottom: 25px;
    margin-top: -5px;
  }
  .support-course-item__attention {
    margin-bottom: 29px;
  }
  .support-course-item__buttons .btn:first-child {
    margin-bottom: 20px;
  }
}
@media (max-width: 400px) {
  .support-course-item-w {
    margin-bottom: 70px;
  }
  .support-course-item__side {
    margin-top: 83px;
  }
  .support-course-item__side__container {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  .support-course-item__side__item {
    min-height: 125px;
  }
  .support-course-item__side__video__container {
    grid-template-columns: 1fr;
    grid-gap: 26px;
  }
  .support-course-item__side__video__item-image {
    margin-bottom: 10px;
  }
}
.support-documentation-page {
  margin-bottom: 100px;
}
.support-documentation-page .breadcrumb__list {
  padding-bottom: 40px;
}
.support-documentation-page__filter {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 47px;
}
.support-documentation-page__filter__item {
  display: flex;
  align-items: center;
}
.support-documentation-page__filter__item:not(:last-child) {
  margin-right: 41px;
}
.support-documentation-page__filter__button {
  border: none;
  outline: none;
  font: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  line-height: 1;
  cursor: pointer;
  background: transparent;
  color: var(--primary);
  transition: color 250ms linear;
}
.support-documentation-page__filter__button:hover {
  text-decoration: none;
}
.support-documentation-page__filter__button:hover {
  color: var(--primary-dark);
}
.support-documentation-page__filter__button.active {
  color: var(--accent);
  cursor: default;
}
.support-documentation-page__filter__button.active:hover {
  color: var(--accent);
}
.support-documentation-page__filter__button.active:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 12px;
  background: currentColor;
}
@media (min-width: 1024px) {
  .support-documentation-page__filter {
    font-size: 17px;
  }
  .support-documentation-page__filter__item:not(:last-child) {
    margin-right: calc(2 * var(--space-unit));
  }
}
.support-documentation__title {
  font-weight: 500;
  font-size: 38px;
  line-height: 120%;
  color: #000066;
  margin-bottom: 42px;
}
.support-documentation__banner {
  background-color: #1E1D85;
  width: 100%;
  display: flex;
  align-items: center;
  padding-left: 91px;
  height: 350px;
  padding-right: 112px;
  margin-bottom: 63px;
}
.support-documentation__banner__image {
  margin-right: 100px;
}
.support-documentation__banner img {
  width: 256px;
  min-width: 256px;
}
.support-documentation__banner__text {
  padding-bottom: 8px;
}
.support-documentation__banner__text p {
  font-weight: normal;
  font-size: 15px;
  line-height: 140%;
  color: #FFFFFF;
  margin-bottom: 35px;
}
.support-documentation__banner__text .btn {
  width: 253px;
  height: 54px;
  font-size: 17px;
}
.support-documentation-tab-1 {
  display: flex;
  flex-direction: column;
}
.support-documentation-tab-1__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 50px;
}
.support-documentation-tab-1__top__selects {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
.support-documentation-tab-1__top .custom-select {
  height: 42px;
  min-height: 42px;
  margin-right: 40px;
}
.support-documentation-tab-1__top .custom-select:nth-child(1) {
  width: 295px;
}
.support-documentation-tab-1__top .custom-select:nth-child(2) {
	width: 295px;
	margin-right: 45px;
}
.support-documentation-tab-1__top .custom-select:nth-child(3) {
  width: 250px;

}
.support-documentation-tab-1__top .btn {
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  width: 287px;
}
.support-documentation-tab-1__top .btn-icon {
  margin-right: 13px;
  width: 17px;
  height: 18px;
}
.support-documentation-tab-1__top .btn .mobile {
  display: none;
}
.support-documentation-tab-1__content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 0px;
}
.support-documentation-tab-1__item {
  border-bottom: 1px solid #DEDEF4;
  padding: 30px 5px 30px 22px;
  min-height: 0px;
  display: grid;
  grid-template-columns: 0.6fr 0.7fr 1.2fr 1fr 0.5fr;
}
.support-documentation-tab-1__itemin {
	display: flex;
	justify-content: left;
	align-items: center;
}
.support-documentation-tab-1__item__image {
	min-width: 100px;
	width: 100px;
	margin-right: 25px;
	border: 1px solid #DEDEF4;
}
.support-documentation-tab-1__item__text__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  color: var(--dark-blue);
  margin-bottom: 10px;
}
.support-documentation-tab-1__item__text ul {
  list-style: none;
  margin-bottom: 19px;
  font-weight: normal;
  font-size: 14px;
  color: var(--black);
}
.support-documentation-tab-1__item__text ul li {
  line-height: 143%;
}
.support-documentation-tab-1__item__text .btn svg {
  width: 17px;
  height: 18px;
}
.support-documentation-tab-1__item__text .btn .mobile {
  display: none;
}
.support-documentation-tab-2__top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 50px;
}
.support-documentation-tab-2__top .btn {
  margin-left: auto;
}
.support-documentation-tab-2__top .btn .mobile {
  display: none;
}
.support-documentation-tab-2__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}
.support-documentation-tab-2__item {
  /*min-height: 280px;*/
  width: 100%;
  position: relative;
}
.support-documentation-tab-2__item__wrap {
  border: 1px solid #DEDEF4;
  padding: 28px 25px 25px 25px;
  min-height: 280px;
  display: flex;
  align-items: flex-start;
}
.support-documentation-tab-2__item__close {
  display: none;
}
.support-documentation-tab-2__item.open .support-documentation-tab-2__item {
  position: relative;
  width: 100%;
  z-index: 10;
}
.support-documentation-tab-2__item.open .support-documentation-tab-2__item__wrap {
  z-index: 100;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 50px);
  padding: 50px 45px 65px 45px;
  background-color: #fff;
  box-shadow: 0px 5px 15px rgba(0, 0, 102, 0.15);
}
.support-documentation-tab-2__item.open .support-documentation-tab-2__item__wrap .support-documentation-tab-2__item__close, .open .support-documentation-tab-2__item__close{
  display: block;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}
.support-documentation-tab-2__item.open .support-documentation-tab-2__item__wrap .support-documentation-tab-2__item__text__description {
  hyphens: unset;
  word-break: unset;
  overflow: unset;
  display: flex;
  flex-direction: column;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
	height: auto;
}
.support-documentation-tab-2__item.open .support-documentation-tab-2__item__wrap .support-documentation-tab-2__item__text__extra {
  display: none;
}
.support-documentation-tab-2__item__image {
  min-width: 100px;
  width: 100px;
  margin-right: 22px;
	border: 1px solid #DEDEF4;
}
.support-documentation-tab-2__item__text__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  color: var(--dark-blue);
  margin-bottom: 5px;
}
.support-documentation-tab-2__item__text__subtitle {
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7373BA;
  margin-bottom: 15px;
}
.support-documentation-tab-2__item__text__description {
  font-weight: normal;
  font-size: 14px;
  line-height: 140%;
  color: #000000;
  hyphens: auto;
  word-break: break-word;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.support-documentation-tab-2__item__text__description p {
  margin-bottom: 9px;
}
.support-documentation-tab-2__item__text ul {
  list-style: none;
  font-weight: normal;
  font-size: 14px;
  color: var(--black);
}
.support-documentation-tab-2__item__text ul li {
  line-height: 143%;
}
.support-documentation-tab-2__item__text ul {
  list-style: none;
  padding-left: 0;
}
.support-documentation-tab-2__item__text ul li {
  padding-left: 22px;
  position: relative;
  font-weight: normal;
  font-size: 14px;
  line-height: 140%;
  color: var(--black);
  margin-bottom: 13px;
}
.support-documentation-tab-2__item__text ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  display: block;
  background-color: var(--red);
  border-radius: 100%;
}
.support-documentation-tab-2__item__text ul li:last-child {
  margin-bottom: 0;
}
.support-documentation-tab-2__item__text__extra {
  font-weight: normal;
  font-size: 14px;
  line-height: 140%;
  color: #1E1D85;
  cursor: pointer;
}
.support-documentation-tab-2__item__text .btn {
  margin-top: 18px;
}
.support-documentation-tab-2__item__text .btn svg {
  width: 17px;
  height: 18px;
}
.support-documentation-tab-2__item__text .btn .mobile {
  display: none;
}
.support-documentation-tab-3__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.support-documentation-tab-3__top .custom-select {
  width: 295px;
}
.support-documentation-tab-3__top .btn {
  margin-left: auto;
}
.support-documentation-tab-3__top .btn .mobile {
  display: none;
}
.support-documentation-tab-3__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}
.support-documentation-tab-3__item {
  border: 1px solid #DEDEF4;
  padding: 30px 25px 25px 30px;
  min-height: 239px;
  display: flex;
  align-items: flex-start;
}
.support-documentation-tab-3__item__image {
  min-width: 100px;
  width: 100px;
  margin-right: 25px;
	border: 1px solid #DEDEF4;
}
.support-documentation-tab-3__item__text__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  color: var(--dark-blue);
  margin-bottom: 5px;
}
.support-documentation-tab-3__item__text__subtitle {
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7373BA;
  margin-bottom: 15px;
}
.support-documentation-tab-3__item__text__description {
  font-weight: normal;
  font-size: 14px;
  line-height: 140%;
  color: #000000;
}
.support-documentation-tab-3__item__text__description p {
  margin-bottom: 9px;
}
.support-documentation-tab-3__item__text ul {
  list-style: none;
  font-weight: normal;
  font-size: 14px;
  color: var(--black);
}
.support-documentation-tab-3__item__text ul li {
  line-height: 143%;
}
.support-documentation-tab-3__item__text .btn {
  margin-top: 32px;
}
.support-documentation-tab-3__item__text .btn svg {
  width: 17px;
  height: 18px;
}
.support-documentation-tab-3__item__text .btn .mobile {
  display: none;
}
.support-documentation-tab-4__wrap {
  max-width: 1076px;
  margin-left: auto;
  margin-right: auto;
}
.support-documentation-tab-4 .home-faq .home-faq-item.active .home-faq-item__state {
  align-self: center;
}
.support-documentation-tab-4__item {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid #DEDEF4;
  text-decoration: none;
}
.support-documentation-tab-4__item:first-child {
  margin-top: 30px;
}
.support-documentation-tab-4__item__title {
  font-weight: bold;
  font-size: 18px;
  line-height: 100%;
  text-decoration-line: underline;
  color: #1E1D85;
  margin-bottom: 9px;
}
.support-documentation-tab-4__item__description {
  font-weight: normal;
  font-size: 15px;
  line-height: 140%;
  color: #000000;
}

.support-documentation-tab-1__item__text b {
	margin-left: -3px;
}

.support-documentation-tab-1__item__text b:first-child{
	margin-left: 0;
}

@media (max-width: 1250px) {
  .support-documentation-tab-1__top {
    flex-wrap: wrap;
    margin-bottom: 37px;
  }
  .support-documentation-tab-1__top__selects {
    width: 100%;
  }
  .support-documentation-tab-1__top .custom-select {
    margin-right: 30px;
  }
  .support-documentation-tab-1__top .custom-select {
    width: unset;
    flex-grow: 1;
  }
 /* .support-documentation-tab-1__top .custom-select:nth-child(2) {
    width: 155px;
  }
  .support-documentation-tab-1__top .custom-select:nth-child(3) {
    width: unset;
    flex-grow: 1;
  }*/
  .support-documentation-tab-1__top .btn {
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
    margin-top: 30px;
    width: 287px;
    padding-left: 4px;
  }
  .support-documentation-tab-1__top .btn-icon {
    width: 17px;
    margin-right: 13px;
    height: 18px;
  }
  .support-documentation-tab-1__top .btn .mobile {
    display: none;
  }

  .support-documentation-tab-1__item__text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .support-documentation-tab-1__item__text__title {
    font-size: 15px;
    line-height: 120%;
    margin-bottom: 14px;
  }
  .support-documentation-tab-1__item__text ul li {
    font-size: 13px;
    line-height: 140%;
  }
  .support-documentation-tab-1__item__text .btn {
    margin-left: -125px;
    width: 189px;
    margin-top: auto;
  }
  .support-documentation-tab-1__item__text .btn .desktop {
    display: none;
  }
  .support-documentation-tab-1__item__text .btn .mobile {
    display: flex;
    margin-right: 10px;
  }
  .support-documentation-tab-3__top {
    flex-wrap: wrap;
    margin-bottom: 37px;
  }
  .support-documentation-tab-3__top__selects {
    width: 100%;
  }
  .support-documentation-tab-3__top .custom-select {
    margin-right: 30px;
    height: 42px;
    min-height: 42px;
  }
  .support-documentation-tab-3__top .btn {
    margin-left: auto;
  }
  .support-documentation-tab-3__top .btn-icon {
    width: 17px;
    margin-right: 13px;
    height: 18px;
  }
  .support-documentation-tab-3__top .btn .mobile {
    display: none;
  }
  .support-documentation-tab-3__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px 30px;
  }
  .support-documentation-tab-3__item {
    min-height: 275px;
    padding: 30px 25px 35px 25px;
  }
  .support-documentation-tab-3__item__text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .support-documentation-tab-3__item__text__title {
    font-size: 15px;
    line-height: 120%;
    margin-bottom: 14px;
  }
  .support-documentation-tab-3__item__text ul li {
    font-size: 13px;
    line-height: 140%;
  }
  .support-documentation-tab-3__item__text .btn {
    margin-left: -125px;
    width: 189px;
    margin-top: auto;
  }
  .support-documentation-tab-3__item__text .btn .desktop {
    display: none;
  }
  .support-documentation-tab-3__item__text .btn .mobile {
    display: flex;
    margin-right: 10px;
  }
}
@media (max-width: 1020px) {
  .support-documentation-page {
    margin-bottom: 80px;
  }
  .support-documentation-page .breadcrumb__list {
    padding-bottom: 35px;
  }
  .support-documentation-page__filter {
    justify-content: flex-start;
    margin-bottom: 29px;
  }
  .support-documentation-page__filter__item:not(:last-child) {
    margin-right: 20px;
  }
  .support-documentation__title {
    font-size: 32px;
    line-height: 120%;
    margin-bottom: 31px;
  }
  .support-documentation__banner {
    padding-left: 43px;
    padding-right: 62px;
    margin-bottom: 43px;
  }
  .support-documentation__banner__image {
    margin-top: 11px;
    margin-right: 70px;
  }
  .support-documentation__banner__text {
    padding-bottom: 4px;
  }
  .support-documentation__banner__text p {
    font-size: 13px;
    line-height: 140%;
    margin-bottom: 25px;
  }
  .support-documentation__banner__text .btn {
    width: 250px;
    height: 42px;
    font-size: 15px;
  }
  .support-documentation-tab-1__top .custom-select:nth-child(2) {
    width: 250px;
  }
  .support-documentation-tab-1__top .custom-select:nth-child(3) {
    width: 216px;
    flex-grow: unset;
  }

  .support-documentation-tab-1__item {
    min-height: 275px;
    padding: 30px 25px 35px 25px;
  }
  .support-documentation-tab-1__item__text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .support-documentation-tab-1__item__text__title {
    font-size: 15px;
    line-height: 120%;
    margin-bottom: 14px;
  }
  .support-documentation-tab-1__item__text ul li {
    font-size: 13px;
    line-height: 140%;
  }
  .support-documentation-tab-1__item__text .btn {
    margin-left: -125px;
    width: 189px;
    margin-top: auto;
  }
  .support-documentation-tab-1__item__text .btn .desktop {
    display: none;
  }
  .support-documentation-tab-1__item__text .btn .mobile {
    display: flex;
    margin-right: 10px;
  }
  .support-documentation-tab-2__top {
    margin-bottom: 35px;
  }
  .support-documentation-tab-2__top .btn .desktop {
    display: none;
  }
  .support-documentation-tab-2__top .btn .mobile {
    display: block;
    margin-right: 10px;
  }
  .support-documentation-tab-2__content {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 40px;
  }
  .support-documentation-tab-2__item__wrap {
    min-height: 256px;
  }
  .support-documentation-tab-2__item__text__title {
    font-size: 15px;
    line-height: 120%;
  }
  .support-documentation-tab-2__item__text__subtitle {
    font-size: 11px;
    line-height: 150%;
  }
  .support-documentation-tab-2__item__text__description p {
    font-size: 13px;
    line-height: 140%;
  }
  .support-documentation-tab-2__item__text ul li {
    font-size: 13px;
    line-height: 140%;
  }
  .support-documentation-tab-2__item__text ul li::after {
    top: 6px;
  }
  .support-documentation-tab-2__item__text .btn .desktop {
    display: none;
  }
  .support-documentation-tab-2__item__text .btn .mobile {
    display: block;
    margin-right: 10px;
  }
  .support-documentation-tab-3__top .btn {
    width: unset !important;
  }
  .support-documentation-tab-3__top .btn .mobile {
    display: flex !important;
    margin-right: 10px;
  }
  .support-documentation-tab-3__top .btn .desktop {
    display: none;
  }
  .support-documentation-tab-3__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px 30px;
  }
  .support-documentation-tab-3__item {
    min-height: 275px;
    padding: 30px 25px 35px 25px;
  }
  .support-documentation-tab-3__item__text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .support-documentation-tab-3__item__text__title {
    font-size: 15px;
    line-height: 120%;
    margin-bottom: 14px;
  }
  .support-documentation-tab-3__item__text ul li {
    font-size: 13px;
    line-height: 140%;
  }
  .support-documentation-tab-3__item__text .btn {
    margin-left: -125px;
    width: 189px;
    margin-top: auto;
  }
  .support-documentation-tab-3__item__text .btn .desktop {
    display: none;
  }
  .support-documentation-tab-3__item__text .btn .mobile {
    display: flex;
    margin-right: 10px;
  }
  .support-documentation-tab-4 {
    margin-top: 38px;
  }
  .support-documentation-tab-4 .home-faq .home-faq-item__title {
    font-size: 24px;
    line-height: 120%;
  }
  .support-documentation-tab-4__item {
    margin-left: 20px;
    margin-right: 30px;
    display: flex;
    flex-direction: column;
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid #DEDEF4;
    text-decoration: none;
  }
  .support-documentation-tab-4__item:first-child {
    margin-top: 30px;
  }
  .support-documentation-tab-4__item__title {
    font-weight: bold;
    font-size: 15px;
    line-height: 100%;
    text-decoration-line: underline;
    color: #1E1D85;
    margin-bottom: 9px;
  }
  .support-documentation-tab-4__item__description {
    font-weight: normal;
    font-size: 13px;
    line-height: 140%;
    color: #000000;
  }
}
.support-documentation-tab-1__itemin__mobile {
	display: none;
}
@media (max-width: 1000px) {
  .support-documentation-page .breadcrumb__list {
    padding-bottom: 25px;
  }
  .support-documentation-page__filter {
    flex-wrap: wrap;
    margin-bottom: 25px;
  }
  .support-documentation-page__filter__item {
    margin-top: 14px;
  }
  .support-documentation-page__filter__button.active:before {
    margin-right: 10px;
  }
  .support-documentation__title {
    font-size: 25px;
    line-height: 120%;
  }
  .support-documentation__banner {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 35px;
    margin-bottom: 21px;
    height: 270px;
    align-items: flex-start;
  }
  .support-documentation__banner__image {
    display: none;
  }
  .support-documentation__banner__text {
    padding-bottom: 4px;
  }
  .support-documentation__banner__text p {
    font-size: 13px;
    line-height: 140%;
    margin-bottom: 25px;
  }
  .support-documentation__banner__text .btn {
    width: 213px;
    height: 42px;
    font-size: 15px;
  }
  .support-documentation-tab-1__top {
    margin-bottom: 29px;
    justify-content: flex-start;
  }
  .support-documentation-tab-1__top__selects {
    flex-wrap: wrap;
  }
  .support-documentation-tab-1__top .custom-select:nth-child(1) {
    width: 100%;
    margin-right: 0;
  }
  .support-documentation-tab-1__top .custom-select:nth-child(2) {
    width: 100%;
    margin-top: 25px;
    margin-right: 0;
  }
  .support-documentation-tab-1__top .custom-select:nth-child(3) {
    width: 100%;
    margin-top: 25px;
    margin-right: 0;
  }
  .support-documentation-tab-1__top .btn {
    margin-left: 0;
    margin-top: 25px;
    width: 287px;
  }
  .support-documentation-tab-1__top .btn-icon {
    width: 17px;
    margin-right: 13px;
    height: 18px;
  }
  .support-documentation-tab-1__top .btn .mobile {
    display: none;
  }
  .support-documentation-tab-1__content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 40px;
  }
  .support-documentation-tab-1__item {
    min-height: 275px;
    padding: 1px 1px 1px 1px;
	grid-template-columns: 1fr;
	grid-gap: 1px;
	background-color: #dedef4;
  }
  .support-documentation-tab-1__item > div {
	background-color: white;
  }
  .support-documentation-tab-1__itemin {
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding: 10px;
  }
  .support-documentation-tab-1__itemin__mobile {
	display: block;
  }
  .button-doc-mobile-hide {
	display: none;
  }
  .header-documentation-item {
	display: none;
  }
  .support-documentation-tab-1__item__text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .support-documentation-tab-1__item__text__title {
    font-size: 15px;
    line-height: 120%;
    margin-bottom: 14px;
  }
  .support-documentation-tab-1__item__text ul li {
    font-size: 13px;
    line-height: 140%;
  }
  .support-documentation-tab-1__item__text .btn {
    margin-left: -125px;
    width: 189px;
    margin-top: auto;
  }
  .support-documentation-tab-1__item__text .btn .desktop {
    display: none;
  }
  .support-documentation-tab-1__item__text .btn .mobile {
    display: flex;
    margin-right: 10px;
  }
  .support-documentation-tab-2__top {
    margin-bottom: 40px;
    justify-content: flex-start;
  }
  .support-documentation-tab-2__top .btn {
    margin-left: 0;
  }
  .support-documentation-tab-2__content {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 40px;
  }
  .support-documentation-tab-2__item__wrap {
    min-height: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  .support-documentation-tab-2__item__image {
    margin-right: 0;
    margin-bottom: 25px;
  }
  .support-documentation-tab-2__item__text__title {
    font-size: 15px;
    line-height: 120%;
  }
  .support-documentation-tab-2__item__text__subtitle {
    font-size: 11px;
    line-height: 150%;
  }
  .support-documentation-tab-2__item__text__description {
    overflow: hidden;
    line-height: 123%;
    hyphens: auto;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
	  text-overflow: ellipsis;
	  height: 50px;
  }
  .support-documentation-tab-2__item__text__description p {
    font-size: 13px;
    line-height: 123%;
    overflow: hidden;
    /*hyphens: auto;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;*/
  }
  .support-documentation-tab-2__item__text ul li {
    font-size: 13px;
    line-height: 140%;
  }
  .support-documentation-tab-2__item__text ul li::after {
    top: 6px;
  }
  .support-documentation-tab-3__top {
    margin-bottom: 41px;
    justify-content: flex-start;
  }
  .support-documentation-tab-3__top__selects {
    flex-wrap: wrap;
  }
  .support-documentation-tab-3__top .custom-select:nth-child(1) {
    width: 100%;
    margin-right: 0;
  }
  .support-documentation-tab-3__top .custom-select:nth-child(2) {
    width: 100%;
    margin-top: 25px;
    margin-right: 0;
  }
  .support-documentation-tab-3__top .custom-select:nth-child(3) {
    width: 100%;
    margin-top: 25px;
    margin-right: 0;
  }
  .support-documentation-tab-3__top .btn {
    margin-left: 0;
    margin-top: 30px;
    width: 287px;
  }
  .support-documentation-tab-3__top .btn-icon {
    width: 17px;
    margin-right: 13px;
    height: 18px;
  }
  .support-documentation-tab-3__top .btn .mobile {
    display: none;
  }
  .support-documentation-tab-3__content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 40px;
  }
  .support-documentation-tab-3__item {
    min-height: 275px;
    padding: 30px 25px 35px 25px;
  }
  .support-documentation-tab-3__item__text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .support-documentation-tab-3__item__text__title {
    font-size: 15px;
    line-height: 120%;
    margin-bottom: 14px;
  }
  .support-documentation-tab-3__item__text ul li {
    font-size: 13px;
    line-height: 140%;
  }
  .support-documentation-tab-3__item__text .btn {
    margin-left: -125px;
    width: 189px;
    margin-top: auto;
  }
  .support-documentation-tab-3__item__text .btn .desktop {
    display: none;
  }
  .support-documentation-tab-3__item__text .btn .mobile {
    display: flex;
    margin-right: 10px;
  }
  .support-documentation-tab-4 .home-faq .home-faq-item__title {
    font-size: 17px;
    line-height: 120%;
  }
  .support-documentation-tab-4__item {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid #DEDEF4;
    text-decoration: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  .support-documentation-tab-4__item:first-child {
    margin-top: 30px;
  }
  .support-documentation-tab-4__item__title {
    font-weight: bold;
    font-size: 15px;
    line-height: 100%;
    text-decoration-line: underline;
    color: #1E1D85;
    margin-bottom: 9px;
  }
  .support-documentation-tab-4__item__description {
    font-weight: normal;
    font-size: 13px;
    line-height: 140%;
    color: #000000;
  }
}



.pswp {
	z-index: 10000000000 !important;
}

.fix-100-vh {
	display: flex;
	flex-direction: column;
}
.fix-100-vh .awards-item-page {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}
/* Style items (options): */
.select-items {
  position: absolute;
  background: #FFFFFF;
  box-shadow: 0px 5px 15px rgba(0, 0, 102, 0.15);
  top: calc(100% + 3px);
  left: 0;
  right: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.select-items{
	max-height: 500px;
	overflow: hidden;
}

.select-items[data-slimscroll]{
	height: 200px;
}

.select-items .custom-select-item {
  width: 100%;
  font-weight: normal;
  font-size: 13px;
  /*line-height: 230%;*/
  color: #1E1D85;
  border-radius: 100px;
  padding-left: 15px;
	transition: .3s;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}


.select-items .custom-select-item {
	white-space: normal;
	line-height: normal;
	padding: 8px 0;
	padding-left: 15px;
	flex: none;
}

.vacancy-form .close-icon{
	display: none !important;
}

.version-filter + div .close-icon {
	display: none;
}


.select-items .custom-select-item:hover{
	background: #F6F6FF;
}

.custom-select-item__img{
	margin-right: 5px;
	width: 16px;
}
	/* Hide the items when the select box is closed: */
.select-hide {
  display: none !important;
}
.custom-select {
    position: relative;
}
.custom-select select {
    display: none;
}
.select-items, .select-selected {
  border: 1px solid var(--border);
  outline: none;
  background: white;
  font: inherit;
  padding-left: 20px;
  padding-right: 35px;
  font-size: 13px;
  line-height: 1.2;
  min-height: 42px;
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.select-selected > span:first-child{
	text-overflow: ellipsis;
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	padding-right: 15px;
}

.select-items:focus, .select-items:active, .select-items.select-arrow-active, .select-selected:focus, .select-selected:active, .select-selected.select-arrow-active {
  border-color: #918cff;
  box-shadow: 0px 0px 6px rgba(30, 29, 133, 0.5);
  outline: none;
}
.select-items.start, .select-selected.start {
  color: #7373BA;
}

.select-items .custom-select-item {
  width: 100%;
  font-weight: normal;
  font-size: 14px;
  /*line-height: 230%;*/
  color: #1E1D85;
  border-radius: 100px;
  padding-left: 15px;
}

.tns-inner{
	margin: 0 -2px;
}
.select-selected:after {
    position: absolute;
    content: url("/local/templates/s-terra22/images/icons/arrow.svg");
    top: 11px;
    right: 25px;
    width: 0;
    height: 0;
}
.page.fix-100-vh-attention .attention-page {
  flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.attention-page {
  margin-bottom: 76px;
}
.attention-page .text-container {
  max-width: 1076px;
}
.attention-page-title {
  font-weight: 500;
  font-size: 38px;
  line-height: 110%;
  color: #000066;
  margin-bottom: 32px;
}
.attention-page-content {
  font-weight: 400;
  font-size: 17px;
  line-height: 140%;
  color: #000000;
}
.attention-page-content p {
  margin-bottom: 19px;
}

@media (max-width: 1020px) {
  .attention-page-title {
    font-size: 32px;
    line-height: 110%;
    margin-bottom: 34px;
  }
  .attention-page-content {
    min-height: 350px;
    font-size: 15px;
    line-height: 140%;
  }
}
@media (max-width: 767px) {
  .attention-page {
    margin-bottom: 59px;
  }
  .attention-page-title {
    font-size: 25px;
    line-height: 110%;
    margin-bottom: 25px;
  }
  .attention-page-content {
    min-height: unset;
    font-size: 15px;
    line-height: 140%;
  }
  .attention-page-content p {
    margin-bottom: 16px;
  }
}
.fix-100-vh .search-page {
  flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.search-page {
  margin-bottom: 100px;
}
.search-page .text-container {
  max-width: 1076px;
}
.search-page__info {
  margin-top: 15px;
  margin-bottom: 25px;
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  color: #000000;
}
.search-page__items {
  display: flex;
  flex-direction: column;
	max-width: 1076px;
}
.search-page__item {
  display: flex;
  flex-direction: column;
  padding-left: 23px;
  padding-top: 24px;
  padding-bottom: 25px;
  border-bottom: 1px solid #DEDEF4;
}
.search-page__item:first-child {
  border-top: 1px solid #DEDEF4;
}
.search-page__item__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  color: #1E1D85;
  margin-bottom: 7px;
}
.search-page__item__description {
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  color: #000000;
}
.search-page .js-control-main-search {
  margin-top: 30px;
}
.search-page .vacancies-vacant__controll__btn {
  display: block;
}

@media (max-width: 1020px) {
  .search-page {
    margin-bottom: 80px;
  }
  .search-page .breadcrumb__list {
    padding-bottom: 47px;
  }
  .search-page .text-container {
    max-width: 1076px;
  }
  .search-page__info {
    margin-bottom: 21px;
    font-size: 13px;
    line-height: 140%;
  }
  .search-page__items {
    display: flex;
    flex-direction: column;
  }
  .search-page__item {
    padding-left: 0px;
    padding-top: 22px;
    padding-bottom: 21px;
  }
  .search-page__item__title {
    font-weight: 500;
    font-size: 15px;
    line-height: 120%;
    color: #1E1D85;
  }
  .search-page__item__description {
    font-weight: 400;
    font-size: 13px;
    line-height: 140%;
    /* or 18px */
    color: #000000;
  }
  .search-page .js-control-main-search {
    margin-top: 30px;
  }
  .search-page .vacancies-vacant__controll__btn {
    display: block;
  }
}
.partner-jumbotron {
  height: 450px;
}
.partner-jumbotron .home-banner__text {
  margin-top: 63px;
  margin-bottom: 21px;
}
.partner-jumbotron .home-banner__description {
  max-width: 591px;
  line-height: 139%;
  margin-bottom: 37px;
}
.partner-jumbotron .home-banner__img img {
  right: 25px;
  bottom: 50px;
}
.partner-jumbotron .btn {
  width: 237px;
}

@media (max-width: 1280px) {
  .partner-jumbotron .home-banner__content {
    width: 100%;
  }
  .partner-jumbotron .home-banner__img {
    width: unset;
    margin-left: auto;
  }
}
@media (max-width: 1020px) {
  .partner-jumbotron {
    height: 370px;
  }
  .partner-jumbotron .home-banner__text {
    margin-top: 36px;
    font-weight: 500;
    font-size: 32px;
    line-height: 120%;
    max-width: 300px;
  }
  .partner-jumbotron .home-banner__description {
    font-size: 13px;
    line-height: 140%;
    max-width: 392px;
  }
  .partner-jumbotron .home-banner__img img {
    width: 244px;
    right: 15px;
    bottom: 21px;
  }
  .partner-jumbotron .btn {
    width: 196px;
  }
}
@media (max-width: 767px) {
  .partner-jumbotron .home-banner__content {
    align-items: flex-start;
  }
  .partner-jumbotron .home-banner__text {
    text-align: left;
    font-size: 25px;
    line-height: 120%;
    margin-bottom: 14px;
  }
  .partner-jumbotron .home-banner__description {
    text-align: left;
  }
  .partner-jumbotron .home-banner__img img {
    width: 244px;
    right: 15px;
    bottom: 21px;
  }
  .partner-jumbotron .btn {
    width: 196px;
  }
}
.partner-superior .superior-title {
  font-weight: 500;
  font-size: 28px;
  line-height: 120%;
  color: #000066;
  margin-bottom: 32px;
}
.partner-superior .superior-item__description {
  line-height: 145%;
}

@media (max-width: 1024px) {
  .partner-superior .superior-title {
    display: none;
  }
  .partner-superior .superior-item__title {
    font-size: 15px;
    line-height: 120%;
    margin-bottom: 10px;
  }
  .partner-superior .superior-item__description {
    font-size: 13px;
    line-height: 140%;
  }
  .partner-superior .superior-item-wrap {
    height: 370px;
  }
  .partner-superior .tns-controls {
    margin-top: 30px;
  }
}
.our-partners {
  margin-bottom: 100px;
}
.our-partners__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.our-partners__title {
  font-style: normal;
  font-weight: 500;
  font-size: 38px;
  line-height: 110%;
  color: #000066;
}
.our-partners__grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(183px, 1fr));
  grid-gap: 40px;
}
.our-partners-item {
  height: 116px;
  background: #FFFFFF;
  border: 1px solid #DEDEF4;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 400ms ease-in-out;
}
.our-partners-item:hover {
  box-shadow: 0 5px 15px var(--shadow);
}
.our-partners__list {
  margin-top: 34px;
}
.our-partners__list-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 200;
}
.our-partners__list-top .custom-select {
  width: 307px;
  min-width: 307px;
  margin-right: 17px;
}

.our-partners__list-top .custom-select .select-selected.select-arrow-active:after {
  top: 11px;
}
.our-partners__list-top_imgstatus-base:before {
	content:url("/upload/icons/iconbase.svg");
	margin-right: 4px;
}
.our-partners__list-top_imgstatus-silver:before {
	content:url("/upload/icons/iconsilver.svg");
	margin-right: 4px;
}
.our-partners__list-top_imgstatus-bronze:before {
	content:url("/upload/icons/iconbronze.svg");
	margin-right: 4px;
}
.our-partners__list-top_imgstatus-gold:before {
	content:url("/upload/icons/icongold.svg");
	margin-right: 4px;
}
.our-partners__list-top_imgstatus-base {
	display: flex;
}
.our-partners__list-top_imgstatus-silver {
	display: flex;
}
.our-partners__list-top_imgstatus-bronze {
	display: flex;
}
.our-partners__list-top_imgstatus-gold {
	display: flex;
}
.our-partners__list-top .custom-select-modal {
  margin-right: 17px;
  width: 295px;
  min-width: 154px;
  position: relative;
  /*z-index: 200;*/
	z-index: 2;
}
.our-partners__list-top .custom-select-modal.open .custom-select-modal-title {
  border-color: #918cff;
  box-shadow: 0px 0px 6px rgba(30, 29, 133, 0.5);
  outline: none;
}
.our-partners__list-top .custom-select-modal.open .custom-select-modal__content {
  display: flex;
}
.our-partners__list-top .custom-select-modal-title {
  border: 1px solid var(--border);
  outline: none;
  background: white;
  font: inherit;
  padding-left: 20px;
  padding-right: 35px;
  font-size: 13px;
  line-height: 1.2;
  min-height: 42px;
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
}
.our-partners__list-top .custom-select-modal-title .close-icon {
  position: absolute;
  top: 44%;
  right: 40px;
  transform: translate(0, -50%);
  width: 10px;
  height: 10px;
}
.our-partners__list-top .custom-select-modal-title .close-icon svg {
  width: 10px;
  height: 10px;
}
.our-partners__list-top .custom-select-modal-title:active {
  border-color: #918cff;
  box-shadow: 0px 0px 6px rgba(30, 29, 133, 0.5);
  outline: none;
}
.our-partners__list-top .custom-select-modal-title.active {
  border-color: #918cff;
  box-shadow: 0px 0px 6px rgba(30, 29, 133, 0.5);
  outline: none;
}
.our-partners__list-top .custom-select-modal-title.start span {
  color: #7373BA;
}
.our-partners__list-top .custom-select-modal-title span {
  color: #000000;
}
.our-partners__list-top .custom-select-modal-title:after {
  position: absolute;
  content: url("/local/templates/s-terra22/images/icons/arrow.svg");
  top: 11px;
  right: 25px;
  width: 0;
  height: 0;
}
.our-partners__list-top .custom-select-modal__content {
  position: absolute;
  left: 0;
  display: none;
  bottom: -4px;
  transform: translateY(100%);
  background: #FFFFFF;
  box-shadow: 0px 5px 15px rgba(0, 0, 102, 0.15);
  flex-direction: column;
  width: 760px;
  padding: 30px;
  z-index: 1000;
}
.our-partners__list-top .custom-select-modal__content__close {
  display: none;
}
.our-partners__list-top .custom-select-modal__content__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.our-partners__list-top .custom-select-modal__content__top-item {
  font-weight: 700;
  font-size: 15px;
  line-height: 120%;
  display: flex;
  align-items: center;
  letter-spacing: 0.1em;
  color: #000066;
  cursor: pointer;
}
.our-partners__list-top .custom-select-modal__content__top-item.active {
  color: #E42D24;
}
.our-partners__list-top .custom-select-modal__content__top-item.disabled {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.3;
}
.our-partners__list-top .custom-select-modal__content__bottom__wrap {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 650px;
}
.our-partners__list-top .custom-select-modal__content__bottom__wrap.flex {
  height: unset;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.our-partners__list-top .custom-select-modal__content__bottom__item {
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  line-height: 230%;
  color: #1E1D85;
  width: 33%;
}
.our-partners__list-top .custom-select-modal__content__bottom__item.bold {
  font-weight: 500;
}
.our-partners__list-top .search-field {
  margin-left: auto;
  max-width: 406px;
  width: 100%;
  height: 36px;
}
.our-partners__list__bottom {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-row-gap: 26px;
  grid-column-gap: 40px;
}
.our-partners__list__bottom__item {
  position: relative;
  z-index: 1;
}
.our-partners__list__bottom__item__long:hover {
  z-index: 10;
}
.our-partners__list__bottom__item__long:hover .our-partners__list__bottom__item_wrap {
  z-index: 10;
  position: absolute;
  top: -30px;
  left: -38px;
  padding: 30px 31px 30px 38px;
  border: 1px solid #DEDEF4;
  box-sizing: border-box;
  box-shadow: 0px 5px 15px rgba(0, 0, 102, 0.15);
  background-color: #fff;
}
.our-partners__list__bottom__item__long:hover .our-partners__list__bottom__item__title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.our-partners__list__bottom__item_wrap {
  z-index: 2;
}

.our-partners__list__bottom__item_wrap_base:before{
	content: url("/upload/icons/iconbase.svg");
	margin-right: 4px;
	top: 1px;
	position: relative;
	
}
.our-partners__list__bottom__item_wrap_bronze:before{
	content: url("/upload/icons/iconbronze.svg");
	margin-right: 4px;
	top: 1px;
	position: relative;
	
}
.our-partners__list__bottom__item_wrap_silver:before{
	content: url("/upload/icons/iconsilver.svg");
	margin-right: 4px;
	top: 1px;
	position: relative;
	
}
.our-partners__list__bottom__item_wrap_gold:before{
	content: url("/upload/icons/icongold.svg");
	margin-right: 4px;
	top: 1px;
	position: relative;
	
}

.our-partners__list__bottom__item__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  color: #1E1D85;
  margin-bottom: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-decoration: none;
}
.our-partners__list__bottom__item__title:hover {
  text-decoration: underline;
}
.our-partners__list__bottom__item__title_dis, .our-partners__list__bottom__item__title.disabled {
  color: #000;
  cursor: default;
	text-decoration: none;
}
.our-partners__list__bottom__item__title_dis:hover {
  text-decoration: none;
}
.our-partners__list__bottom__item__city {
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  color: #000000;
}
.our-partners__list__bottom__item__area {
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  color: #000000;
}

@media (max-width: 1290px) {
  .our-partners__list-top .custom-select-modal__content {
    left: -447px;
    width: calc(100vw - 80px);
  }
}
@media (max-width: 1020px) {
  .our-partners {
    margin-bottom: 80px;
  }
  .our-partners__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .our-partners__title {
    font-size: 32px;
    line-height: 110%;
    margin-bottom: 33px;
  }
  .our-partners__grid {
    margin-top: 27px;
    grid-column-gap: 30px;
  }
  .our-partners__list {
    margin-top: 30px;
  }
  .our-partners__list-top .custom-select {
    width: 278px;
    min-width: 278px;
    margin-right: 30px;
  }
  .our-partners__list-top .custom-select .select-selected {
    white-space: nowrap;
    font-size: 13px;
  }
  .our-partners__list-top .custom-select .select-selected span {
    white-space: nowrap;
    /* Запрещаем перенос строк */
    overflow: hidden;
    /* Обрезаем все, что не помещается в область */
    text-overflow: ellipsis;
    /* Добавляем многоточие */
  }
  .our-partners__list-top .custom-select-modal {
    width: 154px;
    min-width: 154px;
    margin-right: 30px;
  }
  .our-partners__list-top .custom-select-modal-title {
    font-size: 13px;
  }
  .our-partners__list-top .custom-select-modal__content {
    padding-top: 30px;
    left: -308px;
    width: calc(100vw - 60px);
    padding-left: 30px;
    padding-right: 0;
  }
  .our-partners__list-top .custom-select-modal__content__top {
    padding-right: 10px;
    position: relative;
    padding-left: 60px;
    display: grid;
    grid-template-columns: repeat(15, 1fr);
    grid-gap: unset;
    grid-row-gap: 19px;
    grid-column-gap: unset;
  }
  .our-partners__list-top .custom-select-modal__content__top-item {
    display: flex;
  }
  .our-partners__list-top .custom-select-modal__content__top-item:first-child {
    position: absolute;
    left: 0;
    top: 0px;
  }
  .our-partners__list-top .custom-select-modal__content__bottom__wrap {
    padding-right: 30px;
  }
  .our-partners__list-top .custom-select-modal__content__bottom__wrap.flex {
    height: unset;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .our-partners__list__bottom {
    margin-top: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
  .our-partners__list__bottom__item__title {
    font-size: 15px;
    line-height: 120%;
    margin-bottom: 7px;
  }
  .our-partners__list__bottom__item__city {
    font-size: 13px;
    line-height: 140%;
  }
  .our-partners__list__bottom__item__area {
    font-size: 13px;
    line-height: 140%;
  }
}
@media (max-width: 767px) {
  .our-partners {
    margin-bottom: 80px;
  }
  .our-partners__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .our-partners__title {
    font-size: 25px;
    line-height: 100%;
    margin-bottom: 16px;
  }
  .our-partners .tab-head {
    flex-wrap: wrap;
  }
  .our-partners .tab-head__item {
    margin-bottom: 11px;
  }
  .our-partners__grid {
    margin-top: 16px;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    grid-gap: 20px;
    grid-row-gap: 30px;
  }
  .our-partners__list {
    margin-top: 16px;
  }
  .our-partners__list-top {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
  }
  .our-partners__list-top .custom-select {
    width: 100%;
    min-width: 100%;
    margin-right: 0;
    margin-bottom: 25px;
  }
  .our-partners__list-top .custom-select .select-items {
    z-index: 1000000;
  }
  .our-partners__list-top .custom-select-modal {
    margin-bottom: 25px;
    width: 100%;
    min-width: 100%;
  }
  .our-partners__list-top .custom-select-modal__content {
    left: 0;
    width: 100%;
    padding-top: 60px;
  }
  .our-partners__list-top .custom-select-modal__content__close {
    position: absolute;
    top: 20px;
    right: 20px;
    display: block;
  }
  .our-partners__list-top .custom-select-modal__content__top {
    padding-left: 0;
    grid-template-columns: repeat(8, 1fr);
  }
  .our-partners__list-top .custom-select-modal__content__top-item:first-child {
    grid-column-start: 1;
    grid-column-end: 3;
    top: unset;
    left: unset;
    position: relative;
  }
  .our-partners__list-top .custom-select-modal__content__bottom {
    position: relative;
  }
  .our-partners__list-top .custom-select-modal__content__bottom::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  }
  .our-partners__list-top .custom-select-modal__content__bottom__wrap {
    overflow-y: auto;
    flex-wrap: nowrap;
    height: 390px;
    padding-bottom: 30px;
  }
  .our-partners__list-top .custom-select-modal__content__bottom__wrap.flex {
    height: unset;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .our-partners__list-top .custom-select-modal__content__bottom__item {
    font-size: 13px;
    width: 100%;
  }
  .our-partners__list-top .search-field {
    margin-left: unset;
    width: 100%;
    min-width: 100%;
  }
  .our-partners__list__bottom {
    margin-top: 30px;
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 26px;
  }
  .our-partners__list__bottom__item__long:hover .our-partners__list__bottom__item_wrap {
    left: -10px;
    padding-left: 10px;
    width: calc(100% + 20px);
    padding-right: 10px;
  }
}
.js-control-text-partner-2-show {
  margin-top: 30px;
}

.js-control-text-partner-show {
  margin-top: 30px;
}

.js-control-text-partner-show {
  display: none;
}

@media (max-width: 500px) {
  .js-control-text-partner-show {
    display: flex;
	  margin-top: 30px;
	  margin-bottom: -20px;
  }
}
.partner-history {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #F6F6FF;
}
.partner-history-title {
  font-weight: 500;
  font-size: 46px;
  line-height: 120%;
  color: #000066;
  margin-bottom: 50px;
}
.partner-history-slider {
  display: flex;
}
.partner-history-slider__item {
  align-self: stretch;
  min-height: 415px;
}
.partner-history-slider__item__wrap {
  height: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  padding: 40px;
  text-decoration: none;
}
.partner-history-slider__item__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  color: #000066;
  margin-bottom: 13px;
}
.partner-history-slider__item__description {
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  color: #000000;
  hyphens: auto;
  word-break: break-word;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}
.partner-history-slider__item__image {
  height: 70px;
  display: flex;
  align-items: center;
  padding-left: 3px;
  margin-bottom: 24px;
}
.partner-history-slider__item__image__placeholder {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F6F6FF;
  border: 1px solid #DEDEF4;
}
.partner-history-slider__control {
  margin-top: 30px;
}
.partner-history-slider__control .btn:first-child {
  margin-right: 9px;
}
.partner-history-slider__control .btn:nth-child(2) {
  margin-right: 9px;
}

@media (max-width: 1020px) {
  .partner-history {
    padding-top: 54px;
    padding-bottom: 80px;
  }
  .partner-history-title {
    font-size: 32px;
    line-height: 120%;
    margin-bottom: 40px;
  }
  .partner-history-slider__item {
    min-height: 375px;
  }
  .partner-history-slider__item__wrap {
    padding: 30px;
    padding-top: 45px;
  }
  .partner-history-slider__item__title {
    font-size: 20px;
    line-height: 120%;
  }
  .partner-history-slider__item__description {
    font-size: 13px;
    line-height: 140%;
  }
}
@media (max-width: 767px) {
  .partner-history {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .partner-history-title {
    font-size: 25px;
    line-height: 120%;
    margin-bottom: 33px;
  }
  .partner-history-slider__item {
    min-height: 375px;
  }
  .partner-history-slider__item__wrap {
    padding: 30px;
    padding-top: 45px;
  }
  .partner-history-slider__item__title {
    font-size: 20px;
    line-height: 120%;
  }
  .partner-history-slider__item__description {
    font-size: 13px;
    line-height: 140%;
  }
}
.partner-page {
  overflow: hidden;
}
.partner-page .breadcrumb__list {
  padding-bottom: 45px;
}
.partner-page .partner-superior {
  margin-bottom: 100px;
}

@media (max-width: 1024px) {
  .partner-page .breadcrumb__list {
    padding-bottom: 35px;
  }
  .partner-page .partner-superior {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .partner-page .breadcrumb__list {
    padding-bottom: 29px;
  }
  .partner-page .partner-superior {
    margin-bottom: 67px;
  }
}
.cases-page-title {
  font-weight: 500;
  font-size: 38px;
  line-height: 120%;
  color: #000066;
  margin-bottom: 40px;
}
.cases-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
}
.cases-page .partner-history-slider__item__wrap {
  border: 1px solid var(--border);
  transition: 0.3s ease-in-out;
}
.cases-page .partner-history-slider__item__wrap:hover {
  box-shadow: 0px 5px 15px rgba(0, 0, 102, 0.15);
}
.cases-page .home-page__form {
  margin-top: 100px;
}
.cases-page .js-control-text-cases-show {
  margin-top: 30px;
}

@media (max-width: 1020px) {
  .cases-page-title {
    font-size: 32px;
    line-height: 120%;
    margin-bottom: 32px;
  }
  .cases-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
    grid-row-gap: 40px;
  }
  .cases-page .home-page__form {
    margin-top: 80px;
  }
  .cases-page .js-control-text-cases-show {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .cases-page-title {
    font-size: 25px;
    line-height: 120%;
    margin-bottom: 29px;
  }
  .cases-page-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 40px;
  }
}
.page.fix-100-vh-attention {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.page.fix-100-vh-attention .attention-page {
  flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.attention-page {
  margin-bottom: 76px;
}
.attention-page .text-container {
  max-width: 1076px;
}
.attention-page-title {
  font-weight: 500;
  font-size: 38px;
  line-height: 110%;
  color: #000066;
  margin-bottom: 32px;
}
.attention-page-content {
  font-weight: 400;
  font-size: 17px;
  line-height: 140%;
  color: #000000;
}
.attention-page-content p {
  margin-bottom: 19px;
}

@media (max-width: 1020px) {
  .attention-page-title {
    font-size: 32px;
    line-height: 110%;
    margin-bottom: 34px;
  }
  .attention-page-content {
    min-height: 350px;
    font-size: 15px;
    line-height: 140%;
  }
}
@media (max-width: 767px) {
  .attention-page {
    margin-bottom: 59px;
  }
  .attention-page-title {
    font-size: 25px;
    line-height: 110%;
    margin-bottom: 25px;
  }
  .attention-page-content {
    min-height: unset;
    font-size: 15px;
    line-height: 140%;
  }
  .attention-page-content p {
    margin-bottom: 16px;
  }
}
.contacts-main-title {
  font-weight: 500;
  font-size: 38px;
  line-height: 120%;
  color: #000066;
  margin-bottom: 27px;
}
.contacts-main-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.contacts-main-grid__col {
  display: flex;
  flex-direction: column;
}
.contacts-main-grid__item {
  margin-bottom: 38px;
}
.contacts-main-grid__item:last-child {
  margin-bottom: 0;
}
.contacts-main-grid__item__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  color: #000066;
  margin-bottom: 16px;
}
.contacts-main-grid__item__block {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}
.contacts-main-grid__item__block:last-child {
  margin-bottom: 0;
}
.contacts-main-grid__item__block .icon {
  margin-right: 13px;
}
.contacts-main-grid__item__block .value {
  font-weight: 400;
  font-size: 15px;
  line-height: 120%;
  color: #000000;
  line-height: 140%;
}
.contacts-main-grid__item__block .value a {
  font-weight: 400;
}
.contacts-main-grid__item__block .value a.phone {
  text-decoration: none;
  color: #000000;
}
.contacts-main-grid__item__block .value p {
  margin-bottom: 11px;
  line-height: 140%;
}
.contacts-main-grid__item__block .value p:last-child {
  margin-bottom: 0;
}
.contacts-main-btn {
  width: 261px;
  padding-left: 10px;
  padding-right: 10px;
}
.contacts-main-map {
  margin-top: 40px;
  width: 100%;
  height: 400px;
  margin-bottom: 100px;
  background-color: #eeeeee;
}
.contacts-main-map #map {
  width: 100%;
  height: 100%;
}
.contacts-main-banner {
  margin-bottom: 92px;
}
.contacts-main-banner__wrap {
  max-width: 855px;
  margin-left: auto;
  margin-right: auto;
  background: #1E1D85;
  border: 1px solid rgba(32, 89, 231, 0.3);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  min-height: 350px;
  padding-right: 76px;
}
.contacts-main-banner__text {
  max-width: 480px;
}
.contacts-main-banner__title {
  font-weight: 500;
  font-size: 28px;
  line-height: 120%;
  color: #FFFFFF;
  margin-bottom: 14px;
}
.contacts-main-banner__description {
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  color: #FFFFFF;
  margin-bottom: 23px;
}
.contacts-main-banner__image {
  width: 185px;
  min-width: 185px;
}

@media (max-width: 1140px) {
  .contacts-main-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 20px;
  }
  .contacts-main-grid__col:nth-child(3) {
    display: none;
  }
  .contacts-main-btn {
    margin-top: 37px;
  }
  .contacts-main-map {
    margin-top: 40px;
  }
}
@media (max-width: 1020px) {
  .contacts-main-title {
    font-size: 32px;
    line-height: 120%;
  }
  .contacts-main-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 20px;
  }
  .contacts-main-grid__col:nth-child(3) {
    display: none;
  }
  .contacts-main-grid__item {
    margin-bottom: 30px;
  }
  .contacts-main-grid__item__title {
    font-size: 15px;
    line-height: 120%;
    margin-bottom: 13px;
  }
  .contacts-main-grid__item__block {
    margin-bottom: 8px;
  }
  .contacts-main-grid__item__block .value {
    font-size: 13px;
    line-height: 120%;
  }
  .contacts-main-btn {
    margin-top: 37px;
  }
  .contacts-main-map {
    margin-bottom: 80px;
  }
  .contacts-main-banner__wrap {
    padding: 35px;
    min-height: 308px;
    padding-right: 55px;
  }
  .contacts-main-banner__text {
    max-width: 361px;
  }
  .contacts-main-banner__title {
    font-size: 20px;
    line-height: 120%;
    margin-bottom: 17px;
  }
  .contacts-main-banner__description {
    font-size: 13px;
    line-height: 140%;
    margin-bottom: 20px;
  }
  .contacts-main-banner__image {
    width: 167px;
    min-width: 167px;
  }
}
@media (max-width: 767px) {
  .contacts-main-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 28px;
  }
  .contacts-main-grid__col:nth-child(3) {
    display: flex;
  }
  .contacts-main-grid__item {
    margin-bottom: 0;
    margin-top: 28px;
  }
  .contacts-main-grid__item:first-child {
    margin-top: 0;
  }
  .contacts-main-btn {
    margin-top: 25px;
  }
  .contacts-main-map {
    width: calc(100% + 40px);
    margin-left: -20px;
  }
  .contacts-main-banner__wrap {
    padding: 40px 30px 50px 30px;
    min-height: 365px;
  }
  .contacts-main-banner__image {
    display: none;
  }
}
.contacts-form {
  margin-top: 100px;
  background: #F6F6FF;
  padding-top: 100px;
  padding-bottom: 100px;
}
.contacts-form__wrap {
  max-width: 854px;
  margin-left: auto;
  margin-right: auto;
}
.contacts-form__title {
  font-weight: 500;
  font-size: 28px;
  line-height: 120%;
  color: #000066;
  margin-bottom: 53px;
}
.contacts-form__block {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.contacts-form__block__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}
.contacts-form__block__row__footer {
  display: flex;
  align-items: center;
}
.contacts-form__block__row__footer .home-contact-form__submit {
  margin-top: 0;
}
.contacts-form__block__row__footer .home-contact-form__submit .btn {
  width: 175px;
}

@media (max-width: 1020px) {
  .contacts-form {
    margin-top: 80px;
    padding-top: 73px;
    padding-bottom: 100px;
  }
  .contacts-form__title {
    font-size: 20px;
    line-height: 120%;
    margin-bottom: 30px;
  }
  .contacts-form__block__row__footer .checkbox-label {
    max-width: 450px;
  }
  .contacts-form__block__row__footer .home-contact-form__submit {
    margin-left: auto;
  }
  .contacts-form__block__row__footer .home-contact-form__submit .btn {
    width: 145px;
  }
}
@media (max-width: 767px) {
  .contacts-form {
    margin-top: 80px;
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .contacts-form__title {
    font-size: 20px;
    line-height: 120%;
    margin-bottom: 30px;
  }
  .contacts-form__block__row {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: unset;
  }
  .contacts-form__block__row__footer {
    flex-direction: column;
  }
  .contacts-form__block__row__footer .checkbox-label {
    max-width: 100%;
  }
  .contacts-form__block__row__footer .home-contact-form__submit {
    margin-left: auto;
    width: 100%;
  }
  .contacts-form__block__row__footer .home-contact-form__submit .btn {
    width: 100%;
  }
}
.contacts-page .mobile {
  display: none;
}
.contacts-page .tablet {
  display: none;
}
@media (max-width: 1140px) {
  .contacts-page .mobile {
    display: none;
  }
  .contacts-page .tablet {
    display: block;
  }
  .contacts-page .desktop {
    display: none;
  }
}
@media (max-width: 767px) {
  .contacts-page .tablet {
    display: none;
  }
  .contacts-page .mobile {
    display: block;
  }
  .contacts-page .desktop {
    display: none;
  }
}
.fix-100-vh {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.fix-100-vh .search-page {
  flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.search-page {
  margin-bottom: 100px;
}
.search-page .text-container {
  max-width: 1076px;
}
.search-page__info {
  margin-top: 15px;
  margin-bottom: 25px;
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  color: #000000;
}
.search-page__items {
  display: flex;
  flex-direction: column;
}
.search-page__item {
  display: flex;
  flex-direction: column;
  padding-left: 23px;
  padding-top: 24px;
  padding-bottom: 25px;
  border-bottom: 1px solid #DEDEF4;
}
.search-page__item:first-child {
  border-top: 1px solid #DEDEF4;
}
.search-page__item__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  color: #1E1D85;
  margin-bottom: 7px;
}
.search-page__item__description {
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  color: #000000;
}
.search-page .js-control-main-search {
  margin-top: 30px;
}
.search-page .vacancies-vacant__controll__btn {
  display: block;
}

@media (max-width: 1020px) {
  .search-page {
    margin-bottom: 80px;
  }
  .search-page .breadcrumb__list {
    padding-bottom: 47px;
  }
  .search-page .text-container {
    max-width: 1076px;
  }
  .search-page__info {
    margin-bottom: 21px;
    font-size: 13px;
    line-height: 140%;
  }
  .search-page__items {
    display: flex;
    flex-direction: column;
  }
  .search-page__item {
    padding-left: 0px;
    padding-top: 22px;
    padding-bottom: 21px;
  }
  .search-page__item__title {
    font-weight: 500;
    font-size: 15px;
    line-height: 120%;
    color: #1E1D85;
  }
  .search-page__item__description {
    font-weight: 400;
    font-size: 13px;
    line-height: 140%;
    /* or 18px */
    color: #000000;
  }
  .search-page .js-control-main-search {
    margin-top: 30px;
  }
  .search-page .vacancies-vacant__controll__btn {
    display: block;
  }
}
.pswp {
  z-index: 10000000000 !important;
}

.fix-100-vh {
  display: flex;
  flex-direction: column;
}
.fix-100-vh .awards-item-page {
  flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.vacancy-item{
	width: 60px;
}

.select-selected .close-icon {
	position: absolute;
	top: 44%;
	right: 40px;
	transform: translate(0, -50%);
	width: 10px;
	height: 10px;
}

.control-wrap{
	display: flex;
	align-items: center;
}

#partner-modal .modal-window{
	max-width: 980px;
}

.case-page .tns-outer .tns-controls{
	position: absolute;
	width: 100%;
	top: 50%;
}

.case-page .about-team-slider .slider__item {
	display: inline-flex;
	vertical-align: top;
	white-space: normal;
}

.case-page .about-team-slider .slider__item img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pressnews-page__selects{
	max-height: 200px;
	overflow: hidden;
	box-shadow: 0px 5px 15px rgba(0, 0, 102, 0.15);
}

/*.pressnews-page__selects li {
	margin-right: -17px !important;
}*/

.pressnews-page__selects li:first-child{
	display: none;
}

.pressevent-page__item__locale {
	display: flex;
	justify-content: flex-start;
}
.pressevent-page__item__locale svg {
	margin-right: 14px;
	width: 15px;
	height: 18px;
	flex: none;
}

.deep-toggler{
	display: none;
}

/*.deep-toggler svg{
	margin-left: 10px;
}*/

.accordion-preview{
	margin: 20px 0;
}

p.table-header{
	margin-bottom: 20px;
	font-size: 13px;
}

table{
	width: 100%;
	border-collapse: collapse;
	border: 1px solid #DEDEF4;
	margin-bottom: 25px;
}

th{
	border: 1px solid #DEDEF4;
	background: #F6F6FF;
	padding: 13px 30px;
	font-weight: 500;
	font-size: 15px;
	color: #000066;
	text-align: left;
}

td{
	border: 1px solid #DEDEF4;
	padding: 20px 30px;
	font-weight: 400;
	font-size: 15px;
	line-height: 140%;
	color: #000000;
}

td:first-child{
	font-weight: 500;
	color: #000066;
}

.table-wrap table{
	min-width: 800px;
}

.table-wrap{
	overflow-x: auto;
}

.grey-block{
	padding: 40px 28px;
	background: #fbfbff;
	margin-bottom: 47px;
	line-height: 140%;
	font-size: 17px;
}

.grey-block p{
	margin-bottom: 15px;
}

.grey-block .header{
	font-weight: 700;
	font-size: 24px;
	line-height: 120%;
	color: #000066;
	margin-bottom: 20px;
}

p.blue-bold{
	font-weight: 700;
	font-size: 18px;
	line-height: 150%;
	color: #000066;
	margin-bottom: 6px;
}

.pressnews-page__select.show .pressnews-page__selects {
	box-shadow: 0px 0px 6px 0px rgba(30, 29, 133, 0.5);
	overflow: hidden;
	height: 200px;
	padding-top: 15px;
}

.pressnews-page__select.show .pressnews-page__selects > div:first-child{
	padding: 15px 0;
}

.pressnews-page__select__item{
	padding-left: 18px;
	padding-right: 20px;
}

[data-slimscroll] > div + div.scrollBarContainer{
	background: #DEDEF4;
	border-radius: 10px;
	width: 1px;
	right: 15px;
	overflow: visible !important;
	display: flex;
	justify-content: center;
}

.scroll{
	width: 3px;
	background: #7373BA;
	border-radius: 10px;
	left: auto;
	right: auto;
}

.pressevent-page__item__text{
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
	line-height: 140%;
	color: #000000;
}

.modal-subtitle{
	margin-bottom: 20px;
	margin-top: -3px;
	font-size: 12px;
}

.pressnews-page__select_button{
	color: #1E1D85;
}

.select-items .custom-select-item:hover {
	min-width: 100%;
	width: auto;
	padding-right: 10px;
}

p.table-desc, .text-block p.table-desc{
	font-weight: 400;
	font-size: 13px;
	line-height: 140%;
	color: #000000;
	margin-top: -10px;
	margin-left: 30px;
}

.product-text-wrap + .product-card-tabs {
	padding-top: 102px;
}


@media (max-width: 1280px) {
	.header-menu-section[data-section="support"] .header-menu-section__items > ul > li > ul{
		display: none;
	}

	.header-menu-section[data-section="support"] .deep-toggler{
		display: none !important;
	}

	.header-menu-section__items > ul > li > ul{
		margin-bottom: 22px;
	}
}

@media(max-width: 767px){
	.deep-toggler{
		display: inline-block;
	}

	.header-menu-section__items > ul > li > ul{
		margin: 0;
	}

	.header-menu-section__items > ul > li > ul > li:first-child{
		margin-top: 16px;
	}

	.header-menu-section__items > ul > li{
		margin-bottom: 22px !important;
	}

	.header-menu-section__items > ul > li:last-child {
		margin-bottom: 8px !important;
	}

	.header-menu-section__items > ul{
		padding-bottom: 1px;
	}
}

@media(max-width: 575px){
	.vacancies-work-slide__title{
		height: 145px;
	}

	.vacancy-form-footer{
		flex-wrap: wrap;
	}

	.vacancy-form-footer .btn{
		width: 100%;
	}

	/*.header-menu-section__items > ul > li > ul{
		display: none;
	}*/
}




/*support-block*/
.support-headers{
	display: flex;
	align-items: flex-end;
	width: 100%;
}

.support-header, .value-col, .support-footer{
	width: 18.85%;
}

.support-footer{
	padding: 0 15px;
}

.support-footer .support-main-card-footer-text{
	font-weight: 500;
	font-size: 15px;
	color: #1E1D85;
	text-align: center;
}

.support-header.empty, .support-char-name, .support-footer.empty{
	width: 24.6%;
}

.support-header.empty{
	border-bottom: 1px #DEDEF4;
}

.support-footers{
	display: flex;
	align-items: center;
	width: 100%;
	padding: 26px 0;
	border-bottom: 1px solid #DEDEF4;
}

.support-block .home-faq-item__title{
	font-size: 18px;
}

.support-block .home-faq .home-faq-item{
	padding: 26px 0;
}

.support-block .home-faq .home-faq-item__content{
	padding-top: 26px;
	padding-right: 0;
}

.support-table{
	border-left: 0;
	border-right: 0;
	margin-bottom: -25px;
	border-bottom: 0;
}

.support-table td{
	border-left: 0;
	border-right: 0;
	padding: 14px 30px;
	line-height: 110%;
	font-weight: 400;
}

.support-table td:first-child{
	color: #000
}

.support-table tr:last-child td {
	border-bottom: 0;
}

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

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

.support-footer .support-main-card-footer-button{
	padding: 0 10px;
}

.position-relative{
	position: relative;
}

.install-doc{
	position: absolute;
	right: 0;
	top: -100px;
}

.detail-wrap{
	margin-top: 45px;
}

.product-text-wrap{
	max-width: 1156px;
}

.center-img{
	display: block;
	margin: auto;
}

.tab-body__item .text-block {
	padding-top: 15px;
	border-top: 1px solid var(--border);
}

.text-block h1, .text-block h2, .text-block h3{
	margin-top: 60px;
}

.text-block > *:first-child{
	margin-top: 0;
}

.imaged-link{
	display: flex;
	align-items: center;
	margin: 60px 0;
	text-decoration: none;
}

.imaged-link img{
	max-width: 100%;
}

.imaged-link p{
	font-weight: 500;
	font-size: 15px;
	line-height: 140%;
	color: #1E1D85;
	margin: 0;
	margin-left: 30px;
	width: 340px;
	max-width: 100%;
}


.scroll-wrapper::-webkit-scrollbar { width: 0; }
.scroll-wrapper { -ms-overflow-style: none; }
.scroll-wrapper { overflow: -moz-scrollbars-none; }

.no-support, .support-timing{
	margin-bottom: 100px;
	max-width: 1156px;
}

.support-main-description .container{
	max-width: 1156px;
}




@media(max-width: 1200px){
	.support-footer{
		padding: 0 5px;
	}
}

@media(max-width: 992px){
	.value-col, .support-footer, .support-header.empty{
		display: none;
	}

	.value-col{
		width: auto;
		text-align: right;
	}

	.value-col.active{
		display: table-cell;
	}

	.support-footers{
		justify-content: center;
	}

	.support-footer{
		width: 205px;
		max-width: 100%
	}

	.support-footer.active{
		display: block;
	}

	.support-char-name{
		width: auto;
	}

	.support-main-card-title{
		font-size: 13px;
		padding: 17px 30px;
	}

	.support-header:not(.active) .support-main-card-title{
		background: none;
		color: #1E1D85
	}

	.support-table td{
		font-size: 13px;
		padding: 14px 20px;
	}

	.support-headers{
		flex-wrap: wrap;
	}

	.support-header{
		width: auto;
		cursor: pointer;
	}

	.install-doc{
		position: relative;
		right: 0;
		top: -35px;
		margin-bottom: 0
	}

	.home-faq .home-faq-item.active .home-faq-item__state{
		align-self: center;
	}

	.text-block p, .text-block ul li, .text-block ol li{
		font-size: 15px;
	}

	.text-block td, .text-block th{
		font-size: 13px;
	}


	.support-documentation-tab-2__item.open .support-documentation-tab-2__item__wrap {
		transform: translate(-50%, 0%);
	}

}

@media(max-width: 575px){
	.support-main-card-title{
		padding: 17px 15px;
	}

	.imaged-link{
		flex-direction: column;
	}

	.imaged-link p{
		margin-left: 0;
		margin-top: 20px;
		text-align: center;
	}
}


.support-documentation-tab-1__itemin > div > li {
	padding: 3px
}

.header-documentation-item {
	background-color: #dedef4;
	color: #000066;
	font-weight: 500;
	padding: 15px 5px 16px 22px;
	
}

.grid-wrapper > tr {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

p.grid-wrapper__td_p {
	padding-bottom: 10px;
	color: #000066;
	display: none;
}
@media (max-width: 767px) {
	p.grid-wrapper__td_p {
		padding-bottom: 10px;
		color: #000066;
		display: block;
	}

	.grid-wrapper > tr {
		padding-bottom: 40px;

	}

	.table-big > table{
		border: none;
	}

	.grid-wrapper > tr > th {
		display: none;
	}

	.table-big {
		border: none;
	}

}

.jumbo-banner-pak-trusted {
        background: rgb(0,71,104);
  background: linear-gradient(90deg, rgba(0, 71, 104, 1) 20%, rgba(72, 20, 75, 1) 50%);
}

.jumbo-banner-pak-back-image{
        background-image: url('/upload/iblock/9b8/rd1mfizudxhz3lqorl4ti4hogd6cgxyh/banner_pak_1.png');
}

.jumbo-home-banner-pak{
        width: 507px;
        height: 163px;
        background-color: #2c1e579e;
        border-radius: 40px;
        text-align: center;
        display: flex;
        align-content: center;
        flex-wrap: wrap;
}

.jumbo-home-banner-content-pak{
        width: 100%;
        align-items: center;
        padding-bottom: 0;
        padding-top: 0;
}

.jumbo-button-wide {
        width: 20%;
}

@media (max-width: 1920px) {
.jumbo-banner-pak-trusted {
	background: rgb(0,71,104);
  background: linear-gradient(90deg, rgba(0, 71, 104, 1) 20%, rgba(72, 20, 75, 1) 50%);
}

.jumbo-banner-pak-back-image{
	background-image: url('/upload/iblock/9b8/rd1mfizudxhz3lqorl4ti4hogd6cgxyh/banner_pak_1.png');
}

.jumbo-home-banner-pak{
	width: 507px;
	height: 163px;
	background-color: #2c1e579e;
	border-radius: 40px;
	text-align: center;
	display: flex;
	align-content: center;
	flex-wrap: wrap;
}

.jumbo-home-banner-content-pak{
	width: 100%;
	align-items: center;
	padding-bottom: 0;
	padding-top: 0;
}

.jumbo-button-wide {
	width: 20%;
}
}


@media (max-width: 720px) {
	.jumbo-banner-pak-trusted {
		background: rgb(0,71,104);
		background: linear-gradient(90deg, rgba(0, 71, 104, 1) 20%, rgba(72, 20, 75, 1) 50%);
	}
	
	.jumbo-banner-pak-back-image{
		background: unset;
	}
	
	.jumbo-home-banner-pak{
		width: unset;
		height: 90px;
		text-align: center;
		display: flex;
		align-content: center;
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.jumbo-home-banner-content-pak{
		width: 100%;
		align-items: center;
		padding-bottom: 0;
		padding-top: 0;
	}
	
	.jumbo-button-wide {
		width: 30%;
	}

	.jumbo-banner-pak-trusted {
		background: rgb(0,71,104);
		background: linear-gradient(90deg, rgba(0, 71, 104, 1) 20%, rgba(72, 20, 75, 1) 50%);
		background-image: url('/upload/banner_pak_400х250.png');
	}

}

.upgrade-checkbox {
    border: 1px solid var(--border);
    outline: none;
    background: white;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    margin-right: 10px;
}

.upgrade-checkbox-active {
    background-color: var(--active-control);
}


span.upgrade-checkbox-active::after {

    content: "";
    width: 12px;
    height: 10px;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.03125 4L4.96875 8L10.9688 1.9375' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}



