:root {
  --main-blue: #224060;
  --hover-btn: #2e5680;
  --section-border: #292a30 solid 1px;
  --footer-color: #0d0d12;
  --bg-color: #0f0f14;
  --text-color: #BDBDBD;
  --description-color: #9d9fa0;
  --secondary-color: #fbfdff;
  --first-blur-logo-color: rgb(8 117 98);
  --second-blur-logo-color: rgb(44 44 75);
  --third-blur-logo-color: rgb(54 38 83);
  --first-blur-gradient-color: #1c2e33;
  --second-blur-gradient-color: #423f85;
  --third-blur-gradient-color: rgb(16, 17, 61);
  --fourth-blur-gradient-color: rgb(72, 87, 156);
  --fifth-blur-gradient-color: rgb(24, 90, 121);
  --sixth-blur-gradient-color: rgb(8, 68, 117);
  --seventh-blur-gradient-color: rgb(59, 43, 97);
  --span-color: #fff;
  --block-color: rgba(50, 50, 56, 0.2);
  --input-border-color: #4e4b57;
  --toggle-bg: #292a30;
  --preview-green: rgba(100, 255, 242, 0.6);
  --preview-blue: rgba(53, 101, 231, 0.5);
  --preview-orange: rgba(231, 160, 53, 0.5);
  --preview-blu: rgba(1, 14, 131, 0.5);
  --preview-red: rgba(185, 0, 0, 0.5);
  --preview-yellow: rgba(243, 240, 63, 0.5);
  --preview-velvet: rgba(247, 12, 255, 0.5);
  --warning-color: #202023;
  --first-blur-main-text-color: #829fff;
  --second-blur-main-text-color: #fffbd4;
  --third-blur-main-text-color: #86caf1;
  --fourth-blur-main-text-color: #d386f1;
  --first-custom-btn-gradient-color: #4facfe;
  --second-custom-btn-gradient-color: #e3f2f3;
  --third-custom-btn-gradient-color: #3e41f7;
  --blur-border: rgba(155, 183, 213, 0.418)
}

[data-theme="light"] {
  --main-blue: #7090f2;
  --hover-btn: #002aff9c;
  --section-border: #e7e7e7 solid 1px;
  --footer-color: #dfdfe7;
  --bg-color: #ffffff;
  --text-color: #3d3d3f;
  --description-color: #202122;
  --first-blur-logo-color: rgb(152, 243, 255);
  --second-blur-logo-color: rgb(177 211 255);
  --third-blur-logo-color: rgb(244, 160, 255);
  --first-blur-gradient-color: #4400ff;
  --second-blur-gradient-color: #0099ff;
  --third-blur-gradient-color: rgb(130, 96, 255);
  --fourth-blur-gradient-color: rgb(126, 216, 252);
  --fifth-blur-gradient-color: rgb(56, 142, 255);
  --sixth-blur-gradient-color: rgb(183, 0, 255);
  --seventh-blur-gradient-color: rgb(101, 232, 255);
  --span-color: #000000;
  --block-color: #e1e1fc33;
  --input-border-color: #ccc9d5;
  --toggle-bg: #f0f3f5;
  --preview-green: rgb(149, 247, 237);
  --preview-blue: rgb(56, 109, 255);
  --preview-orange: rgb(255, 157, 11);
  --preview-blu: rgb(92, 185, 247);
  --preview-red: rgb(255, 43, 43);
  --preview-yellow: rgb(255, 251, 38);
  --preview-velvet: rgb(247, 12, 255);
  --warning-color: #ffffff;
  --first-blur-main-text-color: #6684e7;
  --second-blur-main-text-color: #ff79e8;
  --third-blur-main-text-color: #6ad3fb;
  --fourth-blur-main-text-color: #cc4bff;
  --first-custom-btn-gradient-color: #4facfe;
  --second-custom-btn-gradient-color: #40d7a1;
  --third-custom-btn-gradient-color: #3e41f7;
  --blur-border: rgba(155, 183, 213, 0.418)
}

html {
  box-sizing: border-box;
  background-color: var(--bg-color);
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  /* display: flex; */
}

button {
  padding: 0;
  border: none;
  background-color: transparent;
  font-size: inherit;
  color: inherit;
  font-family: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
}

body,
html {
  height: 100%;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--text-color);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  overflow-x: hidden;
  min-width: 320px;
}

.mp {
  vertical-align: baseline;
  margin-right: 10px;
  border-radius: 10px;
}

.container {
  padding: 0 10px;
  margin: 0 auto;
  max-width: 1320px;
}

.btn-servis {
  display: none;
}

.container_feedback {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-top: 20px;
  margin-bottom: 100px;
}

.container_feedback h1 {
  /* margin-top: 20px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 35px;
  font-weight: 200;
  padding-bottom: 30px;
  text-align: center;
}

.container_feedback img {
  width: 100%;
  max-width: 500px;
  margin-bottom: -20px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 2s ease-out, transform 1s ease-out;
}

.container_feedback img.visible {
  opacity: 1;
  transform: translateY(0);
}

.container_feedback img:nth-child(even) {
  margin-left: -18%;
}

.container_feedback img:nth-child(odd) {
  margin-left: 18%;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.main {
  flex: 1 0 auto;
}

.footer {
  flex: 0 0 auto;
}

.title {
  font-size: 36px;
  font-weight: 300;
}

.title span {
  color: var(--span-color);
}

.main-link,
.main-btn {
  display: block;
  background-color: var(--main-blue);
  color: #ffff;
  border-radius: 10px;
  border-color: #3699ff;
  transition: 500ms;
  text-align: center;
}

.main-link:hover,
.main-btn:hover {
  background-color: var(--hover-btn);
}

@keyframes shake {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(20deg);
  }

  50% {
    transform: rotate(-20deg);
  }

  75% {
    transform: rotate(20deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.top__img_screen {
  display: none;
}

/* ПОНТ */

.stats-section {
  padding: 0 20px 20px;
  margin-top: -50px;
  text-align: center;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-item {
  flex: 1;
  min-width: 250px;
  padding: 20px;
}

.stat-number {
  font-size: 48px;
  font-weight: 300;
  color: var(--span-color);
}

.stat-text {
  font-size: 20px;
  color: var(--text-color);
  line-height: 1.4;
}

@media (max-width: 1150px) {
  .stats-section {
    margin-top: 15px;
  }
}


@media (max-width: 850px) {
  .stat-number {
    font-size: 35px;
  }

  .stat-text {
    font-size: 16px;
  }

  .stats-container {
    gap: 20px;
  }

  .stat-item {
    padding: 5px;
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-number.animated {
  animation: countUp 1s ease-out forwards;
  display: inline-block;
}

/* SERVICES */
.services {
  padding: 20px;
}

.servi {
  display: flex;
  justify-content: center;
}

.services-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: 30px;
  width: 1110px;
}

.service-block {
  background-color: var(--block-color);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
  height: 200px;
  transition: box-shadow 0.3s ease-in-out;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.service-block::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: var(--block-color);
  border-radius: 12px;
  filter: blur(30px);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease-in-out;
  z-index: -1;
}

.service-block:hover::before {
  opacity: 1;
}

.service-block.visible {
  opacity: 1;
  animation: fadeInUp 1s ease-out forwards;
}

.service-block h3 {
  font-size: 18px;
  font-weight: 300;
  margin: 0;
  /* text-align: center; */
  /* position: absolute; */
  top: 35%;
  /* left: 6%; */
  /* transform: translate(-50%, -50%); */
  padding-bottom: 8px;
  transition: top 0.5s ease;
  /* width: 315px; */
  color: var(--text-color);
  padding-left: 35%;
}

.service-block h2 {
  font-size: 20px;
  font-weight: 400;
  margin: 0;
  /* position: absolute; */
  top: 10%;
  /* left: 3%; */
  width: 500px;
  color: #676A7C;
  text-align: end;
}

.service-block h4 {
  font-size: 20px;
  font-weight: 200;
  color: var(--text-color);
}

.service-block p {
  color: var(--description-color);
  width: 315px;
}

.service-icon {
  z-index: 2;
  height: 80px;
  margin: 0;
  position: absolute;
  bottom: 128px;
  transition: bottom 0.5s ease, transform 0.5s ease, opacity 0.5s ease;
  opacity: 90%;
}

.service-block:hover .service-icon {
  bottom: 140px;
  transform: scale(1.1);
  opacity: 1;
}

/* .service-block:hover img{
  top: 3%;
  width: 80px;
} */

.possibilities__title {
  font-size: 1.75rem;
  text-align: center;
  color: var(--text-color);
}

.btn-service {
  font-size: 15px;
  font-weight: 500;
  color: #5e8ab9;
  padding: 10px;
  border-radius: 10px;
  border: 2px solid #5e8ab9;
  margin-top: 29px;
}

.btn-service:hover {
  color: var(--hover-btn);
  border: 2px solid var(--hover-btn)
}

.servis {
  display: none;
}

/* @media (min-width: 768px) {
  .services-blocks {
      flex-direction: row;
      justify-content: space-between;
  }
  .service-block {
      flex-basis: 30%;
  }
} */

/* DO YOU WANNA? */

.wanna {
  margin: 0 auto;
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 250px;
  overflow: hidden;
  width: 100%;
  border-radius: 15px;
  margin-top: 10px;
  margin-bottom: 40px;
}

.wanna .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-color);
  text-align: center;
}

.wanna h1 {
  font-size: 26px;
  font-weight: 100;
}

.wanna h2 {
  font-size: 22px;
  font-weight: 100;
}

.wanna .main-btn {
  margin-top: 30px;
  padding: 5px 60px;
  background-color: #77b0ed00;
  color: var(--text-color);
  border-radius: 10px;
  border: 1px solid var(--text-color);
  cursor: pointer;
  font-size: 20px;
  font-weight: 100;
}

/*Try free*/
.tryfree {
  margin: 0 auto;
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 350px;
  overflow: hidden;
  max-width: 65%;
  border-radius: 15px;
  margin-top: 60px;
}

.parallax-container {
  position: relative;
  width: 100%;
  height: 100vh;
  /* background-color: #77b0ed; */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.tryfree .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--description-color);
  text-align: center;
}

.tryfree h1 {
  font-size: 30px;
  font-weight: 100;
}

.tryfree h2 {
  font-size: 30px;
  font-weight: 100;
}

.tryfree p {
  font-size: 18px;
  margin: 10px 0;
  font-weight: 100;
}

.tryfree .main-btn {
  margin-top: 30px;
  padding: 5px 60px;
  background-color: #77b0ed00;
  color: var(--description-color);
  border-radius: 10px;
  border: 1px solid var(--description-color);
  cursor: pointer;
  font-size: 20px;
  font-weight: 100;
}

.parallax-balls {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ball1,
.ball3,
.ball10 {
  position: absolute;
  width: 150px;
  height: 150px;
  background: linear-gradient(93deg, var(--third-blur-gradient-color) 0%, var(--fourth-blur-gradient-color) 35%, var(--fifth-blur-gradient-color) 100%);
  border-radius: 50%;
  filter: blur(70px);
  transition: transform 1s ease;
  animation: move1 14s ease-in-out infinite;
}


.ball2,
.ball4,
.ball5 {
  position: absolute;
  width: 70px;
  height: 70px;
  background: linear-gradient(93deg, var(--sixth-blur-gradient-color) 0%, var(--seventh-blur-gradient-color) 35%, var(--third-blur-logo-color) 100%);
  border-radius: 50%;
  filter: blur(40px);
  transition: transform 1s ease;
  animation: move2 7s ease-in-out infinite;
}

.ball6,
.ball7 {
  position: absolute;
  width: 150px;
  height: 150px;
  background: linear-gradient(93deg, var(--first-blur-logo-color) 0%, var(--second-blur-logo-color) 35%, var(--third-blur-logo-color) 100%);
  border-radius: 50%;
  filter: blur(50px);
  transition: transform 1s ease;
  animation: move3 9s ease-in-out infinite;
}

.ball8,
.ball9 {
  position: absolute;
  width: 40px;
  height: 40px;
  background: linear-gradient(93deg, var(--seventh-blur-gradient-color) 0%, var(--fourth-blur-gradient-color) 35%, var(--fifth-blur-gradient-color) 100%);
  border-radius: 50%;
  filter: blur(15px);
  transition: transform 1s ease;
  animation: move4 5s ease-in-out infinite;
}

.ball11 {
  position: absolute;
  width: 100px;
  height: 100px;
  background: linear-gradient(93deg, var(--second-blur-gradient-color) 0%, var(--fourth-blur-gradient-color) 35%, var(--first-blur-gradient-color) 100%);
  border-radius: 50%;
  filter: blur(40px);
  transition: transform 1s ease;
  animation: move3 15s ease-in-out infinite;
}

.ball1:hover {
  transform: translateX(-70px) translateY(0px);
}

.ball2:hover {
  transform: translateX(50px) translateY(-50px);
}

.ball3:hover {
  transform: translateX(50px) translateY(-50px);
}

.ball4:hover {
  transform: translateX(-50px) translateY(-50px);
}

.ball5:hover {
  transform: translateX(50px) translateY(-50px);
}

.ball6:hover {
  transform: translateX(-50px) translateY(-50px);
}

.ball7:hover {
  transform: translateX(-50px) translateY(-50px);
}

.ball8:hover {
  transform: translateX(-50px) translateY(-50px);
}

.ball9:hover {
  transform: translateX(-50px) translateY(-50px);
}

.ball10:hover {
  transform: translateX(-50px) translateY(-50px);
}

.ball11:hover {
  transform: translateX(-50px) translateY(-70px);
}

.main-btn:hover {
  background-color: #bdbdbd2d;
  color: var(--text-color);
}

.ball1 {
  top: 9%;
  left: 30%;
}

.ball2 {
  top: 40%;
  left: 80%;
}

.ball3 {
  top: 40%;
  left: 90%;
}

.ball4 {
  top: 50%;
  left: 20%;
}

.ball5 {
  top: 40%;
  left: 10%;
}

.ball6 {
  top: 60%;
  left: 15%;
}

.ball7 {
  top: 50%;
  left: 75%;
}

.ball8 {
  top: 55%;
  left: 5%;
}

.ball9 {
  top: 33%;
  left: 90%;
}

.ball10 {
  top: 30%;
  left: -5%;
}

.ball11 {
  top: 60%;
  left: 32%;
}

@keyframes move1 {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(40px, -40px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes move2 {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(60px, 60px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes move3 {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0px, -60px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes move4 {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-50px, 0px);
  }

  100% {
    transform: translate(0, 0);
  }
}

/* STEPS */

.steps {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  margin-top: 90px;
  margin-bottom: 90px
}

.steps::before {
  content: '';
  position: absolute;
  right: 14%;
  width: 300px;
  height: 300px;
  background: linear-gradient(150deg, var(--first-blur-logo-color) 0%, var(--second-blur-logo-color) 35%);
  filter: blur(120px);
  border-radius: 50%;
  transform: translateY(-50%) scale(1);
  transition: all 5s ease-in-out;
  z-index: -1;
  animation: morph 10s infinite ease-in-out alternate;
  bottom: -300%;
}

.bubble {
  position: absolute;
  width: 380px;
  height: auto;
  left: 10%;
  transform: translateX(-50%);
  z-index: -1;
  animation: motion 70s ease-in-out infinite;
}

.sidebar {
  position: sticky;
  top: 100px;
}

.steps_block h6 {
  display: none;
  font-size: 40px;
  font-weight: 300;
}

.steps_block h5 {
  display: none;
  color: #676A7C;
  font-size: 40px;
  font-weight: 300;
}

.sidebar h2 {
  font-size: 40px;
  font-weight: 300;
}

.sidebar h3 {
  color: #676A7C;
  font-size: 40px;
  font-weight: 300;
}

.block-step {
  padding: 30px;
  background-color: var(--block-color);
  border-radius: 15px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  max-width: 680px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out, box-shadow 0.3s ease-in-out;
  position: relative;
  overflow: visible;
}

.block-step::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: var(--block-color);
  border-radius: 20px;
  filter: blur(30px);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease-in-out;
  z-index: -1;
}


.block-step:hover::before {
  opacity: 1;
}

.block-step.visible {
  opacity: 1;
  animation: fadeInUp 1s ease-out forwards;
}

.block-step .description {
  min-width: 220px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.btn-step {
  margin-top: 20px;
  background-color: var(--main-blue);
  color: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 15px;
  width: 280px;
  font-size: 18px;
  font-weight: 400;
}

.block-step h3 {
  font-size: 18px;
  font-weight: 100;
  color: var(--text-color);
}

.block-step h4 {
  color: var(--secondary-color);
  font-size: 20px;
  font-weight: 300;
  padding: 2px;
  background-color: var(--main-blue);
  border-radius: 15px;
  max-width: 55px;
  display: flex;
  justify-content: center;
}

.block-step p {
  margin-left: 20px;
  font-size: 16px;
  font-weight: 200;
  color: var(--description-color);
}

@keyframes motion {
  0% {
    transform: translate(1px, 200px);
  }

  50% {
    transform: translate(50px, 400px);
  }

  100% {
    transform: translate(1px, 200px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* VIDEO */

.video {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  margin-top: 60px;
  margin-bottom: 60px;
}

.container_video {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  width: 100%;
  gap: 20px;
}

.content_v {
  text-align: left;
}

.video h2 {
  font-size: 40px;
  font-weight: 300;
}

.content_v p {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 100;
  color: var(--description-color);
}

.vid {
  margin-top: 20px;
}

video,
iframe {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.video .content_v a {
  font-weight: 500;
}

.video .content_v a:hover {
  color: var(--main-blue)
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* Соотношение 16:9 */
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* HEADER */
.header {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  align-content: center;
  /* border-bottom: var(--section-border); */
  padding: 24px 0;
}

/* .logo {
  height: 20px;
} */
.nav {
  display: flex;
  gap: 40px;
}

.nav a {
  color: var(--description-color);
  text-decoration: none;
  font-size: 16px;
}

.nav a:hover {
  color: var(--text-color);
}

.phone {
  background-color: var(--main-blue);
  padding: 8px 22px;
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 200;
  transition: 500ms
}

.phone:hover {
  background-color: #5aacff;
}

.phone1 {
  display: none;
}

.tg {
  display: none;
}

.email {
  display: none;
}

/* .autootvet {
  display: none;
} */

.burger {
  display: none;
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
}

/* TOP */
.top {
  padding: 90px 0 110px;
  /* border-bottom: var(--section-border); */
}

.top__title {
  font-size: 45px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.top__title_left {
  font-size: 45px;
  font-weight: 100;
  margin-bottom: 25px;
  text-align: left;
  line-height: normal;
  color: var(--text-color);
}

.top__title_left b {
  font-weight: 900;
}

.gradient {
  background: linear-gradient(100deg, var(--first-blur-main-text-color), var(--second-blur-main-text-color), var(--third-blur-main-text-color), var(--fourth-blur-main-text-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
  font-weight: 600;
}

.custom-glow-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 9999px;
  font-size: 19px;
  font-family: inherit;
  color: var(--span-color);
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  line-height: 1.2;
  text-align: center;
}

.custom-glow-button::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(90deg, var(--first-custom-btn-gradient-color), var(--second-custom-btn-gradient-color), var(--third-custom-btn-gradient-color));
  border-radius: inherit;
  z-index: -1;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  padding: 3.5px;
  box-sizing: border-box;
}

.custom-glow-button:hover {
  box-shadow: 0 0 12px 4px rgba(38, 78, 255, 0.74);
}

.top_price {
  font-size: 25px;
  font-weight: 100;
  margin-bottom: 25px;
  text-align: left;
  line-height: normal;
  color: var(--text-color);
  display: none;
}

.top__inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.top__content {
  flex-basis: 620px;
  margin-right: 40px;
}

.rates-content {
  flex-basis: 550px;
}

rates-content {
  max-width: 575px;
}

.top__img {
  flex-basis: 640px;
  object-fit: cover;
  width: 50%;
}

.rate-img {
  object-fit: cover;
}

.rate-img img {
  max-width: 600px;
}

.top__title span {
  color: var(--main-blue);
}

.top__title_left span {
  color: var(--span-color);
}

.top__text {
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 40px;
}

.top__textt {
  font-weight: 100;
  font-size: 18px;
  margin-bottom: 20px;
  margin-top: 15px;
  color: var(--description-color);
}

.top__content h4 {
  font-weight: 500;
  font-size: 20px;
  margin-top: 10px;
}

.top__text--title {
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 22px;
}

.top__link {
  font-size: 20px;
  padding: 15px 47px;
  max-width: 335px;
}

.review_link {
  display: flex;
}

.review_link .top__link {
  margin-right: 10px;
  padding: 15px 19px;
}

.image_main {
  width: 56%;
}

.image_main img {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-in, transform 0.7s ease-in;
}

.image_main img.visible {
  opacity: 1;
  transform: translateY(0);
}

.image_main .answer {
  margin-left: 40%;
}

.image_main::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 300px;
  height: 300px;
  background: linear-gradient(93deg, var(--first-blur-logo-color) 0%, var(--second-blur-logo-color) 35%, var(--third-blur-logo-color) 100%);
  filter: blur(95px);
  border-radius: 50%;
  transform: translateY(-50%) scale(1);
  transition: all 5s ease-in-out;
  z-index: -1;
  animation: morph 10s infinite ease-in-out alternate;
  right: 20%;
}

.image_main .mascot {
  opacity: 1;
  width: 54%;
  margin-top: -52px;
}

.image_main .icon-ozon {
  opacity: 1;
}

.image_main .icon-wb {
  opacity: 1;
}

.image_main .icon-m {
  opacity: 1;
}

/* .image_main .icon-pop{
  opacity: 1;
} */

.mascot {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0 auto;
}

/* Базовые стили для иконок */
.icon {
  position: absolute;

  z-index: 2;
}

.icon-ozon {
  position: absolute;
  left: 49vw;
  /* (917px / 1872) * 100 */
  top: 29vh;
  /* (244px / 841) * 100 */
  animation: float-ozon 5s ease-in-out infinite;
  animation-delay: 0s;
  width: 334px;
}

.icon-m {
  position: absolute;
  left: 63vw;
  /* (1180px / 1872) * 100 */
  top: 4vh;
  /* (34px / 841) * 100 */
  width: 223px;
  animation: float-ym 6s ease-in-out infinite;
  animation-delay: 0s;
  z-index: -1;
}

.icon-wb {
  position: absolute;
  right: 40vw;
  /* (749px / 1872) * 100 */
  top: 7vh;
  /* (59px / 841) * 100 */
  width: 261px;
  animation: float-wb 7s ease-in-out infinite;
  animation-delay: 0s;
  z-index: -1;
}

.icon-pop {
  position: absolute;
  right: 11vw;
  /* (206px / 1872) * 100 */
  top: 23vh;
  /* (193px / 841) * 100 */
  width: 344px;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  animation: float-wb 7s ease-in-out infinite;
}

.icon-pop.show {
  opacity: 1;
  transform: translateY(0);
}

/* Анимация "левитации" */
@keyframes float-ozon {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateX(-10px);
    transform: translateY(-10px);
  }
}

@keyframes float-wb {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
    transform: translateX(5px);
  }
}

@keyframes float-ym {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(15px);
  }
}

@media (min-width: 1950px) {
  .icon-pop {
    right: 12vw;
  }
}

@media (min-width: 2050px) {
  .icon-pop {
    right: 14vw;
  }
}

@media (min-width: 2000px) {
  .icon-pop {
    right: 13vw;
  }
}

@media (min-width: 2100px) {
  .icon-pop {
    right: 15vw;
  }
}

@media (min-width: 2200px) {
  .icon-pop {
    right: 17vw;
  }
}

@media (min-width: 2300px) {
  .icon-pop {
    right: 18vw;
  }

  .icon-m {
    left: 59vw;
  }

  .icon-wb {
    right: 42vw;
  }
}

@media (min-width: 2400px) {
  .icon-pop {
    right: 19vw;
  }
}

@media (min-width: 2500px) {
  .icon-pop {
    right: 20vw;
  }
}

@media (min-width: 2600px) {
  .icon-pop {
    right: 21vw;
  }
}

@media (min-width: 2700px) {
  .icon-pop {
    right: 22vw;
  }
}

@media (min-width: 2800px) {
  .icon-pop {
    right: 23vw;
  }
}

@media (min-width: 3100px) {
  .icon-pop {
    right: 25vw;
  }
}

@media (min-width: 3200px) {
  .icon-pop {
    right: 26vw;
  }

  .icon-wb {
    right: 45vw;
  }

  .icon-m {
    left: 56vw;
  }
}

@media (min-width: 3400px) {
  .icon-pop {
    right: 28vw;
  }
}

@media (min-width: 3600px) {
  .icon-pop {
    right: 30vw;
  }
}

@media (min-width: 3900px) {
  .icon-pop {
    right: 31vw;
  }
}

@media (min-width: 4200px) {
  .icon-pop {
    right: 32vw;
  }
}

@media (min-width: 4400px) {
  .icon-pop {
    right: 34vw;
  }
}

@media (min-width: 4900px) {
  .icon-pop {
    right: 35vw;
  }

  .icon-wb {
    right: 47vw;
  }

  .icon-m {
    left: 54vw;
  }
}

@media (min-width: 5400px) {
  .icon-pop {
    right: 36vw;
  }
}

@media (min-width: 5900px) {
  .icon-pop {
    right: 37vw;
  }
}

@media (min-width: 6200px) {
  .icon-pop {
    right: 38vw;
  }
}


@media (max-width: 1855px) {
  .icon-pop {
    right: 10vw;
  }
}

@media (max-width: 1810px) {
  .icon-pop {
    right: 9vw;
  }
}

@media (max-width: 1760px) {
  .icon-pop {
    right: 8vw;
  }
}

@media (max-width: 1715px) {
  .icon-pop {
    right: 7vw;
  }
}

@media (max-width: 1675px) {
  .icon-pop {
    right: 6vw;
  }
}

@media (max-width: 1650px) {
  .icon-pop {
    top: 27vh;
    width: 322px;
  }
}

@media (max-width: 1580px) {
  .icon-pop {
    right: 5vw;
  }

  .icon-wb {
    right: 38vw;
  }
}

@media (max-width: 1550px) {
  .icon-pop {
    top: 29vh;
    width: 292px;
  }
}

@media (max-width: 1495px) {
  .icon-pop {
    right: 4vw;
    top: 29vh;
    width: 292px;
  }

  .icon-wb {
    right: 36vw;
    top: 7vh;
    width: 242px;
  }
}

@media (max-width: 1450px) {
  .icon-pop {
    right: 2vw;
  }
}

@media (max-width: 1395px) {
  .icon-pop {
    right: -1vw;
  }

  .icon-m {
    left: 68vw;
    top: 6vh;
    width: 215px;
  }
}

@media (max-width: 1340px) {
  .icon-pop {
    top: 29vh;
    width: 292px;
  }

  .icon-wb {
    width: 273px;
  }
}

@media (max-width: 1310px) {
  .icon-pop {
    top: 28vh;
    width: 292px;
  }

  .icon-wb {
    right: 34vw;
    top: 9vh;
    width: 225px;
  }
}

@media (max-width: 1260px) {
  .icon-pop {
    right: -2vw;
    top: 28vh;
    width: 240px;
  }
}

@media (max-width: 1235px) {
  .image_main .mascot {
    opacity: 1;
    width: 54%;
    margin-top: -32px;
  }

  .icon-pop {
    top: 30vh;
  }
}

@media (max-width: 1190px) {
  .top__title_left {
    font-size: 40px;
  }

  .image_main .mascot {
    margin-top: -10px;
  }

  .icon-m {
    left: 70vw;
    top: 10vh;
    width: 202px;
  }

  .icon-wb {
    right: 32vw;
    /* top: 14vh; */
    width: 218px;
  }

  .icon-ozon {
    left: 51vw;
    top: 35vh;
    width: 291px;
  }

  .icon-pop {
    top: 31vh;
  }
}

@media (max-height: 770px) {
  .icon-pop {
    top: 31vh;
  }

  .icon-ozon {
    top: 35vh;
  }

  .icon-m {
    top: 6vh;
  }
}

@media (max-height: 700px) {
  .icon-pop {
    top: 34vh;
  }

  .icon-ozon {
    top: 36vh;
  }
}

@media (max-height: 650px) {
  .icon-pop {
    top: 36vh;
  }

  .icon-ozon {
    top: 38vh;
  }

  .icon-m {
    top: 7vh;
  }
}

@media (max-height: 580px) {
  .icon-pop {
    top: 43vh;
  }

  .icon-ozon {
    top: 45vh;
  }

  .icon-m {
    top: 8vh;
  }
}

@media (max-height: 530px) {
  .icon-pop {
    top: 46vh;
  }

  .icon-ozon {
    top: 50vh;
  }
}

@media (max-height: 480px) {
  .icon-pop {
    top: 50vh;
  }

  .icon-ozon {
    top: 55vh;
  }
}

@media (max-height: 440px) {
  .icon-pop {
    top: 55vh;
  }

  .icon-ozon {
    top: 60vh;
  }
}

@media (min-height: 1000px) {
  .icon-pop {
    top: 21vh;
  }
}

@media (min-height: 1050px) {
  .icon-pop {
    top: 20vh;
  }

  .icon-ozon {
    top: 21vh;
  }
}

@media (min-height: 1100px) {
  .icon-pop {
    top: 19vh;
  }
}

@media (min-height: 1150px) {
  .icon-pop {
    top: 18vh;
  }
}

@media (min-height: 1200px) {
  .icon-pop {
    top: 17vh;
  }
}

@media (min-height: 1250px) {
  .icon-pop {
    top: 16vh;
  }
}

@media (min-height: 1300px) {
  .icon-pop {
    top: 15vh;
  }

  .icon-m {
    top: 2vh;
  }
}

@media (min-height: 1350px) {
  .icon-pop {
    top: 14vh;
  }
}

@media (min-height: 1400px) {
  .icon-pop {
    top: 13vh;
  }

  .icon-ozon {
    top: 19vh;
  }
}

@media (min-height: 1600px) {
  .icon-ozon {
    top: 17vh;
  }
}

@media (min-height: 1700px) {
  .icon-pop {
    top: 12vh;
  }

  .icon-ozon {
    top: 15vh;
  }
}

@media (min-height: 1800px) {
  .icon-pop {
    top: 11vh;
  }
}

@media (min-height: 2000px) {
  .icon-pop {
    top: 10vh;
  }
}

@media (min-height: 2100px) {
  .icon-pop {
    top: 9vh;
  }

  .icon-ozon {
    top: 13vh;
  }

  .icon-wb {
    top: 4vh;
  }
}

@media (min-height: 2300px) {
  .icon-pop {
    top: 8vh;
  }

  .icon-ozon {
    top: 11vh;
  }
}

@media (min-height: 2600px) {
  .icon-pop {
    top: 7vh;
  }

  .icon-ozon {
    top: 9vh;
  }
}


.login {
  display: flex;
  align-items: center;
}

.theme-toggle {
  margin-left: 20px;
  background-color: var(--toggle-bg);
  border: none;
  border-radius: 9999px;
  padding: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 28px;
  position: relative;
  transition: background-color 0.3s ease;
}

.nav .theme-toggle {
  display: none;
}

.theme-icon {
  width: 20px;
  height: 20px;
  background-color: var(--toggle-bg);
  border-radius: 50%;
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

[data-theme="dark"] .theme-icon {
  background-color: #1b1b20;
  transform: translateX(10px);
  color: #d6d6d6;
}

[data-theme="light"] .theme-icon {
  background-color: #ffffff;
  transform: translateX(-10px);
}

[data-theme="light"] .nav .theme-toggle {
  background-color: #292a30;
}

[data-theme="light"] .nav .theme-icon {
  background-color: #e5e5e5;
  transform: translateX(0px);
}

[data-theme="dark"] .nav .theme-icon {
  transform: translateX(20px);
}

/* block */
.advantages {
  position: relative;
}

.advantages h1 {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 35px;
  font-weight: 200;
  padding-bottom: 30px;
}

.servi::before {
  content: '';
  position: absolute;
  top: 120%;
  left: 8%;
  width: 300px;
  height: 300px;
  background: linear-gradient(150deg, var(--second-blur-logo-color), var(--second-blur-logo-color));
  filter: blur(120px);
  border-radius: 50%;
  transform: translateY(-50%) scale(1);
  transition: all 5s ease-in-out;
  z-index: -1;
  animation: morph 10s infinite ease-in-out alternate;
  bottom: -100%;
}

@keyframes morph {
  0% {
    border-radius: 50%;
    transform: translateY(-50%) scale(1.5);
  }

  50% {
    border-radius: 30% 70% 60% 40% / 50% 30% 70% 50%;
    transform: translateY(-40%) scale(1.1);
  }

  100% {
    border-radius: 70% 30% 40% 60% / 30% 60% 40% 70%;
    transform: translateY(-60%) scale(1);
  }
}

.container_p {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1050px;
  margin: 0 auto;
  padding: 20px;
  align-self: center;
  z-index: 2;
}

.box {
  position: relative;
  border-radius: 8px;
  padding: 20px;
  box-sizing: border-box;
  max-width: 350px;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.box.visible {
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
}

.box-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  border: 0.1px solid #e9e9e9;
  border-radius: 10px;
  transition: transform 0.5s ease;
  z-index: 1;
}

.box:hover .box-border {
  transform: rotate(3deg);
}

.box-content {
  position: relative;
  z-index: 1;
  transform: rotate(0deg);
  padding: 15px;
}

.box-content h2 {
  font-size: 21px;
  padding-bottom: 10px;
}

.box-content p {
  font-size: 16px;
  color: #676A7C;
  font-weight: 400;
}

.corner-image {
  display: block;
  position: absolute;
  width: 380px;
  height: auto;
  top: 800px;
  right: calc(8%);
  transform: translateX(-50%);
  z-index: -1;
}

.moving-circle {
  position: absolute;
  width: 100px;
  height: 100px;
  top: calc(940px);
  right: calc(26%);
  z-index: 0;
  animation: circularMotion 15s infinite linear;
}

.moving-circle1 {
  position: absolute;
  width: 40px;
  height: 40px;
  top: calc(965px);
  right: calc(27%);
  z-index: 0;
  animation: circularMotion1 5s infinite linear;
}

.moving-circle2 {
  position: absolute;
  width: 70px;
  height: 70px;
  top: calc(965px);
  right: calc(26%);
  z-index: 0;
  animation: circularMotion2 10s infinite linear;
}



@keyframes circularMotion {
  0% {
    transform: rotate(0deg) translateX(180px) rotate(0deg);
  }

  100% {
    transform: rotate(360deg) translateX(180px) rotate(-360deg);
  }
}

@keyframes circularMotion1 {
  0% {
    transform: rotate(0deg) translateX(185px) rotate(0deg);
  }

  100% {
    transform: rotate(360deg) translateX(185px) rotate(-360deg);
  }
}

@keyframes circularMotion2 {
  0% {
    transform: rotate(0deg) translateX(180px) rotate(0deg);
  }

  100% {
    transform: rotate(360deg) translateX(180px) rotate(-360deg);
  }
}

/* How work */

/* Notification */

.nottification {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 210px;
}

.nottification__images {
  display: flex;
  flex-direction: column;
  gap: 31px;
}

.nottification__text {
  max-width: 46%;
}

.rates {
  gap: 20px;
}

.rate-content {
  display: flex;
  justify-content: space-between;
  gap: 91px;
}

/* Possibilities */
.possibilities__inner {
  padding: 0 30px;
  /* border-bottom: var(--section-border); */
}

.possibilities__title {
  margin-bottom: 40px;
  text-align: center;
  padding: 0 20px;
}

.possibilities__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 39px;
  padding: 0 94px;
  margin-bottom: 33px;
}

.possibilities__item {
  background-color: rgba(54, 153, 255, 0.07);
  border-radius: 10px;
  padding: 35px 25px 25px;
  min-height: 322px;
  text-align: center;
}

.possibilities__item h4 {
  font-weight: 700;
  margin-top: 16px;
}

.possibilities__item p {
  margin-top: 16px;
}

.possibilities__text {
  text-align: center;
  font-size: 18px;
  color: #676a7c;
}

.possibilities__link {
  color: var(--main-blue);
}

.possibilities__button {
  display: flex;
  justify-content: center;
}


.dev-block {
  display: flex;
  justify-content: center;
}

.develop {
  padding: 3px;
  background-color: #bec1d0;
  width: 180px;
  border-radius: 10px;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
}

/* HOW DOES */
.how-does__inner {
  padding: 57px 0 163px;
  /* border-bottom: var(--section-border); */
}

.how-does__title {
  margin-bottom: 119px;
  max-width: 744px;
}

.how-does__list {
  padding: 0 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 13px;
  counter-reset: myCounter;
}

.how-does__item {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: start;
  padding-top: 90px;
  flex-direction: column;
  border: 3px solid #d9d9d9;
  text-align: center;
  border-radius: 50%;
  position: relative;
  z-index: -2;
}

.how-does__item::before {
  counter-increment: myCounter;
  content: counter(myCounter);
  position: absolute;
  top: 109px;
  left: -50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  font-weight: 500;
  background-color: var(--main-blue);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  color: #fff;
}

.how-does__item:nth-child(odd)::after {
  content: "";
  position: absolute;
  left: -2px;
  top: -3px;
  z-index: -1;
  width: 312px;
  height: 300px;
  background-image: url("../images/arrow-elipse2.svg");
  background-repeat: no-repeat;
  background-position: 0 0;
}

.how-does__item:nth-child(even)::after {
  content: "";
  position: absolute;
  left: -2px;
  bottom: -3px;
  z-index: -1;
  width: 312px;
  height: 300px;
  background-image: url("../images/arrow-elipse1.svg");
  background-repeat: no-repeat;
  background-position: 0 0;
}

.how-does__item:last-child::after {
  content: "";
  display: none;
}

.how-does__img {
  max-width: 70px;
  margin-bottom: 12px;
}

.how-does__img-marketplaces {
  margin-bottom: 6px;
}

.how-does__text {
  font-size: 20px;
  max-width: 206px;
  margin: 0 auto;
}

/* TRY BOT*/
.try_bots {
  display: flex;
  align-items: center;
  flex-direction: column;
}

#loading {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin: 20px 0;
}

#reviewLink {
  width: 65%;
  height: 50px;
  border-radius: 10px;
  border: 1px solid var(--input-border-color);
  background-color: rgba(0, 0, 0, 0);
  padding: 10px;
  color: var(--text-color);
  font-size: 16px;
}

#checkButton {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0s linear 0.5s;
  background-color: var(--main-blue);
  color: white;
  padding: 12px 50px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  width: 200px;
  margin: 20px 0 30px;
}


#checkButton.show {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease-in-out, visibility 0s linear 0s;
}

#checkButton:hover {
  background-color: #5aacff;
}

#checkButton:active {
  background-color: #4D8DFF;
  transform: scale(0.95);
}

#reviewsContainer {
  display: grid;
  padding: 0 194px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

#reviewsContainer.show {
  opacity: 1;
}

.review-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 10px;
  border-radius: 10px;
}

.review-section {
  padding: 20px;
  border-radius: 8px;
  background: rgba(50, 50, 56, 0.4);
  color: #aeafb5;
  font-weight: 100;
}

.review-section h3 {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}

.review-section span {
  font-weight: 300;
  color: var(--span-color);
}

.loader-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.loader {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(34, 64, 96, 0.3);
  border-top-color: var(--main-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite, glow 1.5s ease-in-out infinite alternate;
  box-shadow: 0 0 10px var(--main-blue);
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.loading-text {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 300;
  position: relative;
  letter-spacing: 4px;
  overflow: hidden;
  background: linear-gradient(90deg, #373838, #fff, #373838);
  background-repeat: no-repeat;
  background-size: 80%;
  animation: animate 4s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(255, 255, 255, 0);
}

@keyframes animate {
  0% {
    background-position: -500%;
  }

  100% {
    background-position: 500%;
  }
}

#rev {
  position: relative;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px var(--block-color);
  transition: box-shadow 0.3s ease-in-out;
}

#rev::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: var(--block-color);
  border-radius: 20px;
  filter: blur(30px);
  opacity: 1;
  transform: translate(-50%, -50%);
  z-index: -1;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 10px var(--main-blue);
  }

  100% {
    box-shadow: 0 0 20px var(--main-blue), 0 0 40px rgba(34, 64, 96, 0.7);
  }
}

#reviewsContainer h4 {
  display: flex;
  justify-content: center;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
}

@media (max-width: 1450px) {
  #reviewsContainer {
    padding: 0 65px;
  }
}

@media (max-width: 1100px) {
  #reviewsContainer {
    padding: 0 30px;
  }

  #reviewLink {
    width: 85%;
  }
}

@media (max-width: 850px) {
  #reviewsContainer {
    padding: 0 15px;
  }
}

@media (max-width: 750px) {
  #reviewsContainer {
    padding: 0 15px;
  }

  .review-block {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
    margin-bottom: 29px;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(50, 50, 56, 0.4);
  }

  .review-section {
    padding: 0;
    border-radius: 0;
    background: none;
    color: #aeafb5;
    font-weight: 100;
  }

  .review-section h3 {
    margin-top: 8px;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
  }

  #rev {
    padding: 0;
    position: unset;
    box-shadow: none;
    color: #7fc1e0
  }

  #rev h3 {
    color: #7fc1e0
  }
}

/* TARIFFS */
.tariffs {
  padding: 44px 0 74px;
}

.tariff {
  margin-bottom: 50px;
}

/* .tariff .container {
  max-width: 100%;
} */

.tariffs__title {
  text-align: center;
  margin-bottom: 44px;
}

.tariff__title {
  text-align: center;
  margin-bottom: 44px;
  font-size: 1.75rem;
  font-weight: 300;
}

.tariffs__items {
  /* padding: 0 20px; */
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.tariffs__item {
  padding: 34px 30px 39px;
  /* border: 1px solid var(--input-border-color); */
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 493px;
  min-height: 610px;
  transition: all 400ms cubic-bezier(0.175, 0.885, 0, 1);
  background-color: var(--block-color);
}

.tariffs__item:hover {
  box-shadow: 0px 20px 18px -8px rgb(0 0 0 / 6%);
  transform: scale(1.02, 1.02);
}

.tariffs__item-title {
  margin-bottom: 15px;
  color: var(--span-color);
}

#PRO {
  box-shadow: 0 0 15px var(--blur-border);
}

.tariffs__option-text span {
  font-size: 20px;
  color: var(--span-color);
  font-weight: 100;
}

.custom-divider {
  height: 1px;
  background-color: #4e4f50;
  margin: 15px 0;
  width: 100%;
}

.tarif-info {
  margin-bottom: 10px;
}

.tariffs__options {
  text-align: start;
}

.tariffs__option {
  margin-bottom: 15px;
}

.tariffs__option-text {
  padding-left: 30px;
  position: relative;
}

.tariffs__option-texts {
  padding-left: 54px;
  position: relative;
}

.tariffs__option-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 25px;
  height: 25px;
  background-image: url("../images/mark.png");
}

.tariffs__option-texts::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 25px;
  height: 25px;
  background-image: url("../images/giftt.svg");
}

.tariffs__option-text,
.tariffs__option-texts,
.tariffs__price-period {
  color: var(--text-color);
  font-size: 15px;
}

.tariffs__choice {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}

/* #tariff__weight {
  width: 50%;
} */

.tariffs__price {
  font-size: 35px;
  font-weight: 100;
}

.tariffs__price-period {
  margin-bottom: 28px;
}

.tariffs__btn {
  font-size: 16px;
  max-width: 306px;
  padding: 14px 83px;
  margin: 0 auto;
}

.tariff .tariffs__items {
  justify-content: center;
}

.tariff .tariffs__item {
  /* width: auto; */
  margin: 10px;
  /* z-index: -1; */
}

.table-container {
  display: flex;
  /* align-items: center; */
  padding: 0 25px;
  font-weight: 100;
  width: 100%;
  justify-content: center;
  gap: 50px
}


.table-container::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(93deg, var(--third-blur-logo-color) 0%, var(--second-blur-logo-color) 35%, var(--first-blur-logo-color) 100%);
  filter: blur(95px);
  border-radius: 50%;
  transform: translateY(-50%) scale(1);
  transition: all 5s ease-in-out;
  z-index: -1;
  animation: morph 10s infinite ease-in-out alternate;
  left: 26%;
}

.tariff-cont {
  background-color: var(--block-color);
  padding: 5px 20px;
  margin-bottom: 10px;
  border-radius: 10px;
  /* width: 950px; */
}

.tariff-table {
  border-collapse: collapse;
  width: 100%;
}

.tariff-table th,
.tariff-table td {
  text-align: left;
  padding: 11px 35px;
  color: var(--text-color);
  font-size: 16px;
}

#price {
  color: var(--text-color);
}

.tariff-table th {
  font-size: 16px;
  font-weight: 500
}

.tariff-table tr:not(:last-child) {
  border-bottom: var(--section-border);
  padding: 15px 0;
}

#premium {
  max-width: 100%;
  margin-top: 0;
}

#premium h2 {
  color: var(--span-color);
  font-weight: 100;
  font-size: 40px;
}

#premium h3 {
  color: var(--span-color);
  font-weight: 100;
  font-size: 20px;
  margin-top: 10px;
}


#premium h4 {
  font-weight: 100;
  font-style: italic;
  font-size: 20px;
}

.marks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 13px;
  color: var(--span-color);
}

@media (max-width: 1130px) {
  .marks {
    grid-template-columns: repeat(2, 1fr);
  }
}


#advantage {
  padding: 3px;
  margin: 0;
  text-align: left;
  position: relative;
  padding-left: 30px;
  margin-left: -15px;
  font-size: 16px;
}

#premium .content {
  width: 80%;
}

#advantage::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background-image: url("../images/mark.png");
  background-size: contain;
  background-repeat: no-repeat;
}

#premium .main-btn {
  color: var(--span-color);
  border: 0px solid var(--span-color);
  box-shadow: 0 0 0 0.6px var(--span-color);

}

@media (max-width: 1130px) {
  .marks {
    grid-template-columns: repeat(2, 1fr);
  }

  #advantage {
    margin-left: 80px;
  }

}

@media (max-width: 950px) {
  #advantage {
    margin-left: 55px;
  }

  #premium h4 {
    font-size: 18px;
  }
}

@media (max-width: 890px) {
  #advantage {
    margin-left: 40px;
  }
}

@media (max-width: 850px) {
  #advantage {
    font-size: 14px;
  }
}

@media (max-width: 790px) {
  #premium h3 {
    font-size: 18px;
  }

  #premium {
    height: 400px;
  }
}

@media (max-width: 750px) {
  #premium .content {
    width: 85%;
  }
}

@media (max-width: 705px) {
  #advantage {
    margin-left: 30px;
  }

  #premium h2 {
    font-size: 30px;
  }

  #premium h4 {
    font-size: 16px;
  }

}

@media (max-width: 680px) {
  #advantage {
    margin-left: 20px;
  }
}

@media (max-width: 665px) {
  .marks {
    grid-template-columns: repeat(1, 1fr);
  }

  #advantage {
    margin-left: 26%;
  }

  #premium {
    height: 450px;
  }
}

@media (max-width: 550px) {
  #advantage {
    margin-left: 24%;
  }
}

@media (max-width: 480px) {
  #advantage {
    margin-left: 20%;
  }
}

@media (max-width: 400px) {
  #advantage {
    margin-left: 15%;
  }
}

/* .tariff-table tr {
  position: relative;
  overflow: hidden;
}

.tariff-table tr::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(35, 55, 119, 0.2);
  border-radius: 20px;
  filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 0;
}

.tariff-table tr:hover::before {
  opacity: 1;
}

.tariff-table tr td {
  position: relative;
  z-index: 1; 
} */

@media (max-width: 655px) {

  .tariff-table th,
  .tariff-table td {
    font-size: 14px;
    font-weight: 300;
    padding: 13px 10px;
  }
}

.tooltip-follow {
  position: absolute;
  background-color: #12121380;
  color: white;
  padding: 5px 6px;
  border-radius: 4px;
  font-size: 13px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 1000;
}

/* POSSIBILITIES-ALL */

.possibilities-all {
  padding: 43px 0 120px;
}

.blu {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(93deg, var(--first-blur-logo-color) 0%, var(--second-blur-logo-color) 35%, var(--third-blur-logo-color) 100%);
  filter: blur(95px);
  border-radius: 50%;
  transform: translateY(-50%) scale(1);
  transition: all 5s ease-in-out;
  z-index: -1;
  animation: morph 10s infinite ease-in-out alternate;
  left: 20%;
}

.blu1 {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(93deg, var(--first-blur-logo-color) 0%, var(--second-blur-logo-color) 35%, var(--third-blur-logo-color) 100%);
  filter: blur(95px);
  border-radius: 50%;
  transform: translateY(-50%) scale(1);
  transition: all 5s ease-in-out;
  z-index: -1;
  animation: morph 10s infinite ease-in-out alternate;
  right: 20%;
}

@keyframes morph {
  0% {
    border-radius: 50%;
    transform: translateY(-50%) scale(1.5);
  }

  50% {
    border-radius: 30% 70% 60% 40% / 50% 30% 70% 50%;
    transform: translateY(-40%) scale(1.1);
  }

  100% {
    border-radius: 70% 30% 40% 60% / 30% 60% 40% 70%;
    transform: translateY(-60%) scale(1);
  }
}

.possibilities-all__title {
  text-align: center;
  color: var(--text-color);
  font-weight: 100;
}

.possibilities-all__item {
  min-height: 371px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0 60px;
  padding: 55px;
  border-bottom: var(--section-border);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.possibilities-all__item.visible {
  opacity: 1;
  animation: fadeInUp 1s ease-out forwards;
}

.possibilities-all__item h3 {
  font-weight: 100;
  font-size: 26px;
  margin-bottom: 25px;
}

.possibilities-all__item p {
  max-width: 500px;
  margin-bottom: 20px;
  color: var(--description-color);
  font-weight: 100;
}

.possibilities-all__item img {
  max-width: 700px;
  border-radius: 10px;
}

.possibilities-all__item:last-child {
  border-bottom: none;
}

.possibilities-all__caption {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background-color: rgba(54, 153, 255, 0.6);
  padding: 1px 26px;
  border-radius: 7px;
  display: inline-block;
}

/* QUESTIONS */
.questions {
  padding: 90px 0 50px 0;
}

.questions::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(93deg, var(--second-blur-logo-color) 0%, var(--second-blur-logo-color) 35%, var(--third-blur-logo-color) 100%);
  filter: blur(95px);
  border-radius: 50%;
  transform: translateY(-50%) scale(1);
  transition: all 5s ease-in-out;
  z-index: -1;
  animation: morph 10s infinite ease-in-out alternate;
  left: 20%;
}

.question__title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 35px;
  font-weight: 300;
}

.questions__title {
  text-align: center;
  margin-bottom: 70px;
}

.questions__items {
  margin: 0 auto;
  max-width: 900px;
}

.questions__item {
  border-bottom: var(--section-border);
  cursor: pointer;
  padding: 15px 0;
}

.questions__item:hover .questions__item-icon-wrapper {
  background-color: var(--main-blue);
}

.questions__item:hover .questions__item-icon {
  filter: invert(100%) sepia(1%) saturate(7410%) hue-rotate(314deg) brightness(107%) contrast(100%);
}

.questions__item--active .questions__item-icon-wrapper {
  background-color: var(--main-blue);
  transform: rotate(45deg);
}

.questions__item--active .questions__item-icon {
  filter: invert(100%) sepia(1%) saturate(7410%) hue-rotate(314deg) brightness(107%) contrast(100%);
}

.questions__item-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.questions__item-title {
  font-size: 19px;
  font-weight: 100;
  padding-right: 10px;
  color: var(--text-color);
}

.questions__item-icon-wrapper {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: 0px 2px 32px 6px #3f80c33b;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
}

.questions__item-icon-wrapper,
.questions__item-icon {
  transition: 400ms;
}

.questions__item-text {
  font-size: 19px;
  font-weight: 300;
  padding-right: 5px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms;
  margin-top: 10px;
  color: #9b9fa3;
}

.questions__item-text span {
  color: #3699ff;
}

/* APPLICATION */
.application {
  padding: 16px 0 66px;
}

.application__title {
  text-align: center;
  margin-bottom: 15px;
  font-weight: 100;
}

/* FOOTER */
.footer {
  /* background-color: var(--footer-color); */
  padding: 0 0 27px;
  color: #72757a;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__inner {
  padding: 0 138px;
}

.footer__content {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.footer__about,
.footer__menu-list,
.footer__contact {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.footer__text {
  font-size: 12px;
  font-weight: 400;
}

.footer__menu {
  display: flex;
  gap: 0 16px;
}

/* .footer__menu-item+.footer__menu-item,
.footer__contact-item+.footer__contact-item {
  padding-top: 5px;
} */

.footer__contact-item {
  padding: 0 15px;
  color: var(--text-color);
}

.footer__menu-title,
.footer__contact-title {
  font-size: 13px;
  font-weight: 600;
}

.footer__menu-link,
.footer__contact-link {
  font-size: 16px;
  font-weight: 300;
}

.footer__menu-link:hover,
.footer__contact-link:hover {
  text-decoration: underline;
}

.footer__copyright-text {
  font-size: 12px;
  font-weight: 400;
  text-align: center;
}

.footer-line {
  width: 100%;
}

.social-media {
  display: flex;
  justify-content: center;
  margin-top: -100px;
}

.social-media img {
  padding: 0 10px;
  margin-bottom: 15px;
}

.social-media img:hover {
  animation: shake 1s ease-out forwards;
}

.menu__btn {
  display: none;
  width: 25px;
  height: 23px;
  flex-direction: column;
  justify-content: space-between;
}

.menu__btn span {
  height: 4px;
  border-radius: 10px;
  width: 100%;
  background-color: #676a7c;
  transition: transform 300ms;
}

.menu__btn span:nth-child(2) {
  opacity: 1;
  transition: opacity 900ms;
}

.swiper {
  height: 400px;
  margin-bottom: 50px;
}

.swiper-wrapper {
  width: 60%;
  align-items: center;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px;
}

.slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
  border-radius: 10px;
  background-color: #fafafa;
  box-shadow: 0px 0px 12px 8px rgba(34, 43, 49, 0.2);
}

.custom-table {
  width: 60%;
  margin: 50px auto;
  border-collapse: collapse;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.custom-table th,
.custom-table td {
  padding: 15px;
  text-align: left;
  font-size: 18px;
  color: #333;
}

.custom-table th {
  background-color: #f8f9fa;
  font-weight: bold;
}

.custom-table tr:nth-child(even) {
  background-color: #f2f2f2;
}

.custom-table tr:hover {
  background-color: #e9ecef;
  cursor: pointer;
}

.custom-table td {
  border-bottom: 1px solid #ddd;
}

.custom-table td:last-child {
  border-right: none;
}

.custom-table th:last-child {
  border-right: none;
}

.show-more-btn {
  display: none;
}

/* --------MEDIA QUERIES------------ */
@media (min-width: 3200px) {
  .corner-image {
    display: none;
  }

  .moving-circle {
    display: none;
  }

  .moving-circle1 {
    display: none;
  }

  .moving-circle2 {
    display: none;
  }
}

@media (max-width: 3200px) {
  .corner-image {
    display: block;
    right: 15%;
  }

  .moving-circle {
    display: block;
  }

  .moving-circle1 {
    display: block;
  }

  .moving-circle2 {
    display: block;
  }
}

@media (max-width: 3100px) {
  .corner-image {
    right: 15%;
  }
}

@media (max-width: 3000px) {
  .corner-image {
    right: 15%;
  }
}

@media (max-width: 2900px) {
  .corner-image {
    right: 15%;
  }
}

@media (max-width: 2800px) {
  .corner-image {
    right: 14%;
  }
}

@media (max-width: 2700px) {
  .corner-image {
    right: 14%;
  }
}

@media (max-width: 2600px) {
  .corner-image {
    right: 13%;
  }
}

@media (max-width: 2500px) {
  .corner-image {
    right: 13%;
  }
}

@media (max-width: 2400px) {
  .corner-image {
    right: 12%;
  }
}

@media (max-width: 2300px) {
  .corner-image {
    right: 11%;
  }
}

@media (max-width: 2200px) {
  .corner-image {
    right: 10%;
  }
}

@media (max-width: 2100px) {
  .corner-image {
    right: 8%;
  }
}

@media (max-width: 1800px) {

  .corner-image,
  .moving-circle,
  .moving-circle1,
  .moving-circle2 {
    display: none;
  }

  .tryfree h1 {
    font-size: 25px;
  }

  .tryfree h2 {
    font-size: 25px;
  }

  .tryfree p {
    font-size: 20px;
  }

  .tryfree .main-btn {
    font-size: 20px;
  }
}

@media (max-width: 1440px) {

  .bubble {
    display: none;
  }

  .social-media {
    margin-top: -80px;
  }
}

@media (max-width: 1350px) {
  .top__inner {
    margin-left: 20px;
  }
}

@media (max-width: 1300px) {
  .how-does__title {
    max-width: none;
    margin-bottom: 50px;
  }

  .how-does__list {
    grid-template-columns: repeat(2, 300px);
    justify-content: center;
    gap: 25px 60px;
  }

  .how-does__item::after {
    display: none;
  }

  .tryfree {
    max-width: 90%;
  }

  .possibilities__title,
  .how-does__title {
    text-align: center;
  }

  .top__inner--rates {
    padding: 0 50px;
  }

  .top__link {
    font-size: 17px;
  }

  .nottification {
    padding: 0 50px;
  }

  .nottification__text {
    max-width: 51%;
  }

  .top__title {
    font-size: 42px;
  }

  .top__description {
    padding: 0 50px;
  }

  .rates {
    padding: 0 50px;
  }

  .review-img img {
    max-width: 740px;
  }

  .top__text--rate {
    margin-bottom: 20px;
  }

  .top__text--title {
    margin-bottom: 16px;
  }

  .rate__bottom {
    padding: 0 50px;
  }

  .container_video {
    display: flex;
    flex-direction: column;
  }

  .content_v {
    text-align: center;
  }

  .container_video h2 {
    font-size: 35px;
  }
}

@media (max-width: 1450px) {
  .tariffs__items {
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
  }
}

@media (max-width: 1210px) {


  /* .tariffs__item {
    width: 60%;
  } */

  .top__text--rate {
    font-size: 16px;
  }

  .top__text--title {
    font-size: 22px;
  }

  .rates-content {
    max-width: 480px;
  }

  .top__text {
    font-size: 18px;
  }

  .top__text--rate {
    font-size: 15px;
  }
}

@media (max-width: 1150px) {
  .possibilities-all__item {
    flex-wrap: wrap;
    gap: 30px 0;
    justify-content: center;
  }

  .possibilities-all__item-text {
    order: 2;
    text-align: center;
    flex-basis: 100%;
  }

  .possibilities-all__item-text h3 {
    margin-bottom: 10px;
  }

  .possibilities-all__item p {
    max-width: none;
    padding: 0 10px;
  }

  .footer__inner {
    padding: 0 50px;
  }

  .nottification__images {
    max-width: 440px;
  }

  .top__title--review {
    font-size: 38px;
  }

  .review_link .top__link {
    padding: 11px 15px;
  }

  .review-img img {
    max-width: 690px;
  }

  .top__text--rate {
    font-size: 14px;
  }

  .top {
    padding: 20px 0 40px;
  }

  .top__inner {
    margin: 0;
  }

  .rates-content {
    max-width: 410px;
  }

  .services-blocks {
    gap: 12px;
  }

  .services-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 30px;
    width: 1000px;
  }

  .service-block p {
    width: 100%;
  }

  .service-block h3 {
    padding-bottom: 35px;
  }

  .top__title_left {
    font-weight: 100;
  }

  .pres {
    display: block;
    margin-bottom: 0;
    margin-top: 0;
  }

}

@media (max-width: 1100px) {

  .footer__content {
    flex-wrap: wrap;
    gap: 30px 0;
    text-align: center;
  }

  .footer__contact,
  .footer__menu,
  .footer__about {
    width: 100%;
  }

  .footer__menu {
    justify-content: center;
  }

  .footer__menu-list {
    width: auto;
  }

  .rate-img img {
    max-width: 570px;
  }

  .top__text {
    font-size: 15px;
  }

  .nottification__images {
    max-width: 415px;
  }

  .top__text--rate {
    font-size: 12px;
  }

  .top__title--review {
    font-size: 36px;
  }

  .steps_block h6 {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    font-size: 40px;
    font-weight: 300;
  }

  .steps {
    margin-top: 30px;
    justify-content: center;
  }

  .steps_block h5 {
    display: flex;
    justify-content: center;
    color: #919191;
    font-size: 40px;
    font-weight: 300;
  }

  .btn-step {
    display: none;
  }

  .sidebar h2 {
    display: none;
  }

  .sidebar h3 {
    display: none;
  }

  .steps {
    margin-top: 15px;
    margin-bottom: 50px;
  }

  .social-media {
    margin-top: -60px;
  }
}

@media (max-width: 1060px) {
  .nav {
    gap: 20px;
  }

  .nav a {
    font-size: 14px;
  }

  .logo {
    font-size: 22px;
  }

  .menu__list {
    gap: 0 30px;
  }

  .possibilities__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .tariffs__item:hover {
    transform: none;
    box-shadow: none;
  }

  .top__title {
    font-size: 36px;
  }

  .rates-content {
    max-width: 340px;
  }

  .top__text--rate {
    font-size: 13px;
  }

  .top__title {
    font-size: 32px;
  }

  /* .servi {
    display: none;
  } */
  /* .servis {
    display: block;
  } */
  .servis-icon {
    width: 80px;
    margin-right: 30px;
  }

  .servis-block {
    border-radius: 15px;
    background-color: rgba(54, 153, 255, 0.07);
    padding: 20px;
    margin-top: 2%;
    height: 180px;
    margin-left: 5%;
    margin-right: 5%;
    display: flex;
  }

  .servis-block h2 {
    font-size: 18px;
    font-weight: 500;
    color: #676A7C;
  }

  .servis-block h3 {
    font-size: 16px;
    font-weight: 500;
  }

  .servis-block h4 {
    padding-left: 20px;
    font-size: 20px;
    font-weight: 500;
  }

  .possibilities__title {
    margin-bottom: 25px;
  }


}

@media (max-width: 1150px) {
  .box-content h2 {
    font-size: 16px;
  }

  .box-content p {
    font-size: 15px;
  }

  .tryfree h1 {
    font-size: 23px;
  }

  .tryfree h2 {
    font-size: 20px;
  }

  .tryfree p {
    font-size: 15px;
  }

  .tryfree .main-btn {
    font-size: 18px;
    border: 1px solid;
  }

  .container_feedback img {
    width: 400px;
    margin-bottom: -15px;
  }

  .questions__items {
    padding: 0 12px;
  }

  .title,
  .advantages h1,
  .container_feedback h1,
  .steps_block h6,
  .steps_block h5 {
    font-size: 30px;
  }

  .block-step h3 {
    font-size: 18px;
  }

  .questions__item-title {
    font-size: 16px;
  }

  .questions__item-text {
    font-size: 16px;
  }

  .questions__item {
    border: none;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0px 2px 32px 6px rgba(36, 36, 36, 0.07);
    margin-bottom: 15px;
  }

  .questions__item-block {
    padding: 0;
  }

  .questions__item-icon-wrapper {
    width: 30px;
    height: 30px;
    box-shadow: none;
  }

  .questions__item-icon {
    width: 15px;
    height: 15px;
  }

  .top__inner {
    justify-content: center;
  }

  .top__title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .top__content {
    flex-basis: 700px;
    margin-right: 0;
    text-align: center;
  }

  .top__text {
    font-size: 17px;
    padding: 10px;
    margin-bottom: 20px
  }

  .top__link {
    margin: 0 auto;
  }

  .top__img {
    display: none;
  }

  .screen_laptop {
    display: flex;
    justify-content: center;
  }

  .top__img_screen {
    display: block;
    width: 700px;
  }

  .top__inner--rates {
    flex-direction: column;
  }

  .rates-content {
    max-width: 100%;
    flex-basis: auto;
  }

  .nottification {
    flex-direction: column-reverse;
    margin-bottom: 100px;
    /* align-items: normal; */
  }

  .nottification__text {
    max-width: 100%;
  }

  .nottification.container {
    padding: 0 50px;
  }

  .rate-img {
    align-self: center;
  }

  .rate-img img {
    max-width: 700px;
  }

  .rates {
    flex-direction: column;
  }

  .review-img {
    align-self: center;
    margin-bottom: 50px;
  }

  .rate-content {
    display: block;
  }

  .advantages::before {
    height: 200px;
    width: 200px;
  }

  .image_main {
    display: none;
  }

  .top__content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;

  }

  .top__title_left {
    font-size: 30px;
    text-align: center;
    margin-top: 90px;
    padding: 0 20px;
  }

  .top_price {
    font-size: 20px;
    text-align: center;
    margin-top: 30px;
    padding: 0 20px;
  }

  .ball10 {
    display: none;
  }

  .header__inner {
    padding: 10px 0 15px;
  }

  .container_video h2 {
    font-size: 30px;
  }

  .application {
    padding-top: 30px;
  }

  .top__textt {
    padding: 10px 20px;
    font-size: 17px;
    margin-bottom: 10px;
  }

  .possibilities-all__title {
    padding: 0 10px;
  }
}
@media (max-width: 1045px) {
  .tariffs__item{
    width: 400px;
  }
}
@media (max-width: 956px) {
  .services-blocks {
    gap: 15px;
  }

  .service-block h3 {
    padding-bottom: 30px;
    padding-left: 28%;
    font-size: 16px;
  }

  .service-icon {
    height: 70px;
    bottom: 117px;
  }

  .service-block {
    height: 185px;
  }
}

@media (max-width: 700px) {
  #img_ozon {
    display: none;
  }
}

@media (max-width: 850px) {
  .services-blocks {
    gap: 12px;
  }

  .service-block h3 {
    padding-bottom: 20px;
    padding-left: 31%;
    font-size: 16px;
  }

  .service-icon {
    height: 62px;
    bottom: 129px;
  }

  .service-block {
    height: 185px;
  }

  .social-media {
    margin-top: -40px;
  }
}

@media (max-width: 870px) {
  .tariffs__item{
    width: 350px;
  }
}

@media (max-width: 830px) {
  .service-block p {
    font-size: 15px;
  }

  .service-block h3 {
    padding-bottom: 16px;
  }
}

@media (max-width: 770px) {
  .tariffs__item{
    width: 300px;
  }
}


@media (max-width: 768px) {
  .steps::before {
    bottom: -540%
  }

  .top__img_screen {
    width: 600px;
  }

  /* .logo__img {
    width: 10px;
  } */

  .top__title {
    margin-top: 50px;
    padding: 10px;
  }

  .menu {
    margin: 0;
    padding: 0;
    border: none;
  }

  .menu__btn {
    display: flex;
    position: fixed;
    right: 18px;
    top: 29px;
    z-index: 99999999;
    width: 20px;
    height: 19px;
  }

  .menu__list {
    display: block;
    position: fixed;
    z-index: 999999;
    padding: 10px 0;
    background-color: #fff;
    left: 0;
    right: 0;
    transform: translateY(-200%);
    transition: transform 300ms ease-in-out;
    opacity: 1;
    top: 0;
  }

  .menu__link {
    font-weight: 700;
    font-size: 16px;
    color: #5E6278;
    display: block;
    text-align: center;
    padding: 15px;
  }

  #first {
    margin-top: 40px;
  }

  .container {
    padding: 0;
  }

  .btn-send {
    display: grid;
    justify-content: center;
    margin-top: 10px;
  }

  .btn-send .btn-servis {
    margin: 0;
    font-size: 16px;
  }

  .menu__item .send {
    display: none;
  }

  .btn-servis {
    display: flex;
    font-size: 15px;
    font-weight: 600;
    margin-left: 18px;
    margin-top: 15px;
    color: #3699ff;
    padding: 10px;
    border-radius: 10px;
    border: 2px solid #3699ff;
  }

  .btn-servis:hover {
    color: var(--hover-btn);
    border: 2px solid var(--hover-btn)
  }

  /* .tg {
    padding-top: 5px;
  }
  
  .email {
    padding-top: 0;
  }
   */

  .header__logo-item {
    padding-top: 7px;
  }

  .menu__list.menu__list--active {
    transform: translateY(7%);
    height: 100%;
  }

  .menu__list.menu__list--active .menu__link:hover {
    color: #3699ff;
  }

  .menu__list.menu__list--active .menu__link--active {
    color: #3699ff;
    text-decoration: underline;
  }

  .menu__btn.menu__btn--active span:nth-child(2) {
    opacity: 0;
    transition: opacity 0s;
  }

  .menu__btn.menu__btn--active span:first-child {
    transform: translateY(13px) rotate(-135deg);
  }

  .menu__btn.menu__btn--active span:last-child {
    transform: translateY(-13px) rotate(135deg);
  }

  .header__contacts-phone {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
  }

  .header_btn_menu {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .header_btn_menu .header__contacts-link {
    padding: 10px;
  }

  .header_btn_menu .header__contacts-img--phone {
    filter: brightness(0) saturate(100%) invert(48%) sepia(24%) saturate(3395%) hue-rotate(192deg) brightness(103%) contrast(101%);
    height: 29px;
    margin-bottom: 0;
  }

  .header__contacts-img--phone {
    filter: brightness(0) saturate(100%) invert(48%) sepia(24%) saturate(3395%) hue-rotate(192deg) brightness(103%) contrast(101%);
    height: 29px;
    margin-bottom: 0;
  }

  .header__contacts-item {
    display: none;
  }

  .header__contacts-num>span {
    display: none;
  }

  .possibilities-all__item img {
    max-width: 500px;
  }

  .possibilities__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px 0;
  }

  .possibilities__item {
    min-height: 280px;
  }

  .possibilities__item h4 {
    margin-bottom: 0;
  }

  .how-does__list {
    grid-template-columns: 300px;
    gap: 25px 0;
  }

  .how-does__inner {
    padding-bottom: 100px;
  }

  .tariffs__item {
    width: 90%;
  }

  .tryfree {
    height: 295px;
    margin-top: 20px;
  }

  .top__link {
    margin-bottom: 0;
    padding: 10px 27px;
  }

  .menu__sublist {
    position: static !important;
    width: auto !important;
    box-shadow: none !important;
    z-index: 3;
    padding: 0 !important;
    padding-top: 13px !important;
    height: 90px !important;
  }

  .menu__sublist-link {
    color: #676a7c !important;
    transition: color 0.3s ease-in-out;
    font-size: 14px !important;
    font-weight: 400 !important;
  }

  .menu__sublist-link:hover {
    color: #3699ff !important;
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }

  .container_p {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center
  }

  .advantages::before {
    height: 500px;
    width: 350px;
    top: 50%;
    left: 0;
  }

  .container_feedback img {
    width: 400px;
    margin-bottom: -15px;
  }

  .box:hover .box-border {
    transform: none;
  }

  /* .logo__img {
    display: none;
  } */

  .header__logo-img {
    display: block;
    height: 26px;
    width: 26px;
  }


}

@media (max-width: 720px) {
  .service-block {
    height: 230px;
  }

  .service-block h3 {
    padding-left: 33%;
    font-size: 20px;
  }

  .service-icon {
    bottom: 145px;
  }
}

@media (max-width: 692px) {
  .service-block h3 {
    padding-left: 33%;
    font-size: 18px;
  }

  .service-icon {
    bottom: 160px
  }

  .social-media {
    margin-top: -20px;
  }
}

@media (max-width: 655px) {
  .service-block h3 {
    padding-left: 37%;
    font-size: 16px;
  }
}

@media (max-width: 607px) {
  .service-block p {
    font-size: 14px;
  }

  .service-block h3 {
    padding-left: 33%;
    font-size: 15px;
  }

  .service-icon {
    height: 50px;
  }
}


@media (max-width: 590px) {

  .hidden-box {
    display: none;
  }

  .top__img_screen {
    width: 500px;
  }

  .show-more-btn,
  .show-less-btn {
    display: block;
    margin: 10px auto;
    padding: 10px 20px;
    color: #676A7C;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    text-decoration-line: underline;
  }

  .advantages::before {
    height: 300px;
    width: 300px;
  }

  .footer__inner {
    padding: 0 70px;
  }

  .footer__menu {
    display: none;
    flex-wrap: wrap;
    gap: 30px 0;
  }

  .footer__contact-link {
    font-size: 13px;
  }

  .possibilities-all__item {
    padding: 38px 10px;
  }

  .possibilities-all__item-text p {
    font-size: 14px;
  }

  .possibilities-all__item-text h3 {
    font-size: 22px;
    padding: 0 10px;
  }

  .possibilities-all__item img {
    max-width: 400px;
  }

  .top__title {
    font-size: 25px;
  }

  .top {
    padding: 25px 0;
  }

  .possibilities__list {
    padding: 0 60px;
  }

  .how-does__list {
    grid-template-columns: 250px;
  }

  .how-does__item {
    padding-top: 60px;
    height: 250px;
  }

  .how-does__item::before {
    top: 70px;
  }

  .how-does__text {
    font-size: 14px;
    max-width: 170px;
  }

  .tariffs__item {
    width: 100%;
  }

  .tariffs__items {
    padding: 0 30px;
  }

  .tariffs__btn {
    padding: 14px 50px;
  }

  .review-img img {
    max-width: 520px;
  }

  .rate-img img {
    max-width: 390px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }

  .container_p {
    grid-template-columns: repeat(1, 1fr);
  }

  .container_feedback img {
    width: 320px;
    margin-bottom: -10px;
  }

  .block-step {
    flex-direction: column;
  }

  .block-step .description {
    min-width: 220px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: left;
  }

  .block-step {
    margin: 20px;
  }

  .block-step p {
    margin-left: 0;
    margin-top: 15px;
  }

  .block-step h4 {
    padding-left: 20px;
    padding-right: 20px;
    margin-right: 10px;
  }

  .container_feedback {
    margin-bottom: 50px;
  }

  .block-step h3 {
    font-size: 16px;
  }

  .block-step p {
    font-size: 15px;
  }

  .servis-block p {
    font-size: 14px;
  }

  .servis-block {
    height: 200px;
  }

  .box-border {
    border: 0.1px solid #d1d1d1;
  }

  .tariffs__item-top h4 {
    font-size: 25px;
  }

  .tariffs__option-text,
  .tariffs__option-texts,
  .tariffs__price-period {
    font-size: 17px;
  }

  .tariffs__price {
    font-size: 30px;
  }
}

@media (max-width: 560px) {
  .service-block p {
    font-size: 14px;
  }

  .service-block h3 {
    padding-left: 33%;
    font-size: 14px;
  }

  .service-icon {
    height: 45px;
  }

  .tryfree h2 {
    font-size: 16px;
  }

  .tryfree .content {
    width: 350px;
  }

  .tryfree {
    height: 250px;
  }

  .tryfree .main-btn {
    font-size: 16px;
  }

  .social-media {
    margin-top: 0px;
    flex-wrap: wrap;
    padding: 0 20px;
  }

}


@media (max-width: 545px) {

  .review_link {
    flex-direction: column;

  }

  .review_link .top__link {
    width: 280px;
    margin-top: 10px;
    margin-right: 0;
  }

  .logo__img {
    width: 140px;
  }
}

@media (max-width: 522px) {
  .services-blocks {
    grid-template-columns: repeat(1, 1fr);
  }

  .service-block {
    height: 200px;
  }

  .service-block p {
    font-size: 16px;
  }

  .service-block h3 {
    padding-left: 26%;
    font-size: 19px;
    padding-bottom: 35px;
  }

  .service-icon {
    height: 75px;
    bottom: 125px;
  }

  #reviewLink {
    font-size: 14px;
  }

  .ps {
    font-size: 14px;
    padding: 0 10px;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .service-block {
    height: 200px;
  }

  .service-block p {
    font-size: 15px;
  }

  .service-block h3 {
    padding-left: 30%;
    font-size: 18px;
    padding-bottom: 35px;
  }

  .service-icon {
    height: 65px;
    bottom: 125px;
  }

  .tariffs__item {
    padding: 34px 32px 39px;
  }

  .top__title_left {
    margin-top: 100px;
  }
}

@media (max-width: 460px) {
  .service-block {
    height: 200px;
  }

  .service-block p {
    font-size: 15px;
  }

  .service-block h3 {
    padding-left: 27%;
    font-size: 16px;
    padding-bottom: 40px;
  }

  .service-icon {
    height: 60px;
    bottom: 125px;
  }
}

@media (max-width: 450px) {
  .tariffs__option-text {
    font-size: 16px;
  }

  .top__img_screen {
    width: 380px;
  }

  .tariffs__price {
    font-size: 30px;
  }

  .tariffs__items {
    padding: 0 10px;
  }

  .tariffs__item {
    padding: 34px 25px 39px;
  }

  .title {
    font-size: 25px;
  }

  .possibilities-all__item img {
    max-width: 300px;
  }

  .top {
    /* padding-top: 50px; */
    padding-bottom: 50px !important;
  }

  .top__link {
    font-size: 16px;
    padding: 15px 25px;
  }

  .possibilities__list {
    padding: 0 20px;
  }

  .how-does__list {
    grid-template-columns: 200px;
  }

  .how-does__item {
    height: 200px;
  }

  .how-does__item::before {
    width: 60px;
    height: 60px;
    top: 65px;
    left: -31px;
    font-size: 30px;
  }

  .how-does__img {
    max-width: 50px;
  }

  .how-does__text {
    max-width: 150px;
  }

  .review-img {
    width: 100%;
    position: relative;
    overflow: hidden;
    width: 280px;
    height: 386px;
    -webkit-box-shadow: 5px 1px 8px -4px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 5px 1px 8px -4px rgba(34, 60, 80, 0.2);
    box-shadow: 5px 1px 8px -4px rgba(34, 60, 80, 0.2);
  }

  .rate-img {
    width: 100%;
    position: relative;
    overflow: hidden;
    width: 380px;
    /* -webkit-box-shadow: 5px 1px 8px -4px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 5px 1px 8px -4px rgba(34, 60, 80, 0.2);
    box-shadow: 5px 1px 8px -4px rgba(34, 60, 80, 0.2); */
  }

  .rate-img img {
    max-width: 382px;
  }

  .top__title {
    font-size: 26px;
  }

  .top__inner--rates {
    padding: 0 50px;
  }

  .top__inner--rates {
    padding: 0px 10px;
  }

  .nottification {
    padding: 0 20px;
  }

  .top__description {
    padding: 0px 12px;
  }

  .rates {
    padding: 0 12px;
  }

  .rate__bottom {
    padding: 0px 12px;
  }

  .footer__inner {
    padding: 0px 12px;
  }

  .image_main {
    width: auto;
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }

  .container_feedback img {
    width: 280px;
    margin-bottom: -10px;
  }

  .container_feedback img:nth-child(odd) {
    margin-bottom: 5%;
  }

  .servis-icon {
    width: 50px;
  }

  .servis-block p {
    font-size: 13px;
  }

  .servis-block h4 {
    font-size: 16px;
  }

  .servis-block {
    height: 220px;
  }

  .container_video h2 {
    font-size: 25px;
  }

  .rate-img {
    width: 322px;
  }

  .nottification__images {
    max-width: 353px;
  }
}

@media (max-width: 440px) {
  #reviewLink {
    font-size: 12px;
  }
}

@media (max-width: 410px) {
  .service-block {
    height: 200px;
  }

  .service-block p {
    font-size: 15px;
  }

  .service-block h3 {
    padding-left: 27%;
    font-size: 15px;
    padding-bottom: 40px;
  }

  .service-icon {
    height: 55px;
    bottom: 125px;
  }

  #reviewLink {
    font-size: 12px;
  }

  .blu,
  .blu1 {
    width: 150px;
  }
}

@media (max-width: 380px) {
  .servis-block {
    height: 220px;
  }

  .servis-block h4 {
    margin-top: 20px;
  }

  .rate-img {
    width: 348px;
  }

  .rate-img img {
    max-width: 351px;
  }

  .tryfree h1 {
    font-size: 18px;
    font-weight: 300;
  }

  .tryfree h2 {
    font-size: 16px;
  }

  .tryfree .content {
    width: 250px;
  }

  .tryfree p {
    font-size: 14px;
  }

  .tryfree {
    height: 250px;
  }

  .tryfree .main-btn {
    font-size: 16px;
  }

  #reviewLink {
    font-size: 12px;
  }
}

@media (max-width: 375px) {
  .service-block h3 {
    padding-left: 27%;
    font-size: 19px;
    padding-bottom: 11px;
  }

  .service-block p {
    font-size: 14px;
  }

  .wanna .main-btn {
    padding: 5px 50px;
    font-size: 15px;
  }
}

@media (max-width: 350px) {
  .rate-img {
    width: 322px;
  }

  .rate-img img {
    max-width: 325px;
  }

  .container_feedback img:nth-child(odd) {
    margin-left: 12%;
  }

  .container_feedback img:nth-child(even) {
    margin-left: -12%;
  }

}

.select-list {
  cursor: pointer;
  position: relative;
}

/* .select-list::after {
  transform: rotate(90deg);
  display: inline-block;
  content: ">";
  margin-left: 6px;
} */

.menu__sublist {
  z-index: 3;
  position: absolute;
  top: 26px;
  left: -80%;
  border-radius: 10px;
  width: 369px;
  height: 135px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25), 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: #fff;
  padding: 21px 13px;
  display: none;
  flex-direction: column;
  gap: 8px;
}

.menu__sublist--active {
  display: flex;
}

.menu__sublist-link {
  font-weight: 300;
  font-size: 16px;
  color: #676a7c;
  transition: color 0.5s ease;
}

.menu__sublist-link:hover {
  color: #3699ff;
}


@media (max-width: 370px) {
  .top__img_screen {
    width: 300px;
  }

  .servis-block {
    height: 250px;
  }

  .service-block h3 {
    padding-left: 35%;
    font-size: 16px;
    padding-bottom: 11px;
  }

  .service-block p {
    font-size: 14px;
  }
}

@media (max-width: 342px) {
  .service-block h3 {
    padding-left: 35%;
    font-size: 15px;
    padding-bottom: 15px;
  }

  .service-block p {
    font-size: 13px;
  }
}

#reviewLink {
  margin-top: 30px;
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid var(--input-border-color);
  border-radius: 5px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
}

#reviewLink:focus {
  border-color: rgba(139, 178, 221, 0.3);
  box-shadow: 0 0 5px rgba(139, 178, 221, 0.3);
}

.link_input {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center
}

.container_google {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loading {
  display: none;
  font-size: 14px;
  color: #007bff;
  margin-top: 10px;
}

.mp_logo {
  margin-top: 20px;
}

.mp__ozon,
.mp__wb,
.mp__ym,
.mp__mm {
  vertical-align: baseline;
  margin-right: 15px;
  border-radius: 10px;
}

.mp__ozon:hover {
  box-shadow: 0 0 15px 5px #4D8DFF;
}

.mp__wb:hover {
  box-shadow: 0 0 15px 5px #AC57B0;
}

.mp__ym:hover {
  box-shadow: 0 0 15px 5px #C2AB00;
}

.mp__mm:hover {
  box-shadow: 0 0 15px 5px #4FB8AF;
}

.info_for_user {
  width: 900px;
  margin-bottom: 10px;
  font-weight: 300;
}

.link_doc {
  color: #3699ff;
}

#submitButton {
  background-color: #3699ff;
  color: white;
  padding: 12px 35px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 200px;
  margin-bottom: 10px;
}

#submitButton:hover {
  background-color: #007bff;
}

#submitButton:active {
  background-color: #4D8DFF;
  transform: translateY(0);
}

.des {
  width: 950px;
  text-align: center
}

@media (max-width: 1050px) {
  .info_for_user {
    width: 800px;
  }

  #reviewLink {
    width: 800px;
  }
}

@media (max-width: 940px) {
  .des {
    width: 800px;
    text-align: center;
  }
}

@media (max-width: 940px) {
  .des {
    width: 750px;
  }

  .info_for_user {
    width: 750px;
  }

  #reviewLink {
    width: 750px;
  }
}

@media (max-width: 1150px) {
  .nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(16, 16, 18, 0.95);
    text-align: center;
    padding-top: 14vh;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    transform: translateY(-100%);
    z-index: 1000;
    gap: 10px;
  }

  .nav a {
    display: block;
    padding: 15px;
    font-size: 20px;
    color: white;
  }

  .burger {
    display: block;
    font-size: 25px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    color: var(--description-color);
  }

  .nav.active {
    transform: translateY(0);
    display: flex;
    align-items: center;
  }

  body.menu-open {
    overflow: hidden;
  }

  .header {
    position: fixed;
    top: 0px;
    z-index: 999999999;
    padding: 14px 20px;
    justify-content: space-between;
    background: var(--bg-color)
  }

  .phone {
    display: none;
  }

  .phone1 {
    background-color: var(--main-blue);
    padding: 8px 22px;
    width: 250px;
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 200;
    transition: 500ms
  }

  .phone1:hover {
    background-color: var(--hover-btn);
  }

  body.menu-open,
  html.menu-open {
    height: 100vh;
    overflow: hidden;
  }

  .logo__img {
    width: 145px;
  }

  .possibilities-all__title {
    margin-top: 70px;
  }

  .application__title {
    margin-top: 110px;
    margin-bottom: 30px;
  }

  .blu {
    width: 150px
  }

  .login {
    display: none;
  }

  .nav .theme-toggle {
    display: block;
    margin: 0;
    margin-top: 10px;
  }

}



@media (max-width: 780px) {
  .des {
    width: 700px;
  }

  .info_for_user {
    width: 700px;
  }

  #reviewLink {
    width: 700px;
  }
}

@media (max-width: 735px) {
  .des {
    width: 600px;
  }

  .info_for_user {
    width: 600px;
  }

  #reviewLink {
    width: 600px;
  }
}

@media (max-width: 760px) {
  .des {
    width: 500px;
  }

  .info_for_user {
    width: 500px;
  }

  #reviewLink {
    width: 500px;
  }
}

@media (max-width: 530px) {
  .des {
    width: 400px;
  }

  .info_for_user {
    width: 400px;
  }

  #reviewLink {
    width: 400px;
  }
}

@media (max-width: 450px) {
  .des {
    width: 350px;
  }

  .info_for_user {
    width: 350px;
  }

  #reviewLink {
    width: 350px;
    font-size: 13px;
  }

  .top__title {
    padding: 10px;
  }

  .nav a {
    font-size: 17px;
  }

}

@media (max-width: 380px) {
  .des {
    width: 300px;
    font-size: 15px;
  }

  .info_for_user {
    width: 300px;
  }

  #reviewLink {
    width: 300px;
    font-size: 12px;
  }
}

@media (max-width: 330px) {
  .des {
    width: 280px;
  }

  .info_for_user {
    width: 280px;
  }

  #reviewLink {
    width: 280px;
  }
}

#api {
  z-index: 1;
  animation: motion1 70s ease-in-out infinite;
}

@media (max-width: 1850px) {
  #api {
    left: 1%;
  }
}

@keyframes motion1 {
  0% {
    transform: translate(1px, 100px);
  }

  50% {
    transform: translate(100px, 250px);
  }

  100% {
    transform: translate(1px, 100px);
  }
}

.conteiner_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(to bottom, #ffffff, #ddeaff);
  margin-top: 50px;
  padding-bottom: 100px;
}

.block_info {
  background-color: #ffffff;
  border: 1px solid #c6c7c7;
  border-radius: 8px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 500px;
  height: 230px;
  margin-bottom: -30px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 2s ease-out, transform 2s ease-out;
}

.block_info.show {
  opacity: 1;
  transform: translateY(0);
}

.block_info:nth-child(odd) {
  margin-left: 550px;
}

.block_info:nth-child(even) {
  margin-right: 550px;
}

.block_info h3 {
  font-size: 28px;
  font-weight: 400;
  padding-bottom: 20px;
}

@media (max-width: 1100px) {
  .block_info {
    width: 420px;
  }

  .block_info h3 {
    font-size: 24px;
  }

  .block_info p {
    font-size: 15px;
  }

  .block_info:nth-child(odd) {
    margin-left: 500px;
  }

  .block_info:nth-child(even) {
    margin-right: 500px;
  }
}

@media (max-width: 950px) {
  .block_info {
    width: 450px;
    margin-bottom: 10px;
  }

  .block_info h3 {
    font-size: 22px;
  }

  .block_info p {
    font-size: 15px;
  }

  .block_info:nth-child(odd) {
    margin-left: 400px;
  }

  .block_info:nth-child(even) {
    margin-right: 400px;
  }
}

@media (max-width: 880px) {
  .block_info {
    width: 400px;
    margin-bottom: 10px;
  }

  .block_info h3 {
    font-size: 22px;
  }

  .block_info p {
    font-size: 15px;
  }

  .block_info:nth-child(odd) {
    margin-left: 350px;
  }

  .block_info:nth-child(even) {
    margin-right: 350px;
  }
}


@media (max-width: 768px) {
  .container_info {
    grid-template-columns: 1fr;
  }

  .block_info {
    width: 500px;
    grid-column: 1;
  }

  .block_info:nth-child(odd) {
    margin-left: 0;
  }

  .block_info:nth-child(even) {
    margin-right: 0;
  }

  .conteiner_info {
    padding-bottom: 50px;
  }
}

@media (max-width: 550px) {
  .container_info {
    grid-template-columns: 1fr;
  }

  .block_info {
    width: 400px;
    grid-column: 1;
  }
}

@media (max-width: 420px) {
  .block_info {
    width: 340px;
  }

  .block_info p {
    font-size: 13px
  }

  .steps::before {
    width: 100px;
  }
}

@media (max-width: 350px) {
  .block_info {
    width: 300px;
  }

  .block_info p {
    font-size: 13px
  }

  .block_info h3 {
    font-size: 20px
  }
}

.analiz {
  display: flex;
  justify-content: space-evenly;
  height: 400px;
  padding: 60px;
}


.chart-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  width: 400px;
}

.chart {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: flex-end;
  padding-left: 20px;
  margin-bottom: 20px;
  justify-content: center;
  height: 180px;
}

.bar {
  width: 30px;
  height: 0;
  background-color: #A8CAFF;
  transform-origin: bottom;
  transition: height 1s ease;
}

.animate .bar-1 {
  height: 60px;
}

.animate .bar-2 {
  height: 100px;
}

.animate .bar-3 {
  height: 150px;
}

.animate .bar-4 {
  height: 200px;
}

.axis-x,
.axis-y {
  position: absolute;
  background-color: #A8CAFF;
}


.axis-y {
  left: 0;
  bottom: 0;
  width: 2px;
  height: 210px;
}

.axis-x {
  left: 0;
  bottom: 0;
  width: 250px;
  height: 2px;
}

.chart-text {
  text-align: center;
  font-size: 18px;
}

@media (max-width: 768px) {
  .axis-y {
    height: 150px;
  }

  .axis-x {
    width: 150px;
  }

  .bar {
    width: 20px;
  }

  .animate .bar-1 {
    height: 60px;
  }

  .animate .bar-2 {
    height: 100px;
  }

  .animate .bar-3 {
    height: 120px;
  }

  .animate .bar-4 {
    height: 150px;
  }

  .chart-text {
    font-size: 14px;
  }

  .chart-container {
    width: 250px;
  }

  .chart {
    gap: 15px;
    padding-left: 15px;
  }
}

@media (max-width: 545px) {
  .phone {
    padding: 8px 15px;
    font-size: 14px;
  }

  .logo {
    font-size: 16px;
  }

  .servi::before,
  .questions::before {
    width: 100px
  }

  .content_v p {
    font-size: 16px;
  }
}

@media (max-width: 550px) {
  .footer__contact {
    flex-direction: column;
  }

  .axis-y {
    height: 150px;
  }

  .axis-x {
    width: 150px;
  }

  .bar {
    width: 20px;
  }

  .animate .bar-1 {
    height: 60px;
  }

  .animate .bar-2 {
    height: 100px;
  }

  .animate .bar-3 {
    height: 120px;
  }

  .animate .bar-4 {
    height: 150px;
  }

  .chart-text {
    font-size: 14px;
  }

  .chart-container {
    width: 250px;
  }
}

@media (max-width: 480px) {
  .axis-y {
    height: 120px;
  }

  .axis-x {
    width: 120px;
  }

  .bar {
    width: 15px;
  }

  .animate .bar-1 {
    height: 60px;
  }

  .animate .bar-2 {
    height: 90px;
  }

  .animate .bar-3 {
    height: 110px;
  }

  .animate .bar-4 {
    height: 130px;
  }

  .chart {
    gap: 12px;
    padding-left: 12px;
  }

  .analiz {
    padding: 40px;
  }

  .chart-container {
    margin-top: 0;
    width: 200px;
  }
}


.circle-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 300px;
  width: 100%;
  height: auto;
  height: 290px;
}

.progress-circle {
  width: 80%;
  max-width: 230px;
  transform: rotate(-90deg);
  padding-left: 20px;
}

.circle-bg {
  fill: none;
  stroke: #e0e0e0;
  stroke-width: 20;
}

.circle-progress {
  fill: none;
  stroke: #A8CAFF;
  stroke-width: 20;
  stroke-dasharray: 691.15;
  stroke-dashoffset: 691.15;
  transition: stroke-dashoffset 1s ease;
}

.circle-text {
  text-align: center;
  font-size: 18px;
  margin-top: 10px;
  max-width: 90%;
}

@media (max-width: 768px) {
  .circle-container {
    max-width: 200px;
    height: 280px;
  }

  .circle-text {
    font-size: 14px;
  }

  .circle-bg,
  .circle-progress {
    stroke-width: 17;
  }

  .progress-circle {
    padding: 0;
  }
}

@media (max-width: 520px) {
  .circle-container {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .circle-container {
    max-width: 170px;
    margin-top: 0;
    height: 241px;
  }

  .circle-text {
    margin-top: 0;
  }

  .progress-circle {
    margin-top: 25px;
  }
}

@media (max-width: 430px) {
  .analiz {
    padding: 20px;
  }

}

.container_edin {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.edin {
  display: inline;
  font-size: 35px;
  font-weight: 200;
  text-align: center;
  /* white-space: nowrap; */
  padding: 15px;
}

.edin span {
  color: #3699ff;
}

@media (max-width: 880px) {
  .edin {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .edin {
    font-size: 25px;
  }
}

@media (max-width: 660px) {
  .edin {
    font-size: 20px;
  }
}

/* @media (max-width: 450px) {
  .edin {
    font-size: 18px;
  }
} */

/* @media (max-width: 390px) {
  .edin {
    font-size: 16px;
  }
} */

@media (max-width: 350px) {
  .edin {
    font-size: 16px;
  }

  .analiz {
    padding: 10px;
  }

  .progress-circle {
    width: 65%;
  }

  .axis-y {
    height: 100px;
  }

  .axis-x {
    width: 100px;
  }

  .bar {
    width: 12px;
  }

  .animate .bar-1 {
    height: 40px;
  }

  .animate .bar-2 {
    height: 60px;
  }

  .animate .bar-3 {
    height: 80px;
  }

  .animate .bar-4 {
    height: 100px;
  }

  .chart {
    height: 170px;
    margin-bottom: 30px;
  }

  .chart-text {
    font-size: 12px;
  }

  .circle-text {
    font-size: 12px;
  }

  .circle-container {
    height: 235px;
  }

  .progress-circle {
    max-width: 120px;
  }

  .chart-container {
    width: 300px;
  }
}

.btn-discuss {
  margin-top: 10px;
  padding: 3px 30px;
  background-color: #fff;
  color: #77b0ed;
  border-radius: 10px;
  border: 3px solid #fff;
  cursor: pointer;
  font-size: 22px;
}

.btn-discuss:hover {
  background-color: #f3f8fd;
  border: 3px solid #f3f8fd;
  color: #b5cff7;
}

@media (max-width: 1000px) {
  .btn-discuss {
    font-size: 20px;
  }

  .tariff-cont {
    width: 100%;
  }
}

@media (max-width: 800px) {
  .btn-discuss {
    font-size: 18px;
  }
}

@media (max-width: 550px) {
  #api-try.tryfree h1 {
    font-size: 22px;
  }

  #api-try.tryfree .content {
    width: 380px;
  }

  .btn-discuss {
    border-radius: 5px;
  }
}

@media (max-width: 470px) {
  #api-try.tryfree h1 {
    font-size: 21px;
  }

  #api-try.tryfree .content {
    width: 350px;
  }
}

@media (max-width: 450px) {
  #api-try.tryfree h1 {
    font-size: 20px;
  }

  #api-try.tryfree p {
    font-size: 16px;
  }

  #api-try.tryfree .content {
    width: 300px;
  }
}

@media (max-width: 410px) {
  #api-try.tryfree h1 {
    font-size: 18px;
  }

  #api-try.tryfree p {
    font-size: 16px;
  }

  #api-try.tryfree {
    height: 350px;
  }

  .btn-discuss {
    font-size: 15px;
  }
}

@media (max-width: 390px) {
  #api-try.tryfree h1 {
    font-size: 17px;
  }

  #api-try.tryfree p {
    font-size: 15px;
  }

  #api-try.tryfree {
    height: 330px;
  }

  #api-try.tryfree .content {
    width: 250px;
  }

  .tryfree .main-btn {
    padding: 5px 49px;
  }
}

.marquee-container {
  overflow: hidden;
  width: 100%;
  background: linear-gradient(90deg, #99c8e4, #a8caff);
  margin-top: 30px;
  padding: 10px 0;
}

.marquee {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-size: 24px;
  font-family: Arial, sans-serif;
  color: rgb(255, 255, 255);
}

@keyframes marquee {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}


/* BITRIX */
/* .b24-form {
  color: #fff !important; 
}

.b24-form-control {
  background-color: #333 !important; 
  color: #fff !important; 
  border: 1px solid #555 !important; 
}

.b24-form-control::placeholder {
  color: #bbb !important; 
}

.b24-form-header-title, .b24-form-header-description {
  color: #fff !important;
}

.b24-form-btn {
  background-color: #555 !important;
  color: #fff !important;
  border: none;
}

.b24-form-btn:hover {
  background-color: #777 !important;
}

.b24-form-control-container {
  background-color: #333 !important;
} */

@media (max-height: 700px) and (max-width: 920px) {
  .nav {
    padding-top: 12vh
  }
}

@media (max-height: 600px) and (max-width: 920px) {
  .nav {
    gap: 0px
  }
}

@media (max-height: 510px) and (max-width: 920px) {
  .nav a {
    padding: 10px;
  }
}

@media (max-height: 420px) and (max-width: 920px) {
  .nav a {
    padding: 12px;
    font-size: 17px;
  }

  .nav {
    padding-top: 8vh
  }
}

@media (max-height: 420px) and (max-width: 920px) {
  .nav a {
    padding: 6px;
    font-size: 17px;
  }
}

@media (max-height: 370px) and (max-width: 920px) {
  .nav a {
    padding: 5px;
    font-size: 14px;
  }

  .nav {
    padding-top: 6vh
  }
}

@media (max-height: 335px) and (max-width: 920px) {
  .nav a {
    padding: 5px;
  }
}

@media (max-height: 300px) and (max-width: 920px) {
  .nav a {
    padding: 4px;
  }
}

@media (max-height: 280px) and (max-width: 920px) {
  .nav a {
    padding: 3px;
  }
}

/* STATISTICS */

.statistics {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.statistics::before {
  content: '';
  position: absolute;
  top: 30%;
  width: 300px;
  height: 300px;
  background: linear-gradient(93deg, var(--first-blur-logo-color) 0%, var(--second-blur-logo-color) 35%, var(--first-blur-logo-color) 100%);
  filter: blur(95px);
  border-radius: 50%;
  transform: translateY(-50%) scale(1);
  transition: all 5s ease-in-out;
  z-index: -1;
  animation: morph 10s infinite ease-in-out alternate;
  right: 20%;
}

.statistics .possibilities__title {
  margin-bottom: 10px;
  margin-top: 30px;
}

.check_statistics {
  display: flex;
  align-items: center;
  flex-direction: column;
}

#statisticsContainer {
  padding: 0 250px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

#statisticsContainer.show {
  opacity: 1;
  margin-bottom: 50px;
}

.statistics h1 {
  font-size: 18px;
  font-weight: 300;
  padding: 0 4%;
  text-align: center;
  color: var(--description-color);
}

.ps {
  color: #7f7f85;
  font-weight: 100;
}

.stat_content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 10px;
  border-radius: 10px;
}

.block-stat {
  padding: 25px;
  border-radius: 8px;
  background: var(--block-color);
  color: var(--description-color);
  font-weight: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.chart-container {
  width: 180px;
  height: 180px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

#chartCanvas,
#chartCanvas1,
#chartCanvas2,
#chartCanvas3 {
  width: 180px !important;
  height: 180px !important;
  max-width: 180px;
  max-height: 180px;
  padding: 10px;
}

#statblock {
  display: block;
}

.block-stat h3 {
  font-size: 18px;
  display: flex;
  justify-content: center;
  font-weight: 100;
}

.stat span {
  color: var(--span-color);
}

.stat_content h3 {
  color: #FFF
}

.stat h3 {
  color: var(--text-color);
  font-weight: 100;
  font-size: 22px;
  text-align: center;
  padding: 15px;
}

.product-blocks {
  padding: 8px;
}

.product-block {
  padding: 25px;
  border-radius: 8px;
  background: var(--block-color);
  color: var(--text-color);
  font-weight: 100;
  display: flex;
  flex-direction: row;

}

.product-info {
  flex: 0.6;
  padding-right: 30px;
}

.product-name {
  font-size: 20px;
  color: var(--span-color);
  font-weight: 100;
}

.rating {
  font-size: 18px;
}

.stats-table {
  border-collapse: collapse;
  font-size: 16px;
}

.stats-table th,
.stats-table td {
  padding: 5px 30px;
  text-align: center;

}

.stats-table th {
  font-weight: 400;
}

.text-result {
  display: grid;
  grid-template-columns: 20% 80%;
  font-size: 17px;
  font-weight: 100;
  padding-bottom: 15px;
  color: var(--text-color);
}

#tit {
  color: var(--span-color);
}

#num1 {
  display: none;
}

@media (max-width: 1800px) {
  #statisticsContainer {
    padding: 0 200px
  }
}

@media (max-width: 1700px) {
  #statisticsContainer {
    padding: 0 150px
  }
}

@media (max-width: 1500px) {
  #statisticsContainer {
    padding: 0 50px
  }

  .product-name {
    font-size: 18px;
  }

  .product-info {
    flex: none;
    padding-right: 0;
    padding-bottom: 10px;
  }

  .product-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .stats-table th {
    font-size: 14px;
  }
}

@media (max-width: 1000px) {
  #statisticsContainer {
    padding: 0 25px
  }

  #chartCanvas,
  #chartCanvas1,
  #chartCanvas2,
  #chartCanvas3 {
    width: 130px !important;
    height: 130px !important;
    max-width: 130px;
    max-height: 130px;
  }

  .stat_content {
    grid-template-columns: repeat(2, 1fr);
  }

  .text-result {
    display: flex;
    flex-direction: column;
    font-size: 18px;
  }
}

@media (max-width: 640px) {

  .stats-table th,
  .stats-table td {
    padding: 5px 0;
  }

  .text-result {
    font-size: 17px;
  }
}

@media (max-width: 580px) {
  .block-stat h3 {
    font-size: 16px;
  }

  .block-stat {
    font-size: 14px;
  }

  .product-block {
    padding: 15px;
  }
}

@media (max-width: 500px) {

  .stats-table th,
  .stats-table td {
    font-size: 13px;
  }

  .block-stat {
    padding: 15px;
  }

  #statisticsContainer {
    padding: 0 20px
  }

  #chartCanvas,
  #chartCanvas1,
  #chartCanvas2,
  #chartCanvas3 {
    width: 100px !important;
    height: 100px !important;
    max-width: 100px;
    max-height: 100px;
  }

  .text-result {
    font-size: 15px;
  }
}

@media (max-width: 460px) {
  .product-name {
    font-size: 16px;
  }

  .rating {
    font-size: 15px;
  }

  .stat_content {
    grid-template-columns: repeat(1, 1fr);
  }

  .block-stat {
    flex-direction: row
  }

  #chartCanvas,
  #chartCanvas1,
  #chartCanvas2,
  #chartCanvas3 {
    width: 150px !important;
    height: 150px !important;
    max-width: 150px;
    max-height: 150px;
  }

  #num1 {
    display: flex;
  }

  #num2 {
    display: none;
  }
}

@media (max-height: 780px) {
  .statistics {
    padding-top: 135px;
  }

  .news-image-container {
    height: 235px;
  }
}

/* MODAL REGISTRATION */

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}


.modal-content {
  background: rgb(24 25 26);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
}

.modal-content p {
  text-align: left;
  font-weight: 100;
  font-size: 15px;
  color: var(--text-color);
}

#titlereg {
  font-weight: 100;
  font-size: 24px;
  margin-bottom: 30px;
  text-align: center;
  color: #fff;
}

.close {
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
}

.form-group {
  margin-bottom: 15px;
}

.modal-input {
  margin-bottom: 7px;
  width: 100%;
  padding: 10px;
  border: 1px solid #3f3f3f;
  border-radius: 5px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
  background-color: #3f3f3f5c;
  color: var(--text-color);
  font-weight: 100;
}

#name {
  margin-right: 15px;
}

#user_name {
  display: flex;
}

.btn-reg {
  margin-top: 30px;
  background-color: var(--main-blue);
  color: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 15px;
  width: 280px;
  font-size: 18px;
  font-weight: 400;
  transition: 500ms;
}

.btn-reg:hover {
  background-color: var(--hover-btn);
}

.oferta {
  color: #fff;
}

.verification-section {
  text-align: center;
  margin-top: 20px;
}

.code-inputs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 15px 0;
}

.code-input {
  width: 50px;
  height: 50px;
  font-size: 24px;
  text-align: center;
  border: 2px solid #5aacff;
  border-radius: 8px;
  outline: none;
  background: #3f3f3f;
  color: #fff;
}

.code-input:focus {
  border-color: var(--main-blue);
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

#verifyCode {
  background-color: var(--main-blue);
  color: #fff;
  border-radius: 10px;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 100;
  transition: 300ms;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

#verifyCode:hover {
  background-color: #5aacff;
}

@media (max-width: 520px) {
  .modal-content {
    padding: 20px;
  }
}

/* CASES */
.cases {
  display: flex;
  gap: 30px;
  padding: 0 15%;
  justify-content: center;
}

.case {
  padding: 20px;
  background-color: var(--block-color);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 15px;
  margin-right: 15px;
  min-height: 540px !important;
}

.case p {
  font-size: 18px;
  font-weight: 100;
  color: var(--text-color);
}

.case span {
  color: var(--span-color);
}

#slick-slide {
  min-height: 300px;
}

.company {
  display: flex;
  align-content: center;
  margin-top: 10px;
  align-items: flex-end
}

.company h2 {
  font-size: 25px;
  font-weight: 100;
  color: var(--text-color);
  margin-left: 10px;
}

.logotip {
  height: 40px;
}

.user-review {
  width: 350px;
  border-radius: 5px;
}

.feedback {
  width: 100%;
}

.slick-track {
  display: flex;
}

.slick-track .slick-slide {
  display: flex !important;
  height: auto;
  align-items: center;
  justify-content: center;
}

#lo {
  height: 25px;
}

@media (max-width: 1891px) {
  .case p {
    font-size: 18px;
  }

  .cases {
    padding: 0 10%;
  }
}

@media (max-width: 1638px) {
  .case p {
    font-size: 16px;
  }

  .company h2 {
    font-size: 22px;
  }

  .case {
    margin-left: 25px;
    min-height: 530px !important;
  }

  .logotip {
    height: 35px;
  }

  #lo {
    height: 22px;
  }
}

@media (max-width: 1552px) {
  .case p {
    font-size: 17px;
  }

  .user-review {
    width: 310px;
  }

}

@media (max-width: 1456px) {
  .case p {
    font-size: 16px;
  }

  .cases {
    padding: 0 8%;
  }

  .case {
    min-height: 490px !important;
  }
}

@media (max-width: 1293px) {
  .case p {
    font-size: 15px;
  }

  .cases {
    padding: 0 6%;
  }

  .user-review {
    width: 280px;
  }

  .case {
    margin-left: 20px;
    min-height: 450px !important;
  }
}

@media (max-width: 1153px) {

  .company h2 {
    font-size: 20px;
  }

  .logotip {
    height: 32px;
  }

  #lo {
    height: 20px;
  }

  .cases {
    padding: 0 4%;
  }

  .case {
    min-height: 430px !important;
  }
}

@media (max-width: 780px) {
  .user-review {
    width: 230px;
  }

  .case {
    min-height: 370px !important;
  }
}

@media (max-width: 600px) {
  .case {
    margin-left: 0;
  }

  .case p {
    font-size: 16px;
  }
}

/* FEEDBACK FORM */

.callback {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.callback::before {
  content: '';
  position: absolute;
  top: 30%;
  width: 300px;
  height: 300px;
  background: linear-gradient(93deg, var(--first-blur-logo-color) 0%, var(--first-blur-logo-color) 35%, var(--second-blur-logo-color) 100%);
  filter: blur(95px);
  border-radius: 50%;
  transform: translateY(-50%) scale(1);
  transition: all 5s ease-in-out;
  z-index: -1;
  animation: morph 10s infinite ease-in-out alternate;
  right: 20%;
}

.callback-form {
  display: flex;
  flex-direction: column;
  padding: 0 20%;
}

.callback-block h1 {
  font-size: 18px;
  font-weight: 300;
  padding: 0 4%;
  padding-bottom: 1%;
  text-align: center;
  color: var(--description-color);
  margin-bottom: 15px;
}

.name-input,
.surname-input,
.phone-input,
.email-input {
  margin-bottom: 15px;
  width: 100%;
  padding: 10px;
  border: 1px solid var(--input-border-color);
  border-radius: 5px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
  background-color: #3f3f3f00;
  color: var(--text-color);
  font-weight: 100;
}

.success-message {
  display: none;
  padding: 20px;
  background-color: #d4edda;
  color: #155724;
  border: 2px solid #c3e6cb;
  border-radius: 8px;
  margin-top: 20px;
  font-size: 18px;
  margin: 100px 90px;
}

.validation-message {
  display: none;
  font-size: 14px;
  color: red;
  margin-top: 5px;
}

.lidbtn {
  display: flex;
  justify-content: center;
}

.submit-button {
  margin: 30px 0;
  background-color: var(--main-blue);
  color: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 15px;
  width: 280px;
  font-size: 18px;
  font-weight: 400;
  transition: 500ms;
}

.submit-button:hover {
  background-color: #5aacff;
}

@media (max-width: 1550px) {
  .callback-form {
    padding: 0 10%;
  }
}

@media (max-width: 1000px) {
  .callback-form {
    padding: 0 7%;
  }
}

@media (max-width: 600px) {
  .callback-form {
    padding: 0 4%;
  }

  #user_name {
    flex-direction: column;
  }

  .form-groups {
    margin-bottom: 0;
  }

  .callback-block.surname-input,
  .callback-block.name-input {
    margin-bottom: 16px;
  }
}

/* Slider promo */

.previews {
  display: flex;
  padding: 0 15%;
  justify-content: center;
}

.preview {
  position: relative;
  padding: 40px;
  background-color: var(--block-color);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  overflow: hidden;
  z-index: 1;
  max-width: 1400px;
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(10px, -10px);
  }

  50% {
    transform: translate(100px, -80px);
  }

  75% {
    transform: translate(200px, 80px);
  }

  100% {
    transform: translate(0, 0);
  }
}

.preview::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  opacity: 0.9;
  animation: float 10s ease-in-out infinite;
}

.preview--green::before {
  background: radial-gradient(circle, var(--preview-green), transparent 70%);
  top: 0px;
  right: 10px;
}

.preview--blue::before {
  background: radial-gradient(circle, var(--preview-blue), transparent 70%);
  top: 130px;
  right: 500px;
}

.preview--orange::before {
  background: radial-gradient(circle, var(--preview-orange), transparent 70%);
  top: 10px;
  right: 450px;
}

.preview--blu::before {
  background: radial-gradient(circle, var(--preview-blu), transparent 70%);
  top: 60px;
  left: 200px;
}

.preview--red::before {
  background: radial-gradient(circle, var(--preview-red), transparent 70%);
  top: 100px;
  right: 0px;
}

.preview--yellow::before {
  background: radial-gradient(circle, var(--preview-yellow), transparent 70%);
  top: 100px;
  right: 350px;
}

.preview--velvet::before {
  background: radial-gradient(circle, var(--preview-velvet), transparent 70%);
  top: 10px;
  right: 480px;
}

.rew-info {
  flex: 1;
  max-width: 33.33%;
}

.preview p {
  font-size: 17px;
  font-weight: 100;
  color: var(--text-color);
}

.preview span {
  color: var(--span-color);
}

.preview-img {
  flex: 2;
  max-width: 66.66%;
  object-fit: contain;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.preview-img img {
  border-radius: 10px;
  width: 100%;
}

.rew-info h5 {
  font-size: 24px;
  font-weight: 100;
  margin-bottom: 20px;
}

.tag {
  background-color: #acacac;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  color: #101012 !important;
  padding: 1px 15px;
  display: block;
  width: fit-content;
  margin-top: 10px;
}

.slick-prev {
  left: 10% !important;
}

.slick-next {
  right: 10% !important;
}

.slick-prev:before,
.slick-next:before {
  font-size: 30px !important;
  font-weight: 100 !important;
  color: #676a7c !important;
}

.slick-dots {
  position: static !important;
}

.slick-dots li button:before {
  color: white !important;
}

.slick-dots li.slick-active button:before {
  color: white !important;
}

@media (max-width: 1200px) {
  .preview {
    /* flex-direction: column; */
    gap: 15px;
  }

  .slick-prev {
    display: none !important;
  }

  .slick-next {
    display: none !important;
  }

  .rew-info,
  .preview-img {
    max-width: 100%;
  }

  .rew-info h5 {
    font-size: 20px;
  }

  .preview p {
    font-size: 16px;
  }

  .preview-img {
    justify-content: center;
  }

  .previews {
    padding: 0 8%;
  }

  .preview-img img {
    width: 80%;
  }
}

@media (max-width: 1000px) {
  .previews {
    padding: 0 25px;
  }

  .preview-img img {
    width: 100%;
  }

  .tag {
    font-size: 14px;
  }
}

@media (max-width: 850px) {
  .preview {
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .preview {
    padding: 30px;
  }
}

@media (max-width: 550px) {
  .preview {
    padding: 25px;
  }

  .tag {
    font-size: 13px;
  }

  .preview--velvet::before {
    top: 10px;
    right: 300px;
  }

  .preview--blue::before {
    top: 130px;
    right: 100px;
  }

  .preview--orange::before {
    top: 200px;
    right: 0px;
  }

  .preview-img img {
    border-radius: 4px;
  }
}

/* Калькулятор */

.calculator {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.calculator label {
  font-size: 17px;
  font-weight: 100;
  color: var(--description-color);
}

.slider-value {
  font-weight: bold;
  margin-bottom: 10px;
}

.total {
  margin-top: 25px;
  font-size: 17px;
  font-weight: 100;
  color: var(--description-color);
}

.totalfactprice {
  font-size: 18px;
  color: var(--span-color);
}

.range-wrapper {
  position: relative;
  width: 90%;
  margin-top: 5px;
  margin-bottom: 20px;
}

.factprice {
  display: none;
  margin-bottom: 20px;
}

input#range,
input#rec {
  width: 100%;
}

.range-wrapper span {
  position: absolute;
  top: -30px;
  text-align: center;
  min-width: 30px;
  transform: translateX(-50%);
  left: 0;
  font-size: 16px;
  font-weight: 300;

}

.calculator input[type="number"] {
  width: 80px;
  margin-left: 10px;
  padding: 5px;
  border: 1px solid var(--description-color);
  border-radius: 4px;
  background-color: #0d0d1200;
  color: var(--text-color);
  font-size: 15px;
  font-weight: 100;
  -moz-appearance: textfield;
}

.calculator input[type="number"]::-webkit-outer-spin-button,
.calculator input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input#range,
input#rec {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(to right, rgb(55, 104, 155) 0%, rgb(55, 104, 155) 0%, #cfd1e0 0%, #b1b3c2 100%);
  outline: none;
}

/* Chrome, Safari, Edge */
input#range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: rgb(55, 104, 155);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

/* Firefox */
input#range::-moz-range-track {
  height: 4px;
  background: transparent;
}

input#range::-moz-range-progress {
  height: 4px;
  background: rgb(55, 104, 155);
  border-radius: 4px;
}

input#range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: rgb(55, 104, 155);
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

input#rec::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: rgb(55, 104, 155);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

/* Firefox */
input#rec::-moz-range-track {
  height: 4px;
  background: transparent;
}

input#rec::-moz-range-progress {
  height: 4px;
  background: rgb(55, 104, 155);
  border-radius: 4px;
}

input#rec::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: rgb(55, 104, 155);
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.stylish-checkbox {
  display: inline-flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-size: 18px;
  user-select: none;
  padding: 5px;
}

.stylish-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: relative;
  min-height: 25px;
  min-width: 25px;
  background-color: transparent;
  border: 2px solid var(--main-blue);
  border-radius: 4px;
  margin-right: 10px;
  transition: all 0.3s;
}

.stylish-checkbox:hover input~.checkmark {
  background-color: rgba(76, 175, 80, 0.1);
}

.stylish-checkbox input:checked~.checkmark {
  background-color: var(--main-blue);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.stylish-checkbox input:checked~.checkmark:after {
  display: block;
}

.material-symbols-outlined {
  font-size: 40px;
  font-variation-settings: 'wght' 100, 'opsz' 48;
}

.kp {
  display: flex;
  align-items: center;
  /* border: #8b8b8b8c solid 0.5px;  */
  /* padding: 2px 25px;  */
  border-radius: 6px;
  font-size: 15px;
  color: var(--text-color);
}

@media (max-width: 1200px) {
  .range-wrapper {
    width: 90%;
    margin-top: 15px;
    margin-bottom: 30px;
  }

  .table-container {
    flex-direction: column;
    gap: 25px
  }

  .news-image-container {
    height: 217px;
  }
}

@media (max-width: 1120px) {
  .news-image-container {
    height: 200px;
  }
}

@media (max-width: 920px) {
  .statistics .possibilities__title {
    margin-bottom: 10px;
    margin-top: 100px;
  }

  .news-image-container {
    height: 250px;
  }
}

@media (max-width: 910px) {
  .range-wrapper {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .news-image-container {
    height: 220px;
  }
}

@media (max-width: 670px) {
  .news-image-container {
    height: 180px;
  }
}

@media (max-width: 600px) {
  .news-image-container {
    height: 165px;
  }
}

@media (max-width: 560px) {
  .statistics .possibilities__title {
    margin-top: 150px;
  }

  .news-image-container {
    height: 280px;
  }
}

@media (max-width: 550px) {
  .calculator label {
    font-size: 15px;
  }

  .calculator {
    padding: 0;
  }

  .table-container::before {
    width: 50px
  }
}

@media (max-width: 460px) {
  .news-image-container {
    height: 250px;
  }
}

@media (max-width: 440px) {
  .news-image-container {
    height: 220px;
  }
}

@media (max-width: 410px) {
  .news-image-container {
    height: 200px;
  }
}

@media (max-width: 370px) {
  .news-image-container {
    height: 185px;
  }
}

@media (max-width: 350px) {
  .news-image-container {
    height: 170px;
  }
}

.logo__img,
.mp__wb,
.mp__ozon,
.mp__ym,
.top__img,
.footer-line,
.possibilities-all__img,
.mascot,
.icon-light,
.icon-dark {
  display: none;
}

.user-review,
.rew-img {
  display: none !important;
}

[data-theme='light'] .logo-light,
[data-theme='light'] .mp-light,
[data-theme='light'] .message-light,
[data-theme='light'] .line-light {
  display: inline;
}

[data-theme='light'] .review-light,
[data-theme='light'] .img-light {
  display: inline !important;
}

[data-theme='dark'] .logo-dark,
[data-theme='dark'] .mp-dark,
[data-theme='dark'] .message-dark,
[data-theme='dark'] .line-dark {
  display: inline;
}

[data-theme='dark'] .item-dark,
[data-theme='dark'] .icon-dark {
  display: inherit;
}

[data-theme='light'] .item-light,
[data-theme='light'] .icon-light {
  display: inherit;
}

[data-theme='dark'] .review-dark,
[data-theme='dark'] .img-dark {
  display: inline !important;
}

.warning {
  position: fixed;
  bottom: 10px;
  left: 10px;
  right: 10px;
  display: none;
  /* justify-content: center; */
  width: 20%;
  padding: 20px;
  box-sizing: border-box;
  background-color: var(--warning-color);
  border-radius: 15px;
  gap: 10px;
  z-index: 9999999999999999999999999;
}

.warning--active {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btns-cookie {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.warning__text {
  font-size: 13px;
}

.warning__apply {
  padding: 2px 10px;
  background-color: var(--main-blue);
  border-radius: 5px;
  color: #fff;
}

.warning__apply:hover {
  background-color: var(--hover-btn);
  /* color: var(--span-color); */
}

.warning__read:hover {
  color: var(--span-color);
}

@media (max-width: 1518px) {
  .warning {
    width: 25%;
  }
}

@media (max-width: 1215px) {
  .warning {
    width: 30%;
  }
}

@media (max-width: 1015px) {
  .warning {
    width: 35%;
  }
}

@media (max-width: 870px) {
  .warning__text {
    font-size: 12px;
  }

  .btns-cookie {
    font-size: 12px;
  }
}

@media (max-width: 820px) {
  .warning {
    width: 40%;
  }
}

@media (max-width: 715px) {
  .warning {
    width: 45%;
  }
}

@media (max-width: 640px) {
  .warning {
    width: 50%;
  }
}

@media (max-width: 570px) {
  .warning {
    width: 60%;
  }
}

@media (max-width: 476px) {
  .warning {
    width: 100%;
    left: 0;
    right: 0;
    border-radius: 0;
    bottom: 0;
  }
}