@charset "UTF-8";
/**
 * Swiper 12.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 21, 2025
 */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

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

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: ease;
  transition-timing-function: initial;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

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

.swiper-horizontal {
  touch-action: pan-y;
}

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

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

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

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

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

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

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

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid #007aff;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}

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

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

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  width: 44px;
  width: var(--swiper-navigation-size);
  height: 44px;
  height: var(--swiper-navigation-size);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007aff;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }
  svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}

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

.swiper-button-prev,
.swiper-button-next {
  top: 50%;
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - 44px / 2);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
}

.swiper-button-prev {
  left: 4px;
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}

.swiper-button-next {
  right: 4px;
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}

.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: 50%;
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - 44px / 2);
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: 4px;
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: 4px;
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}

.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: 50%;
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - 44px / 2);
    margin-left: calc(0px - var(--swiper-navigation-size) / 2);
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: 4px;
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: 4px;
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.swiper-pagination-disabled {
    display: none !important;
  }
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 8px;
  bottom: var(--swiper-pagination-bottom, 8px);
  top: auto;
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}

.swiper-pagination-bullet {
  width: 8px;
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: 8px;
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: #000;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: 0.2;
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  button& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }
  &:only-child {
    display: none !important;
  }
}

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

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: 8px;
  right: var(--swiper-pagination-right, 8px);
  left: auto;
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  .swiper-pagination-bullet {
    margin: 6px 0;
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition: 200ms transform, 200ms top;
    }
  }
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 4px;
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition: 200ms transform, 200ms left;
    }
  }
}

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

/* Fraction */
.swiper-pagination-fraction {
  color: inherit;
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: #007aff;
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: 4px;
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
}

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

:root {
  --content-width: 1640px;
  --container-offset: 16px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --font-family: "MTS Text", sans-serif;
  --second-family: "CoFo Kak", sans-serif;
}

/* stylelint-disable */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

* {
  scroll-margin-top: 100px;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 576px) {
  * {
    scroll-margin-top: 0px;
  }
}
@media (max-width: 450px) {
  * {
    scroll-margin-top: 0px;
  }
}

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

body {
  height: 100%;
  font-family: "MTS Text", sans-serif;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/*! 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 {
  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 {
  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] {
  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;
}

.page__body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  color: var(--black-color);
  font-weight: 400;
  background-color: black;
}

/* Gilroy /fonts */
@font-face {
  font-family: "CoFo Kak";
  src: url("../fonts/cofo-kak-black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MTS Text";
  src: url("../fonts/MTSText-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MTS Text";
  src: url("../fonts/MTSText-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

a {
  text-decoration: none;
}

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

.btn-reset {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.btn-1 {
  font-family: "CoFo Kak", sans-serif;
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 16px;
  line-height: 20px;
  color: #f4f4f4;
  padding: 20px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  background: #2a2a2a;
  border-radius: 12px;
  background: linear-gradient(73deg, rgb(45, 42, 42) 7%, rgb(69, 38, 37) 23%, rgb(78, 37, 35) 48%, rgb(221, 17, 10) 90%);
  overflow: hidden;
}
.btn-1 span {
  position: relative;
  z-index: 1;
}
.btn-1 svg {
  position: relative;
  z-index: 1;
}
.btn-1::after {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  background-color: #ad1813;
  opacity: 0;
  transition: all 0.2s ease-in;
}
@media (any-hover: hover) {
  .btn-1:hover::after {
    opacity: 1;
  }
}
@media (max-width: 1024px) {
  .btn-1 {
    width: 100%;
  }
}
@media (max-width: 450px) {
  .btn-1 {
    font-size: 14px;
  }
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.list-marker ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-marker ul li {
  position: relative;
}
.list-marker ul li::after {
  content: "";
  position: absolute;
  top: 9px;
  left: -17px;
  transform: translateX(-100%);
  width: 6px;
  height: 6px;
  background-color: var(--icon-tertiary);
  border-radius: 100%;
}

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

.container {
  margin: 0 auto;
  padding: 0 16px;
  padding: 0 var(--container-offset);
  max-width: calc(1640px + (16px * 2));
  max-width: var(--container-width);
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

@media (max-width: 576px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .hidden-small-tablet {
    display: none !important;
  }
}

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

@media (max-width: 1200px) {
  .hidden-big-tablet {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .visible-big-tablet {
    display: none !important;
  }
}

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

@media (min-width: 768px) {
  .visible-small-tablet {
    display: none !important;
  }
}

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

a,
button,
label,
input,
textarea,
select,
svg * {
  transition: all 0.2s ease-in;
}

input,
select {
  outline: transparent;
}

.section-block {
  padding: 20px;
  border-radius: 24px;
  background: #151515;
}
@media (max-width: 576px) {
  .section-block {
    min-height: 824px;
    border-radius: 16px;
  }
}
@media (max-width: 450px) {
  .section-block {
    min-height: 735px;
  }
}

.section-block--white {
  background-color: white;
}

.margin-section {
  padding-bottom: 32px;
}
@media (max-width: 576px) {
  .margin-section {
    padding-bottom: 20px;
  }
}

.section-title {
  font-family: "CoFo Kak", sans-serif;
  font-family: var(--second-family);
  font-weight: 800;
  font-size: clamp(1.688rem, 1.377rem + 1.32vw, 2.75rem);
  line-height: clamp(1.688rem, 1.377rem + 1.32vw, 2.75rem);
  text-transform: uppercase;
  color: #f4f4f4;
}
@media (max-width: 450px) {
  .section-title {
    font-size: 20px;
    line-height: 20px;
  }
}
.section-title span {
  color: #868686;
}
.section-title--black {
  color: black;
}

.vacancy__swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
@media (max-width: 1024px) {
  .vacancy__swiper .swiper-wrapper {
    transition-timing-function: ease !important;
    transition-timing-function: initial !important;
  }
}

.swiper, .swiper * {
  box-sizing: border-box;
}

.vacancy__swiper .swiper-slide {
  height: auto;
  display: flex;
}

[data-tab] {
  display: none;
}

[data-tab].active {
  display: block;
}

.custom-select {
  position: relative;
  width: 100%;
  max-width: 880px;
}

.custom-select__head {
  width: 100%;
  padding: 17px 12px;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  line-height: 20px;
  color: #adadad;
  cursor: pointer;
  background-color: transparent;
}

.custom-select__arrow {
  width: 24px;
  height: 24px;
  color: #b3b3b3;
  transition: transform 0.3s ease;
}

.custom-select.active .custom-select__arrow {
  transform: rotate(180deg);
}

.custom-select__dropdown {
  margin-top: 6px;
  padding: 20px 12px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  display: none;
}

.custom-select.active .custom-select__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: flex;
  animation: fadeIn 0.4s ease forwards;
}

.custom-select__option {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 12px;
  background: transparent;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 20px;
  color: #b3b3b3;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.custom-select__option:hover {
  background: #ececec;
  color: #222;
}

.custom-select__option.active {
  background: #ddd;
  color: #222;
}

section {
  background-color: black;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.header {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 576px) {
  .header {
    padding: 40px 0;
  }
}
.header__content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.header__social {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__social-link {
  width: 44px;
  height: 44px;
  border-radius: 100%;
  border: 1px solid #5c5d5d;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.header__social-link svg {
  position: relative;
  z-index: 1;
}
@media (max-width: 576px) {
  .header__social-link svg {
    width: 17px;
    height: auto;
  }
}
.header__social-link::after {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FF0C04 0%, transparent 100%);
  opacity: 0;
  transition: all 0.2s ease-in;
}
@media (any-hover: hover) {
  .header__social-link:hover {
    border: transparent;
  }
  .header__social-link:hover::after {
    opacity: 1;
  }
  .header__social-link:hover svg path {
    fill: #0A0A0A;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.hero .container {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 1;
}
.hero__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-top: auto;
  position: relative;
  z-index: 1;
  padding-bottom: 40px;
}
.hero__info {
  max-width: 400px;
  width: 100%;
}
@media (max-width: 576px) {
  .hero__info {
    max-width: 100%;
  }
}
.hero__info-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #868686;
  margin-bottom: 48px;
  display: block;
}
@media (max-width: 576px) {
  .hero__info-text {
    max-width: 290px;
    margin-bottom: 24px;
  }
}
.hero__title {
  margin: 0;
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  .hero__title {
    max-width: 240px;
    margin-bottom: 12px;
  }
}
.hero__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #868686;
}
@media (max-width: 1024px) {
  .hero__text {
    display: none;
  }
}
.hero__btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero__video {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.anchor-menu {
  position: sticky;
  top: 0;
  background-color: black;
  z-index: 2;
  padding: 10px 0;
}
@media (max-height: 740px) {
  .anchor-menu {
    position: static;
  }
}
.anchor-menu__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1200px) {
  .anchor-menu__content {
    gap: 12px;
  }
}
@media (max-width: 576px) {
  .anchor-menu__logo svg {
    max-width: 120px;
    height: auto;
  }
}
.anchor-menu__list {
  display: flex;
  gap: 8px;
  overflow: auto;
}
.anchor-menu__list::-webkit-scrollbar {
  display: none;
}
@media (max-width: 1200px) {
  .anchor-menu__list {
    padding-left: 12px;
    border-left: 1px solid #f4f4f4;
  }
}
.anchor-menu__item {
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.anchor-menu__link {
  padding: 12px 20px;
  border: 1px solid #616161;
  border-radius: 12px;
  font-weight: 500;
  font-size: 16px;
  line-height: inherit;
  color: #616161;
  display: block;
}
.anchor-menu__link--active {
  color: white;
  border: 1px solid white;
}
@media (max-width: 576px) {
  .anchor-menu__link {
    padding: 6px 12px;
  }
}

.advantages .container {
  padding: 0;
}
.advantages__content {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  grid-gap: clamp(40px, 6vw, 120px);
  gap: clamp(40px, 6vw, 120px);
  align-items: flex-start;
}
@media (max-width: 1200px) {
  .advantages__content {
    grid-template-columns: 1fr;
  }
}
.advantages__info {
  display: flex;
  flex-direction: column;
}
.advantages__title {
  margin: 0;
  margin-bottom: 48px;
}
@media (max-width: 576px) {
  .advantages__title {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 24px;
  }
}
.advantages__accordion {
  display: flex;
  flex-direction: column;
}
.advantages__accordion-item {
  display: flex;
  gap: 48px;
  padding: 24px 0;
  border-bottom: 1px solid #868686;
  position: relative;
  cursor: pointer;
}
@media (max-width: 576px) {
  .advantages__accordion-item {
    gap: 32px;
    padding: 16px 0;
  }
}
.advantages__accordion-item:first-child {
  padding-top: 0;
}
.advantages__accordion-item::after {
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  margin-left: auto;
  background-image: url(../images/arrow-up-right.svg);
  background-size: cover;
  flex: none;
}
.advantages__accordion-item--active::after {
  background-image: url(../images/x.svg);
}
.advantages__accordion-item--active .advantages__accordion-info {
  max-height: 200px; /* или больше, если текста много */
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  margin-top: 12px;
}
.advantages__accordion-num {
  min-width: 55px;
  font-weight: 800;
  font-family: "CoFo Kak", sans-serif;
  font-family: var(--second-family);
  font-size: 24px;
  line-height: 24px;
  color: #ff0c04;
}
@media (max-width: 576px) {
  .advantages__accordion-num {
    min-width: 35px;
  }
}
@media (max-width: 576px) {
  .advantages__accordion-num {
    font-size: 16px;
    line-height: 20px;
  }
}
.advantages__accordion-content {
  display: flex;
  flex-direction: column;
}
.advantages__accordion-name {
  font-family: "CoFo Kak", sans-serif;
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 24px;
  line-height: 24px;
  text-transform: uppercase;
  color: #f4f4f4;
}
@media (max-width: 576px) {
  .advantages__accordion-name {
    font-size: 16px;
    line-height: 20px;
  }
}
.advantages__accordion-info {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #868686;
  max-width: 400px;
  margin: 0;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  margin-top: 0;
  transition: max-height 0.45s ease, opacity 0.35s ease, transform 0.35s ease, margin-top 0.35s ease, visibility 0.35s ease;
}
@media (max-width: 576px) {
  .advantages__accordion-info {
    margin-left: -67px;
  }
}
.advantages__media {
  position: relative;
}
.advantages__media-tag {
  position: absolute;
  left: -33px;
  top: 24px;
  bottom: 24px;
  border-radius: 24px;
  background: #ff0c04;
  width: 80px;
  z-index: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.advantages__media-tag span {
  font-family: "CoFo Kak", sans-serif;
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 24px;
  line-height: 24px;
  text-transform: uppercase;
  color: #f4f4f4;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-orientation: mixed;
  -webkit-mask-image: linear-gradient(to left, transparent 0%, rgba(0, 0, 0, 0.8) 10%, rgba(0, 0, 0, 0.15) 15%, rgba(0, 0, 0, 0.35) 25%, rgba(0, 0, 0, 0.7) 50%, rgb(0, 0, 0) 60%, rgb(0, 0, 0) 100%);
}
@media (max-width: 1200px) {
  .advantages__media-tag span {
    writing-mode: inherit;
    transform: none;
    transform: initial;
    text-orientation: inherit;
    font-size: 12px;
    line-height: 12px;
    -webkit-mask-image: linear-gradient(to top, transparent 0%, rgba(0, 0, 0, 0.8) 10%, rgba(0, 0, 0, 0.15) 15%, rgba(0, 0, 0, 0.35) 25%, rgba(0, 0, 0, 0.7) 50%, rgb(0, 0, 0) 60%, rgb(0, 0, 0) 100%);
  }
}
@media (max-width: 1200px) {
  .advantages__media-tag {
    left: 50%;
    transform: translateX(-50%);
    top: -15px;
    bottom: auto;
    bottom: initial;
    width: 100%;
    justify-content: center;
    align-items: initial;
    height: 100px;
    max-width: 320px;
    border-radius: 12px;
  }
}
.advantages__media-img {
  position: relative;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
  position: absolute;
}
.advantages__media-img--active {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
}

@media (max-width: 768px) {
  .payment-models .container {
    padding: 0;
  }
}
.payment-models__content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1200px) {
  .payment-models__content {
    flex-direction: column;
    justify-content: initial;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .payment-models__content {
    align-items: stretch;
    gap: 0;
  }
}
.payment-models__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.payment-models__title {
  margin: 0;
}
@media (max-width: 768px) {
  .payment-models__title {
    margin-bottom: 20px;
  }
}
.payment-models__cards {
  display: flex;
}
@media (max-width: 768px) {
  .payment-models__cards {
    overflow: auto;
    padding-bottom: 12px;
    margin-bottom: 24px;
  }
  .payment-models__cards::-webkit-scrollbar {
    width: 4px;
    height: 4px; /* ширина scrollbar */
  }
  .payment-models__cards::-webkit-scrollbar-track {
    background: #2a2a2a; /* цвет дорожки */
    border-radius: 100px;
  }
  .payment-models__cards::-webkit-scrollbar-thumb {
    background: #ff0c04; /* цвет плашки */
    border-radius: 100px; /* закругления плашки */
  }
}
@media (min-width: 768px) {
  .payment-models__cards:has(.payment-models__card:not(:first-child):hover) .payment-models__card:first-child {
    width: 112px;
    background-color: #2a2a2a;
  }
}
@media (min-width: 768px) and (max-width: 1600px) {
  .payment-models__cards:has(.payment-models__card:not(:first-child):hover) .payment-models__card:first-child {
    width: 75px;
  }
}
@media (min-width: 768px) {
  .payment-models__cards:has(.payment-models__card:not(:first-child):hover) .payment-models__card:first-child .payment-models__card-top {
    display: none;
  }
  .payment-models__cards:has(.payment-models__card:not(:first-child):hover) .payment-models__card:first-child .payment-models__card-info {
    display: none;
  }
  .payment-models__cards:has(.payment-models__card:not(:first-child):hover) .payment-models__card:first-child .payment-models__card-mini {
    display: flex;
  }
}
.payment-models__card {
  position: relative;
  height: 680px;
  width: 112px;
  overflow: hidden;
  padding: 24px;
  display: flex;
  flex-direction: column;
  background-color: #2a2a2a;
  border-radius: 24px;
  transition: all 0.5s ease-in;
}
.payment-models__card:not(:first-child) {
  margin-left: 12px;
}
@media (min-width: 768px) {
  .payment-models__card .payment-models__card-top {
    display: none;
  }
  .payment-models__card .payment-models__card-info {
    display: none;
  }
}
.payment-models__card:nth-child(1) {
  width: 618px;
  background-color: transparent;
}
@media (max-width: 1440px) {
  .payment-models__card:nth-child(1) {
    width: 500px;
  }
}
@media (max-width: 1024px) {
  .payment-models__card:nth-child(1) {
    width: 340px;
  }
}
@media (max-width: 768px) {
  .payment-models__card:nth-child(1) {
    width: 370px;
  }
}
.payment-models__card:nth-child(1) .payment-models__card-top {
  display: flex;
}
.payment-models__card:nth-child(1) .payment-models__card-info {
  display: flex;
}
.payment-models__card:nth-child(1) .payment-models__card-mini {
  display: none;
}
.payment-models__card:nth-child(4) .payment-models__card-mini-top {
  margin-top: -97px;
}
.payment-models__card:nth-child(4) .payment-models__salary-name {
  text-wrap: nowrap;
}
.payment-models__card:nth-child(5) .payment-models__card-mini-top {
  -webkit-mask-image: unset;
  transform: none;
  transform: initial;
}
@media (min-width: 768px) {
  .payment-models__card:hover {
    width: 618px;
    background-color: transparent;
  }
}
@media (min-width: 768px) and (max-width: 1440px) {
  .payment-models__card:hover {
    width: 500px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .payment-models__card:hover {
    width: 340px;
  }
}
@media (min-width: 768px) {
  .payment-models__card:hover .payment-models__card-top {
    display: flex;
  }
  .payment-models__card:hover .payment-models__card-info {
    display: flex;
  }
  .payment-models__card:hover .payment-models__card-mini {
    display: none;
  }
}
@media (max-width: 1600px) {
  .payment-models__card {
    width: 75px;
    border-radius: 20px;
  }
}
@media (max-width: 768px) {
  .payment-models__card {
    height: 675px;
    min-width: 370px;
    background-color: transparent;
  }
}
@media (max-width: 576px) {
  .payment-models__card {
    height: 590px;
    padding: 20px;
  }
}
@media (max-width: 450px) {
  .payment-models__card {
    height: 510px;
  }
}
.payment-models__card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1024px) {
  .payment-models__card-top {
    display: block;
    margin-left: 40px;
  }
}
@media (max-width: 768px) {
  .payment-models__card-top {
    margin-bottom: 24px;
  }
}
@media (max-width: 576px) {
  .payment-models__card-top {
    margin-left: 45px;
  }
}
.payment-models__card-garant {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #f4f4f4;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 64px;
  text-wrap: nowrap;
}
@media (max-width: 1024px) {
  .payment-models__card-garant {
    position: absolute;
    top: 12px;
    left: 12px;
  }
}
@media (max-width: 768px) {
  .payment-models__card-garant {
    padding: 6px 12px;
  }
}
@media (max-width: 450px) {
  .payment-models__card-garant {
    font-size: 14px;
  }
}
.payment-models__card-img {
  max-width: 332px;
}
@media (max-width: 1440px) {
  .payment-models__card-img {
    max-width: 230px;
  }
}
@media (max-width: 1024px) {
  .payment-models__card-img {
    max-width: 260px;
  }
}
@media (max-width: 576px) {
  .payment-models__card-img {
    max-width: 230px;
  }
}
@media (max-width: 450px) {
  .payment-models__card-img {
    max-width: 170px;
  }
}
.payment-models__card-info {
  position: relative;
  z-index: 1;
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1440px) {
  .payment-models__card-info {
    flex-direction: column;
    margin-left: 55px;
  }
}
@media (max-width: 768px) {
  .payment-models__card-info {
    gap: 24px;
    margin-top: 0;
    margin-top: initial;
  }
}
.payment-models__card-salary {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 768px) {
  .payment-models__card-salary {
    gap: 6px;
  }
}
.payment-models__salary-value {
  font-family: "CoFo Kak", sans-serif;
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 24px;
  line-height: 24px;
  text-transform: uppercase;
  color: #ff0c04;
}
@media (max-width: 1440px) {
  .payment-models__salary-value {
    font-size: 16px;
    line-height: 20px;
  }
}
.payment-models__salary-value span {
  color: white;
}
.payment-models__salary-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #868686;
}
.payment-models__salary-info {
  max-width: 330px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 768px) {
  .payment-models__salary-info {
    gap: 6px;
  }
}
.payment-models__salary-name {
  font-family: "CoFo Kak", sans-serif;
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 24px;
  line-height: 24px;
  text-transform: uppercase;
  color: #f4f4f4;
}
@media (max-width: 1440px) {
  .payment-models__salary-name {
    font-size: 16px;
  }
}
.payment-models__salary-p {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #868686;
}
.payment-models__card-mini {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media (max-width: 768px) {
  .payment-models__card-mini {
    display: none;
  }
}
.payment-models__card-mini-top {
  font-family: "CoFo Kak", sans-serif;
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 104px;
  line-height: 104px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-orientation: mixed;
  -webkit-text-stroke: 2px #8d1c19;
  text-stroke: 2px #5a1717;
  align-self: flex-start;
  color: transparent;
  -webkit-mask-image: linear-gradient(to top, transparent 0%, rgba(0, 0, 0, 0.03) 5%, rgba(0, 0, 0, 0.15) 8%, rgba(0, 0, 0, 0.35) 15%, rgba(0, 0, 0, 0.7) 32%, rgb(0, 0, 0) 42%, rgb(0, 0, 0) 100%);
  margin-top: -25px;
}
.payment-models__card-mini-bottom {
  font-family: "CoFo Kak", sans-serif;
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 24px;
  line-height: 24px;
  text-transform: uppercase;
  color: #f4f4f4;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-orientation: mixed;
}
.payment-models__card-mask {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 618px;
  min-height: 680px;
}
@media (max-width: 768px) {
  .payment-models__card-mask {
    min-width: 370px;
    min-height: 675px;
  }
}
@media (max-width: 576px) {
  .payment-models__card-mask {
    min-height: 590px;
  }
}
@media (max-width: 450px) {
  .payment-models__card-mask {
    min-height: 510px;
    height: 510px;
  }
}

@media (max-width: 576px) {
  .media-buying .container {
    padding: 0;
  }
}
.media-buying__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 12px;
  gap: 12px;
}
@media (max-width: 1200px) {
  .media-buying__content {
    min-height: 800px;
  }
}
@media (max-width: 1024px) {
  .media-buying__content {
    min-height: 0;
    min-height: initial;
    grid-template-columns: 1fr;
  }
}
.media-buying__info {
  display: flex;
  flex-direction: column;
  background-color: #151515;
  border-radius: 24px;
  padding: 20px;
}
@media (max-width: 576px) {
  .media-buying__info {
    min-height: 824px;
  }
}
@media (max-width: 450px) {
  .media-buying__info {
    min-height: 735px;
  }
}
.media-buying__title {
  margin: 0;
  margin-bottom: 24px;
}
@media (max-width: 450px) {
  .media-buying__title {
    margin-bottom: 20px;
  }
}
.media-buying__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #868686;
  max-width: 550px;
  margin: 0;
  margin-bottom: 48px;
}
@media (max-width: 576px) {
  .media-buying__text {
    margin-bottom: 24px;
  }
}
@media (max-width: 450px) {
  .media-buying__text {
    margin-bottom: 20px;
  }
}
.media-buying__items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 410px;
  margin-bottom: 48px;
}
@media (max-width: 576px) {
  .media-buying__items {
    margin-bottom: 52px;
  }
}
@media (max-width: 450px) {
  .media-buying__items {
    gap: 20px;
    margin-bottom: 20px;
  }
}
.media-buying__item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.media-buying__item {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 576px) {
  .media-buying__item {
    align-items: center;
  }
}
@media (max-width: 576px) {
  .media-buying__item-trade .media-buying__item-tag:nth-child(1) {
    order: -1;
  }
  .media-buying__item-trade .media-buying__item-tag:nth-child(4) {
    order: -1;
  }
}
.media-buying__item-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #f4f4f4;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: none;
  align-self: center;
}
.media-buying__item-text::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: #ff0c04;
}
.media-buying__item-tag:not(.media-buying__item-text) {
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: #f4f4f4;
  padding: 6px 12px;
  border: 1px solid #ddd;
  border-radius: 64px;
}
.media-buying__item-text--100 {
  width: 100%;
}
.media-buying__bottom {
  display: flex;
  gap: 75px;
}
@media (max-width: 576px) {
  .media-buying__bottom {
    flex-direction: column;
    gap: 20px;
  }
}
.media-buying__bottom-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 220px;
}
@media (max-width: 576px) {
  .media-buying__bottom-item {
    gap: 8px;
  }
}
.media-buying__bottom-value {
  font-family: "CoFo Kak", sans-serif;
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 24px;
  line-height: 24px;
  text-transform: uppercase;
  color: #f4f4f4;
}
@media (max-width: 576px) {
  .media-buying__bottom-value {
    font-size: 16px;
    line-height: 20px;
  }
}
.media-buying__bottom-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #868686;
}
.media-buying__direction {
  background-color: white;
  border-radius: 24px;
  padding: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .media-buying__direction {
    min-height: 824px;
  }
}
@media (max-width: 450px) {
  .media-buying__direction {
    min-height: 735px;
  }
}
.media-buying__direction-title {
  margin: 0;
  margin-bottom: 24px;
}
.media-buying__direction-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 520px;
}
@media (max-width: 576px) {
  .media-buying__direction-actions {
    gap: 6px;
    margin-bottom: 70px;
  }
}
.media-buying__direction-btn {
  font-weight: 500;
  font-size: 16px;
  line-height: inherit;
  color: #616161;
  padding: 12px;
  border: 1px solid #616161;
  border-radius: 12px;
}
@media (max-width: 576px) {
  .media-buying__direction-btn {
    padding: 6px 12px;
  }
}
.media-buying__direction-btn--active {
  color: #ff0c04;
  border: 1px solid #ff0c04;
}
.media-buying__avatars {
  position: relative;
  flex: 1;
}
.media-buying__avatar {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  width: 520px;
  height: 460px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  top: auto;
  top: initial;
  bottom: -20px;
  right: -20px;
  left: -20px;
  width: 100%;
}
.media-buying__avatar:nth-child(1) .media-buying__avatar-tag {
  left: 45px;
  bottom: 180px;
}
@media (max-width: 576px) {
  .media-buying__avatar:nth-child(1) .media-buying__avatar-tag {
    top: -10px;
    bottom: auto;
    bottom: initial;
    left: 0;
    z-index: -1;
  }
}
.media-buying__avatar:nth-child(1) .media-buying__avatar-price {
  right: 50px;
  bottom: 100px;
}
@media (max-width: 576px) {
  .media-buying__avatar:nth-child(1) .media-buying__avatar-price {
    bottom: 55px;
    right: 20px;
  }
}
.media-buying__avatar:nth-child(2) .media-buying__avatar-img {
  max-width: 500px;
}
@media (max-width: 576px) {
  .media-buying__avatar:nth-child(2) .media-buying__avatar-img {
    max-width: 460px;
  }
}
.media-buying__avatar:nth-child(2) .media-buying__avatar-tag {
  left: auto;
  left: initial;
  right: 30px;
  bottom: auto;
  bottom: initial;
  top: 100px;
}
@media (max-width: 576px) {
  .media-buying__avatar:nth-child(2) .media-buying__avatar-tag {
    top: auto;
    top: initial;
    bottom: 80px;
    right: 0;
  }
}
.media-buying__avatar:nth-child(2) .media-buying__avatar-price {
  right: auto;
  right: initial;
  left: 0;
  bottom: 175px;
}
@media (max-width: 576px) {
  .media-buying__avatar:nth-child(2) .media-buying__avatar-price {
    bottom: auto;
    bottom: initial;
    top: -35px;
  }
}
.media-buying__avatar:nth-child(2) .media-buying__logo {
  left: auto;
  left: initial;
  right: 100px;
  bottom: 100px;
}
@media (max-width: 576px) {
  .media-buying__avatar:nth-child(2) .media-buying__logo {
    left: 0;
    bottom: 195px;
  }
}
.media-buying__avatar:nth-child(3) .media-buying__avatar-img {
  max-width: 500px;
}
@media (max-width: 576px) {
  .media-buying__avatar:nth-child(3) .media-buying__avatar-img {
    max-width: 460px;
  }
}
.media-buying__avatar:nth-child(3) .media-buying__avatar-img {
  margin-left: 200px;
}
@media (max-width: 768px) {
  .media-buying__avatar:nth-child(3) .media-buying__avatar-img {
    margin: 0;
    margin-left: auto;
    margin-right: -20px;
  }
}
@media (max-width: 576px) {
  .media-buying__avatar:nth-child(3) .media-buying__avatar-img {
    max-width: 460px;
  }
}
.media-buying__avatar:nth-child(3) .media-buying__avatar-tag {
  left: 70px;
  bottom: 120px;
}
@media (max-width: 576px) {
  .media-buying__avatar:nth-child(3) .media-buying__avatar-tag {
    bottom: auto;
    bottom: initial;
    top: -55px;
    right: 20px;
    left: auto;
    left: initial;
    z-index: -1;
  }
}
@media (max-width: 450px) {
  .media-buying__avatar:nth-child(3) .media-buying__avatar-tag {
    top: -30px;
  }
}
.media-buying__avatar:nth-child(3) .media-buying__avatar-price {
  right: 58px;
  bottom: 314px;
}
@media (max-width: 576px) {
  .media-buying__avatar:nth-child(3) .media-buying__avatar-price {
    right: auto;
    right: initial;
    bottom: 80px;
    left: 0;
  }
}
.media-buying__avatar:nth-child(4) {
  right: auto;
  right: initial;
}
.media-buying__avatar:nth-child(4) .media-buying__avatar-img {
  max-width: 500px;
}
@media (max-width: 576px) {
  .media-buying__avatar:nth-child(4) .media-buying__avatar-img {
    max-width: 460px;
  }
}
.media-buying__avatar:nth-child(4) .media-buying__avatar-img {
  margin: auto auto 0 0;
}
@media (max-width: 576px) {
  .media-buying__avatar:nth-child(4) .media-buying__avatar-img {
    margin: 0;
  }
}
.media-buying__avatar:nth-child(4) .media-buying__avatar-tag {
  left: auto;
  left: initial;
  right: 40%;
  bottom: 70px;
}
@media (max-width: 576px) {
  .media-buying__avatar:nth-child(4) .media-buying__avatar-tag {
    z-index: -1;
    bottom: 85px;
    right: -10px;
  }
}
.media-buying__avatar:nth-child(4) .media-buying__avatar-price {
  left: auto;
  left: initial;
  left: 50%;
  transform: translateX(-50%);
  bottom: auto;
  bottom: initial;
  top: 100px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 576px) {
  .media-buying__avatar:nth-child(4) .media-buying__avatar-price {
    top: auto;
    top: initial;
    left: 48px;
    bottom: 400px;
    z-index: -1;
  }
}
.media-buying__avatar:nth-child(4) .media-buying__logo {
  left: 44px;
  top: 60px;
}
@media (max-width: 576px) {
  .media-buying__avatar:nth-child(4) .media-buying__logo {
    top: auto;
    top: initial;
    left: 25px;
    bottom: 160px;
  }
}
.media-buying__avatar:nth-child(5) .media-buying__avatar-img {
  max-width: 500px;
}
@media (max-width: 576px) {
  .media-buying__avatar:nth-child(5) .media-buying__avatar-img {
    max-width: 460px;
  }
}
.media-buying__avatar:nth-child(5) .media-buying__avatar-img {
  margin: auto 0 0 auto;
}
.media-buying__avatar:nth-child(5) .media-buying__avatar-tag {
  left: 20px;
  bottom: 228px;
}
@media (max-width: 576px) {
  .media-buying__avatar:nth-child(5) .media-buying__avatar-tag {
    bottom: auto;
    bottom: initial;
    top: -12px;
    left: auto;
    left: initial;
    right: 0;
    z-index: -1;
  }
}
.media-buying__avatar:nth-child(5) .media-buying__avatar-price {
  right: auto;
  right: initial;
  left: 60px;
  bottom: 40px;
}
@media (max-width: 576px) {
  .media-buying__avatar:nth-child(5) .media-buying__avatar-price {
    bottom: 20px;
    right: -30px;
    left: auto;
    left: initial;
  }
}
.media-buying .media-buying__avatar.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}
.media-buying .media-buying__avatar-tag,
.media-buying .media-buying__avatar-price,
.media-buying .media-buying__avatar-img,
.media-buying .media-buying__logo {
  opacity: 0;
  transform: translateY(30px);
}
.media-buying {
  /* анимация по очереди */
}
.media-buying .media-buying__avatar.is-animating .media-buying__avatar-tag {
  animation: mediaBuyingFadeUp 0.5s ease forwards;
  animation-delay: 0.8s;
}
.media-buying .media-buying__avatar.is-animating .media-buying__avatar-price {
  animation: mediaBuyingFadeUp 0.5s ease forwards;
  animation-delay: 0.7s;
}
.media-buying .media-buying__avatar.is-animating .media-buying__logo {
  animation: mediaBuyingFadeUp 0.5s ease forwards;
  animation-delay: 0.4s;
}
.media-buying .media-buying__avatar.is-animating .media-buying__avatar-img {
  animation: mediaBuyingFadeUp 0.7s ease forwards;
  animation-delay: 0.2s;
}
@keyframes mediaBuyingFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.media-buying__avatar-tag {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #f4f4f4;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background-color: #151515;
  border-radius: 24px;
  position: absolute;
  left: 65px;
  bottom: 170px;
  z-index: 1;
}
.media-buying__avatar-tag::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: #ff0c04;
}
.media-buying__avatar-price {
  position: absolute;
  right: 43px;
  bottom: 72px;
  padding: 12px 24px;
  border-radius: 24px;
  background-color: #151515;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1;
}
@media (max-width: 576px) {
  .media-buying__avatar-price {
    right: -10px;
  }
}
.media-buying__avatar-price-text {
  padding: 24px;
}
.media-buying__avatar-price-item {
  display: flex;
  gap: 8px;
  color: white;
  flex-direction: column;
}
.media-buying__avatar-price-item span {
  min-width: 45px;
  font-weight: 500;
  line-height: 20px;
  font-size: 16px;
  color: #f4f4f4;
}
.media-buying__avatar-price-item strong {
  font-family: "CoFo Kak", sans-serif;
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 24px;
  line-height: 24px;
  text-transform: uppercase;
  color: #f4f4f4;
}
.media-buying__avatar-img {
  max-width: 590px;
  margin: 0 auto;
  display: block;
  transform: translateY(20px);
  margin-top: auto;
}
@media (max-width: 576px) {
  .media-buying__avatar-img {
    width: 520px;
  }
}
.media-buying__logo {
  width: 84px;
  height: 84px;
  border-radius: 24px;
  background-color: #151515;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  position: absolute;
}

@media (max-width: 576px) {
  .vacancy .container {
    padding: 0;
  }
}
.vacancy__tabs {
  position: relative;
  height: 720px;
}
@media (max-width: 1024px) {
  .vacancy__tabs {
    height: auto;
    height: initial;
  }
}
.vacancy__actions {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 4px;
  background: #ddd;
  border-radius: 12px;
}
.vacancy__btn {
  font-weight: 500;
  font-size: 16px;
  padding: 8px 20px;
  border-radius: 12px;
  background-color: transparent;
  line-height: inherit;
  color: black;
}
.vacancy__btn.active {
  background-color: white;
}
@media (max-width: 576px) {
  .vacancy__btn {
    padding: 6px 9px;
  }
}
.vacancy__content {
  height: 100%;
}
.vacancy__tabs-content {
  height: 100%;
}
.vacancy__free {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 12px;
  gap: 12px;
  height: 100%;
}
@media (max-width: 1024px) {
  .vacancy__free {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media (max-width: 576px) {
  .vacancy__free {
    display: block;
  }
}
.vacancy__tab {
  height: 100%;
}
.vacancy__info {
  max-width: 490px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.vacancy__info-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1024px) {
  .vacancy__info-inner {
    flex: initial;
  }
}
@media (max-width: 576px) {
  .vacancy__info-inner {
    margin-bottom: 20px;
  }
}
.vacancy__info-title {
  margin: 0;
  margin-bottom: 24px;
  margin-top: 45px;
}
@media (max-width: 1024px) {
  .vacancy__info-title {
    margin-top: 70px;
  }
}
@media (max-width: 576px) {
  .vacancy__info-title {
    margin-top: 60px;
    margin-bottom: 20px;
  }
}
.vacancy__info-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #2a2a2a;
  margin: 0;
}
.vacancy__info-link {
  margin-top: auto;
}
.vacancy__swiper {
  margin: 0;
  margin: -20px 0;
}
@media (max-width: 1024px) {
  .vacancy__swiper {
    margin: 0;
    margin-bottom: 20px;
    margin-left: -20px;
    margin-right: -20px;
    padding: 0 30px;
  }
}
.vacancy__buyer {
  background-color: #2a2a2a;
  padding: 24px;
  border-radius: 24px;
  width: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 576px) {
  .vacancy__buyer {
    min-height: 376px;
    display: flex;
    flex-direction: column;
    position: relative;
  }
}
@media (max-width: 450px) {
  .vacancy__buyer {
    min-height: 350px;
  }
}
.vacancy__buyer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .vacancy__buyer-top {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .vacancy__buyer-top {
    flex-direction: column;
  }
}
.vacancy__buyer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.vacancy__buyers-tag {
  font-weight: 500;
  font-size: 16px;
  line-height: inherit;
  color: #f4f4f4;
  border: 1px solid #f4f4f4;
  border-radius: 12px;
  padding: 12px;
  color: white;
  display: flex;
  align-items: center;
  gap: 5px;
}
@media (max-width: 576px) {
  .vacancy__buyers-tag {
    padding: 4px 12px;
  }
}
.vacancy__buyers-tag span {
  color: #868686;
}
.vacancy__buyers-tag strong {
  font-family: "CoFo Kak", sans-serif;
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 24px;
  color: white;
}
@media (max-width: 576px) {
  .vacancy__buyers-tag strong {
    font-size: 16px;
  }
}
.vacancy__buyer-img {
  max-width: 124px;
}
@media (max-width: 576px) {
  .vacancy__buyer-img {
    margin-top: auto;
  }
}
@media (max-width: 450px) {
  .vacancy__buyer-img {
    max-width: 100px;
  }
}
.vacancy__buyer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-top: auto;
}
@media (max-width: 576px) {
  .vacancy__buyer-bottom {
    flex: 1;
  }
}
.vacancy__buyer-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 350px;
}
@media (max-width: 576px) {
  .vacancy__buyer-info {
    height: 100%;
  }
}
.vacancy__buyer-info-name {
  font-family: "CoFo Kak", sans-serif;
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 24px;
  line-height: 24px;
  text-transform: uppercase;
  color: #f4f4f4;
}
@media (max-width: 576px) {
  .vacancy__buyer-info-name {
    font-size: 16px;
    line-height: 20px;
  }
}
.vacancy__buyer-info-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #868686;
}
.vacancy__buyer-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  border: 1px solid #5c5d5d;
  flex: none;
}
@media (max-width: 576px) {
  .vacancy__buyer-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
  }
}
.vacancy__loop {
  display: grid;
  grid-template-columns: minmax(200px, 490px) 1fr;
  height: 100%;
  grid-gap: 32px;
  gap: 32px;
}
@media (max-width: 1024px) {
  .vacancy__loop {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.vacancy__loop-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 260px;
}
.vacancy__loop-img {
  align-self: center;
  width: 100%;
}
@media (max-width: 1024px) {
  .vacancy__loop-img {
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 24px;
  }
}
.vacancy__loop-img-pic {
  align-items: center;
  display: flex;
}
@media (max-width: 576px) {
  .vacancy__loop-img {
    max-width: 310px;
  }
}
@media (max-width: 450px) {
  .vacancy__loop-img {
    max-width: 285px;
  }
}

.news {
  margin-bottom: 160px;
}
@media (max-width: 576px) {
  .news {
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .news .container {
    padding: 0;
  }
}
@media (max-width: 576px) {
  .news__content {
    padding-bottom: 140px;
    position: relative;
  }
}
.news .swiper-button-prev,
.news .swiper-button-next {
  position: static;
  margin: 0;
  padding: 0;
  color: transparent;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  border: 1px solid #5c5d5d;
}
.news .swiper-button-prev svg,
.news .swiper-button-next svg {
  width: 34px;
  height: 34px;
}
.news__content-wrapper {
  padding-bottom: 14px;
}
.news__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 48px;
}
@media (max-width: 576px) {
  .news__top {
    margin-bottom: 24px;
  }
}
.news__title {
  margin: 0;
  max-width: 770px;
}
.news__navigation {
  display: flex;
  gap: 12px;
}
@media (max-width: 576px) {
  .news__navigation {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 576px) {
  .news__swiper .swiper-slide-active .news__link::after {
    opacity: 1;
    transition-delay: 0.2s;
    transition: all 0.2s ease-in;
  }
  .news__swiper .swiper-slide-active .news__link .news__media::after {
    background-color: transparent;
  }
  .news__swiper .swiper-slide-active .news__link .news__media::before {
    background-image: url(../images/media-news-gradient.svg);
  }
  .news__swiper .swiper-slide-active .news__link .news__icon {
    background-color: white;
  }
  .news__swiper .swiper-slide-active .news__link .news__icon svg path {
    stroke: #2a2a2a;
  }
  .news__swiper .swiper-slide-active .news__link .news__link-inner {
    background-color: #2a2a2a;
  }
  .news__swiper {
    margin: 0px -20px;
    padding: 0 20px;
  }
}
.news__link {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  padding: 1px;
  border-radius: 24px;
}
.news__link::after {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgb(42, 42, 42) 0%, rgb(255, 12, 4) 100%);
  z-index: -1;
  opacity: 0;
}
@media (max-width: 576px) {
  .news__link {
    min-height: 540px;
  }
}
@media (any-hover: hover) {
  .news__link:hover::after {
    opacity: 1;
    transition-delay: 0.2s;
    transition: all 0.2s ease-in;
  }
  .news__link:hover .news__media::after {
    background-color: transparent;
  }
  .news__link:hover .news__media::before {
    background-image: url(../images/media-news-gradient.svg);
  }
  .news__link:hover .news__icon {
    background-color: white;
  }
  .news__link:hover .news__icon svg path {
    stroke: #2a2a2a;
  }
  .news__link:hover .news__link-inner {
    background-color: #2a2a2a;
  }
}
.news__link-inner {
  border-radius: inherit;
  transition: all 0.2s ease-in;
  background-color: #151515;
}
@media (max-width: 576px) {
  .news__link-inner {
    min-height: inherit;
    display: flex;
    flex-direction: column;
  }
}
.news__media {
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
  border-radius: 24px 24px 0 0;
  height: 280px;
}
.news__media::after {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease-in;
}
.news__media::before {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 124px;
  height: 20px;
  background-image: url(../images/media-news-el.svg);
  z-index: 2;
}
@media (max-width: 576px) {
  .news__media {
    margin-bottom: 20px;
  }
}
.news__img {
  border-radius: 24px;
}
.news__info {
  padding: 0 20px 20px 20px;
}
@media (max-width: 576px) {
  .news__info {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
}
.news__name {
  font-family: "CoFo Kak", sans-serif;
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 24px;
  line-height: 24px;
  text-transform: uppercase;
  color: #f4f4f4;
  max-width: 420px;
  margin-bottom: 12px;
  display: block;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (max-width: 576px) {
  .news__name {
    font-size: 16px;
    line-height: 20px;
  }
}
.news__text {
  max-width: 420px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #adadad;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 30px;
}
.news__bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.news__date {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #adadad;
}
.news__icon {
  width: 48px;
  height: 48px;
  border-radius: 100%;
  border: 1px solid #5c5d5d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.start {
  margin-bottom: 140px;
}
@media (max-width: 576px) {
  .start {
    margin-bottom: 24px;
  }
}
.start__content {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  align-items: flex-start;
  grid-gap: clamp(1.25rem, -9.819rem + 17.3vw, 8.125rem);
  gap: clamp(1.25rem, -9.819rem + 17.3vw, 8.125rem);
}
@media (max-width: 1024px) {
  .start__content {
    grid-template-columns: 1fr;
  }
}
.start__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.start__logo {
  margin-bottom: 64px;
}
@media (max-width: 576px) {
  .start__logo {
    max-width: 163px;
    height: auto;
    margin-bottom: 24px;
  }
}
.start__title {
  margin: 0;
  margin-bottom: 48px;
}
@media (max-width: 576px) {
  .start__title {
    margin-bottom: 24px;
    max-width: 200px;
  }
}
.start__text {
  font-family: "CoFo Kak", sans-serif;
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 24px;
  line-height: 24px;
  text-transform: uppercase;
  color: #f4f4f4;
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  .start__text {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 20px;
  }
}
.start__social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
  max-width: 400px;
}
@media (max-width: 576px) {
  .start__social {
    margin-bottom: 24px;
  }
}
.start__social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #f4f4f4;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #ddd;
}
@media (max-width: 576px) {
  .start__social-link svg {
    width: 20px;
    height: 16px;
  }
}
@media (max-width: 576px) {
  .start__social-link {
    padding: 7px 10px;
  }
}
.start__link {
  position: relative;
  z-index: 1;
}
@media (max-width: 576px) {
  .start__img {
    margin-top: -30px;
    position: relative;
    z-index: 0;
    transform: scale(1);
  }
}
.start__img-pic {
  margin: 0 -15px;
}

.popup {
  width: 100%;
  max-width: 600px;
  border-radius: 24px;
  padding: 20px;
}
.popup .is-close-button {
  display: none;
}
.popup__form {
  display: flex;
  flex-direction: column;
}
.popup__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.popup__btn-close {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  border-radius: 12px;
}
.popup__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}
.popup__form-label-dop {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 36px;
}
.popup__form-label-dop .popup__form-label-text {
  font-weight: 500;
  font-size: 16px;
  color: #2a2a2a;
  margin: 0;
}
.popup__form-input {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: black;
  padding: 19px 12px;
  border: 1px solid #ddd;
  border-radius: 12px;
  width: 100%;
}
.popup__form-input::-moz-placeholder {
  color: #adadad;
}
.popup__form-input::placeholder {
  color: #adadad;
}
.popup__form-label-text {
  margin-top: 6px;
  margin-left: 12px;
  display: block;
  font-weight: 400;
  font-size: 12px;
  line-height: 12px;
  color: #adadad;
}
.popup__form-textarea {
  resize: none;
}
.popup__form-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 12px;
}
.popup__form-wrapper .popup__form-input {
  border: medium none currentcolor;
  border: initial;
}
.popup__form-file {
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.anchor-menu__indicator {
  will-change: transform, width;
  transform: translateZ(0);
}

.card {
  position: sticky;
  top: 67px;
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform-origin: center top;
}
@media (max-width: 576px) {
  .card {
    top: 51px;
  }
}
@media (max-height: 740px) {
  .card {
    top: 0;
  }
}
@media (max-height: 650px) {
  .card {
    position: static;
  }
}

.card.is-measuring {
  position: static !important;
  top: auto !important;
  transform: none !important;
}

.footer {
  padding-bottom: 40px;
}
.footer__content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 576px) {
  .footer__content {
    align-items: center;
    justify-content: center;
  }
}
.footer__info {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #868686;
  position: relative;
  z-index: 1;
}
@media (max-width: 576px) {
  .footer__info {
    font-size: 12px;
    line-height: 16px;
  }
}
.footer__social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.footer__social-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #868686;
  max-width: 190px;
}
@media (max-width: 576px) {
  .footer__social-text {
    display: none;
  }
}
.footer__social-list {
  display: flex;
  gap: 12px;
}
.footer__social-link {
  width: 44px;
  height: 44px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #868686;
  position: relative;
  overflow: hidden;
}
.footer__social-link svg {
  position: relative;
  z-index: 1;
}
@media (max-width: 576px) {
  .footer__social-link svg {
    width: 17px;
    height: auto;
  }
}
.footer__social-link::after {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FF0C04 0%, transparent 100%);
  opacity: 0;
  transition: all 0.2s ease-in;
}
@media (any-hover: hover) {
  .footer__social-link:hover {
    border: transparent;
  }
  .footer__social-link:hover::after {
    opacity: 1;
  }
  .footer__social-link:hover svg path {
    fill: #0A0A0A;
  }
}
.footer__img {
  position: absolute;
  left: 0;
  bottom: -40px;
}