@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: #020617;
}

.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: #020617;
}
.header__logo {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 23px;
  line-height: 138%;
  letter-spacing: 0.05em;
  color: var(--color-white-solid);
}
.header__logo b {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 23px;
  line-height: 138%;
  letter-spacing: 0.05em;
  color: #dc2626;
}
.header__btn {
  max-width: 69px;
  width: 100%;
  -webkit-box-shadow: 0 0 20px -5px rgba(220, 38, 38, 0.5), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 20px -5px rgba(220, 38, 38, 0.5), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0);
  background: #dc2626;
  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: 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: 17px 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: 13px;
  line-height: 144%;
  color: #e2e8f0;
}

.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: 162px 0px;
}
.hero__title {
  font-family: var(--second-family);
  font-weight: 900;
  font-size: 71px;
  line-height: 126%;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--color-white-solid);
  margin: 0;
}
@media (max-width: 700px) {
  .hero__title {
    font-size: 50px;
  }
}
.hero__title b {
  font-family: var(--second-family);
  font-weight: 900;
  font-size: 71px;
  line-height: 126%;
  letter-spacing: -0.03em;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#ef4444), to(#991b1b));
  background: linear-gradient(90deg, #ef4444 0%, #991b1b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin: 0;
}
@media (max-width: 700px) {
  .hero__title b {
    font-size: 50px;
  }
}
.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: #94a3b8;
  margin: 0;
}
.hero__btn {
  max-width: 255px;
  width: 100%;
  background: #dc2626;
  border-radius: 8px;
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 16px;
  line-height: 174%;
  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: 16px 0px;
  gap: 8px;
}

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

.first {
  padding: 70px 0px;
}
.first__title {
  max-width: 1232px;
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 29px;
  line-height: 127%;
  color: #e2e8f0;
  border-left: 4px solid #dc2626;
}
.first__block {
  max-width: 290px;
  width: 100%;
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 12px;
}
.first__image {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.first__block1 {
  padding: 20px;
  gap: 4px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
.first__name {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 19px;
  line-height: 143%;
  color: var(--color-white-solid);
  margin: 0;
}
.first__descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 142%;
  color: #94a3b8;
  margin: 0;
  margin-bottom: 8px;
}

.container-first {
  max-width: 1272px;
  width: 100%;
  margin: 0 auto;
  margin-top: 48px;
  padding: 0px 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 900px) {
  .container-first {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.about {
  background: rgba(15, 23, 42, 0.5);
  padding: 80px 0px;
  margin: 0px 20px;
}
.about__block {
  max-width: 592px;
  width: 100%;
  gap: 16px;
}
.about__title {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 29px;
  line-height: 121%;
  color: #e2e8f0;
  margin: 0;
}
.about__descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 151%;
  color: #94a3b8;
  margin: 0;
  margin-bottom: 8px;
}
.about__block1 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.about__image2 {
  max-width: 42px;
  width: 100%;
}
.about__block2 {
  gap: 4px;
}
.about__name {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 15px;
  line-height: 153%;
  color: var(--color-white-solid);
  margin: 0;
}
.about__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  line-height: 143%;
  color: #94a3b8;
  margin: 0;
}
.about__image {
  max-width: 592px;
  width: 100%;
}

.container-about {
  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: 24px;
}
@media (max-width: 930px) {
  .container-about {
    -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: 120%;
  color: #e2e8f0;
  margin: 0;
}
.second__descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #94a3b8;
  margin: 0;
}
.second__block {
  gap: 25px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 24px;
}
@media (max-width: 1260px) {
  .second__block {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.second__image {
  max-width: 398px;
  width: 100%;
}

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

.tip {
  padding: 80px 0px;
  margin: 0p 20px;
  background: rgba(15, 23, 42, 0.3);
}
.tip__first {
  max-width: 712px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
.tip__title {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 29px;
  line-height: 121%;
  text-align: center;
  color: #e2e8f0;
  margin: 0;
}
.tip__descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 151%;
  text-align: center;
  color: #94a3b8;
  margin: 0;
}
.tip__block {
  max-width: 389px;
  width: 100%;
  background: #020617;
  border: 1px solid #1e293b;
  border-radius: 12px;
  padding: 25px;
  gap: 8px;
}
.tip__block1 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.tip__image {
  max-width: 32px;
  width: 100%;
}
.tip__descr2 {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 11px;
  line-height: 134%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ef4444;
  margin: 0;
}
.tip__name {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 19px;
  line-height: 144%;
  color: #f1f5f9;
  margin: 0;
  margin-top: 8px;
}
.tip__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  line-height: 144%;
  color: #94a3b8;
  margin: 0;
  margin-bottom: 8px;
}
.tip__btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 13px;
  line-height: 144%;
  color: #ef4444;
}

.container-tip {
  max-width: 1272px;
  width: 100%;
  margin: 0 auto;
  margin-top: 48px;
  padding: 0px 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 26px;
}
@media (max-width: 920px) {
  .container-tip {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.video {
  padding: 80px 0px;
}
.video__title {
  border-left: 4px solid #dc2626;
  padding-left: 20px;
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 29px;
  line-height: 127%;
  color: #e2e8f0;
}
.video__descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #94a3b8;
  margin: 0;
}
.video__block {
  margin-top: 24px;
  gap: 23px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1260px) {
  .video__block {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.video__image {
  max-width: 395px;
  width: 100%;
}

.container-video {
  max-width: 1272px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  gap: 16px;
}

.text {
  padding: 80px 0px;
  margin: 0px 20px;
  background: -webkit-gradient(linear, left top, left bottom, from(#020617), to(#0f172a));
  background: linear-gradient(180deg, #020617 0%, #0f172a 100%);
}
.text__title {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 35px;
  line-height: 112%;
  text-align: center;
  color: var(--color-white-solid);
  margin: 0;
}
.text__descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 151%;
  text-align: center;
  color: #94a3b8;
  margin: 0;
}
.text__block {
  max-width: 380px;
  width: 100%;
  gap: 23px;
  margin-top: 15px;
}
.text__btn {
  max-width: 152px;
  width: 100%;
  -webkit-box-shadow: 0 0 20px -5px rgba(220, 38, 38, 0.5), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 20px -5px rgba(220, 38, 38, 0.5), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0);
  background: #dc2626;
  border-radius: 6px;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 15px;
  line-height: 154%;
  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: 13px 0px;
}
.text__btn2 {
  max-width: 188px;
  width: 100%;
  background: rgba(0, 0, 0, 0);
  border: 2px solid #dc2626;
  border-radius: 6px;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 15px;
  line-height: 153%;
  text-align: center;
  color: #ef4444;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 13px 0px;
}
.text__block1 {
  gap: 31px;
  margin-top: 30px;
}
.text__block2 {
  gap: 4x;
}
.text__name {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 23px;
  line-height: 134%;
  text-align: center;
  color: #e2e8f0;
  margin: 0;
}
.text__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 10px;
  line-height: 148%;
  text-transform: uppercase;
  text-align: center;
  color: #e2e8f0;
  margin: 0;
}

.container-text {
  max-width: 712px;
  width: 100%;
  margin: 0 auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0px 20px;
  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 #1e293b;
  border-radius: 8px;
  background: #0f172a;
}

.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: #0f172a;
  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: #DC2626;
  -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: #0f172a;
}

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

.last {
  background: #0f172a;
  border-bottom: 1px solid #1e293b;
  border-top: 1px solid #1e293b;
  padding: 81px 0px;
  margin: 0px 20px;
}
.last__block {
  max-width: 712px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
.last__title {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 29px;
  line-height: 120%;
  text-align: center;
  color: #e2e8f0;
  margin: 0;
}
.last__descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 151%;
  text-align: center;
  color: #94a3b8;
  margin: 0;
}
.last__form {
  width: 100%;
  gap: 16px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 16px;
}
@media (max-width: 550px) {
  .last__form {
    -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__input {
  max-width: 242px;
  width: 100%;
  background: #020617;
  border: 1px solid #334155;
  border-radius: 6px;
  padding: 12px 21px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 164%;
  color: #a9a9a9;
}
.last__input::-webkit-input-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 164%;
  color: #a9a9a9;
}
.last__input::-moz-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 164%;
  color: #a9a9a9;
}
.last__input:-ms-input-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 164%;
  color: #a9a9a9;
}
.last__input::-ms-input-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 164%;
  color: #a9a9a9;
}
.last__input::placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 164%;
  color: #a9a9a9;
}
.last__btn {
  max-width: 155px;
  width: 100%;
  -webkit-box-shadow: 0 0 20px -5px rgba(220, 38, 38, 0.5), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 20px -5px rgba(220, 38, 38, 0.5), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0);
  background: #dc2626;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 15px;
  line-height: 155%;
  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: 1232px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  -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: rgba(0, 0, 0, 0), -webkit-gradient(linear, left top, right top, from(#1e293b), to(#0f172a));
  background: rgba(0, 0, 0, 0), linear-gradient(90deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid #334155;
  border-radius: 16px;
  padding: 40px 10px;
}

.footer {
  padding: 40px 0px;
  background: #020617;
}
.footer__title {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 23px;
  line-height: 138%;
  letter-spacing: 0.05em;
  color: var(--color-white-solid);
  margin: 0;
}
.footer__title b {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 23px;
  line-height: 138%;
  letter-spacing: 0.05em;
  color: #dc2626;
  margin: 0;
}
.footer__line {
  width: 100%;
  height: 1px;
  background: #0f172a;
}
.footer__block {
  -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: 750px) {
  .footer__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.footer__block1 {
  gap: 51px;
}
.footer__link {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 161%;
  color: #64748b;
}
.footer__copy {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  line-height: 143%;
  color: #64748b;
  margin: 0;
}

.container-footer {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  gap: 33px;
}

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