@charset "UTF-8";
.absolute, .picture {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

/* 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: url("../fonts/JetBrainsMono/JetBrainsMono-Medium.woff2") format("woff2"), url("../fonts/JetBrainsMono/JetBrainsMono-Medium.woff") format("woff");
  font-family: "JetBrainsMono";
  font-weight: 500;
  font-style: normal;
  font-display: swap; }

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

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

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

.carousel {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

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

.carousel.is-draggable {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab; }

.carousel.is-dragging {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing; }

.carousel__viewport {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  max-height: 100%; }

.carousel__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.carousel__slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: var(--carousel-slide-width, 60%);
  max-width: 100%;
  padding: 1rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain; }

.has-dots {
  margin-bottom: calc(0.5rem + 22px); }

.carousel__dots {
  margin: 0 auto;
  padding: 0;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }

.carousel__dots .carousel__dot {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  width: 22px;
  height: 22px;
  cursor: pointer; }

.carousel__dots .carousel__dot:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: currentColor;
  opacity: .25;
  -webkit-transition: opacity .15s ease-in-out;
  -o-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out; }

.carousel__dots .carousel__dot.is-selected:after {
  opacity: 1; }

.carousel__button {
  width: var(--carousel-button-width, 48px);
  height: var(--carousel-button-height, 48px);
  padding: 0;
  border: 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;
  pointer-events: all;
  cursor: pointer;
  color: var(--carousel-button-color, currentColor);
  background: var(--carousel-button-bg, transparent);
  border-radius: var(--carousel-button-border-radius, 50%);
  -webkit-box-shadow: var(--carousel-button-shadow, none);
          box-shadow: var(--carousel-button-shadow, none);
  -webkit-transition: opacity .15s ease;
  -o-transition: opacity .15s ease;
  transition: opacity .15s ease; }

.carousel__button.is-prev, .carousel__button.is-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%); }

.carousel__button.is-prev {
  left: 10px; }

.carousel__button.is-next {
  right: 10px; }

.carousel__button[disabled] {
  cursor: default;
  opacity: .3; }

.carousel__button svg {
  width: var(--carousel-button-svg-width, 50%);
  height: var(--carousel-button-svg-height, 50%);
  fill: none;
  stroke: currentColor;
  stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
  stroke-linejoin: bevel;
  stroke-linecap: round;
  -webkit-filter: var(--carousel-button-svg-filter, none);
          filter: var(--carousel-button-svg-filter, none);
  pointer-events: none; }

html.with-fancybox {
  scroll-behavior: auto; }

body.compensate-for-scrollbar {
  overflow: hidden !important;
  -ms-touch-action: none;
      touch-action: none; }

.fancybox__container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  margin: 0;
  padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--fancybox-color, #fff);
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
  z-index: 1050;
  outline: none;
  -webkit-transform-origin: top left;
      -ms-transform-origin: top left;
          transform-origin: top left;
  --carousel-button-width: 48px;
  --carousel-button-height: 48px;
  --carousel-button-svg-width: 24px;
  --carousel-button-svg-height: 24px;
  --carousel-button-svg-stroke-width: 2.5;
  --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4)); }

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

.fancybox__container :focus {
  outline: none; }

body:not(.is-using-mouse) .fancybox__container :focus {
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
          box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94)); }

@media all and (min-width: 1024px) {
  .fancybox__container {
    --carousel-button-width:48px;
    --carousel-button-height:48px;
    --carousel-button-svg-width:27px;
    --carousel-button-svg-height:27px; } }

.fancybox__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--fancybox-bg, rgba(24, 24, 27, 0.92)); }

.fancybox__carousel {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  z-index: 10; }

.fancybox__carousel.has-dots {
  margin-bottom: calc(0.5rem + 22px); }

.fancybox__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  cursor: default; }

.fancybox__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%; }

.fancybox__slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 48px 8px 8px 8px;
  position: relative;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  outline: 0;
  overflow: auto;
  --carousel-button-width: 36px;
  --carousel-button-height: 36px;
  --carousel-button-svg-width: 22px;
  --carousel-button-svg-height: 22px; }

.fancybox__slide::before, .fancybox__slide::after {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0px;
          flex: 0 0 0;
  margin: auto; }

@media all and (min-width: 1024px) {
  .fancybox__slide {
    padding: 64px 100px; } }

.fancybox__content {
  margin: 0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);
  padding: 36px;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  position: relative;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 20; }

.fancybox__content :focus:not(.carousel__button.is-close) {
  outline: thin dotted;
  -webkit-box-shadow: none;
          box-shadow: none; }

.fancybox__caption {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  max-width: 100%;
  margin: 0;
  padding: 1rem 0 0 0;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  visibility: visible;
  cursor: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow-wrap: anywhere; }

.is-loading .fancybox__caption {
  visibility: hidden; }

.fancybox__container > .carousel__dots {
  top: 100%;
  color: var(--fancybox-color, #fff); }

.fancybox__nav .carousel__button {
  z-index: 40; }

.fancybox__nav .carousel__button.is-next {
  right: 8px; }

@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-next {
    right: 40px; } }

.fancybox__nav .carousel__button.is-prev {
  left: 8px; }

@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-prev {
    left: 40px; } }

.carousel__button.is-close {
  position: absolute;
  top: 8px;
  right: 8px;
  top: calc(env(safe-area-inset-top, 0px) + 8px);
  right: calc(env(safe-area-inset-right, 0px) + 8px);
  z-index: 40; }

@media all and (min-width: 1024px) {
  .carousel__button.is-close {
    right: 40px; } }

.fancybox__content > .carousel__button.is-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--fancybox-color, #fff); }

.fancybox__no-click, .fancybox__no-click button {
  pointer-events: none; }

.fancybox__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  color: var(--fancybox-color, currentColor); }

.fancybox__slide .fancybox__spinner {
  cursor: pointer;
  z-index: 1053; }

.fancybox__spinner svg {
  -webkit-animation: fancybox-rotate 2s linear infinite;
          animation: fancybox-rotate 2s linear infinite;
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%; }

.fancybox__spinner svg circle {
  fill: none;
  stroke-width: 2.75;
  stroke-miterlimit: 10;
  stroke-dasharray: 1,200;
  stroke-dashoffset: 0;
  -webkit-animation: fancybox-dash 1.5s ease-in-out infinite;
          animation: fancybox-dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke: currentColor; }

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

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

@-webkit-keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0; }
  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35px; }
  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124px; } }

@keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0; }
  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35px; }
  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124px; } }

.fancybox__backdrop, .fancybox__caption, .fancybox__nav, .carousel__dots, .carousel__button.is-close {
  opacity: var(--fancybox-opacity, 1); }

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop, .fancybox__container.is-animated[aria-hidden=false] .fancybox__caption, .fancybox__container.is-animated[aria-hidden=false] .fancybox__nav, .fancybox__container.is-animated[aria-hidden=false] .carousel__dots, .fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close {
  -webkit-animation: .15s ease backwards fancybox-fadeIn;
          animation: .15s ease backwards fancybox-fadeIn; }

.fancybox__container.is-animated.is-closing .fancybox__backdrop, .fancybox__container.is-animated.is-closing .fancybox__caption, .fancybox__container.is-animated.is-closing .fancybox__nav, .fancybox__container.is-animated.is-closing .carousel__dots, .fancybox__container.is-animated.is-closing .carousel__button.is-close {
  -webkit-animation: .15s ease both fancybox-fadeOut;
          animation: .15s ease both fancybox-fadeOut; }

.fancybox-fadeIn {
  -webkit-animation: .15s ease both fancybox-fadeIn;
          animation: .15s ease both fancybox-fadeIn; }

.fancybox-fadeOut {
  -webkit-animation: .1s ease both fancybox-fadeOut;
          animation: .1s ease both fancybox-fadeOut; }

.fancybox-zoomInUp {
  -webkit-animation: .2s ease both fancybox-zoomInUp;
          animation: .2s ease both fancybox-zoomInUp; }

.fancybox-zoomOutDown {
  -webkit-animation: .15s ease both fancybox-zoomOutDown;
          animation: .15s ease both fancybox-zoomOutDown; }

.fancybox-throwOutUp {
  -webkit-animation: .15s ease both fancybox-throwOutUp;
          animation: .15s ease both fancybox-throwOutUp; }

.fancybox-throwOutDown {
  -webkit-animation: .15s ease both fancybox-throwOutDown;
          animation: .15s ease both fancybox-throwOutDown; }

@-webkit-keyframes fancybox-fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fancybox-fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-webkit-keyframes fancybox-fadeOut {
  to {
    opacity: 0; } }

@keyframes fancybox-fadeOut {
  to {
    opacity: 0; } }

@-webkit-keyframes fancybox-zoomInUp {
  from {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
            transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0; }
  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
            transform: scale(1) translate3d(0, 0, 0);
    opacity: 1; } }

@keyframes fancybox-zoomInUp {
  from {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
            transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0; }
  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
            transform: scale(1) translate3d(0, 0, 0);
    opacity: 1; } }

@-webkit-keyframes fancybox-zoomOutDown {
  to {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
            transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0; } }

@keyframes fancybox-zoomOutDown {
  to {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
            transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0; } }

@-webkit-keyframes fancybox-throwOutUp {
  to {
    -webkit-transform: translate3d(0, -30%, 0);
            transform: translate3d(0, -30%, 0);
    opacity: 0; } }

@keyframes fancybox-throwOutUp {
  to {
    -webkit-transform: translate3d(0, -30%, 0);
            transform: translate3d(0, -30%, 0);
    opacity: 0; } }

@-webkit-keyframes fancybox-throwOutDown {
  to {
    -webkit-transform: translate3d(0, 30%, 0);
            transform: translate3d(0, 30%, 0);
    opacity: 0; } }

@keyframes fancybox-throwOutDown {
  to {
    -webkit-transform: translate3d(0, 30%, 0);
            transform: translate3d(0, 30%, 0);
    opacity: 0; } }

.fancybox__carousel .carousel__slide {
  scrollbar-width: thin;
  scrollbar-color: #ccc rgba(255, 255, 255, 0.1); }

.fancybox__carousel .carousel__slide::-webkit-scrollbar {
  width: 8px;
  height: 8px; }

.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1); }

.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2); }

.fancybox__carousel.is-draggable .fancybox__slide, .fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab; }

.fancybox__carousel.is-dragging .fancybox__slide, .fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing; }

.fancybox__carousel .fancybox__slide .fancybox__content {
  cursor: auto; }

.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in; }

.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab; }

.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing; }

.fancybox__image {
  -webkit-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: none;
  -o-transition: none;
  transition: none; }

.has-image .fancybox__content {
  padding: 0;
  background: transparent;
  min-height: 1px; }

.is-closing .has-image .fancybox__content {
  overflow: visible; }

.has-image[data-image-fit=contain] {
  overflow: visible;
  -ms-touch-action: none;
      touch-action: none; }

.has-image[data-image-fit=contain] .fancybox__content {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.has-image[data-image-fit=contain] .fancybox__image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain; }

.has-image[data-image-fit=contain-w] {
  overflow-x: hidden;
  overflow-y: auto; }

.has-image[data-image-fit=contain-w] .fancybox__content {
  min-height: auto; }

.has-image[data-image-fit=contain-w] .fancybox__image {
  max-width: 100%;
  height: auto; }

.has-image[data-image-fit=cover] {
  overflow: visible;
  -ms-touch-action: none;
      touch-action: none; }

.has-image[data-image-fit=cover] .fancybox__content {
  width: 100%;
  height: 100%; }

.has-image[data-image-fit=cover] .fancybox__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; }

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  max-width: 100%;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  min-height: 1px;
  overflow: visible; }

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
  width: 100%;
  height: 80%; }

.fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%; }

.fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff; }

.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
  background: #e5e3df; }

.fancybox__html5video, .fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: transparent; }

.fancybox-placeholder {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0; }

.fancybox__thumbs {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  position: relative;
  padding: 0px 3px;
  opacity: var(--fancybox-opacity, 1); }

.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs {
  -webkit-animation: .15s ease-in backwards fancybox-fadeIn;
          animation: .15s ease-in backwards fancybox-fadeIn; }

.fancybox__container.is-animated.is-closing .fancybox__thumbs {
  opacity: 0; }

.fancybox__thumbs .carousel__slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: var(--fancybox-thumbs-width, 96px);
  margin: 0;
  padding: 8px 3px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  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;
  overflow: visible;
  cursor: pointer; }

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-width: 5px;
  border-style: solid;
  border-color: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  opacity: 0;
  -webkit-transition: opacity .15s ease;
  -o-transition: opacity .15s ease;
  transition: opacity .15s ease;
  border-radius: var(--fancybox-thumbs-border-radius, 4px); }

.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
  opacity: .92; }

.fancybox__thumbs .carousel__slide > * {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }

.fancybox__thumb {
  position: relative;
  width: 100%;
  padding-top: calc(100%/(var(--fancybox-thumbs-ratio, 1.5)));
  background-size: cover;
  background-position: center center;
  background-color: rgba(255, 255, 255, 0.1);
  background-repeat: no-repeat;
  border-radius: var(--fancybox-thumbs-border-radius, 4px); }

.fancybox__toolbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), color-stop(8.1%, rgba(0, 0, 0, 0.006)), color-stop(15.5%, rgba(0, 0, 0, 0.021)), color-stop(22.5%, rgba(0, 0, 0, 0.046)), color-stop(29%, rgba(0, 0, 0, 0.077)), color-stop(35.3%, rgba(0, 0, 0, 0.114)), color-stop(41.2%, rgba(0, 0, 0, 0.155)), color-stop(47.1%, rgba(0, 0, 0, 0.198)), color-stop(52.9%, rgba(0, 0, 0, 0.242)), color-stop(58.8%, rgba(0, 0, 0, 0.285)), color-stop(64.7%, rgba(0, 0, 0, 0.326)), color-stop(71%, rgba(0, 0, 0, 0.363)), color-stop(77.5%, rgba(0, 0, 0, 0.394)), color-stop(84.5%, rgba(0, 0, 0, 0.419)), color-stop(91.9%, rgba(0, 0, 0, 0.434)), to(rgba(0, 0, 0, 0.44)));
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.006) 8.1%, rgba(0, 0, 0, 0.021) 15.5%, rgba(0, 0, 0, 0.046) 22.5%, rgba(0, 0, 0, 0.077) 29%, rgba(0, 0, 0, 0.114) 35.3%, rgba(0, 0, 0, 0.155) 41.2%, rgba(0, 0, 0, 0.198) 47.1%, rgba(0, 0, 0, 0.242) 52.9%, rgba(0, 0, 0, 0.285) 58.8%, rgba(0, 0, 0, 0.326) 64.7%, rgba(0, 0, 0, 0.363) 71%, rgba(0, 0, 0, 0.394) 77.5%, rgba(0, 0, 0, 0.419) 84.5%, rgba(0, 0, 0, 0.434) 91.9%, rgba(0, 0, 0, 0.44) 100%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.006) 8.1%, rgba(0, 0, 0, 0.021) 15.5%, rgba(0, 0, 0, 0.046) 22.5%, rgba(0, 0, 0, 0.077) 29%, rgba(0, 0, 0, 0.114) 35.3%, rgba(0, 0, 0, 0.155) 41.2%, rgba(0, 0, 0, 0.198) 47.1%, rgba(0, 0, 0, 0.242) 52.9%, rgba(0, 0, 0, 0.285) 58.8%, rgba(0, 0, 0, 0.326) 64.7%, rgba(0, 0, 0, 0.363) 71%, rgba(0, 0, 0, 0.394) 77.5%, rgba(0, 0, 0, 0.419) 84.5%, rgba(0, 0, 0, 0.434) 91.9%, rgba(0, 0, 0, 0.44) 100%);
  padding: 0;
  -ms-touch-action: none;
      touch-action: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  --carousel-button-svg-width: 20px;
  --carousel-button-svg-height: 20px;
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.4)); }

@media all and (min-width: 1024px) {
  .fancybox__toolbar {
    padding: 8px; } }

.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
  -webkit-animation: .15s ease-in backwards fancybox-fadeIn;
          animation: .15s ease-in backwards fancybox-fadeIn; }

.fancybox__container.is-animated.is-closing .fancybox__toolbar {
  opacity: 0; }

.fancybox__toolbar__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.fancybox__toolbar__items--left {
  margin-right: auto; }

.fancybox__toolbar__items--center {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%); }

.fancybox__toolbar__items--right {
  margin-left: auto; }

@media (max-width: 640px) {
  .fancybox__toolbar__items--center:not(:last-child) {
    display: none; } }

.fancybox__counter {
  min-width: 72px;
  padding: 0 10px;
  line-height: var(--carousel-button-height, 48px);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased; }

.fancybox__progress {
  background: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0;
      -ms-transform-origin: 0;
          transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
  z-index: 30;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }

.fancybox__container:-webkit-full-screen::backdrop {
  opacity: 0; }

.fancybox__container:-ms-fullscreen::backdrop {
  opacity: 0; }

.fancybox__container:fullscreen::-webkit-backdrop {
  opacity: 0; }

.fancybox__container:fullscreen::backdrop {
  opacity: 0; }

.fancybox__button--fullscreen g:nth-child(2) {
  display: none; }

.fancybox__container:-webkit-full-screen .fancybox__button--fullscreen g:nth-child(1) {
  display: none; }

.fancybox__container:-ms-fullscreen .fancybox__button--fullscreen g:nth-child(1) {
  display: none; }

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
  display: none; }

.fancybox__container:-webkit-full-screen .fancybox__button--fullscreen g:nth-child(2) {
  display: block; }

.fancybox__container:-ms-fullscreen .fancybox__button--fullscreen g:nth-child(2) {
  display: block; }

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
  display: block; }

.fancybox__button--slideshow g:nth-child(2) {
  display: none; }

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1) {
  display: none; }

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
  display: block; }

/**
 * Swiper 8.0.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 14, 2022
 */
@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;
  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; }

.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; }

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

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

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

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  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)); }

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none; }

.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; }

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

:root {
  font-size: 16px; }

html {
  position: relative;
  min-height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "JetBrainsMono", sans-serif; }

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;
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 400;
  color: black;
  background: #F9F9F9; }
  @media (max-width: 991px) {
    body {
      font-size: 1.125rem; } }
  @media (max-width: 767px) {
    body {
      font-size: 1rem; } }

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; }

p {
  margin-bottom: 1.625rem; }
  @media (max-width: 767px) {
    p {
      margin-bottom: 1.313rem; } }

a,
button {
  outline: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  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; }

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

.container {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 0 30px; }
  .container-sm {
    max-width: 622px; }
  .container-md {
    max-width: 766px; }
  .container-xl {
    max-width: 939px; }
  .container-xxl {
    max-width: 991px; }
  .container-full {
    padding: 0 147px; }
    @media (max-width: 1559px) {
      .container-full {
        padding: 0 67px; } }
    @media (max-width: 1399px) {
      .container-full {
        padding: 0 40px; } }
    @media (max-width: 1199px) {
      .container-full {
        padding: 0 30px; } }

.app {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 280px; }

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: 700;
  line-height: 1.33;
  color: black; }

h1 {
  font-size: 2.25rem;
  text-align: center;
  margin-bottom: 3.35rem;
  text-transform: uppercase; }
  @media (max-width: 991px) {
    h1 {
      font-size: 1.875rem; } }
  @media (max-width: 767px) {
    h1 {
      font-size: 1.438rem;
      margin-bottom: 1.875rem; } }

h2 {
  font-size: 1.25rem;
  text-transform: uppercase; }

.title-small {
  font-size: 1.25rem;
  margin-bottom: 30px; }

.title-large {
  font-size: 1.875rem; }
  @media (max-width: 767px) {
    .title-large {
      font-size: 1.25rem; } }

.js-lazy {
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }
  .js-lazy.is-loaded {
    opacity: 1; }

.content {
  padding-top: 116px;
  padding-bottom: 90px; }
  @media (max-width: 991px) {
    .content {
      padding-top: 67px;
      padding-bottom: 50px; } }
  .content p:last-child {
    margin-bottom: 0; }
  .content--text ul {
    margin-bottom: 1.625rem; }
    .content--text ul li {
      padding-left: 30px;
      position: relative; }
      .content--text ul li:before {
        content: '';
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: #000000;
        position: absolute;
        left: 11px;
        top: 11px; }

.main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; }

.text h2 {
  margin-bottom: 22px; }

.text p {
  margin-bottom: 20px; }

input {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none; }

.button {
  padding: 0 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 1;
  background: none;
  font-weight: 500;
  font-size: 1.25rem;
  height: 60px; }
  @media (max-width: 767px) {
    .button {
      font-size: 1rem; } }
  .button--green {
    background: #D8E915;
    border-width: 0 5px 5px 0;
    border-style: solid;
    border-color: #000000; }
  .button--black {
    background: #000000;
    border-width: 0 5px 5px 0;
    border-style: solid;
    border-color: #d8e915;
    color: #FFFFFF; }
  .button--block {
    width: 100%; }
  .button--small {
    height: 50px; }
  .button--add {
    width: 50px; }
    .button--add svg {
      width: 23px;
      height: 25px; }
  .button--clear {
    background: #BDBDBD;
    width: 50px; }
    .button--clear svg {
      width: 17px;
      height: 19px; }
  .button--action {
    width: 300px; }
    @media (max-width: 1399px) {
      .button--action {
        width: 200px; } }

.input,
.textarea {
  background: #FFFFFF;
  border: 1px solid #000000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 12px;
  width: 100%;
  outline: none !important;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.3;
  color: #000000;
  -webkit-transition: border-width 0s ease-in-out, border-color 0.3s ease-in-out;
  -o-transition: border-width 0s ease-in-out, border-color 0.3s ease-in-out;
  transition: border-width 0s ease-in-out, border-color 0.3s ease-in-out; }
  @media (max-width: 767px) {
    .input,
    .textarea {
      height: 37px; } }
  .input::-webkit-input-placeholder, .textarea::-webkit-input-placeholder {
    color: #BDBDBD; }
  .input::-moz-placeholder, .textarea::-moz-placeholder {
    color: #BDBDBD; }
  .input:-ms-input-placeholder, .textarea:-ms-input-placeholder {
    color: #BDBDBD; }
  .input::-ms-input-placeholder, .textarea::-ms-input-placeholder {
    color: #BDBDBD; }
  .input::placeholder,
  .textarea::placeholder {
    color: #BDBDBD; }
  .input--text-large,
  .textarea--text-large {
    text-align: center;
    font-size: 1.75rem; }
  .input--text-small,
  .textarea--text-small {
    font-size: 1rem; }

.textarea {
  height: 168px;
  padding: 12px; }

.checkbox {
  position: absolute;
  opacity: 0;
  visibility: hidden; }
  .checkbox + label {
    padding-left: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.2;
    min-height: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .checkbox + label:before, .checkbox + label:after {
      content: '';
      width: 20px;
      height: 20px;
      position: absolute;
      left: 0;
      top: 50%;
      margin-top: -10px;
      -webkit-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s; }
    .checkbox + label:before {
      background: #BDBDBD; }
    .checkbox + label:after {
      background: url(../images/icons/check-01.svg) no-repeat center;
      background-size: 50%;
      width: 20px;
      height: 20px;
      opacity: 0; }
  .checkbox:checked + label:before {
    background: #D8E915; }
  .checkbox:checked + label:after {
    opacity: 1; }

.link {
  font-weight: 700;
  color: #4A9DFF; }
  .link:hover {
    color: #316199; }

.swiper-pagination {
  position: absolute;
  right: 400px;
  bottom: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 5; }
  @media (max-width: 1559px) {
    .swiper-pagination {
      right: 320px; } }
  @media (max-width: 1399px) {
    .swiper-pagination {
      right: 300px; } }
  @media (max-width: 1199px) {
    .swiper-pagination {
      right: 0;
      left: 0;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; } }
  @media (max-width: 767px) {
    .swiper-pagination {
      bottom: 50px; } }
  .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(217, 217, 217, 0.5);
    margin: 0 8px;
    cursor: pointer; }
    @media (max-width: 767px) {
      .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 5px; } }
    .swiper-pagination-bullet-active {
      background-color: #d9d9d9;
      cursor: default; }

.form__field {
  margin-bottom: 30px; }

.form__label {
  text-align: center;
  margin-bottom: 15px;
  display: block;
  font-weight: 500; }

.form__check {
  position: relative;
  margin-top: 30px; }
  .form__check:first-child {
    margin-top: 0; }
  .form__check label {
    font-weight: 500;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    min-height: 37px; }
    .form__check label:before {
      content: '';
      width: 85px;
      height: 37px;
      background: #D9D9D9;
      border-radius: 50px;
      position: absolute;
      right: 0;
      -webkit-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s; }
    .form__check label:after {
      content: '';
      width: 26px;
      height: 27px;
      background: #FFFFFF;
      border-radius: 50%;
      position: absolute;
      right: 53px;
      top: 5px;
      -webkit-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s; }
  .form__check input {
    position: absolute;
    visibility: hidden;
    opacity: 0; }
    .form__check input:checked + label:after {
      right: 5px; }
    .form__check input:checked + label:before {
      background: #D8E915; }

.form__option {
  overflow: hidden;
  height: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }
  .form__option-title {
    text-align: center;
    font-weight: 500;
    font-size: 20px;
    color: #D8E915;
    background: #000000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 2px 5px;
    margin-bottom: 15px;
    margin-top: 15px; }
  .form__option-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: -7px -5px; }
    @media (max-width: 549px) {
      .form__option-list {
        margin: -6px -4px; } }
  .form__option-item {
    width: calc(10% - 10px);
    margin: 7px 5px;
    position: relative; }
    @media (max-width: 549px) {
      .form__option-item {
        width: calc(20% - 8px);
        margin: 6px 4px; } }
    .form__option-item label {
      height: 31px;
      line-height: 31px;
      background: #D9D9D9;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      text-align: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      width: 100%;
      font-weight: 500;
      font-size: 1.25rem; }
      @media (max-width: 549px) {
        .form__option-item label {
          height: 39px;
          font-size: 1rem; } }
    .form__option-item input {
      position: absolute;
      visibility: hidden;
      opacity: 0; }
      .form__option-item input:checked + label {
        background: #000000;
        color: #FFFFFF; }

.form__wrap {
  background: #FFFFFF;
  padding: 50px 20px 70px 20px; }
  @media (max-width: 767px) {
    .form__wrap {
      padding-top: 40px;
      padding-bottom: 60px; } }
  .form__wrap--stat {
    max-width: 582px;
    padding: 50px 40px; }
    @media (max-width: 767px) {
      .form__wrap--stat {
        margin: 0 auto;
        padding: 40px 20px; } }

.form__edit {
  position: absolute;
  right: 15px;
  top: 12px; }
  .form__edit svg {
    width: 24px;
    height: 24px; }

.form--wrap {
  max-width: 500px;
  margin: 0 auto; }

.form__recover {
  padding-top: 30px;
  padding-bottom: 56px; }
  @media (max-width: 767px) {
    .form__recover {
      padding-top: 20px;
      padding-bottom: 30px; } }
  .form__recover a {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
    -webkit-text-decoration-line: underline;
            text-decoration-line: underline; }

.form__reg {
  padding-top: 150px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2; }
  @media (max-width: 767px) {
    .form__reg {
      padding-top: 50px; } }
  .form__reg a {
    -webkit-text-decoration-line: underline;
            text-decoration-line: underline; }

.form__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.form__column {
  width: 50%; }
  @media (max-width: 767px) {
    .form__column {
      width: 100%; } }

.form__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  @media (max-width: 767px) {
    .form__image {
      display: none; } }

@media (max-width: 1199px) {
  .form__title {
    font-size: 1.75rem; } }

@media (max-width: 991px) {
  .form__title {
    font-size: 1.25rem; } }

.form__passShow {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-56%);
      -ms-transform: translateY(-56%);
          transform: translateY(-56%); }
  .form__passShow svg.show {
    width: 25px;
    height: 10px; }
  .form__passShow svg.hide {
    width: 25px;
    height: 20px;
    display: none; }
  .form__passShow.is-active svg.show {
    display: none; }
  .form__passShow.is-active svg.hide {
    display: block; }

.modal {
  display: none; }
  .modal--addTag {
    width: 562px;
    padding: 45px 52px 71px 52px; }
    @media (max-width: 767px) {
      .modal--addTag {
        width: auto;
        padding: 30px; } }
  .modal__title {
    text-align: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 0 30px 0; }
  .modal__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -5px; }
    .modal__actions .button {
      -webkit-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
      margin: 0 5px; }

.overflow-hidden {
  overflow: hidden !important; }

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

.is-hide {
  opacity: 0; }

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

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

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .flex-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .flex-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  .flex-nowrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap; }
  .flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .flex-column-rev {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; }
  .flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row; }
  .flex-row-rev {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse; }
  .flex-inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex; }

.grow-0 {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0; }

.grow-1 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; }

.col {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; }
  .col-1 {
    width: calc(10%);
    min-width: calc(10%); }
  .col-2 {
    width: calc(20%);
    min-width: calc(20%); }
  .col-3 {
    width: calc(30%);
    min-width: calc(30%); }
  .col-4 {
    width: calc(40%);
    min-width: calc(40%); }
  .col-5 {
    width: calc(50%);
    min-width: calc(50%); }
  .col-6 {
    width: calc(60%);
    min-width: calc(60%); }
  .col-7 {
    width: calc(70%);
    min-width: calc(70%); }
  .col-8 {
    width: calc(80%);
    min-width: calc(80%); }
  .col-9 {
    width: calc(90%);
    min-width: calc(90%); }
  .col-10 {
    width: calc(100%);
    min-width: calc(100%); }

.justify-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; }

.justify-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; }

.justify-space {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.items-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }

.items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.items-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end; }

.gap-top_inner {
  padding-top: 150px; }

.gap-top_outer {
  margin-top: 150px; }

.gap-bottom_inner {
  padding-bottom: 150px; }

.gap-bottom_outer {
  margin-bottom: 150px; }

.section {
  padding-top: 150px;
  padding-bottom: 150px; }

.relative {
  position: relative; }

.picture {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; }

.radius {
  border-radius: 10px; }
  .radius-20 {
    border-radius: 20px; }

.fs-20 {
  font-size: 1.25rem; }

.fw-7 {
  font-weight: 700; }

.bg-gray {
  background: #F8F6F0; }

.bg-black {
  background: #000000; }

.cl-yell {
  color: #D8E915; }

.mb-50 {
  margin-bottom: 50px; }

.mb-90 {
  margin-bottom: 90px; }

.mb-80 {
  margin-bottom: 80px; }

.mb-30 {
  margin-bottom: 30px; }

.mb-15 {
  margin-bottom: 15px !important; }

.mt-30 {
  margin-top: 30px; }

.mt-100 {
  margin-top: 100px; }

.ml-10 {
  margin-left: 10px; }

.ml-15 {
  margin-left: 15px !important; }

.pr-8 {
  padding-right: 8px; }

.pr-45 {
  padding-right: 45px; }

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important; }

.px-4 {
  padding-right: 4px !important;
  padding-left: 4px !important; }

.px-8 {
  padding-right: 8px !important;
  padding-left: 8px !important; }

@media (max-width: 991px) {
  .text-left-laptop {
    text-align: left !important; } }

.arrow {
  width: 16px;
  height: 18px;
  margin-left: 15px; }

.scroll {
  overflow-y: auto; }

.tooltip {
  border: 0;
  background: none;
  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; }
  .tooltip-input {
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -11px; }
  .tooltip__icon {
    width: 22px;
    height: 22px; }
  .tooltip__modal {
    position: absolute;
    left: 56px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 233px;
    background: #FFFFFF;
    border: 1px solid #BDBDBD;
    padding: 15px 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    color: #000000;
    line-height: 1;
    font-size: 0.875rem;
    text-align: left;
    display: none;
    z-index: 40; }
    .tooltip__modal b {
      font-size: 1rem;
      font-weight: 500;
      margin-bottom: 10px; }
  .tooltip:focus .tooltip__modal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .tooltip + .input {
    padding-right: 40px; }

.w-170 {
  min-width: 170px !important;
  width: 170px !important; }

.modal-header, .modal-footer, .modal-body {
  padding: 20px;
  border: 0; }

.modal-header {
  padding-bottom: 0; }
  .modal-header .close {
    border: 0;
    background: none; }
    .modal-header .close span {
      display: none; }

.modal-footer {
  padding-top: 0; }

@media (max-width: 1199px) {
  .ds_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .ds_flex-wrap {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
    .ds_flex-nowrap {
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap; }
    .ds_flex-column {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
    .ds_flex-column-rev {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse; }
    .ds_flex-row {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; }
    .ds_flex-row-rev {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse; }
    .ds_flex-inline {
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex; }
  .ds_grow-0 {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0; }
  .ds_grow-1 {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }
  .ds_col {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }
    .ds_col-1 {
      width: calc(10%);
      min-width: calc(10%); }
    .ds_col-2 {
      width: calc(20%);
      min-width: calc(20%); }
    .ds_col-3 {
      width: calc(30%);
      min-width: calc(30%); }
    .ds_col-4 {
      width: calc(40%);
      min-width: calc(40%); }
    .ds_col-5 {
      width: calc(50%);
      min-width: calc(50%); }
    .ds_col-6 {
      width: calc(60%);
      min-width: calc(60%); }
    .ds_col-7 {
      width: calc(70%);
      min-width: calc(70%); }
    .ds_col-8 {
      width: calc(80%);
      min-width: calc(80%); }
    .ds_col-9 {
      width: calc(90%);
      min-width: calc(90%); }
    .ds_col-10 {
      width: calc(100%);
      min-width: calc(100%); }
  .ds_justify-start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
  .ds_justify-end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
  .ds_justify-space {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .ds_justify-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .ds_items-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }
  .ds_items-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .ds_items-end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end; }
  .ds_mb-30 {
    margin-bottom: 30px; } }

@media (max-width: 767px) {
  .mb_fs-14 {
    font-size: 0.875rem; }
  .mb_mb-0 {
    margin-bottom: 0; } }

.header {
  background: #000;
  min-height: 86px;
  position: relative;
  z-index: 2; }
  .header__container {
    padding-top: 20px;
    padding-bottom: 12px;
    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; }
    @media (min-width: 1560px) {
      .header__container {
        padding-right: 67px; } }
    @media (max-width: 1399px) {
      .header__container {
        padding-top: 40px;
        padding-bottom: 40px; } }
    @media (max-width: 1199px) {
      .header__container {
        padding-top: 28px;
        padding-bottom: 28px; } }
  .header__logo {
    margin-right: 20px; }
    .header__logo svg {
      width: 168px;
      height: 46px;
      fill: #D8E915; }
      @media (max-width: 991px) {
        .header__logo svg {
          width: 106px;
          height: 29px; } }
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (max-width: 1399px) {
      .header__nav {
        display: none;
        position: fixed;
        left: 0;
        right: 0;
        top: 126px;
        bottom: 0;
        background: #000000;
        z-index: 50;
        -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: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        padding-top: 60px;
        padding-bottom: 60px;
        overflow-y: auto; } }
    @media (max-width: 1199px) {
      .header__nav {
        top: 102px; } }
    @media (max-width: 991px) {
      .header__nav {
        top: 86px; } }
  .header__menu {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    @media (max-width: 1399px) {
      .header__menu {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-flex: initial;
            -ms-flex-positive: initial;
                flex-grow: initial;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        min-width: 245px; } }
    .header__menu li {
      margin: 0 54px; }
      @media (max-width: 1559px) {
        .header__menu li {
          margin: 0 34px; } }
      @media (max-width: 1399px) {
        .header__menu li {
          margin: 0 0 30px 0; } }
    .header__menu a {
      color: #fff; }
      .header__menu a:hover {
        color: #D8E915; }
  .header__button {
    width: 305px;
    height: 55px;
    background: #D8E915;
    border-width: 0 5px 5px 0;
    border-style: solid;
    border-color: #FFFFFF;
    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;
    text-align: center;
    font-weight: 500;
    color: #000000; }
    @media (max-width: 1399px) {
      .header__button {
        width: 257px;
        height: 63px;
        min-height: 63px;
        background: #000000;
        border: 1px solid #FFFFFF;
        color: #FFFFFF; } }
    @media (max-width: 1399px) {
      .header__button--lk {
        display: none; } }
    .header__button--logout {
      display: none;
      color: #d8e915;
      border-color: #d8e915; }
      .header__button--logout svg {
        width: 24px;
        height: 24px;
        fill: #d8e915;
        margin-left: 15px; }
      @media (max-width: 1399px) {
        .header__button--logout {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex; } }
  .header__btnMenu {
    display: none;
    min-width: 32px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    @media (max-width: 1399px) {
      .header__btnMenu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; } }
  .header__burger {
    width: 32px;
    height: 23px; }
  .header__close {
    display: none;
    width: 23px;
    height: 23px; }
  .header__userMenu {
    display: none; }
    @media (max-width: 1399px) {
      .header__userMenu {
        display: block; } }
    .header__userMenu a {
      color: #d8e915; }
  @media (max-width: 1399px) {
    .header--menu {
      background: #D8E915; }
    .header--menu .header__logo svg {
      fill: #000000; }
    .header--menu .header__burger {
      display: none; }
    .header--menu .header__close {
      display: block; }
    .header--menu .header__nav {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }

.footer {
  background: #BDBDBD;
  padding: 96px 0; }
  @media (max-width: 991px) {
    .footer {
      padding: 60px 0; } }
  @media (max-width: 767px) {
    .footer {
      padding: 34px 0; } }
  @media (min-width: 1560px) {
    .footer__container {
      padding-left: 126px; } }
  @media (max-width: 767px) {
    .footer__container {
      padding-right: 20px; } }
  .footer__menu {
    margin-right: 226px; }
    @media (max-width: 991px) {
      .footer__menu {
        margin-right: 150px; } }
    .footer__menu:last-child {
      margin-right: 0; }
    .footer__menu li {
      font-weight: 500;
      font-size: 1rem;
      margin-bottom: 1rem; }
      @media (max-width: 767px) {
        .footer__menu li {
          font-size: 0.875rem;
          margin-bottom: 1.1875rem; } }
    .footer__menu a {
      color: #fff; }
      .footer__menu a:hover {
        color: #D8E915; }

.payment {
  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;
  padding: 70px 0; }
  @media (max-width: 767px) {
    .payment {
      padding-bottom: 0;
      padding-top: 40px; } }
  .payment li {
    margin: 0 7px; }

.home {
  background: #F9F9F9; }
  @media (max-width: 1199px) {
    .home-slide {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; } }
  .home-slide__title {
    text-align: left;
    margin: 0 0 20px 0;
    font-weight: 400;
    font-size: 96px;
    line-height: 1.3;
    color: #000000; }
    @media (max-width: 1199px) {
      .home-slide__title {
        font-size: 86px; } }
    @media (max-width: 991px) {
      .home-slide__title {
        font-size: 60px; } }
    @media (max-width: 767px) {
      .home-slide__title {
        font-size: 40px; } }
  .home-slide__content {
    max-width: 571px;
    padding-top: 218px;
    padding-bottom: 140px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    @media (max-width: 1199px) {
      .home-slide__content {
        width: 50%;
        padding-top: 150px; } }
    @media (max-width: 991px) {
      .home-slide__content {
        padding-top: 100px;
        padding-bottom: 100px; } }
    @media (max-width: 767px) {
      .home-slide__content {
        padding-top: 90px;
        padding-bottom: 98px;
        width: 100%; } }
  .home-slide__button {
    margin-top: 49px; }
    @media (max-width: 991px) {
      .home-slide__button {
        margin-top: 30px; } }
    @media (max-width: 767px) {
      .home-slide__button {
        margin-top: 20px; } }
  .home-slide__picture {
    position: absolute;
    right: -146px;
    top: 0; }
    @media (max-width: 1559px) {
      .home-slide__picture {
        width: 50%;
        right: 0;
        bottom: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        position: absolute;
        z-index: 5; }
        .home-slide__picture img {
          max-width: 100%; } }
    @media (max-width: 1199px) {
      .home-slide__picture {
        position: relative; } }
    @media (max-width: 767px) {
      .home-slide__picture {
        display: none; } }

.user-menu {
  background: #D8E915; }
  @media (max-width: 1399px) {
    .user-menu {
      display: none; } }
  .user-menu__list {
    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; }
    .user-menu__list li {
      font-weight: 500;
      font-size: 1.25rem; }
      .user-menu__list li.is-active {
        font-weight: 800; }
    .user-menu__list a {
      color: #000000;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      height: 62px; }
      .user-menu__list a svg {
        width: 24px;
        height: 24px;
        margin-left: 15px;
        fill: #000000; }

.pages {
  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;
  margin-top: 38px; }
  .pages a,
  .pages span {
    width: 40px;
    height: 40px;
    margin: 0 10px;
    background: #D9D9D9;
    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;
    text-align: center;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.3;
    color: #000000; }
  .pages span {
    background: #D8E915; }

.head {
  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;
  margin-bottom: 20px; }
  @media (max-width: 991px) {
    .head {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }
  @media (max-width: 767px) {
    .head {
      margin-bottom: 40px; } }
  .head__title {
    margin: 0 43px 0 0;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: left; }
    @media (max-width: 991px) {
      .head__title {
        margin-right: 0;
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1; } }
    @media (max-width: 767px) {
      .head__title {
        font-size: 1.438rem; } }
  .head__show {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    font-weight: 400;
    font-size: 1.25rem;
    padding-right: 30px;
    white-space: nowrap; }
    @media (max-width: 991px) {
      .head__show {
        -webkit-box-flex: 0;
            -ms-flex-positive: 0;
                flex-grow: 0;
        padding-right: 0; } }
    @media (max-width: 767px) {
      .head__show {
        font-size: 0.875rem; }
        .head__show span {
          display: none; } }
  .head__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (max-width: 991px) {
      .head__actions {
        width: 100%;
        margin-top: 20px; } }
    .head__actions .button {
      margin-left: 22px; }
      @media (max-width: 1199px) {
        .head__actions .button {
          margin-left: 12px; } }
      @media (max-width: 767px) {
        .head__actions .button {
          margin-left: 5px; } }
      .head__actions .button:first-child {
        margin-left: 0; }
      .head__actions .button--action {
        min-width: 300px; }
        @media (max-width: 991px) {
          .head__actions .button--action {
            min-width: auto;
            width: auto;
            -webkit-box-flex: 1;
                -ms-flex-positive: 1;
                    flex-grow: 1; } }
        @media (max-width: 767px) {
          .head__actions .button--action {
            height: 36px;
            font-size: 1rem; }
            .head__actions .button--action svg.arrow {
              margin-left: 7px;
              width: 12px;
              height: 14px; } }
      @media (max-width: 767px) {
        .head__actions .button--add, .head__actions .button--clear {
          width: 36px;
          height: 36px; }
          .head__actions .button--add svg, .head__actions .button--clear svg {
            width: 11px;
            height: 11px; } }
    .head__actions--full {
      -webkit-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1; }
      @media (max-width: 991px) {
        .head__actions--full {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column; } }
      @media (max-width: 1199px) {
        .head__actions--full .button--action {
          min-width: 250px;
          width: 250px; } }
      @media (max-width: 991px) {
        .head__actions--full .button--action {
          width: auto;
          min-width: auto; } }
  .head__input {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }
    @media (max-width: 991px) {
      .head__input {
        margin-bottom: 20px; } }
  .head__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 22px; }
    @media (max-width: 991px) {
      .head__row {
        margin-left: 0;
        width: 100%; } }

.filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 22px 0;
  min-width: 1205px; }
  .filter__search {
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    background: none;
    border: 0; }
    .filter__search svg {
      width: 19px;
      height: 25px;
      fill: none; }
  .filter__input {
    background: #FFFFFF;
    border: 1px solid #000000;
    height: 48px;
    padding: 0 10px 0 10px;
    color: #000000;
    font-weight: 500;
    font-size: 1rem;
    width: 100%; }
    .filter__input::-webkit-input-placeholder {
      color: #BDBDBD; }
    .filter__input::-moz-placeholder {
      color: #BDBDBD; }
    .filter__input:-ms-input-placeholder {
      color: #BDBDBD; }
    .filter__input::-ms-input-placeholder {
      color: #BDBDBD; }
    .filter__input::placeholder {
      color: #BDBDBD; }
  .filter__field {
    margin: 0 7px; }
    .filter__field:first-child {
      margin-left: 0; }
    .filter__field:last-child {
      margin-right: 0; }
  .filter__select {
    width: 100%;
    height: 48px;
    background: #FFFFFF;
    border: 1px solid #000000;
    font-weight: 500;
    font-size: 1rem;
    color: #000000;
    text-align: left;
    padding: 0 10px;
    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;
    position: relative;
    z-index: 4; }
    .filter__select svg {
      width: 13px;
      height: 10px;
      fill: none; }
    .filter__select:active .filter__modal,
    .filter__select:focus .filter__modal {
      display: block; }
  .filter__modal {
    position: absolute;
    left: -1px;
    right: -1px;
    top: 100%;
    -webkit-box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.25);
            box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.25);
    background: #FFFFFF;
    border: 1px solid #000000;
    display: none; }
  .filter__list li a {
    display: block;
    padding: 13px 10px;
    font-weight: 500;
    font-size: 0.875rem; }
  .filter__addTag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px;
    font-weight: 500;
    font-size: 0.875rem; }
    .filter__addTag svg {
      width: 20px;
      height: 20px;
      margin-right: 11px; }
  .filter__check {
    padding: 10px 11px; }
    .filter__check--all {
      padding: 12px 11px;
      -webkit-box-shadow: inset 3px 4px 10px rgba(0, 0, 0, 0.25);
              box-shadow: inset 3px 4px 10px rgba(0, 0, 0, 0.25);
      border-top: 1px solid #000000;
      border-bottom: 1px solid #000000; }

.table {
  overflow-x: auto;
  min-height: 300px; }
  .table table {
    width: 100%;
    border: 0;
    border-collapse: collapse;
    border-spacing: 0;
    min-width: 1205px; }
    .table table th {
      padding: 0 7px;
      padding-bottom: 22px; }
      .table table th:first-child {
        padding-left: 0; }
      .table table th:last-child {
        padding-right: 0; }
    .table table td {
      text-align: center;
      padding: 0 7px;
      font-weight: 500;
      font-size: 1rem;
      background: #ffffff; }
      .table table td.none {
        text-align: center !important;
        font-size: 1.25rem;
        line-height: 1.3;
        padding-top: 20px;
        padding-bottom: 20px; }
  .table--links table th {
    padding: 0 10px;
    padding-bottom: 0;
    background: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.3;
    border: 1px solid #000000; }
    .table--links table th:first-child {
      text-align: left;
      padding-left: 10px; }
    .table--links table th:last-child {
      padding-left: 0; }
    .table--links table th .filter__select {
      border: 0; }
  .table--links table td {
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.3;
    padding: 0 10px; }
    .table--links table td:first-child {
      text-align: left; }
  .table--small table {
    min-width: 850px; }
  .table__actions {
    width: 124px;
    padding: 0 !important; }
    .table__actions button {
      width: 62px;
      height: 69px;
      background: none;
      border: 0;
      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; }
  .table__edit {
    width: 20px;
    height: 21px; }
  .table__del {
    width: 17px;
    height: 16px; }
  .table__check {
    width: 26px;
    height: 26px;
    fill: none;
    margin: 0 auto; }

.btn-modal__frame {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  text-align: left;
  display: none; }
  .btn-modal__frame--black {
    background: #000000;
    right: -5px;
    color: #ffffff; }
  @media (max-width: 549px) {
    .btn-modal__frame {
      min-width: 220px;
      left: auto; } }

.btn-modal__wrap {
  position: relative;
  z-index: 5; }
  .btn-modal__wrap:focus .btn-modal__frame {
    display: block; }

.btn-modal__group {
  padding: 19px; }
  @media (max-width: 549px) {
    .btn-modal__group {
      padding: 15px; } }
  .btn-modal__group + .btn-modal__group {
    border-top: 1px solid #FFFFFF; }

.btn-modal__title {
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 8px; }

.btn-modal__list li {
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  padding: 5px 0; }

.btn-modal__field {
  position: relative; }
  .btn-modal__field + .btn-modal__field {
    margin-top: 8px; }
  .btn-modal__field label {
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 18px;
    text-transform: uppercase;
    padding-left: 37px;
    display: block;
    position: relative;
    min-height: 20px;
    padding-top: 1px; }
    .btn-modal__field label:before {
      content: '';
      width: 20px;
      height: 20px;
      background: #BDBDBD;
      position: absolute;
      left: 0;
      top: 0;
      -webkit-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s; }
    .btn-modal__field label:after {
      content: '';
      background: url(../images/cheked.svg) no-repeat center;
      background-size: contain;
      width: 20px;
      height: 20px;
      position: absolute;
      left: 0;
      top: 0;
      -webkit-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s;
      opacity: 0; }
  .btn-modal__field input {
    opacity: 0;
    position: absolute;
    visibility: hidden; }
    .btn-modal__field input:checked + label:before {
      background: #D8E915; }
    .btn-modal__field input:checked + label:after {
      opacity: 1; }

.tariff__head {
  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;
  margin-bottom: 54px; }
  @media (max-width: 767px) {
    .tariff__head {
      margin-bottom: 30px; } }

.tariff__title {
  margin: 0;
  font-size: 2.25rem; }
  @media (max-width: 767px) {
    .tariff__title span {
      display: none; } }

.tariff__contact {
  width: 417px;
  height: 46px;
  background: #BDBDBD;
  border-width: 0 5px 5px 0;
  border-style: solid;
  border-color: #D8E915;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 26px;
  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;
  text-align: center;
  color: #ffffff; }
  @media (max-width: 991px) {
    .tariff__contact {
      display: none; } }

.tariff__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -45px; }
  @media (max-width: 1399px) {
    .tariff__items {
      margin: 0 -20px; } }

.tariff__item {
  width: calc(33.3% - 90px);
  min-width: calc(33.3% - 90px);
  padding-bottom: 80px;
  background: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #ffffff;
  text-align: center;
  margin: 0 45px; }
  @media (max-width: 1399px) {
    .tariff__item {
      width: calc(50% - 40px);
      min-width: calc(50% - 40px);
      margin: 0 20px;
      margin-bottom: 50px; } }
  @media (max-width: 991px) {
    .tariff__item {
      width: calc(100% - 20px); } }
  @media (max-width: 767px) {
    .tariff__item {
      padding-bottom: 34px;
      margin-bottom: 30px; } }
  .tariff__item:first-child {
    background: #BDBDBD; }
  .tariff__item-title {
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.2;
    height: 121px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #D8E915;
    color: #000000; }
    @media (max-width: 767px) {
      .tariff__item-title {
        height: 77px;
        font-size: 1.5rem; } }
  .tariff__item-price {
    padding-top: 83px;
    padding-bottom: 34px;
    min-height: 89px;
    font-weight: 700;
    font-size: 3.438rem;
    line-height: 89px;
    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; }
    @media (max-width: 767px) {
      .tariff__item-price {
        padding-top: 43px;
        padding-bottom: 14px;
        font-size: 42px; } }
    .tariff__item-price svg {
      width: 42px;
      height: 94px; }
    .tariff__item-price i {
      font-size: 1.5rem;
      font-style: normal; }
  .tariff__item-info {
    font-size: 1.5rem;
    line-height: 1.33;
    padding-bottom: 78px; }
    @media (max-width: 767px) {
      .tariff__item-info {
        font-size: 1.25rem;
        padding-bottom: 30px; } }
  .tariff__item-info ul {
    text-align: left;
    padding: 0 60px;
  }
  .tariff__item-info ul li {
    list-style: disc;
  }
  .tariff__item-button {
    padding: 0 30px; }
    @media (max-width: 767px) {
      .tariff__item-button {
        padding: 0 22px; } }
    .tariff__item-button a,
    .tariff__item-button span {
      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;
      text-align: center;
      height: 90px;
      border: 2px solid #FFFFFF;
      font-weight: 700;
      font-size: 1.5rem;
      line-height: 1.3; }
      @media (max-width: 767px) {
        .tariff__item-button a,
        .tariff__item-button span {
          height: 56px;
          font-size: 1.125rem; } }
    @media (max-width: 767px) {
      .tariff__item-button span {
        font-size: 1rem; } }

.contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 100px; }
  @media (max-width: 991px) {
    .contacts {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      padding-bottom: 0; } }
  .contacts__info {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding-right: 30px; }
    @media (max-width: 991px) {
      .contacts__info {
        padding-right: 0; } }
  .contacts__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (max-width: 767px) {
      .contacts__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
    .contacts__row + .contacts__row {
      margin-top: 26px; }
  .contacts__label {
    width: 153px;
    min-width: 153px;
    background: #000000;
    padding: 3px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    line-height: 21px;
    text-transform: uppercase;
    margin-right: 14px; }
    @media (max-width: 767px) {
      .contacts__label {
        background: none;
        color: #000000;
        padding: 0;
        margin-bottom: 10px; } }
  .contacts__value {
    font-weight: 500;
    font-size: 1rem;
    line-height: 21px;
    text-transform: uppercase;
    background: #FFFFFF;
    border: 1px solid #000000;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding: 3px 10px; }
  .contacts__map {
    width: 379px;
    min-width: 379px; }
    @media (max-width: 991px) {
      .contacts__map {
        width: 100%;
        min-width: 100%;
        height: 207px;
        margin-top: 30px; } }
