@charset "UTF-8";
/* stylelint-disable */
/* stylelint-enable */
/* stylelint-disable */
/**
* Селекторы для таргетинга на конкретные браузеры без влияния на специфику или
* ограничение использования в медиа-запросах
*
* Плюсы:
* - Работает с медиа-запросами
*
* Минусы:
* - Не может использоваться с @extend, так как это приведет к недействительности других селекторов
*/
/**
* Целевой Internet Explorer, но не Edge
*
* @demo
*	div {
*		@include browser-ie () {
*			// ...
*		}
*	}
*/
/**
* Target IE-Edge
*/
/**
* Target Firefox
*/
/**
* Target Safari
*/
/**
* Target all WebKit browsers
*/
/**
* Remove the unit of a length
*
* @param {Number} $number - Number to remove unit from
* @return {Number} - Unitless number
*/
/**
* Returns nth property from css property list
*
* @property {map} $list List
* @property {number} $index Item index
*
* @example
*	$bottom-margin: css-nth(10px 20px 30px 40px, 3); // 30px
*	$bottom-margin: css-nth(10px 20px, 3); // 10px
*/
/**
* Remove nth elements from the list
*
* @property {map} $list List
* @property {number} $index Item index
*
* @example
*	$list: remove-nth(10px 20px 30px 40px, 3); // 10px 20px 40px
*/
/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for one in $index position
*
* 'inherit' value when used with 'margins' or 'paddings' mixin will not produce any output
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-top-only: breakpointPickCssNth($spacer, 1);
* => (xs: 10px inherit inherit inherit, md: 20px inherit inherit inherit)
*	@include margins($spacer-top-only);
*
*	$spacer-bottom-only: breakpointPickCssNth($spacer, 3);
* => (xs: inherit inherit 12px inherit, md: inherit inherit 20px inherit)
*	@include paddings($spacer-bottom-only);
*/
/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for top (first) and bottom (third) properties
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-top-bottom: breakpoint-pick-top-bottom($spacer);
* => (xs: 10px inherit 12px inherit, md: 20px inherit 20px inherit)
*	@include margins($spacer-top-bottom);
*/
/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for right (second) and left (fourth) properties
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-left-right: breakpoint-pick-top-bottom($spacer);
* => (xs: inherit 11px inherit 13px, md: inherit 0 inherit 0)
*	@include margins($spacer-left-right);
*/
/**
* In each $list pair of $breakpoint: $value merges all values skipping 'inherit'
*
* @example
*	$list-a: (xs: 10px inherit 20px inherit, md: 30px inherit);
*	$list-b: (xs: 40px inherit inherit inherit, md: inherit 50px);
*
*	$list-result: breakpointMapMerge($list-a, $list-b);
*	// (xs: 40px inherit 20px inherit, md: 30px 50px);
*/
/**
* Returns deeply nested property from a map
*
* @function mapGetDeep Deep get for sass maps
* @author https://css-tricks.com/snippets/sass/deep-getset-maps/
* @param {Map} $map - Map
* @param {Arglist} $keys - Key chain
*
* @example
*	$paddings: mapGetDeep($grid-containers, default, paddings, xs);
*/
/**
* Mixin for object-fit plugin
*
* @see https://github.com/bfred-it/object-fit-images
* @see components/_background.scss
* @example
*	@include object-fit(contain);
*	@include object-fit(cover, top);
*/
/**
* Split string into a list
*
* @property {string} $string String
* @property {string} $separator Separator
*
* @example
*	$list: str-split("hello+world", "+"); // (hello, world)
*/
/**
* Converts SVG into data url so that this SVG could be used as a
* background image
*
* @example
*	background-image: svgtodataurl("<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100">...</svg>");
*/
/**
* Remove keys from the map
*
* @param {Map} $map - Map from which to remove items
* @param {List} $keys - List of keys which to remove
* @return {Map} - Map without the specified keys
*/
/**
* Качество рендеринга изображений
* В Chrome качество фонового изображения не самое лучшее при использовании background-size
*/
@font-face {
  src: local("Montserrat"), url("../fonts/Montserrat/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat/Montserrat-Regular.woff") format("woff");
  font-family: "Montserrat";
  font-weight: 400;
  font-style: normal;
  font-display: swap; }

@font-face {
  src: local("Montserrat"), url("../fonts/Montserrat/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat/Montserrat-Bold.woff") format("woff");
  font-family: "Montserrat";
  font-weight: 700;
  font-style: normal;
  font-display: swap; }

@font-face {
  src: local("Montserrat"), url("../fonts/Montserrat/Montserrat-ExtraBold.woff2") format("woff2"), url("../fonts/Montserrat/Montserrat-ExtraBold.woff") format("woff");
  font-family: "Montserrat";
  font-weight: 800;
  font-style: normal;
  font-display: swap; }

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0; }

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */ }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none; }

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none; }

/**
 * Swiper 7.4.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: December 24, 2021
 */
@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal; }

:root {
  --swiper-theme-color: #007aff; }

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1; }

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }

.swiper-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0); }

.swiper-pointer-events {
  -ms-touch-action: pan-y;
      touch-action: pan-y; }

.swiper-pointer-events.swiper-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x; }

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform; }

.swiper-slide-invisible-blank {
  visibility: hidden; }

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto; }

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform; }

/* 3D Effects */
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px; }

.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d; }

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10; }

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15); }

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */ }

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none; }

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start; }

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory; }

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory; }

.swiper-centered > .swiper-wrapper::before {
  content: '';
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999; }

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before); }

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after); }

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before); }

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after); }

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center; }

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none; }

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size); }

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size); }

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */ }

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color)); }

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none; }

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1; }

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto; }

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev'; }

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto; }

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next'; }

.swiper-button-lock {
  display: none; }

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */ }

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10; }

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0; }

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 10px;
  left: 0;
  width: 100%; }

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
  position: relative; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
      -ms-transform: scale(0.66);
          transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
      -ms-transform: scale(0.66);
          transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33); }

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2); }

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none; }

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer; }

.swiper-pagination-bullet:only-child {
  display: none !important; }

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color)); }

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0); }

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block; }

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px; }

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform; }

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px); }

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap; }

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform; }

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform; }

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute; }

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top; }

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
          transform-origin: right top; }

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0; }

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0; }

.swiper-pagination-lock {
  display: none; }

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1); }

.swiper-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%; }

.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%; }

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0; }

.swiper-scrollbar-cursor-drag {
  cursor: move; }

.swiper-scrollbar-lock {
  display: none; }

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center; }

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain; }

.swiper-slide-zoomed {
  cursor: move; }

/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */ }

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
      -ms-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent; }

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff; }

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000; }

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000; }

.swiper-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
       -o-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto; }

.swiper-grid > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.swiper-grid-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.swiper-fade.swiper-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
       -o-transition-timing-function: ease-out;
          transition-timing-function: ease-out; }

.swiper-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity; }

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-cube {
  overflow: visible; }

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%; }

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
      -ms-transform-origin: 100% 0;
          transform-origin: 100% 0; }

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev,
.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible; }

.swiper-cube .swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0; }

.swiper-cube .swiper-cube-shadow:before {
  content: '';
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
          filter: blur(50px); }

.swiper-flip {
  overflow: visible; }

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1; }

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-flip .swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transition-property: opacity, height, -webkit-transform;
  transition-property: opacity, height, -webkit-transform;
  -o-transition-property: transform, opacity, height;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -webkit-transform; }

.swiper-cards {
  overflow: visible; }

.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
      -ms-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden; }

:root {
  --width-base: 1440;
  --width-current: 100vw;
  --width-multiplier: var(--width-current) / var(--width-base); }
  @media (min-width: 768px) and (max-width: 1024px) {
    :root {
      --width-base: 774;
      --width-current: 100vmin; } }
  @media (max-width: 767px) {
    :root {
      --width-base: 376;
      --width-current: 100vmin; } }

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit; }

html {
  min-height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

body {
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -webkit-text-decoration-skip: objects;
          text-decoration-skip: objects;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  color: #000;
  -webkit-tap-highlight-color: transparent;
  background-color: #fcfcfc; }

h1,
h2,
h3,
h6,
p {
  margin: 0; }

h1 {
  font-weight: 700;
  font-size: calc(36 * var(--width-multiplier));
  line-height: 1.22222; }
  @media (min-width: 768px) and (max-width: 1024px) {
    h1 {
      font-size: calc(64 * var(--width-multiplier));
      line-height: 1.21875; } }
  @media (min-width: 1025px) {
    h1 {
      font-size: calc(56 * var(--width-multiplier));
      line-height: 1.21429; } }

h2 {
  font-weight: 800;
  font-size: calc(24 * var(--width-multiplier));
  line-height: 1.20833; }
  @media (min-width: 1025px) {
    h2 {
      font-size: calc(40 * var(--width-multiplier));
      line-height: 1.225; } }

h3 {
  font-weight: 700;
  font-size: calc(14 * var(--width-multiplier));
  line-height: 1.42857; }
  @media (min-width: 1025px) {
    h3 {
      font-size: calc(16 * var(--width-multiplier));
      line-height: 1.5; } }

h4 {
  font-weight: 700;
  font-size: calc(16 * var(--width-multiplier));
  line-height: 1.44444; }
  @media (min-width: 1025px) {
    h4 {
      font-size: calc(24 * var(--width-multiplier));
      line-height: 1.33333; } }

p {
  font-size: calc(12 * var(--width-multiplier));
  line-height: 1.5; }
  p[class*=__description] {
    font-size: calc(14 * var(--width-multiplier));
    line-height: 1.42857; }
  @media (min-width: 768px) and (max-width: 1024px) {
    p {
      line-height: 1.33333; }
      p[class*=__description] {
        line-height: 1.33333; } }
  @media (min-width: 1025px) {
    p {
      font-size: calc(14 * var(--width-multiplier));
      line-height: 1.42857; }
      p[class*=__description] {
        font-size: calc(16 * var(--width-multiplier));
        line-height: 1.33333; } }

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

a,
button {
  outline: none;
  text-decoration: none;
  color: currentColor;
  cursor: pointer; }

a {
  color: currentColor; }

button {
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: none; }

img {
  display: block;
  max-width: 100%; }

svg {
  width: 100%;
  height: 100%; }

video {
  width: 100%;
  height: 100%;
  font-family: "object-fit:cover";
  -o-object-fit: cover;
     object-fit: cover; }

.select2-selection:focus,
.select2-selection:visited,
.select2-selection:active,
.select2-selection:hover,
a:focus,
a:visited,
a:active,
a:hover,
textarea:focus,
textarea:visited,
textarea:active,
textarea:hover,
input:focus,
input:visited,
input:active,
input:hover,
select:focus,
select:visited,
select:active,
select:hover,
button:focus,
button:visited,
button:active,
button:hover {
  outline: 0;
  outline-style: none; }

.is-hidden {
  display: none !important; }

.is-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important; }

.is-block {
  display: block !important; }

.is-hide {
  opacity: 0; }

@media (min-width: 768px) and (max-width: 1024px) {
  .for-desktop {
    display: none !important; } }

@media (max-width: 767px) {
  .for-desktop {
    display: none !important; } }

@media (min-width: 1025px) {
  .for-tablet {
    display: none !important; } }

@media (max-width: 767px) {
  .for-tablet {
    display: none !important; } }

@media (min-width: 1025px) {
  .for-mobile {
    display: none !important; } }

@media (min-width: 768px) and (max-width: 1024px) {
  .for-mobile {
    display: none !important; } }

.clearfix {
  overflow: auto; }
  .clearfix::after {
    content: "";
    display: table;
    clear: both; }

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

/* stylelint-disable */
.dont-break-out {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto; }

/* stylelint-enable */
.home__section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%; }
  .home__section--intro {
    height: 100vh;
    min-height: calc(610 * var(--width-multiplier));
    background: #141225 url("../images/intro/intro_bg@2x.jpg") no-repeat center center;
    background-size: cover; }
    @media (min-width: 768px) and (max-width: 1024px) {
      .home__section--intro {
        min-height: calc(1000 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .home__section--intro {
        min-height: calc(750 * var(--width-multiplier)); } }
  .home__section--contact {
    height: calc(800 * var(--width-multiplier));
    background: #141225 url("../images/contact/contact_bg@2x.jpg") no-repeat center center;
    background-size: cover; }
    @media (min-width: 768px) and (max-width: 1024px) {
      .home__section--contact {
        height: calc(525 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .home__section--contact {
        height: calc(500 * var(--width-multiplier)); } }
  @media (min-width: 1025px) {
    .home__section {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; } }

.home__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; }

.home__overlay {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 15;
  display: none;
  width: 100%;
  height: 100vh;
  opacity: 0;
  background: rgba(21, 18, 37, 0.5);
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s; }
  .home__overlay.is-active {
    opacity: 1; }

.home__about-overlay {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 15;
  display: none;
  width: 100%;
  height: 100vh;
  opacity: 0;
  background: rgba(21, 18, 37, 0.5);
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s; }
  .home__about-overlay.is-active {
    opacity: 1; }

.preloader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 30;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #141225; }
  .preloader__icon {
    margin: 0 auto;
    width: calc(52 * var(--width-multiplier));
    height: calc(65 * var(--width-multiplier)); }
    @media (min-width: 1025px) {
      .preloader__icon {
        width: calc(87 * var(--width-multiplier));
        height: calc(109 * var(--width-multiplier)); } }
  .preloader__loading {
    margin: 0 auto;
    font-size: calc(14 * var(--width-multiplier));
    font-stretch: ultra-expanded;
    line-height: 1.42857;
    letter-spacing: 0.15em;
    text-align: center;
    color: #fff; }
    @media (min-width: 1025px) {
      .preloader__loading {
        font-size: calc(14 * var(--width-multiplier));
        line-height: 1.25; } }

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: calc(1 * var(--width-multiplier)) solid #fff;
  border-radius: calc(5 * var(--width-multiplier));
  width: 100%;
  height: 100%;
  font-weight: 700;
  font-size: calc(14 * var(--width-multiplier));
  color: #fff;
  -webkit-transition: border-color 0.4s, color 0.4s, background-color 0.4s;
  -o-transition: border-color 0.4s, color 0.4s, background-color 0.4s;
  transition: border-color 0.4s, color 0.4s, background-color 0.4s; }
  .button:hover {
    border-color: #d9ebff;
    color: #d9ebff; }
  .button:active {
    border-color: #95aeff;
    color: #95aeff; }
  .button:disabled {
    border-color: rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.4); }
  .button--color {
    border-color: #2d5eff;
    color: #2d5eff; }
    .button--color:hover {
      border-color: #284aa6;
      color: #284aa6; }
    .button--color:active {
      border-color: #211982;
      color: #211982; }
    .button--color:disabled {
      border-color: rgba(45, 94, 255, 0.4);
      color: rgba(45, 94, 255, 0.4); }
  @media (min-width: 768px) and (max-width: 1024px) {
    .button {
      font-size: calc(14 * var(--width-multiplier)); } }
  @media (min-width: 1025px) {
    .button {
      font-size: calc(14 * var(--width-multiplier)); } }

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  -webkit-transition: background-color 0.2s, -webkit-backdrop-filter 0.2s;
  transition: background-color 0.2s, -webkit-backdrop-filter 0.2s;
  -o-transition: background-color 0.2s, backdrop-filter 0.2s;
  transition: background-color 0.2s, backdrop-filter 0.2s;
  transition: background-color 0.2s, backdrop-filter 0.2s, -webkit-backdrop-filter 0.2s; }
  .header__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: calc(20 * var(--width-multiplier)); }
    @media (min-width: 768px) and (max-width: 1024px) {
      .header__content {
        padding: calc(30 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .header__content {
        margin: 0 auto;
        padding: calc(20 * var(--width-multiplier)) calc(40 * var(--width-multiplier));
        max-width: calc(1440 * var(--width-multiplier)); } }
  .header__logo-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: calc(8 * var(--width-multiplier)); }
  .header__logo {
    width: calc(105 * var(--width-multiplier));
    height: calc(27 * var(--width-multiplier));
    color: #fff; }
    .header__logo img {
      width: 100%; }

@media (max-width: 767px) and (orientation: portrait) {
  .header__logo {
    position: relative;
    z-index: 3; } }
    @media (min-width: 768px) and (max-width: 1024px) {
      .header__logo {
        width: calc(139 * var(--width-multiplier));
        height: calc(35 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .header__logo {
        width: calc(139 * var(--width-multiplier));
        height: calc(35 * var(--width-multiplier)); } }
  .header__logo-text {
    max-width: calc(135 * var(--width-multiplier));
    color: #fff;
    font-size: calc(8 * var(--width-multiplier));
    line-height: 1.25;
    padding-left: calc(8 * var(--width-multiplier));
    border-left: calc(1 * var(--width-multiplier)) solid #fff; }
  .header__burger {
    position: relative;
    z-index: 3;
    width: 50px;
    height: 50px;
    cursor: pointer; }
    .header__burger span {
      position: absolute;
      left: 16px;
      top: 24px;
      z-index: 1;
      display: block;
      width: 21px;
      height: 2px;
      -webkit-transition: -webkit-transform 0.2s;
      transition: -webkit-transform 0.2s;
      -o-transition: transform 0.2s;
      transition: transform 0.2s;
      transition: transform 0.2s, -webkit-transform 0.2s; }
      .header__burger span::before {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        background-color: #fff;
        -webkit-transition: -webkit-transform 0.2s;
        transition: -webkit-transform 0.2s;
        -o-transition: transform 0.2s;
        transition: transform 0.2s;
        transition: transform 0.2s, -webkit-transform 0.2s; }
      .header__burger span:nth-child(1) {
        -webkit-transform: translateY(-6px);
            -ms-transform: translateY(-6px);
                transform: translateY(-6px); }
      .header__burger span:nth-child(3) {
        -webkit-transform: translateY(6px);
            -ms-transform: translateY(6px);
                transform: translateY(6px); }
      .header.is-active .header__burger span:nth-child(1) {
        -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
                transform: translateY(0); }
        .header.is-active .header__burger span:nth-child(1)::before {
          -webkit-transform: rotate(45deg);
              -ms-transform: rotate(45deg);
                  transform: rotate(45deg); }
      .header.is-active .header__burger span:nth-child(2) {
        opacity: 0; }
      .header.is-active .header__burger span:nth-child(3) {
        -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
                transform: translateY(0); }
        .header.is-active .header__burger span:nth-child(3)::before {
          -webkit-transform: rotate(-45deg);
              -ms-transform: rotate(-45deg);
                  transform: rotate(-45deg); }
    @media (min-width: 1025px) {
      .header__burger {
        display: none; } }
  .header__nav {
    display: none; }
    .header.is-active .header__nav {
      -webkit-transform: translateX(0);
          -ms-transform: translateX(0);
              transform: translateX(0); }
    @media (max-width: 767px) {
      .header__nav {
        position: fixed;
        right: 0;
        left: 0;
        top: 0;
        z-index: 2;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding: calc(97 * var(--width-multiplier)) 0 calc(20 * var(--width-multiplier)) calc(20 * var(--width-multiplier));
        width: calc(375 * var(--width-multiplier));
        height: 100vh;
        background-color: #141225;
        -webkit-transform: translateX(101%);
            -ms-transform: translateX(101%);
                transform: translateX(101%);
        -webkit-transition: -webkit-transform 0.2s;
        transition: -webkit-transform 0.2s;
        -o-transition: transform 0.2s;
        transition: transform 0.2s;
        transition: transform 0.2s, -webkit-transform 0.2s; } }
  @media (max-width: 767px) and (orientation: landscape) {
    .header__nav {
      overflow-y: scroll;
      padding: calc(97 * var(--width-multiplier)) 0 calc(40 * var(--width-multiplier)) calc(60 * var(--width-multiplier)); } }
    @media (min-width: 768px) and (max-width: 1024px) {
      .header__nav {
        position: fixed;
        right: 0;
        top: 0;
        z-index: 2;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding: calc(100 * var(--width-multiplier)) 0 calc(60 * var(--width-multiplier)) calc(60 * var(--width-multiplier));
        width: calc(379 * var(--width-multiplier));
        height: 100vh;
        background-color: #141225;
        -webkit-transform: translateX(101%);
            -ms-transform: translateX(101%);
                transform: translateX(101%);
        -webkit-transition: -webkit-transform 0.2s;
        transition: -webkit-transform 0.2s;
        -o-transition: transform 0.2s;
        transition: transform 0.2s;
        transition: transform 0.2s, -webkit-transform 0.2s; } }
    @media (min-width: 1025px) {
      .header__nav {
        display: block; } }
  .header__link {
    margin: 0 0 calc(32 * var(--width-multiplier));
    font-size: calc(14 * var(--width-multiplier));
    line-height: 1.42857;
    color: #fff; }
    @media (min-width: 1025px) {
      .header__link {
        margin: 0 0 0 calc(34 * var(--width-multiplier));
        font-size: calc(12 * var(--width-multiplier));
        line-height: 1.25;
        -webkit-transition: color 0.2s;
        -o-transition: color 0.2s;
        transition: color 0.2s; }
        .header__link:hover {
          color: #d9ebff; } }
  .header__overlay {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1;
    display: none;
    width: 100%;
    height: 100vh;
    opacity: 0;
    background: rgba(21, 18, 37, 0.5);
    -webkit-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s; }
    @supports ((-webkit-backdrop-filter: blur(3px)) or (backdrop-filter: blur(3px))) {
      .header__overlay {
        -webkit-backdrop-filter: blur(3px);
                backdrop-filter: blur(3px); } }
    .header.is-active .header__overlay {
      opacity: 1; }
  .header.is-scroll {
    background-color: rgba(20, 18, 37, 0.7); }
    @supports ((-webkit-backdrop-filter: blur(3px)) or (backdrop-filter: blur(3px))) {
      .header.is-scroll {
        -webkit-backdrop-filter: blur(3px);
                backdrop-filter: blur(3px); } }

.intro {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-top: calc(80 * var(--width-multiplier)); }
  .intro__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding: 0 calc(20 * var(--width-multiplier));
    width: 100%; }
    @media (min-width: 768px) and (max-width: 1024px) {
      .intro__container {
        padding: 0 0 0 calc(94 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .intro__container {
        padding: 0 calc(40 * var(--width-multiplier)); } }
  .intro__title {
    margin: 0 0 calc(16 * var(--width-multiplier));
    color: #fff;
    z-index: 1; }
    @media (min-width: 768px) and (max-width: 1024px) {
      .intro__title {
        margin: 0 0 calc(20 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .intro__title {
        margin: 0 0 calc(16 * var(--width-multiplier)); } }
  .intro__description {
    margin: 0 0 calc(22 * var(--width-multiplier));
    max-width: calc(100% - calc(11 * var(--width-multiplier)));
    color: #fff;
    z-index: 1; }
    @media (min-width: 768px) and (max-width: 1024px) {
      .intro__description {
        margin: 0 0 calc(24 * var(--width-multiplier));
        max-width: calc(484 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .intro__description {
        margin: 0 0 calc(20 * var(--width-multiplier));
        max-width: calc(670 * var(--width-multiplier)); } }
  .intro__button {
    width: calc(163 * var(--width-multiplier));
    height: calc(40 * var(--width-multiplier));
    z-index: 1;
    text-align: center; }
    .intro__button button {
      font-weight: 700; }
    @media (min-width: 768px) and (max-width: 1024px) {
      .intro__button {
        width: calc(210 * var(--width-multiplier));
        height: calc(50 * var(--width-multiplier)); }
        .intro__button:first-child {
          margin: 0 calc(20 * var(--width-multiplier)) 0 0; } }
    @media (min-width: 1025px) {
      .intro__button {
        width: calc(210 * var(--width-multiplier));
        height: calc(50 * var(--width-multiplier)); }
        .intro__button:first-child {
          margin: 0 calc(20 * var(--width-multiplier)) 0 0; } }
  .intro__head {
    position: absolute;
    right: calc(-134 * var(--width-multiplier));
    bottom: 0;
    z-index: 1;
    width: calc(365 * var(--width-multiplier));
    height: calc(373 * var(--width-multiplier));
    opacity: 0;
    -webkit-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s; }
    .intro__head img,
    .intro__head svg {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      font-family: "object-fit:cover"; }
    .intro__head.is-animate {
      opacity: 0.6; }
    @media (min-width: 768px) and (max-width: 1024px) {
      .intro__head {
        right: calc(-161 * var(--width-multiplier));
        bottom: 0;
        width: calc(634.78261 * var(--width-multiplier));
        height: calc(648.69565 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .intro__head {
        right: calc(-70 * var(--width-multiplier));
        bottom: calc(50% - calc(374 * var(--width-multiplier)));
        width: calc(730 * var(--width-multiplier));
        height: calc(746 * var(--width-multiplier)); } }

@media (min-width: 1025px) and (max-aspect-ratio: 1440 / 750) {
  .intro__head {
    top: calc(50% - (100vh / 750 * 374));
    width: 97.33333vh;
    height: 99.46667vh; } }
  .intro__head-body, .intro__head-head {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; }
  .intro__head-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; }
    .intro__head-line path {
      -webkit-animation: loadingHead 4s forwards ease-out;
              animation: loadingHead 4s forwards ease-out;
      -webkit-animation-play-state: paused;
              animation-play-state: paused; }
    .intro__head-line.is-loading {
      opacity: 1; }
      .intro__head-line.is-loading path {
        -webkit-animation-play-state: running;
                animation-play-state: running; }
    .intro__head-line.is-animate {
      opacity: 1; }
      .intro__head-line.is-animate path {
        -webkit-animation: animateHead 20s infinite ease-in-out;
                animation: animateHead 20s infinite ease-in-out;
        -webkit-animation-play-state: running;
                animation-play-state: running; }
  @media (min-width: 768px) and (max-width: 1024px) {
    .intro {
      padding-top: calc(188 * var(--width-multiplier)); } }
  @media (min-width: 1025px) {
    .intro {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding-top: 0;
      margin: 0 auto;
      max-width: calc(1440 * var(--width-multiplier)); } }

@-webkit-keyframes loadingHead {
  0% {
    stroke-dasharray: 0 700;
    stroke-dashoffset: 500; }
  100% {
    stroke-dasharray: 700 0;
    stroke-dashoffset: 500; } }

@keyframes loadingHead {
  0% {
    stroke-dasharray: 0 700;
    stroke-dashoffset: 500; }
  100% {
    stroke-dasharray: 700 0;
    stroke-dashoffset: 500; } }

@-webkit-keyframes animateHead {
  0% {
    stroke-dasharray: 700 0;
    stroke-dashoffset: 500; }
  10% {
    stroke-dasharray: 200 500;
    stroke-dashoffset: 100; }
  50% {
    stroke-dasharray: 400 300;
    stroke-dashoffset: 200; }
  50% {
    stroke-dasharray: 500 200;
    stroke-dashoffset: 500; }
  75% {
    stroke-dasharray: 200 500;
    stroke-dashoffset: 0; }
  100% {
    stroke-dasharray: 700 0;
    stroke-dashoffset: 500; } }

@keyframes animateHead {
  0% {
    stroke-dasharray: 700 0;
    stroke-dashoffset: 500; }
  10% {
    stroke-dasharray: 200 500;
    stroke-dashoffset: 100; }
  50% {
    stroke-dasharray: 400 300;
    stroke-dashoffset: 200; }
  50% {
    stroke-dasharray: 500 200;
    stroke-dashoffset: 500; }
  75% {
    stroke-dasharray: 200 500;
    stroke-dashoffset: 0; }
  100% {
    stroke-dasharray: 700 0;
    stroke-dashoffset: 500; } }

.about {
  width: 100%; }
  .about__container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    padding: calc(30 * var(--width-multiplier)) calc(20 * var(--width-multiplier));
    gap: calc(70 * var(--width-multiplier)); }
    @media (min-width: 768px) and (max-width: 1024px) {
      .about__container {
        padding: calc(40 * var(--width-multiplier)) calc(30 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .about__container {
        margin: 0 auto;
        padding: calc(80 * var(--width-multiplier)) 0;
        max-width: calc(1360 * var(--width-multiplier)); } }
  .about__content {
    max-width: calc(409 * var(--width-multiplier)); }
    @media (min-width: 1025px) {
      .about__content {
        max-width: calc(575 * var(--width-multiplier)); } }
  @media (max-width: 767px) {
    .about__image {
      position: absolute;
      top: 0;
      right: calc(20 * var(--width-multiplier));
      bottom: 0;
      left: calc(20 * var(--width-multiplier)); }
      .about__image svg {
        opacity: .2; } }
  .about__title {
    margin-bottom: calc(12 * var(--width-multiplier)); }
    @media (min-width: 1025px) {
      .about__title {
        margin-bottom: calc(16 * var(--width-multiplier)); } }
  .about__text {
    font-size: calc(14 * var(--width-multiplier));
    line-height: calc(20 * var(--width-multiplier));
    margin-bottom: calc(30 * var(--width-multiplier)); }
    @media (min-width: 1025px) {
      .about__text {
        font-size: calc(16 * var(--width-multiplier));
        line-height: calc(24 * var(--width-multiplier)); } }
  .about__about-btn {
    width: 100%;
    height: calc(40 * var(--width-multiplier));
    text-align: center; }
    .about__about-btn button {
      font-weight: 700; }
    @media (min-width: 768px) and (max-width: 1024px) {
      .about__about-btn {
        width: calc(210 * var(--width-multiplier));
        height: calc(50 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .about__about-btn {
        width: calc(210 * var(--width-multiplier));
        height: calc(50 * var(--width-multiplier)); } }
  .about__list {
    font-size: calc(14 * var(--width-multiplier));
    line-height: calc(20 * var(--width-multiplier));
    margin-bottom: calc(30 * var(--width-multiplier));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(5 * var(--width-multiplier)); }
    @media (min-width: 1025px) {
      .about__list {
        font-size: calc(16 * var(--width-multiplier));
        line-height: calc(24 * var(--width-multiplier)); } }
  .about__item {
    position: relative;
    padding-left: calc(20 * var(--width-multiplier)); }
    .about__item::before {
      content: '';
      position: absolute;
      top: 34%;
      left: 0;
      width: calc(8 * var(--width-multiplier));
      height: calc(8 * var(--width-multiplier));
      background-color: #2d5eff;
      border-radius: 50%; }
  @media (min-width: 1025px) {
    .about {
      margin: 0 auto;
      max-width: calc(1440 * var(--width-multiplier)); } }

.actors {
  width: 100%; }
  .actors__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: calc(30 * var(--width-multiplier)) calc(20 * var(--width-multiplier)); }
    @media (min-width: 768px) and (max-width: 1024px) {
      .actors__container {
        padding: calc(40 * var(--width-multiplier)) calc(30 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .actors__container {
        margin: 0 auto;
        padding: calc(80 * var(--width-multiplier)) 0;
        max-width: calc(1360 * var(--width-multiplier));
        gap: calc(32 * var(--width-multiplier)); } }
  .actors__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .actors__content-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: calc(555 * var(--width-multiplier));
    margin: 0 0 calc(24 * var(--width-multiplier)); }
    @media (min-width: 768px) and (max-width: 1024px) {
      .actors__content-left {
        margin: 0 0 calc(32 * var(--width-multiplier));
        max-width: none; } }
    @media (min-width: 1025px) {
      .actors__content-left {
        margin: 0; } }
  .actors__title {
    margin: 0 0 calc(12 * var(--width-multiplier)); }
    @media (min-width: 1025px) {
      .actors__title {
        margin: 0 0 calc(16 * var(--width-multiplier)); } }
  .actors__description {
    margin: 0 0 calc(20 * var(--width-multiplier)); }
    @media (min-width: 768px) and (max-width: 1024px) {
      .actors__description {
        margin: 0 0 calc(30 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .actors__description {
        margin: 0 0 calc(32 * var(--width-multiplier));
        max-width: calc(900 * var(--width-multiplier)); } }
  .actors__joinButton {
    width: calc(163 * var(--width-multiplier));
    height: calc(40 * var(--width-multiplier)); }
    .actors__joinButton button {
      font-weight: 700; }
    @media (min-width: 768px) and (max-width: 1024px) {
      .actors__joinButton {
        width: calc(210 * var(--width-multiplier));
        height: calc(50 * var(--width-multiplier)); }
        .actors__joinButton:first-child {
          margin: 0 calc(20 * var(--width-multiplier)) 0 0; } }
    @media (min-width: 1025px) {
      .actors__joinButton {
        width: calc(210 * var(--width-multiplier));
        height: calc(50 * var(--width-multiplier)); }
        .actors__joinButton:first-child {
          margin: 0 calc(20 * var(--width-multiplier)) 0 0; } }
  .actors__allActorsButton {
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    color: #2d5eff; }
    @media (min-width: 768px) and (max-width: 1024px) {
      .actors__allActorsButton {
        margin-top: calc(24 * var(--width-multiplier));
        text-align: left; } }
    @media (max-width: 767px) {
      .actors__allActorsButton {
        height: calc(32 * var(--width-multiplier));
        background-color: #F0F4FF; } }
    @media (max-width: 767px) {
      .actors__allActorsButton.desktop {
        display: none; } }
  .actors__actors-list {
    display: none;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr); }
    @media (min-width: 768px) and (max-width: 1024px) {
      .actors__actors-list {
        display: -ms-grid;
        display: grid;
        gap: calc(20 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .actors__actors-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        gap: calc(20 * var(--width-multiplier)); } }
  .actors__btn-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .actors__count {
    text-align: center;
    color: #2d5eff;
    font-weight: 500;
    font-size: calc(14 * var(--width-multiplier)); }
    @media (min-width: 1025px) {
      .actors__count {
        display: none; } }
    @media (min-width: 768px) and (max-width: 1024px) {
      .actors__count {
        font-size: calc(9 * var(--width-multiplier)); } }
    @media (max-width: 767px) {
      .actors__count {
        font-size: calc(8 * var(--width-multiplier)); } }
  .actors__count-desktop {
    text-align: center;
    color: #2d5eff;
    font-weight: 500;
    font-size: calc(14 * var(--width-multiplier)); }
    @media (min-width: 768px) and (max-width: 1024px) {
      .actors__count-desktop {
        font-size: calc(9 * var(--width-multiplier));
        display: none; } }
    @media (max-width: 767px) {
      .actors__count-desktop {
        font-size: calc(8 * var(--width-multiplier));
        display: none; } }
  .actors__number {
    font-weight: 700;
    font-size: calc(40 * var(--width-multiplier)); }
    @media (min-width: 768px) and (max-width: 1024px) {
      .actors__number {
        font-size: calc(27 * var(--width-multiplier)); } }
    @media (max-width: 767px) {
      .actors__number {
        font-size: calc(24 * var(--width-multiplier)); } }
  .actors__list {
    margin: 0 0 calc(24 * var(--width-multiplier)); }
  .actors__actor {
    height: calc(40 * var(--width-multiplier));
    width: calc(131 * var(--width-multiplier));
    padding: 0 calc(21 * var(--width-multiplier));
    background-color: #f0f4ff;
    border-radius: calc(5 * var(--width-multiplier));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .actors__actor:hover .actors__actor-hover {
      opacity: 1;
      visibility: visible; }
    .actors__actor:active .actors__actor-hover {
      opacity: 1;
      visibility: visible; }
    .actors__actor svg {
      height: auto;
      max-height: calc(20 * var(--width-multiplier)); }
      @media (min-width: 768px) and (max-width: 1024px) {
        .actors__actor svg {
          max-height: -webkit-min-content;
          max-height: -moz-min-content;
          max-height: min-content; } }
      @media (min-width: 1025px) {
        .actors__actor svg {
          max-height: -webkit-min-content;
          max-height: -moz-min-content;
          max-height: min-content; } }
    .actors__actor-img {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
    .actors__actor-text {
      font-size: calc(8 * var(--width-multiplier));
      line-height: calc(10 * var(--width-multiplier));
      text-align: center; }
    .actors__actor-hover {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      opacity: 0;
      visibility: hidden;
      -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
      -o-transition: opacity 0.2s ease, visibility 0.2s ease;
      transition: opacity 0.2s ease, visibility 0.2s ease; }
    @media (max-width: 767px) {
      .actors__actor:not(:last-child) {
        margin: 0 calc(10 * var(--width-multiplier)) 0 0; } }
    @media (min-width: 768px) and (max-width: 1024px) {
      .actors__actor {
        height: calc(64 * var(--width-multiplier));
        width: calc(210 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .actors__actor {
        height: calc(64 * var(--width-multiplier));
        width: calc(210 * var(--width-multiplier)); } }
  .actors__foobar {
    width: 100%;
    height: 100%;
    background-color: #B8B8B8;
    margin: calc(10 * var(--width-multiplier)) 0; }
  @media (min-width: 1025px) {
    .actors {
      margin: 0 auto;
      max-width: calc(1440 * var(--width-multiplier)); } }

.practices {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%; }
  .practices__container {
    width: 100%;
    padding: calc(30 * var(--width-multiplier)) calc(20 * var(--width-multiplier)); }
    @media (min-width: 768px) and (max-width: 1024px) {
      .practices__container {
        padding: calc(40 * var(--width-multiplier)) calc(30 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .practices__container {
        margin: 0 auto;
        padding: calc(80 * var(--width-multiplier)) 0;
        max-width: calc(1360 * var(--width-multiplier)); } }
  .practices__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: left;
        -ms-flex-align: left;
            align-items: left;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media (min-width: 1025px) {
      .practices__content {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row; } }
  .practices__title {
    margin: 0 0 calc(12 * var(--width-multiplier)); }
    @media (min-width: 1025px) {
      .practices__title {
        margin: 0 0 calc(16 * var(--width-multiplier)); } }
  .practices__description {
    margin: 0 0 calc(20 * var(--width-multiplier)); }
    @media (min-width: 768px) and (max-width: 1024px) {
      .practices__description {
        margin: 0 0 calc(30 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .practices__description {
        margin: 0 0 calc(32 * var(--width-multiplier));
        max-width: calc(900 * var(--width-multiplier)); } }
  .practices__select-button {
    position: relative;
    width: 100%;
    height: calc(40 * var(--width-multiplier));
    z-index: 1;
    margin-bottom: calc(24 * var(--width-multiplier)); }
    .practices__select-button:hover button {
      border-color: #284aa6;
      color: #284aa6; }
      @media (min-width: 1025px) {
        .practices__select-button:hover button {
          border-color: #284aa6;
          background-color: #284aa6;
          color: #d9ebff; } }
    .practices__select-button button {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      padding: 0 calc(16 * var(--width-multiplier));
      gap: calc(8 * var(--width-multiplier));
      border: calc(1 * var(--width-multiplier)) solid #2d5eff;
      border-radius: calc(5 * var(--width-multiplier));
      width: 100%;
      height: 100%;
      font-weight: 700;
      font-size: calc(14 * var(--width-multiplier));
      color: #2d5eff;
      -webkit-transition: border-color 0.4s, color 0.4s, background-color 0.4s;
      -o-transition: border-color 0.4s, color 0.4s, background-color 0.4s;
      transition: border-color 0.4s, color 0.4s, background-color 0.4s; }
      .practices__select-button button svg {
        width: calc(10 * var(--width-multiplier)); }
      @media (min-width: 768px) and (max-width: 1024px) {
        .practices__select-button button {
          font-size: calc(14 * var(--width-multiplier)); } }
      @media (min-width: 1025px) {
        .practices__select-button button {
          color: #fff;
          background-color: #2d5eff;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          font-size: calc(14 * var(--width-multiplier)); } }
    .practices__select-button select {
      opacity: 0;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      cursor: pointer; }
    @media (min-width: 768px) and (max-width: 1024px) {
      .practices__select-button {
        width: calc(350 * var(--width-multiplier));
        height: calc(40 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .practices__select-button {
        width: calc(210 * var(--width-multiplier));
        height: calc(50 * var(--width-multiplier));
        margin-bottom: 0; } }
  .practices__practices-list {
    display: none; }
    @media (min-width: 768px) and (max-width: 1024px) {
      .practices__practices-list {
        display: block; } }
    @media (min-width: 1025px) {
      .practices__practices-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        gap: calc(20 * var(--width-multiplier)); } }
  .practices__practices-list-left {
    margin-bottom: calc(16 * var(--width-multiplier)); }
    @media (min-width: 1025px) {
      .practices__practices-list-left {
        margin-bottom: 0; } }
  .practices__nav {
    position: relative;
    z-index: 1;
    height: calc(15 * var(--width-multiplier)); }
  .practices__pagination {
    bottom: 0 !important;
    z-index: 1; }
    .practices__pagination .swiper-pagination-bullet {
      margin: 0 5px !important;
      opacity: 1;
      background-color: #95aeff; }
      @media (min-width: 1025px) {
        .practices__pagination .swiper-pagination-bullet {
          margin: 0 10px !important;
          width: 11px;
          height: 11px; } }
    .practices__pagination .swiper-pagination-bullet-active {
      background-color: #2d5eff; }
  .practices__practice {
    background-color: #f0f4ff;
    padding: calc(26 * var(--width-multiplier)) calc(16 * var(--width-multiplier));
    border-radius: calc(20 * var(--width-multiplier));
    margin-right: calc(20 * var(--width-multiplier));
    margin-bottom: calc(16 * var(--width-multiplier));
    height: auto;
    width: 91%; }
    .practices__practice-title {
      font-size: calc(36 * var(--width-multiplier));
      line-height: calc(43 * var(--width-multiplier));
      margin-bottom: calc(12 * var(--width-multiplier)); }
      @media (min-width: 768px) and (max-width: 1024px) {
        .practices__practice-title {
          font-size: calc(46 * var(--width-multiplier));
          line-height: calc(56 * var(--width-multiplier)); } }
      @media (min-width: 1025px) {
        .practices__practice-title {
          font-size: calc(66 * var(--width-multiplier));
          line-height: calc(80 * var(--width-multiplier)); } }
    .practices__practice-tags {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      gap: calc(12 * var(--width-multiplier));
      margin-bottom: calc(24 * var(--width-multiplier)); }
      @media (min-width: 768px) and (max-width: 1024px) {
        .practices__practice-tags {
          gap: calc(16 * var(--width-multiplier)); } }
      @media (min-width: 1025px) {
        .practices__practice-tags {
          gap: calc(16 * var(--width-multiplier)); } }
    .practices__practice-text {
      font-size: calc(14 * var(--width-multiplier));
      line-height: calc(20 * var(--width-multiplier)); }
    .practices__practice:last-child {
      margin: 0; }
    @media (min-width: 768px) and (max-width: 1024px) {
      .practices__practice {
        width: auto;
        margin-right: 0; } }
    @media (min-width: 1025px) {
      .practices__practice {
        width: 100%;
        padding: calc(30 * var(--width-multiplier)) calc(20 * var(--width-multiplier));
        margin-right: 0;
        margin-bottom: 0;
        margin-bottom: calc(20 * var(--width-multiplier)); } }
  .practices__tag {
    padding: calc(8 * var(--width-multiplier)) calc(16 * var(--width-multiplier));
    border: calc(1 * var(--width-multiplier)) solid #26346C;
    border-radius: calc(50 * var(--width-multiplier));
    font-size: calc(12 * var(--width-multiplier)); }
    @media (min-width: 768px) and (max-width: 1024px) {
      .practices__tag {
        padding: calc(8 * var(--width-multiplier)) calc(30 * var(--width-multiplier));
        font-size: calc(14 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .practices__tag {
        padding: calc(8 * var(--width-multiplier)) calc(30 * var(--width-multiplier));
        font-size: calc(14 * var(--width-multiplier)); } }
  @media (min-width: 1025px) {
    .practices {
      margin: 0 auto;
      max-width: calc(1440 * var(--width-multiplier)); } }

.commission {
  width: 100%; }
  .commission__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding: calc(30 * var(--width-multiplier)) calc(20 * var(--width-multiplier)); }
    @media (min-width: 768px) and (max-width: 1024px) {
      .commission__container {
        padding: calc(40 * var(--width-multiplier)) calc(30 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .commission__container {
        margin: 0 auto;
        padding: calc(80 * var(--width-multiplier)) 0;
        max-width: calc(1360 * var(--width-multiplier)); } }
  .commission__title {
    margin: 0 0 calc(12 * var(--width-multiplier)); }
    @media (min-width: 1025px) {
      .commission__title {
        margin: 0 0 calc(16 * var(--width-multiplier)); } }
  .commission__description {
    margin: 0 0 calc(20 * var(--width-multiplier)); }
    @media (min-width: 768px) and (max-width: 1024px) {
      .commission__description {
        margin: 0 0 calc(30 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .commission__description {
        margin: 0 0 calc(32 * var(--width-multiplier));
        max-width: calc(900 * var(--width-multiplier)); } }
  .commission__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (min-width: 1025px) {
      .commission__items {
        overflow: hidden;
        margin: 0 0 calc(16 * var(--width-multiplier)); } }
  .commission__item {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    overflow: hidden;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: calc(220 * var(--width-multiplier));
    height: initial; }
    .commission__item:not(:last-child) {
      margin: 0 calc(10 * var(--width-multiplier)) 0 0; }
    @media (min-width: 768px) and (max-width: 1024px) {
      .commission__item {
        width: calc(229 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .commission__item {
        width: calc(325 * var(--width-multiplier));
        -webkit-transition: background-color 0.2s;
        -o-transition: background-color 0.2s;
        transition: background-color 0.2s;
        cursor: pointer; }
        .commission__item:not(:last-child) {
          margin: 0 calc(20 * var(--width-multiplier)) 0 0; } }
  .commission__item-image {
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: calc(220 * var(--width-multiplier));
    border-radius: calc(20 * var(--width-multiplier));
    background-color: #dce0eb; }
    .commission__item-image picture,
    .commission__item-image img {
      width: 100%;
      height: 100%;
      font-family: "object-fit: cover; object-position: top center";
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: top center;
         object-position: top center; }
    @media (min-width: 768px) and (max-width: 1024px) {
      .commission__item-image {
        height: calc(229 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .commission__item-image {
        width: 100%;
        height: calc(325 * var(--width-multiplier)); } }
  .commission__item-content {
    padding: calc(12 * var(--width-multiplier)) 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(10 * var(--width-multiplier)); }
    @media (min-width: 1025px) {
      .commission__item-content {
        padding: calc(24 * var(--width-multiplier)) 0 calc(28 * var(--width-multiplier)); } }
  .commission__item-title {
    margin: 0 0 calc(6 * var(--width-multiplier)); }
    @media (min-width: 1025px) {
      .commission__item-title {
        margin: 0 0 calc(8 * var(--width-multiplier)); } }
  .commission__nav {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 1;
    height: calc(15 * var(--width-multiplier)); }
  .commission__button-prev {
    position: static;
    margin: 0;
    background-color: #2d5eff;
    height: 21px;
    width: 21px;
    margin-right: 10px;
    border-radius: 100%; }
    .commission__button-prev::after {
      font-size: 11px;
      color: #fff; }
    .commission__button-prev.swiper-button-disabled {
      background-color: #BEBEBE; }
  .commission__button-next {
    position: static;
    margin: 0;
    background-color: #2d5eff;
    height: 21px;
    width: 21px;
    margin-left: 10px;
    border-radius: 100%; }
    .commission__button-next::after {
      font-size: 11px;
      color: #fff; }
    .commission__button-next.swiper-button-disabled {
      background-color: #BEBEBE; }
  .commission__pagination {
    bottom: 0 !important;
    z-index: 1;
    width: auto !important;
    position: static; }
    .commission__pagination .swiper-pagination-bullet {
      margin: 0 5px !important;
      opacity: 1;
      background-color: #95aeff; }
      @media (min-width: 1025px) {
        .commission__pagination .swiper-pagination-bullet {
          margin: 0 10px !important;
          width: 11px;
          height: 11px; } }
    .commission__pagination .swiper-pagination-bullet-active {
      background-color: #2d5eff; }
  .commission__all {
    position: absolute;
    right: 0;
    top: calc(-2 * var(--width-multiplier));
    z-index: 2;
    height: calc(15 * var(--width-multiplier));
    font-size: calc(12 * var(--width-multiplier));
    line-height: 1.25;
    text-decoration: underline;
    color: #2d5eff;
    -webkit-transition: color 0.2s;
    -o-transition: color 0.2s;
    transition: color 0.2s; }
    .commission__all:active {
      color: #211982; }
    .commission__all:disabled {
      color: rgba(45, 94, 255, 0.4); }
    @media (min-width: 768px) and (max-width: 1024px) {
      .commission__all {
        font-size: calc(15 * var(--width-multiplier));
        line-height: 1.13333; } }
    @media (min-width: 1025px) {
      .commission__all {
        top: calc(-4 * var(--width-multiplier));
        font-size: calc(15 * var(--width-multiplier));
        line-height: 1.13333; }
        .commission__all:hover {
          color: #284aa6; } }
  @media (min-width: 1025px) {
    .commission {
      margin: 0 auto;
      max-width: calc(1440 * var(--width-multiplier)); } }

.events {
  width: 100%; }
  .events__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding: calc(30 * var(--width-multiplier)) calc(20 * var(--width-multiplier)); }
    @media (min-width: 768px) and (max-width: 1024px) {
      .events__container {
        padding: calc(40 * var(--width-multiplier)) calc(30 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .events__container {
        margin: 0 auto;
        padding: calc(80 * var(--width-multiplier)) 0;
        max-width: calc(1360 * var(--width-multiplier)); } }
  .events__title {
    margin: 0 0 calc(12 * var(--width-multiplier)); }
    @media (min-width: 1025px) {
      .events__title {
        margin: 0 0 calc(16 * var(--width-multiplier)); } }
  .events__description {
    margin: 0 0 calc(20 * var(--width-multiplier)); }
    @media (min-width: 768px) and (max-width: 1024px) {
      .events__description {
        margin: 0 0 calc(30 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .events__description {
        margin: 0 0 calc(32 * var(--width-multiplier));
        max-width: calc(900 * var(--width-multiplier)); } }
  .events__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0 calc(16 * var(--width-multiplier)); }
    @media (min-width: 1025px) {
      .events__items {
        overflow: hidden;
        margin: 0 0 calc(26 * var(--width-multiplier)); } }
  .events__item {
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    overflow: hidden;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-radius: calc(20 * var(--width-multiplier));
    width: calc(278 * var(--width-multiplier));
    height: initial;
    background-color: #f0f4ff; }
    .events__item:not(:last-child) {
      margin: 0 calc(10 * var(--width-multiplier)) 0 0; }
    @media (min-width: 768px) and (max-width: 1024px) {
      .events__item {
        width: calc(289 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .events__item {
        width: calc(325 * var(--width-multiplier));
        -webkit-transition: background-color 0.2s;
        -o-transition: background-color 0.2s;
        transition: background-color 0.2s;
        cursor: pointer; }
        .events__item:not(:last-child) {
          margin: 0 calc(20 * var(--width-multiplier)) 0 0; }
        .events__item:hover {
          background-color: #d9ebff; }
        .events__item:active {
          background-color: #c0ddff; } }
  .events__event-link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5; }
  .events__item-image {
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: calc(124 * var(--width-multiplier));
    background-color: #dce0eb; }
    .events__item-image picture,
    .events__item-image img {
      width: 100%;
      height: 100%;
      font-family: "object-fit: cover; object-position: center center";
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: center center;
         object-position: center center; }
    @media (min-width: 768px) and (max-width: 1024px) {
      .events__item-image {
        height: calc(125 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .events__item-image {
        width: 100%;
        height: calc(160 * var(--width-multiplier)); } }
  .events__item-content {
    padding: calc(12 * var(--width-multiplier)) calc(16 * var(--width-multiplier)) calc(16 * var(--width-multiplier));
    width: 100%;
    height: 100%; }
    @media (min-width: 1025px) {
      .events__item-content {
        padding: calc(24 * var(--width-multiplier)) calc(16 * var(--width-multiplier)) calc(28 * var(--width-multiplier)); } }
  .events__item-title {
    margin: 0 0 calc(6 * var(--width-multiplier)); }
    @media (min-width: 1025px) {
      .events__item-title {
        margin: 0 0 calc(8 * var(--width-multiplier)); } }
  .events__nav {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 1;
    height: calc(15 * var(--width-multiplier)); }
  .events__button-prev {
    position: static;
    margin: 0;
    background-color: #2d5eff;
    height: 21px;
    width: 21px;
    margin-right: 10px;
    border-radius: 100%; }
    .events__button-prev::after {
      font-size: 11px;
      color: #fff; }
    .events__button-prev.swiper-button-disabled {
      background-color: #BEBEBE; }
  .events__button-next {
    position: static;
    margin: 0;
    background-color: #2d5eff;
    height: 21px;
    width: 21px;
    margin-left: 10px;
    border-radius: 100%; }
    .events__button-next::after {
      font-size: 11px;
      color: #fff; }
    .events__button-next.swiper-button-disabled {
      background-color: #BEBEBE; }
  .events__pagination {
    bottom: 0 !important;
    z-index: 1;
    width: auto !important;
    position: static; }
    .events__pagination .swiper-pagination-bullet {
      margin: 0 5px !important;
      opacity: 1;
      background-color: #95aeff; }
      @media (min-width: 1025px) {
        .events__pagination .swiper-pagination-bullet {
          margin: 0 10px !important;
          width: 11px;
          height: 11px; } }
    .events__pagination .swiper-pagination-bullet-active {
      background-color: #2d5eff; }
  .events__all {
    position: absolute;
    right: 0;
    top: calc(-2 * var(--width-multiplier));
    z-index: 2;
    height: calc(15 * var(--width-multiplier));
    font-size: calc(12 * var(--width-multiplier));
    line-height: 1.25;
    text-decoration: underline;
    color: #2d5eff;
    -webkit-transition: color 0.2s;
    -o-transition: color 0.2s;
    transition: color 0.2s; }
    .events__all:active {
      color: #211982; }
    .events__all:disabled {
      color: rgba(45, 94, 255, 0.4); }
    @media (min-width: 768px) and (max-width: 1024px) {
      .events__all {
        font-size: calc(15 * var(--width-multiplier));
        line-height: 1.13333; } }
    @media (min-width: 1025px) {
      .events__all {
        top: calc(-4 * var(--width-multiplier));
        font-size: calc(15 * var(--width-multiplier));
        line-height: 1.13333; }
        .events__all:hover {
          color: #284aa6; } }
  @media (min-width: 1025px) {
    .events {
      margin: 0 auto;
      max-width: calc(1440 * var(--width-multiplier)); } }

.contact {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%; }
  .contact__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    padding: 0 calc(20 * var(--width-multiplier)); }
    @media (min-width: 768px) and (max-width: 1024px) {
      .contact__container {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        padding: 0 0 0 calc(20 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .contact__container {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        padding: 0 0 0 calc(40 * var(--width-multiplier)); } }
    @media (max-width: 767px) {
      .contact__container {
        padding-top: calc(40 * var(--width-multiplier));
        min-height: calc(750 * var(--width-multiplier)); } }
  .contact__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .contact__image {
    position: relative;
    width: calc(300 * var(--width-multiplier));
    height: calc(300 * var(--width-multiplier));
    cursor: pointer; }
    .contact__image svg {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      -webkit-transform: scale(120%);
          -ms-transform: scale(120%);
              transform: scale(120%); }
      @media (min-width: 768px) and (max-width: 1024px) {
        .contact__image svg {
          -webkit-transform: scale(100%);
              -ms-transform: scale(100%);
                  transform: scale(100%); } }
      @media (min-width: 1025px) {
        .contact__image svg {
          -webkit-transform: scale(100%);
              -ms-transform: scale(100%);
                  transform: scale(100%); } }
    @media (min-width: 768px) and (max-width: 1024px) {
      .contact__image {
        width: calc(450 * var(--width-multiplier));
        height: calc(450 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .contact__image {
        -webkit-transform: translateX(10%);
            -ms-transform: translateX(10%);
                transform: translateX(10%);
        width: calc(700 * var(--width-multiplier));
        height: calc(700 * var(--width-multiplier)); } }
  .contact__list {
    font-size: calc(14 * var(--width-multiplier));
    line-height: calc(20 * var(--width-multiplier));
    margin-bottom: calc(30 * var(--width-multiplier));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(5 * var(--width-multiplier));
    color: #fff; }
    @media (min-width: 1025px) {
      .contact__list {
        font-size: calc(16 * var(--width-multiplier));
        line-height: calc(24 * var(--width-multiplier)); } }
  .contact__item {
    position: relative;
    padding-left: calc(20 * var(--width-multiplier)); }
    .contact__item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 5px;
      width: 8px;
      height: 8px;
      background-color: #1DED78;
      border-radius: 50%; }
  .contact #circle1 {
    -webkit-animation: wave .9s infinite;
            animation: wave .9s infinite;
    -webkit-animation-delay: .75s;
            animation-delay: .75s; }
  .contact #circle2 {
    -webkit-animation: wave .9s infinite;
            animation: wave .9s infinite;
    -webkit-animation-delay: .7s;
            animation-delay: .7s; }
  .contact #circle3 {
    -webkit-animation: wave .9s infinite;
            animation: wave .9s infinite;
    -webkit-animation-delay: .65s;
            animation-delay: .65s; }
  .contact #circle4 {
    -webkit-animation: wave .9s infinite;
            animation: wave .9s infinite;
    -webkit-animation-delay: .6s;
            animation-delay: .6s; }
  .contact #circle5 {
    -webkit-animation: wave .9s infinite;
            animation: wave .9s infinite;
    -webkit-animation-delay: .55s;
            animation-delay: .55s; }
  .contact #circle6 {
    -webkit-animation: wave .9s infinite;
            animation: wave .9s infinite;
    -webkit-animation-delay: .5s;
            animation-delay: .5s; }
  .contact #circle7 {
    -webkit-animation: wave .9s infinite;
            animation: wave .9s infinite;
    -webkit-animation-delay: .45s;
            animation-delay: .45s; }
  .contact #circle8 {
    -webkit-animation: wave .9s infinite;
            animation: wave .9s infinite;
    -webkit-animation-delay: .4s;
            animation-delay: .4s; }
  .contact #circle9 {
    -webkit-animation: wave .9s infinite;
            animation: wave .9s infinite;
    -webkit-animation-delay: .35s;
            animation-delay: .35s; }
  .contact #circle10 {
    -webkit-animation: wave .9s infinite;
            animation: wave .9s infinite;
    -webkit-animation-delay: .3s;
            animation-delay: .3s; }
  .contact #circle11 {
    -webkit-animation: wave .9s infinite;
            animation: wave .9s infinite;
    -webkit-animation-delay: .25s;
            animation-delay: .25s; }
  .contact #circle12 {
    -webkit-animation: wave .9s infinite;
            animation: wave .9s infinite;
    -webkit-animation-delay: .2s;
            animation-delay: .2s; }
  .contact #circle13 {
    -webkit-animation: wave .9s infinite;
            animation: wave .9s infinite;
    -webkit-animation-delay: .15s;
            animation-delay: .15s; }
  .contact #circle14 {
    -webkit-animation: wave .9s infinite;
            animation: wave .9s infinite;
    -webkit-animation-delay: .1s;
            animation-delay: .1s; }
  .contact #circle15 {
    -webkit-animation: wave .9s infinite;
            animation: wave .9s infinite;
    -webkit-animation-delay: .05s;
            animation-delay: .05s; }
  .contact #circle16 {
    -webkit-animation: wave .9s infinite;
            animation: wave .9s infinite; }

@-webkit-keyframes wave {
  0% {
    -webkit-transform: scale(1) translate(0, 0);
            transform: scale(1) translate(0, 0); }
  10% {
    -webkit-transform: scale(1.01) translate(calc(-2 * var(--width-multiplier)), calc(-2 * var(--width-multiplier)));
            transform: scale(1.01) translate(calc(-2 * var(--width-multiplier)), calc(-2 * var(--width-multiplier))); }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
            transform: scale(1) translate(0, 0); } }

@keyframes wave {
  0% {
    -webkit-transform: scale(1) translate(0, 0);
            transform: scale(1) translate(0, 0); }
  10% {
    -webkit-transform: scale(1.01) translate(calc(-2 * var(--width-multiplier)), calc(-2 * var(--width-multiplier)));
            transform: scale(1.01) translate(calc(-2 * var(--width-multiplier)), calc(-2 * var(--width-multiplier))); }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
            transform: scale(1) translate(0, 0); } }
  .contact__title {
    margin: 0 0 calc(18 * var(--width-multiplier));
    color: #fff;
    font-size: calc(36 * var(--width-multiplier));
    line-height: calc(44 * var(--width-multiplier)); }
    @media (min-width: 768px) and (max-width: 1024px) {
      .contact__title {
        margin: 0 0 calc(20 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .contact__title {
        margin: 0 0 calc(16 * var(--width-multiplier)); } }
  .contact__description {
    font-weight: 700;
    margin: 0 0 calc(8 * var(--width-multiplier));
    max-width: calc(100% - calc(11 * var(--width-multiplier)));
    color: #fff; }
    @media (min-width: 768px) and (max-width: 1024px) {
      .contact__description {
        max-width: calc(484 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .contact__description {
        max-width: calc(484 * var(--width-multiplier)); } }
  .contact__button {
    width: calc(163 * var(--width-multiplier));
    height: calc(40 * var(--width-multiplier));
    z-index: 1; }
    .contact__button button {
      font-weight: 700; }
    @media (min-width: 768px) and (max-width: 1024px) {
      .contact__button {
        width: calc(210 * var(--width-multiplier));
        height: calc(50 * var(--width-multiplier)); }
        .contact__button:first-child {
          margin: 0 calc(20 * var(--width-multiplier)) 0 0; } }
    @media (min-width: 1025px) {
      .contact__button {
        width: calc(210 * var(--width-multiplier));
        height: calc(50 * var(--width-multiplier)); }
        .contact__button:first-child {
          margin: 0 calc(20 * var(--width-multiplier)) 0 0; } }
  @media (min-width: 1025px) {
    .contact {
      margin: 0 auto;
      max-width: calc(1440 * var(--width-multiplier)); } }

.footer {
  padding: 0 calc(20 * var(--width-multiplier));
  width: 100%;
  font-size: calc(10 * var(--width-multiplier));
  line-height: 1.2;
  color: #c5c4ed;
  background-color: #fcfcfc; }
  .footer__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-top: 1px solid #e1e7fc;
    padding: calc(16 * var(--width-multiplier)) 0; }
    @media (min-width: 768px) and (max-width: 1024px) {
      .footer__container {
        padding: calc(29 * var(--width-multiplier)) 0; } }
    @media (min-width: 1025px) {
      .footer__container {
        padding: calc(29 * var(--width-multiplier)) 0; } }

@media (max-width: 767px) and (orientation: portrait) {
  .footer__copyright {
    margin: 0 0 calc(10 * var(--width-multiplier)); } }
  .footer__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .footer__link-desktop {
    position: relative;
    z-index: 1;
    font-weight: 700;
    font-size: 14px;
    text-align: right; }
  .footer__link {
    position: relative;
    z-index: 1;
    margin: 0 calc(20 * var(--width-multiplier)) 0 0; }
    .footer__link::before {
      content: "";
      position: absolute;
      right: 0;
      bottom: calc(2 * var(--width-multiplier));
      width: 100%;
      height: 1px;
      background-color: #c5c4ed; }
    .footer__link:last-child {
      margin: 0; }
    @media (min-width: 768px) and (max-width: 1024px) {
      .footer__link {
        margin: 0 calc(30 * var(--width-multiplier)) 0 0; } }
    @media (min-width: 1025px) {
      .footer__link {
        display: none; } }

@media (max-width: 767px) and (orientation: portrait) {
  .footer {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; } }
  @media (min-width: 768px) and (max-width: 1024px) {
    .footer {
      padding: 0 calc(31 * var(--width-multiplier));
      font-size: calc(14 * var(--width-multiplier));
      line-height: 1.42857; } }
  @media (min-width: 1025px) {
    .footer {
      padding: 0 calc(40 * var(--width-multiplier));
      font-size: calc(14 * var(--width-multiplier));
      line-height: 1.42857; } }

.join-form {
  display: none;
  overflow-y: auto; }
  .join-form.is-active {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0); }
  @media (max-width: 767px) {
    .join-form {
      position: fixed;
      right: 0;
      left: 0;
      top: 0;
      z-index: 20;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      width: calc(375 * var(--width-multiplier));
      height: 100vh;
      background-color: #141225;
      -webkit-transform: translateX(101%);
          -ms-transform: translateX(101%);
              transform: translateX(101%);
      -webkit-transition: -webkit-transform 0.2s;
      transition: -webkit-transform 0.2s;
      -o-transition: transform 0.2s;
      transition: transform 0.2s;
      transition: transform 0.2s, -webkit-transform 0.2s; } }
  @media (max-width: 767px) and (orientation: landscape) {
    .join-form {
      overflow-y: scroll;
      padding: calc(97 * var(--width-multiplier)) 0 calc(40 * var(--width-multiplier)) calc(60 * var(--width-multiplier)); } }
  @media (min-width: 768px) and (max-width: 1024px) {
    .join-form {
      position: fixed;
      right: 0;
      top: 0;
      z-index: 20;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      width: calc(379 * var(--width-multiplier));
      height: 100vh;
      background-color: #141225;
      -webkit-transform: translateX(101%);
          -ms-transform: translateX(101%);
              transform: translateX(101%);
      -webkit-transition: -webkit-transform 0.2s;
      transition: -webkit-transform 0.2s;
      -o-transition: transform 0.2s;
      transition: transform 0.2s;
      transition: transform 0.2s, -webkit-transform 0.2s; } }
  @media (min-width: 1025px) {
    .join-form {
      position: fixed;
      right: 0;
      top: 0;
      z-index: 20;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      width: calc(500 * var(--width-multiplier));
      height: 100vh;
      background-color: #141225;
      -webkit-transform: translateX(101%);
          -ms-transform: translateX(101%);
              transform: translateX(101%);
      -webkit-transition: -webkit-transform 0.2s;
      transition: -webkit-transform 0.2s;
      -o-transition: transform 0.2s;
      transition: transform 0.2s;
      transition: transform 0.2s, -webkit-transform 0.2s; } }
  .join-form__content {
    position: relative;
    padding: calc(75 * var(--width-multiplier)) calc(20 * var(--width-multiplier)) calc(40 * var(--width-multiplier));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(16 * var(--width-multiplier));
    -webkit-transition: opacity 0.4s, visibility 0.4s;
    -o-transition: opacity 0.4s, visibility 0.4s;
    transition: opacity 0.4s, visibility 0.4s; }
    .join-form__content.hidden {
      visibility: hidden;
      opacity: 0;
      height: 0; }
    @media (min-width: 768px) and (max-width: 1024px) {
      .join-form__content {
        padding: calc(76 * var(--width-multiplier)) calc(20 * var(--width-multiplier)) calc(32 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .join-form__content {
        padding: calc(70 * var(--width-multiplier)) calc(20 * var(--width-multiplier)); } }
  .join-form__thanks {
    margin: auto 0;
    padding: 0 calc(20 * var(--width-multiplier)); }
    .join-form__thanks.hidden {
      visibility: hidden;
      opacity: 0; }
  .join-form__text {
    font-size: calc(16 * var(--width-multiplier));
    line-height: 1.25;
    margin-bottom: calc(16 * var(--width-multiplier));
    color: #fff;
    -webkit-transition: opacity 0.4s, visibility 0.4s;
    -o-transition: opacity 0.4s, visibility 0.4s;
    transition: opacity 0.4s, visibility 0.4s; }
  .join-form__desc {
    color: #fff;
    font-size: calc(12 * var(--width-multiplier)); }
  .join-form__fields-title {
    font-weight: 700;
    font-size: calc(12 * var(--width-multiplier));
    color: #fff;
    margin-bottom: calc(8 * var(--width-multiplier)); }
  .join-form__close {
    position: absolute;
    top: calc(39 * var(--width-multiplier));
    right: calc(20 * var(--width-multiplier));
    text-align: end;
    z-index: 50;
    cursor: pointer; }
    .join-form__close svg {
      width: 18px;
      height: 18px; }
    @media (max-width: 767px) {
      .join-form__close {
        top: calc(25 * var(--width-multiplier)); } }
  .join-form__fields {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(12 * var(--width-multiplier)); }
  .join-form__title {
    font-weight: 700;
    font-size: calc(24 * var(--width-multiplier));
    line-height: calc(29 * var(--width-multiplier));
    color: #fff; }
  .join-form__button {
    width: calc(220 * var(--width-multiplier));
    height: calc(40 * var(--width-multiplier)); }
  .join-form__field-wrapper {
    position: relative;
    width: 100%;
    background-color: #fcfcfc;
    border-radius: calc(5 * var(--width-multiplier)); }
  .join-form__field {
    width: 100%;
    padding: calc(10 * var(--width-multiplier)) calc(16 * var(--width-multiplier));
    border: calc(1.5 * var(--width-multiplier)) solid transparent;
    border-radius: calc(5 * var(--width-multiplier));
    font-size: calc(12 * var(--width-multiplier)); }
    .join-form__field::-webkit-input-placeholder {
      font-size: calc(12 * var(--width-multiplier));
      color: #000; }
    .join-form__field::-moz-placeholder {
      font-size: calc(12 * var(--width-multiplier));
      color: #000; }
    .join-form__field:-ms-input-placeholder {
      font-size: calc(12 * var(--width-multiplier));
      color: #000; }
    .join-form__field::-ms-input-placeholder {
      font-size: calc(12 * var(--width-multiplier));
      color: #000; }
    .join-form__field::placeholder {
      font-size: calc(12 * var(--width-multiplier));
      color: #000; }
    .join-form__field.is-invalid {
      -o-text-overflow: ellipsis;
         text-overflow: ellipsis;
      padding-right: calc(136 * var(--width-multiplier));
      border-color: #FF0000 !important;
      background: transparent url("../images/sprites/svg/field_error.svg") no-repeat right calc(0.375em + 0.1875rem) center;
      background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); }
      .join-form__field.is-invalid::-webkit-input-placeholder {
        color: #FF0000 !important; }
      .join-form__field.is-invalid::-moz-placeholder {
        color: #FF0000 !important; }
      .join-form__field.is-invalid:-ms-input-placeholder {
        color: #FF0000 !important; }
      .join-form__field.is-invalid::-ms-input-placeholder {
        color: #FF0000 !important; }
      .join-form__field.is-invalid::placeholder {
        color: #FF0000 !important; }
    @media (min-width: 768px) and (max-width: 1024px) {
      .join-form__field {
        padding: calc(15 * var(--width-multiplier)) calc(16 * var(--width-multiplier));
        font-size: calc(14 * var(--width-multiplier)); }
        .join-form__field::-webkit-input-placeholder {
          font-size: calc(14 * var(--width-multiplier)); }
        .join-form__field::-moz-placeholder {
          font-size: calc(14 * var(--width-multiplier)); }
        .join-form__field:-ms-input-placeholder {
          font-size: calc(14 * var(--width-multiplier)); }
        .join-form__field::-ms-input-placeholder {
          font-size: calc(14 * var(--width-multiplier)); }
        .join-form__field::placeholder {
          font-size: calc(14 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .join-form__field {
        padding: calc(15 * var(--width-multiplier)) calc(16 * var(--width-multiplier));
        font-size: calc(14 * var(--width-multiplier)); }
        .join-form__field::-webkit-input-placeholder {
          font-size: calc(14 * var(--width-multiplier)); }
        .join-form__field::-moz-placeholder {
          font-size: calc(14 * var(--width-multiplier)); }
        .join-form__field:-ms-input-placeholder {
          font-size: calc(14 * var(--width-multiplier)); }
        .join-form__field::-ms-input-placeholder {
          font-size: calc(14 * var(--width-multiplier)); }
        .join-form__field::placeholder {
          font-size: calc(14 * var(--width-multiplier)); } }
  .join-form__policy, .join-form__dataProcessing {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: calc(8 * var(--width-multiplier));
    font-size: calc(12 * var(--width-multiplier));
    color: #fff; }
    .join-form__policy label a, .join-form__dataProcessing label a {
      text-decoration: underline; }
    .join-form__policy label, .join-form__dataProcessing label {
      position: relative;
      cursor: pointer; }
    .join-form__policy label + .just-validate-error-label, .join-form__dataProcessing label + .just-validate-error-label {
      display: none; }
    .join-form__policy label::before, .join-form__dataProcessing label::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: calc(-30 * var(--width-multiplier));
      width: calc(100 * var(--width-multiplier)); }
  .join-form__checkbox-wrapper {
    position: relative;
    height: calc(20 * var(--width-multiplier));
    width: calc(20 * var(--width-multiplier)); }
    .join-form__checkbox-wrapper input {
      display: none; }
      .join-form__checkbox-wrapper input:checked + .join-form__checkbox {
        background: transparent url("../images/sprites/svg/checked.svg") no-repeat center center;
        background-size: 70%; }
      .join-form__checkbox-wrapper input.is-invalid + .join-form__checkbox {
        border: calc(1 * var(--width-multiplier)) solid #FF0000 !important; }
  .join-form__checkbox {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: calc(1 * var(--width-multiplier)) solid #fff;
    border-radius: calc(4 * var(--width-multiplier)); }
  .join-form .just-validate-error-label {
    position: absolute;
    top: 0;
    bottom: 0;
    right: calc(30 * var(--width-multiplier));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: calc(8 * var(--width-multiplier));
    font-size: calc(10 * var(--width-multiplier));
    cursor: text;
    color: #FF0000 !important; }
    @media (min-width: 768px) and (max-width: 1024px) {
      .join-form .just-validate-error-label {
        right: calc(32 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .join-form .just-validate-error-label {
        right: calc(32 * var(--width-multiplier)); } }
  .join-form__postfix-img {
    -webkit-transform: translateY(calc(1 * var(--width-multiplier)));
        -ms-transform: translateY(calc(1 * var(--width-multiplier)));
            transform: translateY(calc(1 * var(--width-multiplier))); }
    .join-form__postfix-img svg {
      max-height: calc(16 * var(--width-multiplier));
      max-width: calc(16 * var(--width-multiplier)); }
  .join-form__field-wrapper.textarea {
    height: calc(135 * var(--width-multiplier)); }
  .join-form textarea.join-form__field {
    resize: none;
    width: 100%;
    height: 100%; }
    .join-form textarea.join-form__field::-webkit-input-placeholder {
      color: #000000; }
    .join-form textarea.join-form__field::-moz-placeholder {
      color: #000000; }
    .join-form textarea.join-form__field:-ms-input-placeholder {
      color: #000000; }
    .join-form textarea.join-form__field::-ms-input-placeholder {
      color: #000000; }
    .join-form textarea.join-form__field::placeholder {
      color: #000000; }

[data-animate="fade-up"]:not(.is-animate),
[data-animate-group="fade-up"]:not(.is-animate) {
  opacity: 0;
  -webkit-transform: translateY(50px);
      -ms-transform: translateY(50px);
          transform: translateY(50px); }

[data-animate="fade-left"]:not(.is-animate) {
  opacity: 0;
  -webkit-transform: translateX(30px);
      -ms-transform: translateX(30px);
          transform: translateX(30px); }

[data-animate="fade-up"],
[data-animate-group="fade-up"],
[data-animate="fade-left"] {
  will-change: transform, opacity; }

.work-groups {
  width: 100%; }
  .work-groups__text-wrapper {
    padding: calc(30 * var(--width-multiplier)) calc(20 * var(--width-multiplier)) 0; }
    @media (min-width: 768px) and (max-width: 1024px) {
      .work-groups__text-wrapper {
        padding: calc(40 * var(--width-multiplier)) calc(30 * var(--width-multiplier)) 0; } }
    @media (min-width: 1025px) {
      .work-groups__text-wrapper {
        margin: 0 auto;
        padding: calc(80 * var(--width-multiplier)) 0 0;
        max-width: calc(1360 * var(--width-multiplier)); } }
  .work-groups__title {
    margin: 0 0 calc(12 * var(--width-multiplier)); }
    @media (min-width: 1025px) {
      .work-groups__title {
        margin: 0 0 calc(16 * var(--width-multiplier)); } }
  .work-groups__description {
    margin: 0 0 calc(20 * var(--width-multiplier)); }
    @media (min-width: 768px) and (max-width: 1024px) {
      .work-groups__description {
        margin: 0 0 calc(30 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .work-groups__description {
        margin: 0 0 calc(32 * var(--width-multiplier));
        max-width: calc(900 * var(--width-multiplier)); } }
  .work-groups__description_1 {
    margin-bottom: calc(8 * var(--width-multiplier)); }
  .work-groups__groups {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(20 * var(--width-multiplier)); }
    @media (min-width: 768px) and (max-width: 1024px) {
      .work-groups__groups {
        gap: calc(32 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .work-groups__groups {
        gap: calc(24 * var(--width-multiplier)); } }
    .work-groups__groups img {
      width: 100%; }
  .work-groups__work-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: calc(16 * var(--width-multiplier));
    background-color: #F7F7F7;
    padding: calc(30 * var(--width-multiplier)) calc(20 * var(--width-multiplier)); }
    @media (max-width: 767px) {
      .work-groups__work-group {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
    @media (min-width: 768px) and (max-width: 1024px) {
      .work-groups__work-group {
        padding: calc(30 * var(--width-multiplier)) calc(30 * var(--width-multiplier));
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        gap: calc(60 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .work-groups__work-group {
        padding: calc(30 * var(--width-multiplier)) calc(40 * var(--width-multiplier));
        gap: calc(40 * var(--width-multiplier)); } }
  .work-groups__group-title {
    font-weight: 700;
    font-size: calc(16 * var(--width-multiplier));
    line-height: calc(24 * var(--width-multiplier));
    margin-bottom: calc(8 * var(--width-multiplier)); }
    @media (min-width: 768px) and (max-width: 1024px) {
      .work-groups__group-title {
        margin-bottom: calc(4 * var(--width-multiplier)); } }
  .work-groups__group-description {
    font-weight: 400;
    font-size: calc(14 * var(--width-multiplier));
    line-height: calc(21 * var(--width-multiplier));
    margin-bottom: calc(12 * var(--width-multiplier)); }
    @media (min-width: 768px) and (max-width: 1024px) {
      .work-groups__group-description {
        margin-bottom: calc(16 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .work-groups__group-description {
        margin-bottom: calc(10 * var(--width-multiplier)); } }
  .work-groups__group-crew-title {
    font-weight: 700;
    font-size: calc(14 * var(--width-multiplier));
    line-height: calc(21 * var(--width-multiplier));
    margin-bottom: calc(4 * var(--width-multiplier)); }
  .work-groups__group-crew {
    font-weight: 400;
    font-size: calc(14 * var(--width-multiplier));
    line-height: calc(21 * var(--width-multiplier)); }
  .work-groups__supervisors {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: calc(11 * var(--width-multiplier)); }
    @media (min-width: 768px) and (max-width: 1024px) {
      .work-groups__supervisors {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: calc(16 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .work-groups__supervisors {
        gap: calc(25 * var(--width-multiplier)); } }
  .work-groups__image {
    position: relative;
    width: calc(162 * var(--width-multiplier));
    height: calc(147 * var(--width-multiplier));
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: calc(8 * var(--width-multiplier)); }
    @media (min-width: 768px) and (max-width: 1024px) {
      .work-groups__image {
        width: calc(169 * var(--width-multiplier));
        height: calc(153 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .work-groups__image {
        width: calc(265 * var(--width-multiplier));
        height: calc(240 * var(--width-multiplier)); } }
    .work-groups__image:hover .work-groups__group-desc, .work-groups__image:active .work-groups__group-desc {
      opacity: 1;
      visibility: visible; }
  .work-groups__info {
    position: absolute;
    top: calc(8 * var(--width-multiplier));
    right: calc(8 * var(--width-multiplier));
    width: calc(16 * var(--width-multiplier));
    height: calc(16 * var(--width-multiplier)); }
    @media (min-width: 1025px) {
      .work-groups__info {
        top: calc(12 * var(--width-multiplier));
        right: calc(12 * var(--width-multiplier)); } }
  .work-groups__group-desc {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 calc(15 * var(--width-multiplier));
    text-align: center;
    font-size: calc(8 * var(--width-multiplier));
    line-height: calc(11 * var(--width-multiplier));
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    -webkit-transition: opacity .2s ease, visibility .2s ease;
    -o-transition: opacity .2s ease, visibility .2s ease;
    transition: opacity .2s ease, visibility .2s ease;
    opacity: 0;
    visibility: hidden; }
    @media (min-width: 1025px) {
      .work-groups__group-desc {
        padding: 0 calc(20 * var(--width-multiplier));
        font-size: calc(12 * var(--width-multiplier));
        line-height: calc(19 * var(--width-multiplier)); } }
  .work-groups__supervisor-title {
    font-weight: 700;
    font-size: calc(10 * var(--width-multiplier));
    margin-bottom: calc(5 * var(--width-multiplier)); }
    @media (min-width: 1025px) {
      .work-groups__supervisor-title {
        font-size: calc(14 * var(--width-multiplier)); } }
  .work-groups__supervisor-name {
    font-size: calc(10 * var(--width-multiplier)); }
    @media (min-width: 1025px) {
      .work-groups__supervisor-name {
        font-size: calc(14 * var(--width-multiplier)); } }

.about-code {
  display: none;
  overflow-y: auto; }
  .about-code.is-active {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0); }
  @media (max-width: 767px) {
    .about-code {
      position: fixed;
      right: 0;
      left: 0;
      top: 0;
      z-index: 20;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      width: 100%;
      height: 100vh;
      background-color: #141225;
      -webkit-transform: translateX(101%);
          -ms-transform: translateX(101%);
              transform: translateX(101%);
      -webkit-transition: -webkit-transform 0.2s;
      transition: -webkit-transform 0.2s;
      -o-transition: transform 0.2s;
      transition: transform 0.2s;
      transition: transform 0.2s, -webkit-transform 0.2s; } }
  @media (max-width: 767px) and (orientation: landscape) {
    .about-code {
      overflow-y: scroll;
      padding: calc(97 * var(--width-multiplier)) 0 calc(40 * var(--width-multiplier)) calc(60 * var(--width-multiplier)); } }
  @media (min-width: 768px) and (max-width: 1024px) {
    .about-code {
      position: fixed;
      right: 0;
      top: 0;
      z-index: 20;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      width: calc(618 * var(--width-multiplier));
      height: 100vh;
      background-color: #141225;
      -webkit-transform: translateX(101%);
          -ms-transform: translateX(101%);
              transform: translateX(101%);
      -webkit-transition: -webkit-transform 0.2s;
      transition: -webkit-transform 0.2s;
      -o-transition: transform 0.2s;
      transition: transform 0.2s;
      transition: transform 0.2s, -webkit-transform 0.2s; } }
  @media (min-width: 1025px) {
    .about-code {
      position: fixed;
      right: 0;
      top: 0;
      z-index: 20;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      width: calc(618 * var(--width-multiplier));
      height: 100vh;
      background-color: #141225;
      -webkit-transform: translateX(101%);
          -ms-transform: translateX(101%);
              transform: translateX(101%);
      -webkit-transition: -webkit-transform 0.2s;
      transition: -webkit-transform 0.2s;
      -o-transition: transform 0.2s;
      transition: transform 0.2s;
      transition: transform 0.2s, -webkit-transform 0.2s; } }
  .about-code__content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: calc(50 * var(--width-multiplier)) calc(20 * var(--width-multiplier));
    color: #fff; }
    @media (min-width: 768px) and (max-width: 1024px) {
      .about-code__content {
        padding: calc(50 * var(--width-multiplier)) calc(20 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .about-code__content {
        padding: calc(50 * var(--width-multiplier)) calc(20 * var(--width-multiplier)); } }
  .about-code__whom-title {
    font-weight: 700;
    font-size: calc(16 * var(--width-multiplier));
    margin-bottom: calc(8 * var(--width-multiplier)); }
  .about-code__whom-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: calc(10 * var(--width-multiplier)); }
    @media (max-width: 767px) {
      .about-code__whom-list {
        gap: calc(10 * var(--width-multiplier));
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .about-code__whom-desc {
    font-size: calc(12 * var(--width-multiplier));
    margin-bottom: calc(32 * var(--width-multiplier)); }
    @media (max-width: 767px) {
      .about-code__whom-desc {
        margin-bottom: calc(24 * var(--width-multiplier)); } }
  .about-code__goals {
    margin-bottom: calc(24 * var(--width-multiplier)); }
    @media (max-width: 767px) {
      .about-code__goals {
        margin-bottom: calc(16 * var(--width-multiplier)); } }
  .about-code__goal-title {
    font-weight: 700;
    font-size: calc(16 * var(--width-multiplier));
    margin-bottom: calc(11 * var(--width-multiplier)); }
    @media (max-width: 767px) {
      .about-code__goal-title {
        margin-bottom: calc(23 * var(--width-multiplier)); } }
  .about-code__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(10 * var(--width-multiplier)); }
  .about-code__item {
    position: relative;
    font-size: calc(12 * var(--width-multiplier));
    padding-left: calc(20 * var(--width-multiplier)); }
    .about-code__item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 5px;
      width: 8px;
      height: 8px;
      background-color: #1DED78;
      border-radius: 50%; }
  .about-code__button {
    width: calc(220 * var(--width-multiplier));
    height: calc(40 * var(--width-multiplier)); }
  .about-code__close {
    position: absolute;
    top: calc(16 * var(--width-multiplier));
    right: calc(16 * var(--width-multiplier));
    padding: 7px;
    text-align: end;
    cursor: pointer;
    z-index: 50; }
    .about-code__close svg {
      width: 18px;
      height: 18px; }
    @media (min-width: 768px) and (max-width: 1024px) {
      .about-code__close {
        top: calc(10 * var(--width-multiplier));
        right: calc(11 * var(--width-multiplier)); } }
    @media (min-width: 1025px) {
      .about-code__close {
        top: calc(10 * var(--width-multiplier));
        right: calc(11 * var(--width-multiplier)); } }

/*# sourceMappingURL=main.css.map */
