@charset "UTF-8";

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

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

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

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

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

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

/** {
  outline: 2px solid red;
}*/

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.4s ease-in-out, background-color 0.4s ease-in-out, border-color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out, background-color 0.4s ease-in-out, border-color 0.4s ease-in-out;
}

button {
  -webkit-transition: color 0.4s ease-in-out, background-color 0.4s ease-in-out, border-color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out, background-color 0.4s ease-in-out, border-color 0.4s ease-in-out;
}

a:focus,
a:focus-visible,
button:focus,
button:focus-visible,
input:focus,
input:focus-visible,
textarea:focus,
textarea:focus-visible {
  outline: none;
}

h1,
h2,
h3,
h4,
p {
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  min-width: 360px;
  font-family: var(--font-family);
  color: var(--white, #FFF);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  background-color: var(--black-20);
}

picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.overlay {
  position: fixed;
  z-index: 3;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  background-color: rgba(51, 51, 51, 0.8);
  -webkit-transition: visibility 0.4s ease-in-out, bottom 0.4s ease-in-out, opacity 0.4s ease-in-out, z-index 0.4s ease-in-out;
  transition: visibility 0.4s ease-in-out, bottom 0.4s ease-in-out, opacity 0.4s ease-in-out, z-index 0.4s ease-in-out;
}

.overlay--active {
  visibility: visible;
  bottom: 0px;
}

.overflow-hidden {
  overflow: hidden;
}

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

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

.container {
  max-width: 1412px;
  padding: 0 24px;
  margin: 0 auto;
}

.container-min {
  max-width: 964px;
  padding: 0 24px;
  margin: 0 auto;
}

.hidden {
  display: none !important;
}

:root {
  --font-family: "GolosText", sans-serif;
}

:root {
  --white: #fff;
  --green: #00cb62;
  --black-10: #191919;
  --black-20: #141414;
  --black-5: #232323;
  --gray-text: #646464;
}

.uppercase {
  text-transform: uppercase;
}

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

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

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

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black-20);
  z-index: 9999;
  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;
}

#preloader .loader {
  width: 60px;
  height: 60px;
  border: 5px solid #c9bfbf;
  border-top-color: #00cb62;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  padding-top: 36px;
  z-index: 5;
}

.header__line {
  position: relative;
  padding: 22px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__line::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 20px;
  backdrop-filter: blur(28.3040008545px);
  background: rgba(19, 19, 19, 0.6);
}

.box-logo {
  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;
  padding-right: 50px;
}

.box-logo__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.box-logo__link::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 10px;
  opacity: 0;
  border: 1px solid var(--green);
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}

.box-logo__link img {
  width: 130px;
  height: 52px;
}

.box-logo__link:focus,
.box-logo__link:focus-visible {
  outline: none;
}

.header-menu .cloce-modal-type-1 {
  display: none;
}

.header-menu__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header-menu__nav::-webkit-scrollbar {
  width: 4px;
}

.header-menu__nav::-webkit-scrollbar-track {
  background-color: var(--black-10);
  border-radius: 1000px;
}

.header-menu__nav::-webkit-scrollbar-thumb {
  background-color: var(--green);
  border-radius: 1000px;
}

.header-menu__line-search {
  display: none;
}

.header-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

.link-nav {
  position: relative;
  color: var(--White, #FFF);
  font-family: var(--font-family);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 141.176%;
}

.link-nav::before {
  content: "";
  pointer-events: none;
  position: absolute;
  bottom: -6px;
  left: 0;
  height: 1px;
  background-color: #00C974;
  opacity: 0;
  -webkit-transition: width 600ms ease;
  transition: width 600ms ease;
  width: 0;
}

.link-nav:focus,
.link-nav:focus-visible {
  outline: none;
}

.header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 28px;
}

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

.box-search__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  color: var(--white, #FFF);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 141.176%;
  -webkit-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}

.box-search__btn .svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--green);
  -webkit-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}

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

.switcher__label {
  cursor: pointer;
  position: relative;
  width: 80px;
  height: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 4px;
}

.switcher__label::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 10px;
  opacity: 0;
  border: 1px solid var(--green);
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}

.switcher__label:has(.switcher__input:focus-visible)::before {
  opacity: 1;
}

.switcher__input {
  cursor: pointer;
  position: absolute;
  inset: 0;
  opacity: 0;
}

.switcher__input:checked + .switcher__status i:first-child {
  color: var(--white);
}

.switcher__input:checked + .switcher__status i:first-child::before {
  opacity: 0;
  width: 0;
}

.switcher__input:checked + .switcher__status i:last-child {
  color: var(--green, #00CB62);
}

.switcher__input:checked + .switcher__status i:last-child::before {
  opacity: 1;
  width: 100%;
}

.switcher__status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  color: var(--green, #00CB62);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 117.647%;
}

.switcher__status i {
  position: relative;
  font-style: normal;
  -webkit-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}

.switcher__status i::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--green);
  bottom: -6px;
  left: 0;
  -webkit-transition: width 600ms ease;
  transition: width 600ms ease;
}

.switcher__status i:last-child {
  color: var(--white);
}

.switcher__status i:last-child::before {
  opacity: 0;
  width: 0;
}

.burger {
  display: none;
}

.search-mobile-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.search-mobile-line form {
  width: 100%;
}

.input-type-search {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 12px;
  background-color: var(--black-light, #191919);
  background-image: url("../img/input-type-search/search.svg");
  background-repeat: no-repeat;
  background-position: center left 12px;
}

.input-type-search__input {
  width: 100%;
  padding: 16px 16px 16px 44px;
  height: 52px;
  border-radius: 12px;
  border: none;
  color: var(--white);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 117.647%;
  background-color: transparent;
}

.input-type-search__input:focus,
.input-type-search__input:focus-visible {
  outline: none;
}

.footer {
  overflow: hidden;
  position: relative;
  border-radius: 24px 24px 0 0;
  background-color: #191919;
}

.footer::before {
  position: absolute;
  content: "";
  right: 50%;
  top: 0;
  bottom: 0;
  width: 1920px;
  margin: 0 auto;
  -webkit-transform: translate(50%, 0);
      -ms-transform: translate(50%, 0);
          transform: translate(50%, 0);
  background-image: url("../img/footer/bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  /*@media (max-width: 1920px) {
    width: 100%;
  }*/
}

.footer_container {
  position: relative;
}

.footer__top {
  padding-top: 50px;
  padding-right: 510px;
  padding-bottom: 62px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}

.footer__list {
  max-width: 500px;
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 88px;
     -moz-column-gap: 88px;
          column-gap: 88px;
}

.footer__list li {
  margin-bottom: 24px;
}

.footer__list li:last-child {
  margin-bottom: 0;
}

.footer .link-nav::before {
  display: none;
}

.footer__bottom {
  padding-top: 60px;
  padding-bottom: 40px;
  padding-right: 540px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}

.footer__bottom .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #646464;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 128.571%;
}

.footer__bottom .left p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}

.footer__bottom .left a {
  text-decoration: underline;
}

.footer__bottom .right a {
  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;
}

.footer__quote {
  position: absolute;
  right: 24px;
  bottom: 49px;
  color: var(--white, #FFF);
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.box-logo-footer {
  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;
}

.box-logo-footer__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.box-logo-footer__link::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 10px;
  opacity: 0;
  border: 1px solid var(--green);
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}

.box-logo-footer__link img {
  width: 201px;
  height: 80px;
}

.box-logo-footer__link:focus,
.box-logo-footer__link:focus-visible {
  outline: none;
}

.section-hero {
  position: relative;
  min-height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.section-hero .container {
  width: 100%;
  height: auto;
}

.section-hero__title {
  display: none;
}

.section-hero .background-hero {
  position: absolute;
  inset: 0;
}

.section-hero .background-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.32)), to(rgba(0, 0, 0, 0.32)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.32) 100%);
}

.section-hero .background-hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-hero__box-info {
  height: 100%;
  position: relative;
  padding: 197px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.section-hero__box-info .desc {
  max-width: 975px;
  color: var(--white, #FFF);
  font-size: 52px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cookie {
  display: none;
  pointer-events: none;
  position: fixed;
  z-index: 20;
  left: 0;
  bottom: 56px;
  width: 100%;
}

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

.cookie__window {
  padding: 24px;
  max-width: 100%;
  width: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  border-radius: 20px;
  background: rgba(19, 19, 19, 0.6);
  backdrop-filter: blur(28.3040008545px);
}

.cookie__message {
  pointer-events: auto;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.cookie__message a {
  color: var(--green, #00CB62);
  text-decoration: underline;
}

.cookie__box-btn {
  pointer-events: auto;
}

.cookie__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
  width: 100%;
  color: #FFF;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  border-radius: 14px;
  background-color: var(--gray-500, #232323);
  -webkit-transition: background-color 0.4s ease-in-out;
  transition: background-color 0.4s ease-in-out;
}

.box-about {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 50.8797653959%;
}

.box-about__box-img {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 104px;
  display: flex;
  overflow: hidden;
  border-radius: 0 20px 20px 0;
}

.box-about__box-img {
  /*&::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 0px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 50px solid var(--black-20);
  }*/
}

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

.box-about__box-img img {
  max-width: 100%;
  width: 1094px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.box-about__line-btn {
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 28px;
}

.section-title .title {
  color: var(--white, #FFF);
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.static-p-ul {
  color: var(--white, #FFF);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.static-p-ul *:not(:last-child) {
  margin-bottom: 20px;
}

.static-p-ul ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.static-p-ul ul li {
  margin: 0 !important;
  padding-left: 37px;
  position: relative;
}

.static-p-ul ul li::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 13px;
  width: 70px;
  height: 70px;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url("../img/static/li.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.static-p-ul ul li::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 13px;
  width: 8px;
  height: 8px;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: var(--green);
  border-radius: 100%;
}

.static-list-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.static-list-title__title {
  color: var(--white, #FFF);
  font-family: var(--font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}

.static-list-title__list {
  margin: 0;
  padding-left: 33px;
}

.static-list-title__list li {
  font-size: 16px;
  margin-bottom: 8px;
}

.static-list-title__list li::marker {
  color: var(--green);
}

.static-list-title__list li:last-child {
  margin-bottom: 0;
}

.link-download {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 133.333%;
  padding: 16px;
  height: 64px;
  border-radius: 14px;
  border: 2px solid var(--gray-500, #232323);
  -webkit-transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out;
  transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out;
}

.link-download .svg {
  width: 22px;
  height: 22px;
  -ms-flex-negative: 0;
      flex-shrink: 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;
  color: var(--green);
  -webkit-transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out;
  transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out;
}

.link-bg {
  background-image: url("../img/link-bg/bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.box-counter__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}

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

.card-counter.more .counter__number {
  padding-left: 31px;
  background-image: url("../img/card-counter/bg.svg");
  background-repeat: no-repeat;
  background-position: left center;
}

.card-counter .counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}

.card-counter .counter__number {
  color: var(--green, #00CB62);
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.card-counter .counter__number.hide {
  opacity: 0;
}

.card-counter .counter__number.number {
  position: absolute;
}

.card-counter .counter__number span {
  margin-left: 10px;
  color: var(--green, #00CB62);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.card-counter .counter__desc {
  color: var(--white, #FFF);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.card-decision {
  height: 100%;
  position: relative;
  overflow: hidden;
  padding: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 52px;
  border-radius: 20px;
  background-color: var(--black-10, #191919);
  -webkit-transition: background-color 0.4s ease-in-out;
  transition: background-color 0.4s ease-in-out;
}

.card-decision::before {
  content: "";
  position: absolute;
  top: -189px;
  right: -147px;
  z-index: 0;
  width: 283.162px;
  height: 457.394px;
  -webkit-transform: rotate(135.45deg);
      -ms-transform: rotate(135.45deg);
          transform: rotate(135.45deg);
  border-radius: 457.394px;
  background: var(--green, #00CB62);
  -webkit-filter: blur(250px);
          filter: blur(250px);
}

.card-decision .top {
  position: relative;
  width: 48.8888888889%;
}

.card-decision .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.card-decision__title {
  margin-bottom: 12px;
  color: #FFF;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.card-decision__desc {
  margin-bottom: 24px;
  color: var(--white, #FFF);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 127.778%;
}

.card-decision__img {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 24px;
  overflow: hidden;
}

.card-decision__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.table-type-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.table-type-1__name {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.table-type-1__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.table-type-1__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.table-type-1__line .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  color: var(--gray-text, #646464);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.table-type-1__line .between {
  margin: 0 5px;
  opacity: 0.5;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 30px;
  border-bottom: none;
  background-image: -webkit-gradient(linear, left top, right top, from(#A1A1A2), color-stop(60%, #A1A1A2), color-stop(40%, transparent), to(transparent));
  background-image: linear-gradient(to right, #A1A1A2 0%, #A1A1A2 60%, transparent 40%, transparent 100%);
  background-size: 10px 0.9px;
  background-position: left bottom 3px;
  background-repeat: repeat-x;
}

.table-type-1__line .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  text-align: end;
  color: var(--white, #FFF);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.link-all {
  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;
  width: 200px;
  max-width: 100%;
  padding: 5px 16px;
  height: 52px;
  border-radius: 14px;
  background-color: var(--black-10, #191919);
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  -webkit-transition: background-color 0.4s ease-in-out;
  transition: background-color 0.4s ease-in-out;
}

.swiper-group-btn-type-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

.swiper-btn-type-1 {
  width: 52px;
  height: 52px;
  -ms-flex-negative: 0;
      flex-shrink: 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;
  border-radius: 12px;
  color: var(--white);
  background-color: var(--black-5, #232323);
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}

.swiper-btn-type-1.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.5;
}

.swiper-decision {
  overflow: visible;
}

.swiper-decision .swiper-slide {
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.swiper-decision .swiper-slide .card-decision {
  background-color: #1F1F1F;
}

.swiper-decision .swiper-slide.swiper-slide-active .card-decision {
  background-color: var(--black-10, #191919);
}

.swiper-decision__line-nav {
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.bx-breadcrumb {
  padding: 160px 0 28px;
}

.bx-breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.bx-breadcrumb__list::-webkit-scrollbar {
  display: none;
}

.bx-breadcrumb-item {
  color: #FFF;
  text-overflow: ellipsis;
  font-family: var(--font-family);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  line-height: 142.857%;
}

.bx-breadcrumb-item:not(:first-child)::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 1px;
  border-radius: 50px;
  background-color: var(--green, #00CB62);
}

.bx-breadcrumb-item a {
  color: var(--gray-200, #646464);
  -webkit-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}

.page-title {
  margin-bottom: 28px;
}

.page-title__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.page-title__name {
  color: var(--white, #FFF);
  font-family: var(--font-family);
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.box-career__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

.box-career__content-left {
  width: 49.1202346041%;
}

.box-career__content-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.static-text {
  color: var(--white, #FFF);
  font-family: var(--font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.static-text *:not(:last-child) {
  margin-bottom: 20px;
}

.section-background {
  position: relative;
}

.section-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 602px;
  height: 614px;
  background-image: url("../img/section-background/bg.svg");
  background-repeat: no-repeat;
  background-position: top left;
}

.tabs-type-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.tabs-type-1__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.tabs-type-1__btn {
  padding: 28px;
  border-radius: 20px;
  color: #FFF;
  font-family: var(--font-famil);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: var(--black-10, #191919);
}

.tabs-type-1__btn .name {
  text-align: start;
}

.tabs-type-1__btn .svg {
  position: relative;
  width: 36px;
  height: 36px;
  -ms-flex-negative: 0;
      flex-shrink: 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;
  border-radius: 8px;
  background-color: var(--green, #00CB62);
}

.tabs-type-1__btn .svg svg {
  position: absolute;
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}

.tabs-type-1__btn .svg svg.tabClose {
  opacity: 0;
}

.tabs-type-1__btn.active {
  background: var(--black-5, #232323);
  border-radius: 20px 20px 0 0;
}

.tabs-type-1__btn.active .svg svg.svgPlus {
  opacity: 0;
}

.tabs-type-1__btn.active .svg svg.tabClose {
  opacity: 1;
}

.tabs-type-1__info {
  display: none;
  gap: 36px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 28px 28px 28px;
  background-color: var(--black-5, #232323);
}

.tabs-type-1__info.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tabs-type-1__info_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.tabs-type-1__info_middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
}

.box-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}

.box-info .name {
  color: var(--gray-text, #646464);
  font-family: var(--font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.box-info .info {
  color: var(--white, #FFF);
  font-family: var(--font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.link-response {
  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;
  padding: 5px 24px;
  height: 60px;
  width: 100%;
  color: #FFF;
  font-family: var(--font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 133.333%;
  background-color: var(--green);
  border-radius: 14px;
}

.block-title {
  margin-bottom: 18px;
}

.block-title__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}

.block-title__name {
  color: var(--white, #FFF);
  font-family: var(--font-family);
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.swiper-container {
  overflow: hidden;
}

.swiper-container .swiper-slide {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: auto;
}

.swiper-container .swiper-slide article {
  height: 100%;
}

.card-news {
  min-height: 357px;
  padding: 12px;
  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;
  border-radius: 20px;
  overflow: hidden;
  gap: 16px;
  -webkit-transition: background-color 0.4s ease-in-out;
  transition: background-color 0.4s ease-in-out;
}

.card-news__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.card-news__link span {
  display: none;
}

.card-news__box-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.card-news__box-img .tag {
  position: absolute;
  top: 12px;
  left: 12px;
}

.card-news__box-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 216px;
  max-height: 216px;
}

.card-news__taitle {
  color: var(--white, #FFF);
  font-family: var(--font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}

.tag {
  padding: 8px 16px;
  border-radius: 12px;
  color: var(--white, #FFF);
  font-family: var(--font-family);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 114.286%;
  background-color: var(--black-20, #141414);
  -webkit-transition: background-color 0.4s ease-in-out;
  transition: background-color 0.4s ease-in-out;
  background-repeat: no-repeat;
  background-position: center left 12px;
}

.tag.tag-svg {
  font-size: 16px;
  padding: 8px 12px 8px 40px;
  background-color: var(--black-10, #191919);
}

.tag.time {
  background-image: url("../img/tag/time.svg");
}

.tag.copy {
  background-image: url("../img/tag/copy.svg");
}

.swiper-news__line-nav {
  padding-top: 22px;
}

.box-press__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 112px;
}

.card-photo {
  min-height: 397px;
  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;
  overflow: hidden;
  gap: 16px;
}

.card-photo__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.card-photo__link span {
  display: none;
}

.card-photo__box-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.card-photo__box-img .tag {
  position: absolute;
  top: 12px;
  left: 12px;
}

.card-photo__box-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 284px;
  max-height: 284px;
}

.card-photo__taitle {
  color: var(--white, #FFF);
  font-family: var(--font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}

.swiper-card-3__line-nav {
  padding-top: 22px;
}

.swiper-card-3__line-nav:has(.swiper-button-lock) {
  display: none;
}

.card-video {
  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;
  gap: 16px;
}

.card-video__btn {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.card-video__btn span {
  display: none;
}

.card-video .box-video {
  position: relative;
  width: 100%;
  min-height: 284px;
  max-height: 284px;
  overflow: hidden;
  border-radius: 16px;
}

.card-video .box-video:has(video) img {
  opacity: 0;
}

.card-video .box-video:has(video) .tag {
  opacity: 0;
}

.card-video .box-video:has(video) .play {
  opacity: 0;
}

.card-video .box-video img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  min-height: 284px;
  max-height: 284px;
}

.card-video .box-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
  min-height: 284px;
  max-height: 284px;
}

.card-video .box-video .tag {
  position: absolute;
  bottom: 12px;
  right: 12px;
}

.card-video .box-video .play {
  position: absolute;
  inset: 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;
  color: var(--black-20);
  -webkit-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}

.card-video__title {
  color: var(--white, #FFF);
  font-family: var(--font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}

.box-media-contacts__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  padding: 42px 44px;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--black-10, #191919);
}

.box-media-contacts__content::after {
  pointer-events: none;
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 500px;
  background-image: url("../img/media-contacts/bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.box-media-contacts__content::before {
  pointer-events: none;
  content: "";
  position: absolute;
  bottom: -150px;
  right: -107px;
  bottom: 40px;
  right: 50px;
  width: 212.492px;
  height: 343.24px;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
  border-radius: 343.24px;
  opacity: 0.5;
  background: var(--green, #00CB62);
  -webkit-filter: blur(150px);
          filter: blur(150px);
}

.box-media-contacts__top {
  width: 52.9780564263%;
}

.box-media-contacts__title {
  margin-bottom: 16px;
  color: var(--white, #FFF);
  font-family: var(--font-family);
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.64px;
}

.box-media-contacts__desc {
  color: #FFF;
  font-family: var(--font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: 0.4px;
}

.box-media-contacts__bottom {
  position: relative;
  z-index: 1;
  padding: 34px 32px 34px 36px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 162px;
  border-radius: 20px;
  background-color: rgba(19, 19, 19, 0.6);
  backdrop-filter: blur(28.3040008545px);
}

.media-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.media-contacts__desc {
  color: #FFF;
  font-family: var(--font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: 0.4px;
}

.media-contacts__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}

.link-media {
  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;
  gap: 8px;
  color: var(--white, #FFF);
  font-family: var(--font-family);
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.44px;
  -webkit-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}

.link-media::after {
  content: "";
  width: 22px;
  height: 22px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-image: url("../img/link-media/arr.svg");
  background-repeat: no-repeat;
  background-position: center center;
}

.box-detail-news__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 74.5601173021% 23.6803519062%;
  grid-template-columns: 74.5601173021% 23.6803519062%;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  row-gap: 56px;
}

.box-detail-news__wrapper_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
}

.box-detail-news__wrapper_bottom {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 1/2/3/3;
}

.line-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.card-all-news {
  position: sticky;
  top: 140px;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  border-radius: 20px;
  background-color: var(--black-10, #191919);
}

.card-all-news__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.card-all-news__list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--black-5, #232323);
}

.card-all-news__list li:first-child {
  padding-top: 0;
}

.card-all-news__list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.card-all-news__link {
  padding: 5px 24px;
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 16px;
  color: var(--white);
  font-family: var(--font-family);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 141.176%;
  background-color: var(--black-20, #141414);
  -webkit-transition: background-color 0.4s ease-in-out;
  transition: background-color 0.4s ease-in-out;
}

.card-all-news__link .svg {
  color: var(--green);
  -webkit-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}

.link-news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.link-news .time {
  color: var(--gray-text, #646464);
  font-family: var(--font-family);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  -webkit-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}

.link-news .name {
  color: #FFF;
  font-family: var(--font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 131%;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.box-photo-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
}

.box-photo-line__title {
  color: var(--white, #FFF);
  font-family: var(--font-family);
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 132%;
}

.box-photo-line__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.box-photo-line__list .card-photo {
  width: calc(50% - 12px);
  max-width: 437px;
  min-height: auto;
}

.box-photo-line__list .card-photo__taitle {
  display: none;
}

/* Стили для модалки */

.modal {
  display: none;
  /* Скрыта по умолчанию */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(29, 29, 29, 0.6);
  /* Прозрачный фон */
  backdrop-filter: blur(28.3040008545px);
  z-index: 9999;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: auto;
  padding: 60px 16px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.modal::-webkit-scrollbar {
  display: none;
}

.modal__body {
  position: relative;
  max-width: 100%;
  margin: auto 0;
}

/* Анимация для появления модалки */

.modal.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: fadeIn 0.3s ease-out;
          animation: fadeIn 0.3s ease-out;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.viewer__close {
  position: fixed;
  top: 36px;
  right: 36px;
  width: 52px;
  height: 52px;
  color: var(--white);
  z-index: 2;
  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;
  background-color: var(--black-5);
  border-radius: 16px;
  -webkit-transition: background-color 0.4s ease-in-out;
  transition: background-color 0.4s ease-in-out;
}

.viewer__window {
  max-width: 100%;
  width: 1380px;
  padding: 0 8px;
}

.card-viewer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.card-viewer__title {
  color: var(--white, #FFF);
  font-family: var(--font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.card-viewer__img {
  min-height: calc(100dvh - 64px - 188px);
  max-height: calc(100dvh - 64px - 188px);
}

.card-viewer__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: calc(100dvh - 64px - 188px);
  max-height: calc(100dvh - 64px - 188px);
}

.swiper-viewer__line-nav {
  padding-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.swiper-viewer-pagination {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 14px 16px;
  border-radius: 14px;
  color: var(--white);
  font-family: var(--font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  background-color: var(--black-5, #232323);
}

.box-linst-news__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.box-linst-news__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.line-nav {
  padding-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
}

.line-nav-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

.line-nav-group__btn {
  width: 52px;
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--white, #FFF);
  font-family: var(--font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 14px;
  background-color: var(--black-10, #191919);
  -webkit-transition: background-color 0.4s ease-in-out;
  transition: background-color 0.4s ease-in-out;
}

.line-nav-group__btn .svg {
  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;
}

.link-show-all {
  padding: 5px 24px;
  height: 52px;
  max-width: 100%;
  width: 244px;
  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;
  gap: 6px;
  color: var(--white, #FFF);
  font-family: var(--font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  gap: 6px;
  border-radius: 14px;
  background-color: var(--black-10, #191919);
  -webkit-transition: background-color 0.4s ease-in-out;
  transition: background-color 0.4s ease-in-out;
}

.link-show-all .svg {
  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;
}

.box-linst-photo__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.box-linst-photo__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.box-linst-photo-gallery__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
}

.box-linst-photo-gallery .tag {
  font-size: 16px;
  background-color: var(--black-5, #232323);
}

.box-linst-photo-gallery__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card-photo-gallery {
  border-radius: 12px;
  overflow: hidden;
  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;
}

.card-photo-gallery__link {
  width: 100%;
  height: 100%;
  max-height: 284px;
  min-height: 284px;
}

.card-photo-gallery__link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 284px;
  min-height: 284px;
}

.viewer-video__window {
  position: relative;
  max-width: 100%;
  width: 1380px;
  padding: 0 8px;
  border-radius: 16px;
  overflow: hidden;
  min-height: calc(100dvh - 154px - 154px);
  max-height: calc(100dvh - 154px - 154px);
}

.viewer-video__window iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: calc(100dvh - 154px - 154px);
  max-height: calc(100dvh - 154px - 154px);
}

.box-contacts__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 48px;
}

.box-contacts__content_left {
  height: auto;
  width: 45.6011730205%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 44px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.box-contacts__content_right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contacts-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
}

.contacts-list .box-info .name {
  font-size: 18px;
}

.contacts-list .box-info .text {
  color: var(--white, #FFF);
  font-family: var(--font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.contacts-list .box-info .phone {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--white, #FFF);
  font-family: var(--font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  -webkit-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}

.contacts-list .box-info .mail {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  color: var(--white, #FFF);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.contacts-list .box-info .mail::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background-color: var(--green);
  width: 100%;
}

.btn-requisites {
  width: 276px;
  max-width: 100%;
  padding: 5px 12px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FFF;
  font-family: var(--font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 133.333%;
  gap: 8px;
  border-radius: 16px;
  background-color: var(--black-10, #191919);
  -webkit-transition: background-color 0.4s ease-in-out;
  transition: background-color 0.4s ease-in-out;
}

.btn-requisites .svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.map-contacts {
  width: 100%;
  min-height: 407px;
  border-radius: 24px;
  overflow: hidden;
}

@media (min-width: 1001px) {
  .box-logo__link:focus-visible::before {
    opacity: 1;
  }

  .box-logo-footer__link:focus-visible::before {
    opacity: 1;
  }

  .bx-breadcrumb-item a:focus-visible,
  .bx-breadcrumb-item a:hover {
    color: #FFF;
  }

  .tabs-type-1__btn:focus-visible,
  .tabs-type-1__btn:hover {
    background: var(--black-5, #232323);
  }

  .link-response:focus-visible,
  .link-response:hover {
    background-color: #02b95a;
  }

  .card-news:has(.card-news__link:focus-visible, .card-news__link:hover) {
    background-color: var(--black-5);
  }

  .card-news__link:focus-visible + .card-news__box-img .tag,
  .card-news__link:hover + .card-news__box-img .tag {
    background-color: var(--green);
  }

  .card-photo__link:focus-visible + .card-photo__box-img .tag,
  .card-photo__link:hover + .card-photo__box-img .tag {
    background-color: var(--green);
  }

  .card-video__btn:focus-visible + .box-video .play,
  .card-video__btn:hover + .box-video .play {
    color: var(--green);
  }

  .link-media:focus-visible,
  .link-media:hover {
    color: var(--green);
  }

  .card-all-news__link:focus-visible,
  .card-all-news__link:hover {
    background-color: var(--green);
  }

  .card-all-news__link:focus-visible .svg,
  .card-all-news__link:hover .svg {
    color: var(--white);
  }

  .link-news:focus-visible .time,
  .link-news:hover .time {
    color: var(--green);
  }

  .viewer__close:focus-visible,
  .viewer__close:hover {
    background-color: var(--green);
  }

  .line-nav-group__btn:focus-visible,
  .line-nav-group__btn:hover {
    background-color: var(--green);
  }

  .link-show-all:focus-visible,
  .link-show-all:hover {
    background-color: var(--green);
  }

  .contacts-list .box-info .phone:focus-visible,
  .contacts-list .box-info .phone:hover {
    color: var(--green);
  }

  .contacts-list .box-info .mail:focus-visible,
  .contacts-list .box-info .mail:hover {
    color: var(--green);
  }

  .btn-requisites:focus-visible,
  .btn-requisites:hover {
    background-color: var(--green);
  }
}

@media (min-width: 1201px) {
  .link-nav:focus-visible::before,
  .link-nav:hover::before {
    opacity: 1;
    width: 100%;
  }

  .box-search__btn:focus-visible,
  .box-search__btn:hover {
    color: var(--green);
  }

  .box-search__btn:focus-visible .svg,
  .box-search__btn:hover .svg {
    color: var(--white, #FFF);
  }

  .footer .link-nav:focus-visible,
  .footer .link-nav:hover {
    color: var(--green);
  }

  .footer__bottom .left a:focus-visible,
  .footer__bottom .left a:hover {
    color: var(--green);
  }

  .cookie__message a:focus-visible,
  .cookie__message a:hover {
    color: var(--white);
  }

  .cookie__btn:focus-visible,
  .cookie__btn:hover {
    background-color: var(--green);
  }

  .link-download:focus-visible,
  .link-download:hover {
    background-color: var(--green);
  }

  .link-download:focus-visible .svg,
  .link-download:hover .svg {
    color: var(--white);
  }

  .link-all:focus-visible,
  .link-all:hover {
    background-color: var(--green);
  }

  .swiper-btn-type-1:focus-visible,
  .swiper-btn-type-1:hover {
    background-color: var(--green);
  }
}

@media (max-width: 1300px) {
  .header {
    padding-top: 20px;
  }

  .box-logo {
    padding-right: 0;
  }

  .footer::before {
    width: 100%;
    background-image: url("../img/footer/bg-1200.svg");
  }

  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 60px;
    padding-top: 45px;
    padding-bottom: 52px;
  }

  .footer__list li {
    margin-bottom: 28px;
  }

  .footer__bottom {
    padding-top: 55px;
    padding-bottom: 32px;
    padding-right: 400px;
  }

  .footer__bottom .right {
    display: none;
  }

  .footer__quote {
    bottom: 150px;
  }
}

@media (max-width: 1200px) {
  body {
    font-size: 18px;
  }

  .container-min {
    max-width: 100%;
  }

  .mt-156 {
    margin-top: 120px;
  }

  .mt-148 {
    margin-top: 124px;
  }

  .mt-112 {
    margin-top: 92px;
  }

  .header__line {
    padding: 14px 24px;
  }

  .box-logo__link img {
    width: 110px;
    height: 44px;
  }

  .header-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 10px;
    padding: 24px;
    border-radius: 24px;
    background-color: var(--black-20, #141414);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
  }

  .header-menu.active {
    opacity: 1;
    visibility: visible;
  }

  .header-menu::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    height: 6px;
    background-image: url("../img/header-menu/arr.svg");
    background-repeat: no-repeat;
    background-position: bottom right 24px;
  }

  .header-menu__list {
    max-width: 200px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .burger {
    position: relative;
    z-index: 2;
    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;
    gap: 4px;
    height: 40px;
    padding: 10px 20px;
    background-color: var(--green);
    border-radius: 14px;
    color: var(--main-white, #FFF);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    -webkit-transition: background-color 0.4s ease-in-out;
    transition: background-color 0.4s ease-in-out;
  }

  .burger .svg {
    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;
    height: 20px;
    width: 20px;
  }

  .burger .svg-burger {
    position: absolute;
    -webkit-transition: opacity 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out;
  }

  .burger .svg-close {
    position: absolute;
    opacity: 0;
    -webkit-transition: opacity 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out;
  }

  .section-hero__box-info .desc {
    -webkit-line-clamp: 4;
    max-width: 560px;
    font-size: 36px;
  }

  .cookie {
    bottom: 24px;
  }

  .box-about {
    padding-right: 51.0245901639%;
    padding-bottom: 96px;
  }

  .box-about__box-img {
    border-radius: 0;
    margin: 0 -24px;
    bottom: 96px;
  }

  .box-about__box-img img {
    width: 911px;
  }

  .box-about__line-btn {
    position: absolute;
    padding-top: 32px;
    width: 100%;
  }

  .section-title {
    margin-bottom: 24px;
  }

  .section-title .title {
    font-size: 32px;
  }

  .static-p-ul {
    font-size: 18px;
  }

  .static-p-ul *:not(:last-child) {
    margin-bottom: 16px;
  }

  .box-counter__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .card-counter.more .counter__number {
    padding-left: 49px;
    background-image: url("../img/card-counter/bg-1200.svg");
  }

  .card-counter .counter__number {
    font-size: 84px;
  }

  .card-decision {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 36px;
    gap: 36px;
  }

  .card-decision::before {
    top: 610px;
    right: 95px;
    -webkit-transform: rotate(46deg);
        -ms-transform: rotate(46deg);
            transform: rotate(46deg);
  }

  .card-decision .top {
    width: 100%;
  }

  .card-decision__title {
    font-size: 26px;
  }

  .bx-breadcrumb {
    padding: 120px 0 28px;
  }

  .page-title__name {
    font-size: 36px;
  }

  .box-career__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 28px;
  }

  .box-career__content-left {
    width: 100%;
  }

  .static-text {
    font-size: 18px;
  }

  .section-background::after {
    display: none;
  }

  .block-title {
    margin-bottom: 16px;
  }

  .block-title__name {
    font-size: 28px;
  }

  .tag.tag-svg {
    font-size: 15px;
    padding: 6px 12px 6px 38px;
  }

  .swiper-news__line-nav {
    padding-top: 20px;
  }

  .box-press__content {
    gap: 92px;
  }

  .swiper-card-3__line-nav {
    padding-top: 20px;
  }

  .box-media-contacts__content {
    padding: 36px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 27px;
  }

  .box-media-contacts__content::after {
    width: 525px;
    background-image: url("../img/media-contacts/bg1200.svg");
  }

  .box-media-contacts__content::before {
    bottom: -4px;
    right: -107px;
    width: 231.612px;
    height: 374.125px;
    border-radius: 374.125px;
  }

  .box-media-contacts__top {
    width: 100%;
  }

  .box-media-contacts__bottom {
    width: 100%;
    min-height: 139px;
  }

  .box-detail-news__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 48px;
  }

  .box-detail-news__wrapper_top {
    gap: 24px;
  }

  .box-detail-news__wrapper_bottom {
    padding-top: 44px;
  }

  .card-all-news__link {
    padding: 24px 24px 12px 24px;
    width: 202px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    height: auto;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .box-photo-line__list .card-photo {
    max-width: 478px;
  }

  .viewer__close {
    top: 32px;
    right: 32px;
  }

  .card-viewer {
    gap: 24px;
  }

  .card-viewer__title {
    font-size: 18px;
  }

  .card-viewer__img {
    min-height: calc(100dvh - 248px - 370px);
    max-height: calc(100dvh - 248px - 370px);
  }

  .card-viewer__img img {
    min-height: calc(100dvh - 248px - 370px);
    max-height: calc(100dvh - 248px - 370px);
  }

  .box-linst-news__list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .box-linst-photo__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .box-linst-photo-gallery__content {
    gap: 24px;
  }

  .box-linst-photo-gallery__list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .viewer-video__window {
    min-height: calc(100dvh - 300px - 100px);
    max-height: auto;
  }

  .viewer-video__window iframe {
    min-height: calc(100dvh - 300px - 100px);
    max-height: auto;
  }

  .box-contacts__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 36px;
  }

  .box-contacts__content_left {
    width: 100%;
    gap: 36px;
  }

  .contacts-list {
    gap: 24px;
  }

  .contacts-list .box-info .text {
    font-size: 18px;
  }

  .contacts-list .box-info .phone {
    font-size: 18px;
  }

  .contacts-list .box-info .mail {
    font-size: 18px;
  }
}

@media (max-width: 1200px) and (max-width: 1000px) {
  .burger {
    border-radius: 8px;
    width: 32px;
    height: 32px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }

  .burger.active {
    background-color: var(--gray-500, #232323);
  }

  .burger.active .svg-burger {
    opacity: 0;
  }

  .burger.active .svg-close {
    opacity: 1;
  }
}

@media (max-width: 1000px) {
  body {
    font-size: 17px;
  }

  .container {
    padding: 0 16px;
  }

  .container-min {
    padding: 0 16px;
  }

  .container {
    padding: 0 16px;
  }

  .header__line {
    padding: 12px;
  }

  .box-logo__link img {
    width: 80px;
    height: 32px;
  }

  .header-menu {
    position: fixed;
    inset: 0;
    z-index: 2;
    border-radius: 0;
    padding: 88px 20px 60px 16px;
  }

  .header-menu__wrapper {
    height: 100%;
    gap: 32px;
  }

  .header-menu__nav {
    overflow: auto;
    height: 100%;
  }

  .header-menu__line-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .header-menu__list {
    gap: 36px;
  }

  .link-nav {
    font-size: 20px;
    line-height: 120%;
  }

  .header-right {
    gap: 12px;
  }

  .box-search {
    display: none;
  }

  .switcher__label {
    width: 72px;
    height: 32px;
  }

  .switcher__status {
    font-size: 15px;
  }

  .burger {
    padding: 6px;
  }

  .burger .text {
    display: none;
  }

  .footer::before {
    background-image: url("../img/footer/bg-1000.svg");
  }

  .footer__top {
    padding-top: 32px;
    padding-right: 0;
    gap: 36px;
    padding-bottom: 190px;
  }

  .footer__list {
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
  }

  .footer__list li {
    margin-bottom: 32px;
  }

  .footer .link-nav {
    font-size: 18px;
  }

  .footer__bottom {
    padding-right: 0;
    padding-top: 190px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 24px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .footer__bottom .left {
    gap: 6px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

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

  .footer__quote {
    font-size: 36px;
    right: auto;
    left: 16px;
    bottom: 280px;
  }

  .box-logo-footer__link img {
    width: 161px;
    height: 64px;
  }

  .section-hero__box-info .desc {
    -webkit-line-clamp: 6;
    max-width: 320px;
    font-size: 24px;
  }

  .cookie__window {
    width: 330px;
  }

  .box-about {
    padding-top: 306px;
    padding-right: 0;
    padding-bottom: 0;
  }

  .box-about .section-title {
    position: absolute;
    top: 0;
    left: 0;
  }

  .box-about .section-title .title {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .box-about__box-img {
    border-radius: 0 20px 20px 0;
    margin: 0 -16px;
    width: calc(100% + 32px);
    height: 204px;
    top: 58px;
    right: 0;
    left: 0;
  }

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

  .box-about__box-img img {
    width: 100%;
  }

  .box-about__line-btn {
    padding-top: 28px;
    position: static;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .section-title .title {
    font-size: 28px;
  }

  .static-p-ul {
    font-size: 16px;
  }

  .static-p-ul ul li {
    padding-left: 33px;
  }

  .static-p-ul ul li::before {
    top: 10px;
    left: 10px;
  }

  .static-p-ul ul li::after {
    top: 10px;
    left: 10px;
  }

  .static-list-title__title {
    font-size: 17px;
  }

  .link-download {
    font-size: 17px;
    height: 56px;
  }

  .box-counter__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .card-counter.more .counter__number {
    padding-left: 31px;
    background-image: url("../img/card-counter/bg.svg");
  }

  .card-counter .counter__number {
    font-size: 52px;
  }

  .card-counter .counter__desc {
    max-width: 310px;
    font-size: 18px;
  }

  .card-counter .counter__desc br {
    display: none;
  }

  .card-decision {
    padding: 24px;
    gap: 36px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .card-decision::before {
    top: 767px;
    right: -105px;
  }

  .card-decision__img {
    height: 252px;
  }

  .card-decision__img img {
    max-height: 252px;
  }

  .table-type-1__name {
    font-size: 18px;
  }

  .table-type-1__line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
  }

  .table-type-1__line .name {
    font-size: 16px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }

  .table-type-1__line .between {
    display: none;
  }

  .table-type-1__line .info {
    font-size: 16px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    text-align: start;
  }

  .link-all {
    padding: 5px 30px;
    height: 48px;
    width: auto;
  }

  .swiper-btn-type-1 {
    width: 48px;
    height: 48px;
  }

  .bx-breadcrumb {
    padding: 100px 0 24px;
  }

  .page-title {
    margin-bottom: 24px;
  }

  .page-title__name {
    font-size: 28px;
  }

  .static-text {
    font-size: 16px;
  }

  .tabs-type-1__btn {
    padding: 16px;
    font-size: 17px;
  }

  .tabs-type-1__btn .svg {
    width: 32px;
    height: 32px;
  }

  .tabs-type-1__info {
    padding: 0 16px 16px 16px;
  }

  .tabs-type-1__info_top {
    gap: 12px;
  }

  .tabs-type-1__info_middle {
    gap: 20px;
  }

  .box-info .name {
    font-size: 15px;
  }

  .box-info .info {
    font-size: 17px;
  }

  .link-response {
    height: 52px;
    font-size: 17px;
  }

  .block-title {
    margin-bottom: 12px;
  }

  .block-title__name {
    font-size: 22px;
  }

  .card-news {
    min-height: auto;
  }

  .card-news__taitle {
    font-size: 18px;
  }

  .tag.tag-svg {
    font-size: 14px;
    padding: 6px 11px 6px 37px;
  }

  .box-press__content {
    gap: 76px;
  }

  .card-photo {
    min-height: 100%;
  }

  .card-photo__box-img img {
    min-height: 244px;
    max-height: 244px;
  }

  .card-photo__taitle {
    font-size: 18px;
  }

  .card-video .box-video {
    min-height: 244px;
    max-height: 244px;
  }

  .card-video .box-video img {
    min-height: 244px;
    max-height: 244px;
  }

  .card-video .box-video video {
    min-height: 244px;
    max-height: 244px;
  }

  .card-video .box-video .play svg {
    width: 64px;
    height: 64px;
  }

  .card-video__title {
    font-size: 18px;
  }

  .box-media-contacts__content {
    padding: 24px;
  }

  .box-media-contacts__content::after {
    top: auto;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 256px;
    background-image: url("../img/media-contacts/bg1000.svg");
  }

  .box-media-contacts__content::before {
    bottom: -23px;
    right: -71px;
    width: 156.103px;
    height: 252.154px;
    border-radius: 0;
  }

  .box-media-contacts__title {
    font-size: 28px;
  }

  .box-media-contacts__desc {
    font-size: 18px;
  }

  .box-media-contacts__bottom {
    padding: 24px;
  }

  .media-contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }

  .media-contacts__desc {
    font-size: 18px;
  }

  .link-media {
    font-size: 20px;
  }

  .box-detail-news__wrapper_top {
    gap: 20px;
  }

  .box-detail-news__wrapper_bottom {
    padding-top: 16px;
  }

  .card-all-news__link {
    padding: 14px 24px;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .link-news .name {
    font-size: 17px;
  }

  .box-photo-line__title {
    font-size: 24px;
  }

  .box-photo-line__list {
    gap: 16px;
  }

  .box-photo-line__list .card-photo {
    width: 100%;
    max-width: 100%;
  }

  .modal {
    padding: 30px 16px;
  }

  .viewer__close {
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
  }

  .viewer__window {
    padding: 0;
  }

  .card-viewer {
    gap: 20px;
  }

  .card-viewer__title {
    font-size: 15px;
  }

  .card-viewer__img {
    min-height: calc(100dvh - 155px - 155px);
    max-height: calc(100dvh - 155px - 155px);
  }

  .card-viewer__img img {
    min-height: calc(100dvh - 155px - 155px);
    max-height: calc(100dvh - 155px - 155px);
  }

  .swiper-viewer-pagination {
    font-size: 15px;
  }

  .box-linst-news__content {
    max-width: 450px;
    margin: 0 auto;
  }

  .box-linst-news__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .line-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .line-nav-group {
    width: 100%;
  }

  .line-nav-group__btn {
    width: 100%;
  }

  .link-show-all {
    width: 100%;
  }

  .box-linst-photo__content {
    max-width: 450px;
    margin: 0 auto;
  }

  .box-linst-photo__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .box-linst-photo-gallery .tag {
    font-size: 14px;
  }

  .box-linst-photo-gallery__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .card-photo-gallery__link {
    max-height: 210px;
    min-height: 210px;
  }

  .card-photo-gallery__link img {
    max-height: 210px;
    min-height: 210px;
  }

  .viewer-video__window {
    min-height: calc(100dvh - 160px - 160px);
    max-height: calc(100dvh - 160px - 160px);
  }

  .viewer-video__window iframe {
    min-height: calc(100dvh - 160px - 160px);
    max-height: calc(100dvh - 160px - 160px);
  }

  .viewer-video__window {
    padding: 0;
  }

  .box-contacts__content_left {
    gap: 28px;
  }

  .contacts-list {
    gap: 20px;
  }

  .contacts-list .box-info .text {
    font-size: 17px;
  }

  .contacts-list .box-info .phone {
    font-size: 17px;
  }

  .contacts-list .box-info .mail {
    font-size: 17px;
  }

  .btn-requisites {
    width: 100%;
    font-size: 17px;
  }

  .map-contacts {
    min-height: 244px;
  }
}

@media (max-width: 550px) {
  .mt-156 {
    margin-top: 108px;
  }

  .mt-148 {
    margin-top: 108px;
  }

  .mt-112 {
    margin-top: 76px;
  }

  .modal {
    padding: 20px 10px;
  }
}

@media (max-width: 1200px) and (min-width: 1001px) {
  .card-all-news {
    position: static;
    top: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }

  .card-all-news__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .card-all-news__list li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 0 20px;
    border-right: 1px solid var(--black-5, #232323);
    border-bottom: 0;
  }

  .card-all-news__list li:first-child {
    padding-left: 0;
  }

  .card-all-news__list li:last-child {
    padding-right: 0;
    border-right: 0;
  }
}