@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);
  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;
}

#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%;
}

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

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

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

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

@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) {
  .container-min {
    max-width: 100%;
  }

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

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

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

@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) {
  .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;
  }

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

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

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