@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Onest:wght@100..900&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  height: 100%;
}

body {
  height: 100%;
}

* {
  padding: 0;
  margin: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a:focus,
a:active {
  outline: none;
}

a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
  margin: 0;
}

address {
  font-style: normal;
}

input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

button {
  background-color: transparent;
  padding: 0;
  border: none;
  cursor: pointer;
}

a {
  display: block;
}

html {
  scrollbar-gutter: stable;
  font-size: 10px;
}
@media (max-width: 1728px) {
  html {
    font-size: 0.5787037037vw;
  }
}
@media (max-width: 1050px) {
  html {
    font-size: 1.9230769231vw;
  }
}
@media (max-width: 600px) {
  html {
    font-size: 2.5641025641vw;
  }
}

body {
  scroll-behavior: smooth;
  font-family: "Onest", sans-serif;
  font-size: 1.6rem;
  background: #010D16;
}

.container {
  max-width: 164.8rem;
  margin: 0 auto;
}
@media (max-width: 1050px) {
  .container {
    padding: 0 1.2rem;
    max-width: 100%;
  }
}

.hamburger {
  position: relative;
  width: 4rem;
  height: 4rem;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  transition: all 0.3s ease;
  margin-left: 2rem;
}

.hamburger {
  display: none;
}

@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }
}
.hamburger__line {
  position: absolute;
  width: 3rem;
  display: block;
  height: 0.3rem;
  background: #fff;
  border-radius: 0.3rem;
  transition: all 0.3s ease;
}

.hamburger__line:nth-child(1) {
  transform: translateY(-1rem);
}

.hamburger__line:nth-child(2) {
  /* Центральная линия */
}

.hamburger__line:nth-child(3) {
  transform: translateY(1rem);
}

/* Анимация при добавлении класса active */
.hamburger.active .hamburger__line:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

.hamburger.active .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active .hamburger__line:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

.wrapper {
  overflow: hidden;
}

.header {
  padding-top: 1.3rem;
  position: relative;
  z-index: 777;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.header .logo {
  width: 21.1rem;
  height: 11rem;
}
.header .logo img {
  width: 100%;
  height: 100%;
}
.header .nav {
  display: flex;
  align-items: center;
  gap: 6.8rem;
  padding-bottom: 1.9rem;
}
.header .nav a {
  font: 300 2.4rem "Onest", sans-serif;
  text-transform: uppercase;
  color: #fff;
  transition: all 0.3s;
}
.header .nav a:hover {
  color: #a5f112;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 2.3rem;
}

.lang-swither {
  display: flex;
  gap: 2rem;
}
.lang-swither button {
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1rem;
  padding: 0rem 1.3rem;
  width: 9.4rem;
  height: 6.9rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font: 300 2.4rem "Onest", sans-serif;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s;
}
.lang-swither button:hover {
  color: #a5f112;
  border-color: #a5f112;
}
.lang-swither button.active {
  color: #fff;
  border-color: #fff;
}

.btn {
  border-radius: 0.4rem;
  background: #a5f112;
  padding: 1.35rem 5rem;
  font: 700 1.8rem "Onest", sans-serif;
  text-transform: uppercase;
  color: #434343;
  display: inline-block;
  transition: all 0.3s;
}
.btn:hover {
  background: #88c50e;
}

.section__title {
  font: 700 6.4rem/100% "PT Root UI", sans-serif;
  color: #fff;
  margin-bottom: 8.1rem;
}
.section__descr {
  font: 400 2.4rem "Onest", sans-serif;
  color: #fff;
}

.footer {
  padding-bottom: 7.4rem;
  position: relative;
}
.footer__wrapper {
  display: flex;
  gap: 7.8rem 20.7rem;
  flex-wrap: wrap;
  position: relative;
}
.footer__wrapper .logo {
  width: 21.1rem;
  height: 11rem;
}
.footer__wrapper .logo img {
  width: 100%;
  height: 100%;
}
.footer__nav {
  display: flex;
  gap: 15.7rem;
}
.footer__nav-block a {
  font: 300 2.4rem "Onest", sans-serif;
  text-transform: uppercase;
  color: #fff;
  transition: all 0.3s;
}
.footer__nav-block a:hover {
  color: #a5f112;
}
.footer__nav-block-title {
  font: 700 2.4rem "Onest", sans-serif !important;
  text-transform: uppercase;
  color: #fff;
}
.footer .lang-swither {
  margin-left: auto;
}
.footer__bottom {
  display: flex;
  justify-content: flex-end;
  gap: 7.7rem;
  width: 100%;
}
.footer__bottom a, .footer__bottom p {
  font: 300 1.8rem "Onest", sans-serif;
  color: #fff;
}
.footer__bottom a {
  transition: all 0.3s;
}
.footer__bottom a:hover {
  color: #a5f112;
}
.footer .dec {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 89.4rem;
  height: 101.4rem;
}
.footer .dec img {
  width: 100%;
  height: 100%;
}

.breadcrumbs {
  margin-bottom: 4.5rem;
}
.breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.breadcrumbs a {
  font: 300 1.8rem "Onest", sans-serif;
  color: #fff;
  position: relative;
}
.breadcrumbs a:last-child::after {
  display: none;
}
.breadcrumbs a::after {
  content: "/";
  font: 300 1.8rem "Onest", sans-serif;
  color: #fff;
  margin-left: 1rem;
}

@media (max-width: 1024px) {
  .header .nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    background: #010D16;
    z-index: 776;
    padding: 12rem 2.4rem 4rem;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }
  .header .nav a {
    font-size: 3.2rem;
    padding: 1.6rem;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transform: translateX(-2rem);
    transition: opacity 0.25s ease, transform 0.25s ease, color 0.3s;
  }
  .header .nav a:nth-child(1) {
    transition-delay: 0.05s;
  }
  .header .nav a:nth-child(2) {
    transition-delay: 0.1s;
  }
  .header .nav a:nth-child(3) {
    transition-delay: 0.15s;
  }
  .header .nav a:nth-child(4) {
    transition-delay: 0.2s;
  }
  .header .nav a:nth-child(5) {
    transition-delay: 0.25s;
  }
  .header .nav a:nth-child(6) {
    transition-delay: 0.3s;
  }
  .header .nav a:nth-child(7) {
    transition-delay: 0.35s;
  }
  .header .nav a:nth-child(8) {
    transition-delay: 0.4s;
  }
  .header .nav.active {
    transform: translateX(0);
    pointer-events: auto;
  }
  .header .nav.active a {
    opacity: 1;
    transform: translateX(0);
  }
  .header {
    z-index: 777;
  }
  .header .container {
    position: relative;
    z-index: 778;
  }
}
@font-face {
  font-family: "PT Root UI";
  src: url("../fonts/PT-Root-UI_Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PT Root UI";
  src: url("../fonts/PT-Root-UI_Bold.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.hero {
  background: url("../images/hero.png");
  background-size: cover;
  height: 110vh;
  margin-top: -12rem;
  padding-top: 23.6rem;
}
.hero__title {
  font: 700 9.6rem/100% "PT Root UI", sans-serif;
  color: #fff;
  margin-bottom: 5.5rem;
}
.hero__descr {
  font: 300 2.4rem "Onest", sans-serif;
  color: #fff;
  max-width: 64.5rem;
  margin-bottom: 7rem;
}

.types {
  margin-bottom: 14rem;
  position: relative;
  margin-top: -3rem;
}
.types .blur {
  width: 100%;
  position: absolute;
  left: 0;
  top: -10rem;
  height: 32.4rem;
  filter: blur(57.699997px);
  background: #001621;
  border-radius: 7.3rem;
}
.types__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.types__item-info {
  display: flex;
  flex-direction: column;
}
.types__item {
  position: relative;
  padding: 2rem;
  background: url("../images/type.svg");
  background-size: cover !important;
  display: flex;
  height: 47.1rem;
  gap: 1rem;
}
.types__item:hover .link {
  background: #a5f112;
}
.types__item .link {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: all 0.3s;
}
.types__item .link svg {
  width: 2.1rem;
  height: 2rem;
}
.types__img {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42.8rem;
  height: 63.2rem;
  position: absolute;
}
.types__img img {
  width: 100%;
  height: 100%;
}
.types__item-name-img {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  height: 40rem;
  width: auto;
}
.types__item-name-img img {
  width: 100%;
  height: 100%;
}
.types__item-img {
  min-width: 31.6rem;
}
.types__item-img img {
  width: 100%;
  height: 100%;
}
.types__item-row-name {
  font: 300 2.4rem "Onest", sans-serif;
  color: #fff;
  margin-bottom: 0.7rem;
}
.types__item-row {
  margin-bottom: 2rem;
}
.types__item-row .rate svg {
  width: 16.4rem;
}
.types__item-descr {
  font: 300 1.6rem "Onest", sans-serif;
  color: #fff;
  margin-top: 10rem;
}

.media {
  margin-bottom: 30rem;
  position: relative;
  z-index: 3;
}
.media__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  margin-bottom: 8.3rem;
}
.media__flex {
  display: flex;
}
.media__item {
  height: 35.8rem;
}
.media__item img, .media__item video {
  width: 100%;
  height: 100%;
}
.media__flex {
  display: flex;
  justify-content: space-between;
}
.media__flex p {
  font: 300 1.8rem "Onest", sans-serif;
  color: #fff;
}

.about {
  margin-bottom: 25rem;
  position: relative;
}
.about .dec1 {
  position: absolute;
  left: 0;
  width: 87.7rem;
  height: auto;
  top: -50rem;
}
.about .dec1 img {
  width: 100%;
  height: 100%;
}
.about .dec2 {
  position: absolute;
  right: 0;
  top: -25rem;
  width: 73.3rem;
  height: 103.6rem;
}
.about .dec2 img {
  width: 100%;
  height: 100%;
}
.about .container {
  position: relative;
}
.about__title {
  margin-bottom: 3.9rem;
}
.about .section__descr {
  margin-bottom: 8.1rem;
}
.about .text {
  max-width: 106.6rem;
  margin-bottom: 7rem;
}
.about .text p {
  font: 300 1.8rem "Onest", sans-serif;
  color: #fff;
}
.about .text p b {
  font-weight: 700;
}

.club {
  position: relative;
  margin-bottom: 19rem;
}
.club .dec1 {
  position: absolute;
  top: -23rem;
  width: 78.2rem;
  height: 53.3rem;
  mix-blend-mode: color-dodge;
}
.club .dec1 img {
  width: 100%;
  height: 100%;
}
.club__title {
  font: 700 6.4rem/100% "PT Root UI", sans-serif;
  background: linear-gradient(90deg, #fff 0%, #d6ec99 21.15%, #b9ff5b 32.21%, #d6ec99 64.86%, #fff 90.87%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 11rem;
}
.club__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9.9rem;
}
.club__item-num {
  font: italic 400 6.4rem/100% "PT Sans", sans-serif;
  background: linear-gradient(90deg, #fff 0%, #d6ec99 21.15%, #b9ff5b 32.21%, #d6ec99 64.86%, #fff 90.87%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 3rem;
}
.club__item-name {
  font: 700 2.4rem "Onest", sans-serif;
  color: #fff;
  margin-bottom: 1.6rem;
}
.club__item {
  position: relative;
}
.club__item p {
  font: 300 1.8rem "Onest", sans-serif;
  color: #fff;
}
.club__item:last-child::before {
  display: none;
}
.club__item::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -5.2rem;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,<svg width='18' height='49' viewBox='0 0 18 49' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M-2.0955e-06 1.0606L2.1913 -9.57849e-08L18 24.5L2.1913 49L-4.63606e-08 47.9394L15.1304 24.5L-2.0955e-06 1.0606Z' fill='%23B9FF5B'/></svg>");
  width: 1.8rem;
  height: 4.9rem;
}

.catalog {
  padding-top: 5rem;
  margin-bottom: 17rem;
  position: relative;
}
.catalog .container {
  position: relative;
}
.catalog__title {
  font: 700 9.6rem/100% "PT Root UI", sans-serif;
  color: #fff;
  margin-bottom: 9rem;
}
.catalog__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.catalog__dec {
  height: 102.7rem;
  width: 100%;
  position: absolute;
  top: -12rem;
  right: 0;
}
.catalog__dec img {
  width: 100%;
  height: 100%;
}
.catalog__dec1 {
  width: 60.3rem;
  height: 67rem;
  position: absolute;
  bottom: -34.9rem;
  right: 0;
}
.catalog__dec1 img {
  width: 100%;
  height: 100%;
}

.catalog-section__title {
  background: linear-gradient(90deg, #fff 0%, #d6ec99 21.15%, #b9ff5b 32.21%, #d6ec99 64.86%, #fff 90.87%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-card {
  height: 46.8rem;
  display: flex;
  gap: 1.6rem;
}
.product-card.bord {
  background: url("../images/type-bord.svg");
}
.product-card.green {
  background: url("../images/type-green.svg");
}
.product-card.orange {
  background: url("../images/type-orange.svg");
}
.product-card.gray {
  background: url("../images/type-gray.svg");
}
.product-card.blue {
  background: url("../images/type-blue.svg");
}
.product-card.purple {
  background: url("../images/type-purple.svg");
}
.product-card.green-blue {
  background: url("../images/type-green-blue.svg");
}
.product-card.purple-orange {
  background: url("../images/purple-orange.svg");
}
.product-card.blue-dark {
  background: url("../images/blue-dark.svg");
}
.product-card .types__item-img {
  min-width: 24.7rem;
  margin-left: -1rem;
}
.product-card .types__item-name {
  font: 400 2.4rem/100% "PT Root UI", sans-serif;
  color: #fff;
  margin-bottom: 1.9rem;
}
.product-card .product-card-name {
  font: 700 3.2rem/100% "PT Root UI", sans-serif;
  color: #fff;
}
.product-card .types__item-row {
  margin-left: auto;
}
.product-card .types__item-row:nth-child(2) {
  margin-bottom: 0;
}
.product-card .types__item-descr {
  margin-top: 4.8rem;
}
.product-card .product__img {
  display: block !important;
  width: unset;
}
.product-card .product__img img {
  width: 100% !important;
  height: auto !important;
}

.product {
  padding-top: 5rem;
  margin-bottom: 10rem;
}
.product__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-area: 3rem;
  gap: 5rem;
}
.product__img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product__img img {
  width: auto;
  height: 100%;
}
.product__type {
  font: 400 3.6rem/100% "PT Root UI", sans-serif;
  color: #fff;
  margin-bottom: 1.8rem;
}
.product__name {
  font: 700 9.6rem/100% "PT Root UI", sans-serif;
  color: #fff;
  margin-bottom: 5.7rem;
}
.product__tns {
  font: 400 3.6rem/100% "PT Root UI", sans-serif;
  color: #a5f112;
  margin-bottom: 5rem;
}
.product__effects-title {
  font: 400 3.6rem/100% "PT Root UI", sans-serif;
  color: #fff;
  margin-bottom: 5rem;
}
.product__effects-wrapper {
  display: flex;
  gap: 4.3rem;
  margin-bottom: 5.5rem;
}
.product__effect {
  display: flex;
  align-items: center;
  gap: 2.3rem;
  font: 400 3.6rem/100% "PT Root UI", sans-serif;
  color: #fff;
}
.product__descr {
  font: 300 2rem "Onest", sans-serif;
  color: #fff;
  margin-bottom: 5rem;
}
.product__form {
  display: flex;
  flex-wrap: wrap;
  gap: 2.9rem 1.9rem;
  padding-top: 10rem;
}
.product__form-input.quantity {
  width: 40%;
}
.product__form-input.date {
  width: calc(30% - 1.9rem);
}
.product__form-input.time {
  width: calc(30% - 1.9rem);
}
.product__form-input .wrap {
  border: 1px solid #a5f112;
  border-radius: 0.4rem;
  padding: 1rem 4.8rem;
  color: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2.7rem;
  height: 5rem;
}
.product__form-input .wrap input, .product__form-input .wrap select {
  border: none;
  outline: none;
  appearance: none;
  width: 100%;
  position: relative;
}
.product__form-input .wrap option {
  color: #001621;
}
.product__form-input .wrap svg {
  width: 3.2rem;
  height: 3.2rem;
}
.product__form-input .wrap select {
  background-image: url("data:image/svg+xml,%3Csvg width='23' height='9' viewBox='0 0 23 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.696 0L22.176 1.008L11.088 8.28L0 1.008L0.48 0L11.088 6.96L21.696 0Z' fill='white'/%3E%3C/svg%3E");
  background-position: right;
  background-size: 22px;
  background-repeat: no-repeat;
}
.product__form-input-title {
  font: 400 2.4rem/100% "PT Root UI", sans-serif;
  color: #fff;
  margin-bottom: 1.5rem;
}
.product textarea {
  border: 1px solid #a5f112;
  border-radius: 0.4rem;
  padding: 2.4rem 4.8rem;
  color: #fff;
  width: 100%;
  height: 24.4rem;
}

.faq {
  padding-top: 5rem;
  margin-bottom: 14rem;
  position: relative;
}
.faq .container {
  position: relative;
  z-index: 777;
}
.faq__title {
  font: 700 9.6rem/100% "PT Root UI", sans-serif;
  color: #fff;
  margin-bottom: 7.5rem;
}
.faq__wrapper {
  width: 123.1rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.faq__item {
  width: 100%;
}
.faq__top {
  font: 700 3.2rem/100% "PT Root UI", sans-serif;
  background: linear-gradient(90deg, #fff 0%, #d6ec99 21.15%, #b9ff5b 32.21%, #d6ec99 64.86%, #fff 90.87%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
}
.faq__top span {
  transition: all 0.3s;
  background: linear-gradient(90deg, #fff 0%, #d6ec99 21.15%, #b9ff5b 32.21%, #d6ec99 64.86%, #fff 90.87%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.faq__top .minus {
  opacity: 0;
  position: absolute;
  right: 0;
}
.faq__top.active .plus {
  opacity: 0;
  position: absolute;
  right: 0;
}
.faq__top.active .minus {
  opacity: 1;
  position: relative;
}
.faq__content {
  max-height: 0;
  transition: all 0.3s;
  overflow: hidden;
}
.faq__content p {
  padding-top: 3.9rem;
  font: 300 1.8rem "Onest", sans-serif;
  color: #fff;
}
.faq .dec {
  position: absolute;
  top: -12rem;
  right: 0;
  width: 100%;
  height: auto;
}
.faq .dec img {
  width: 100%;
  height: 100%;
}

.about-hero {
  padding-top: 5rem;
  position: relative;
  margin-bottom: 14rem;
}
.about-hero__title {
  font: 700 9.6rem/100% "PT Root UI", sans-serif;
  color: #fff;
  margin-bottom: 5rem;
}
.about-hero__descr {
  font: 400 2.4rem "Onest", sans-serif;
  color: #fff;
  margin-bottom: 8rem;
}
.about-hero .text {
  font: 300 1.8rem "Onest", sans-serif;
  color: #fff;
  margin-bottom: 7.7rem;
  max-width: 106.6rem;
}
.about-hero .text b {
  font-weight: 700;
}
.about-hero__stats {
  display: flex;
  gap: 15rem;
}
.about-hero__stats p {
  font: 400 2.4rem "Onest", sans-serif;
  color: #fff;
}
.about-hero__digit {
  font: 700 9.6rem/100% "PT Root UI", sans-serif;
  background: linear-gradient(90deg, #fff 0%, #d6ec99 21.15%, #b9ff5b 32.21%, #d6ec99 64.86%, #fff 90.87%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 3rem;
}
.about-hero__img {
  width: 72rem;
  height: auto;
  position: absolute;
  top: -10rem;
  right: 0;
}
.about-hero__img img {
  width: 100%;
  height: 100%;
}

.about-info {
  margin-bottom: 16rem;
}
.about-info .container {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.about-info__text-title {
  font: 700 6.4rem/100% "PT Root UI", sans-serif;
  color: #fff;
  margin-bottom: 3.2rem;
}
.about-info .block {
  margin-bottom: 13rem;
}
.about-info .text {
  font: 300 1.8rem "Onest", sans-serif;
  color: #fff;
  margin-bottom: 7.7rem;
  max-width: 106.6rem;
}
.about-info .text b {
  font-weight: 700;
}
.about-info__img {
  width: 59.6rem;
  height: auto;
}
.about-info__img img {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .header {
    padding-top: 1.6rem;
  }
  .header .container {
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
  }
  .header .logo {
    width: 12rem;
    height: 6.2rem;
  }
  .header .nav {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.4rem;
    padding: 2.4rem 0 1.6rem;
  }
  .header .nav a {
    font-size: 2rem;
  }
  .header .nav.active {
    display: flex;
  }
  .header__actions {
    gap: 1.2rem;
    margin-left: auto;
  }
  .header__actions .lang-swither {
    display: none;
  }
  .header__actions .btn {
    padding: 1rem 2rem;
    font-size: 1.4rem;
  }
  .hamburger {
    display: flex;
    margin-left: 1.2rem;
  }
  .lang-swither {
    gap: 1rem;
  }
  .lang-swither button {
    width: 6.4rem;
    height: 4.8rem;
    font-size: 1.6rem;
    padding: 0 0.8rem;
    gap: 0.6rem;
  }
  .hero {
    height: auto;
    min-height: 100svh;
    padding-top: 25rem;
    padding-bottom: 6rem;
    background-position: center top;
  }
  .hero__title {
    font-size: 4.8rem;
    margin-bottom: 3rem;
  }
  .hero__descr {
    font-size: 1.6rem;
    max-width: 100%;
    margin-bottom: 4rem;
  }
  .hero .btn {
    width: 100%;
    text-align: center;
  }
  .section__title {
    font-size: 3.6rem;
    margin-bottom: 4rem;
  }
  .section__descr {
    font-size: 1.6rem;
  }
  .types {
    margin-bottom: 6rem;
    margin-top: 0;
  }
  .types .blur {
    height: 16rem;
    top: -4rem;
    border-radius: 3rem;
  }
  .types__wrapper {
    display: flex;
    flex-direction: column;
  }
  .types__item {
    width: 100%;
    height: 32rem;
    padding: 1.6rem;
  }
  .types__img {
    width: 31rem;
    height: auto;
  }
  .types__item-name-img {
    height: 28rem;
    left: 1.6rem;
  }
  .types__item-img {
    min-width: 21rem;
    width: 21rem;
  }
  .types__item-row-name {
    font-size: 1.6rem;
  }
  .types__item-row {
    margin-bottom: 1.2rem;
  }
  .types__item-row .rate svg {
    width: 10rem;
  }
  .types__item-descr {
    font-size: 1.4rem;
    margin-top: 0rem;
  }
  .types__item-descr br {
    display: none;
  }
  .types .link {
    width: 3.8rem;
    height: 3.8rem;
  }
  .types .link svg {
    width: 1.6rem;
    height: 1.6rem;
  }
  .media {
    margin-bottom: 8rem;
  }
  .media__wrapper {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-bottom: 3rem;
  }
  .media__item {
    height: 24rem;
  }
  .media__flex {
    flex-direction: column;
    gap: 1rem;
  }
  .media__flex p {
    font-size: 1.4rem;
    margin-bottom: 1.6rem;
  }
  .about {
    margin-bottom: 8rem;
  }
  .about .dec1,
  .about .dec2 {
    display: none;
  }
  .about__title {
    margin-bottom: 2.4rem;
  }
  .about .section__descr {
    margin-bottom: 3.2rem;
  }
  .about .text {
    margin-bottom: 4rem;
  }
  .about .text p {
    font-size: 1.6rem;
  }
  .club {
    margin-bottom: 8rem;
  }
  .club .dec1 {
    display: none;
  }
  .club__title {
    font-size: 3.6rem;
    margin-bottom: 5rem;
  }
  .club__wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .club__item::before {
    display: none;
  }
  .club__item-num {
    font-size: 4.8rem;
    margin-bottom: 1.6rem;
  }
  .club__item-name {
    font-size: 2rem;
    margin-bottom: 1.2rem;
  }
  .club__item p {
    font-size: 1.6rem;
  }
  .catalog {
    padding-top: 3rem;
    margin-bottom: 6rem;
  }
  .catalog__title {
    font-size: 4.8rem;
    margin-bottom: 4rem;
  }
  .catalog__wrapper {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .catalog__dec, .catalog__dec1 {
    display: none;
  }
  .product-card {
    height: auto;
    min-height: 28rem;
    flex-direction: column;
    padding: 1.6rem;
    background-size: cover !important;
    border-radius: 1.6rem;
  }
  .product-card.bord {
    background: linear-gradient(139deg, #e72388 0%, #811415 100%);
  }
  .product-card.green {
    background: linear-gradient(139deg, #76b325 0%, #2d8114 100%);
  }
  .product-card.orange {
    background: linear-gradient(139deg, #e7cd23 0%, #811415 100%);
  }
  .product-card.gray {
    background: linear-gradient(139deg, #8d8d8d 0%, #4f4f4f 100%);
  }
  .product-card.blue {
    background: linear-gradient(139deg, #239fe7 0%, #144181 100%);
  }
  .product-card.purple {
    background: linear-gradient(139deg, #8823e7 0%, #171481 100%);
  }
  .product-card.green-blue {
    background: linear-gradient(139deg, #0e6a94 0%, #23e7b9 100%);
  }
  .product-card.purple-orange {
    background: linear-gradient(139deg, #9a109a 0%, #f40 100%);
  }
  .product-card.blue-dark {
    background: linear-gradient(139deg, #04227c 0%, #0e0d2e 100%);
  }
  .product-card .types__item-img {
    min-width: unset;
    width: 60%;
    margin: 0 auto;
  }
  .product-card .types__item-img img {
    object-fit: contain;
  }
  .product-card .link {
    top: 1.6rem;
    right: 1.6rem;
    bottom: auto;
  }
  .product-card .types__item-name {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
  }
  .product-card .product-card-name {
    font-size: 2.4rem;
  }
  .product-card .types__item-row {
    margin-left: 0;
  }
  .product-card .types__item-descr {
    margin-top: 2rem;
    font-size: 1.4rem;
  }
  .product {
    padding-top: 3rem;
    margin-bottom: 6rem;
  }
  .product__wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .product__img {
    height: 32rem;
  }
  .product__img img {
    height: 100%;
    width: auto;
  }
  .product__type {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
  }
  .product__name {
    font-size: 5.6rem;
    margin-bottom: 3rem;
  }
  .product__tns {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
  .product__effects-title {
    font-size: 2.4rem;
    margin-bottom: 2.4rem;
  }
  .product__effects-wrapper {
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }
  .product__effect {
    font-size: 2rem;
    gap: 1.2rem;
  }
  .product__descr {
    font-size: 1.6rem;
    margin-bottom: 3rem;
  }
  .product__form {
    padding-top: 4rem;
    gap: 2rem 1.2rem;
  }
  .product__form-input.quantity, .product__form-input.date, .product__form-input.time {
    width: 100%;
  }
  .product__form-input .wrap {
    padding: 1rem 2rem;
    height: 5.6rem;
  }
  .product__form-input-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .product textarea {
    padding: 1.6rem 2rem;
    height: 16rem;
  }
  .faq {
    padding-top: 3rem;
    margin-bottom: 6rem;
  }
  .faq__title {
    font-size: 4.8rem;
    margin-bottom: 4rem;
  }
  .faq__wrapper {
    width: 100%;
    gap: 3rem;
  }
  .faq__top {
    font-size: 2rem;
  }
  .faq__content p {
    font-size: 1.6rem;
    padding-top: 2rem;
  }
  .faq .dec {
    display: none;
  }
  .about-hero {
    padding-top: 3rem;
    margin-bottom: 6rem;
  }
  .about-hero__title {
    font-size: 4.8rem;
    margin-bottom: 3rem;
  }
  .about-hero__descr {
    font-size: 1.6rem;
    margin-bottom: 4rem;
  }
  .about-hero .text {
    font-size: 1.6rem;
    margin-bottom: 4rem;
    max-width: 100%;
  }
  .about-hero__stats {
    gap: 4rem;
    flex-wrap: wrap;
  }
  .about-hero__stats p {
    font-size: 1.6rem;
  }
  .about-hero__digit {
    font-size: 5.6rem;
    margin-bottom: 1.6rem;
  }
  .about-hero__img {
    display: none;
  }
  .about-info {
    margin-bottom: 6rem;
  }
  .about-info .container {
    flex-direction: column;
    gap: 2.4rem;
  }
  .about-info__text-title {
    font-size: 3.2rem;
    margin-bottom: 2rem;
  }
  .about-info .block {
    margin-bottom: 4rem;
  }
  .about-info .text {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    max-width: 100%;
  }
  .about-info__img {
    width: 100%;
    height: auto;
  }
  .footer {
    padding-bottom: 4rem;
  }
  .footer__wrapper {
    gap: 4rem 0;
    flex-direction: column;
  }
  .footer__wrapper .logo {
    width: 12rem;
    height: 6.2rem;
  }
  .footer__nav {
    gap: 3.2rem;
    width: 100%;
  }
  .footer__nav-block a, .footer__nav-block-title {
    font-size: 1.6rem !important;
  }
  .footer .lang-swither {
    margin-left: 0;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 1.6rem;
    align-items: flex-start;
  }
  .footer__bottom a,
  .footer__bottom p {
    font-size: 1.4rem;
  }
  .footer .dec {
    display: none;
  }
  .breadcrumbs {
    margin-bottom: 2.4rem;
  }
  .breadcrumbs .container {
    flex-wrap: wrap;
    gap: 0.6rem;
  }
  .breadcrumbs a {
    font-size: 1.4rem;
  }
  .modal {
    align-items: flex-end;
  }
  .modal__content {
    width: 100%;
    border-radius: 1.6rem 1.6rem 0 0;
  }
  .modal__content .logo {
    width: 14rem;
    height: 7.4rem;
    margin-bottom: 1.6rem;
  }
  .modal__content .close {
    top: 1.6rem;
    right: 1.6rem;
  }
  .modal__content .close svg {
    width: 2rem;
    height: 2rem;
  }
  .application,
  .sign-in {
    width: 100%;
    padding: 3.2rem 2rem 5rem;
  }
  .modal__title {
    font-size: 1.8rem;
    margin-bottom: 1.6rem;
  }
  .modal__form {
    gap: 1.6rem;
  }
  .modal__form input {
    padding: 1.2rem 1.6rem;
    font-size: 1.4rem;
  }
  .modal__form .btn {
    width: 100% !important;
    padding: 1.35rem 2rem;
  }
  .modal__form-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .agree .modal__content {
    width: 100%;
    border-radius: 1.6rem 1.6rem 0 0;
    padding: 2.4rem 2rem 3.2rem;
  }
  .agree__wrapper {
    gap: 1.2rem;
    flex-wrap: wrap;
  }
  .agree__wrapper .btn {
    padding: 1.35rem 1.6rem;
  }
  .btn {
    padding: 1.2rem 3rem;
    font-size: 1.6rem;
  }
}
@media (min-width: 769px) and (max-width: 1050px) {
  .header .logo {
    width: 16rem;
    height: 8.4rem;
  }
  .header .nav {
    gap: 3.2rem;
  }
  .header .nav a {
    font-size: 1.8rem;
  }
  .header__actions .btn {
    padding: 1rem 2.4rem;
    font-size: 1.4rem;
  }
  .lang-swither button {
    width: 7.6rem;
    height: 5.4rem;
    font-size: 1.8rem;
  }
  .hero__title {
    font-size: 7.2rem;
  }
  .hero__descr {
    font-size: 1.8rem;
    max-width: 50rem;
  }
  .section__title {
    font-size: 4.8rem;
    margin-bottom: 5rem;
  }
  .types__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .types__item {
    height: 40rem;
  }
  .media__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .club__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem 4rem;
  }
  .club__item::before {
    display: none;
  }
  .catalog__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .catalog__title {
    font-size: 6.4rem;
  }
  .product__wrapper {
    gap: 3rem;
  }
  .faq__wrapper {
    width: 100%;
  }
  .faq__title {
    font-size: 6.4rem;
  }
  .about-hero__img {
    width: 44rem;
    top: 0;
  }
  .about-hero__title {
    font-size: 6.4rem;
  }
  .about-info .container {
    flex-direction: column;
    gap: 3rem;
  }
  .about-info__img {
    width: 100%;
  }
  .footer__wrapper {
    gap: 4rem 8rem;
  }
  .footer__nav {
    gap: 6rem;
  }
}
.modal {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 8, 17, 0.7);
  z-index: 999999999999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.application {
  width: 70.1rem;
  padding: 3rem 4rem 7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 0.8rem;
}

.sign-in {
  width: 70.1rem;
  padding: 3rem 4rem 7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 0.8rem;
}

.modal__content {
  background: #000811;
  position: relative;
}
.modal__content .logo {
  width: 21.1rem;
  height: 11rem;
  margin-bottom: 2rem;
}
.modal__content p {
  font: 300 1.4rem/120% "Onest", sans-serif;
  text-align: center;
  color: #fff;
  margin-bottom: 1.9rem;
}
.modal__content .close {
  top: 3rem;
  right: 3rem;
}

.agree .modal__content {
  position: relative;
  border-radius: 0.8rem;
  padding: 2.9rem 4.4rem 2.6rem 4.1rem;
  width: 40rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.agree__wrapper {
  display: flex;
  gap: 1.8rem;
}
.agree__wrapper .btn {
  padding: 1.35rem 2.1rem;
}

.btn-stroke {
  border: 1px solid #a5f112;
  border-radius: 0.4rem;
  width: 10.3rem;
  height: 5rem;
  color: #fff;
}

.modal__title {
  font: 700 2.2rem/120% "Onest", sans-serif;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
}

.modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modal__bg img {
  width: 100%;
  height: 100%;
}

.close {
  position: absolute;
  top: 1.9rem;
  right: 1.9rem;
  z-index: 9;
  cursor: pointer;
}

.modal__form-title {
  font: 400 2.4rem/100% "PT Root UI", sans-serif;
  color: #fff;
  margin-bottom: 1.5rem;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}
.modal__form input {
  border: 1px solid #a5f112;
  border-radius: 0.4rem;
  padding: 1.35rem 1.95rem;
  width: 100%;
  text-transform: uppercase;
  color: #fff;
}
.modal__form p {
  font: 300 1.4rem/120% "Onest", sans-serif;
  text-align: center;
  color: #fff;
}
.modal__form p a {
  display: inline;
  text-decoration: underline;
  color: #fff;
}
.modal__form .btn {
  width: 25rem !important;
  margin: 0 auto;
  padding: 1.35rem 3rem;
  margin-bottom: 1.6rem;
}
.modal__form .club-sign, .modal__form .club-sign-apply {
  text-align: center;
  color: #fff;
}
/* ── THANK YOU MESSAGE ──────────────────────────────── */
.lg-thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 2rem;
  text-align: center;
  animation: lgFadeIn 0.4s ease;
}
.lg-thanks__icon svg {
  display: block;
}
.lg-thanks__text {
  font: 400 1.8rem "Onest", sans-serif;
  color: #fff;
  line-height: 1.6;
  max-width: 32rem;
}
@keyframes lgFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── FIXES ──────────────────────────────────────────── */
.lg-thanks {
  width: 100%;
}
.product {
  position: relative;
  z-index: 777;
}
.catalog-types {
  padding-top: 16rem;
}
@media (max-width: 768px) {
  .catalog-types {
    padding-top: 5rem;
  }
}
