@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Orbitron:wght@400..900&display=swap");
:root {
  --font-family: "Inter", sans-serif;
  --second-family: "Orbitron", sans-serif;
  --content-width: 1170px;
  --container-offset: 0px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --color-black-solid: #000;
  --color-grey-62: #9e9e9e;
  --color-grey-4: #090909;
  --color-orange-86: #f2ddc4;
  --color-azure-5: #050f17;
  --color-black--49-80: rgba(0, 0, 0, 0.5);
  --color-white-solid: #fff;
  --color-grey-93: #eee;
  --color-white--800: rgba(255, 255, 255, 0.8);
  --color-grey-84: #d5d5d5;
  --color-orange-48: #a8894d;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body.no-scroll {
  overflow: hidden;
  height: 100%; /* Это гарантирует, что высота будет фиксированной */
}

main {
  background: #09090b;
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.page__body {
  margin: 0;
  min-width: 360px;
  min-height: 100%;
  font-size: 16px;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

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

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

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

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

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

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.centered {
  text-align: center;
}

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

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

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

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

.burger {
  --burger-width: 30px;
  --burger-height: 30px;
  --burger-line-height: 2px;
  position: relative;
  border: none;
  padding: 0;
  width: var(--burger-width);
  height: var(--burger-height);
  color: #000;
  background-color: transparent;
  cursor: pointer;
}
.burger::before, .burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger::before {
  top: 0;
}
.burger::after {
  top: calc(100% - var(--burger-line-height));
}
.burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active::after {
  top: 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active .burger__line {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger {
  display: none;
  color: white;
  --burger-height: 20px;
}
@media (max-width: 998px) {
  .burger {
    display: block;
    z-index: 101;
  }
}

.burger--active {
  color: white;
}

.header {
  background: #09090b;
}
.header__logo {
  max-width: 273px;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.header__title {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 16px;
  line-height: 165%;
  letter-spacing: 0.06em;
  color: var(--color-white-solid);
  margin: 0;
}
.header__title b {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 16px;
  line-height: 165%;
  letter-spacing: 0.06em;
  color: #d946ef;
  margin: 0;
}
.header__btn {
  max-width: 82px;
  width: 100%;
  -webkit-box-shadow: 0 1px 2px -1px rgba(0, 0, 0, 0.1), 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 1px 2px -1px rgba(0, 0, 0, 0.1), 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0);
  background: #d946ef;
  border-radius: 6px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 13px;
  line-height: 144%;
  text-align: center;
  color: var(--color-white-solid);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 8px 0px;
}

.container-header {
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 16px 100px;
}
@media (max-width: 998px) {
  .container-header {
    padding: 20px;
  }
}

@media (max-width: 998px) {
  .nav {
    position: fixed;
    left: 0;
    top: 0;
    max-width: 100%;
    width: 100%;
    background: #FFEA61;
    height: 130vh;
    z-index: 100;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow-y: auto;
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
}
.nav__list {
  gap: 32px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 998px) {
  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 50px;
    gap: 31px;
  }
}
.nav__link {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  line-height: 158%;
  color: #a1a1aa;
}

.nav.menu--active {
  visibility: visible;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.hero {
  background-image: url(".././img/hero.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 127px 0px;
}
.hero__text {
  border: 1px solid rgba(217, 70, 239, 0.3);
  border-radius: 9999px;
  background: rgba(217, 70, 239, 0.1);
  padding: 5px 13px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #d946ef;
}
.hero__title {
  font-family: var(--second-family);
  font-weight: 900;
  font-size: 71px;
  line-height: 127%;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--color-white-solid);
  margin: 0;
}
@media (max-width: 600px) {
  .hero__title {
    font-size: 48px;
  }
}
.hero__title b {
  font-family: var(--second-family);
  font-weight: 900;
  font-size: 71px;
  line-height: 127%;
  letter-spacing: -0.03em;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#d946ef), to(#9333ea));
  background: linear-gradient(90deg, #d946ef 0%, #9333ea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin: 0;
}
@media (max-width: 600px) {
  .hero__title b {
    font-size: 48px;
  }
}
.hero__descr {
  max-width: 672px;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 19px;
  line-height: 141%;
  text-align: center;
  color: #a1a1aa;
  margin: 0;
}
.hero__block {
  max-width: 340px;
  width: 100%;
  gap: 16px;
  margin-top: 16px;
}
.hero__btn {
  max-width: 159px;
  width: 100%;
  -webkit-box-shadow: 0 4px 6px -4px rgba(217, 70, 239, 0.25), 0 10px 15px -3px rgba(217, 70, 239, 0.25), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 4px 6px -4px rgba(217, 70, 239, 0.25), 0 10px 15px -3px rgba(217, 70, 239, 0.25), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0);
  background: #d946ef;
  border-radius: 6px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 13px;
  line-height: 143%;
  text-align: center;
  color: var(--color-white-solid);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 12px 0px;
}
.hero__btn2 {
  max-width: 154px;
  width: 100%;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0);
  background: rgba(9, 9, 11, 0.5);
  border: 1px solid #27272a;
  border-radius: 6px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 13px;
  line-height: 143%;
  text-align: center;
  color: var(--color-white-solid);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 12px 0px;
}

.container-hero {
  max-width: 1288px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}

.first {
  background: rgba(39, 39, 42, 0.2);
  border-bottom: 1px solid #27272a;
  border-top: 1px solid #27272a;
  margin: 0px 20px;
  padding: 81px 0px;
}
.first__image {
  max-width: 600px;
  width: 100%;
}
.first__block {
  max-width: 600px;
  width: 100%;
  gap: 16px;
}
.first__title {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 29px;
  line-height: 121%;
  color: var(--color-white-solid);
  margin: 0;
}
.first__text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 19px;
  line-height: 140%;
  color: #d946ef;
  margin: 0;
}
.first__descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 163%;
  color: #a1a1aa;
  margin: 0;
}

.container-first {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 930px) {
  .container-first {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.second {
  padding: 80px 0px;
}
.second__title {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 29px;
  line-height: 121%;
  color: var(--color-white-solid);
  margin: 0;
}
.second__descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #a1a1aa;
  margin: 0;
}
.second__block {
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 1270px) {
  .second__block {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.second__image {
  max-width: 294px;
  width: 100%;
}

.container-second {
  max-width: 1288px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  gap: 8px;
}

.about {
  background: rgba(39, 39, 42, 0.3);
  border-bottom: 1px solid #27272a;
  border-top: 1px solid #27272a;
  margin: 0px 20px;
  padding: 97px 0px;
}
.about__block {
  max-width: 592px;
  width: 100%;
  gap: 16px;
}
.about__text {
  max-width: 160px;
  width: 100%;
  background: rgba(217, 70, 239, 0.1);
  border-radius: 9999px;
  padding: 4px 12px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 13px;
  line-height: 143%;
  color: #d946ef;
}
.about__title {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 35px;
  line-height: 127%;
  color: var(--color-white-solid);
  margin: 0;
}
.about__descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 17px;
  line-height: 162%;
  color: #a1a1aa;
  margin: 0;
  margin-top: 8px;
  margin-bottom: 16px;
}
.about__block1 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
.about__image2 {
  max-width: 40px;
  width: 100%;
}
.about__block2 {
  gap: 3px;
}
.about__name {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 15px;
  line-height: 153%;
  color: var(--color-white-solid);
  margin: 0;
}
.about__text2 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #a1a1aa;
  margin: 0;
}
.about__block3 {
  max-width: 592px;
  width: 100%;
  -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0);
  background: #18181b;
  border: 1px solid #27272a;
  border-radius: 12px;
}
.about__image {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.about__block4 {
  padding: 24px;
  gap: 8px;
}
.about__name2 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  color: #d946ef;
  margin: 0;
}
.about__title2 {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 19px;
  line-height: 141%;
  color: var(--color-white-solid);
  margin: 0;
}
.about__descr2 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  line-height: 143%;
  color: #a1a1aa;
  margin: 0;
}
.about__text3 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  line-height: 160%;
  color: #d946ef;
  margin: 0;
  margin-top: 8px;
}

.container-about {
  max-width: 1288px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 940px) {
  .container-about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.text {
  padding: 80px 0px;
}
.text__block {
  max-width: 600px;
  width: 100%;
  gap: 16px;
}
.text__title {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 23px;
  line-height: 134%;
  color: var(--color-white-solid);
  margin: 0;
}
.text__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #a1a1aa;
  margin: 0;
  margin-top: 8px;
}
.text__block1 {
  width: 100%;
  background: #18181b;
  border: 1px solid #27272a;
  border-radius: 8px;
  padding: 17px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
.text__image {
  max-width: 96px;
  width: 100%;
}
.text__block2 {
  gap: 4px;
}
.text__text2 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 11px;
  line-height: 137%;
  color: #d946ef;
  margin: 0;
}
.text__name {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 15px;
  line-height: 152%;
  color: var(--color-white-solid);
  margin: 0;
}
.text__descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  color: #a1a1aa;
  margin: 0;
}
.text__block3 {
  gap: 16px;
}
@media (max-width: 600px) {
  .text__block3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.text__block4 {
  max-width: 292px;
  width: 100%;
  background: rgba(24, 24, 27, 0.5);
  border: 1px solid #27272a;
  border-radius: 8px;
  padding: 25px;
  gap: 8px;
}
.text__image2 {
  max-width: 40px;
  width: 100%;
}
.text__name2 {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 15px;
  line-height: 154%;
  color: var(--color-white-solid);
  margin: 0;
  margin-top: 8px;
}
.text__descr2 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 11px;
  line-height: 135%;
  color: #a1a1aa;
  margin: 0;
}

.container-text {
  max-width: 1288px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 900px) {
  .container-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.last {
  background: #d946ef;
  margin: 0px 20px;
  padding: 80px 0px;
}
.last__title {
  font-family: var(--second-family);
  font-weight: 900;
  font-size: 47px;
  line-height: 100%;
  text-align: center;
  color: var(--color-white-solid);
  margin: 0;
}
.last__descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 17px;
  line-height: 156%;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}
.last__block {
  max-width: 420px;
  width: 100%;
  gap: 16px;
  margin-top: 24px;
}
@media (max-width: 600px) {
  .last__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.last__btn {
  max-width: 225px;
  width: 100%;
  -webkit-box-shadow: 0 1px 2px -1px rgba(0, 0, 0, 0.1), 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 1px 2px -1px rgba(0, 0, 0, 0.1), 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0);
  background: var(--color-white-solid);
  border-radius: 6px;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 15px;
  line-height: 152%;
  text-align: center;
  color: #d946ef;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 12px 0px;
  gap: 5px;
}
.last__btn2 {
  max-width: 179px;
  width: 100%;
  background: rgba(0, 0, 0, 0);
  border: 2px solid var(--color-white-solid);
  border-radius: 6px;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 15px;
  line-height: 153%;
  text-align: center;
  color: var(--color-white-solid);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 12px 0px;
}

.container-last {
  max-width: 712px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}

.acc {
  background: rgba(24, 24, 27, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0px;
  margin: 0px 20px;
}
.acc__title {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 29px;
  line-height: 121%;
  text-align: center;
  color: #f8fafc;
  margin: 0;
}

.accordion {
  width: 100%;
  overflow: hidden;
  gap: 16px;
}

.accordion-item {
  border: 1px solid #27272a;
  border-radius: 8px;
  background: #18181b;
}

.accordion-item:last-child {
  border-bottom: none;
}

/* Заголовок */
.accordion-header {
  width: 100%;
  padding: 16px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #18181b;
  border: none;
  cursor: pointer;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  text-align: left;
}

.accordion-title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 15px;
  line-height: 153%;
  color: var(--color-white-solid);
}

/* Стрелка - начальное положение ВВЕРХ */
.accordion-icon {
  display: inline-block;
  margin-left: 12px;
  font-size: 18px;
  font-weight: bold;
  color: #D946EF;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg); /* Стрелка вверх */
}

/* При открытии поворачиваем на 180° (вниз) */
.accordion-item.active .accordion-icon {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg); /* Стрелка вниз */
}

/* Контент */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
  background: #18181b;
}

.accordion-content p {
  padding: 20px;
  margin: 0;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 15px;
  line-height: 153%;
  color: var(--color-white-solid);
}

.container-acc {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  margin-top: 50px;
  padding: 0px 20px;
}

.footer {
  padding: 40px 0px;
  background: #09090b;
}
.footer__copy {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #94a3b8;
  margin: 0;
}
.footer__block {
  gap: 24px;
}
.footer__link {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 142%;
  color: #94a3b8;
  margin: 0;
}

.container-footer {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 700px) {
  .container-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.privacy {
  max-width: 1163px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 20px;
}
.privacy h2 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 36px;
  color: #D946EF;
}
.privacy h4 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  color: #D946EF;
}
.privacy p {
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 165%;
  font-size: 20px;
  color: #A1A1AA;
}/*# sourceMappingURL=main.css.map */
