<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@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);
* =&gt; (xs: 10px inherit inherit inherit, md: 20px inherit inherit inherit)
* @include margins($spacer-top-only);
*
* $spacer-bottom-only: breakpointPickCssNth($spacer, 3);
* =&gt; (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);
* =&gt; (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);
* =&gt; (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("&lt;svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"&gt;...&lt;/svg&gt;");
*/
/**
* 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: url("../fonts/AvenirNextCyr-Regular/AvenirNextCyr-Regular.woff2") format("woff2"), url("../fonts/AvenirNextCyr-Regular/AvenirNextCyr-Regular.woff") format("woff");
  font-family: "Avenir Next Cyr";
  font-weight: 400;
  font-style: normal;
  font-display: swap; }

@font-face {
  src: url("../fonts/AvenirNextCyr-Regular/AvenirNextCyr-Bold.woff2") format("woff2"), url("../fonts/AvenirNextCyr-Regular/AvenirNextCyr-Bold.woff") format("woff");
  font-family: "Avenir Next Cyr";
  font-weight: 750;
  font-style: normal;
  font-display: swap; }

@font-face {
  src: url("../fonts/AvenirNextCyr-Regular/AvenirNextCyr-Demi.woff2") format("woff2"), url("../fonts/AvenirNextCyr-Regular/AvenirNextCyr-Demi.woff") format("woff");
  font-family: "Avenir Next Cyr";
  font-weight: 600;
  font-style: normal;
  font-display: swap; }

@font-face {
  src: url("../fonts/OpenSans/OpenSans-SemiBold.woff2") format("woff2"), url("../fonts/OpenSans/OpenSans-SemiBold.woff") format("woff");
  font-family: "Open Sans";
  font-weight: 600;
  font-style: normal;
  font-display: swap; }

@font-face {
  src: url("../fonts/OpenSans/OpenSans-Regular.woff2") format("woff2"), url("../fonts/OpenSans/OpenSans-Regular.woff") format("woff");
  font-family: "Open Sans";
  font-weight: 400;
  font-style: normal;
  font-display: swap; }

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

@font-face {
  src: url("../fonts/Roboto/Roboto-Medium.woff2") format("woff2"), url("../fonts/Roboto/Roboto-Medium.woff") format("woff");
  font-family: "Roboto";
  font-weight: 500;
  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; }

@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") format("woff");
  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 &gt; .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 &gt; .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */ }
  .swiper-css-mode &gt; .swiper-wrapper::-webkit-scrollbar {
    display: none; }

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

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

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

.swiper-centered &gt; .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 &gt; .swiper-wrapper &gt; .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before); }

.swiper-centered.swiper-horizontal &gt; .swiper-wrapper::before {
  height: 100%;
  width: var(--swiper-centered-offset-after); }

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

.swiper-centered.swiper-vertical &gt; .swiper-wrapper::before {
  width: 100%;
  height: var(--swiper-centered-offset-after); }

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

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

html {
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth; }
  html.has-cursor,
  html.has-cursor * {
    cursor: none !important; }
  html.is-lock-scroll,
  html.is-lock-scroll body {
    overflow: hidden; }

body {
  -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%;
  -webkit-tap-highlight-color: transparent; }

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; }
  @media (max-width: 767px) {
    main {
      overflow: hidden; } }

.grecaptcha-badge {
  /* stylelint-disable-line */
  display: none !important;
  /* stylelint-disable-line declaration-no-important */ }

.title {
  margin: 0;
  margin-bottom: 60px;
  font-family: "Avenir Next Cyr";
  font-weight: 750;
  font-style: normal;
  font-size: 48px;
  line-height: 59px;
  text-align: center;
  color: #224c65; }
  @media (max-width: 767px) {
    .title {
      font-size: 24px;
      line-height: 30px; } }

p {
  margin: 0; }

a,
button {
  outline: none;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer; }

a {
  text-decoration: none;
  color: currentColor; }

svg {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  height: 100%;
  fill: currentColor; }

figure,
picture {
  display: inline-block;
  margin: 0;
  line-height: 0; }
  figure img,
  picture img {
    width: 100%; }

img {
  vertical-align: top;
  max-width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }

img[draggable="false"] {
  pointer-events: none;
  -webkit-user-drag: none; }

fieldset {
  margin: 0;
  border: 0;
  padding: 0; }

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

video {
  outline: none;
  width: 100%;
  height: 100%; }

iframe {
  display: block; }

.btn {
  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;
  margin: 0;
  border: 0;
  padding: 0;
  text-align: center;
  background-color: transparent;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  .btn__content {
    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;
    min-width: 100%;
    color: currentColor;
    -webkit-transform: translateZ(0);
            transform: translateZ(0); }

.js-lazy-load:not(.is-loaded) {
  max-height: 50vh; }

.container {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 0 9.7vw;
  width: 100%;
  max-width: calc(1440px + 9.7vw); }

.site {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  min-height: var(--vh);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear; }

/* stylelint-disable */
/*
* Немедленно переместите любую анимацию в конечную точку, если пользователь установил свое устройство в положение "prefers reduced motion".
* Это может привести к плохим(непреднамеренным) последствиям. Удалите по мере необходимости и напишите свой собственный код для prefers-reduced-motion.
*/
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    -webkit-animation-duration: 0.001s !important;
            animation-duration: 0.001s !important;
    -webkit-animation-delay: 0s !important;
            animation-delay: 0s !important;
    -webkit-transition-duration: 0.001s !important;
         -o-transition-duration: 0.001s !important;
            transition-duration: 0.001s !important;
    -webkit-transition-delay: 0s !important;
         -o-transition-delay: 0s !important;
            transition-delay: 0s !important; } }

/* stylelint-enable */
@media (min-width: 1920px) {
  .container {
    padding: 0 240px;
    max-width: calc(1920px); } }

@media (min-width: 1025px) and (max-width: 1439px) {
  .container {
    padding: 0 4.7vw;
    max-width: 100%; } }

@media (min-width: 768px) and (max-width: 1024px) {
  .container {
    padding: 0 4.7vw;
    max-width: 100%; }
  .title {
    margin-bottom: 40px;
    font-size: 36px;
    line-height: 44px; } }

@media screen and (min-width: 768px) and (max-width: 800px) {
  .container {
    padding: 2.7vw; } }

@media (max-width: 767px) {
  .container {
    padding: 0 9.7vw; } }

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

.is-hide {
  opacity: 0; }

@media (max-width: 1024px) {
  .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; } }

@media (min-width: 1025px) {
  .for-devices {
    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 */
.header {
  position: fixed;
  z-index: 25;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  color: #333;
  background: #fff; }
  .header .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 22px;
    padding-bottom: 20px;
    max-width: 1920px; }
  .header .social {
    display: none; }
  .header__logo {
    z-index: 3;
    width: 120px;
    height: 40px;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in; }
    .header__logo svg {
      width: 120px;
      height: 40px; }
    .header__logo:hover {
      opacity: 0.5; }
  .header__btn {
    display: none; }
  .header__menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    height: 100%; }
  .header__menu-item {
    margin-left: 30px;
    font-family: "Open Sans";
    font-weight: 600;
    font-style: normal;
    font-size: 16px;
    line-height: 22px;
    color: #333;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in; }
    .header__menu-item_active {
      color: #008cd2; }
    .header__menu-item:hover {
      color: #008cd2; }
  .header__menu-bg {
    display: none; }

@media (min-width: 768px) and (max-width: 1024px) {
  .header__menu-item {
    margin-left: 16px; } }

@media (max-width: 767px) {
  .header {
    -webkit-box-shadow: none;
            box-shadow: none; }
    .header .social {
      display: block;
      padding-top: 30px; }
      .header .social button svg {
        width: 40px;
        height: 40px; }
      .header .social__list ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        margin-bottom: 30px; }
      .header .social__caption {
        margin-bottom: 15px;
        font-weight: 400;
        font-style: normal;
        font-size: 12px;
        line-height: 15px;
        text-align: center; }
      .header .social__item {
        margin-right: 16px; }
        .header .social__item:last-child {
          margin-right: 0; }
      .header .social__logo svg {
        margin: 0 auto;
        width: 140px;
        height: 110px; }
    .header .container {
      padding-top: 12px;
      padding-bottom: 12px; }
      .header .container::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        z-index: 3;
        width: 100%;
        height: 45px;
        -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        background: #fff; }
    .header__logo {
      width: 65px;
      height: 22px; }
      .header__logo svg {
        width: 65px;
        height: 22px; }
    .header__menu {
      position: absolute;
      left: 0;
      top: 45px;
      display: block;
      border-radius: 0 0 9px 9px;
      padding: 0 9.7vw;
      padding-bottom: 40px;
      width: 100%;
      height: auto;
      -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
              box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
      background-color: #fff;
      -webkit-transform: translateY(-100%);
          -ms-transform: translateY(-100%);
              transform: translateY(-100%);
      -webkit-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out; }
      .header__menu-bg {
        position: absolute;
        left: 0;
        top: 45px;
        z-index: -1;
        display: none;
        width: 100vw;
        height: 100vh;
        background-color: rgba(34, 76, 101, 0.7);
        opacity: 0;
        -webkit-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out; }
        .header__menu-bg.is-vision {
          opacity: 1; }
      .header__menu-list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        border-bottom: 1px solid #e0e0e0;
        padding-top: 55px;
        padding-bottom: 40px;
        height: auto; }
      .header__menu-item {
        margin-bottom: 20px;
        margin-left: 0;
        font-size: 14px;
        line-height: 19px; }
        .header__menu-item:last-child {
          margin-bottom: 0; }
      .header__menu.is-open {
        -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
                transform: translateY(0); }
        .header__menu.is-open .header__menu-bg {
          display: block; }
    .header__btn {
      position: absolute;
      right: 9.7vw;
      top: 0;
      z-index: 3;
      display: block;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 34%, 100% 57%, 100% 100%, 50% 81%, 0 100%, 0 58%, 0 35%, 0 0);
              clip-path: polygon(50% 0%, 100% 0, 100% 34%, 100% 57%, 100% 100%, 50% 81%, 0 100%, 0 58%, 0 35%, 0 0);
      width: 50px;
      height: 60px;
      background-color: #008cd2; }
      .header__btn span {
        position: relative;
        top: -5px;
        display: block;
        margin: 0 auto;
        width: 15px;
        height: 1.67px;
        background-color: #fff;
        -webkit-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out; }
        .header__btn span::before, .header__btn span::after {
          content: "";
          position: absolute;
          right: 0;
          display: block;
          width: 100%;
          height: 100%;
          background-color: #fff;
          -webkit-transition: all 0.3s ease-out;
          -o-transition: all 0.3s ease-out;
          transition: all 0.3s ease-out; }
        .header__btn span::before {
          top: 4px; }
        .header__btn span::after {
          top: -4px; }
      .header__btn.is-active span {
        -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
                transform: rotate(45deg); }
      .header__btn.is-active span::before {
        top: 0;
        opacity: 0; }
      .header__btn.is-active span::after {
        top: 0;
        -webkit-transform: rotate(-90deg);
            -ms-transform: rotate(-90deg);
                transform: rotate(-90deg); } }

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: auto;
  padding-top: 73px;
  padding-bottom: 73px;
  width: 100%;
  background: #f3f3f3; }
  .footer .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .footer__teams {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-right: 60px;
    width: calc(50% + 20px); }
    .footer__teams::before {
      content: "";
      position: absolute;
      right: 0;
      top: 5px;
      width: 1px;
      height: 126px;
      background: #e0e0e0; }
  .footer__teams-image {
    margin-right: 20px;
    width: 120px;
    height: 44px; }
    .footer__teams-image svg {
      width: 120px;
      height: 44px; }
  .footer__teams-text {
    font-family: "Open Sans";
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 20px; }
    .footer__teams-text a {
      color: #008cd2;
      -webkit-transition: all 0.3s ease-in;
      -o-transition: all 0.3s ease-in;
      transition: all 0.3s ease-in; }
      .footer__teams-text a:hover {
        opacity: 0.5; }
  .footer .social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .footer .social button svg {
      width: 50px;
      height: 50px; }
    .footer .social__list {
      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;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      padding: 0 50px;
      height: 100%; }
      .footer .social__list::before {
        content: "";
        position: absolute;
        right: 0;
        top: 5px;
        width: 1px;
        height: 126px;
        background: #e0e0e0; }
      .footer .social__list ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; }
    .footer .social__caption {
      margin-bottom: 15px;
      font-weight: 400;
      font-style: normal;
      font-size: 16px;
      line-height: 20px;
      text-align: center; }
    .footer .social__item {
      margin-right: 20px; }
      .footer .social__item:last-child {
        margin-right: 0; }
    .footer .social__logo {
      margin-left: 40px; }
      .footer .social__logo svg {
        width: 161px;
        height: 128px; }

@media screen and (max-width: 1300px) {
  .footer {
    padding-top: 60px; }
    .footer .container {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
    .footer__teams {
      padding-right: 0;
      padding-bottom: 30px;
      width: 100%; }
      .footer__teams::before {
        top: auto;
        bottom: 0;
        width: 100%;
        height: 1px; }
    .footer__teams-image {
      margin-top: -20px; }
    .footer .social {
      padding-top: 30px; }
      .footer .social__list {
        padding: 0;
        width: 50%; }
        .footer .social__list::before {
          right: -20px; }
      .footer .social__logo {
        width: 50%; }
        .footer .social__logo svg {
          margin: 0 auto; } }

@media (max-width: 767px) {
  .footer {
    padding-top: 40px; }
    .footer__teams {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      padding-bottom: 22px; }
    .footer__teams-image {
      margin: 0;
      margin-bottom: 14px;
      width: 80px;
      height: 30px; }
      .footer__teams-image svg {
        width: 80px;
        height: 30px; }
    .footer__teams-text {
      font-size: 10px;
      line-height: 14px; }
    .footer .social {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      padding-top: 20px; }
      .footer .social button svg {
        width: 40px;
        height: 40px; }
      .footer .social__list {
        padding-bottom: 20px;
        width: 100%; }
        .footer .social__list::before {
          right: 0;
          top: auto;
          bottom: 0;
          width: 100%;
          height: 1px; }
      .footer .social__caption {
        margin-left: -20px;
        font-size: 10px;
        line-height: 14px; }
      .footer .social__item {
        margin-right: 16px; }
        .footer .social__item:last-child {
          margin-right: 0; }
      .footer .social__logo {
        margin-top: 20px;
        margin-left: 0; }
        .footer .social__logo svg {
          width: 140px;
          height: 110px; } }

.social__caption {
  font-family: "Open Sans";
  color: #333; }

.social__item {
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in; }
  .social__item:hover {
    opacity: 0.5; }

.btn {
  font-family: "Roboto";
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #fff; }
  .btn.oval {
    border: 3px solid #008cd2;
    border-radius: 30px;
    width: 180px;
    height: 50px;
    color: #008cd2; }
    .btn.oval:hover {
      color: #fff;
      background: #008cd2; }
    .btn.oval.painted {
      color: #fff;
      background: #008cd2; }
      .btn.oval.painted:hover {
        color: #008cd2;
        background: transparent; }
  .btn.circle {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin-right: 15px;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    background-color: #008cd2;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg); }
    .btn.circle svg {
      width: 21px;
      height: 22px; }
    .btn.circle:hover {
      background-color: #005faa; }
  @media (max-width: 767px) {
    .btn.oval {
      border-width: 2px;
      width: 140px;
      height: 40px;
      font-size: 12px;
      line-height: 14px; }
    .btn.circle {
      width: 40px;
      height: 40px; }
      .btn.circle svg {
        width: 16px;
        height: 16px; } }

.drop-down {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  border-bottom: 1px solid #bdbdbd;
  padding-bottom: 20px; }
  .drop-down__title {
    margin-top: 10px;
    font-family: "Avenir Next Cyr";
    font-weight: 750;
    font-size: 24px;
    line-height: 29px;
    color: #224c65; }
  .drop-down__text-wrapper {
    overflow: hidden;
    height: 0;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in; }
  .drop-down__text {
    padding-top: 30px;
    font-family: "Open Sans";
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #333; }
    .drop-down__text ul {
      list-style: disc;
      padding-left: 25px; }
      .drop-down__text ul li {
        list-style: disc; }
    .drop-down__text span {
      display: block;
      margin-top: 20px; }
      .drop-down__text span.red {
        font-weight: 700;
        color: #f2000d; }
  .drop-down:last-child {
    margin-bottom: 0;
    border: none; }
  .drop-down.drop-down_open .drop-down__btn {
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg); }

@media (max-width: 767px) {
  .drop-down {
    margin-bottom: 15px;
    padding-bottom: 15px; }
    .drop-down__title {
      margin-top: 11px;
      font-size: 14px;
      line-height: 18px; }
    .drop-down__text {
      padding-top: 10px;
      font-size: 10px;
      line-height: 14px; }
      .drop-down__text span {
        margin-top: 10px; } }

.video-block {
  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;
  border-radius: 9px;
  height: 100%; }
  .video-block__poster {
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 9px;
    width: 100%;
    height: 100%;
    background-color: #f2f2f2; }
    .video-block__poster picture {
      width: 100%;
      height: 100%; }
    .video-block__poster img {
      vertical-align: baseline;
      border-radius: 9px;
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover; }
  .video-block__play {
    position: relative;
    z-index: 2;
    border-radius: 100%;
    width: 90px;
    height: 90px;
    background-color: #fff;
    -webkit-filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.25));
            filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.25)); }
    .video-block__play::before {
      content: "";
      display: block;
      -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
              clip-path: polygon(0 0, 0% 100%, 100% 50%);
      margin-left: 7px;
      width: 25px;
      height: 30px;
      background-color: #f2000d;
      -webkit-transition: all 0.3s ease-in;
      -o-transition: all 0.3s ease-in;
      transition: all 0.3s ease-in; }
    .video-block__play:hover::before {
      opacity: 0.5; }
  .video-block__frame {
    position: absolute;
    left: 0;
    top: 0;
    border: none;
    border-radius: 9px;
    width: 100%;
    height: 100%; }
  .video-block__name {
    position: absolute;
    left: 0;
    bottom: -50px;
    font-family: "Avenir Next Cyr";
    font-weight: 750;
    font-style: normal;
    font-size: 24px;
    line-height: 29px;
    color: #224c65; }
  @media (max-width: 767px) {
    .video-block__play {
      width: 50px;
      height: 50px; }
      .video-block__play::before {
        margin-left: 4px;
        width: 18px;
        height: 18px; }
    .video-block__name {
      bottom: -25px;
      font-size: 12px;
      line-height: 14px; } }

.activist-block {
  position: relative;
  border-radius: 9px;
  padding: 30px;
  width: 360px;
  height: 366px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: #333;
  background-color: #fff; }
  .activist-block__flag {
    position: absolute;
    right: 29px;
    top: -1px;
    z-index: 3;
    display: block;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 34%, 100% 57%, 100% 100%, 50% 81%, 0 100%, 0 58%, 0 35%, 0 0);
            clip-path: polygon(50% 0%, 100% 0, 100% 34%, 100% 57%, 100% 100%, 50% 81%, 0 100%, 0 58%, 0 35%, 0 0);
    width: 31px;
    height: 36px;
    background-color: #008cd2; }
  .activist-block__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #f2f2f2;
    padding-bottom: 20px; }
  .activist-block__photo {
    margin-right: 15px;
    border-radius: 100%;
    width: 90px;
    height: 90px; }
  .activist-block__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .activist-block__row-btn {
      position: absolute;
      bottom: 30px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      max-width: 82%; }
      .activist-block__row-btn .btn.oval {
        height: 40px;
        font-size: 14px;
        line-height: 16px; }
        .activist-block__row-btn .btn.oval:first-child {
          margin-right: 20px; }
  .activist-block__name {
    margin-top: 8px;
    margin-bottom: 5px;
    width: 30px;
    font-family: "Avenir Next Cyr";
    font-weight: 600;
    font-style: normal;
    font-size: 20px;
    line-height: 24px; }
  .activist-block__like {
    margin-top: 2px;
    margin-right: 6px;
    width: 18px;
    height: 18px; }
    .activist-block__like svg {
      width: 100%;
      height: 100%; }
  .activist-block__counter-like {
    font-family: "Open Sans";
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 22px;
    color: #bdbdbd; }
    .activist-block__counter-like span {
      margin-left: 5px; }
  .activist-block__quote {
    margin-top: 20px;
    font-family: "Avenir Next Cyr";
    font-weight: 750;
    font-style: normal;
    font-size: 24px;
    line-height: 29px; }
  @media (max-width: 767px) {
    .activist-block {
      margin-bottom: 20px;
      padding: 15px;
      width: calc(50% - 10px);
      height: auto; }
      .activist-block__info {
        -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;
        padding-bottom: 15px; }
      .activist-block__photo {
        margin-right: 0;
        width: 60px;
        height: 60px; }
      .activist-block__name {
        margin: 5px 0;
        width: 100%;
        font-size: 14px;
        line-height: 16px;
        word-spacing: 9999999px;
        text-align: center; }
      .activist-block__counter-like {
        font-size: 10px;
        line-height: 14px; }
      .activist-block__row {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; }
      .activist-block__like {
        margin-right: 4px;
        width: 13px;
        height: 11px; }
      .activist-block__quote {
        display: none; }
      .activist-block__row-btn {
        position: relative;
        bottom: initial;
        -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;
        margin-top: 10px;
        max-width: 100%; }
        .activist-block__row-btn .btn.oval {
          margin-right: 0;
          width: 110px;
          height: 30px;
          font-size: 12px;
          line-height: 14px; }
          .activist-block__row-btn .btn.oval:first-child {
            margin-right: 0;
            margin-bottom: 10px; }
      .activist-block__flag {
        left: 13px;
        right: auto;
        top: 0;
        width: 15px;
        height: 19px; } }

@media (min-width: 768px) and (max-width: 1024px) {
  .video-block__play {
    width: 80px;
    height: 80px; }
  .activist-block {
    margin: 0;
    width: calc(50% - 20px);
    max-width: 360px; } }

.popup {
  position: fixed;
  top: 80px;
  z-index: 20;
  display: none;
  overflow: scroll;
  padding-top: 120px;
  padding-bottom: 120px;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }
  .popup .container {
    padding: 0;
    max-width: calc(100vw - 9.7vw * 2); }
  .popup__bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(34, 76, 101, 0.7);
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out; }
  .popup__container {
    position: relative;
    z-index: 2;
    overflow: hidden;
    margin-left: -40px;
    border-radius: 9px;
    padding: 0 40px;
    width: calc(100% + 80px);
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    background: #fff; }
  .popup__flag {
    position: absolute;
    left: 340px;
    top: -1px;
    z-index: 3;
    display: block;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 34%, 100% 57%, 100% 100%, 50% 81%, 0 100%, 0 58%, 0 35%, 0 0);
            clip-path: polygon(50% 0%, 100% 0, 100% 34%, 100% 57%, 100% 100%, 50% 81%, 0 100%, 0 58%, 0 35%, 0 0);
    width: 35px;
    height: 43px;
    background-color: #f2000d; }
  .popup__close-btn.circle {
    position: absolute;
    right: 25px;
    top: 40px; }
    .popup__close-btn.circle svg {
      width: 42%; }
    .popup__close-btn.circle.bottom {
      top: auto;
      bottom: 60px; }
  .popup__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 60px 0;
    color: #333; }
  .popup__head-photo {
    margin-right: 40px;
    border-radius: 100%;
    width: 260px;
    height: 260px;
    -o-object-fit: cover;
       object-fit: cover; }
  .popup__head-info {
    margin-top: 35px; }
  .popup__head-name {
    margin-bottom: 14px;
    font-family: "Avenir Next Cyr";
    font-weight: 600;
    font-style: normal;
    font-size: 24px;
    line-height: 24px; }
  .popup__head-quote {
    margin-bottom: 14px;
    font-family: "Avenir Next Cyr";
    font-weight: 750;
    font-style: normal;
    font-size: 36px;
    line-height: 44px; }
  .popup__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .popup__row-like {
    margin-right: 6px;
    margin-left: 21px;
    width: 18px;
    height: 18px; }
    .popup__row-like svg {
      width: 100%;
      height: 100%; }
  .popup__row-counter-like {
    font-family: "Open Sans";
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 22px;
    color: #bdbdbd; }
    .popup__row-counter-like span {
      margin-left: 5px; }
  .popup__gallery {
    position: relative;
    margin-left: -40px;
    padding: 60px 0;
    width: calc(100% + 80px);
    height: 600px;
    background-color: #f3f3f3; }
    .popup__gallery .swiper-slide {
      width: auto;
      height: 480px;
      max-width: 100%; }
      .popup__gallery .swiper-slide img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover; }
    .popup__gallery .swiper-button-prev,
    .popup__gallery .swiper-button-next {
      position: absolute;
      top: -25px; }
      .popup__gallery .swiper-button-prev svg,
      .popup__gallery .swiper-button-next svg {
        width: 40%;
        height: 100%; }
    .popup__gallery .swiper-button-prev {
      right: 104px;
      -webkit-transform: rotate(-90deg);
          -ms-transform: rotate(-90deg);
              transform: rotate(-90deg); }
    .popup__gallery .swiper-button-next {
      right: 25px;
      -webkit-transform: rotate(90deg);
          -ms-transform: rotate(90deg);
              transform: rotate(90deg); }
  .popup__slider {
    margin-left: 0;
    width: 727px; }
  .popup__text {
    padding: 60px 200px 80px;
    color: #333; }
    .popup__text p {
      padding-bottom: 0px;
      font-family: "Open Sans";
      font-weight: 400;
      font-style: normal;
      font-size: 18px;
      line-height: 25px; }
  .popup .social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: -40px;
    padding: 10px 40px;
    width: calc(100% + 80px);
    background-color: #f3f3f3; }
    .popup .social__list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .popup .social__list ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-left: 20px; }
    .popup .social__item {
      margin-right: 20px;
      width: 50px;
      height: 50px; }
      .popup .social__item button {
        width: 100%;
        height: 100%; }
      .popup .social__item:last-child {
        margin-right: 0; }
    .popup .social__logo {
      -webkit-box-ordinal-group: 0;
          -ms-flex-order: -1;
              order: -1;
      margin-right: 40px;
      width: 158px; }
  .popup.vision {
    opacity: 1; }
    .popup.vision .popup__bg {
      opacity: 1; }

@media (min-width: 1920px) {
  .popup .container {
    max-width: calc(1920px - 240px * 2); } }

@media (min-width: 1025px) and (max-width: 1439px) {
  .popup .container {
    max-width: calc(100vw - 4.7vw * 2); }
  .popup__container {
    margin-left: 0;
    width: 100%; } }

@media (min-width: 768px) and (max-width: 1024px) {
  .popup .container {
    max-width: calc(100vw - 4.7vw * 2); }
  .popup__container {
    margin-left: 0;
    width: 100%; }
  .popup__flag {
    left: 61px; }
  .popup .popup__close-btn.circle.bottom {
    bottom: 45px; }
  .popup__head {
    -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;
    text-align: center; }
    .popup__head-photo {
      margin: 0 auto; }
    .popup__head-info {
      margin-top: 40px;
      padding: 0 20px; }
    .popup__head-quote {
      margin-bottom: 40px; }
  .popup__slider {
    margin-left: 0;
    width: 100%;
    max-width: 727px; }
  .popup__gallery .swiper-slide {
    width: auto; }
  .popup__text {
    padding: 60px 20px; }
  .popup .social__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 40px; }
    .popup .social__list ul {
      margin-left: 0; }
  .popup .social__caption {
    margin-bottom: 16px; } }

@media (max-width: 767px) {
  .popup {
    top: 0;
    padding-top: 120px;
    padding-bottom: 120px; }
    .popup .container {
      max-width: 100vw; }
    .popup__container {
      margin-left: 0;
      padding-top: 40px;
      width: 100%; }
    .popup__flag {
      left: 38px;
      width: 26px;
      height: 32px; }
    .popup__head {
      -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;
      padding: 0;
      padding-bottom: 40px; }
      .popup__head-photo {
        margin-right: 0;
        width: 200px;
        height: 200px; }
      .popup__head-info {
        margin-top: 20px;
        text-align: center; }
      .popup__head-name {
        margin-bottom: 5px;
        font-size: 14px;
        line-height: 24px; }
      .popup__head-quote {
        font-size: 24px;
        line-height: 30px; }
    .popup__close-btn.circle {
      right: 5px;
      top: 20px; }
      .popup__close-btn.circle.bottom {
        right: 5px;
        bottom: 40px;
        margin-left: 0; }
    .popup__row {
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: start; }
      .popup__row-counter-like {
        font-size: 10px;
        line-height: 14px; }
    .popup__gallery {
      overflow: hidden;
      padding: 40px 0 55px;
      height: 397px; }
      .popup__gallery .swiper-button-next,
      .popup__gallery .swiper-button-prev {
        display: none; }
      .popup__gallery .swiper-slide {
        overflow: hidden;
        width: auto;
        height: 300px;
        max-width: none; }
        .popup__gallery .swiper-slide img {
          width: auto;
          height: 100%;
          max-width: none;
          -o-object-fit: fill;
             object-fit: fill; }
      .popup__gallery .swiper-scrollbar {
        position: relative;
        bottom: -24px;
        margin: 0 auto;
        width: 80%; }
        .popup__gallery .swiper-scrollbar::before {
          content: "";
          position: absolute;
          left: -20%;
          display: block;
          width: calc(100% + 40%);
          height: 0.5px;
          background: #c6c6c6; }
        .popup__gallery .swiper-scrollbar .swiper-scrollbar-drag {
          position: absolute;
          bottom: -11px;
          height: 20px; }
          .popup__gallery .swiper-scrollbar .swiper-scrollbar-drag::before {
            content: "";
            position: relative;
            top: 6px;
            display: block;
            border-radius: 25px;
            height: 7px;
            background: #008cd2; }
    .popup__slider {
      margin-left: 0;
      width: 90%; }
    .popup__text {
      padding: 40px 0; }
      .popup__text p {
        padding-bottom: 0px;
        font-size: 12px;
        line-height: 16px; }
    .popup .social {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse;
      padding: 40px; }
      .popup .social__list {
        position: relative;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; }
        .popup .social__list::after {
          content: "";
          position: absolute;
          bottom: -20px;
          width: calc(100vw - 80px);
          height: 1px;
          background: #e0e0e0; }
        .popup .social__list ul {
          margin-left: 0; }
          .popup .social__list ul li {
            margin-right: 16px;
            width: 40px;
            height: 40px; }
      .popup .social__caption {
        margin-bottom: 15px;
        font-size: 12px;
        line-height: 14px; }
      .popup .social__logo {
        margin-top: 40px;
        margin-right: 0;
        width: 140px;
        height: 110px; } }

.cover {
  position: relative;
  padding-top: 82px; }
  .cover::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -3;
    display: block;
    width: 100%;
    height: 100%;
    background: #224c65; }
  .cover .container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 97px;
    padding-bottom: 94px; }
  .cover__bg {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    padding: 0 9.7vw;
    width: 100%;
    height: 100%;
    background: #224c65; }
    .cover__bg::before, .cover__bg::after {
      content: "";
      position: absolute;
      top: 0;
      z-index: 2;
      display: block;
      height: 100%; }
    .cover__bg::before {
      left: 33%;
      width: 60%;
      background: -webkit-gradient(linear, right top, left top, from(#224c65), color-stop(51.04%, #224c65), to(rgba(34, 76, 101, 0)));
      background: -o-linear-gradient(right, #224c65 0%, #224c65 51.04%, rgba(34, 76, 101, 0) 100%);
      background: linear-gradient(270deg, #224c65 0%, #224c65 51.04%, rgba(34, 76, 101, 0) 100%); }
    .cover__bg::after {
      left: calc(9.6vw - 140px);
      width: 20%;
      background: -webkit-gradient(linear, left top, right top, from(#224c65), to(rgba(34, 76, 101, 0)));
      background: -o-linear-gradient(left, #224c65 0%, rgba(34, 76, 101, 0) 100%);
      background: linear-gradient(90deg, #224c65 0%, rgba(34, 76, 101, 0) 100%); }
    .cover__bg img {
      position: relative;
      z-index: 1;
      margin-left: -140px;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover; }
    @media (max-width: 767px) {
      .cover__bg {
        padding: 0;
        height: 266px; }
        .cover__bg::before {
          left: 0;
          top: 130px;
          bottom: 0;
          width: 100%;
          background: -webkit-gradient(linear, left bottom, left top, from(#224c65), color-stop(51.04%, #224c65), to(rgba(34, 76, 101, 0)));
          background: -o-linear-gradient(bottom, #224c65 0%, #224c65 51.04%, rgba(34, 76, 101, 0) 100%);
          background: linear-gradient(0deg, #224c65 0%, #224c65 51.04%, rgba(34, 76, 101, 0) 100%); }
        .cover__bg img {
          margin-left: 0;
          width: 100%;
          -o-object-position: top;
             object-position: top; } }
  .cover__icons {
    z-index: 4; }
    @media (max-width: 767px) {
      .cover__icons {
        position: absolute;
        right: 9.7vw;
        top: 56px; } }
  .cover__icon {
    display: block;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in; }
    .cover__icon img {
      width: 100%;
      height: 100%; }
    .cover__icon:hover {
      opacity: 0.5; }
    .cover__icon:nth-child(1) {
      margin-bottom: 27px;
      width: 90px;
      height: 114px; }
    .cover__icon:nth-child(2) {
      width: 98px;
      height: 114px; }
    @media (max-width: 767px) {
      .cover__icon:nth-child(1) {
        width: 50px;
        height: 65px; }
      .cover__icon:nth-child(2) {
        width: 56px;
        height: 65px; } }
  .cover__info {
    z-index: 4;
    max-width: 560px;
    color: #fff; }
  .cover__title {
    margin-bottom: 23px;
    text-align: start;
    color: #fff; }
    @media (max-width: 767px) {
      .cover__title {
        margin-left: -9.7vw;
        width: calc(100% + 9.7vw * 2); } }
  .cover__description {
    margin-bottom: 60px;
    font-family: "Open Sans";
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
    line-height: 25px; }
  .cover__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .cover__buttons .oval {
      color: #fff; }
      .cover__buttons .oval:first-child {
        margin-right: 30px; }
      .cover__buttons .oval.painted:hover {
        color: #fff; }
  @media (max-width: 767px) {
    .cover {
      padding-top: 46px; }
      .cover .container {
        padding-top: 280px;
        padding-bottom: 40px; }
      .cover__title {
        margin-bottom: 15px;
        font-size: 24px;
        line-height: 30px;
        text-align: center; }
      .cover__description {
        margin-bottom: 20px;
        font-size: 12px;
        line-height: 16px; }
      .cover__buttons {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; }
        .cover__buttons .oval:first-child {
          margin-right: 20px; } }

@media (min-width: 1920px) {
  .cover__bg::before {
    left: 30%;
    width: 50%; } }

@media (min-width: 768px) and (max-width: 1024px) {
  .cover .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-top: 40px;
    padding-bottom: 50px; }
  .cover__bg {
    left: -107px; }
    .cover__bg::before {
      left: 45%; }
  .cover__icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
    width: 460px; }
  .cover__icon:nth-child(1) {
    margin-right: 38px;
    margin-bottom: 0; }
  .cover__info {
    width: 460px; }
  .cover__title {
    margin-bottom: 20px; }
  .cover__description {
    margin-bottom: 30px; } }

.about {
  padding: 80px 0 60px;
  background: #f3f3f3; }
  .about .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 118px; }
  .about__logo {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-left: 25px;
    width: 360px;
    height: 336px; }
    .about__logo svg {
      width: 100%;
      height: 100%; }
  .about__content {
    font-family: "Open Sans";
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 25px; }
  .about__title {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    color: #224c65; }
  .about__text {
    margin-bottom: 45px;
    color: #333; }
    .about__text p:first-child {
      margin-bottom: 22px; }

@media (min-width: 768px) and (max-width: 1024px) {
  .about {
    padding: 60px 0 40px; }
    .about .container {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      padding-top: 0; }
    .about__logo {
      position: relative;
      left: -13px;
      -ms-flex-item-align: center;
          -ms-grid-row-align: center;
          align-self: center;
      -webkit-box-ordinal-group: 0;
          -ms-flex-order: -1;
              order: -1;
      height: 245px; }
    .about__title {
      position: static; }
    .about__content {
      margin-top: 60px; } }

@media (max-width: 767px) {
  .about {
    padding: 40px 0 24px; }
    .about__logo {
      position: relative;
      left: -10px;
      display: block;
      margin: 0 auto;
      margin-bottom: 20px;
      width: 160px;
      height: 150px; }
    .about .container {
      display: block;
      padding-top: 0; }
    .about__title {
      position: relative;
      margin-bottom: 20px;
      font-size: 24px;
      line-height: 30px; }
    .about__text {
      margin-bottom: 20px;
      font-size: 12px;
      line-height: 16px; } }

.stars {
  overflow: hidden;
  padding: 80px 0;
  padding-bottom: 65px; }
  .stars__videos {
    position: relative;
    margin-right: auto;
    margin-left: auto;
    max-width: 950px; }
  .stars .swiper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: visible;
    width: 760px;
    height: 426px; }
    .stars .swiper-button-prev {
      left: 6px;
      -webkit-transform: rotate(-90deg);
          -ms-transform: rotate(-90deg);
              transform: rotate(-90deg); }
    .stars .swiper-button-next {
      right: -10px;
      -webkit-transform: rotate(90deg);
          -ms-transform: rotate(90deg);
              transform: rotate(90deg); }
    .stars .swiper-button-prev, .stars .swiper-button-next {
      position: absolute;
      top: calc(50% - 56px);
      z-index: 3;
      width: 50px;
      height: 50px; }
    .stars .swiper-button-prev.activists-video__slider-prev, .stars .swiper-button-next.activists-video__slider-next {
      top: calc(50% - 80px); }
    .stars .swiper-pagination {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin-top: 25px;
      padding: 18px 0;
      width: 100%; }
      .stars .swiper-pagination-bullet {
        display: block;
        margin-right: 20px;
        border: transparent;
        border-radius: 50%;
        width: 15px;
        height: 15px;
        background: #f3f3f3;
        -webkit-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in; }
        .stars .swiper-pagination-bullet:last-child {
          margin-right: 0; }
        .stars .swiper-pagination-bullet.swiper-pagination-bullet-active {
          background: #008cd2; }
      .stars .swiper-pagination.activists-video__pagination {
        margin-top: 60px; }
    .stars .swiper.activists-video__slider .swiper-button-prev, .stars .swiper.activists-video__slider .swiper-button-next {
      top: calc(50% - 80px); }
  .stars__video-poster {
    width: 100%;
    height: 100%; }

@media (min-width: 768px) and (max-width: 1024px) {
  .stars {
    padding: 60px 0; }
    .stars__videos {
      width: 100%;
      max-width: 750px; }
    .stars .swiper {
      width: 560px;
      height: 314px; }
      .stars .swiper-pagination {
        margin-top: 12px;
        padding-bottom: 20px; } }

@media (max-width: 767px) {
  .stars {
    padding: 40px 0; }
    .stars__title {
      margin: 0 auto;
      margin-bottom: 20px;
      width: 300px; }
    .stars .swiper-button-prev,
    .stars .swiper-button-next {
      display: none; }
    .stars__slide {
      width: 84vw;
      height: 45vw; }
    .stars__slider {
      width: 300px;
      height: auto; }
    .stars__videos {
      width: 100%; }
    .stars__scrollbar {
      position: relative;
      margin-top: -40px;
      width: 100%; }
      .stars__scrollbar::before {
        content: "";
        position: absolute;
        left: -20%;
        display: block;
        width: calc(100% + 40%);
        height: 0.5px;
        background: #c6c6c6; }
      .stars__scrollbar .swiper-scrollbar-drag {
        position: absolute;
        bottom: -11px;
        height: 20px; }
        .stars__scrollbar .swiper-scrollbar-drag::before {
          content: "";
          position: relative;
          top: 6px;
          display: block;
          border-radius: 25px;
          height: 7px;
          background: #008cd2; }
    .stars .swiper {
      width: 100%;
      height: auto; }
    .stars .swiper-pagination.activists-video__pagination {
      margin-top: 25px; } }

.activists {
  padding: 80px 0 40px;
  background-color: #f3f3f3; }
  .activists__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 auto;
    width: 1160px; }
    .activists__wrapper .activist-block {
      margin-right: 40px;
      margin-bottom: 40px; }
      .activists__wrapper .activist-block:nth-child(3n) {
        margin-right: 0; }

@media screen and (max-width: 1280px) {
  .activists__wrapper {
    width: 760px; }
    .activists__wrapper .activist-block {
      margin-right: 40px; }
      .activists__wrapper .activist-block:nth-child(3n) {
        margin-right: 40px; }
      .activists__wrapper .activist-block:nth-child(even) {
        margin-right: 0; } }

@media (min-width: 768px) and (max-width: 1024px) {
  .activists {
    padding: 60px 0; }
    .activists__wrapper {
      width: 100%;
      max-width: 760px;
      gap: 40px; }
      .activists__wrapper .activist-block {
        margin: 0; }
        .activists__wrapper .activist-block:nth-child(3) {
          margin: 0; } }

@media screen and (min-width: 768px) and (max-width: 800px) {
  .activists {
    padding: 60px 0; }
    .activists__wrapper {
      width: 100%;
      gap: 20px; }
      .activists__wrapper .activist-block {
        margin: 0; }
        .activists__wrapper .activist-block:last-child {
          margin-left: 10px; }
        .activists__wrapper .activist-block:nth-child(even) {
          margin-right: auto; }
        .activists__wrapper .activist-block:nth-child(odd) {
          margin-left: auto; } }

@media (max-width: 767px) {
  .activists {
    padding: 40px 0; }
    .activists__title {
      margin-bottom: 20px; }
    .activists__wrapper {
      padding: 0 9.7vw;
      width: 100%;
      gap: 20px; }
      .activists__wrapper .activist-block {
        margin-right: 0;
        margin-bottom: 0; }
        .activists__wrapper .activist-block:nth-child(3n) {
          margin-right: 0; } }

#activists-video-duble {
  overflow: hidden;
  padding: 0;
  height: 0; }

.activists-video {
  padding-top: 80px;
  padding-bottom: 70px; }
  .activists-video__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow: hidden;
    margin: 0 auto;
    height: 220px;
    max-width: 1180px;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in; }
    .activists-video__wrapper .block.video-block {
      margin-right: 40px;
      margin-bottom: 60px;
      width: calc(50% - 30px);
      height: 314px; }
      .activists-video__wrapper .block.video-block .video-block__play {
        width: 80px;
        height: 80px; }
      .activists-video__wrapper .block.video-block:nth-child(even) {
        margin-right: 0; }
  .activists-video__show-more {
    margin: 0 auto; }

@media screen and (max-width: 1280px) {
  .activists-video__wrapper .block.video-block {
    width: calc(42% - 30px);
    height: 250px; } }

@media (min-width: 768px) and (max-width: 1024px) {
  #activists-video-duble {
    padding: 60px 0;
    height: auto; }
  .activists-video {
    overflow: hidden;
    padding: 0;
    height: 0; }
    .activists-video__slider {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      overflow: visible;
      width: 760px;
      height: 426px; } }

@media (max-width: 767px) {
  #activists-video {
    overflow: hidden;
    margin: 0;
    padding: 0;
    height: 0; }
  #activists-video-duble {
    padding: 40px 0;
    height: auto; }
    #activists-video-duble .video-block {
      height: 45vw; }
    #activists-video-duble .activists-video__scrollbar {
      position: relative;
      margin-top: -40px;
      width: 100%; }
      #activists-video-duble .activists-video__scrollbar::before {
        content: "";
        position: absolute;
        left: -20%;
        display: block;
        width: calc(100% + 40%);
        height: 0.5px;
        background: #c6c6c6; }
      #activists-video-duble .activists-video__scrollbar .swiper-scrollbar-drag {
        position: absolute;
        bottom: -11px;
        height: 20px; }
        #activists-video-duble .activists-video__scrollbar .swiper-scrollbar-drag::before {
          content: "";
          position: relative;
          top: 6px;
          display: block;
          border-radius: 25px;
          height: 7px;
          background: #008cd2; } }

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

.popup-open {
  max-width: 137px;
}</pre></body></html>