:root {
	--root-font-size: 0.5208333333vw;
	--common-section-offset-from-header: 14rem;
	--wrapper-offset: 3.2rem;
	--wrapper-size: 100%;
	--transition-duration: 0.5s;
	--transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	--part-header-row-top-height: 9.7rem;
	--part-header-row-bottom-height: 5.9rem;
	--page-page-animation-duration: 1s;
}

*,
:before,
:after {
	box-sizing: border-box;
}

html {
	font-family: system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif,
		'Apple Color Emoji', 'Segoe UI Emoji';
	line-height: 1.15;
	scroll-behavior: smooth;
	text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

b,
strong {
	font-weight: bolder;
}

code,
kbd,
samp,
pre {
	font-family: ui-monospace, SFMono-Regular, Consolas, Liberation Mono, Menlo,
		monospace;
	font-size: 1em;
}

small {
	font-size: 80%;
}

sub,
sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

table {
	text-indent: 0;
	border-collapse: collapse;
	border-color: currentColor;
}

button,
input,
optgroup,
select,
textarea {
	padding: 0;
	margin: 0;
	font: inherit;
	color: inherit;
	background: transparent;
	border: unset;
	border-radius: 0;
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;
}

legend {
	padding: 0;
}

progress {
	vertical-align: baseline;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
	height: auto;
}

[type='search'] {
	-webkit-appearance: textfield;
	-moz-appearance: textfield;
	appearance: textfield;
	outline-offset: -2px;
}

::-webkit-search-decoration {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

::-webkit-file-upload-button {
	font: inherit;
	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;
}

summary {
	display: list-item;
}

html,
body,
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
	padding: 0;
	margin: 0;
}

ul,
ol {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

button,
[role='button'] {
	touch-action: manipulation;
	-webkit-user-select: none;
	user-select: none;
}

button:not(:disabled),
[role='button']:not(:disabled) {
	cursor: pointer;
}

a {
	font: inherit;
	color: inherit;
	-webkit-text-decoration: none;
	text-decoration: none;
	background-color: transparent;
	text-decoration-skip-ink: none;
}

input,
select,
textarea {
	-webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
	mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
}

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

img,
iframe {
	border: unset;
}

[hidden] {
	display: none !important;
}

picture,
img,
svg,
video,
canvas,
audio,
iframe {
	display: block;
}

@keyframes part-loader-transition {
	0% {
		pointer-events: none;
		cursor: progress;
		opacity: 0;
	}

	to {
		pointer-events: all;
		cursor: initial;
		opacity: 1;
	}
}

@keyframes part-loader-transition-reverse {
	0% {
		pointer-events: all;
		cursor: initial;
		opacity: 1;
	}

	to {
		pointer-events: none;
		cursor: progress;
		opacity: 0;
	}
}

@keyframes part-loader-icon-rotation {
	0% {
		transform: rotate(0);
	}

	to {
		transform: rotate(360deg);
	}
}

.page {
	font-size: var(--root-font-size);
	background-color: #fff;
}

.page__root {
	position: relative;
	display: flex;
	flex-flow: column nowrap;
	min-height: 100vh;
	overflow-x: hidden;
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.3;
	color: #020e1b;
	font-family: RFDewi, sans-serif;
}

@supports (min-height: 100dvh) {
	.page__root {
		min-height: 100dvh;
	}
}

.page__root > *:not(.part-header) {
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: var(--page-page-animation-duration, 1s);
	transition-property: opacity;
}

.page_background_dark {
	background-color: #061930;
}

.page:not(.is-initialized) .page__root > *:not(.part-page-loader) {
	opacity: 0;
}

.wrapper {
	width: 100%;
	max-width: calc(var(--wrapper-size) + 2 * var(--wrapper-offset));
	padding: 0 var(--wrapper-offset);
	margin: 0 auto;
}

.object-fit-cover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.object-fit-contain {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

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

.user-select-none {
	-webkit-user-select: none;
	user-select: none;
}

.pointer-events-none {
	pointer-events: none;
}

#detach-button-host {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	border: unset;
}

b,
.content b,
strong,
.content strong {
	font-weight: 600;
	color: #020e1b;
}

em,
i {
	font-style: italic;
}

.content {
	font-size: 2.4rem;
	line-height: 1.65;
	color: #020e1bbf;
}

.content > *:not(:last-child) {
	margin-bottom: 6rem;
}

.content h2 {
	font-size: 4rem;
	font-weight: 700;
	line-height: 1.2;
}

.content h3 {
	font-size: 3.2rem;
	font-weight: 700;
	line-height: normal;
}

.content h4,
.content h5,
.content h6 {
	font-size: 2.2rem;
}

.content a {
	color: #07f;
	transition-property: color;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.content a:hover {
	color: #3090ff;
}

.content ul li {
	position: relative;
	padding-left: 2rem;
}

.content ul li:before {
	position: absolute;
	top: 1.6rem;
	left: 0;
	width: 0.8rem;
	height: 0.8rem;
	content: '';
	background-color: #07f;
	border-radius: 50%;
}

.content li:not(:last-child) {
	margin-bottom: 1.2rem;
}

.content ol {
	padding-left: 3rem;
	list-style-type: auto;
}

.content blockquote {
	display: flex;
	flex-flow: column nowrap;
	gap: 2.8rem;
	padding: 4rem;
	font-weight: 600;
	color: #020e1b;
	background-color: #f1f3f6;
	border-radius: 0.8rem;
	font-family: RFDewiCondensed, sans-serif;
}

.content blockquote:before,
.content blockquote:after {
	width: 2.4rem;
	height: 1.6rem;
	content: '';
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.content blockquote:before {
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 16V12.6695C0 10.3577 0.545455 8.03433 1.63636 5.69957C2.72727 3.36481 4.22727 1.46495 6.13636 0L10.1591 2.4721C9.11364 3.91416 8.31818 5.48212 7.77273 7.17597C7.22727 8.84692 6.95455 10.6552 6.95455 12.6009V16H0ZM13.8068 16V12.6695C13.8068 10.3577 14.3523 8.03433 15.4432 5.69957C16.5568 3.36481 18.0568 1.46495 19.9432 0L24 2.4721C22.9545 3.91416 22.1591 5.48212 21.6136 7.17597C21.0682 8.84692 20.7955 10.6552 20.7955 12.6009V16H13.8068Z' fill='%230077FF'/%3E%3C/svg%3E%0A");
}

.content blockquote:after {
	margin-left: auto;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 -1.87196e-07V3.33047C24 5.64235 23.4545 7.96567 22.3636 10.3004C21.2727 12.6352 19.7727 14.5351 17.8636 16L13.8409 13.5279C14.8864 12.0858 15.6818 10.5179 16.2273 8.82403C16.7727 7.15308 17.0455 5.34478 17.0455 3.39914V-1.87196e-07H24ZM10.1932 -1.87196e-07V3.33047C10.1932 5.64235 9.64773 7.96567 8.55682 10.3004C7.44318 12.6352 5.94318 14.5351 4.05682 16L-5.96046e-08 13.5279C1.04545 12.0858 1.84091 10.5179 2.38636 8.82403C2.93182 7.15308 3.20455 5.34478 3.20455 3.39914V-1.87196e-07H10.1932Z' fill='%230077FF'/%3E%3C/svg%3E%0A");
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
	font-weight: 700;
	color: #020e1b;
	text-transform: uppercase;
	font-family: RFDewiCondensed, sans-serif;
}

.content h1:not(:last-child),
.content h2:not(:last-child),
.content h3:not(:last-child),
.content h4:not(:last-child),
.content h5:not(:last-child),
.content h6:not(:last-child) {
	margin-bottom: 3rem;
}

.content strong,
.content b {
	font-weight: 600;
	font-family: RFDewiCondensed, sans-serif;
}

.content img {
	width: 100%;
	border-radius: 0.8rem;
}

.core-svg-icon {
	width: 100%;
	max-width: 100%;
	height: auto;
}

.core-photo img {
	z-index: inherit;
}

.core-video {
	--core-video-proportions: 0;
	--core-video-border-radius: 0;
}

.core-video__wrapper {
	position: relative;
	overflow: hidden;
	border-radius: var(--core-video-border-radius, 0);
	-webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
	mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
}

.core-video__wrapper:before {
	display: block;
	padding-top: var(--core-video-proportions, 0);
	content: '';
}

.core-video__video {
	z-index: inherit;
}

.core-video__button {
	--core-video-icon-width: 2.4rem;
	--core-video-icon-height: 2.4rem;
}

.core-video__button-icon {
	width: var(--core-video-icon-width);
	height: var(--core-video-icon-height);
	transition-property: opacity;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.core-video__button_play {
	--core-video-icon-width: 6.4rem;
	--core-video-icon-height: var(--core-video-icon-width);
	position: absolute;
	inset: 50% auto auto 50%;
	z-index: 1;
	width: 24rem;
	height: 24rem;
	fill: #fff;
	transition-property: opacity;
	transform: translate(-50%, -50%);
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.core-video__button_play.is-hidden {
	pointer-events: none;
	opacity: 0;
}

.core-video__button_play:before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	content: '';
	background-color: #07f;
	border-radius: 50%;
	transition-property: transform;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.core-video__button_play:not(:disabled):hover:before {
	transform: scale(0.9333);
}

.core-video__button_mute {
	position: absolute;
	inset: auto 2rem 2rem auto;
	width: 2.4rem;
	height: 2.4rem;
	fill: #fff;
}

.core-video__button_mute .core-video__button-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.core-video__button_mute .core-video__button-icon_volume-mute {
	opacity: 0;
}

.core-video__button_mute.is-active .core-video__button-icon_volume-mute {
	opacity: 1;
}
.core-video__button_mute.is-active .core-video__button-icon_volume{
	opacity:0
}

.core-video__description {
	margin-top: 1.6rem;
	font-size: 1.6rem;
	line-height: 1.25;
}

.core-slider-slide {
	flex: 0 0 var(--core-slider-slide-size, 100%);
}

.core-slider-navigation {
	display: flex;
	flex-flow: row nowrap;
	gap: 2rem;
	pointer-events: none;
}

.core-slider-navigation__ui-button {
	--ui-button-size: fit-content;
	pointer-events: all;
}

.core-slider-navigation__ui-button_next.ui-button {
	--ui-button-icon-rotate: 180deg;
}

.core-slider-navigation__ui-button:disabled {
	opacity: 0.4;
}

.core-slider-navigation_vertical {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	flex-direction: column;
	justify-content: space-between;
}

.core-slider-navigation_vertical .core-slider-navigation__ui-button {
	--ui-button-size: 100%;
}

.core-slider-navigation_vertical .core-slider-navigation__ui-button_prev {
	--ui-button-icon-rotate: 90deg;
}

.core-slider-navigation_vertical .core-slider-navigation__ui-button_next {
	--ui-button-icon-rotate: -90deg;
}

.core-slider-navigation__ui-button:not(:disabled):hover {
	--ui-button-icon-color: #07f;
}

.core-slider-pagination {
	display: flex;
	flex-flow: row wrap;
	gap: 1.6rem;
}

.core-slider-pagination__bullet {
	--core-slider-pagination-bullet-color: rgb(2 14 27 / 20%);
	flex: 0 0 auto;
}

.core-slider-pagination__trigger {
	display: flex;
	width: 0.8rem;
	height: 0.8rem;
	background-color: var(--core-slider-pagination-bullet-color, #07f);
	border-radius: 50%;
	transition-property: border-radius, width, background;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.core-slider-pagination__bullet.is-current {
	--core-slider-pagination-bullet-color: #07f;
}

.core-slider-pagination__bullet.is-current .core-slider-pagination__trigger {
	width: 4rem;
	border-radius: 2rem;
}

.core-slider-pagination_type_grow.core-slider-pagination
	.core-slider-pagination__bullet {
	--core-slider-pagination-bullet-color: rgba(255, 255, 255, 0.2);
}

.core-slider-pagination_type_grow.core-slider-pagination
	.core-slider-pagination__bullet.is-current {
	--core-slider-pagination-bullet-color: #fff;
}

.core-slider {
	--core-slider-slide-size: 100%;
	--core-slider-slide-spacing: 3.2rem;
	--core-slider-viewport-offset-outer: 0rem;
	--core-slider-container-size: 100%;
	--core-slider-overflow: hidden;
	position: relative;
}

.core-slider__viewport {
	margin: var(--core-slider-viewport-offset-outer, 0);
}

.core-slider__container {
	display: flex;
	flex-wrap: nowrap;
	touch-action: pan-y pinch-zoom;
}

.core-slider_direction_row .core-slider__container {
	flex-direction: row;
	width: var(--core-slider-container-size, 100%);
}

.core-slider_direction_row .core-slider-slide {
	min-width: 0;
	max-width: 100%;
}

.core-slider_direction_column .core-slider__container {
	flex-direction: column;
	height: var(--core-slider-container-size, 100%);
}

.core-slider_direction_column .core-slider-slide {
	min-height: 0;
	max-height: 100%;
}

.core-slider:not(.core-slider_overflow_visible) .core-slider__viewport {
	overflow: var(--core-slider-overflow, hidden);
}

.core-slider_loop.core-slider_direction_row .core-slider-slide {
	margin-right: var(--core-slider-slide-spacing, 3.2rem);
}

.core-slider_loop.core-slider_direction_column .core-slider-slide {
	margin-bottom: var(--core-slider-slide-spacing, 3.2rem);
}

.core-slider:not(.core-slider_loop).core-slider_direction_row
	.core-slider-slide:not(:last-child) {
	margin-right: var(--core-slider-slide-spacing, 3.2rem);
}

.core-slider:not(.core-slider_loop).core-slider_direction_column
	.core-slider-slide:not(:last-child) {
	margin-bottom: var(--core-slider-slide-spacing, 3.2rem);
}

.core-modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10003;
	display: none;
	padding: var(--wrapper-offset);
}

.core-modal__overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #061930b3;
	-webkit-backdrop-filter: blur(6rem);
	backdrop-filter: blur(6rem);
	transition-property: opacity;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.core-modal__wrapper {
	position: relative;
	z-index: 1;
	transition-delay: 0.1666666667s;
	transition-property: transform, opacity;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.core-modal_modal-age-confirm.core-modal {
	padding: 0;
}

.core-modal:not(.is-opened) .core-modal__overlay {
	opacity: 0;
	transition-delay: 0.25s;
}

.core-modal:not(.is-opened) .core-modal__wrapper {
	opacity: 0;
	transition-delay: 0.25s;
}

.ui-button {
	--ui-button-size: fit-content;
	--ui-button-spacing: 1rem;
	--ui-button-text-color: #020e1b;
	--ui-button-icon-color: currentColor;
	--ui-button-background-color: transparent;
	--ui-button-icon-rotate: 0;
	--ui-button-border-radius: 0;
	position: relative;
	flex: 0 0 auto;
	flex-flow: row nowrap;
	gap: var(--ui-button-spacing, 1rem);
	width: var(--ui-button-size, fit-content);
	max-width: 100%;
	color: var(--ui-button-text-color, #020e1b);
	background-color: var(--ui-button-background-color, transparent);
	border-radius: var(--ui-button-border-radius);
	fill: var(--ui-button-icon-color, currentColor);
	transition-property: transform, fill, color, background-color, opacity;
	display: flex;
	align-items: center;
	justify-content: center;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.ui-button__icon {
	flex: 0 0 auto;
	width: var(--ui-button-icon-size, 1.4rem);
	max-width: 100%;
	transition-property: transform, opacity;
	transform: rotate(var(--ui-button-icon-rotate));
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.ui-button__text {
	text-transform: uppercase;
	transition-property: opacity;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.ui-button__part-loader {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
	opacity: 0;
	transition-property: opacity;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.ui-button.is-loading {
	pointer-events: none;
}

.ui-button.is-loading .ui-button__icon,
.ui-button.is-loading .ui-button__text {
	opacity: 0;
}

.ui-button.is-loading .ui-button__part-loader {
	opacity: 1;
}

.ui-button:disabled {
	cursor: not-allowed;
}

.ui-button_reverse {
	flex-direction: row-reverse;
}

.ui-button_type_primary {
	--ui-button-text-color: #fff;
	--ui-button-background-color: #020e1b;
	--ui-button-border-radius: 10rem;
}

.ui-button_type_primary:disabled {
	--ui-button-background-color: #f1f3f6;
	--ui-button-text-color: rgba(2, 14, 27, 0.3);
}

.ui-button_type_primary:not(:disabled):hover {
	--ui-button-background-color: #07f;
}

.ui-button_type_secondary {
	--ui-button-text-color: #fff;
	--ui-button-background-color: #07f;
	--ui-button-border-radius: 10rem;
}

.ui-button_type_secondary:not(:disabled):hover {
	--ui-button-background-color: #3090ff;
}

.ui-button_type_tertiary {
	--ui-button-text-color: #020e1b;
	--ui-button-background-color: rgb(2 14 27 / 5%);
}

.ui-button_type_primary-light {
	--ui-button-text-color: #020e1b;
	--ui-button-background-color: rgba(2, 14, 27, 0.05);
}

.ui-button_type_primary-light:not(:disabled):hover {
	--ui-button-text-color: #07f;
}

.ui-button_type_tabs {
	--ui-button-text-color: #020e1b;
	--ui-button-background-color: #f1f3f6;
}

.ui-button_type_tabs_dark {
	--ui-button-background-color: #13253b;
	--ui-button-text-color: #fff;
}

.ui-button_type_tabs,
.ui-button_type_tabs_dark {
	--ui-button-border-radius: 10rem;
}

.ui-button_type_tabs.is-current,
.ui-button_type_tabs_dark.is-current {
	cursor: default;
}

.ui-button_type_tabs.is-current,
.ui-button_type_tabs:not(:disabled, .is-current):hover,
.ui-button_type_tabs_dark.is-current,
.ui-button_type_tabs_dark:not(:disabled, .is-current):hover {
	--ui-button-text-color: #fff;
	--ui-button-background-color: #07f;
}

.ui-button_type_slider_vertical {
	color: #020e1b;
	background-color: #f1f3f6;
	--ui-button-border-radius: 0.8rem;
}

.ui-button_type_white-transparent {
	--ui-button-text-color: #fff;
	--ui-button-background-color: rgba(255, 255, 255, 0.05);
	--ui-button-border-radius: 10rem;
}

.ui-button_type_white-transparent:not(:disabled):hover {
	--ui-button-background-color: #07f;
}

.ui-button:not([class*='ui-button_text-size_']) .ui-button__text {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 0.08em;
}

.ui-button:not(
		[class*='ui-button_icon-size_'],
		[class*='ui-button_circle_size']
	) {
	--ui-button-icon-size: 1.4rem;
}

.ui-button:not(
		[class*='ui-button_offset_'],
		[class*='ui-button_circle']
	)[class*='ui-button_type'] {
	padding: 2.2rem 3.2rem;
}

.ui-button_offset_13-13 {
	padding: 1.3rem;
}

.ui-button_circle {
	width: var(--ui-button-size, 6.4rem);
	height: var(--ui-button-size, 6.4rem);
}

.ui-button_circle:not([class*='ui-button_circle_size']) {
	--ui-button-size: 6.4rem;
	--ui-button-icon-size: 2rem;
}

.ui-button_circle:not(.ui-button_circle_omit-border-radius) {
	--ui-button-border-radius: 50%;
}

.ui-button_circle_size_20 {
	--ui-button-size: 2rem;
	--ui-button-icon-size: 2rem;
}

.ui-button_circle_size_240 {
	--ui-button-size: 24rem;
	--ui-button-icon-size: 6.4rem;
}

.ui-button_icon-color_fff {
	--ui-button-icon-color: #fff;
}

.ui-button:not(:disabled, [class*='ui-button_type']):hover {
	--ui-button-text-color: #07f;
}

.ui-button_text-color_fff {
	--ui-button-text-color: #fff;
}

.ui-button_text-color_secondary {
	--ui-button-text-color: #07f;
}

.ui-button_text-color_secondary:not(:disabled):hover {
	--ui-button-text-color: #3090ff;
}

.ui-button_text-color_primary_half {
	--ui-button-text-color: rgba(2, 14, 27, 0.5);
}

.ui-button_text-color_white_half {
	--ui-button-text-color: rgba(255, 255, 255, 0.5);
}

.ui-select {
	position: relative;
}

.ui-select__trigger {
	display: flex;
	flex-flow: row nowrap;
	gap: 2.4rem;
	align-items: center;
	width: 100%;
	max-width: 100%;
	padding: 2.4rem;
	text-align: left;
	background-color: #f1f3f6;
	border-radius: 10rem;
}

.ui-select__trigger-text {
	flex: 1;
	min-width: 0;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ui-select__trigger-arrow {
	flex: 0 0 auto;
	width: 1.4rem;
	height: 1.4rem;
	transition-property: transform;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.ui-select__error {
	margin-top: 0.8rem;
	font-size: 1.4rem;
	line-height: 1.45;
	color: #ff4848;
}

.ui-select [data-tippy-root] {
	width: 100%;
}

.ui-select__list {
	--ui-select-list-offset-vertical: 1.6rem;
	max-height: 18.2rem;
	padding: var(--ui-select-list-offset-vertical) 0;
	overflow: hidden auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-color: #f1f3f6 transparent;
	scrollbar-width: 4px;
}

.ui-select__list::-webkit-scrollbar {
	display: block;
	width: 4px;
}

.ui-select__list::-webkit-scrollbar-track {
	background: transparent;
	border-radius: 100px;
}

.ui-select__list::-webkit-scrollbar-thumb {
	background: #f1f3f6;
	border-radius: 100px;
}

.ui-select__list::-webkit-scrollbar-track {
	margin: var(--ui-select-list-offset-vertical) 0;
}

.ui-select__list-wrapper {
	padding-right: 4px;
	background-color: #fff;
	border-radius: 2rem;
	box-shadow: 0 15px 50px #020e1b1a;
}

.ui-select__list-wrapper:not(.is-created) {
	display: none;
}

.ui-select__list-item {
	position: relative;
}

.ui-select__option {
	position: relative;
	display: flex;
	padding: 1.6rem 2.4rem;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	cursor: pointer;
	transition-property: color;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.ui-select__option.is-active {
	color: #07f;
	cursor: initial;
}

.ui-select.is-opened .ui-select__trigger-arrow {
	transform: rotate(180deg);
}

.ui-label {
	display: flex;
	flex-flow: row nowrap;
	gap: 0.6rem;
	padding: var(--ui-label-padding, 0);
	background-color: var(--ui-label-background-color, transparent);
	border-radius: var(--ui-label-border-radius);
}

.ui-label__icon {
	flex: 0 0 auto;
	width: 2.4rem;
}

.ui-label__icon img {
	width: 100%;
}

.ui-label__text {
	flex: 1;
	min-width: 0;
	line-height: normal;
	color: var(--ui-label-text-color, #020e1b);
}

.ui-label_text_size_16 .ui-label__text {
	font-size: 1.6rem;
}

.ui-label:not([class*='ui-label_text-size']) .ui-label__text {
	font-size: 1.8rem;
}

.ui-label_type_secondary {
	--ui-label-background-color: rgba(2, 14, 27, 0.05);
	--ui-label-text-color: #020e1b;
}

.ui-label_type_secondary_light {
	--ui-label-text-color: #fff;
	--ui-label-background-color: rgba(255, 255, 255, 0.05);
}

.ui-label_type_secondary,
.ui-label_type_secondary_light {
	--ui-label-border-radius: 0.6rem;
	--ui-label-padding: 0.7rem 1.4rem;
}

.ui-label:not([class*='ui-label_type']):not([class*='ui-label_text_color']) {
	--ui-label-text-color: rgba(2, 14, 27, 0.5);
}

.ui-label:not([class*='ui-label_type']).ui-label_text_color_white_half {
	--ui-label-text-color: rgba(255, 255, 255, 0.5);
}

.ui-input {
	--ui-input-font-size: clamp(16px, 2.4rem, 2.4rem);
	--ui-input-font-weight: 600;
	--ui-input-line-height: normal;
	--ui-input-label-offset: 1.3rem;
	position: relative;
	display: flex;
	flex-flow: column nowrap;
	width: 100%;
	-webkit-user-select: none;
	user-select: none;
}

.ui-input__label {
	position: relative;
	top: calc(var(--ui-input-font-size) * 1.2 + var(--ui-input-label-offset));
	max-width: 100%;
	margin-bottom: var(--ui-input-label-offset);
	font-size: var(--ui-input-font-size);
	font-weight: var(--ui-input-font-weight);
	line-height: var(--ui-input-line-height);
	color: #020e1b4d;
	pointer-events: none;
	transition: transform, top, color;
	transform-origin: 0 0;
	font-family: RFDewiCondensed, sans-serif;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.ui-input__content {
	display: flex;
	gap: 1.6rem;
	width: 100%;
	padding-bottom: 1.6rem;
	cursor: text;
	border-bottom: 1px solid rgba(2, 14, 27, 0.2);
	transition-property: border-color;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.ui-input__content:hover {
	border-bottom-color: #020e1b80;
}

.ui-input__file-name {
	opacity: 0;
	transition-property: opacity;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.ui-input__file-name,
.ui-input__input {
	flex: 1;
	min-width: 0;
	font-size: var(--ui-input-font-size);
	font-weight: var(--ui-input-font-weight);
	line-height: var(--ui-input-line-height);
	color: #020e1b;
	font-family: RFDewiCondensed, sans-serif;
}

.ui-input__input:-webkit-autofill,
.ui-input__input:-webkit-autofill:hover,
.ui-input__input:-webkit-autofill:focus {
	background-color: transparent;
	-webkit-background-clip: text;
	border-color: transparent;
	box-shadow: inset 0 0 100px 100px transparent;
	-webkit-text-fill-color: #020e1b;
}

.ui-input__input:is(textarea) {
	resize: none;
}

.ui-input__input[type='file'] {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	border: unset;
}

.ui-input__input::placeholder {
	color: #020e1b33;
}

.ui-input__input:focus {
	outline: unset;
}

.ui-input__postfix {
	display: flex;
	flex: 0 0 auto;
	flex-flow: row nowrap;
	gap: 0.8rem;
}

.ui-input__postfix-item {
	width: 2.4rem;
	height: 2.4rem;
}

.ui-input__text {
	margin-top: 0.8rem;
	font-size: 1.4rem;
	line-height: 1.45;
	color: #020e1b80;
}

.ui-input__text_error {
	color: #ff4848;
}

.ui-input_type_file .ui-input__content,
.ui-input_type_file .ui-input__input {
	cursor: pointer;
}

.ui-input.is-filled .ui-input__label,
.ui-input:focus-within:not(.ui-input_type_file) .ui-input__label {
	top: 0;
	color: #020e1b;
	transform: scale(0.655);
}

.ui-input.is-filled.ui-input_type_file .ui-input__file-name {
	opacity: 1;
}

.ui-input:not(.is-error) .ui-input__text_error {
	display: none;
}

.ui-input.is-error .ui-input__content {
	border-color: #ff484833;
}

.ui-checkbox {
	display: flex;
	flex-flow: row nowrap;
	gap: 1.2rem;
	cursor: pointer;
	-webkit-user-select: none;
	user-select: none;
}

.ui-checkbox__input {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	border: unset;
}

.ui-checkbox__icon {
	flex: 0 0 auto;
	width: 2.4rem;
	height: 2.4rem;
	background-color: #f1f3f6;
	border-radius: 50%;
	outline: 1px solid rgba(2, 14, 27, 0.2);
	outline-offset: -1px;
	fill: transparent;
	transition-property: fill, background, outline;
	display: flex;
	align-items: center;
	justify-content: center;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.ui-checkbox__icon svg {
	width: 2rem;
}

.ui-checkbox__content {
	display: flex;
	flex-shrink: 1;
	flex-flow: column nowrap;
	gap: 0.8rem;
	align-self: center;
}

.ui-checkbox__text {
	font-size: 1.6rem;
	line-height: 1.45;
	color: #020e1b80;
}

.ui-checkbox__text a {
	color: #07f;
	transition-property: -webkit-text-decoration;
	transition-property: text-decoration;
	transition-property: text-decoration, -webkit-text-decoration;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.ui-checkbox__text a:hover {
	color: #3090ff;
}

.ui-checkbox__error {
	color: #ff4848;
}

.ui-checkbox__input:checked ~ .ui-checkbox__icon {
	background-color: #020e1b;
	outline-color: #020e1b;
	fill: #fff;
}

.ui-checkbox:not(.is-error) .ui-checkbox__error {
	display: none;
}

.button-burger {
	position: relative;
	display: flex;
	width: 4.8rem;
	height: 1.4rem;
	cursor: pointer;
	transition-property: transform;
	transform-origin: left center;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.button-burger__lines {
	position: relative;
	width: 100%;
	height: 100%;
}

.button-burger__line {
	position: absolute;
	left: 0;
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--button-burger-line-color, #fff);
}

.button-burger__line:nth-child(1) {
	top: 0;
}

.button-burger__line:nth-child(4) {
	bottom: 0;
}

.button-burger__line:nth-child(1),
.button-burger__line:nth-child(4) {
	transition: top 0.5s cubic-bezier(0.1, 0.6, 0.4, 1) 0.5s,
		bottom 0.5s cubic-bezier(0.1, 0.6, 0.4, 1) 0.5s,
		transform 0.5s cubic-bezier(0.1, 0.6, 0.4, 1) 0.5s,
		opacity 0.01s cubic-bezier(0.1, 0.6, 0.4, 1) 0.5s;
}

.button-burger__line:nth-child(2),
.button-burger__line:nth-child(3) {
	top: 50%;
	opacity: 0;
	transition: transform 0.5s cubic-bezier(0.1, 0.6, 0.4, 1),
		opacity 0.01s cubic-bezier(0.1, 0.6, 0.4, 1) 0.5s;
	transform: translateY(-50%);
}

.button-burger.is-active .button-burger__line:nth-child(1) {
	top: 50%;
	transform: translateY(-50%);
}

.button-burger.is-active .button-burger__line:nth-child(4) {
	bottom: 50%;
	transform: translateY(50%);
}

.button-burger.is-active .button-burger__line:nth-child(2) {
	transform: translateY(-50%) rotate(45deg);
}

.button-burger.is-active .button-burger__line:nth-child(3) {
	transform: translateY(-50%) rotate(-45deg);
}

.button-burger.is-active .button-burger__line:nth-child(1),
.button-burger.is-active .button-burger__line:nth-child(4) {
	opacity: 0;
	transition: top 0.5s cubic-bezier(0.1, 0.6, 0.4, 1),
		bottom 0.5s cubic-bezier(0.1, 0.6, 0.4, 1),
		transform 0.5s cubic-bezier(0.1, 0.6, 0.4, 1), opacity 0.01s 0.5s;
}

.button-burger.is-active .button-burger__line:nth-child(2),
.button-burger.is-active .button-burger__line:nth-child(3) {
	opacity: 1;
	transition: transform 0.5s cubic-bezier(0.1, 0.6, 0.4, 1) 0.5s,
		opacity 0.01s cubic-bezier(0.1, 0.6, 0.4, 1) 0.5s;
}

.button-burger:not([class*='button-burger_theme_']) {
	--button-burger-line-color: #020e1b;
}

.button-burger_theme_light {
	--button-burger-line-color: #fff;
}

.button-burger:not(:disabled, .is-active):hover {
	transform: scaleX(1.33);
}

.part-logo {
	display: flex;
}

.part-logo__icon {
	width: 13rem;
}

.part-logo__icon img {
	width: 100%;
}

.part-logo:is(a) {
	transition-property: opacity;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.part-logo:is(a):hover {
	opacity: 0.75;
}

.part-header {
	display: flex;
	flex: 0 0 auto;
	flex-flow: column nowrap;
	height: calc(
		var(--part-header-row-top-height) + var(--part-header-row-bottom-height)
	);
	background-color: var(--part-header-background-color);
	transition: background-color 0.5s,
		opacity var(--page-page-animation-duration, 1s);
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
}

.part-header__wrapper {
	--part-header-row-elements-offset: 6.5rem;
}

.part-header__wrapper_top {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;
	display: grid;
	grid-template-columns: 1fr max-content 1fr;
	gap: var(--part-header-row-elements-offset, 6.5rem);
	align-items: center;
	width: 100%;
	max-width: calc(100% - var(--noscroll-target-scrollbar-width, 0));
	padding-top: 1.6rem;
	padding-bottom: 1.6rem;
	background-color: var(--part-header-background-color);
	transition-property: background-color;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.part-header__wrapper_top:before {
	position: absolute;
	inset: auto var(--wrapper-offset) 0;
	height: 1px;
	content: '';
	background-color: var(
		--part-header-row-top-border-color,
		rgba(1, 5, 19, 0.18)
	);
}

.part-header__wrapper_bottom {
	padding-top: 2rem;
	padding-bottom: 2rem;
	margin-top: auto;
	margin-right: var(--noscroll-target-scrollbar-width, 0);
}

.part-header__cell_right {
	display: flex;
	flex-flow: row nowrap;
	gap: var(--part-header-row-elements-offset, 6.5rem);
	align-items: center;
	justify-content: flex-end;
}

.part-header__button-burger {
	flex: 0 0 auto;
}

.part-header__part-translations-toggler {
	margin-left: auto;
}

.part-header__link {
	font-size: 1.4rem;
	font-weight: 700;
	line-height: auto;
	color: var(--part-header-link-color, #020e1b);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	position: relative;
	display: flex;
	width: fit-content;
	max-width: 100%;
	padding-bottom: 1px;
}

.part-header__link:before {
	position: absolute;
	inset: auto 0 0;
	height: 1px;
	content: '';
	background-color: currentColor;
	transition-property: transform;
	transform: scaleX(0);
	transform-origin: 100% 50%;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.part-header__link:hover:before {
	transform: scaleX(1);
	transform-origin: 0% 50%;
}

.part-header__nav {
	display: flex;
	flex-flow: row nowrap;
	gap: var(--part-header-row-elements-offset, 6.5rem);
	align-items: center;
	justify-content: space-between;
}

.part-header:not([class*='part-header_theme_']) {
	--part-header-row-top-border-color: rgb(1 5 19 / 18%);
	--part-header-link-color: #020e1b;
	--part-header-background-color: #fff;
}

.part-header_theme_light {
	--part-header-row-top-border-color: rgb(255 255 255 / 18%);
	--part-header-link-color: #fff;
	--part-header-background-color: #061930;
}

.part-header_theme_gray {
	--part-header-row-top-border-color: rgb(1 5 19 / 18%);
	--part-header-link-color: #020e1b;
	--part-header-background-color: #f1f3f6;
}

.part-header_position_absolute {
	position: absolute;
	inset: 0 0 auto;
	z-index: 10000;
}

.part-header.is-menu-opened {
	--part-header-background-color: #0d2440;
	--part-header-row-top-border-color: rgb(255 255 255 / 18%);
}

.part-header.is-menu-opened .part-header__wrapper_top {
	transition-duration: 0s;
}

.part-header.is-menu-opened .part-header__button-burger {
	--button-burger-line-color: #fff;
}

.part-header.is-menu-opened .part-header__part-translations-toggler {
	--part-translations-toggler-color: #fff;
}

.part-header.is-menu-opened .part-header__link {
	color: #fff;
}

.part-header-menu {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 99;
	max-width: calc(100% - var(--noscroll-target-scrollbar-width));
	padding-right: 4px;
	clip-path: inset(0% 0% 100% 0%);
	background-color: #0d2440;
	transition-property: clip-path;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.part-header-menu__content {
	--part-header-menu-vertical-offset: 4.8rem;
	max-height: 100%;
	padding: calc(
			var(--part-header-height) + var(--part-header-menu-vertical-offset)
		)
		var(--wrapper-offset) var(--part-header-menu-vertical-offset);
	scrollbar-color: #2b3e55 transparent;
	scrollbar-width: 4px;
	overflow: hidden auto;
	-webkit-overflow-scrolling: touch;
}

.part-header-menu__content::-webkit-scrollbar {
	display: block;
	width: 4px;
}

.part-header-menu__content::-webkit-scrollbar-track {
	background: transparent;
	border-radius: 100px;
}

.part-header-menu__content::-webkit-scrollbar-thumb {
	background: #2b3e55;
	border-radius: 100px;
}

.part-header-menu__content::-webkit-scrollbar-track {
	margin: calc(var(--part-header-height) + 4.8rem) 1rem 4.8rem;
}

.part-header-menu__wrapper {
	display: flex;
	flex-flow: row nowrap;
	gap: 7.2rem;
}

.part-header-menu__nav-list {
	display: flex;
	flex-flow: column nowrap;
	gap: 2rem;
}

.part-header-menu__nav-link {
	font-size: 6.4rem;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	text-transform: uppercase;
	position: relative;
	display: flex;
	width: fit-content;
	max-width: 100%;
	padding-bottom: 1px;
	font-family: RFDewiCondensed, sans-serif;
}

.part-header-menu__nav-link:before {
	position: absolute;
	inset: auto 0 0;
	height: 1px;
	content: '';
	background-color: currentColor;
	transition-property: transform;
	transform: scaleX(0);
	transform-origin: 100% 50%;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.part-header-menu__nav-link:hover:before {
	transform: scaleX(1);
	transform-origin: 0% 50%;
}

.part-header-menu__contacts {
	display: flex;
	flex-flow: column nowrap;
	gap: 6.4rem;
}

.part-header-menu__contact-label {
	font-size: 1.8rem;
	line-height: normal;
	color: #ffffff80;
}

.part-header-menu__contact-list {
	display: flex;
	flex-flow: column nowrap;
	gap: 1.2rem;
	margin-top: 2rem;
}

.part-header-menu__contact-link {
	font-size: 1.4rem;
	font-weight: 700;
	line-height: normal;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	position: relative;
	display: flex;
	width: fit-content;
	max-width: 100%;
	padding-bottom: 1px;
}

.part-header-menu__contact-link:before {
	position: absolute;
	inset: auto 0 0;
	height: 1px;
	content: '';
	background-color: currentColor;
	transition-property: transform;
	transform: scaleX(0);
	transform-origin: 100% 50%;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.part-header-menu__contact-link:hover:before {
	transform: scaleX(1);
	transform-origin: 0% 50%;
}

.part-header-menu__background {
	position: fixed;
	inset: auto -58.2rem -4.2rem auto;
	width: 75.4166666667%;
	max-height: calc(100% - var(--part-header-row-top-height));
	pointer-events: none;
}

.part-header-menu__background:before {
	display: block;
	padding-top: 76.5883977901%;
	content: '';
}

.part-header-menu__background img {
	object-position: center top;
}

.part-header-menu.is-menu-opened {
	clip-path: inset(0% 0% 0% 0%);
}

.part-main-content {
	position: relative;
	display: flex;
	flex: 1 0 auto;
	flex-flow: column nowrap;
	min-height: 100%;
}

.part-footer {
	flex: 0 0 auto;
	padding: 5.2rem 0 3.8rem;
	background-color: #020e1b;
}

.part-footer__row_nav {
	display: grid;
	grid-template-columns: 1fr max-content 1fr;
	gap: 3.2rem;
	align-items: flex-start;
	justify-content: space-between;
}

.part-footer__row_contacts {
	display: flex;
	flex-flow: row nowrap;
	gap: 3.2rem;
	margin-top: 2.6rem;
}

.part-footer__row_text {
	padding-top: 2.4rem;
	margin-top: 7rem;
	border-top: 1px solid #334255;
}

.part-footer__nav-list {
	display: grid;
	grid-template-columns: repeat(2, auto);
	gap: 1.2rem 3.2rem;
	justify-content: space-between;
}

.part-footer__nav-link {
	font-size: 1.8rem;
	line-height: 1.33;
	color: #fff;
}

.part-footer__nav-link:is(a) {
	transition-property: color;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.part-footer__nav-link:is(a):hover {
	color: #ffffff80;
}

.part-footer__address {
	display: flex;
	flex-flow: column nowrap;
	gap: 1.2rem;
	font-size: 1.8rem;
	font-style: normal;
	line-height: 1.33;
	color: #fff;
}

.part-footer__contacts {
	display: flex;
	flex-flow: column nowrap;
	gap: 1.2rem;
}

.part-footer__contacts-link {
	font-size: 4rem;
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
	text-transform: uppercase;
	font-family: RFDewiCondensed, sans-serif;
}

.part-footer__contacts-link:is(a) {
	position: relative;
	display: flex;
	width: fit-content;
	max-width: 100%;
	padding-bottom: 1px;
}

.part-footer__contacts-link:is(a):before {
	position: absolute;
	inset: auto 0 0;
	height: 1px;
	content: '';
	background-color: currentColor;
	transition-property: transform;
	transform: scaleX(0);
	transform-origin: 100% 50%;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.part-footer__contacts-link:is(a):hover:before {
	transform: scaleX(1);
	transform-origin: 0% 50%;
}

.part-footer__text {
	gap: 3.6rem;
	align-items: center;
	justify-content: space-between;
}

.part-footer__text-item {
	font-size: 1.6rem;
	line-height: normal;
	color: #ffffff80;
}

.part-footer__text-item a {
	transition-property: color;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.part-footer__text-item a:hover {
	color: #fff;
}

.part-tooltips {
	display: none;
}

.part-modals {
	position: absolute;
}

.part-templates {
	display: none;
}

.part-translations-toggler {
	display: flex;
	width: fit-content;
	max-width: 100%;
}

.part-translations-toggler__list {
	display: flex;
	flex-flow: row nowrap;
	gap: 2rem;
}

.part-translations-toggler__link {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--part-translations-toggler-color, #020e1b);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	position: relative;
	display: flex;
	width: fit-content;
	max-width: 100%;
	padding-bottom: 1px;
}

.part-translations-toggler__link:before {
	position: absolute;
	inset: auto 0 0;
	height: 1px;
	content: '';
	background-color: currentColor;
	transition-property: transform;
	transform: scaleX(0);
	transform-origin: 100% 50%;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.part-translations-toggler__list-item_current .part-translations-toggler__link {
	cursor: default;
}

.part-translations-toggler__list-item_current
	.part-translations-toggler__link:before {
	transform: scaleX(1);
	transform-origin: 0% 50%;
}

.part-translations-toggler__list-item:not(
		.part-translations-toggler__list-item_current
	)
	.part-translations-toggler__link:hover:before {
	transform: scaleX(1);
	transform-origin: 0% 50%;
}

.part-translations-toggler:not([class*='part-translations-toggler_theme_']) {
	--part-translations-toggler-color: #020e1b;
}

.part-translations-toggler_theme_light {
	--part-translations-toggler-color: #fff;
}

.part-section-header {
	--part-section-header-title-color: #020e1b;
	display: flex;
	flex-flow: row wrap;
	gap: 3.2rem;
	align-items: center;
}

.part-section-header__cell_left {
	flex: 1;
	min-width: 0;
}

.part-section-header__cell_right {
	flex: 0 0 auto;
}

.part-section-header__title {
	font-size: 3.2rem;
	font-weight: 700;
	line-height: normal;
	color: var(--part-section-header-title-color);
	text-transform: uppercase;
	font-family: RFDewiCondensed, sans-serif;
}

.part-section-header_title_color_white {
	--part-section-header-title-color: #fff;
}

.part-socials {
	--part-socials-background-color: rgba(255, 255, 255, 0.05);
	--part-socials-fill: #fff;
	display: flex;
	flex-flow: column nowrap;
	gap: 1.6rem;
}

.part-socials__label {
	font-size: 1.8rem;
	line-height: 1.45;
	color: #ffffff80;
}

.part-socials__list {
	display: flex;
	flex-flow: row wrap;
	gap: 0.8rem;
}

.part-socials__link {
	width: 6.4rem;
	height: 6.4rem;
	background-color: var(
		--part-socials-background-color,
		rgba(255, 255, 255, 0.05)
	);
	border-radius: 50%;
	fill: var(--part-socials-fill, #fff);
	transition-property: background-color, fill;
	display: flex;
	align-items: center;
	justify-content: center;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.part-socials__link:hover {
	--part-socials-background-color: #07f;
	--part-socials-fill: #fff;
}

.part-socials__link-icon {
	width: 2.4rem;
	height: 2.4rem;
}

.part-socials_theme_gray .part-socials__label {
	color: #020e1b80;
}

.part-socials_theme_gray .part-socials__link:not(:hover) {
	--part-socials-background-color: rgba(2, 14, 27, 0.05);
	--part-socials-fill: #020e1b;
}

.part-breadcrumbs {
	--part-breadcrumbs-offset: 0.6rem;
	--part-breadcrumbs-link-color: #020e1b;
}

.part-breadcrumbs__list,
.part-breadcrumbs__list-item {
	display: flex;
	flex-flow: row nowrap;
	gap: var(--part-breadcrumbs-offset);
	align-items: center;
}

.part-breadcrumbs__link {
	font-size: 1.4rem;
	line-height: normal;
	color: var(--part-breadcrumbs-link-color);
	text-transform: uppercase;
	cursor: default;
	opacity: 0.5;
}

.part-breadcrumbs__link:is(a) {
	cursor: pointer;
	transition-property: opacity;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.part-breadcrumbs__link:is(a):hover {
	opacity: 1;
}

.part-breadcrumbs__divider {
	width: 0.8rem;
	height: 0.8rem;
	opacity: 0.5;
	fill: var(--part-breadcrumbs-link-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.part-breadcrumbs_theme_light {
	--part-breadcrumbs-link-color: #fff;
}

.part-loader {
	--part-loader-size: 2.4rem;
	--part-loader-color: inherit;
	display: flex;
	flex: 0 0 auto;
	max-width: 100%;
	overflow: hidden;
	color: var(--part-loader-color, inherit);
}

.part-loader__icon {
	display: inline-block;
	width: var(--part-loader-size, 2.4rem);
	max-width: 100%;
	aspect-ratio: 1;
	margin: auto;
	border: 2px solid;
	border-left: 2px solid transparent;
	border-radius: 50%;
	animation: part-loader-icon-rotation 1s linear infinite;
	contain: strict;
}

.part-map {
	position: relative;
	overflow: hidden;
	background-color: #f1f3f6;
	border-radius: 0.8rem;
}

.part-map:before {
	display: block;
	padding-top: 29.0948275862%;
	content: '';
}

.part-map__map {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.part-map__map .ymaps-2-1-79-events-pane {
	z-index: 9999 !important;
}

.part-map__part-loader {
	position: absolute;
	top: 50%;
	left: 50%;
	pointer-events: none;
	transition-property: opacity;
	transform: translate(-50%, -50%);
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.part-map.is-loaded .part-map__part-loader {
	opacity: 0;
}

.part-page-loader {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10001;
	max-width: calc(100% - var(--noscroll-target-scrollbar-width, 0px));
	padding: calc(var(--part-header-height) + 11rem) var(--wrapper-offset)
		var(--wrapper-offset);
	pointer-events: all;
	cursor: initial;
	background-color: #061930;
	opacity: 1;
	animation-duration: var(--page-page-animation-duration, 1s);
	animation-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	animation-fill-mode: forwards;
}

.part-page-loader__logo-letter img {
	width: 100%;
}

.part-page-loader:not(.is-initialized) {
	--part-logo-path-opacity: 0;
	--part-logo-path-transform: translateX(-101%);
}

.part-page-loader:not(.is-hidden) {
	animation-name: part-loader-transition;
}

.part-page-loader.is-hidden {
	animation-name: part-loader-transition-reverse;
}

.part-page-loader.is-delayed-animation {
	animation-delay: 2s;
}

.part-logo-letter {
	color: var(--part-logo-letter-color, #fff);
}

.part-logo-letter__icon {
	width: 100%;
}

.part-logo-letter__icon path {
	opacity: var(--part-logo-path-opacity);
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 1.5s;
	transition-property: transform, opacity;
	transform: var(--part-logo-path-transform);
	transform-origin: center;
	transform-box: fill-box;
}

.item-category {
	--item-category-offset: 3.2rem;
	--item-category-spacing: 3.1em;
	position: relative;
	z-index: 1;
	display: flex;
	flex-flow: column nowrap;
	padding: var(--item-category-offset, 3.2rem);
}

.item-category:before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	pointer-events: none;
	content: '';
	-webkit-user-select: none;
	user-select: none;
	background-color: #f1f3f6;
	border-radius: 0.8rem;
	transition-property: transform;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.item-category__wrapper {
	display: flex;
	flex-flow: column nowrap;
	gap: var(--item-category-spacing);
}

.item-category__title {
	font-size: 1.4rem;
	font-weight: 700;
	line-height: auto;
	color: #020e1b;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.item-category__photo {
	position: relative;
	width: min(100%, 23rem);
	margin: 0 auto;
	-webkit-user-select: none;
	user-select: none;
	mix-blend-mode: darken;
	transition-property: transform;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.item-category__photo:before {
	display: block;
	padding-top: 278.2608695652%;
	content: '';
}

.item-category__ui-button {
	position: absolute;
	inset: auto var(--item-category-offset, 3.2rem)
		var(--item-category-offset, 3.2rem) auto;
}

.item-category_with-button {
	padding-bottom: 8rem;
}

.item-category_photo_size_194 .item-category__photo {
	width: min(100%, 19.4rem);
}

.item-category_photo_size_194 .item-category__photo:before {
	padding-top: 164.9484536082%;
}

.item-category:hover:before {
	transform: scale(0.98026);
}

.item-category:hover .item-category__photo {
	transform: scale(1.0261);
}

.item-category:hover .item-category__ui-button {
	transform: rotate(180deg);
}

.item-production {
	--item-production-content-size: 140rem;
	border-top: 1px solid #334255;
}

.item-production__trigger {
	position: relative;
	display: flex;
	flex-flow: row nowrap;
	gap: 4rem;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 2.4rem 0;
	font-size: 8rem;
	font-weight: 700;
	line-height: auto;
	color: #ffffff80;
	text-align: left;
	text-transform: uppercase;
	transition-property: color;
	font-family: RFDewiCondensed, sans-serif;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.item-production__trigger-count {
	flex: 0 0 auto;
}

.item-production__trigger-preview {
	position: absolute;
	top: 50%;
	right: 9.6rem;
	width: 14rem;
	overflow: hidden;
	pointer-events: none;
	border-radius: 0.8rem;
	opacity: 0;
	transition-property: opacity;
	transform: translateY(-50%);
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.item-production__trigger-preview:before {
	display: block;
	padding-top: 125.7142857143%;
	content: '';
}

.item-production__trigger-icon {
	flex: 0 0 auto;
	width: 6.4rem;
	height: 6.4rem;
	background-color: #ffffff0d;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.item-production__trigger-icon-box {
	position: relative;
	width: 2rem;
	height: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.item-production__trigger-icon-line_vertical {
	position: absolute;
	inset: 0 auto 0 50%;
	display: flex;
	flex-flow: column nowrap;
	gap: 0.6rem;
	transition-property: transform;
	transform: translate(-50%);
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.item-production__trigger-icon-line_vertical:before,
.item-production__trigger-icon-line_vertical:after {
	flex: 1;
	width: 2px;
	min-height: 0;
	content: '';
	background-color: #fff;
}

.item-production__trigger-icon-line_horizontal {
	width: 100%;
	height: 2px;
	background-color: #fff;
}

.item-production__content {
	padding: 0.8rem 0 3.2rem;
	font-size: 1.8rem;
	line-height: 1.3;
	color: #fff;
}

.item-production__content-wrapper {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-rows: 0fr;
	grid-template-columns: 100%;
	overflow: hidden;
	transition-property: grid-template-rows;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.item-production__content-wrapper-inner {
	min-height: 0;
}

.item-production.is-content-showed .item-production__trigger {
	color: #fff;
}

.item-production.is-content-showed
	.item-production__trigger-icon-line_vertical {
	transform: translate(-50%) rotate(-90deg);
}

.item-production.is-content-showed .item-production__content-wrapper {
	grid-template-rows: 1fr;
}

.item-production:not(.is-content-showed):hover .item-production__trigger {
	color: #fff;
}

.item-production:not(.is-content-showed):hover
	.item-production__trigger-preview {
	opacity: 1;
}

.item-team__preview {
	position: relative;
	overflow: hidden;
	background-color: #e6e8ec;
	border-radius: 0.8rem;
	transition-property: transform;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.item-team__preview--img {
    height: 100%;
    top: 5%;
}
.item-team__preview:before {
	display: block;
	padding-top: 113.6363636364%;
	content: '';
}

.item-team__post {
	margin-top: 2rem;
	font-size: 1.8rem;
	line-height: 1;
	color: #020e1b80;
}

.item-team__name {
	margin-top: 1.6rem;
	font-size: 6.4rem;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	font-family: RFDewiCondensed, sans-serif;
}

.item-team:hover .item-team__preview {
	transform: scale(0.95);
}

.item-posts {
	display: flex;
	padding: 2.4rem 0;
	border-top: 1px solid #eef0f1;
}

.item-posts__wrapper {
	display: grid;
	grid-template-columns: 1fr 40.6788793103% auto;
	gap: 9.2rem;
	align-items: start;
}

.item-posts__date {
	font-size: 1.8rem;
	line-height: auto;
	color: #020e1b80;
}

.item-posts__title {
	font-size: 4rem;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	transition-property: color;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
	font-family: RFDewiCondensed, sans-serif;
}

.item-posts__text {
	margin-top: 2rem;
	font-size: 1.8rem;
	line-height: 1.33;
	color: #020e1b80;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.item-posts:is(a):hover .item-posts__title {
	color: #07f;
}

.item-posts:is(a):hover .item-posts__ui-button {
	--ui-button-icon-rotate: -180deg;
}

.item-awards {
	display: flex;
	flex-flow: column nowrap;
	gap: 2.4rem;
	height: 100%;
	min-height: 44rem;
	padding: 3.2rem;
	border: 1px solid #334255;
}

.item-awards__icon {
	width: 5rem;
}

.item-awards__icon img {
	width: 100%;
}

.item-awards__title {
	font-size: 3.2rem;
	font-weight: 700;
	line-height: normal;
	color: #fff;
	text-transform: uppercase;
	font-family: RFDewiCondensed, sans-serif;
	max-width: 30rem;
}
.item-awards__title,
.item-awards__text {
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Old versions of Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.item-awards__text {
	margin-top: auto;
	font-size: 1.8rem;
	line-height: 1.33;
	color: #ffffff80;
	pointer-events: none;
}

.item-career {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 2.4rem 3.2rem;
	padding: 2rem 0 4rem;
	border-top: 1px solid #d9dbe0;
}

.item-career__content {
	display: flex;
	flex-flow: column nowrap;
	gap: 2.4rem;
}

.item-career__labels {
	display: flex;
	flex-flow: row wrap;
}

.item-career__labels_condition {
	gap: 3.2rem;
}

.item-career__labels_tag {
	grid-column: span 2;
	gap: 0.8rem;
}

.item-career__title {
	font-size: 3.2rem;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
	transition-property: color;
	font-family: RFDewiCondensed, sans-serif;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.item-career__title:hover {
	color: #07f;
}

.item-career__ui-button {
	grid-row: 1/3;
	grid-column: 2/3;
}

.item-feature {
	display: flex;
	flex-flow: column nowrap;
	gap: 1.6rem;
}

.item-feature__icon {
	width: 8rem;
}

.item-feature__icon img {
	width: 100%;
}

.item-feature__title {
	margin-top: 0.8rem;
	font-size: 4rem;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	font-family: RFDewiCondensed, sans-serif;
}

.item-feature__text {
	font-size: 1.8rem;
	line-height: 1.45;
	color: #020e1b80;
}

.item-center {
	display: flex;
	flex-flow: column nowrap;
	gap: 1.6rem;
	height: 100%;
	min-height: 22rem;
	padding: 3.2rem;
	background-color: #f1f3f6;
	border-radius: 0.8rem;
}

.item-center__description {
	font-size: 1.8rem;
	line-height: normal;
	color: #020e1b80;
}

.item-center__title {
	font-size: 2.4rem;
	font-weight: 600;
	line-height: normal;
	font-family: RFDewiCondensed, sans-serif;
}

.item-center__ui-button {
	margin-top: auto;
}

.item-document {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 4rem;
	padding-bottom: 2.4rem;
	border-bottom: 1px solid #d9dbe0;
}

.item-document__title {
	font-size: 2.4rem;
	font-weight: 600;
	line-height: normal;
	font-family: RFDewiCondensed, sans-serif;
}

.item-document__title:is(a) {
	transition-property: color;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.item-document__title:is(a):hover {
	color: #07f;
}

.item-document__description {
	margin-top: 1.6rem;
	font-size: 1.8rem;
	line-height: normal;
	color: #020e1b80;
}

.item-year-document {
	display: flex;
	flex-flow: row nowrap;
	gap: 6.4rem;
	overflow: hidden;
}

.item-year-document__list {
	flex: 0 1 49.1379310345%;
}

.item-year-document__list-item:not(:last-child) {
	margin-bottom: 2.4rem;
}

.item-year-document__title {
	flex: 1;
	align-self: flex-end;
	min-width: 0;
	font-size: clamp(80px, 53.73vw + -232px, 800px);
	font-weight: 700;
	line-height: 0.78;
	color: #f1f3f6;
	font-family: RFDewiCondensed, sans-serif;
}

.item-graph {
	--item-graph-padding-top: 3.2rem;
	--item-graph-padding-bottom: 6.4rem;
	--item-graph-border-color: #d9dbe0;
	display: grid;
	grid-template-columns: 15.2478448276% 1fr 15.2478448276%;
	gap: 3.2rem;
	align-items: flex-start;
	padding-top: var(--item-graph-padding-top);
	padding-bottom: var(--item-graph-padding-bottom);
	border-bottom: 1px solid var(--item-graph-border-color);
}

.item-graph__title {
	font-size: 3.2rem;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
	font-family: RFDewiCondensed, sans-serif;
}

.item-graph__subtitle {
	margin-top: 1.2rem;
	font-size: 1.8rem;
	line-height: 1.25;
	color: #020e1b80;
}

.item-graph__list-item:not(:last-child) {
	margin-bottom: 2.4rem;
}

.item-graph__list-item_legend {
	margin-top: 3.2rem;
}

.item-graph__data {
	display: flex;
	flex-flow: row nowrap;
	gap: 2rem;
	align-items: center;
}

.item-graph__data-label {
	flex: 0 0 5rem;
	font-size: 1.6rem;
	line-height: 1.25;
	color: #020e1b80;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.item-graph__data-lines {
	display: flex;
	flex: 1;
	flex-flow: row nowrap;
	gap: 1.2rem;
	align-items: center;
	min-width: 0;
}

.item-graph__data-line-progress {
	flex-shrink: 1;
	width: var(--item-graph-line-size);
	min-width: 0;
	height: 1.2rem;
	background-color: var(--item-graph-line-color, rgba(2, 14, 27, 0.1));
	border-radius: 0.2rem;
}

.item-graph__data-line-label {
	flex: 0 0 auto;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1;
	font-family: RFDewiCondensed, sans-serif;
}

.item-graph__data-line-label + .item-graph__data-line-progress {
	margin-right: 0.8rem;
}

.item-graph__legends {
	display: flex;
	flex-flow: row wrap;
	gap: 2.4rem;
}

.item-graph__legend {
	display: flex;
	flex-flow: row nowrap;
	gap: 0.8rem;
	align-items: center;
}

.item-graph__legend-icon {
	flex: 0 0 auto;
	width: 1.2rem;
	height: 1.2rem;
	background-color: var(--item-graph-legend-color, rgba(2, 14, 27, 0.1));
	border-radius: 0.2rem;
}

.item-graph__legend-label {
	font-size: 1.6rem;
	line-height: 1.25;
}

.item-graph__increase {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 0.8rem;
	align-items: flex-start;
}

.item-graph__increase-content {
	font-weight: 700;
	line-height: 0.9;
	text-align: right;
	font-family: RFDewiCondensed, sans-serif;
}

.item-graph__increase-icon {
	width: 3.2rem;
}

.item-graph__increase-icon img {
	width: 100%;
}

.item-graph__increase-title {
	font-size: 8rem;
	text-transform: uppercase;
}

.item-graph__increase-subtitle {
	margin-top: 1.2rem;
	font-size: 2.4rem;
	text-transform: lowercase;
}

.item-feature-inline {
	display: flex;
	flex-flow: row nowrap;
	gap: 6rem;
	align-items: flex-start;
	padding-top: 2.4rem;
	border-top: 1px solid #d9dbe0;
}

.item-feature-inline__content {
	flex: 1;
	min-width: 0;
}

.item-feature-inline__icon {
	flex: 0 0 auto;
	width: 8rem;
	height: 8rem;
}

.item-feature-inline__icon img {
	width: 100%;
}

.item-feature-inline__title {
	font-size: 8rem;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	font-family: RFDewiCondensed, sans-serif;
}

.item-feature-inline__text {
	margin-top: 3.2rem;
	font-size: 1.8rem;
	line-height: 1.45;
	color: #020e1b80;
}

.item-future-product {
	flex-flow: column nowrap;
	gap: 1.6rem;
	padding: 6.4rem;
	text-align: center;
	border: 1px solid #d9dbe0;
	border-radius: 0.8rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.item-future-product__icon img {
	max-height: 5rem;
}

.item-future-product__title {
	font-size: 4rem;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	font-family: RFDewiCondensed, sans-serif;
}

.item-future-product__subtitle {
	font-size: 1.8rem;
	line-height: 1.25;
}

.item-product {
	display: flex;
	min-height: 100%;
}

.item-product__wrapper {
	position: relative;
	z-index: 1;
	display: flex;
	flex-flow: column nowrap;
	gap: 4.2rem;
	align-items: center;
	width: 100%;
	padding: 9.6rem 4rem 3.4rem;
}

.item-product__wrapper:before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	pointer-events: none;
	content: '';
	background-color: #f1f3f6;
	border-radius: 1rem;
	transition-property: transform;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.item-product__photo {
	position: relative;
	width: 27.2rem;
	transition-property: transform;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.item-product__photo:before {
	display: block;
	padding-top: 164.7058823529%;
	content: '';
}

.item-product__title {
	font-size: 2rem;
	font-weight: 600;
	line-height: 1;
	text-align: center;
}

.item-product_type_slider .item-product__title {
	font-weight: 400;
}

.item-product:hover .item-product__wrapper:before {
	transform: scale(0.98026);
}

.item-product:hover .item-product__photo {
	transform: scale(1.0261);
}

.item-product-range {
	--item-product-range-photo-opacity: 0.5;
	--item-product-range-text-opacity: 0.3;
	--item-product-range-underline-scale: 0;
	position: relative;
	display: flex;
	flex-flow: column nowrap;
	gap: 2.4rem;
	align-items: center;
	min-height: 100%;
	padding: 1.5rem 1.25rem 4.4rem;
	width: 100%;
}

.item-product-range:before {
	position: absolute;
	inset: auto -1px 0;
	height: 2px;
	content: '';
	background-color: #07f;
	transition-property: transform;
	transform: scaleX(var(--item-product-range-underline-scale, 0));
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.item-product-range__photo {
	position: relative;
	width: 100%;
	opacity: var(--item-product-range-photo-opacity, 0.5);
	transition-property: opacity;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.item-product-range__photo:before {
	display: block;
	padding-top: 185%;
	content: '';
}

.item-product-range__title {
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	opacity: var(--item-product-range-text-opacity, 0.3);
	transition-property: opacity;
	font-family: RFDewiCondensed, sans-serif;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.item-product-range.is-current {
	--item-product-range-photo-opacity: 1;
	--item-product-range-text-opacity: 1;
	--item-product-range-underline-scale: 1;
}

.item-product-range:not(.is-current):hover {
	--item-product-range-photo-opacity: 0.7;
	--item-product-range-text-opacity: 0.7;
}

.item-stats__title {
	font-size: 24rem;
	font-weight: 700;
	line-height: 0.9;
	text-transform: uppercase;
	font-family: RFDewiCondensed, sans-serif;
}

.item-stats__title-postfix {
	margin-left: 0.8rem;
	font-size: 8rem;
	font-weight: 700;
	line-height: normal;
}

.item-stats__text {
	margin-top: 1.6rem;
	font-size: 2.4rem;
	line-height: normal;
	color: #020e1b80;
	letter-spacing: -0.01em;
}

.item-contacts {
	display: flex;
	flex-flow: column nowrap;
	gap: 1.2rem;
}

.item-contacts__label {
	font-size: 1.4rem;
	line-height: normal;
	color: #020e1b80;
}

.item-contacts__text {
	align-self: flex-start;
	font-size: 3.2rem;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
	font-family: RFDewiCondensed, sans-serif;
}

.item-contacts__text:is(a) {
	transition-property: color;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.item-contacts__text:is(a):hover {
	color: #07f;
}

.item-contacts__description {
	font-size: 1.8rem;
	line-height: normal;
}

.section-hero__wrapper {
	padding-top: 5.7rem;
	overflow: hidden;
	background-color: #061930;
}

.section-hero__title {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3rem;
	align-items: center;
	justify-content: space-between;
	font-weight: 400;
}

.section-hero__title-text_postfix,
.section-hero__title-text_prefix {
	font-size: 1.8rem;
	line-height: auto;
	color: #ffffff80;
}

.section-hero__preview {
	--core-video-border-radius: 0.8rem;
	--core-video-proportions: 43.1034482759%;
	position: relative;
	margin-top: 4.5rem;
	overflow: hidden;
}

.section-hero__core-slider {
	--core-slider-slide-size: calc(50% - 1.6rem);
	margin-top: 3.2rem;
}

.section-hero__core-slider .core-slider__viewport {
	border-radius: 0.8rem;
}

.section-hero__core-slider-pagination {
	width: min(100%, 122.6rem);
}

.section-hero__core-slider-controls {
	display: flex;
	flex-flow: row nowrap;
	gap: 4rem;
	align-items: center;
	justify-content: space-between;
	margin-top: 2rem;
}

.section-about {
	padding-top: 12rem;
	background-color: #061930;
}

.section-about__row_header {
	display: grid;
	grid-template-columns: 49.1379310345% 23.7607758621% 1fr;
	gap: 3.3rem;
	align-items: flex-start;
	padding-top: 3.2rem;
	border-top: 1px solid #334255;
}

.section-about__row_feature {
	display: grid;
	grid-template-columns: 74.6767241379% 1fr;
	gap: 3.3rem;
	align-items: baseline;
	margin-top: 8rem;
}

.section-about__row_video {
	position: relative;
	margin-top: 4rem;
	overflow: hidden;
}

.section-about__title {
	font-size: 3.2rem;
	font-weight: 700;
	line-height: normal;
	color: #fff;
	text-transform: uppercase;
	font-family: RFDewiCondensed, sans-serif;
}

.section-about__text {
	font-size: 1.8rem;
	line-height: 1.33;
	color: #fff;
}

.section-about__text > *:not(:last-child) {
	margin-bottom: 3.2rem;
}

.section-about__feature {
	display: grid;
	grid-template-columns: 1fr 31.8181818182%;
	gap: 3.3rem;
}

.section-about__feature-key {
	font-size: 24.8rem;
	font-weight: 700;
	line-height: normal;
	color: #fff;
	text-transform: uppercase;
	font-family: RFDewiCondensed, sans-serif;
}

.section-about__feature-value {
	font-size: 1.8rem;
	line-height: normal;
	color: #ffffff80;
}

.section-about__ui-button {
	justify-self: flex-end;
}

.section-about__video {
	--core-video-border-radius: 0.8rem;
	--core-video-proportions: 43.1034482759%;
}

.section-production {
	padding: 12rem 0;
	background-color: #061930;
}

.section-production__title {
	font-size: 3.2rem;
	font-weight: 700;
	line-height: auto;
	color: #fff;
	text-transform: uppercase;
	font-family: RFDewiCondensed, sans-serif;
}

.section-production__list {
	margin-top: 3.2rem;
	border-bottom: 1px solid #334255;
}

.section-production__ui-button {
	margin: 10rem auto 0;
}

.section-team {
	padding: 3.2rem 0 14rem;
	background-color: #fff;
}

.section-team__title {
	font-size: 3.2rem;
	font-weight: 700;
	line-height: auto;
	text-transform: uppercase;
	font-family: RFDewiCondensed, sans-serif;
}

.section-team__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3.2rem;
	margin-top: 3.2rem;
}

.section-team_offset_omit.section-team {
	padding-top: 0;
	padding-bottom: 0;
}

.section-posts {
	padding: 3.2rem 0 12rem;
	background-color: #fff;
}

.section-posts__part-breadcrumbs {
	margin-bottom: 1.6rem;
}

.section-posts__title {
	overflow: hidden;
	font-size: 12rem;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	font-family: RFDewiCondensed, sans-serif;
}

.section-posts__title-text {
	display: block;
}

.section-posts__list {
	display: flex;
	flex-flow: column nowrap;
	gap: 2.4rem;
	margin-top: 3.2rem;
}

.section-posts__ui-button {
	width: 100%;
	margin-top: 6rem;
}

.section-posts_type_page.section-posts {
	padding: var(--common-section-offset-from-header) 0 16rem;
}

.section-posts_type_page .section-posts__list {
	gap: 4.8rem;
	margin-top: 6rem;
}

.section-awards {
	padding: 3.2rem 0 16rem;
	overflow: hidden;
	background-color: #061930;
}

.section-awards__title {
	font-size: 27rem;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	text-transform: uppercase;
	font-family: RFDewiCondensed, sans-serif;
}

.section-awards__title-count {
	display: inline-block;
	margin-left: 1.6rem;
	font-size: 6.4rem;
	color: #ffffff80;
	vertical-align: top;
	transform: translateY(65%);
}

.section-awards__row {
	display: flex;
	flex-flow: row wrap;
	gap: 3.2rem;
	margin-top: 6rem;
}

.section-awards__tabs-buttons {
	display: flex;
	flex: 1;
	flex-flow: row nowrap;
	gap: 3.2rem;
	min-width: 0;
}

.section-awards__tabs-button {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: normal;
	color: #ffffff80;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	transition-property: color;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.section-awards__tabs-button.is-current,
.section-awards__tabs-button:hover {
	color: #fff;
}

.section-awards__core-slider {
	--core-slider-slide-size: 44rem;
	--core-slider-slide-spacing: 0;
	margin-top: 3.2rem;
}

.section-awards__core-slider-navigation {
	flex: 0 0 auto;
}



.section-awards__core-slider-slide:not(:first-child)
	.section-awards__item-awards {
	margin-left: -1px;
}

.section-awards__core-slider-slide:first-child .section-awards__item-awards {
	border-radius: 0.8rem 0 0 0.8rem;
}

.section-awards__core-slider-slide:last-child .section-awards__item-awards {
	border-radius: 0 0.8rem 0.8rem 0;
}

.section-career__wrapper_header {
	position: relative;
	z-index: 1;
	padding-top: calc(var(--part-header-height) + 3.2rem);
	padding-bottom: 3.2rem;
	overflow: hidden;
	background-color: #f1f3f6;
}

.section-career__wrapper_content {
	padding-top: 6.4rem;
	padding-bottom: 14rem;
}

.section-career__header {
	display: flex;
	flex-flow: column nowrap;
	justify-content: flex-end;
	min-height: 48rem;
}

.section-career__part-breadcrumbs {
	margin-bottom: 1.6rem;
}

.section-career__title {
	overflow: hidden;
	font-size: clamp(4rem, 14.93vw - 47px, 24rem);
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	font-family: RFDewiCondensed, sans-serif;
}

.section-career__title-text {
	display: block;
}

.section-career__image {
	position: absolute;
	right: 10rem;
	bottom: 0;
	z-index: -1;
	width: 41.6666666667%;
	pointer-events: none;
}

.section-career__image:before {
	display: block;
	padding-top: 61.0763454318%;
	content: '';
}

.section-career__background {
	position: absolute;
	top: calc(var(--part-header-height) + 1.6rem);
	right: -20rem;
	z-index: -2;
	width: 75.4166666667%;
	pointer-events: none;
}

.section-career__background:before {
	display: block;
	padding-top: 76.5883977901%;
	content: '';
}

.section-career__content-cells {
	display: grid;
	grid-template-columns: 32.3275862069% 49.1379310345%;
	gap: 4rem;
	align-items: flex-start;
	justify-content: space-between;
}

.section-career__text {
	font-size: 1.8rem;
	line-height: 1.45;
	color: #020e1b80;
}

.section-career__ui-select {
	margin-top: 4.8rem;
}

.section-career__list-item:not(.is-current) {
	display: none;
}

.section-career__ui-button {
	width: 100%;
	margin-top: 6.4rem;
}

.section-career-post__wrapper_header {
	--section-career-post-header-offset: 6.4rem;
	position: relative;
	z-index: 1;
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-end;
	min-height: 60rem;
	padding-top: calc(
		var(--part-header-height) + var(--section-career-post-header-offset)
	);
	padding-bottom: var(--section-career-post-header-offset);
	overflow: hidden;
	background-color: #061930;
}

.section-career-post__wrapper_content {
	padding-top: 3.2rem;
	padding-bottom: 8rem;
	background-color: #fff;
}

.section-career-post__header {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 3.2rem;
	align-items: flex-end;
	width: 100%;
}

.section-career-post__header-cell_left {
	display: flex;
	flex-flow: column nowrap;
	gap: 3.2rem;
}

.section-career-post__labels {
	display: flex;
	flex-flow: row wrap;
}

.section-career-post__labels_tag {
	gap: 0.8rem;
	margin-top: 2.8rem;
}

.section-career-post__labels_condition {
	gap: 3.2rem;
}

.section-career-post__labels-item {
	flex: 0 0 auto;
}

.section-career-post__title {
	font-size: 6.4rem;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	text-transform: uppercase;
	font-family: RFDewiCondensed, sans-serif;
}

.section-career-post__background {
	position: absolute;
	top: calc(var(--part-header-height) + 1.6rem);
	right: -50rem;
	z-index: -2;
	width: 75.4166666667%;
	pointer-events: none;
}

.section-career-post__background:before {
	display: block;
	padding-top: 76.5883977901%;
	content: '';
}

.section-career-post__content-item {
	display: grid;
	grid-template-columns: 1fr 49.1379310345%;
	gap: 3.2rem;
}

.section-career-post__content-item:not(:last-child) {
	padding-bottom: 8rem;
	border-bottom: 1px solid #d9dbe0;
}

.section-career-post__content-item:not(:first-child) {
	padding-top: 3.2rem;
}

.section-career-post__content-title {
	font-size: 3.2rem;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
	font-family: RFDewiCondensed, sans-serif;
}

.section-career-post__content-description {
	font-size: 1.8rem;
	line-height: 1.45;
}

.section-career-post__content-description ul li {
	padding-left: 1.6rem;
}

.section-career-post__content-description ul li:before {
	top: 1.1rem;
	width: 0.6rem;
	height: 0.6rem;
}

.section-career-post__content-description li:not(:last-child) {
	margin-bottom: 2rem;
}

.section-recall {
	--section-recall-offset-bottom: 16rem;
	padding: calc(var(--section-recall-offset-bottom) / 2) 0
		var(--section-recall-offset-bottom);
	background-color: #fff;
}

.section-recall__title {
	font-size: 12rem;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	font-family: RFDewiCondensed, sans-serif;
}

.section-recall__content {
	display: grid;
	grid-template-columns: 1fr 49.1379310345%;
	gap: 4.8rem;
	margin-top: 12rem;
}

.section-recall__text {
	font-size: 3.2rem;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
	font-family: RFDewiCondensed, sans-serif;
}

.section-recall__error {
	margin-bottom: 4rem;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: normal;
	color: #ff4848;
	text-transform: uppercase;
	font-family: RFDewiCondensed, sans-serif;
}

.section-recall__fields {
	display: flex;
	flex-flow: row wrap;
	gap: 4rem 3.2rem;
	-webkit-user-select: none;
	user-select: none;
}

.section-recall__fields-item {
	flex: 1 1 calc(50% - 1.6rem);
}

.section-recall__fields-item_checkbox {
	flex-basis: 100%;
}

.section-recall__ui-button {
	margin-top: 3.2rem;
}

.section-recall__content.is-form-succeed .section-recall__text_subtitle {
	display: none;
}

.section-recall__content.is-form-succeed .section-recall__text_success {
	display: block;
}

.section-recall__content.is-form-succeed .section-recall__form {
	display: none;
}

.section-error {
	display: flex;
	flex: 1;
	flex-flow: column nowrap;
	min-height: 0;
}

.section-error__wrapper {
	margin: auto;
}

.section-error__title {
	font-size: 6.4rem;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	font-family: RFDewiCondensed, sans-serif;
}

.section-error__title_color_gray {
	color: #020e1b80;
}

.section-error__buttons-list {
	display: flex;
	flex-flow: row wrap;
	gap: 2rem;
	justify-content: center;
	margin-top: 8rem;
}

.section-investors__wrapper_header {
	--section-investors-header-offset-vertical: 6rem;
	position: relative;
	z-index: 1;
	display: flex;
	flex-flow: column nowrap;
	gap: 1.6rem;
	justify-content: flex-end;
	min-height: 66rem;
	padding-top: var(--section-investors-header-offset-vertical, 6rem);
	padding-bottom: var(--section-investors-header-offset-vertical, 6rem);
	background-color: #061930;
}

.section-investors__title {
	overflow: hidden;
	font-size: 24rem;
	font-weight: 700;
	line-height: 0.9;
	color: #fff;
	text-transform: uppercase;
	font-family: RFDewiCondensed, sans-serif;
}

.section-investors__title-text {
	display: block;
}

.section-investors__tabs-buttons {
	display: flex;
	flex-flow: row wrap;
	gap: 1.2rem;
}

.section-investors__background {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	pointer-events: none;
}

.section-investors__list {
	padding-top: 6.4rem;
	padding-bottom: 16rem;
	background-color: #fff;
}

.section-investors__list-item {
	transition-property: opacity;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.section-investors__list-item:not(.is-shown) {
	display: none;
}

.section-investors__list-item.is-shown:not(.is-current) {
	pointer-events: none;
	opacity: 0;
}

.section-features__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6rem 3.2rem;
	margin-top: 6rem;
}

.section-information__wrapper {
	display: grid;
	grid-template-columns: 1fr 49.1379310345%;
	gap: 7.2rem;
	align-items: flex-start;
}

.section-information__centers {
	display: flex;
	flex-flow: column nowrap;
	gap: 1.2rem;
	margin-top: 4rem;
}

.section-information__documents-item:not(:last-child) {
	margin-bottom: 2.4rem;
}

.section-year-documents__list {
	margin-top: 4rem;
}

.section-graph__list-item:first-child .section-graph__item-graph {
	--item-graph-padding-top: 0;
}

.section-graph__list-item:last-child .section-graph__item-graph {
	--item-graph-padding-bottom: 0;
	--item-graph-border-color: transparent;
}

.section-features-with-video {
	padding-bottom: 8rem;
}

.section-features-with-video__wrapper {
	display: flex;
	flex-flow: row nowrap;
	gap: 5.6rem;
	align-items: flex-start;
	justify-content: space-between;
}

.section-features-with-video__cell {
	flex-basis: auto;
}

.section-features-with-video__cell_left {
	width: 40.6788793103%;
}

.section-features-with-video__cell_right {
	width: 49.1379310345%;
}

.section-features-with-video__core-video {
	--core-video-border-radius: 0.8rem;
	--core-video-proportions: 59.0728476821%;
}

.section-features-with-video__title {
	font-size: 2.2rem;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
	font-family: RFDewiCondensed, sans-serif;
}

.section-features-with-video__list {
	margin-top: 3.2rem;
}

.section-features-with-video__list-item:not(:last-child) {
	margin-bottom: 6rem;
}

.section-description {
	padding: 8rem 0;
}

.section-description__wrapper {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 49.1379310345%;
	gap: 6.4rem;
	align-items: flex-start;
	padding-top: 3.2rem;
}

.section-description__wrapper:before {
	position: absolute;
	inset: 0 var(--wrapper-offset) auto;
	height: 1px;
	content: '';
	background-color: #d9dbe0;
}

.section-description__content {
	display: flex;
	flex-flow: column nowrap;
	gap: 6.4rem;
}

.section-description__text {
	display: flex;
	flex-flow: column nowrap;
	gap: 3rem;
	font-size: 1.8rem;
	line-height: 1.45;
	color: #020e1b80;
}

.section-categories {
	padding: 8rem 0 6rem;
	overflow: hidden;
}

.section-categories__list {
	display: flex;
	flex-flow: row wrap;
	gap: 3.2rem;
	margin-top: 3.2rem;
}

.section-categories__list-item {
	flex: 0 0 calc(25% - 2.4rem);
}

.section-categories__item-category {
	--item-category-offset: 3.2rem 3.2rem 6rem;
	--item-category-spacing: 1.1rem;
}

.section-future-products {
	padding-top: 6rem;
}

.section-future-products__list {
	display: flex;
	flex-flow: row nowrap;
	gap: 3.2rem;
	margin-top: 3.2rem;
}

.section-future-products__list-item {
	position: relative;
	flex: 1 1 calc(33% - 2.1333333333rem);
}

.section-future-products__list-item:not(:last-child):before {
	position: absolute;
	top: 50%;
	right: -6.6rem;
	z-index: 1;
	width: 10rem;
	height: 10rem;
	content: '';
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='49.5' fill='white' stroke='%23D9DBE0'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M48.575 58.6L56.175 51L40 51L40 49L53.1563 49L56.175 49L59 49L60 50L50 60L48.575 58.6ZM57 47L50 40L48.575 41.4L54.175 47L57 47Z' fill='%230077FF'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transform: translateY(-50%);
}

.section-post {
	padding: var(--common-section-offset-from-header) 0 16rem;
}

.section-post__row {
	display: grid;
	grid-template-columns: 1fr 66.0560344828% 1fr;
	gap: 6.4rem;
	align-items: flex-start;
}

.section-post__row_content {
	padding-top: 8rem;
	margin-top: 4rem;
	border-top: 1px solid rgba(2, 14, 27, 0.1);
}

.section-post__part-breadcrumbs {
	margin-bottom: 1.6rem;
}

.section-post__title {
	font-size: 6.4rem;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	font-family: RFDewiCondensed, sans-serif;
}

.section-product {
	padding: 6rem 0 8rem;
}

.section-product__wrapper {
	display: flex;
	flex-flow: row nowrap;
	gap: 4.8rem;
	align-items: flex-start;
	justify-content: space-between;
}

.section-product__cell {
	flex-basis: auto;
}

.section-product__cell_left {
	display: grid;
	grid-template-columns: 13.2450331126% 1fr;
	gap: 5.7rem;
	align-items: flex-end;
	width: 40.6788793103%;
}

.section-product__cell_right {
	display: flex;
	flex-flow: column nowrap;
	gap: 6rem;
	width: 49.1379310345%;
}

.section-product__core-slider-pagination {
	justify-content: center;
	margin-top: 3.2rem;
}

.section-product__core-slider_thumb {
	--core-slider-slide-spacing: 0.8rem;
	--core-slider-viewport-offset-outer: 4.8rem 0;
	--core-slider-container-size: 56.8rem;
	--core-slider-slide-size: 15.3rem;
}

.section-product__core-slider-slide_thumb {
	padding: 0.8rem 0;
	border-radius: 0.8rem;
	transition-property: background-color;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.section-product__core-slider-slide_thumb:not(.is-selected) {
	cursor: pointer;
}

.section-product__core-slider-slide_thumb.is-selected {
	background-color: #f1f3f6;
}

.section-product__core-photo_slide {
	position: relative;
}

.section-product__core-photo_slide_thumb:before {
	display: block;
	padding-top: 137%;
	content: '';
}

.section-product__core-photo_slide_preview:before {
	display: block;
	padding-top: 107.0234113712%;
	content: '';
}

.section-product__title {
	overflow: hidden;
	font-size: 12rem;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	font-family: RFDewiCondensed, sans-serif;
}

.section-product__title-text {
	display: block;
}

.section-product__description {
	font-size: 2.4rem;
	line-height: 1.45;
	letter-spacing: -0.01em;
}

.section-product__features-item {
	display: flex;
	flex-flow: row wrap;
	gap: 0.6rem;
}

.section-product__features-item:not(:last-child) {
	margin-bottom: 1.6rem;
}

.section-product__features-item-text {
	font-size: 1.8rem;
	line-height: 1.45;
}

.section-product__features-item-text_key {
	color: #020e1b80;
}

.section-products-slider {
	padding: 8rem 0 16rem;
	overflow: hidden;
}

.section-products-slider__core-slider {
	--core-slider-slide-size: 23.7068965517%;
	margin-top: 3.2rem;
}

.section-products-slider__core-slider-pagination {
	margin-top: 2.4rem;
}

.section-product-range {
	padding: 6.4rem 0 11rem;
	overflow: hidden;
	background-color: #f1f3f6;
}

.section-product-range__core-slider {
	--core-slider-slide-size: 19rem;
	--core-slider-slide-spacing: 0.8rem;
	margin-top: 3.2rem;
	border-bottom: 1px solid #d9dbe0;
}

.section-product-range__list-content-item {
	transition-property: opacity;
	transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1);
	transition-duration: 0.5s;
}

.section-product-range__list-content-item:not(.is-shown) {
	display: none;
}

.section-product-range__list-content-item.is-shown:not(.is-current) {
	pointer-events: none;
	opacity: 0;
}

.section-product-range__content {
	display: grid;
	grid-template-columns: 40.6788793103% 49.1379310345%;
	gap: 4rem;
	align-items: flex-start;
	justify-content: space-between;
	margin-top: 6rem;
}

.section-product-range__caption {
	font-size: 6.4rem;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	font-family: RFDewiCondensed, sans-serif;
}

.section-product-range__description {
	font-size: 1.8rem;
	line-height: 1.35;
	letter-spacing: -0.01em;
}

.section-products {
	padding: var(--common-section-offset-from-header) 0 16rem;
}

.section-products__part-breadcrumbs {
	margin-bottom: 1.6rem;
}

.section-products__title {
	overflow: hidden;
	font-size: 12rem;
	line-height: 1;
	text-transform: uppercase;
	font-family: RFDewiCondensed, sans-serif;
}

.section-products__title-text {
	display: block;
}

.section-products__tabs-buttons {
	display: flex;
	flex-flow: row wrap;
	gap: 1.2rem;
	margin-top: 8rem;
}

.section-products__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3.2rem;
	margin-top: 3.2rem;
}

.section-hero-about {
	background-color: #061930;
}

.section-hero-about__wrapper {
	padding-top: 10rem;
	padding-bottom: 6rem;
}

.section-hero-about__part-breadcrumbs {
	margin-bottom: 1.6rem;
}

.section-hero-about__title {
	overflow: hidden;
	font-size: 24rem;
	font-weight: 700;
	line-height: 0.9;
	color: #fff;
	text-transform: uppercase;
	font-family: RFDewiCondensed, sans-serif;
}

.section-hero-about__title-text {
	display: block;
}

.section-hero-about__preview {
	position: relative;
	margin-top: 4rem;
	overflow: hidden;
	border-radius: 0.8rem;
}

.section-hero-about__preview:before {
	display: block;
	padding-top: 43.1034482759%;
	content: '';
}

.section-hero-about__caption {
	width: min(100%, 138.4rem);
	margin-top: 6rem;
	font-size: 8rem;
	font-weight: 700;
	line-height: normal;
	color: #fff;
	text-transform: uppercase;
	font-family: RFDewiCondensed, sans-serif;
}

.section-hero-about__features {
	width: min(100%, 91.2rem);
	padding-top: 3.2rem;
	margin-top: 12rem;
	margin-left: auto;
	border-top: 1px solid #334255;
}

.section-hero-about__features-item:not(:last-child) {
	margin-bottom: 6rem;
}

.section-hero-about__feature {
	color: #fff;
}

.section-hero-about__feature-title {
	font-size: 3.2rem;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
	font-family: RFDewiCondensed, sans-serif;
}

.section-hero-about__feature-text {
	margin-top: 2.4rem;
	font-size: 2.4rem;
	line-height: 1.45;
	letter-spacing: -0.01em;
}

.section-history {
	padding-bottom: 12rem;
	background-color: #061930;
}

.section-history__wrapper {
	padding-top: 6rem;
}

.section-history__title {
	font-size: 3.2rem;
	font-weight: 700;
	line-height: normal;
	color: #fff;
	text-transform: uppercase;
	font-family: RFDewiCondensed, sans-serif;
}

.section-history__list {
	gap: 4rem 3.2rem;
	padding-top: 3.2rem;
	border-top: 1px solid #334255;
}

.section-history__item-preview {
	position: relative;
	margin-bottom: 2.4rem;
	overflow: hidden;
	border-radius: 0.8rem;
}

.section-history__item-preview:before {
	display: block;
	padding-top: 63.6363636364%;
	content: '';
}

.section-history__item-text {
	font-size: 1.8rem;
	line-height: 1.33;
	color: #fff;
}

.section-history__item-text > *:not(:last-child) {
	margin-bottom: 3rem;
}

.section-stats {
	padding: 6rem 0 16rem;
	background-color: #fff;
}

.section-stats__list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8rem;
	margin-top: 6rem;
}

.section-contacts {
	padding: var(--common-section-offset-from-header) 0 8rem;
}

.section-contacts__content {
	display: grid;
	grid-template-columns: 1fr 49.1379310345%;
	gap: 4.8rem;
}

.section-contacts__part-breadcrumbs {
	margin-bottom: 1.6rem;
}

.section-contacts__title {
	overflow: hidden;
	font-size: 12rem;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	font-family: RFDewiCondensed, sans-serif;
}

.section-contacts__title-text {
	display: block;
}

.section-contacts__list-item:not(:last-child) {
	margin-bottom: 4rem;
}

.section-contacts__part-map {
	margin-top: 10rem;
}

.modal-age-confirm {
	display: flex;
	flex-flow: column nowrap;
	width: 100%;
	max-width: calc(100% - var(--noscroll-target-scrollbar-width));
	height: 100%;
	max-height: 100%;
	overflow: hidden;
	background-color: #061930;
}

.modal-age-confirm__wrapper {
	display: flex;
	flex-flow: column nowrap;
	gap: 3.2rem;
	align-items: center;
	padding: var(--wrapper-offset);
	margin: auto;
	text-align: center;
	scrollbar-color: #2b3e55 transparent;
	scrollbar-width: 4px;
	overflow: hidden auto;
	-webkit-overflow-scrolling: touch;
}

.modal-age-confirm__wrapper::-webkit-scrollbar {
	display: block;
	width: 4px;
}

.modal-age-confirm__wrapper::-webkit-scrollbar-track {
	background: transparent;
	border-radius: 100px;
}

.modal-age-confirm__wrapper::-webkit-scrollbar-thumb {
	background: #2b3e55;
	border-radius: 100px;
}

.modal-age-confirm__title {
	margin-top: 4.8rem;
	font-size: 6.4rem;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	text-transform: uppercase;
	font-family: RFDewiCondensed, sans-serif;
}

.modal-age-confirm__title_accent {
	color: #ffffff80;
}

.modal-age-confirm__text {
	margin-top: 4.8rem;
	font-size: 2.4rem;
	line-height: 1.45;
	color: #fff;
	letter-spacing: -0.01em;
}

.modal-age-confirm__buttons-list {
	display: flex;
	flex-flow: row wrap;
	gap: 2rem;
	width: 100%;
	max-width: min(70rem, 100%);
	margin: 0 auto;
}

.modal-age-confirm__buttons-list-item {
	flex: 1 1 auto;
	min-width: 0;
}

.modal-age-confirm__ui-button {
	width: 100%;
}

@media only screen and (max-width: 1440px) {
	:root {
		--root-font-size: 0.5729166667vw;
	}

	.item-production {
		--item-production-content-size: 120rem;
	}

	.item-production__trigger {
		font-size: 6.8rem;
	}

	.item-graph__increase-title,
	.item-feature-inline__title {
		font-size: 7rem;
	}

	.item-stats__title {
		font-size: 20.2rem;
	}

	.item-stats__title-postfix {
		font-size: 6.75rem;
	}

	.section-about__feature-key {
		font-size: 20.8rem;
	}

	.section-posts__title {
		font-size: 10.4rem;
	}

	.section-awards__title {
		font-size: 22.6rem;
	}

	.section-awards__title-count {
		transform: translateY(50%);
	}

	.section-investors__title {
		font-size: 20rem;
	}

	.section-product__title {
		font-size: 10rem;
	}

	.section-hero-about__title {
		font-size: 20rem;
	}
}

@media only screen and (max-width: 1280px) {
	:root {
		--root-font-size: 0.625vw;
	}

	.item-production {
		--item-production-content-size: 100rem;
	}

	.item-production__trigger {
		font-size: 5.6rem;
	}

	.item-graph__increase-title,
	.item-feature-inline__title {
		font-size: 6rem;
	}

	.item-stats__title {
		font-size: 16.4rem;
	}

	.item-stats__title-postfix {
		font-size: 5.5rem;
	}

	.section-about__feature-key {
		font-size: 16.8rem;
	}

	.section-posts__title {
		font-size: 8.8rem;
	}

	.section-awards__title {
		font-size: 18.2rem;
	}

	.section-awards__title-count {
		transform: translateY(35%);
	}

	.section-investors__title {
		font-size: 16rem;
	}

	.section-product__title {
		font-size: 8rem;
	}

	.section-hero-about__title {
		font-size: 16rem;
	}
}

@media only screen and (max-width: 1120px) {
	:root {
		--root-font-size: 50%;
		--wrapper-offset: 2.2rem;
		--common-section-offset-from-header: 9rem;
		--part-header-row-top-height: 8.25rem;
		--part-header-row-bottom-height: 5.5rem;
	}

	.content {
		font-size: 1.9rem;
	}

	.content > *:not(:last-child) {
		margin-bottom: 5.4rem;
	}

	.content h2 {
		font-size: 3.1rem;
	}

	.content h3 {
		font-size: 2.4rem;
	}

	.content h4,
	.content h5,
	.content h6 {
		font-size: 1.8rem;
	}

	.content ul li:before {
		top: 1.3rem;
		width: 0.7rem;
		height: 0.7rem;
	}

	.content li:not(:last-child) {
		margin-bottom: 1rem;
	}

	.content ol {
		padding-left: 2.2rem;
	}

	.content blockquote {
		gap: 2.6rem;
		padding: 3rem;
	}

	.content h1:not(:last-child),
	.content h2:not(:last-child),
	.content h3:not(:last-child),
	.content h4:not(:last-child),
	.content h5:not(:last-child),
	.content h6:not(:last-child) {
		margin-bottom: 2.7rem;
	}

	.core-video__button_play {
		--core-video-icon-width: 4.4rem;
		width: 16rem;
		height: 16rem;
	}

	.core-video__button_mute {
		inset: auto 1.6rem 1.6rem auto;
	}

	.core-video__description {
		margin-top: 1.4rem;
		font-size: 1.4rem;
	}

	.core-slider-pagination {
		gap: 1.2rem;
	}

	.core-slider-pagination__bullet.is-current
		.core-slider-pagination__trigger {
		width: 3rem;
	}

	.core-slider {
		--core-slider-slide-spacing: 2.2rem;
	}

	.ui-button:not(
			[class*='ui-button_offset_'],
			[class*='ui-button_circle']
		)[class*='ui-button_type'] {
		padding: 1.9rem 2.8rem;
	}

	.ui-button:not(
			[class*='ui-button_offset_'],
			[class*='ui-button_circle']
		)[class*='ui-button_type'][class*='ui-button_type_tabs'] {
		padding: 1.6rem 2.4rem;
	}

	.ui-button_circle:not([class*='ui-button_circle_size']) {
		--ui-button-size: 5.4rem;
	}

	.ui-button_circle_size_240 {
		--ui-button-size: 16rem;
		--ui-button-icon-size: 4.4rem;
	}

	.ui-select__trigger {
		gap: 2.2rem;
		padding: 2rem 2.2rem;
	}

	.ui-select__trigger-text {
		font-size: 1.3rem;
	}

	.ui-select__trigger-arrow {
		width: 1.3rem;
		height: 1.3rem;
	}

	.ui-select__error {
		margin-top: 0.6rem;
		font-size: 1.2rem;
		line-height: 1.35;
	}

	.ui-select__list {
		--ui-select-list-offset-vertical: 1.4rem;
	}

	.ui-select__list-wrapper {
		border-radius: 1.6rem;
	}

	.ui-select__option {
		padding-right: 2.2rem;
		padding-left: 2.2rem;
		font-size: 1.3rem;
	}

	.ui-label {
		gap: 0.5rem;
	}

	.ui-label__icon {
		width: 2rem;
	}

	.ui-label_text_size_16 .ui-label__text {
		font-size: 1.4rem;
	}

	.ui-label:not([class*='ui-label_text-size']) .ui-label__text {
		font-size: 1.5rem;
	}

	.ui-input {
		--ui-input-font-size: clamp(16px, 2.3rem, 2.3rem);
		--ui-input-label-offset: 0.9rem;
	}

	.ui-input__text {
		margin-top: 1rem;
		font-size: 1.3rem;
	}

	.ui-checkbox__content {
		gap: 0.6rem;
	}

	.ui-checkbox__text {
		font-size: 1.5rem;
	}

	.part-logo__icon {
		width: 11rem;
	}

	.part-header__wrapper {
		--part-header-row-elements-offset: 4rem;
	}

	.part-header__wrapper_top {
		padding-top: 1.4rem;
		padding-bottom: 1.4rem;
	}

	.part-header__wrapper_bottom {
		padding-top: 1.75rem;
		padding-bottom: 1.75rem;
	}

	.part-header-menu__wrapper {
		flex-wrap: wrap;
		align-content: flex-start;
	}

	.part-header-menu__nav {
		flex-basis: 100%;
	}

	.part-header-menu__nav-list {
		gap: 1.6rem;
	}

	.part-header-menu__nav-link {
		font-size: 4.6rem;
	}

	.part-header-menu__contacts {
		flex-basis: 100%;
		flex-flow: row wrap;
		gap: 5.9rem;
	}

	.part-header-menu__contact-label {
		font-size: 1.6rem;
	}

	.part-header-menu__contact-link {
		font-size: 1.25rem;
	}

	.part-header-menu__background {
		bottom: -1.8rem;
		width: 90.9rem;
		max-width: unset;
	}

	.part-header-menu__background:before {
		padding-top: 76.6776677668%;
	}

	.part-footer {
		padding: 4.6rem 0 3.5rem;
	}

	.part-footer__row_text {
		padding-top: 2.2rem;
		margin-top: 6.5rem;
	}

	.part-footer__nav-link,
	.part-footer__address {
		font-size: 1.6rem;
	}

	.part-footer__contacts-link {
		font-size: 3.1rem;
	}

	.part-footer__text {
		gap: 2.7rem;
	}

	.part-footer__text-item {
		font-size: 1.4rem;
	}

	.part-section-header {
		gap: 2.4rem;
	}

	.part-section-header__title {
		font-size: 2.5rem;
	}

	.part-socials__label {
		font-size: 1.6rem;
	}

	.part-socials__link {
		width: 5.6rem;
		height: 5.6rem;
	}

	.part-socials__link-icon {
		width: 2.2rem;
		height: 2.2rem;
	}

	.part-breadcrumbs {
		display: none;
	}

	.part-map:before {
		padding-top: 50%;
	}

	.part-page-loader {
		padding-top: calc(var(--part-header-height) + 9rem);
	}

	.item-category {
		--item-category-offset: 2.6rem;
		--item-category-spacing: 2.6em;
	}

	.item-category__photo {
		width: min(100%, 16rem);
	}

	.item-category__photo:before {
		padding-top: 200%;
	}

	.item-category_with-button {
		padding-bottom: 6.7rem;
	}

	.item-category_photo_size_194 .item-category__photo {
		width: min(100%, 17.8rem);
	}

	.item-production {
		--item-production-content-size: calc(100% - 12rem);
	}

	.item-production__trigger {
		gap: 2rem;
		padding: 2rem 0;
		font-size: 4.4rem;
	}

	.item-production__trigger-count {
		min-width: 4rem;
	}

	.item-production__trigger-title {
		flex: 1;
		min-width: 0;
	}

	.item-production__trigger-preview {
		display: none;
	}

	.item-production__trigger-icon {
		width: 5.2rem;
		height: 5.2rem;
	}

	.item-production__content {
		padding: 0.4rem 0 2.8rem;
	}

	.item-team__post {
		margin-top: 1.6rem;
		font-size: 1.5rem;
	}

	.item-team__name {
		margin-top: 1.4rem;
		font-size: 4.6rem;
	}

	.item-posts {
		padding: 2.2rem 0;
	}

	.item-posts__wrapper {
		grid-template-columns: 1fr 50% auto;
		gap: 5.5rem;
	}

	.item-posts__date {
		font-size: 1.5rem;
	}

	.item-posts__title {
		font-size: 3.1rem;
	}

	.item-posts__text {
		margin-top: 1.8rem;
		font-size: 1.6rem;
	}

	.item-awards {
		gap: 2rem;
		min-height: 38rem;
		padding: 2.6rem;
	}

	.item-awards__title {
		font-size: 2.7rem;
	}

	.item-career__labels_condition {
		gap: 2.4rem;
	}

	.item-career__title {
		font-size: 2.7rem;
	}

	.item-feature {
		gap: 1.4rem;
	}

	.item-feature__icon {
		width: 6.2rem;
	}

	.item-feature__title {
		margin-top: 0.6rem;
		font-size: 3rem;
	}

	.item-feature__text {
		font-size: 1.6rem;
	}

	.item-center {
		min-height: 21rem;
		padding: 2.6rem;
	}

	.item-center__description {
		font-size: 1.6rem;
	}

	.item-center__title {
		font-size: 2rem;
	}

	.item-document {
		gap: 3rem;
		padding-bottom: 2.2rem;
	}

	.item-document__title {
		font-size: 2rem;
	}

	.item-document__description {
		margin-top: 1.2rem;
		font-size: 1.6rem;
	}

	.item-year-document {
		gap: 4.8rem;
	}

	.item-graph {
		--item-graph-padding-top: 2.6rem;
		--item-graph-padding-bottom: 5.6rem;
	}

	.item-graph__title {
		font-size: 2rem;
		line-height: 1.2;
	}

	.item-graph__subtitle {
		margin-top: 0.8rem;
		font-size: 1.6rem;
	}

	.item-graph__list-item:not(:last-child) {
		margin-bottom: 2rem;
	}

	.item-graph__list-item_legend {
		margin-top: 2.6rem;
	}

	.item-graph__data-label {
		font-size: 1.4rem;
	}

	.item-graph__data-line-progress {
		height: 0.9rem;
	}

	.item-graph__data-line-label {
		font-size: 1.8rem;
	}

	.item-graph__legends {
		gap: 1.9rem;
	}

	.item-graph__legend {
		gap: 0.7rem;
	}

	.item-graph__legend-icon {
		width: 1rem;
		height: 1rem;
	}

	.item-graph__legend-label {
		font-size: 1.4rem;
	}

	.item-graph__increase {
		gap: 0.6rem;
	}

	.item-graph__increase-icon {
		width: 2.5rem;
	}

	.item-graph__increase-title {
		font-size: 5rem;
	}

	.item-graph__increase-subtitle {
		margin-top: 0.9rem;
		font-size: 2rem;
	}

	.item-feature-inline {
		gap: 4rem;
		padding-top: 2.2rem;
	}

	.item-feature-inline__icon {
		width: 6rem;
		height: 6rem;
	}

	.item-feature-inline__title {
		font-size: 5rem;
	}

	.item-feature-inline__text {
		margin-top: 2.4rem;
		font-size: 1.6rem;
	}

	.item-future-product {
		gap: 1.2rem;
		padding: 4.4rem;
	}

	.item-future-product__title {
		margin-top: 1.4rem;
		font-size: 3.1rem;
	}

	.item-future-product__subtitle {
		font-size: 1.6rem;
	}

	.item-product__wrapper {
		gap: 3.7rem;
		padding: 6.8rem 3rem 2.9rem;
	}

	.item-product__photo {
		width: 23.5rem;
	}

	.item-product__title {
		font-size: 1.75rem;
	}

	.item-product-range {
		padding: 2.6rem 1rem 3.6rem;
	}

	.item-product-range__photo {
		width: 90%;
	}

	.item-stats__title {
		font-size: 12.6rem;
	}

	.item-stats__title-postfix {
		margin-left: 0.6rem;
		font-size: 4.25rem;
	}

	.item-stats__text {
		margin-top: 1.2rem;
		font-size: 1.9rem;
	}

	.item-contacts__label {
		font-size: 1.3rem;
	}

	.item-contacts__text {
		font-size: 2.6rem;
	}

	.item-contacts__description {
		font-size: 1.6rem;
	}

	.section-hero__wrapper {
		padding-top: 4.8rem;
	}

	.section-hero__title {
		gap: 2.2rem;
	}

	.section-hero__title-text_postfix,
	.section-hero__title-text_prefix {
		font-size: 1.5rem;
	}

	.section-hero__preview {
		margin-top: 3.75rem;
	}

	.section-hero__core-slider {
		margin-top: 2.2rem;
	}

	.section-hero__core-slider-navigation {
		display: none;
	}

	.section-hero__core-slider-controls {
		align-items: flex-start;
	}

	.section-about {
		padding-top: 10rem;
	}

	.section-about__row_header {
		grid-template-columns: 100%;
		padding-top: 2.3rem;
	}

	.section-about__row_feature {
		grid-template-columns: 1fr auto;
		align-items: flex-end;
		margin-top: 7.6rem;
	}

	.section-about__row_video {
		margin-top: 3.6rem;
	}

	.section-about__title {
		font-size: 2.5rem;
	}

	.section-about__text > *:not(:last-child) {
		margin-bottom: 2.4rem;
	}

	.section-about__feature {
		grid-template-columns: 100%;
		gap: 1.6rem;
	}

	.section-about__feature-key {
		font-size: 12.8rem;
	}

	.section-about__feature-value {
		font-size: 1.5rem;
	}

	.section-production {
		padding: 9.5rem 0;
	}

	.section-production__title {
		font-size: 2.5rem;
	}

	.section-production__list {
		margin-top: 2.4rem;
	}

	.section-production__ui-button {
		margin-top: 7rem;
	}

	.section-team {
		padding: 2.6rem 0 12rem;
	}

	.section-team__title {
		font-size: 2.4rem;
	}

	.section-team__list {
		grid-template-columns: repeat(3, 1fr);
		margin-top: 2.6rem;
	}

	.section-posts {
		padding: 2.6rem 0 9.6rem;
	}

	.section-posts__title {
		font-size: 7.2rem;
	}

	.section-posts__list {
		gap: 2.2rem;
		margin-top: 2.4rem;
	}

	.section-posts_type_page.section-posts {
		padding-bottom: 13rem;
	}

	.section-posts_type_page .section-posts__list {
		gap: 4.4rem;
		margin-top: 5rem;
	}

	.section-awards {
		padding: 2.6rem 0 13rem;
	}

	.section-awards__title {
		font-size: 13.8rem;
	}

	.section-awards__title-count {
		margin-left: 1.1rem;
		font-size: 4.3rem;
	}

	.section-awards__row {
		gap: 2.4rem;
		margin-top: 4.6rem;
	}

	.section-awards__tabs-buttons {
		gap: 2.8rem;
	}

	.section-career__wrapper_header {
		padding-top: calc(var(--part-header-height) + 2.8rem);
		padding-bottom: 2.8rem;
	}

	.section-career__wrapper_content {
		padding-top: 5.2rem;
		padding-bottom: 10.6rem;
	}

	.section-career__header {
		min-height: 33rem;
	}

	.section-career__image {
		right: 5.5rem;
		width: 40rem;
	}

	.section-career__content-cells {
		grid-template-columns: 35% 55%;
	}

	.section-career__text {
		font-size: 1.6rem;
	}

	.section-career__ui-select {
		margin-top: 4rem;
	}

	.section-career__ui-button {
		margin-top: 5.6rem;
	}

	.section-career-post__wrapper_header {
		--section-career-post-header-offset: 4.4rem;
		min-height: 47rem;
	}

	.section-career-post__wrapper_content {
		padding-bottom: 5.4rem;
	}

	.section-career-post__header-cell_left {
		gap: 2.6rem;
	}

	.section-career-post__labels_tag {
		margin-top: 2rem;
	}

	.section-career-post__labels_condition {
		gap: 2.4rem;
	}

	.section-career-post__title {
		font-size: 4.6rem;
	}

	.section-career-post__background {
		right: -35rem;
	}

	.section-career-post__content-item {
		gap: 2.6rem;
	}

	.section-career-post__content-item:not(:last-child) {
		padding-bottom: 6rem;
	}

	.section-career-post__content-item:not(:first-child) {
		padding-top: 2.6rem;
	}

	.section-career-post__content-title {
		font-size: 2.7rem;
	}

	.section-career-post__content-description {
		font-size: 1.6rem;
	}

	.section-career-post__content-description ul li {
		padding-left: 1.4rem;
	}

	.section-career-post__content-description ul li:before {
		top: 0.95rem;
	}

	.section-career-post__content-description li:not(:last-child) {
		margin-bottom: 1.6rem;
	}

	.section-recall {
		--section-recall-offset-bottom: 11.6rem;
	}

	.section-recall__title {
		font-size: 8rem;
	}

	.section-recall__content {
		margin-top: 7.2rem;
	}

	.section-recall__text {
		font-size: 2.6rem;
	}

	.section-recall__error {
		margin-bottom: 3.2rem;
		font-size: 2.2rem;
	}

	.section-recall__fields {
		gap: 3.2rem 2.8rem;
	}

	.section-recall__ui-button {
		margin-top: 2.8rem;
	}

	.section-error__title {
		font-size: 4.6rem;
	}

	.section-error__buttons-list {
		gap: 1.4rem;
		margin-top: 6.4rem;
	}

	.section-investors__wrapper_header {
		--section-investors-header-offset-vertical: 4rem;
		gap: 2.4rem;
		min-height: 46rem;
		overflow: hidden;
	}

	.section-investors__title {
		font-size: 12rem;
	}

	.section-investors__tabs-buttons {
		flex-wrap: nowrap;
		padding: 0 var(--wrapper-offset);
		margin: 0 calc(-1 * var(--wrapper-offset));
		overflow: auto hidden;
		-webkit-overflow-scrolling: touch;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}

	.section-investors__tabs-buttons::-webkit-scrollbar {
		display: none;
	}

	.section-investors__tabs-buttons-item {
		flex: 0 0 auto;
	}

	.section-investors__list {
		padding-top: 5.2rem;
		padding-bottom: 11.6rem;
	}

	.section-features__list {
		grid-template-columns: repeat(2, 1fr);
		gap: 4.2rem 2.8rem;
		margin-top: 5rem;
	}

	.section-information__centers {
		margin-top: 3rem;
	}

	.section-features-with-video {
		padding-bottom: 5.8rem;
	}

	.section-features-with-video__cell_right {
		width: 59%;
	}

	.section-features-with-video__title {
		font-size: 2rem;
	}

	.section-features-with-video__list {
		margin-top: 2.6rem;
	}

	.section-features-with-video__list-item:not(:last-child) {
		margin-bottom: 5rem;
	}

	.section-description {
		padding: 5.8rem 0;
	}

	.section-description__wrapper {
		grid-template-columns: 1fr 59%;
		gap: 4.8rem;
		padding-top: 2.3rem;
	}

	.section-description__content {
		gap: 5.2rem;
	}

	.section-description__text {
		gap: 2.1rem;
		font-size: 1.6rem;
	}

	.section-categories {
		padding: 5.8rem 0 4.8rem;
	}

	.section-categories__list {
		gap: 2.2rem;
		margin-top: 2.6rem;
	}

	.section-categories__list-item {
		flex-basis: calc(33% - 1.4666666667rem);
	}

	.section-categories__item-category {
		--item-category-offset: 2.6rem 2.6rem 5.7rem;
		--item-category-spacing: 1.6rem;
	}

	.section-future-products {
		padding-top: 4.8rem;
	}

	.section-future-products__list {
		gap: 2rem;
		margin-top: 2.6rem;
	}

	.section-future-products__list-item:not(:last-child):before {
		right: -4.4rem;
		width: 7.2rem;
		height: 7.2rem;
	}

	.section-post {
		padding-bottom: 11.6rem;
	}

	.section-post__row {
		grid-template-columns: 1fr 55% 1fr;
		gap: 4.8rem;
	}

	.section-post__row_content {
		padding-top: 5.6rem;
		margin-top: 3.2rem;
	}

	.section-post__title {
		font-size: 4.6rem;
	}

	.section-product {
		padding: 5rem 0 7.6rem;
	}

	.section-product__cell_left {
		grid-template-columns: 100%;
	}

	.section-product__cell_right {
		gap: 4.6rem;
	}

	.section-product__core-slider_thumb {
		display: none;
	}

	.section-product__title {
		font-size: 6rem;
	}

	.section-product__description {
		font-size: 2.1rem;
	}

	.section-product__description br {
		display: none;
	}

	.section-product__features-item:not(:last-child) {
		margin-bottom: 1.4rem;
	}

	.section-product__features-item-text {
		font-size: 1.6rem;
	}

	.section-products-slider {
		padding: 7.6rem 0 11.6rem;
	}

	.section-products-slider__core-slider {
		--core-slider-slide-size: 35.8rem;
		margin-top: 2.6rem;
	}

	.section-product-range {
		padding: 5.2rem 0 7.9rem;
	}

	.section-product-range__core-slider {
		margin-top: 2.6rem;
	}

	.section-product-range__content {
		gap: 3rem;
		margin-top: 4.6rem;
	}

	.section-product-range__caption {
		font-size: 4.6rem;
	}

	.section-product-range__description br {
		display: none;
	}

	.section-products {
		padding-bottom: 13rem;
	}

	.section-products__title {
		font-size: 8rem;
	}

	.section-products__tabs-buttons {
		margin-top: 6rem;
	}

	.section-products__list {
		grid-template-columns: repeat(3, 1fr);
		gap: 2.2rem;
		margin-top: 2.6rem;
	}

	.section-hero-about__wrapper {
		padding-top: 7rem;
		padding-bottom: 4.8rem;
	}

	.section-hero-about__title {
		font-size: 12rem;
	}

	.section-hero-about__preview {
		margin-top: 3.2rem;
	}

	.section-hero-about__caption {
		margin-top: 5rem;
		font-size: 5.4rem;
	}

	.section-hero-about__features {
		padding-top: 2.3rem;
		margin-top: 9.6rem;
	}

	.section-hero-about__features-item:not(:last-child) {
		margin-bottom: 4.6rem;
	}

	.section-hero-about__feature-title {
		font-size: 2.5rem;
	}

	.section-hero-about__feature-text {
		margin-top: 2rem;
		font-size: 2.1rem;
	}

	.section-history {
		padding-bottom: 9.6rem;
	}

	.section-history__wrapper {
		padding-top: 4.8rem;
	}

	.section-history__list {
		display: flex;
		flex-flow: row wrap;
		padding-top: 2.3rem;
	}

	.section-history__list-item {
		flex: 1 1 calc(33.33% - 2.1333333333rem);
		min-width: 0;
	}

	.section-history__list-item_title {
		flex-basis: calc(66.66% - 1.6rem);
		margin-bottom: -0.8rem;
	}

	.section-history__list-item_hidden {
		display: none;
	}

	.section-history__item-text {
		font-size: 1.6rem;
	}

	.section-history__item-text > *:not(:last-child) {
		margin-bottom: 2.15rem;
	}

	.section-stats {
		padding: 4rem 0 11.6rem;
	}

	.section-stats__list {
		gap: 6.4rem;
		margin-top: 5rem;
	}

	.section-contacts {
		padding-bottom: 5.8rem;
	}

	.section-contacts__title {
		font-size: 8rem;
	}

	.section-contacts__list-item:not(:last-child) {
		margin-bottom: 3.6rem;
	}

	.section-contacts__part-map {
		margin-top: 8.2rem;
	}

	.modal-age-confirm__wrapper {
		gap: 2.8rem;
	}

	.modal-age-confirm__title {
		margin-top: 3.2rem;
		font-size: 4.6rem;
	}

	.modal-age-confirm__title br {
		display: none;
	}

	.modal-age-confirm__buttons-list {
		gap: 1.6rem;
	}
}

@media only screen and (max-width: 820px) {
	.part-header__wrapper {
		--part-header-row-elements-offset: 1.6rem;
	}

	.part-footer__row_nav {
		grid-template-columns: 100%;
	}

	.part-footer__nav {
		order: 2;
	}

	.part-footer__nav-list {
		grid-template-columns: repeat(2, calc(50% - 1.6rem));
	}

	.part-footer__part-logo {
		order: 1;
	}

	.part-footer__address {
		order: 3;
		margin-top: 3.2rem;
	}

	.part-footer__text {
		display: flex;
		flex-flow: row wrap;
		gap: 1.8rem;
	}

	.part-footer__text-item:first-child {
		flex: 1 1 100%;
		min-width: 0;
	}

	.part-map:before {
		padding-top: 75%;
	}

	.item-production__trigger {
		align-items: flex-start;
		font-size: 3.2rem;
	}

	.item-production__content {
		max-width: calc(100% - 13.1rem);
		margin: 0 7.2rem 0 auto;
	}

	.item-production__content br {
		display: none;
	}

	.item-posts__wrapper {
		grid-template-columns: 100%;
		gap: 1.8rem;
	}

	.item-posts__ui-button {
		display: none;
	}

	.item-year-document {
		flex-wrap: wrap;
		width: 100%;
		max-width: calc(var(--wrapper-size) + 2 * var(--wrapper-offset));
		padding: 0 var(--wrapper-offset);
		margin: 0 auto;
	}

	.item-year-document__list,
	.item-year-document__title {
		flex-basis: 100%;
	}

	.item-year-document__title-text_default {
		display: none;
	}

	.item-graph {
		grid-template-columns: 1fr auto;
	}

	.item-graph__list {
		grid-row: 2/3;
		grid-column: 1/3;
	}

	.item-graph__legends {
		justify-content: center;
	}

	.item-graph__increase-title,
	.item-feature-inline__title {
		font-size: 4rem;
	}

	.item-stats__title {
		font-size: 8.8rem;
	}

	.item-stats__title-postfix {
		font-size: 3rem;
	}

	.section-about__feature-key {
		font-size: 8.8rem;
	}

	.section-team__list {
		grid-template-columns: repeat(2, 1fr);
	}

	.section-posts__title {
		font-size: 5.6rem;
	}

	.section-awards__title {
		font-size: 8.8rem;
	}

	.section-awards__title-count {
		transform: translateY(20%);
	}

	.section-career__content-cells,
	.section-career-post__header {
		grid-template-columns: 100%;
	}

	.section-career-post__header-cell_right {
		display: none;
	}

	.section-career-post__labels_tag {
		flex-wrap: nowrap;
		padding-right: var(--wrapper-offset);
		padding-left: var(--wrapper-offset);
		margin-right: calc(-1 * var(--wrapper-offset));
		margin-left: calc(-1 * var(--wrapper-offset));
		overflow: auto hidden;
		-webkit-overflow-scrolling: touch;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}

	.section-career-post__labels_tag::-webkit-scrollbar {
		display: none;
	}

	.section-career-post__content-item,
	.section-recall__content {
		grid-template-columns: 100%;
	}

	.section-recall__text br {
		display: none;
	}

	.section-investors__title {
		font-size: 8rem;
	}

	.section-features__list {
		grid-template-columns: 100%;
	}

	.section-features__list-item:not(:last-child) {
		padding-bottom: 4.2rem;
		border-bottom: 1px solid #d9dbe0;
	}

	.section-information__wrapper {
		grid-template-columns: 100%;
	}

	.section-information__centers {
		flex-flow: row wrap;
		gap: 2rem;
	}

	.section-information__centers-item {
		flex: 1 1 calc(50% - 1rem);
		min-width: 0;
	}

	.section-year-documents__list-item:not(:first-child) {
		margin-top: 7.2rem;
	}

	.section-features-with-video__wrapper {
		flex-wrap: wrap;
	}

	.section-features-with-video__cell {
		flex-basis: 100%;
	}

	.section-description__wrapper {
		grid-template-columns: 100%;
	}

	.section-categories__list {
		flex-wrap: nowrap;
		padding-right: var(--wrapper-offset);
		padding-left: var(--wrapper-offset);
		margin-right: calc(-1 * var(--wrapper-offset));
		margin-left: calc(-1 * var(--wrapper-offset));
		overflow: auto hidden;
		-webkit-overflow-scrolling: touch;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}

	.section-categories__list::-webkit-scrollbar {
		display: none;
	}

	.section-categories__list-item {
		flex: 0 0 25.8rem;
	}

	.section-future-products__list {
		flex-wrap: wrap;
	}

	.section-future-products__list-item {
		flex-basis: 100%;
	}

	.section-future-products__list-item:not(:last-child):before {
		top: unset;
		right: 2rem;
		bottom: -2.6rem;
		width: 5.5rem;
		height: 5.5rem;
		background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 44 44' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 43.5C10.1259 43.5 0.500002 33.8741 0.500003 22C0.500003 10.1259 10.1259 0.499999 22 0.499999C33.8741 0.5 43.5 10.1259 43.5 22C43.5 33.8741 33.8741 43.5 22 43.5Z' fill='white' stroke='%23D9DBE0'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.12 20.86L21.2 26.94L21.2 14L22.8 14L22.8 24.525L22.8 26.94L22.8 29.2L22 30L14 22L15.12 20.86ZM24.4 27.6L30 22L28.88 20.86L24.4 25.34L24.4 27.6Z' fill='%230077FF'/%3E%3C/svg%3E%0A");
		transform: unset;
	}

	.section-post__row {
		grid-template-columns: 100%;
	}

	.section-post__row_content .section-post__cell_left {
		order: 2;
		margin-top: 1.6rem;
	}

	.section-post__row_content .section-post__cell_center {
		order: 1;
	}

	.section-post__row_content .section-post__cell_right {
		display: none;
	}

	.section-product {
		overflow: hidden;
	}

	.section-product__wrapper {
		flex-wrap: wrap;
	}

	.section-product__cell {
		flex-basis: 100%;
	}

	.section-product__core-slider_preview {
		--core-slider-overflow: visible;
	}

	.section-product-range__content {
		grid-template-columns: 100%;
	}

	.section-products {
		overflow: hidden;
	}

	.section-products__tabs-buttons {
		flex-wrap: nowrap;
		padding-right: var(--wrapper-offset);
		padding-left: var(--wrapper-offset);
		margin-right: calc(-1 * var(--wrapper-offset));
		margin-left: calc(-1 * var(--wrapper-offset));
		overflow: auto hidden;
		-webkit-overflow-scrolling: touch;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}

	.section-products__tabs-buttons::-webkit-scrollbar {
		display: none;
	}

	.section-products__tabs-buttons-item {
		flex: 0 0 auto;
	}

	.section-products__list {
		grid-template-columns: repeat(2, 1fr);
	}

	.section-hero-about__title {
		font-size: 8rem;
	}

	.section-history__list {
		grid-template-columns: repeat(2, 1fr);
	}

	.section-history__list-item {
		flex-basis: calc(50% - 1.6rem);
	}

	.section-history__list-item_title {
		flex-basis: 100%;
	}

	.section-contacts__content {
		grid-template-columns: 100%;
	}
}

@media only screen and (max-width: 580px) {
	:root {
		--root-font-size: 62.5%;
		--wrapper-offset: 1.2rem;
		--common-section-offset-from-header: 4rem;
		--part-header-row-top-height: 6.6rem;
		--part-header-row-bottom-height: 0rem;
	}

	.page__root {
		font-size: 1.4rem;
		line-height: 1.45;
	}

	.content {
		font-size: 1.4rem;
	}

	.content > *:not(:last-child) {
		margin-bottom: 4.8rem;
	}

	.content h2 {
		font-size: 2.2rem;
	}

	.content h3 {
		font-size: 1.6rem;
	}

	.content h4,
	.content h5,
	.content h6 {
		font-size: 1.4rem;
	}

	.content ul li:before {
		top: 1rem;
		width: 0.6rem;
		height: 0.6rem;
	}

	.content li:not(:last-child) {
		margin-bottom: 0.8rem;
	}

	.content ol {
		padding-left: 1.8rem;
	}

	.content blockquote {
		gap: 2.4rem;
		padding: 2rem;
	}

	.content h1:not(:last-child),
	.content h2:not(:last-child),
	.content h3:not(:last-child),
	.content h4:not(:last-child),
	.content h5:not(:last-child),
	.content h6:not(:last-child) {
		margin-bottom: 2.4rem;
	}

	.core-video__button_play {
		--core-video-icon-width: 2.4rem;
		width: 8rem;
		height: 8rem;
	}

	.core-video__button_mute {
		inset: auto 1.2rem 1.2rem auto;
	}

	.core-video__description {
		margin-top: 1.2rem;
		font-size: 1.2rem;
		line-height: normal;
	}

	.core-slider-pagination {
		gap: 0.8rem;
	}

	.core-slider-pagination__trigger {
		width: 0.4rem;
		height: 0.4rem;
	}

	.core-slider-pagination__bullet.is-current
		.core-slider-pagination__trigger {
		width: 2rem;
	}

	.core-slider {
		--core-slider-slide-spacing: 1.2rem;
	}

	.ui-button {
		--ui-button-spacing: 0.6rem;
	}

	.ui-button:not([class*='ui-button_text-size_']) .ui-button__text {
		font-size: 1.1rem;
	}

	.ui-button:not(
			[class*='ui-button_icon-size_'],
			[class*='ui-button_circle_size']
		) {
		--ui-button-icon-size: 1.2rem;
	}

	.ui-button:not(
			[class*='ui-button_offset_'],
			[class*='ui-button_circle']
		)[class*='ui-button_type'] {
		padding: 1.6rem 2.4rem;
	}

	.ui-button:not(
			[class*='ui-button_offset_'],
			[class*='ui-button_circle']
		)[class*='ui-button_type'][class*='ui-button_type_tabs'] {
		padding: 0.925rem 1.25rem;
	}

	.ui-button_circle:not([class*='ui-button_circle_size']) {
		--ui-button-size: 4.4rem;
	}

	.ui-button_circle_size_240 {
		--ui-button-size: 8rem;
		--ui-button-icon-size: 2.4rem;
	}

	.ui-select__trigger {
		gap: 2rem;
		padding: 1.6rem 2rem;
	}

	.ui-select__trigger-text {
		font-size: 1.1rem;
	}

	.ui-select__trigger-arrow {
		width: 1.2rem;
		height: 1.2rem;
	}

	.ui-select__error {
		margin-top: 0.4rem;
		font-size: 1rem;
		line-height: 1.25;
	}

	.ui-select__list {
		--ui-select-list-offset-vertical: 1.2rem;
	}

	.ui-select__list-wrapper {
		border-radius: 1.2rem;
	}

	.ui-select__option {
		padding-right: 2rem;
		padding-left: 2rem;
		font-size: 1.1rem;
	}

	.ui-label {
		gap: 0.4rem;
	}

	.ui-label__icon {
		width: 1.6rem;
	}

	.ui-label_text_size_16 .ui-label__text {
		font-size: 1.2rem;
	}

	.ui-label:not([class*='ui-label_text-size']) .ui-label__text {
		font-size: 1.2rem;
	}

	.ui-input {
		--ui-input-font-size: clamp(16px, 2.2rem, 2.2rem);
		--ui-input-label-offset: 0.5rem;
	}

	.ui-input__content {
		gap: 1.4rem;
		padding-bottom: 1.4rem;
	}

	.ui-input__postfix {
		gap: 0.7rem;
	}

	.ui-input__text {
		margin-top: 1.2rem;
		font-size: 1.2rem;
	}

	.ui-checkbox__content {
		gap: 0.4rem;
	}

	.ui-checkbox__text {
		font-size: 1.4rem;
	}

	.button-burger {
		transform-origin: right center;
	}

	.part-logo__icon {
		width: 8.4rem;
	}

	.part-header__wrapper_top {
		grid-template-columns: 1fr max-content 1fr;
		justify-content: space-between;
		padding-top: 1.2rem;
		padding-bottom: 1.2rem;
	}

	.part-header__wrapper_bottom {
		display: none;
	}

	.part-header__cell_left {
		order: 3;
	}

	.part-header__cell_center {
		order: 2;
	}

	.part-header__cell_right {
		order: 1;
		justify-content: flex-start;
	}

	.part-header__button-burger {
		margin-left: auto;
	}

	.part-header__part-translations-toggler {
		margin: 0 auto 0 0;
	}
	.part-header__link_phone {
		background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.16482 9.74002L10.2848 8.62002C10.4357 8.47104 10.6265 8.36906 10.8342 8.32646C11.0419 8.28385 11.2575 8.30246 11.4548 8.38002L12.8198 8.92502C13.0192 9.00596 13.1902 9.14411 13.3112 9.32207C13.4322 9.50003 13.4979 9.70983 13.4998 9.92502V12.425C13.4987 12.5714 13.4679 12.7161 13.4094 12.8502C13.3508 12.9844 13.2657 13.1054 13.1592 13.2058C13.0527 13.3062 12.927 13.3841 12.7896 13.4346C12.6522 13.4852 12.506 13.5074 12.3598 13.5C2.79482 12.905 0.864823 4.80502 0.499823 1.70502C0.482879 1.55279 0.49836 1.39869 0.545247 1.25288C0.592134 1.10706 0.669364 0.972817 0.771856 0.858988C0.874349 0.74516 0.999781 0.654323 1.1399 0.592452C1.28002 0.530582 1.43165 0.49908 1.58482 0.50002H3.99982C4.21533 0.500658 4.42571 0.565754 4.60392 0.686935C4.78213 0.808116 4.92001 0.97984 4.99982 1.18002L5.54482 2.54502C5.62495 2.74155 5.64539 2.95734 5.6036 3.16543C5.5618 3.37351 5.45962 3.56467 5.30982 3.71502L4.18982 4.83502C4.18982 4.83502 4.83482 9.20002 9.16482 9.74002Z' fill='%23020E1B'/%3E%3C/svg%3E%0A");
		background-repeat: no-repeat;
		font-size: 0;
		width: 38px;
		aspect-ratio: 1/1;
		background-color: #f1f3f6;
		display: flex;
		align-items: center;
		justify-content: center;
		background-position: 50%;
		border-radius: 50%;
		background-size: 47.5% auto;
	}
	.part-header_theme_light .part-header__link_phone {
		background-color: #ffffff0d;
		background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.165 10.74L11.285 9.62002C11.4359 9.47104 11.6267 9.36906 11.8344 9.32646C12.0421 9.28385 12.2577 9.30246 12.455 9.38002L13.82 9.92502C14.0194 10.006 14.1904 10.1441 14.3114 10.3221C14.4324 10.5 14.498 10.7098 14.5 10.925V13.425C14.4988 13.5714 14.4681 13.7161 14.4095 13.8502C14.351 13.9844 14.2659 14.1054 14.1594 14.2058C14.0529 14.3062 13.9272 14.3841 13.7898 14.4346C13.6524 14.4852 13.5062 14.5074 13.36 14.5C3.79501 13.905 1.86501 5.80502 1.50001 2.70502C1.48306 2.55279 1.49854 2.39869 1.54543 2.25288C1.59232 2.10706 1.66955 1.97282 1.77204 1.85899C1.87453 1.74516 1.99996 1.65432 2.14008 1.59245C2.2802 1.53058 2.43184 1.49908 2.58501 1.50002H5.00001C5.21551 1.50066 5.4259 1.56575 5.6041 1.68694C5.78231 1.80812 5.92019 1.97984 6.00001 2.18002L6.54501 3.54502C6.62513 3.74155 6.64558 3.95734 6.60378 4.16543C6.56199 4.37351 6.45981 4.56467 6.31001 4.71502L5.19001 5.83502C5.19001 5.83502 5.83501 10.2 10.165 10.74Z' fill='white'/%3E%3C/svg%3E%0A");
	}
	.part-header_theme_light .part-header__link_phone:hover,
	.part-header__link_phone:hover {
		background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.165 10.74L11.285 9.62002C11.4359 9.47104 11.6267 9.36906 11.8344 9.32646C12.0421 9.28385 12.2577 9.30246 12.455 9.38002L13.82 9.92502C14.0194 10.006 14.1904 10.1441 14.3114 10.3221C14.4324 10.5 14.498 10.7098 14.5 10.925V13.425C14.4988 13.5714 14.4681 13.7161 14.4095 13.8502C14.351 13.9844 14.2659 14.1054 14.1594 14.2058C14.0529 14.3062 13.9272 14.3841 13.7898 14.4346C13.6524 14.4852 13.5062 14.5074 13.36 14.5C3.79501 13.905 1.86501 5.80502 1.50001 2.70502C1.48306 2.55279 1.49854 2.39869 1.54543 2.25288C1.59232 2.10706 1.66955 1.97282 1.77204 1.85899C1.87453 1.74516 1.99996 1.65432 2.14008 1.59245C2.2802 1.53058 2.43184 1.49908 2.58501 1.50002H5.00001C5.21551 1.50066 5.4259 1.56575 5.6041 1.68694C5.78231 1.80812 5.92019 1.97984 6.00001 2.18002L6.54501 3.54502C6.62513 3.74155 6.64558 3.95734 6.60378 4.16543C6.56199 4.37351 6.45981 4.56467 6.31001 4.71502L5.19001 5.83502C5.19001 5.83502 5.83501 10.2 10.165 10.74Z' fill='white'/%3E%3C/svg%3E%0A");
		background-color: #39475a;
	}

	.part-header__link:before {
		display: none;
	}
	.part-header-menu__nav-list {
		gap: 1.2rem;
	}

	.part-header-menu__nav-link {
		font-size: 2.8rem;
		line-height: normal;
	}

	.part-header-menu__contacts {
		gap: 5.2rem;
	}

	.part-header-menu__contact-label {
		font-size: 1.4rem;
	}

	.part-header-menu__contact-link {
		font-size: 1.1rem;
	}

	.part-footer {
		padding: 4rem 0 3.2rem;
	}

	.part-footer__row_contacts {
		flex-direction: column;
		margin-top: 3.2rem;
	}

	.part-footer__row_text {
		padding-top: 2rem;
		margin-top: 6rem;
	}

	.part-footer__nav-link {
		font-size: 1.4rem;
		line-height: 1.45;
	}

	.part-footer__address {
		font-size: 1.4rem;
	}

	.part-footer__part-socials {
		order: 2;
	}

	.part-footer__contacts {
		order: 1;
	}

	.part-footer__contacts-link {
		font-size: 2.2rem;
	}

	.part-footer__text-item {
		font-size: 1.2rem;
		line-height: 1.45;
		color: #fff;
	}

	.part-translations-toggler__list-item_current {
		display: none;
	}

	.part-section-header {
		gap: 1.6rem;
	}

	.part-section-header__title {
		font-size: 1.8rem;
	}

	.part-socials__label {
		font-size: 1.4rem;
	}

	.part-socials__link {
		width: 4.8rem;
		height: 4.8rem;
	}

	.part-socials__link-icon {
		width: 2rem;
		height: 2rem;
	}

	.part-map:before {
		padding-top: 125.3561253561%;
	}

	.part-page-loader {
		padding-top: calc(var(--part-header-height) + 7rem);
	}

	.part-logo-letter__icon_desktop {
		display: none;
	}

	.item-category {
		--item-category-offset: 2rem;
		--item-category-spacing: 2.1em;
	}

	.item-category__title {
		font-size: 1.1rem;
	}

	.item-category__photo {
		width: min(100%, 9.6rem);
	}

	.item-category__photo:before {
		padding-top: 277.0833333333%;
	}

	.item-category_with-button {
		padding-bottom: 5.4rem;
	}

	.item-category_photo_size_194 .item-category__photo {
		width: min(100%, 16.2rem);
	}

	.item-category_photo_size_194 .item-category__photo:before {
		padding-top: 164.1975308642%;
	}

	.item-production__trigger {
		gap: 0.8rem;
		padding: 1.6rem 0;
		font-size: 2.2rem;
	}

	.item-production__trigger-count {
		min-width: 2.2rem;
	}

	.item-production__trigger-title {
		margin-right: 1.2rem;
	}

	.item-production__trigger-icon {
		width: 4rem;
		height: 4rem;
	}

	.item-production__content {
		max-width: calc(100% - 9rem);
		padding: 0 0 2.4rem;
		margin-right: 6rem;
		font-size: 1.4rem;
		line-height: 1.45;
	}

	.item-team__preview:before {
		padding-top: 114.4578313253%;
	}

	.item-team__post {
		margin-top: 1.2rem;
		font-size: 1.2rem;
	}

	.item-team__name {
		margin-top: 1.2rem;
		font-size: 2.8rem;
	}

	.item-posts {
		padding: 2rem 0;
	}

	.item-posts__date {
		font-size: 1.2rem;
	}

	.item-posts__title {
		font-size: 2.2rem;
	}

	.item-posts__text {
		margin-top: 1.6rem;
		font-size: 1.4rem;
		line-height: 1.45;
	}

	.item-awards {
		gap: 1.6rem;
		min-height: 32rem;
		padding: 2rem;
	}

	.item-awards__title {
		font-size: 2.2rem;
		line-height: 1.2;
	}

	.item-awards__text {
		font-size: 1.4rem;
		line-height: 1.45;
	}

	.item-career__labels_condition {
		gap: 1.6rem;
	}

	.item-career__title {
		font-size: 2.2rem;
		line-height: 1.2;
	}

	.item-feature {
		gap: 1.2rem;
	}

	.item-feature__icon {
		width: 4.4rem;
	}

	.item-feature__title {
		margin-top: 0.4rem;
		font-size: 2rem;
	}

	.item-feature__text {
		font-size: 1.4rem;
	}

	.item-center {
		min-height: 20rem;
		padding: 2rem;
	}

	.item-center__description {
		font-size: 1.4rem;
		line-height: 1.45;
	}

	.item-center__title {
		font-size: 1.6rem;
	}

	.item-document {
		gap: 2rem;
		padding-bottom: 2rem;
	}

	.item-document__title {
		font-size: 1.6rem;
	}

	.item-document__description {
		margin-top: 0.8rem;
		font-size: 1.4rem;
		line-height: 1.45;
	}

	.item-year-document {
		gap: 3.2rem;
	}

	.item-graph {
		--item-graph-padding-top: 2rem;
		--item-graph-padding-bottom: 4.8rem;
	}

	.item-graph__subtitle {
		margin-top: 0.4rem;
		font-size: 1.4rem;
		line-height: 1.45;
	}

	.item-graph__list-item:not(:last-child) {
		margin-bottom: 1.6rem;
	}

	.item-graph__list-item_legend {
		margin-top: 2rem;
	}

	.item-graph__data-label {
		font-size: 1.2rem;
	}

	.item-graph__data-line-progress {
		height: 0.6rem;
	}

	.item-graph__data-line-label {
		font-size: 1.6rem;
	}

	.item-graph__legends {
		gap: 1.4rem;
	}

	.item-graph__legend {
		gap: 0.6rem;
	}

	.item-graph__legend-icon {
		width: 0.8rem;
		height: 0.8rem;
	}

	.item-graph__legend-label {
		font-size: 1.2rem;
	}

	.item-graph__increase {
		gap: 0.4rem;
	}

	.item-graph__increase-icon {
		width: 1.8rem;
	}

	.item-graph__increase-title {
		font-size: 3.2rem;
	}

	.item-graph__increase-subtitle {
		margin-top: 0.6rem;
		font-size: 1.6rem;
	}

	.item-feature-inline {
		gap: 2rem;
		padding-top: 2rem;
	}

	.item-feature-inline__icon {
		width: 4.4rem;
		height: 4.4rem;
	}

	.item-feature-inline__title {
		font-size: 2.8rem;
	}

	.item-feature-inline__text {
		margin-top: 1.6rem;
		font-size: 1.4rem;
	}

	.item-future-product {
		gap: 0.8rem;
		padding: 2.4rem;
	}

	.item-future-product__title {
		margin-top: 0.8rem;
		font-size: 2.2rem;
	}

	.item-future-product__subtitle {
		font-size: 1.4rem;
		line-height: 1.45;
	}

	.item-product__wrapper {
		gap: 3.2rem;
		padding: 4rem 2rem 2.4rem;
	}

	.item-product__wrapper:before {
		border-radius: 0.8rem;
	}

	.item-product__photo {
		width: 19.8rem;
	}

	.item-product__photo:before {
		padding-top: 164.6464646465%;
	}

	.item-product__title {
		font-size: 1.5rem;
		line-height: normal;
	}

	.item-product_type_slider .item-product__wrapper {
		gap: 2.4rem;
		padding: 4rem 2.4rem 2.4rem;
	}

	.item-product_type_slider .item-product__photo {
		width: 15.2rem;
	}

	.item-product_type_slider .item-product__photo:before {
		padding-top: 164.4736842105%;
	}

	.item-product-range {
		padding: 1rem 1rem 2rem;
	}

	.item-product-range__photo {
		width: 100%;
	}

	.item-product-range__photo:before {
		padding-top: 200%;
	}

	.item-product-range__title {
		font-size: 1.4rem;
	}

	.item-stats__title {
		font-size: 4.8rem;
		line-height: 1;
	}

	.item-stats__title-postfix {
		margin-left: 0.4rem;
		font-size: 1.8rem;
		line-height: 1;
	}

	.item-stats__text {
		margin-top: 0.8rem;
		font-size: 1.4rem;
		line-height: 1.2;
	}

	.item-contacts__label {
		font-size: 1.2rem;
	}

	.item-contacts__text {
		font-size: 2rem;
		line-height: 1.2;
	}

	.item-contacts__text br {
		display: none;
	}

	.item-contacts__description {
		font-size: 1.4rem;
	}

	.item-contacts__description br {
		display: none;
	}

	.section-hero__wrapper {
		padding-top: 3.8rem;
	}

	.section-hero__title {
		grid-template-columns: 100%;
		gap: 1.4rem;
		text-align: center;
	}

	.section-hero__title-text_postfix,
	.section-hero__title-text_prefix {
		font-size: 1.2rem;
	}

	.section-hero__preview {
		--core-video-proportions: 153.8461538462%;
		margin-top: 3rem;
	}

	.section-hero__core-slider {
		--core-slider-slide-size: 25.6rem;
		margin-top: 1.2rem;
	}

	.section-hero__core-slider-controls {
		gap: 4.8rem;
		margin-top: 2.4rem;
	}

	.section-about {
		padding-top: 8rem;
	}

	.section-about__row_header {
		padding-top: 1.4rem;
	}

	.section-about__row_feature {
		margin-top: 7.2rem;
	}

	.section-about__row_video {
		margin-top: 3.2rem;
	}

	.section-about__title {
		font-size: 1.8rem;
	}

	.section-about__text {
		font-size: 1.4rem;
		line-height: 1.45;
	}

	.section-about__text > *:not(:last-child) {
		margin-bottom: 1.6rem;
	}

	.section-about__feature {
		gap: 0.8rem;
	}

	.section-about__feature-key {
		font-size: 4.8rem;
	}

	.section-about__feature-value {
		font-size: 1.2rem;
	}

	.section-about__video {
		--core-video-proportions: 91.1680911681%;
	}

	.section-production {
		padding: 7rem 0;
	}

	.section-production__title {
		font-size: 1.8rem;
	}

	.section-production__list {
		margin-top: 1.6rem;
	}

	.section-production__ui-button {
		margin-top: 4rem;
	}

	.section-team {
		padding: 2rem 0 10rem;
	}

	.section-team__title {
		font-size: 1.6rem;
	}

	.section-team__list {
		gap: 4rem 2rem;
		margin-top: 2rem;
	}

	.section-posts {
		padding: 2rem 0 7.2rem;
	}

	.section-posts__title {
		font-size: 4rem;
	}

	.section-posts__list {
		gap: 2rem;
		margin-top: 1.6rem;
	}

	.section-posts_type_page.section-posts {
		padding-bottom: 10rem;
	}

	.section-posts_type_page .section-posts__list {
		gap: 4rem;
		margin-top: 4rem;
	}

	.section-awards {
		padding: 2rem 0 10rem;
	}

	.section-awards__title {
		font-size: 4.8rem;
	}

	.section-awards__title-count {
		margin-left: 0.6rem;
		font-size: 2.2rem;
	}

	.section-awards__row {
		gap: 1.6rem;
		margin-top: 3.2rem;
	}

	.section-awards__tabs-buttons {
		gap: 2.4rem;
		padding: 0 var(--wrapper-offset);
		margin: 0 calc(-1 * var(--wrapper-offset));
		overflow: auto hidden;
		-webkit-overflow-scrolling: touch;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}

	.section-awards__tabs-buttons::-webkit-scrollbar {
		display: none;
	}

	.section-awards__tabs-buttons-item {
		flex: 0 0 auto;
	}

	.section-awards__tabs-button {
		font-size: 1.1rem;
	}

	.section-awards__core-slider {
		--core-slider-slide-size: 28rem;
	}

	.section-awards__core-slider-navigation {
		display: none;
	}

	.section-career__wrapper_header {
		padding-top: calc(var(--part-header-height) + 2.4rem);
		padding-bottom: 2.4rem;
	}

	.section-career__wrapper_content {
		padding-top: 4rem;
		padding-bottom: 7.2rem;
	}

	.section-career__header {
		min-height: 18rem;
	}

	.section-career__image {
		right: 1rem;
		width: 25.6rem;
	}

	.section-career__image:before {
		padding-top: 59.765625%;
	}

	.section-career__background {
		right: -30rem;
		width: 147.4666666667%;
		max-width: unset;
	}

	.section-career__text {
		font-size: 1.4rem;
		line-height: 1.45;
	}

	.section-career__ui-select {
		margin-top: 3.2rem;
	}

	.section-career__ui-button {
		margin-bottom: 4.8rem;
	}

	.section-career-post__wrapper_header {
		--section-career-post-header-offset: 2.4rem;
		min-height: 34rem;
	}

	.section-career-post__wrapper_content {
		padding-bottom: 3.6rem;
	}

	.section-career-post__header-cell_left {
		gap: 2rem;
	}

	.section-career-post__labels_tag {
		margin-top: 1.2rem;
	}

	.section-career-post__labels_condition {
		gap: 1.6rem;
	}

	.section-career-post__title {
		margin-top: 2.8rem;
		font-size: 2.8rem;
	}

	.section-career-post__background {
		inset: auto -22.4rem -14rem auto;
		width: 37rem;
		max-width: unset;
	}

	.section-career-post__content-item {
		gap: 2rem;
	}

	.section-career-post__content-item:not(:last-child) {
		padding-bottom: 4rem;
	}

	.section-career-post__content-item:not(:first-child) {
		padding-top: 2rem;
	}

	.section-career-post__content-title {
		font-size: 2.2rem;
		line-height: 1.2;
	}

	.section-career-post__content-description {
		font-size: 1.4rem;
	}

	.section-career-post__content-description ul li {
		padding-left: 1.2rem;
	}

	.section-career-post__content-description ul li:before {
		top: 0.8rem;
	}

	.section-career-post__content-description li:not(:last-child) {
		margin-bottom: 1.2rem;
	}

	.section-recall {
		--section-recall-offset-bottom: 7.2rem;
	}

	.section-recall__title {
		font-size: 4rem;
	}

	.section-recall__content {
		margin-top: 2.4rem;
	}

	.section-recall__text {
		font-size: 2rem;
		line-height: 1.2;
	}

	.section-recall__error {
		margin-bottom: 2.4rem;
		font-size: 2rem;
		line-height: 1.2;
	}

	.section-recall__fields {
		gap: 2.4rem;
	}

	.section-recall__fields-item {
		flex-basis: 100%;
	}

	.section-recall__ui-button {
		width: 100%;
		margin-top: 2.4rem;
	}

	.section-error__title {
		font-size: 2.8rem;
	}

	.section-error__buttons-list {
		gap: 0.8rem;
		margin-top: 4.8rem;
	}

	.section-investors__wrapper_header {
		--section-investors-header-offset-vertical: 2rem;
		min-height: 26rem;
	}

	.section-investors__title {
		font-size: 4rem;
		line-height: 1;
	}

	.section-investors__tabs-buttons {
		gap: 0.4rem;
	}

	.section-investors__list {
		padding-top: 4rem;
		padding-bottom: 7.2rem;
	}

	.section-features__list {
		gap: 2.4rem;
		margin-top: 4rem;
	}

	.section-features__list-item:not(:last-child) {
		padding-bottom: 2.4rem;
	}

	.section-information__centers {
		margin-top: 2rem;
	}

	.section-features-with-video {
		padding-bottom: 3.6rem;
	}

	.section-features-with-video__core-video {
		--core-video-proportions: 58.6894586895%;
	}

	.section-features-with-video__title {
		font-size: 1.8rem;
	}

	.section-features-with-video__list {
		margin-top: 2rem;
	}

	.section-features-with-video__list-item:not(:last-child) {
		margin-bottom: 4rem;
	}

	.section-description {
		padding: 3.6rem 0;
	}

	.section-description__wrapper {
		gap: 3.2rem;
		padding-top: 1.4rem;
	}

	.section-description__content {
		gap: 4rem;
	}

	.section-description__text {
		gap: 1.2rem;
		font-size: 1.4rem;
	}

	.section-categories {
		padding: 3.6rem 0;
	}

	.section-categories__list {
		gap: 1.2rem;
		margin-top: 2rem;
	}

	.section-categories__item-category {
		--item-category-offset: 2rem 2rem 5.4rem;
		--item-category-spacing: 2.1rem;
	}

	.section-future-products {
		padding-top: 3.6rem;
	}

	.section-future-products__list {
		gap: 0.8rem;
		margin-top: 2rem;
	}

	.section-future-products__list-item:not(:last-child):before {
		width: 4.4rem;
		height: 4.4rem;
	}

	.section-post {
		padding-bottom: 7.2rem;
	}

	.section-post__row {
		gap: 3.2rem;
	}

	.section-post__row_content {
		padding-top: 3.2rem;
		margin-top: 2.4rem;
	}

	.section-post__title {
		font-size: 2.8rem;
	}

	.section-product {
		padding: 4rem 0 7.2rem;
	}

	.section-product__cell_right {
		gap: 3.2rem;
	}

	.section-product__core-photo_slide_preview:before {
		padding-top: 108.8319088319%;
	}

	.section-product__title {
		font-size: 4rem;
	}

	.section-product__description {
		font-size: 1.8rem;
	}

	.section-product__features-item:not(:last-child) {
		margin-bottom: 1.2rem;
	}

	.section-product__features-item-text {
		font-size: 1.4rem;
	}

	.section-products-slider {
		padding: 7.2rem 0;
	}

	.section-products-slider__core-slider {
		--core-slider-slide-size: 25.8rem;
		margin-top: 2rem;
	}

	.section-product-range {
		padding: 4rem 0 4.8rem;
	}

	.section-product-range__core-slider {
		--core-slider-slide-size: 12.5rem;
		margin-top: 2rem;
	}

	.section-product-range__content {
		gap: 2rem;
		margin-top: 3.2rem;
	}

	.section-product-range__caption {
		font-size: 2.8rem;
	}

	.section-product-range__description {
		font-size: 1.4rem;
		color: #020e1b66;
	}

	.section-products {
		padding-bottom: 10rem;
	}

	.section-products__title {
		font-size: 4rem;
	}

	.section-products__tabs-buttons {
		margin-top: 4rem;
	}

	.section-products__list {
		grid-template-columns: 100%;
		gap: 1.2rem;
		margin-top: 2rem;
	}

	.section-hero-about__wrapper {
		padding-top: 4rem;
		padding-bottom: 3.6rem;
	}

	.section-hero-about__title {
		font-size: 4rem;
		line-height: 1;
	}

	.section-hero-about__preview {
		margin-top: 2.4rem;
	}

	.section-hero-about__preview:before {
		padding-top: 153.8461538462%;
	}

	.section-hero-about__caption {
		margin-top: 4rem;
		font-size: 2.8rem;
		line-height: 1;
	}

	.section-hero-about__features {
		padding-top: 1.4rem;
		margin-top: 7.2rem;
	}

	.section-hero-about__features-item:not(:last-child) {
		margin-bottom: 3.2rem;
	}

	.section-hero-about__feature-title {
		font-size: 1.8rem;
	}

	.section-hero-about__feature-text {
		margin-top: 1.6rem;
		font-size: 1.8rem;
	}

	.section-history {
		padding-bottom: 7.2rem;
	}

	.section-history__wrapper {
		padding-top: 3.6rem;
	}

	.section-history__list {
		padding-top: 1.4rem;
	}

	.section-history__list-item {
		flex-basis: 100%;
	}

	.section-history__item-preview:before {
		padding-top: 62.6780626781%;
	}

	.section-history__item-text {
		font-size: 1.4rem;
		line-height: 1.45;
		letter-spacing: -0.01em;
	}

	.section-history__item-text > *:not(:last-child) {
		margin-bottom: 1.3rem;
	}

	.section-stats {
		padding: 2rem 0 7.2rem;
	}

	.section-stats__list {
		gap: 4.8rem;
		margin-top: 4rem;
	}

	.section-contacts {
		padding-bottom: 3.6rem;
	}

	.section-contacts__title {
		font-size: 4rem;
	}

	.section-contacts__list-item:not(:last-child) {
		margin-bottom: 3.2rem;
	}

	.section-contacts__part-map {
		margin-top: 6.4rem;
	}

	.modal-age-confirm__wrapper {
		gap: 2.4rem;
		padding: 3.2rem;
	}

	.modal-age-confirm__title {
		margin-top: 1.6rem;
		font-size: 2.8rem;
	}

	.modal-age-confirm__text {
		margin-top: 4.2rem;
		font-size: 2.1rem;
	}

	.modal-age-confirm__text {
		margin-top: 3.6rem;
		font-size: 1.8rem;
	}

	.modal-age-confirm__buttons-list {
		gap: 1.2rem;
	}
}

@media only screen and (max-width: 440px) {
	:root {
		--root-font-size: 2.6666666667vw;
	}
}

@media only screen and (min-width: 581px) {
	.part-header-menu__nav-link {
		letter-spacing: -0.02em;
	}

	.part-footer__row_contacts {
		align-items: flex-end;
		justify-content: space-between;
	}

	.part-footer__contacts {
		align-items: flex-end;
	}

	.part-logo-letter__icon_mobile {
		display: none;
	}

	.item-posts__title,
	.item-awards__title {
		letter-spacing: -0.02em;
	}

	.item-graph__increase-icon {
		margin-top: 0.3rem;
	}

	.item-feature-inline__title {
		letter-spacing: -0.02em;
	}

	.item-product__title {
		font-family: RFDewiCondensed, sans-serif;
	}

	.item-stats__title,
	.item-stats__title-postfix {
		letter-spacing: -0.02em;
	}

	.item-contacts__description {
		margin-top: 0.4rem;
	}

	.section-hero__title-text_postfix {
		order: 1;
	}

	.section-hero__title-text_prefix {
		justify-self: flex-end;
		order: 2;
	}

	.section-hero__part-logo-letter {
		grid-column: span 2;
		order: 3;
	}

	.section-awards__tabs-buttons {
		justify-content: flex-end;
	}

	.section-career__list-item:not(:last-child) {
		margin-bottom: 1rem;
	}

	.section-career-post__labels_condition {
		margin-top: 2rem;
	}

	.section-investors__title,
	.section-product__title,
	.section-product-range__caption,
	.section-products__title,
	.section-hero-about__title,
	.section-hero-about__caption {
		letter-spacing: -0.02em;
	}
}

@media only screen and (min-width: 821px) and (max-width: 1120px) {
	.section-features__list-item:nth-child(odd) {
		padding-right: 2.8rem;
		border-right: 1px solid #d9dbe0;
	}
}

@media only screen and (min-width: 821px) {
	.part-footer__nav {
		width: fit-content;
		min-width: min(100%, 46.1rem);
		max-width: 100%;
	}

	.part-footer__address {
		justify-self: end;
		width: min(100%, 33.8rem);
		max-width: 100%;
		text-align: right;
	}

	.part-footer__text {
		display: grid;
		grid-template-columns: 1fr max-content 1fr;
	}

	.part-footer__text-item:last-child {
		justify-self: flex-end;
	}

	.item-production__trigger-title {
		text-align: center;
		letter-spacing: -0.02em;
	}

	.item-production__content {
		width: 100%;
		max-width: var(--item-production-content-size);
		margin: 0 auto;
		text-align: center;
	}

	.item-year-document__list {
		padding-right: var(--wrapper-offset);
		padding-bottom: 10rem;
	}

	.item-year-document__title {
		text-align: left;
	}

	.item-year-document__title-text_mobile {
		display: none;
	}

	.item-year-document_reverse {
		flex-direction: row-reverse;
	}

	.item-year-document_reverse .item-year-document__list {
		padding-right: 0;
		padding-left: var(--wrapper-offset);
	}

	.item-year-document_reverse .item-year-document__title {
		text-align: right;
	}

	.item-year-document_theme_gray {
		background-color: #f1f3f6;
	}

	.item-year-document_theme_gray .item-year-document__title {
		color: #fff;
	}

	.item-graph__legends {
		padding-left: 7rem;
	}

	.section-information__centers {
		width: min(100%, 44rem);
	}

	.section-year-documents__list-item:not(:first-child)
		.section-year-documents__item-year-document {
		padding-top: 6rem;
	}

	.section-investors .section-year-documents {
		margin-bottom: -11.7rem;
	}

	.section-post__row_content .section-post__cell_right {
		position: sticky;
		bottom: 2.3rem;
		place-self: flex-end flex-end;
		margin-bottom: -9.3rem;
	}

	.section-product__cell_right {
		padding-top: 1rem;
	}

	.section-contacts__list {
		padding-top: 2.6rem;
	}
}

@media only screen and (min-width: 1121px) {
	@keyframes slide-up {
		0% {
			transform: translateY(101%);
		}

		to {
			transform: translateY(0);
		}
	}

	@keyframes fade-in-up {
		0% {
			opacity: 0;
			transform: translateY(5rem);
		}

		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	@keyframes fade-in-up-big {
		0% {
			opacity: 0;
			transform: translateY(10rem);
		}

		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	[data-css-animation] {
		animation-duration: var(--transition-duration);
		animation-timing-function: var(--transition-timing-function);
		animation-fill-mode: backwards;
		animation-delay: 0.1s;
	}

	[data-css-animation='slide-up']:not(.is-inview) {
		opacity: 0;
	}

	[data-css-animation='slide-up'].is-inview {
		animation-name: slide-up;
	}

	[data-css-animation='fade-in-up']:not(.is-inview) {
		opacity: 0;
	}

	[data-css-animation='fade-in-up'].is-inview {
		animation-name: fade-in-up;
	}

	[data-css-animation='fade-in-up-big']:not(.is-inview) {
		opacity: 0;
	}

	[data-css-animation='fade-in-up-big'].is-inview {
		animation-name: fade-in-up-big;
	}

	.core-slider-pagination_type_grow.core-slider-pagination {
		gap: 3.2rem;
	}

	.core-slider-pagination_type_grow.core-slider-pagination
		.core-slider-pagination__bullet {
		flex: 1;
		min-width: 0;
	}

	.core-slider-pagination_type_grow.core-slider-pagination
		.core-slider-pagination__trigger {
		width: 100%;
		min-width: 4rem;
		height: 0.4rem;
		border-radius: 2rem;
	}

	.part-header-menu {
		display: flex;
		flex-flow: column nowrap;
	}

	.part-header-menu__content {
		--part-header-menu-vertical-offset: 6.8rem;
		display: flex;
		flex-flow: column nowrap;
		padding-right: 25rem;
		padding-left: 9.5rem;
	}

	.part-header-menu__wrapper {
		align-items: flex-end;
		justify-content: space-between;
	}

	.item-production__trigger-title {
		width: 100%;
		max-width: var(--item-production-content-size);
	}

	.item-graph__increase-icon {
		margin-top: 0.6rem;
	}

	.item-contacts__description {
		margin-top: 0.8rem;
	}

	.section-about__feature {
		align-items: flex-end;
	}

	@supports (align-items: last baseline) {
		.section-about__feature {
			align-items: last baseline;
		}
	}

	.section-about__feature-value {
		padding-bottom: 10%;
	}

	@supports (align-items: last baseline) {
		.section-about__feature-value {
			padding-bottom: 0;
		}
	}

	.section-career__list-item:not(:last-child) {
		margin-bottom: 2rem;
	}

	.section-career-post__labels_condition {
		margin-top: 4rem;
	}

	.section-investors__tabs-buttons {
		margin-top: 2.4rem;
	}

	.section-features__list-item:nth-child(3n-2),
	.section-features__list-item:nth-child(3n-1) {
		padding-right: 3.2rem;
		border-right: 1px solid #d9dbe0;
	}

	.section-investors .section-year-documents {
		margin-bottom: -16rem;
	}

	.section-post__row_content .section-post__cell_right {
		bottom: 3.2rem;
		margin-bottom: -12.8rem;
	}

	.section-product__cell_right {
		padding-top: 2rem;
	}

	.section-product__core-slider_preview
		.section-product__core-slider-pagination {
		display: none;
	}

	.section-history__list {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
	}

	.section-history__list-item_title {
		grid-column: span 2;
	}

	.section-history__list-item_column_1-2 {
		grid-column: 1/2;
	}

	.section-history__list-item_column_2-3 {
		grid-column: 2/3;
	}

	.section-history__list-item_column_3-4 {
		grid-column: 3/4;
	}

	.section-history__list-item_column_4-5 {
		grid-column: 4/5;
	}

	.section-contacts__list {
		padding-top: 5.2rem;
	}
}

@media only screen and (min-width: 1281px) {
	.part-header-menu__content {
		--part-header-menu-vertical-offset: 10.2rem;
		padding-right: 37.5rem;
		padding-left: 14.25rem;
	}
}

@media only screen and (min-width: 1441px) {
	.part-header-menu__content {
		--part-header-menu-vertical-offset: 13.6rem;
		padding-right: 50rem;
		padding-left: 19rem;
	}
}

.section-product-range__core-slider.core-slider_direction_row
	.core-slider__container {
	mix-blend-mode: darken;
}

.section-products__list-item.is-current {
	transition-property: opacity;
	/* transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1); */
	transition-duration: 0.3s;
	transition-timing-function: cubic-bezier(0.55, 0.06, 0.68, 0.19);
}

.section-products__list-item:not(.is-shown) {
	display: none;
}

.section-products__list-item.is-shown:not(.is-current) {
	pointer-events: none;
	opacity: 0;
}
@media only screen and (min-width: 1441px) {
	.postid-648 .section-product__title {
		font-size: 11.25rem;
	}
}




.section-awards__core-slider-slide.is-current {
	transition-property: opacity;
	/* transition-timing-function: cubic-bezier(0.1, 0.6, 0.4, 1); */
	transition-duration: 0.3s;
	transition-timing-function: cubic-bezier(0.55, 0.06, 0.68, 0.19);
}

.section-awards__core-slider-slide:not(.is-shown) {
	display: none;
}

.section-awards__core-slider-slide.is-shown:not(.is-current) {
	pointer-events: none;
	opacity: 0;
}