@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap");
@keyframes gradient-move {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
.new_link_type {
  color: white;
}
a {
  text-decoration: none;
  color: white;
}

section {
  scroll-margin-top: 100px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "JetBrains Mono", monospace;
  font-optical-sizing: auto;
  background-color: #010101;
}

/* Ограничение ширины и центрирование */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  color: #b2b2b2;
}

.navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.08);
}
.navigation .navi {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 90%;
  margin: 0 auto;
  padding: 0 20px;
}
.navigation .logo {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  transition: color 0.3s;
}
.navigation .logo img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  border-radius: 20%;
  border: #b2b2b2 1px solid;
}
.navigation .logo:hover {
  color: #b2b2b2;
  cursor: pointer;
}
.navigation nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.navigation nav ul li {
  margin: 0 15px;
}
.navigation nav ul li a {
  color: #b2b2b2;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
  transition: color 0.3s;
}
.navigation nav ul li a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.navigation nav ul li a:hover {
  color: #ffffff;
}
.navigation nav ul li a:hover::after {
  transform: scaleX(1);
}
.navigation .links {
  display: flex;
  align-items: center;
}
.navigation .links a {
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  transition: color 0.3s;
}
.navigation .links a:hover {
  cursor: pointer;
}
.navigation .links .install {
  color: #010101;
  background-color: #ffffff;
  padding: 7px 30px;
  border-radius: 20px;
  font-weight: 600;
  transition: color 0.3s, background-color 0.3s;
}
.navigation .links .install:hover {
  color: #010101;
  background-color: #b2b2b2;
}
.navigation .links .blog {
  color: #ffffff;
  background-color: #373737;
  padding: 7px 30px;
  border-radius: 20px;
  font-weight: 600;
  border: #b2b2b2 1px solid;
  transition: color 0.3s, background-color 0.3s;
}
.navigation .links .blog:hover {
  color: #ffffff;
  background-color: #2b2b2b;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  color: #b2b2b2;
  background: #010101;
  padding: 0 20px;
  z-index: 1;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../img/Background.gif") center center/cover no-repeat,
    linear-gradient(
      135deg,
      rgba(120, 115, 245, 0.18) 0%,
      rgba(255, 110, 196, 0.12) 100%
    );
  opacity: 0.18;
  pointer-events: none;
  filter: blur(8px);
  border-radius: 0;
  box-shadow: none;
  mix-blend-mode: lighten;
  width: 100%;
  height: 100%;
}
.hero .hero-content {
  margin: 0 auto;
  padding: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .hero-content .number_one {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #ffffff;
  border: #b2b2b2 1px solid;
  padding: 5px 50px;
  border-color: #656565;
  border-radius: 40px;
  background: linear-gradient(
    to right,
    #2e2e2e,
    #000000 30%,
    #000000 70%,
    #2e2e2e
  );
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.2s, transform 0.15s;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero .hero-content .number_one:hover {
  background: linear-gradient(
    270deg,
    #444444,
    #222222 30%,
    #222222 70%,
    #444444
  );
  box-shadow: 0 4px 24px 0 rgba(120, 115, 245, 0.15);
  cursor: pointer;
  animation: gradient-move 1.2s linear infinite;
}
.hero .hero-content .number_one:active {
  transform: scale(0.96);
  filter: blur(2px);
}
.hero .hero-content .number_one .tg_logo {
  margin-right: 10px;
  width: 40px;
  height: 40px;
}
.hero .hero-content .big_text .bg-gr {
  font-size: 70px;
  font-weight: 700;
  margin: 20px 0;
  color: #ffffff;
  color: #000000;
  background-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.6470588235) 0%,
    #ffffff 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .hero-content .big_text h1 {
  font-size: 80px;
  color: #ffffff;
  margin-top: -30px;
}
.hero .hero-content .big_text p {
  font-size: 18px;
  color: #7e7e7e;
  margin: 0 auto;
  margin-top: -30px;
}
.hero .hero-content .big_text .buttons {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  color: white;
}
.hero .hero-content .big_text .buttons a {
  text-decoration: none;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.hero .hero-content .big_text .buttons .advantages {
  color: #b2b2b2;
  border: #b2b2b2 1px solid;
  padding: 5px 50px;
  border-color: #656565;
  border-radius: 40px;
  background: linear-gradient(
    to right,
    #2e2e2e,
    #000000 30%,
    #000000 70%,
    #2e2e2e
  );
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.2s, transform 0.15s;
  position: relative;
  overflow: hidden;
}
.hero .hero-content .big_text .buttons .advantages:hover {
  background: linear-gradient(
    270deg,
    #444444,
    #222222 30%,
    #222222 70%,
    #444444
  );
  box-shadow: 0 4px 24px 0 rgba(120, 115, 245, 0.15);
  cursor: pointer;
  animation: gradient-move 1.2s linear infinite;
}
.hero .hero-content .big_text .buttons .advantages:active {
  transform: scale(0.96);
  filter: blur(2px);
}
.hero .hero-content .big_text .buttons .install {
  color: #010101;
  background-color: #ffffff;
  padding: 20px 30px;
  border-radius: 50px;
  font-weight: 600;
  margin-left: 20px;
  transition: color 0.3s, background-color 0.3s;
}
.hero .hero-content .big_text .buttons .install:hover {
  color: #010101;
  background-color: #b2b2b2;
}
.hero .hero-content .platforms {
  margin-top: 100px;
  color: #7e7e7e;
}
.hero .hero-content .platforms .logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.hero .hero-content .platforms .logos a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, filter 0.3s;
  gap: 50px;
}
.hero .hero-content .platforms .logos a svg {
  width: 60px;
  height: 60px;
  transition: transform 0.3s, filter 0.3s, box-shadow 0.3s;
  background: transparent;
}
.hero .hero-content .platforms .logos a:hover {
  transform: scale(1.08);
  filter: brightness(1.25);
}
.hero .hero-content .platforms .logos a:hover svg {
  filter: brightness(1.25) drop-shadow(0 4px 24px rgba(120, 115, 245, 0.15));
  transform: scale(1.08);
  cursor: pointer;
}

.advantages .adv {
  display: flex;
  font-size: 32px;
  padding: 30px;
  max-width: 500px;
  justify-content: center;
  align-items: center;
  margin: 100px auto 60px auto;
  border: #b2b2b2 1px solid;
  padding: 5px 50px;
  border-color: #656565;
  border-radius: 40px;
  background: linear-gradient(
    to right,
    #2e2e2e,
    #000000 30%,
    #000000 70%,
    #2e2e2e
  );
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.2s, transform 0.15s;
  position: relative;
  overflow: hidden;
}
.advantages .adv:hover {
  background: linear-gradient(
    270deg,
    #444444,
    #222222 30%,
    #222222 70%,
    #444444
  );
  box-shadow: 0 4px 24px 0 rgba(120, 115, 245, 0.15);
  cursor: pointer;
  animation: gradient-move 1.2s linear infinite;
}
.advantages .adv:active {
  transform: scale(0.96);
  filter: blur(2px);
}
.advantages h1 {
  font-size: 60px;
  color: #ffffff;
  margin-bottom: 40px;
  text-align: center;
  color: #000000;
  background-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.6470588235) 0%,
    #ffffff 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.advantages .pod {
  font-size: 18px;
  color: #7e7e7e;
  text-align: center;
  margin-bottom: 60px;
  margin-top: -30px;
}
.advantages .gridjon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 6px;
  transition: transform 0.3s, filter 0.3s;
}
.advantages .gridjon:hover {
  cursor: pointer;
}
.advantages .gridjon svg {
  transition: transform 0.3s, filter 0.3s, box-shadow 0.3s;
}
.advantages .gridjon .hoverjon:hover svg {
  filter: brightness(2) drop-shadow(0 4px 24px rgba(120, 115, 245, 0.18));
  transform: scale(1.08);
  cursor: pointer;
}
.advantages .gridjon p {
  font-size: 16px;
  color: #7e7e7e;
  margin-top: 10px;
}
.advantages .client {
  margin-top: -400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.advantages .client .client_info {
  max-width: 60%;
}
.advantages .client .client_info p {
  color: #7e7e7e;
  font-size: 16px;
  margin-top: -30px;
}
.advantages .client .client_info .devisee {
  border: #b2b2b2 1px solid;
  padding: 5px 50px;
  border-color: #656565;
  border-radius: 40px;
  background: linear-gradient(
    to right,
    #2e2e2e,
    #000000 30%,
    #000000 70%,
    #2e2e2e
  );
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.2s, transform 0.15s;
  position: relative;
  overflow: hidden;
  padding: 20px 30px;
  color: #ffffff;
}
.advantages .client .client_info .devisee:hover {
  background: linear-gradient(
    270deg,
    #444444,
    #222222 30%,
    #222222 70%,
    #444444
  );
  box-shadow: 0 4px 24px 0 rgba(120, 115, 245, 0.15);
  cursor: pointer;
  animation: gradient-move 1.2s linear infinite;
}
.advantages .client .client_info .devisee:active {
  transform: scale(0.96);
  filter: blur(2px);
}
.advantages .client .client_info h1 {
  text-align: left;
}
.advantages .client .client_info .install_links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.advantages .client .client_info .install_links .row {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.advantages .client .client_info .install_links .row a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #b2b2b2;
  font-weight: 500;
  padding: 15px;
  border: #b2b2b2 1px solid;
  padding: 5px 50px;
  border-color: #656565;
  border-radius: 40px;
  background: linear-gradient(
    to right,
    #2e2e2e,
    #000000 30%,
    #000000 70%,
    #2e2e2e
  );
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.2s, transform 0.15s;
  position: relative;
  overflow: hidden;
}
.advantages .client .client_info .install_links .row a:hover {
  background: linear-gradient(
    270deg,
    #444444,
    #222222 30%,
    #222222 70%,
    #444444
  );
  box-shadow: 0 4px 24px 0 rgba(120, 115, 245, 0.15);
  cursor: pointer;
  animation: gradient-move 1.2s linear infinite;
}
.advantages .client .client_info .install_links .row a:active {
  transform: scale(0.96);
  filter: blur(2px);
}
.advantages .client .client_info .install_links .row a svg {
  width: 24px;
  height: 24px;
  margin-right: 20px;
}
.advantages .client .client_info .install_links .row a:hover {
  color: #ffffff;
  cursor: pointer;
}
.advantages .client .client_photo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.advantages .client .client_photo::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(108, 108, 108, 0.25) 0%,
    rgba(89, 226, 61, 0.12) 70%,
    transparent 100%
  );
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}
.advantages .client .client_photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 30px;
  animation: levitate 6s ease-in-out infinite;
  will-change: transform;
  position: relative;
  z-index: 1;
}
@keyframes levitate {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(1deg);
  }
  50% {
    transform: translateY(-15px) rotate(0deg);
  }
  75% {
    transform: translateY(-10px) rotate(-1deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

.otziv .shapka {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}
.otziv .shapka h1 {
  font-size: 60px;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: center;
  color: #000000;
  background-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.6470588235) 0%,
    #ffffff 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.otziv .shapka p {
  font-size: 18px;
  color: #7e7e7e;
  text-align: center;
  margin-top: -10px;
}
.otziv .marquee-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}
.otziv .marquee {
  display: flex;
  gap: 30px;
  animation: scroll 40s linear infinite;
  width: -moz-fit-content;
  width: fit-content;
}
.otziv .marquee-left {
  display: flex;
  gap: 30px;
  animation: scroll_left 40s linear infinite;
  width: -moz-fit-content;
  width: fit-content;
  /* Start all elements at the left side */
  justify-content: flex-start;
  /* Optional: prevent wrapping */
  white-space: nowrap;
}
.otziv .marquee-third {
  display: flex;
  gap: 30px;
  animation: scroll 20s linear infinite;
  width: -moz-fit-content;
  width: fit-content;
}
.otziv .card {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 20px;
  padding-bottom: 20px;
  pointer-events: none;
  background: #232323;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.22);
  max-width: 420px;
  min-width: 340px;
  color: #b2b2b2;
  border: #b2b2b2 1px solid;
  padding: 5px 50px;
  border-color: #656565;
  border-radius: 40px;
  background: linear-gradient(
    to right,
    #2e2e2e,
    #000000 30%,
    #000000 70%,
    #2e2e2e
  );
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.2s, transform 0.15s;
  position: relative;
  overflow: hidden;
  position: relative;
  overflow: hidden;
}
.otziv .card:hover {
  background: linear-gradient(
    270deg,
    #444444,
    #222222 30%,
    #222222 70%,
    #444444
  );
  box-shadow: 0 4px 24px 0 rgba(120, 115, 245, 0.15);
  cursor: pointer;
  animation: gradient-move 1.2s linear infinite;
}
.otziv .card:active {
  transform: scale(0.96);
  filter: blur(2px);
}
.otziv .card .info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.otziv .card .info .user {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.otziv .card .info .user .author {
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  margin: 0;
}
.otziv .card .info .user .date {
  font-size: 13px;
  color: #7e7e7e;
  margin: 0;
}
.otziv .card .info .user_meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.otziv .card .info .user_meta .rating {
  font-size: 15px;
  color: #ffe066;
  font-weight: 600;
  margin: 0;
}
.otziv .card .info .user_meta .date {
  font-size: 13px;
  color: #7e7e7e;
  margin: 0;
}
.otziv .card .comment {
  font-size: 16px;
  color: #b2b2b2;
  margin: 0;
  margin-top: 8px;
  line-height: 1.5;
  word-break: break-word;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scroll_left {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.mirrored {
  transform: scaleX(-1);
}

.ostavit_otziv {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 80px 0 60px 0;
  width: 100%;
}

.ostavit_otziv_text {
  text-align: center;
  padding: 40px 30px;
}
.ostavit_otziv_text h1 {
  margin-bottom: 18px;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  border: #b2b2b2 1px solid;
  padding: 5px 50px;
  border-color: #656565;
  border-radius: 40px;
  background: linear-gradient(
    to right,
    #2e2e2e,
    #000000 30%,
    #000000 70%,
    #2e2e2e
  );
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.2s, transform 0.15s;
  position: relative;
  overflow: hidden;
}
.ostavit_otziv_text h1:hover {
  background: linear-gradient(
    270deg,
    #444444,
    #222222 30%,
    #222222 70%,
    #444444
  );
  box-shadow: 0 4px 24px 0 rgba(120, 115, 245, 0.15);
  cursor: pointer;
  animation: gradient-move 1.2s linear infinite;
}
.ostavit_otziv_text h1:active {
  transform: scale(0.96);
  filter: blur(2px);
}
.ostavit_otziv_text h1 a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s;
}
.ostavit_otziv_text p {
  font-size: 18px;
  color: #7e7e7e;
  margin: 0 auto;
  margin-top: 10px;
  max-width: 400px;
}

.instruction h1 {
  font-size: 60px;
  color: #000000;
  background-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.6470588235) 0%,
    #ffffff 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.step_1 {
  display: flex;
  gap: 10px;
  align-items: center;
}
.link_to_bot {
  color: white;
  font-size: 60px;
  text-decoration: underline;
}
.link_to_bot:hover{
  color: #ffffffc1;
}
.instruction .not_focus {
  color: #7e7e7e;
  margin-top: -30px;
}

hr {
  border: none;
  height: 3px;
  background: linear-gradient(90deg, #232323 0%, #515151 50%, #232323 100%);
  border-radius: 2px;
  margin: 40px 0;
  opacity: 0.85;
}

.pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 100px 0;
}
.pricing .price_info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.pricing .price_info .price_text {
  font-size: 28px;
  color: #b2b2b2;
  text-align: center;
  border: #b2b2b2 1px solid;
  padding: 5px 50px;
  border-color: #656565;
  border-radius: 40px;
  background: linear-gradient(
    to right,
    #2e2e2e,
    #000000 30%,
    #000000 70%,
    #2e2e2e
  );
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.2s, transform 0.15s;
  position: relative;
  overflow: hidden;
  padding: 32px 40px;
  border-radius: 28px;
  z-index: 1;
  transition: transform 0.3s, filter 0.3s;
  box-shadow: 0 6px 32px rgba(120, 115, 245, 0.1);
  z-index: -100;
}
.pricing .price_info .price_text:hover {
  background: linear-gradient(
    270deg,
    #444444,
    #222222 30%,
    #222222 70%,
    #444444
  );
  box-shadow: 0 4px 24px 0 rgba(120, 115, 245, 0.15);
  cursor: pointer;
  animation: gradient-move 1.2s linear infinite;
}
.pricing .price_info .price_text:active {
  transform: scale(0.96);
  filter: blur(2px);
}
.pricing .price_info .price_text h1 {
  font-size: 40px;
  margin-bottom: 18px;
  color: #ffffff;
  color: #000000;
  background-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.6470588235) 0%,
    #ffffff 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  letter-spacing: 1px;
}
.pricing .price_info .price_text p {
  font-size: 20px;
  color: #7e7e7e;
  margin: 10px 0;
  line-height: 1.5;
}
.pricing .price_info .price_text p:first-of-type {
  font-size: 28px;
  color: #b2b2b2;
  font-weight: 700;
  margin-bottom: 8px;
}
.pricing .price_info .price_photo img {
  width: 200px;
  transform: rotate(15deg);
  height: auto;
  border-radius: 20px;
  max-width: 600px;
  animation: price_levitate_2 2s ease-in-out infinite;
}
.pricing .price_info .price_photo_1 img {
  width: 200px;
  transform: rotate(-15deg);
  height: auto;
  border-radius: 20px;
  max-width: 600px;
  z-index: 20;
  animation: price_levitate 2s ease-in-out infinite;
}

@keyframes price_levitate_2 {
  0%,
  100% {
    transform: translateY(0) rotate(15deg);
  }
  50% {
    transform: translateY(-10px) rotate(15deg);
  }
}
@keyframes price_levitate {
  0%,
  100% {
    transform: translateY(0) rotate(-15deg);
  }
  50% {
    transform: translateY(-10px) rotate(-15deg);
  }
}
.wow_h {
  border: #b2b2b2 1px solid;
  padding: 5px 50px;
  border-color: #656565;
  border-radius: 40px;
  background: linear-gradient(
    to right,
    #2e2e2e,
    #000000 30%,
    #000000 70%,
    #2e2e2e
  );
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.2s, transform 0.15s;
  position: relative;
  overflow: hidden;
  padding: 20px 30px;
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
}
.wow_h:hover {
  background: linear-gradient(
    270deg,
    #444444,
    #222222 30%,
    #222222 70%,
    #444444
  );
  box-shadow: 0 4px 24px 0 rgba(120, 115, 245, 0.15);
  cursor: pointer;
  animation: gradient-move 1.2s linear infinite;
}
.wow_h:active {
  transform: scale(0.96);
  filter: blur(2px);
}

.referral {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.referral .not_focus {
  color: #7e7e7e;
  margin-top: -10px;
}
.referral .referral_info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: -100px;
}
.referral .referral_info .referral_text {
  font-size: 28px;
  color: #b2b2b2;
  text-align: left;
  padding: 32px 40px;
  border-radius: 28px;
  z-index: 1;
  transition: transform 0.3s, filter 0.3s;
  box-shadow: 0 6px 32px rgba(120, 115, 245, 0.1);
  z-index: -100;
}
.referral .referral_info .referral_text h1 {
  font-size: 40px;
  margin-bottom: 18px;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 1px;
}
.referral .referral_info .referral_text p {
  font-size: 20px;
  color: #7e7e7e;
  margin: 10px 0;
  line-height: 1.5;
}
.referral .referral_info .referral_text p:first-of-type {
  font-size: 28px;
  color: #b2b2b2;
  font-weight: 700;
  margin-bottom: 8px;
}
.referral .referral_info .referral_photo img {
  width: 400px;
  transform: rotate(15deg);
  height: auto;
  border-radius: 20px;
  max-width: 600px;
  animation: price_levitate_2 2s ease-in-out infinite;
}

.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(8px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out,
    filter 0.6s ease-out;
  will-change: opacity, transform, filter;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.footer {
  color: #b2b2b2;
  padding: 60px 0 20px 0;
  border-top: 1px solid #232323;
  box-shadow: 0 -2px 16px 0 rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 10;
}
.footer .navi {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 30px auto;
  padding: 0 20px;
}
.footer .navi .logo {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  transition: color 0.3s;
}
.footer .navi .logo img {
  width: 50px;
  height: 50px;
  margin-right: 12px;
  border-radius: 20%;
  border: #b2b2b2 1px solid;
  box-shadow: 0 2px 12px rgba(120, 115, 245, 0.08);
}
.footer .navi .logo h1 {
  font-size: 22px;
  margin: 0;
  color: #ffffff;
  letter-spacing: 1px;
}
.footer .navi .logo:hover {
  color: #b2b2b2;
  cursor: pointer;
}
.footer .navi nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .navi nav ul li {
  margin: 0 12px;
}
.footer .navi nav ul li a {
  color: #b2b2b2;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: color 0.3s;
}
.footer .navi nav ul li a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer .navi nav ul li a:hover {
  color: #ffffff;
}
.footer .navi nav ul li a:hover::after {
  transform: scaleX(1);
}
.footer .navi .links {
  display: flex;
  align-items: center;
}
.footer .navi .links a {
  text-decoration: none;
  margin-left: 18px;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s;
}
.footer .navi .links a:hover {
  cursor: pointer;
}
.footer .navi .links .install {
  color: #010101;
  background-color: #ffffff;
  padding: 7px 24px;
  border-radius: 18px;
  font-weight: 600;
  transition: color 0.3s, background-color 0.3s;
}
.footer .navi .links .install:hover {
  color: #010101;
  background-color: #b2b2b2;
}
.footer .navi .links .blog {
  color: #ffffff;
  background-color: #232323;
  padding: 7px 24px;
  border-radius: 18px;
  font-weight: 600;
  border: #b2b2b2 1px solid;
  transition: color 0.3s, background-color 0.3s;
}
.footer .navi .links .blog:hover {
  color: #ffffff;
  background-color: #181818;
}
.footer .footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 15px;
  color: #7e7e7e;
}
.footer .footer-bottom span,
.footer .footer-bottom a {
  color: #7e7e7e;
  transition: color 0.3s;
}
.footer .footer-bottom a {
  text-decoration: underline;
}
.footer .footer-bottom a:hover {
  color: #ffffff;
}

.pay_methods {
  display: flex;
  justify-content: space-around;
}
.pay_methods img {
  height: 80px;
  opacity: 0.8;
} /*# sourceMappingURL=main.css.map */
