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

/* Мини-корзина (30% экрана) */
.mini-cart {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 30%;
  min-width: 350px;
  background: white;
  -webkit-box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.mini-cart.active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.mini-cart__header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  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;
}

.mini-cart__header h3 {
  font-size: 22px;
  color: #333;
}

.close-cart {
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.close-cart:hover {
  color: #333;
}

.mini-cart__items {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.empty-cart {
  text-align: center;
  padding: 40px 20px;
  color: #999;
}

.empty-cart i {
  font-size: 50px;
  margin-bottom: 15px;
  color: #ddd;
}

/* Элемент корзины */
.cart-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

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

.cart-item__image {
  width: 70px;
  height: 70px;
  border-radius: 6px;
  -o-object-fit: cover;
  object-fit: cover;
}

.cart-item__details {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.cart-item__name {
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.cart-item__price {
  color: #4f46e5;
  font-weight: bold;
}

.cart-item__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.quantity-btn {
  background: #f3f4f6;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 18px;
}

.quantity-btn:hover {
  background: #e5e7eb;
}

.cart-item__quantity {
  font-weight: bold;
  min-width: 25px;
  text-align: center;
}

.remove-item {
  background: #fee2e2;
  color: #dc2626;
  border: none;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 13px;
  cursor: pointer;
  margin-left: auto;
}

.remove-item:hover {
  background: #fecaca;
}

.mini-cart__footer {
  padding: 20px;
  border-top: 1px solid #eee;
  background: #f9fafb;
}

.cart-total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 20px;
  margin-bottom: 20px;
  color: #333;
}

.checkout-btn {
  width: 100%;
  background: #4f46e5;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 16px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.checkout-btn:hover {
  background: #4338ca;
}

/* Стили для модального окна */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  background: #020617;
  margin: 10% auto;
  padding: 30px 20px;
  width: 100%;
  max-width: 645px;
  position: relative;
}
.modal-content h2 {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 32px;
  line-height: 125%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin: 0;
  margin-bottom: 60px;
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
}

.close-modal:hover {
  color: red;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #fff;
  background: none;
  border-radius: 8px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 137%;
  color: #fff;
}
.form-group input::-webkit-input-placeholder, .form-group textarea::-webkit-input-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 137%;
  color: #fff;
}
.form-group input::-moz-placeholder, .form-group textarea::-moz-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 137%;
  color: #fff;
}
.form-group input:-ms-input-placeholder, .form-group textarea:-ms-input-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 137%;
  color: #fff;
}
.form-group input::-ms-input-placeholder, .form-group textarea::-ms-input-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 137%;
  color: #fff;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 137%;
  color: #fff;
}

.submit-btn {
  width: 100%;
  background: #fff;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 100px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  text-align: center;
  color: #000;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px 0px;
  margin-top: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header {
  background: #020617;
  border-bottom: 1px solid #1e293b;
}
.header__logo {
  max-width: 237px;
  width: 100%;
}
.header__block {
  max-width: 150px;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
.header__cart {
  max-width: 20px;
  width: 100%;
  cursor: pointer;
}
.header__btn {
  max-width: 78px;
  width: 100%;
  background: var(--color-white-solid);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 13px;
  line-height: 147%;
  text-align: center;
  color: #020617;
  -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;
  border-radius: 6px;
}

.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: 18px 90px;
}
@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: 25px;
  -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: 16px;
  line-height: 146%;
  color: #cbd5e1;
}

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

.hero {
  background-color: rgba(2, 6, 23, 0.4);
  background-image: url(".././img/hero.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 128px 0px;
}
.hero__text {
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 9999px;
  padding: 5px 13px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 12px;
  line-height: 133%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  color: #06b6d4;
  margin: 0;
}
.hero__title {
  font-family: var(--second-family);
  font-weight: 900;
  font-size: 75px;
  line-height: 120%;
  text-align: center;
  color: #f8fafc;
  margin: 0;
}
@media (max-width: 600px) {
  .hero__title {
    font-size: 40px;
  }
}
.hero__title1 {
  font-family: var(--second-family);
  font-weight: 900;
  font-size: 75px;
  line-height: 120%;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#8b5cf6), color-stop(50%, #06b6d4), to(#8b5cf6));
  background: linear-gradient(90deg, #8b5cf6 0%, #06b6d4 50%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin: 0;
}
@media (max-width: 600px) {
  .hero__title1 {
    font-size: 40px;
  }
}
.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: #cbd5e1;
  margin: 0;
  margin-top: 9px;
}
.hero__block {
  max-width: 360px;
  width: 100%;
  gap: 17px;
  margin-top: 25px;
}
.hero__btn1 {
  max-width: 176px;
  width: 100%;
  -webkit-box-shadow: 0 0 20px 0 rgba(139, 92, 246, 0.3), 0 0 10px 0 rgba(139, 92, 246, 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 0 rgba(139, 92, 246, 0.3), 0 0 10px 0 rgba(139, 92, 246, 0.5), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0);
  background: #8b5cf6;
  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: 16px 0px;
}
.hero__btn2 {
  max-width: 160px;
  width: 100%;
  border-radius: 6px;
  border: 1px solid #475569;
  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: 16px 0px;
}

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

.first {
  padding: 100px 0px;
  gap: 15px;
}
.first__title {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 29px;
  line-height: 121%;
  text-align: center;
  color: #f8fafc;
  margin: 0;
}
.first__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 149%;
  text-align: center;
  color: #94a3b8;
  margin: 0;
}
.first__block {
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 950px) {
  .first__block {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.first__block1 {
  max-width: 300px;
  width: 100%;
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  padding: 25px 0px;
}
@media (max-width: 660px) {
  .first__block1 {
    max-width: 160px;
  }
}
.first__image {
  max-width: 48px;
  width: 100%;
}
.first__name {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 15px;
  line-height: 155%;
  color: #e2e8f0;
  margin: 0;
}

.container-first {
  max-width: 1288px;
  width: 100%;
  margin: 0 auto;
  margin-top: 48px;
  padding: 0px 20px;
  gap: 16px;
}

.second {
  background: rgba(15, 23, 42, 0.5);
  padding: 100px 0px;
  margin: 0px 20px;
}
.second__block-text {
  max-width: 1288px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
}
.second__title {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 29px;
  line-height: 121%;
  color: #f8fafc;
  margin: 0;
}
.second__text {
  max-width: 576px;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 151%;
  color: #94a3b8;
  margin: 0;
  margin-top: 8px;
}
.second__block {
  width: 100%;
  gap: 24px;
}
@media (max-width: 950px) {
  .second__block {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.second__block1 {
  max-width: 294px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid #1e293b;
}
.second__image {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.second__block2 {
  width: 100%;
  background: #0f172a;
  padding: 20px;
  gap: 8px;
  margin-top: auto;
  height: 100%;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.second__name {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 17px;
  line-height: 159%;
  color: var(--color-white-solid);
  margin: 0;
}
.second__descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  line-height: 145%;
  color: #94a3b8;
  margin: 0;
}
.second__block3 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  margin-top: 12px;
}
.second__price {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 19px;
  line-height: 144%;
  color: #06b6d4;
  margin: 0;
}
.second__btn {
  max-width: 90px;
  width: 100%;
  border-radius: 6px;
  background: #1e293b;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 13px;
  line-height: 146%;
  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-second {
  max-width: 1288px;
  width: 100%;
  margin: 0 auto;
  margin-top: 48px;
  padding: 0px 20px;
  gap: 24px;
}

.about {
  padding: 70px 0px;
}
.about__block-text {
  max-width: 1288px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  gap: 16px;
}
.about__block-text1 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.about__title {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 29px;
  line-height: 127%;
  color: #f8fafc;
  margin: 0;
}
.about__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #94a3b8;
  margin: 0;
}
.about__block {
  max-width: 395px;
  width: 100%;
  border-radius: 12px;
  min-height: 400px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  padding: 24px;
  gap: 4px;
}
.about__descr {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 11px;
  line-height: 134%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-black-solid);
  margin: 0;
  padding: 4px 12px;
  background: #eab308;
  border-radius: 9999px;
  margin-bottom: auto;
}
.about__name {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 23px;
  line-height: 136%;
  color: var(--color-white-solid);
  margin: 0;
}
.about__block1 {
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.about__star {
  max-width: 70px;
  width: 100%;
}
.about__rev {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  line-height: 144%;
  color: #94a3b8;
  margin: 0;
}
.about__btn {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 149%;
  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;
  margin-top: 12px;
}

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

.ofer {
  padding: 100px 0px;
  background: rgba(15, 23, 42, 0.5);
  margin: 0px 20px;
}
.ofer__block-text {
  max-width: 1288px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 25px;
}
@media (max-width: 650px) {
  .ofer__block-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}
.ofer__block-text1 {
  gap: 2px;
}
.ofer__title {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 29px;
  line-height: 121%;
  color: #ec4899;
  margin: 0;
}
.ofer__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 149%;
  color: #94a3b8;
  margin: 0;
}
.ofer__text1 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  line-height: 144%;
  text-align: right;
  color: #94a3b8;
  margin: 0;
}
.ofer__text2 {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 25px;
  line-height: 109%;
  text-align: right;
  color: var(--color-white-solid);
  margin: 0;
}
.ofer__block {
  max-width: 608px;
  width: 100%;
  border: 1px solid rgba(236, 72, 153, 0.3);
  border-radius: 12px;
  background: #0f172a;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}
@media (max-width: 650px) {
  .ofer__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 30px;
  }
}
.ofer__image {
  max-width: 242px;
  width: 100%;
}
.ofer__block1 {
  max-width: 316px;
  width: 100%;
  gap: 8px;
}
.ofer__name {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 19px;
  line-height: 142%;
  color: var(--color-white-solid);
  margin: 0;
}
.ofer__descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  line-height: 144%;
  color: #94a3b8;
  margin: 0;
}
.ofer__price {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 45px;
  line-height: 79%;
  color: #ec4899;
  margin: 0;
}
.ofer__price1 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 21px;
  line-height: 94%;
  text-decoration: line-through;
  color: #64748b;
  margin: 0;
  margin-top: 16px;
}
.ofer__btn {
  width: 100%;
  -webkit-box-shadow: 0 4px 6px -4px rgba(236, 72, 153, 0.2), 0 10px 15px -3px rgba(236, 72, 153, 0.2), 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(236, 72, 153, 0.2), 0 10px 15px -3px rgba(236, 72, 153, 0.2), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0);
  background: #ec4899;
  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: 12px 0px;
  margin-top: 16px;
}

.container-ofer {
  max-width: 1288px;
  width: 100%;
  margin: 0 auto;
  margin-top: 48px;
  padding: 0px 20px;
  gap: 32px;
}
@media (max-width: 1100px) {
  .container-ofer {
    -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;
  }
}

.nov {
  padding: 70px 0px;
}
.nov__title {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 29px;
  line-height: 121%;
  text-align: center;
  color: #f8fafc;
  margin: 0;
}
.nov__descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #94a3b8;
  margin: 0;
  margin-top: 16px;
}
.nov__image {
  max-width: 608px;
  width: 100%;
}

.container-nov {
  max-width: 1288px;
  width: 100%;
  margin: 0 auto;
  margin-top: 48px;
  padding: 0px 20px;
  gap: 32px;
}
@media (max-width: 1280px) {
  .container-nov {
    -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 {
  border-bottom: 1px solid #1e293b;
  border-top: 1px solid #1e293b;
  background: rgba(15, 23, 42, 0.3);
  padding: 60px 0px;
  margin: 0px 20px;
}
.text__image {
  max-width: 448px;
  width: 100%;
}
.text__block {
  max-width: 600px;
  width: 100%;
  gap: 24px;
}
.text__title {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 29px;
  line-height: 120%;
  color: #8b5cf6;
  margin: 0;
}
.text__descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 151%;
  color: #cbd5e1;
  margin: 0;
}
.text__block1 {
  width: 100%;
  gap: 24px;
  margin-top: 10px;
}
.text__block2 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3px;
}
.text__name {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 27px;
  line-height: 130%;
  text-align: center;
  color: var(--color-white-solid);
  margin: 0;
}
.text__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  line-height: 122%;
  text-align: center;
  color: #64748b;
  margin: 0;
}

.container-text {
  max-width: 1212px;
  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: 30px;
}
@media (max-width: 900px) {
  .container-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.rev {
  padding: 80px 0px;
}
.rev__title {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 29px;
  line-height: 121%;
  text-align: center;
  color: #f8fafc;
  margin: 0;
}
.rev__block {
  max-width: 395px;
  width: 100%;
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 12px;
  padding: 33px;
  gap: 16px;
}
.rev__block1 {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}
.rev__block2 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.rev__image {
  max-width: 48px;
  width: 100%;
}
.rev__name {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 16px;
  line-height: 150%;
  color: var(--color-white-solid);
  margin: 0;
}
.rev__block3 {
  gap: 4px;
}
.rev__descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 151%;
  color: #cbd5e1;
  margin: 0;
}

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

.acc {
  background: rgba(15, 23, 42, 0.3);
  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: #64748b;
  -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;
}

.thank {
  padding: 200px 0px;
}
.thank__image {
  max-width: 120px;
  width: 100%;
}
.thank__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 50px;
  text-align: center;
  letter-spacing: 0.03em;
  color: #fff;
}

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

.footer {
  padding: 50px 0px;
  background: #020617;
}
.footer__block {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 25px;
}
@media (max-width: 700px) {
  .footer__block {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.footer__block1 {
  max-width: 276px;
  width: 100%;
  gap: 24px;
}
.footer__descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  line-height: 144%;
  color: #94a3b8;
  margin: 0;
}
.footer__block-logo {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}
.footer__logo {
  max-width: 32px;
  width: 100%;
}
.footer__title {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 19px;
  line-height: 140%;
  color: var(--color-white-solid);
  margin: 0;
}
.footer__block2 {
  max-width: 276px;
  width: 100%;
  gap: 12px;
}
.footer__name {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 15px;
  line-height: 154%;
  color: var(--color-white-solid);
  margin: 0;
  margin-bottom: 12px;
}
.footer__nav {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  line-height: 146%;
  color: #94a3b8;
  margin: 0;
}
.footer__line {
  width: 100%;
  height: 1px;
  background: #1e293b;
  margin-top: 11px;
}
.footer__copy {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  line-height: 143%;
  text-align: center;
  color: #64748b;
  margin: 0;
}

.container-footer {
  max-width: 1288px;
  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: #fff;
}
.privacy h4 {
  font-family: var(--font-family);
  font-weight: 700;
  text-align: center;
  font-size: 24px;
  color: #fff;
}
.privacy p {
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 150%;
  text-align: center;
  font-size: 20px;
  color: #fff;
}/*# sourceMappingURL=main.css.map */
