* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Space Grotesk', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #edf3f7;
}

body.dark {
  background: #0b1d2a;
}

.dark .color_change {
  color: #f5f5f5 !important;
}

.dark .fill_change svg path {
  fill: #f5f5f5 !important;
}

.dark .stroke_change svg path {
  stroke: #f5f5f5 !important;
}

.dark .bg_change {
  background-color: #f5f5f5 !important;
}

a {
  text-decoration: none;
}

input,
textarea {
  outline: none;
}

.container {
  padding: 0 80px;

  @media (max-width: 999px) {
    padding: 0 24px;
  }

  @media (max-width: 360px) {
    padding: 0 10px;
  }
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reverse header .container {
  flex-direction: row-reverse;
}

header {
  height: 50px;
  margin-top: 1.3889vw;

  @media (max-width: 1440px) {
    margin-top: 35px;
  }

  @media (max-width: 999px) {
    height: auto;
  }
  /* Логотип */
  .header__logo .logo-img {
    height: 54px;
    width: auto;
    display: block;
  }

  @media (max-width: 1024px) {
    .header__logo .logo-img {
      height: 36px;
    }
  }
  @media (max-width: 640px) {
    .header__logo .logo-img {
      height: 32px;
    }
  }
}

.header_left {
  display: flex;
  align-items: center;
  gap: 60px;
}

.reverse .header_left {
  flex-direction: row-reverse;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.69vw;

  @media (max-width: 1440px) {
    gap: 10px;
  }
}

.reverse .header__logo {
  flex-direction: row-reverse;
}

.header__logo span {
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  color: #000000;

  @media (max-width: 999px) {
    font-size: 20px;
  }
}

.header_left__nav {
  display: flex;
  align-items: center;
  gap: 1.39vw;

  @media (max-width: 999px) {
    display: none;
  }
}

.header_left__nav a {
  transition: 0.6s;
  font-weight: 500;
  font-size: 1.25vw;
  line-height: 125%;
  color: black;
  transition: 0.3s;
}

.header_left__nav a:hover {
  color: #8dceff;
  transform: translateY(-5px);
}

.header_right {
  display: flex;
  align-items: center;
}

.reverse .header_right {
  flex-direction: row-reverse;
}

.header_right__color {
  width: 20px;
  height: 20px;
  cursor: pointer;
  transition: 0.3s;

  @media (max-width: 1440px) {
    width: 20px;
    height: 20px;
  }

  @media (max-width: 999px) {
    display: none;
  }
}

.header_right__color svg:nth-child(2) {
  display: none;
}

.header_right__color.active svg:nth-child(2) {
  display: block;
}

.header_right__color.active svg:nth-child(1) {
  display: none;
}

.header_right__color:hover {
  transform: translateY(-5px);
}

.header_right__translate {
  width: 34px;
  height: 20px;
  margin: 0 2.2vw 0 0.732vw;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
  z-index: 4;

  @media (max-width: 1440px) {
    margin: 0 30px 0 10px;
    width: 34px;
    height: 20px;
  }

  @media (max-width: 999px) {
    display: none;
  }
}

.header_right__translate svg {
  width: 20px;
  height: 20px;
  display: block;
}

.reverse .header_right__translate {
  margin: 0 0.732vw 0 2.2vw;

  @media (max-width: 1440px) {
    margin: 0 10px 0 30px;
  }
}

.header_right__translate_box {
  position: absolute;
  flex-direction: column;
  top: 35px;
  left: 0;
  padding: 15px 0;
  border-radius: 15px;
  border: 1px solid #828282;
  background-color: #f5f5f5;
  display: none;
  z-index: 4;

  @media (max-width: 1440px) {
    padding: 15px 0;
  }
}

.reverse .header_right__translate_box {
  @media (max-width: 999px) {
    left: initial;
    right: 0;
  }
}

.header_right__translate_box.active {
  display: flex;
}

.header_right__translate_box__item {
  display: flex;
  padding: 5px 20px;
  gap: 5px;
  transition: 0.3s;
}

.header_right__translate_box__item:hover {
  background-color: #8dceff;
}

.header_right__translate:hover {
  transform: translateY(-5px);
}

.header_right__translate::after {
  width: 10px;
  height: 10px;
  background-image: url(../img/icon/CaretDown.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  content: '';
  position: absolute;
  right: 0px;
  top: 5px;
}

.dark .header_right__translate::after {
  background-image: url(../img/icon/CaretDown_white.svg);
}

.header_right__btn {
  width: fit-content;
  padding: 0 1.39vw;
  height: 2.78vw;
  background: linear-gradient(180deg, #54febd 0%, #2eca8e 100%);
  box-shadow: 0px 5vw 4vw -2vw #00a7674d;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: 500;
  font-size: 1.39vw;
  line-height: 100%;
  color: #ffffff;
  transition: 0.3s;
  border-radius: 100px;

  @media (max-width: 1440px) {
    padding: 0 20px;
    height: 37px;
    font-size: 14px;
  }

  @media (max-width: 999px) {
    display: none;
  }
}

.header_right__burger {
  display: none;
  width: 27px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;

  @media (max-width: 999px) {
    display: flex;
  }
}

.header_right__burger span {
  width: 100%;
  display: block;
  height: 2px;
  border-radius: 2px;
  background: #000000;
}

.header_right__btn:hover {
  opacity: 0.7;
  transform: translateY(-5px);
}

.header_right__btn::after {
  content: 'Coming soon';
  font-size: 0.69vw;
  line-height: 100%;
  color: #fff;
  background: #ff8800;
  width: 5.07vw;
  height: 1.18vw;
  border-radius: 5px;
  position: absolute;
  right: -14px;
  bottom: -7px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-14deg);

  @media (max-width: 1440px) {
    padding: 0 3px;
    height: 17px;
    font-size: 8px;
    width: fit-content;
  }
}

section.home {
  margin-top: 6.25vw;

  @media (max-width: 999px) {
    margin-top: 46px;
  }
}

.home_flex {
  display: flex;
  justify-content: space-between;
  gap: 6.25vw;

  @media (max-width: 999px) {
    flex-direction: column;
    gap: 35px;
    align-items: center;
  }
}

.reverse .home_flex {
  flex-direction: row-reverse;

  @media (max-width: 999px) {
    flex-direction: column;
  }
}

.home_flex_left {
  width: calc(46.5% - 3.125vw);

  @media (max-width: 999px) {
    width: 100%;
  }
}

.home_flex_right {
  width: calc(53.5% - 3.125vw);
  border-radius: 1.11vw;
  overflow: hidden;

  @media (max-width: 1440px) {
    border-radius: 16px;
  }

  @media (max-width: 999px) {
    width: 100%;
  }
}
.home_flex_right video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home_flex_right img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.home_flex_right .video_ru {
  display: none;
}
.vid_ru .video_ru {
  display: block;
}
.vid_ru .video_en {
  display: none;
}

h1 {
  font-size: 4.17vw;
  line-height: 100%;
  font-weight: 700;

  @media (max-width: 999px) {
    font-size: 46px;
    text-align: center;
  }
}

.home_flex_left h1 {
  font-size: 4.17vw;
  line-height: 100%;
  font-weight: 700;

  @media (max-width: 999px) {
    font-size: 46px;
    text-align: center;
  }
}

.reverse .home_flex_left h1 {
  text-align: right;

  @media (max-width: 999px) {
    text-align: center;
  }
}

.home_flex_left p {
  margin: 2.78vw 0;
  font-size: 1.39vw;
  line-height: 125%;
  color: #828282;

  @media (max-width: 999px) {
    font-size: 16px;
    text-align: center;
    margin: 13px 0 35px;
    max-width: 341px;
    margin-left: auto;
    margin-right: auto;
  }

  @media (max-width: 576px) {
    font-size: 13px;
    max-width: 281px;
  }
}

.reverse .home_flex_left p {
  text-align: right;

  @media (max-width: 999px) {
    text-align: center;
  }
}

.home_flex_left_box {
  display: flex;
  gap: 1.39vw;
  align-items: center;

  @media (max-width: 999px) {
    margin-left: auto;
    margin-right: auto;
    gap: 26px;
    justify-content: center;
  }
}

.reverse .home_flex_left_box {
  flex-direction: row-reverse;
  justify-content: flex-start;
  width: 100%;

  @media (max-width: 999px) {
    justify-content: center;
  }
}

.btn--blue {
  color: #ffffff;
  background: linear-gradient(180deg, #54febd 0%, #2eca8e 100%);
  box-shadow: 0px 5vw 4vw -2vw #00a7674d;
  transition: 0.3s;
}

.btn--blue:hover {
  transform: translateY(-5px);
  opacity: 0.7;
}

.btn {
  height: 2.78vw;
  border-radius: 1.39vw;
  font-weight: 500;
  font-size: 1.39vw;
  line-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.39vw;
  transition: 0.3s;
  gap: 5px;
  width: fit-content;

  @media (max-width: 999px) {
    height: 37px;
    padding: 0 15px;
    font-size: 14px;
    border-radius: 20px;
  }
}

.reverse .btn {
  flex-direction: row-reverse;
}

.btn--transparent,
.btn--transparent {
  color: #8dceff;
  border: 2px solid #8dceff;
}

.btn--transparent:hover {
  transform: translateY(-5px);
  color: #ffffff;
  background: linear-gradient(180deg, #8dceff 0%, #3995da 100%);
  box-shadow: 0px 5vw 4vw -2vw #0061a74d;
}
.btn--transparent:hover svg path {
  fill: #ffffff;
}
.btn--transparent svg {
  transition: 0.3s;
}

.foto_box {
  margin-top: 8.33vw;
  display: flex;
  justify-content: space-between;
  gap: 2.083vw;
  width: 100%;
  overflow: hidden;
  border-radius: 2.78vw;
  height: 38.96vw;
  position: relative;
  display: flex;
  flex-direction: column;
  align-self: center;
  justify-content: center;
  gap: 2.78vw;

  @media (max-width: 999px) {
    margin-top: 90px;
    gap: 25px;
  }

  @media (max-width: 576px) {
    margin-top: 60px;
    height: 480px;
  }

  @media (max-width: 360px) {
    height: 400px;
  }
}

.foto_box__img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;

  @media (max-width: 999px) {
    width: 100%;
    height: 100%;
  }
}

.foto_box__img-mockup {
  position: absolute;
  /* top: 0; */
  /* transform: translateY(10%); */
  left: 0;
  width: 50%;
  object-fit: cover;
  object-position: center;

  @media (max-width: 576px) {
    width: 100%;
    left: 50%;
    /* bottom: 0; */
    transform: translateX(-50%) translateY(13%);
    padding: 20px;
  }
}

.foto_box h2 {
  font-weight: 700;
  font-size: 4.17vw;
  line-height: 4.17vw;
  text-align: right;
  width: 100%;
  max-width: 49.1vw;
  position: relative;
  z-index: 2;
  margin-left: auto;
  margin-right: 2%;
  color: #fff;
  margin-bottom: 0;

  @media (max-width: 999px) {
    font-size: 34px;
    line-height: 100%;
    max-width: 330px;
    margin-bottom: 0;
  }

  @media (max-width: 576px) {
    font-size: 28px;
    line-height: 100%;
    max-width: 270px;
    text-align: center;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: auto;
  }
}

.foto_box p {
  font-weight: 500;
  font-size: 2.5vw;
  line-height: 2.5vw;
  text-align: right;
  color: #fff;
  max-width: 41.32vw;
  width: 100%;
  position: relative;
  z-index: 2;
  margin-left: auto;
  margin-right: 2%;

  @media (max-width: 999px) {
    font-size: 20px;
    max-width: 320px;
    line-height: 120%;
  }

  @media (max-width: 576px) {
    font-size: 16px;
    max-width: 280px;
    text-align: center;
    margin-right: auto;
    margin-bottom: 20px;
  }
}

.works,
.faq {
  margin-top: 8.333vw;

  @media (max-width: 999px) {
    margin-top: 90px;
  }

  @media (max-width: 576px) {
    margin-top: 60px;
  }
}

.works_flex-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.083vw;

  @media (max-width: 999px) {
    margin-bottom: 25px;
  }
}

.reverse .works_flex-header {
  flex-direction: row-reverse;
}

.works_flex-header h2 {
  font-weight: 700;
  font-size: 3.333vw;
  line-height: 3.333vw;
  color: #000000;
  margin-bottom: 0;

  @media (max-width: 999px) {
    font-size: 34px;
    line-height: 100%;
  }

  @media (max-width: 576px) {
    font-size: 26px;
  }
}

.reverse .works_flex-header h2 {
  text-align: right;
}

.works_flex-header p {
  font-size: 1.111vw;
  line-height: 1.389vw;
  color: #000000;
  margin-top: 0.694vw;

  @media (max-width: 1440px) {
    font-size: 16px;
    line-height: 130%;
    margin-top: 15px;
  }
}

.reverse .works_flex-header p {
  text-align: right;
}

.works_flex-header a {
  background: linear-gradient(180deg, #54febd 0%, #2eca8e 100%);
  box-shadow: 0px 5vw 4vw -2vw #00a7674d;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 3.0556vw;
  gap: 0.3472vw;
  font-weight: 500;
  font-size: 1.3889vw;
  line-height: 1.3889vw;
  color: #ffffff;
  border-radius: 100px;
  transition: 0.3s;
  padding: 0 1.39vw;

  @media (max-width: 1440px) {
    padding: 0 20px;
  }

  @media (max-width: 999px) {
    font-size: 14px;
    height: 37px;
    border-radius: 20px;
    padding: 0 15px;
    width: auto;
  }
}

.reverse .works_flex-header a {
  flex-direction: row-reverse;
}

.works_flex-header a svg {
  width: 1.67vw;
  height: 1.67vw;

  @media (max-width: 1440px) {
    width: 24px;
    height: 24px;
  }

  @media (max-width: 999px) {
    width: 18px;
    height: 18px;
  }
}

.works_flex-header a:hover {
  transform: translateY(-5px);
  opacity: 0.7;
}

.works_flex-card {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.3889vw;

  @media (max-width: 999px) {
    gap: 15px;
  }
}

.works_flex-card-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.0833vw;
  background: #8dceff;
  border-radius: 1.3889vw;
  padding: 1.3889vw;
  width: calc(25% - 1.0417vw);
  height: auto;
  position: relative;

  @media (max-width: 999px) {
    width: calc(25% - 45px / 3);
    padding: 15px;
    border-radius: 15px;
  }

  @media (max-width: 700px) {
    width: 100%;
  }
}

/* Линия вправо для всех элементов кроме последнего */
.works_flex-card-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: calc(-1.3889vw - 0.5px);
  width: calc(1.3889vw + 1px);
  height: 20px;
  background: #8dceff;
  transform: translateY(-50%);
  z-index: 1;

  @media (max-width: 999px) {
    right: calc(-15px - 0.5px);
    width: calc(15px + 1px);
  }

  @media (max-width: 700px) {
    /* Вертикальная линия вниз */
    top: auto;
    bottom: calc(-15px - 0.5px);
    right: 50%;
    left: auto;
    width: 20px;
    height: calc(15px + 1px);
    transform: translateX(50%);
  }
}

/* Линия влево для всех элементов кроме первого */
.works_flex-card-item:not(:first-child)::before {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(-1.3889vw - 0.5px);
  width: calc(1.3889vw + 1px);
  height: 20px;
  background: #8dceff;
  transform: translateY(-50%);
  z-index: 1;

  @media (max-width: 999px) {
    left: calc(-15px - 0.5px);
    width: calc(15px + 1px);
  }

  @media (max-width: 700px) {
    /* Вертикальная линия вверх */
    top: calc(-15px - 0.5px);
    bottom: auto;
    left: 50%;
    right: auto;
    width: 20px;
    height: calc(15px + 1px);
    transform: translateX(-50%);
  }
}

.reverse .works_flex-card-item {
  align-items: flex-end;
}

/* Для RTL режима меняем направление линий */
.reverse .works_flex-card-item:not(:last-child)::after {
  right: auto;
  left: calc(-1.3889vw - 0.5px);

  @media (max-width: 999px) {
    left: calc(-15px - 0.5px);
    right: auto;
  }

  @media (max-width: 700px) {
    /* На мобильных вертикальные линии одинаковы для LTR и RTL */
    top: auto;
    bottom: calc(-15px - 0.5px);
    left: 50%;
    right: auto;
    width: 20px;
    height: calc(15px + 1px);
    transform: translateX(-50%);
  }
}

.reverse .works_flex-card-item:not(:first-child)::before {
  left: auto;
  right: calc(-1.3889vw - 0.5px);

  @media (max-width: 999px) {
    right: calc(-15px - 0.5px);
    left: auto;
  }

  @media (max-width: 700px) {
    /* На мобильных вертикальные линии одинаковы для LTR и RTL */
    top: calc(-15px - 0.5px);
    bottom: auto;
    left: 50%;
    right: auto;
    width: 20px;
    height: calc(15px + 1px);
    transform: translateX(-50%);
  }
}

.reverse .works_flex-card-item div:nth-child(1) {
  flex-direction: column;
  display: flex;
  align-items: flex-end;
}

.works_flex-card__tittle {
  font-weight: 500;
  font-size: 2vw;
  line-height: 2vw;
  line-height: 100%;
  color: #000000;
  margin: 1.3889vw 0 0.6944vw 0;

  @media (max-width: 999px) {
    font-size: 22px;
    line-height: 100%;
    margin: 15px 0 10px 0;
  }
}

.reverse .works_flex-card__tittle {
  text-align: right;
}

.works_flex-card-item p {
  color: #000000;
  font-size: 1.1111vw;
  line-height: 1.3889vw;

  @media (max-width: 999px) {
    font-size: 14px;
    line-height: 16px;
  }
}

.reverse .works_flex-card-item p {
  text-align: right;
}

.works_flex-card-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 1.3889vw;
  line-height: 1.3889vw;
  color: #ffffff;
  border-radius: 100px;
  width: fit-content;
  height: 2.78vw;
  background: linear-gradient(180deg, #8dceff 0%, #3995da 100%);
  box-shadow: 0px 5vw 4vw -2vw #0061a74d;
  transition: 0.3s;
  padding: 0 1.3889vw;

  @media (max-width: 1440px) {
    padding: 0 20px;
  }

  @media (max-width: 999px) {
    height: 37px;
    padding: 0 15px;
    font-size: 14px;
    border-radius: 100px;
    width: fit-content;
  }
}

.works_flex-card-item a:hover {
  transform: translateY(-5px);
}

.vision,
.community,
.start,
.cases,
.documentation {
  margin-top: 12.5vw;

  @media (max-width: 999px) {
    margin-top: 90px;
  }

  @media (max-width: 576px) {
    margin-top: 60px;
  }
}

.vision h2,
.community_headling h2,
.start h2 {
  font-weight: 700;
  font-size: 3.333vw;
  line-height: 3.333vw;
  color: #000000;
  margin-bottom: 2.08vw;

  @media (max-width: 999px) {
    font-size: 34px;
    line-height: 100%;
    margin-bottom: 30px;
  }

  @media (max-width: 576px) {
    font-size: 26px;
  }
}

.reverse .vision h2 {
  text-align: right;
}

h2 {
  font-weight: 700;
  font-size: 3.333vw;
  line-height: 3.333vw;
  color: #000000;
  margin-bottom: 2.08vw;

  @media (max-width: 999px) {
    font-size: 34px;
    line-height: 100%;
    margin-bottom: 30px;
  }

  @media (max-width: 576px) {
    font-size: 26px;
  }
}

.community_headling h2 {
  margin-bottom: 0;
}

.community_headling {
  margin-bottom: 2.08vw;

  @media (max-width: 999px) {
    margin-bottom: 30px !important;
  }
}

.vision_flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.39vw;

  @media (max-width: 999px) {
    gap: 15px;
  }
}

.vision_flex-card {
  width: calc(100% / 3 - 2.78vw / 3);
  height: 17.57vw;
  border-radius: 1.39vw;
  background: #3995da;
  padding: 1.39vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  @media (max-width: 999px) {
    height: auto;
    gap: 45px;
    border-radius: 15px;
    padding: 15px;
    width: calc(100% / 3 - 10px);
  }

  @media (max-width: 700px) {
    height: auto;
    gap: 45px;
    border-radius: 15px;
    padding: 15px;
    width: 100%;
  }
}

.reverse .vision_flex-card {
  text-align: right;
  align-items: flex-end;
}

.vision_flex-card__tag {
  font-weight: 700;
  font-size: 1.67vw;
  line-height: 100%;
  color: #fff;

  @media (max-width: 999px) {
    font-size: 18px;
  }

  &.coming-soon {
    position: relative;
    &::after {
      content: 'Part of SPLS Pro (coming soon)';
      font-size: 1vw;
      line-height: 100%;
      color: #fff;
      background: #ff8800;
      width: fit-content;
      height: 1.18vw;
      border-radius: 5px;
      position: absolute;
      left: 13px;
      bottom: -16px;
      display: flex;
      align-items: center;
      justify-content: center;
      transform: rotate(-4deg);
      padding: 0.2vw 0.7vw;
      height: 17px;

      @media (max-width: 576px) {
        font-size: 10px;
      }
    }
  }
}

.vision_flex-card__tittle {
  font-weight: 500;
  font-size: 2.5vw;
  line-height: 2.5vw;
  color: #fff;
  margin-bottom: 0.69vw;

  @media (max-width: 999px) {
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 120%;
  }
}

.vision_flex-card p {
  font-size: 1.11vw;
  line-height: 1.39vw;
  color: #fff;

  @media (max-width: 999px) {
    font-size: 14px;
    line-height: 16px;
  }
}

.community_headling {
  display: flex;
  align-items: center;
  gap: 2.78vw;
  margin-bottom: 2.36vw;

  @media (max-width: 999px) {
    gap: 30px;
  }

  @media (max-width: 576px) {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

.reverse .community_headling {
  justify-content: flex-start;
  flex-direction: row-reverse;
  width: 100%;

  @media (max-width: 576px) {
    flex-direction: column;
    align-items: flex-end;
    gap: 18px;
  }
}

.community_btn {
  display: flex;
  align-items: center;
  gap: 1.39vw;

  @media (max-width: 999px) {
    gap: 15px;
  }

  @media (max-width: 360px) {
    gap: 10px;
    justify-content: space-between;
    width: 100%;
  }
}

.community_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #8dceff 0%, #3995da 100%);
  box-shadow: 0px 5vw 4vw -2vw #0061a74d;
  font-weight: 500;
  font-size: 1.39vw;
  line-height: 1.39vw;
  color: #ffffff;
  gap: 0.35vw;
  padding: 0.69vw 1.39vw;
  border-radius: 100px;
  transition: 0.3s;

  @media (max-width: 999px) {
    padding: 0 15px;
    height: 37px;
    border-radius: 100px;
    font-size: 14px;
  }
}

.community_btn a svg {
  width: 1.39vw;
  height: 1.39vw;

  @media (max-width: 1440px) {
    width: 20px;
    height: 20px;
  }
}

.reverse .community_btn a {
  flex-direction: row-reverse;
}

.community_btn a:hover {
  transform: translateY(-5px);
  opacity: 0.7;
}

.community_flex {
  display: flex;
  justify-content: space-between;

  @media (max-width: 700px) {
    flex-direction: column;
    gap: 30px;
  }
}

.reverse .community_flex {
  flex-direction: row-reverse;
  text-align: right;

  @media (max-width: 700px) {
    flex-direction: column;
  }
}

.community_tab-box {
  flex-shrink: 1;
  max-width: 45.14vw;
  width: 100%;

  @media (max-width: 999px) {
    max-width: initial;
    width: 100%;
    margin-right: 25px;
  }
}

.community_tab-box-item {
  margin-top: 2.08vw;
  display: none;

  @media (max-width: 999px) {
    margin-bottom: 20px;
  }

  @media (max-width: 700px) {
    margin-bottom: 0;
  }
}

.community_tab-box-item.active {
  display: block;
}

.community_tab-box-item__star {
  display: flex;
  gap: 0.69vw;

  @media (max-width: 999px) {
    gap: 10px;
  }
}

.reverse .community_tab-box-item__star {
  justify-content: flex-end;
}

.community_tab-box-item__tittle {
  margin: 1.39vw 0 0.69vw 0;
  font-weight: 700;
  font-size: 2.22vw;
  line-height: 100%;
  color: #000000;

  @media (max-width: 999px) {
    font-size: 18px;
    margin: 20px 0 10px;
  }
}

.community_tab-box-item p {
  font-size: 1.67vw;
  line-height: 140%;
  color: #000000;

  @media (max-width: 999px) {
    font-size: 16px;
  }
}

.community_tab-btn {
  display: flex;
  flex-direction: column;
  gap: 1.39vw;
  flex-shrink: 0;

  @media (max-width: 999px) {
    gap: 15px;
  }
}

.community_tab-btn-item {
  display: flex;
  align-items: center;
  gap: 0.69vw;
  border-radius: 1.39vw;
  padding: 1.39vw;
  width: 20.42vw;
  cursor: pointer;
  transition: 0.3s;

  @media (max-width: 999px) {
    width: 270px;
    padding: 15px;
    gap: 10px;
    border-radius: 15px;
  }

  @media (max-width: 700px) {
    width: 100%;
  }
}

.reverse .community_tab-btn-item {
  flex-direction: row-reverse;
}

.community_tab-btn-item:hover {
  transform: translateX(-10px);
}

.community_tab-btn-item__img {
  width: 3.47vw;
  height: 3.47vw;
  border-radius: 50%;
  flex-shrink: 0;

  @media (max-width: 999px) {
    width: 40px;
    height: 40px;
  }
}

.community_tab-btn-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.community_tab-btn-item span {
  font-weight: 500;
  font-size: 1.39vw;
  line-height: 100%;
  color: #000000;
  display: block;

  @media (max-width: 999px) {
    font-size: 16px;
  }
}

.community_tab-btn-item p {
  font-size: 1.04vw;
  line-height: 100%;
  color: #000000;
  margin-top: 0.35vw;

  @media (max-width: 999px) {
    font-size: 14px;
  }
}

.community_tab-btn .community_tab-btn-item.active {
  background-color: #8dceff;
}

.community_tab-btn .community_tab-btn-item {
  background: #54febd;
}

.start h2 {
  text-align: center;
  margin-bottom: 0;
}

.start p {
  text-align: center;
  font-size: 1.39vw;
  line-height: 130%;
  text-align: center;
  margin-top: 1.39vw;
  margin-bottom: 2.78vw;
  max-width: 27.78vw;
  margin-left: auto;
  margin-right: auto;

  @media (max-width: 1440px) {
    margin-top: 20px;
    margin-bottom: 40px;
  }

  @media (max-width: 999px) {
    font-size: 16px;
    max-width: 320px;
    margin-top: 15px;
    margin-bottom: 30px;
  }

  @media (max-width: 576px) {
    margin-bottom: 20px;
  }
}

.start a,
.footer_flex_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.35vw;
  font-weight: 500;
  font-size: 1.39vw;
  line-height: 1.39vw;
  color: #ffffff;
  background: linear-gradient(180deg, #54febd 0%, #2eca8e 100%);
  box-shadow: 0px 5vw 4vw -2vw #00a7674d;
  border-radius: 100px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 0.83vw 1.39vw;
  transition: 0.3s;

  @media (max-width: 999px) {
    width: fit-content;
    padding: 0 15px;
    font-size: 14px;
    gap: 10px;
    height: 37px;
    border-radius: 100px;
  }
}

.reverse .start a {
  flex-direction: row-reverse;
}

.start a svg {
  width: 1.67vw;
  height: 1.67vw;

  @media (max-width: 1440px) {
    width: 24px;
    height: 24px;
  }

  @media (max-width: 576px) {
    width: 20px;
    height: 20px;
  }
}

.start a:hover,
.footer_flex_btn:hover {
  transform: translateY(-5px);
  opacity: 0.7;
}

.reverse a.footer_flex_btn {
  @media (max-width: 500px) {
    margin-left: auto;
    margin-right: 0;
  }
}

footer {
  margin-top: 8.33vw;

  @media (max-width: 999px) {
    margin-top: 90px;
  }

  @media (max-width: 576px) {
    margin-top: 60px;
  }
}

.footer_flex {
  display: flex;
  justify-content: space-between;
  padding-top: 3.13vw;
  border-top: 1px solid #acacac;
  padding-bottom: 2.08vw;
  border-bottom: 1px solid #acacac;

  @media (max-width: 1440px) {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  @media (max-width: 500px) {
    flex-direction: column;
    gap: 25px;
  }
}

.reverse .footer_flex {
  flex-direction: row-reverse;
  text-align: right;

  @media (max-width: 500px) {
    flex-direction: column;
    gap: 25px;
  }
}

.footer_flex_btn {
  @media (max-width: 500px) {
    margin-left: 0;
  }
}

.footer_flex p {
  font-size: 1.11vw;
  line-height: 130%;
  color: #525252;
  margin: 1.39vw 0;
  max-width: 21.81vw;
  width: 100%;

  @media (max-width: 1440px) {
    font-size: 16px;
  }

  @media (max-width: 999px) {
    margin: 20px 0;
    max-width: 300px;
  }

  @media (max-width: 576px) {
    width: 100%;
  }
}

.reverse .footer_flex p {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-left: auto;
}

.footer_flex-left__network {
  display: flex;
  gap: 1.39vw;

  @media (max-width: 1440px) {
    gap: 20px;
  }
}

.reverse .footer_flex-left__network {
  justify-content: flex-end;
}

.footer_flex-left__network a {
  transition: 0.3s;
  width: 2.43vw;
  height: 2.43vw;
  border-radius: 0.35vw;
  display: flex;
  align-items: center;
  justify-content: center;

  @media (max-width: 1440px) {
    width: 35px;
    height: 35px;
  }
}

.footer_flex-left__network a:hover {
  transform: translateY(-5px);
  background-color: #54febd;
}

.footer_bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 1.04vw;
  margin-bottom: 2.08vw;
  align-items: center;

  @media (max-width: 1440px) {
    margin-top: 25px;
    margin-bottom: 20px;
  }

  @media (max-width: 576px) {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 15px;
  }
}

.reverse .footer_bottom {
  flex-direction: row-reverse;

  @media (max-width: 576px) {
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 15px;
  }
}

.footer_bottom div {
  display: flex;
  align-items: center;
  gap: 2.08vw;

  @media (max-width: 1440px) {
    gap: 15px;
  }
}

.footer_bottom div a {
  font-size: 1.11vw;
  line-height: 1.39vw;
  color: #525252;
  transition: 0.3s;

  @media (max-width: 1440px) {
    font-size: 14px;
    line-height: 16px;
  }
}

.footer_bottom div a:hover {
  transform: translateY(-5px);
  color: #8dceff;
}

.footer_bottom p {
  font-size: 1.11vw;
  line-height: 1.39vw;
  color: #525252;

  @media (max-width: 1440px) {
    font-size: 14px;
    line-height: 16px;
  }
}

.cases h2 {
  text-align: center;
  margin-bottom: 0.69vw;

  @media (max-width: 1440px) {
    margin-bottom: 10px;
  }
}

.cases_subtitle {
  text-align: center;
  font-size: 1.39vw;

  @media (max-width: 999px) {
    font-size: 18px;
  }
}

.cases-card {
  display: flex;
  flex-wrap: wrap;
  gap: 1.39vw;
  margin-top: 2.78vw;

  @media (max-width: 1440px) {
    gap: 20px;
    margin-top: 40px;
  }

  @media (max-width: 999px) {
    margin-top: 30px;
  }

  @media (max-width: 576px) {
    gap: 10px;
  }
}

.cases-card-item {
  width: calc(25% - 1.045vw);
  background: #8dceff;
  border-radius: 1.39vw;
  border: 1px solid #0069a8;
  padding: 1.39vw;
  min-height: 20.83vw;

  @media (max-width: 1440px) {
    border-radius: 20px;
    padding: 20px;
    min-height: 300px;
    width: calc(25% - 15px);
  }

  @media (max-width: 999px) {
    width: calc(100% / 3 - 40px / 3);
  }

  @media (max-width: 670px) {
    width: calc(100% / 2 - 10px);
    min-height: 230px;
  }

  @media (max-width: 576px) {
    width: calc(100% / 2 - 5px);
    min-height: 230px;
  }

  @media (max-width: 460px) {
    width: 100%;
    min-height: 200px;
  }
}

.cases-card-item p {
  color: #000000;
  font-size: 1.11vw;
  line-height: 1.39vw;

  @media (max-width: 1440px) {
    font-size: 16px;
    line-height: 20px;
  }

  @media (max-width: 576px) {
    font-size: 14px;
    line-height: 17px;
  }
}

.reverse .cases-card-item p {
  text-align: right;
}

.cases-card-item svg {
  width: 4.17vw;
  height: 4.17vw;

  @media (max-width: 1440px) {
    width: 60px;
    height: 60px;
  }

  @media (max-width: 670px) {
    width: 40px;
    height: 40px;
  }
}

.reverse .cases-card-item svg {
  margin-left: auto;
  display: block;
}

.cases-flex {
  display: flex;
  justify-content: space-between;
  margin-top: 2.78vw;
  background: #0069a8;
  border-radius: 1.04vw;
  padding: 1.39vw 2.78vw;
  flex-wrap: wrap;

  @media (max-width: 1440px) {
    margin-top: 40px;
    border-radius: 15px;
    padding: 20px 40px;
  }

  @media (max-width: 999px) {
    margin-top: 30px;
    padding: 20px;
  }

  @media (max-width: 800px) {
    gap: 20px;
  }
}

.reverse .cases-flex {
  text-align: right;
}

.cases-flex .cases-flex__item:nth-child(1) {
  padding-left: 0;
}

.cases-flex .cases-flex__item:nth-child(3) {
  padding-right: 0;
  border-right: none;
}

.cases-flex__item {
  width: calc(100% / 3);
  display: flex;
  flex-direction: column;
  gap: 0.14vw;
  padding-left: 2.78vw;
  padding-right: 2.78vw;
  border-right: 1px solid #f5f5f5;

  @media (max-width: 1440px) {
    gap: 2px;
    padding-left: 40px;
    padding-right: 40px;
  }

  @media (max-width: 999px) {
    padding-left: 20px;
    padding-right: 20px;
  }

  @media (max-width: 800px) {
    width: 100%;
    border: none !important;
    padding: 0 !important;
  }
}

.cases-flex__item span {
  font-size: 0.97vw;
  line-height: 100%;
  color: #fff;
  opacity: 0.75;

  @media (max-width: 1440px) {
    font-size: 14px;
  }
}

.cases-flex__item p {
  font-weight: 500;
  font-size: 1.11vw;
  line-height: 100%;
  color: #fff;

  @media (max-width: 1440px) {
    font-size: 16px;
  }
}

.start_box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.39vw;

  @media (max-width: 1440px) {
    gap: 20px;
  }

  @media (max-width: 576px) {
    gap: 10px;
  }
}

.start .start_box a {
  margin-left: 0;
  margin-right: 0;
}

.reverse .start_box a {
  flex-direction: row-reverse;
}

.start .start_box a:nth-child(1) {
  background: linear-gradient(180deg, #8dceff 0%, #3995da 100%);
  box-shadow: 0px 5vw 4vw -2vw #0061a74d;
}

.documentation h2 {
  text-align: center;
  margin-bottom: 2.78vw;

  @media (max-width: 1440px) {
    margin-bottom: 40px;
  }

  @media (max-width: 650px) {
    margin-bottom: 20px;
  }
}

.documentation_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.78vw;
  flex-wrap: wrap;

  @media (max-width: 1440px) {
    gap: 40px;
  }

  @media (max-width: 999px) {
    gap: 30px;
  }

  @media (max-width: 650px) {
    gap: 20px;
  }
}

.reverse .documentation_flex {
  flex-direction: row-reverse;
  text-align: right;
}

.documentation_flex p {
  font-weight: 500;
  font-size: 1.67vw;
  line-height: 130%;
  color: #000000;
  max-width: 27.36vw;

  @media (max-width: 1440px) {
    max-width: 394px;
    font-size: 24px;
  }

  @media (max-width: 999px) {
    max-width: 314px;
    font-size: 20px;
  }

  @media (max-width: 650px) {
    max-width: 280px;
    width: 100%;
    font-size: 18px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  @media (max-width: 576px) {
    font-size: 16px;
  }
}

.documentation_flex-btn {
  display: flex;
  flex-direction: column;
  gap: 1.39vw;

  @media (max-width: 1440px) {
    gap: 20px;
  }

  @media (max-width: 999px) {
    gap: 10px;
  }

  @media (max-width: 650px) {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
  }
}

.documentation_flex-btn a svg {
  width: 1.67vw;
  height: 1.67vw;

  @media (max-width: 1440px) {
    width: 24px;
    height: 24px;
  }
  @media (max-width: 576px) {
    width: 20px;
    height: 20px;
  }
}

.faq h2 {
  text-align: center;
  margin-bottom: 2.78vw;

  @media (max-width: 1440px) {
    margin-bottom: 40px;
  }

  @media (max-width: 999px) {
    margin-bottom: 30px;
  }

  @media (max-width: 576px) {
    margin-bottom: 10px;
  }
}

.faq_accordion {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.faq_accordion-item {
  width: calc(50% - 2.08vw);
  border-bottom: 1px solid #d9d9d9;

  @media (max-width: 1440px) {
  }

  @media (max-width: 840px) {
    width: 100%;
  }
}

.reverse .faq_accordion-item {
  text-align: right;
}

.faq_accordion-item__head {
  padding-top: 2.08vw;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  padding-bottom: 1.04vw;

  @media (max-width: 1440px) {
    padding-top: 30px;
    padding-bottom: 15px;
  }

  @media (max-width: 576px) {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}

.reverse .faq_accordion-item__head {
  flex-direction: row-reverse;
}

.faq_accordion-item__head span {
  font-weight: 500;
  font-size: 1.39vw;
  line-height: 100%;
  color: #000000;

  @media (max-width: 1440px) {
    font-size: 20px;
  }

  @media (max-width: 576px) {
    font-size: 16px;
  }
}

.faq_accordion-item__head svg {
  flex-shrink: 0;
  transition: 0.6s;
}

.open .faq_accordion-item__head svg {
  transform: rotate(180deg);
}

.faq_accordion-item__body {
  color: #000000;
  font-size: 1.11vw;
  line-height: 161%;
  overflow: hidden;
  transition: max-height 1s ease;
  max-height: 0;

  @media (max-width: 1440px) {
    font-size: 16px;
  }

  @media (max-width: 576px) {
    font-size: 14px;
  }
}

.one {
  margin-top: 6.25vw;

  @media (max-width: 1440px) {
    margin-top: 90px;
  }

  @media (max-width: 999px) {
    margin-top: 60px;
  }

  @media (max-width: 576px) {
    margin-top: 45px;
  }
}

.one h1 {
  text-align: center;
  margin-bottom: 4.17vw;

  @media (max-width: 1440px) {
    margin-bottom: 60px;
  }

  @media (max-width: 999px) {
    margin-bottom: 40px;
  }

  @media (max-width: 576px) {
    margin-bottom: 30px;
  }
}

.one_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 80px;
  position: relative;

  @media (max-width: 1130px) {
    row-gap: 20px;
  }
}

.one_flex-box {
  width: 41%;

  @media (max-width: 1174px) {
    width: 43%;
  }

  @media (max-width: 1130px) {
    width: calc(50% - 10px);
  }

  @media (max-width: 820px) {
    width: calc(30% - 10px);
    flex-shrink: 0;
  }

  @media (max-width: 576px) {
    width: 100%;
    justify-content: center;
    display: flex;
  }
}

.one_flex-box.one_flex-box--card {
  @media (max-width: 820px) {
    width: calc(70% - 10px);
  }

  @media (max-width: 576px) {
    width: 100%;
    display: block;
  }
}

.one_flex-box.trigger--right {
  display: flex;
  justify-content: flex-end;

  @media (max-width: 576px) {
    justify-content: center;
  }
}

.one_flex-box-card {
  border-radius: 14px;
  border: 2px solid #525252;
  position: relative;

  @media (max-width: 1440px) {
    border-radius: 14px;
  }
}

.one_flex-box-card::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 28px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
}

.card--left::after {
  right: -20px;
  background-image: url(../img/icon/Polygon_left.svg);

  @media (max-width: 576px) {
    transform: rotate(-90deg);
    top: -17px;
    left: calc(50% - 14px);
    right: initial;
  }
}

.card--right::after {
  left: -20px;
  background-image: url(../img/icon/Polygon_right.svg);

  @media (max-width: 576px) {
    transform: rotate(90deg);
    top: -17px;
    left: calc(50% - 14px);
  }
}

.one_flex-box-card-head {
  display: flex;
  align-items: center;
  background: #8dceff;
  border-bottom: 1px solid #525252;
  height: 60px;
  padding: 0 30px;
  gap: 0.69vw;
  overflow: hidden;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;

  @media (max-width: 1440px) {
    height: 60px;
    padding: 0 30px;
    gap: 10px;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
  }

  @media (max-width: 820px) {
    height: 50px;
    padding: 0 20px;
  }
}

.reverse .one_flex-box-card-head {
  flex-direction: row-reverse;
}

.one_flex-box-card-head span {
  font-weight: 500;
  font-size: 24px;
  line-height: 105%;
  color: #000000;

  @media (max-width: 1440px) {
    font-size: 24px;
  }

  @media (max-width: 820px) {
    font-size: 18px;
  }
}

.one_flex-box-card-body {
  padding: 20px 30px;

  @media (max-width: 1440px) {
    padding: 20px 30px;
  }

  @media (max-width: 820px) {
    padding: 10px 20px;
  }
}

.one_flex-box-card-body p {
  font-weight: 500;
  font-size: 20px;
  line-height: 170%;
  color: #000000;
  position: relative;
  padding-left: 1.67vw;

  @media (max-width: 1440px) {
    font-size: 20px;
    padding-left: 25px;
  }

  @media (max-width: 820px) {
    font-size: 14px;
  }
}

.reverse .one_flex-box-card-body p {
  text-align: right;
  padding-right: 1.67vw;
  padding-left: 0;

  @media (max-width: 1440px) {
    padding-right: 25px;
  }
}

.one_flex-box-card-body p::after {
  border-radius: 50%;
  width: 5px;
  height: 5px;
  background-color: #000000;
  content: '';
  position: absolute;
  left: 5px;
  top: 15px;
}

.reverse .one_flex-box-card-body p::after {
  left: initial;
  right: 5px;
}

.dark .one_flex-box-card-body p::after {
  background-color: #f5f5f5;
}

.one_flex-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 103px;
  display: flex;
  flex-direction: column;
  align-items: center;

  @media (max-width: 1130px) {
    display: none;
  }
}

.one_flex-line__round {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 6px solid #000000;
}

.dark .one_flex-line__round {
  border-color: #f5f5f5;
}

.one_flex-box-trigger {
  background: #d9d9d940;
  border-radius: 1.11vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 1.67vw;
  color: #525252;
  padding: 1.39vw 2.43vw;
  width: fit-content;

  @media (max-width: 1440px) {
    font-size: 24px;
    padding: 20px 35px;
    border-radius: 16px;
  }

  @media (max-width: 820px) {
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 12px;
  }
}

.one_flex-line__line-gray {
  width: 5px;
  height: 90px;
  background: #d9d9d959;
}

.one_flex-line__line-black {
  width: 5px;
  height: 90px;
  background: #000000;
}

.dark .one_flex-line__line-black {
  background-color: #f5f5f5;
}

.line--big {
  height: 210px;

  @media (max-width: 1280px) {
    height: 230px;
  }
}

.line--small {
  height: 60px;

  @media (max-width: 1653px) {
    height: 75px;
  }
}

.line--middle {
  height: 85px;

  @media (max-width: 1619px) {
    height: 105px;
  }

  @media (max-width: 1248px) {
    height: 120px;
  }
}

.line--small-very {
  height: 55px;

  @media (max-width: 1653px) {
    height: 65px;
  }

  @media (max-width: 1619px) {
    height: 70px;
  }

  @media (max-width: 1248px) {
    height: 80px;
  }
}

.line--small-big {
  height: 105px;

  @media (max-width: 1653px) {
    height: 95px;
  }

  @media (max-width: 1619px) {
    height: 75px;
  }

  @media (max-width: 1248px) {
    height: 60px;
  }

  @media (max-width: 1234px) {
    height: 75px;
  }
}

.line--1280 {
  @media (max-width: 1280px) {
    height: 105px;
  }
}

.one_flex .one_flex-box:nth-child(2) {
  @media (max-width: 576px) {
    order: 2;
  }
}

.one_flex .one_flex-box:nth-child(3) {
  @media (max-width: 576px) {
    order: 1;
  }
}

.one_flex .one_flex-box:nth-child(4) {
  @media (max-width: 576px) {
    order: 3;
  }
}

.one_flex .one_flex-box:nth-child(5) {
  @media (max-width: 576px) {
    order: 4;
  }
}

.one_flex .one_flex-box:nth-child(6) {
  @media (max-width: 576px) {
    order: 6;
  }
}

.one_flex .one_flex-box:nth-child(7) {
  @media (max-width: 576px) {
    order: 5;
  }
}

.one_flex .one_flex-box:nth-child(8) {
  @media (max-width: 576px) {
    order: 7;
  }
}

.one_flex .one_flex-box:nth-child(9) {
  @media (max-width: 576px) {
    order: 8;
  }
}

.one_flex .one_flex-box:nth-child(10) {
  @media (max-width: 576px) {
    order: 10;
  }
}

.one_flex .one_flex-box:nth-child(11) {
  @media (max-width: 576px) {
    order: 9;
  }
}

.one_flex .one_flex-box:nth-child(12) {
  @media (max-width: 576px) {
    order: 11;
  }
}

.one_flex .one_flex-box:nth-child(13) {
  @media (max-width: 576px) {
    order: 12;
  }
}

.one_flex .one_flex-box:nth-child(14) {
  @media (max-width: 576px) {
    order: 13;
  }
}

.menu {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #f5f5f5;
  z-index: 10;
  padding-bottom: 40px;
}

.dark .menu {
  background: #000000;
}

.menu.active {
  display: block;
}

.menu_flex {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.reverse .menu_flex {
  align-items: flex-end;
  text-align: right;
}

.menu_flex a {
  color: #000000;
}

.menu_flex a {
  font-weight: 500;
  font-size: 18px;
}

.menu_btn {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.reverse .menu_btn {
  flex-direction: row-reverse;
}

.menu_btn .header_right__color,
.menu_btn .header_right__translate {
  display: flex !important;
}

.menu .header_right__btn {
  display: flex !important;
  margin-top: 25px;
}

.reverse .menu .header_right__btn {
  margin-left: auto;
}

.menu_close {
  position: absolute;
  top: 35px;
  right: 24px;

  @media (max-width: 360px) {
    right: 10px;
  }
}

.reverse .menu_close {
  right: initial;
  left: 35px;

  @media (max-width: 360px) {
    left: 10px;
  }
}
.js_logo img {
  @media (max-width: 999px) {
    width: 37px;
    height: 37px;
  }
}

.dark .one_flex-box-trigger {
  background: #f7f7f7c5;
}
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  z-index: 9999;
}

.cookie-banner p {
  margin: 0;
  color: #333;
}

.cookie-banner button {
  background: #2edd90;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-banner button:hover {
  background: #25b97a;
}
.footer__logo img,
.footer-logo-img {
  height: 58px;
  width: auto;
  display: block;
}

@media (max-width: 1024px) {
  .footer__logo img,
  .footer-logo-img {
    height: 40px;
  }
}

@media (max-width: 640px) {
  .footer__logo img,
  .footer-logo-img {
    height: 32px;
  }
}
/* фон карточки */
.vision_flex-card {
  background: #54febd;
}

.vision_flex-card__tag,
.vision_flex-card__tittle,
.vision_flex-card p {
  color: #0f172a !important;
}

.vision_flex-card svg path {
  fill: #0f172a !important;
  stroke: #0f172a !important;
}
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border: 1px solid #e5e9f0;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  padding: 12px 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  z-index: 9999;
}
.cookie-banner p {
  margin: 0;
  color: #1a2430;
  font-size: 14px;
  line-height: 1.45;
}
.cookie-banner a {
  color: #5a3bfd;
  font-weight: 600;
  text-decoration: none;
}
.cookie-actions {
  margin-left: auto;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-actions button {
  border: 0;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
}
.btn-accept {
  background: #2edd90;
  color: #fff;
}
.btn-accept:active {
  transform: translateY(1px);
}
.btn-reject {
  background: #eef2f6;
  color: #0a0f1a;
}

@media (max-width: 480px) {
  .cookie-banner {
    flex-direction: column;
    padding: 12px;
  }
  .cookie-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .cookie-actions button {
    width: 100%;
    padding: 12px 10px;
  }
}
