@charset "UTF-8";
@font-face {
  font-family: first-font;
  src: url("/new_vera/static/fonts/1.ttf") format("woff2");
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: first-font;
}

body,
html {
  height: 100%;
  margin: 0;
  overflow: hidden; /* Убираем лишний скролл */
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  /* Стили для видео фона */
}
body .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.2; /* Полупрозрачность видео */
  z-index: -1; /* Размещение за содержимым */
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

:root {
  --index: calc(1vw + 1vh);
  --button-hover-color: rgba(0, 115, 255, 0.89);
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
  height: 80px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
}
header a.logo {
  margin: 0;
  padding: 0;
}
header .menu-toggle {
  display: none; /* Скрываем на больших экранах */
  font-size: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101; /* Поверх меню */
  margin-right: 20px;
  transition: transform 0.3s ease;
  color: #333;
}
@media (max-width: 768px) {
  header .menu-toggle {
    display: block; /* Показываем кнопку на мобильных */
  }
  header .nav-links {
    display: none; /* По умолчанию скрыто */
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background: white;
    width: 250px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px 0;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }
  header .nav-links a {
    padding: 15px 20px;
    display: block;
    border-bottom: 1px solid #ddd;
    color: black;
    text-align: left;
    transition: background 0.2s;
  }
  header .nav-links a:hover {
    background: rgba(0, 0, 0, 0.05);
  }
  header .nav-links.open {
    display: flex;
  }
}
header a {
  margin: 10px;
  font-size: 18px;
  font-family: first-font;
  font-weight: 600;
  padding: 10px;
}
header a:hover {
  text-decoration: underline;
}

main {
  height: 100vh; /* Высота основного блока на 100% высоты экрана */
  scroll-snap-type: y mandatory; /* Задаем режим принудительной прокрутки */
  scroll-behavior: smooth; /* Включаем плавную прокрутку */
  margin: 0 auto;
  width: 80%;
}
main .container {
  position: relative;
  overflow: hidden; /* Скрываем излишки */
  height: 100vh; /* Высота каждой секции на 100% высоты экрана */
  scroll-snap-align: start; /* Начальная точка для прокрутки */
  transition: transform 12s linear; /* Плавный переход */
  display: flex;
  flex-wrap: wrap;
  z-index: 3;
  justify-content: left;
  align-items: center;
  margin-top: 10px;
}
main .container .first-content {
  margin-left: calc(var(--index) * 5);
}
main .container .first-content,
main .container .second-content {
  text-align: left;
}
main .container .first-content .metriks,
main .container .second-content .metriks {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: left;
  align-items: center;
}
main .container .first-content .metriks .metriks-item,
main .container .second-content .metriks .metriks-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 40px auto;
}
main .container .first-content h1,
main .container .second-content h1 {
  font-size: calc(var(--index) * 1.6);
  color: darkgreen;
}
main .container .first-content h3,
main .container .second-content h3 {
  font-size: calc(var(--index) * 1.6);
  transition-delay: 3.5s, 3.5s;
}
main .container .first-content p,
main .container .second-content p {
  margin: 0 auto;
  padding: 4px;
  font-family: first-font;
  font-weight: 500;
  font-size: calc(var(--index) * 1.3);
  color: rgb(0, 53, 0);
}
main .container .second-content {
  width: calc(var(--index) * 50);
}
main .container .second-content h3.second-head {
  text-align: center;
  margin-top: 150px;
  margin-bottom: 0;
  text-shadow: 3px 3px 10px rgba(0, 151, 10, 0.449);
  font-size: calc(var(--index) * 2.8);
}
main .container .second-content p {
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: first-font;
  font-weight: 700;
  font-size: calc(var(--index) * 1.3);
  color: rgb(0, 53, 0);
}
main .container .second-content p.number-counter {
  font-size: calc(var(--index) * 2.2);
  color: #006c05;
}
main .container .container.third {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
main .container .third-content {
  width: calc(var(--index) * 44);
  margin: calc(var(--index) * 3) auto 0;
}
main .container .third-content .head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-shadow: 5px 5px 10px rgba(0, 100, 0, 0.375);
}
main .container .third-content .head h2 {
  display: inline;
  padding-right: 15px;
  font-family: first-font;
  font-weight: 900;
  font-size: calc(var(--index) * 5.05);
  letter-spacing: 9px;
}
main .container .third-content .head div {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
}
main .container .third-content .head div h3 {
  margin: 0;
  display: inline;
  font-family: first-font;
  font-weight: 600;
  font-size: calc(var(--index) * 3);
  letter-spacing: 7px;
  line-height: 1.3;
}
main .container .third-content .head div h4 {
  margin: 0 auto;
  word-spacing: 12px;
  letter-spacing: 7px;
  font-size: calc(var(--index) * 1);
  font-weight: 600;
}
main .container .third-content .one {
  margin-top: 0;
}
main .container .third-content .one,
main .container .third-content .two,
main .container .third-content .three {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
  color: rgba(0, 0, 0, 0.725);
}
main .container .third-content .one h2,
main .container .third-content .two h2,
main .container .third-content .three h2 {
  display: inline;
  padding-right: 15px;
  font-family: first-font;
  font-weight: 800;
  font-size: calc(var(--index) * 3);
  letter-spacing: 10px;
  margin-right: 30px;
  text-shadow: 5px 5px 10px rgba(0, 100, 0, 0.375);
}
main .container .third-content .one div,
main .container .third-content .two div,
main .container .third-content .three div {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
}
main .container .third-content .one div h3,
main .container .third-content .two div h3,
main .container .third-content .three div h3 {
  margin: 0;
  display: inline;
  font-family: first-font;
  font-weight: 600;
  font-size: calc(var(--index) * 1.6);
  letter-spacing: 7px;
}
main .container .third-content .one div h4,
main .container .third-content .two div h4,
main .container .third-content .three div h4 {
  margin: 0 auto;
  word-spacing: 12px;
  letter-spacing: 7px;
  font-size: calc(var(--index) * 1);
  font-weight: 600;
}
main .container .fourth-content {
  margin-top: 70px;
  position: relative;
}
main .container .fourth-content img {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -35%);
  width: 360px;
  height: 520px;
  filter: drop-shadow(-10px 10px 10px rgba(0, 0, 0, 0.5));
}
main .container .fourth-content h2 {
  display: inline;
  padding-right: 15px;
  font-family: first-font;
  font-weight: 900;
  font-size: calc(var(--index) * 3);
  letter-spacing: 7px;
  text-shadow: 4px 4px 15px rgba(0, 151, 10, 0.599);
}
main .container .fourth-content .bio {
  text-align: center;
  margin-top: calc(var(--index) * 20);
}
main .container .fourth-content .bio h3 {
  margin: 0;
  padding: 0;
  font-size: 24px;
  font-weight: 600;
}
main .container .fourth-content .bio p {
  font-size: 18px;
}
main .container .fourth-content .video-play-button {
  position: absolute;
}
main .container .fourth-content .video-play-button p {
  font-size: 24px;
  font-weight: 600;
  font-family: first-font;
  white-space: nowrap; /* Запрещается перенос текста */
}
main .container .fourth-content .video-play-button .play-icon {
  font-family: first-font;
  font-size: 40px;
  position: absolute;
  top: 47%;
  left: 52%;
  transform: translate(-47%, -52%); /* Центрируем треугольник */
}
main .container .fourth-content .video-play-button:nth-of-type(1) p,
main .container .fourth-content .video-play-button:nth-of-type(2) p,
main .container .fourth-content .video-play-button:nth-of-type(3) p,
main .container .fourth-content .video-play-button:nth-of-type(4) p {
  transform: translateX(-10rem);
}
main .container .fourth-content .video-play-button:nth-of-type(5) p,
main .container .fourth-content .video-play-button:nth-of-type(6) p,
main .container .fourth-content .video-play-button:nth-of-type(8) p {
  transform: translateX(10rem);
}
main .container .fourth-content .video-play-button:nth-of-type(7) p {
  transform: translateX(12rem);
}
main .container .fourth-content .video-play-button.vpbtn-1 {
  top: 9rem;
  left: 11rem;
}
main .container .fourth-content .video-play-button.vpbtn-2 {
  top: 17rem;
  left: 11rem;
}
main .container .fourth-content .video-play-button.vpbtn-3 {
  top: 25rem;
  left: 11rem;
}
main .container .fourth-content .video-play-button.vpbtn-4 {
  top: 33rem;
  left: 11rem;
}
main .container .fourth-content .video-play-button.vpbtn-5 {
  top: 9rem;
  right: 11rem;
}
main .container .fourth-content .video-play-button.vpbtn-6 {
  top: 17rem;
  right: 11rem;
}
main .container .fourth-content .video-play-button.vpbtn-7 {
  top: 25rem;
  right: 11rem;
}
main .container .fourth-content .video-play-button.vpbtn-8 {
  top: 33rem;
  right: 11rem;
}
main .container .fifth-content {
  margin-top: 70px;
  width: calc(var(--index) * 43);
  /* Основной контейнер */
  /* Карусель */
  /* Элементы карусели */
  /* Индивидуальные анимации для элементов */
  /* Анимации движения по кругу с уникальными траекториями */
  /* Эффект при наведении на элемент */
}
main .container .fifth-content h2 {
  display: block;
  padding-right: 15px;
  font-family: first-font;
  font-weight: 900;
  font-size: calc(var(--index) * 2.8);
  letter-spacing: 7px;
  text-shadow: 4px 4px 15px rgba(0, 151, 10, 0.599);
  text-align: center;
}
main .container .fifth-content h3 {
  text-align: center;
  margin: 0 auto;
  font-family: first-font;
  font-weight: 800;
  font-size: calc(var(--index) * 2.6);
  letter-spacing: 7px;
  text-shadow: 4px 4px 15px rgba(0, 151, 10, 0.599);
  color: #009b08;
  pointer-events: none;
}
main .container .fifth-content .carousel-container {
  margin-top: 120px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .container .fifth-content .carousel {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}
main .container .fifth-content .carousel-item {
  position: absolute;
  width: 330px;
  height: auto;
  text-align: center;
  padding: 10px;
  font-size: 22px;
  font-weight: bold;
  transition: all 0.8s ease; /* Плавный переход только для трансформаций */
  z-index: 2;
}
main .container .fifth-content .carousel-item:nth-child(1) {
  top: 1rem;
  left: 1rem;
  animation: move-circle-1 12s infinite linear; /* Движение по кругу с уникальной анимацией */
}
main .container .fifth-content .carousel-item:nth-child(2) {
  top: 7rem;
  left: 14rem;
  animation: move-circle-2 15s infinite linear; /* Движение по кругу с другой анимацией */
}
main .container .fifth-content .carousel-item:nth-child(3) {
  top: 1rem;
  right: -3rem;
  animation: move-circle-3 20s infinite linear; /* Движение по кругу с другой анимацией */
}
main .container .fifth-content .carousel-item:nth-child(4) {
  top: -3rem;
  right: 18rem;
  animation: move-circle-4 18s infinite linear; /* Движение по кругу с другой анимацией */
}
main .container .fifth-content .carousel-item:nth-child(5) {
  top: 16rem;
  right: -4rem;
  animation: move-circle-5 16s infinite linear; /* Движение по кругу с другой анимацией */
}
main .container .fifth-content .carousel-item:nth-child(6) {
  top: -5rem;
  left: -8rem;
  animation: move-circle-6 13s infinite linear; /* Движение по кругу с другой анимацией */
}
main .container .fifth-content .carousel-item:nth-child(7) {
  top: 10rem;
  right: 5rem;
  animation: move-circle-7 8s infinite linear; /* Движение по кругу с другой анимацией */
}
main .container .fifth-content .carousel-item:nth-child(8) {
  top: 14rem;
  right: 16rem;
  animation: move-circle-6 18s infinite linear; /* Движение по кругу с другой анимацией */
}
main .container .fifth-content .carousel-item:nth-child(9) {
  top: -12rem;
  right: 40rem;
  animation: move-circle-5 14s infinite linear; /* Движение по кругу с другой анимацией */
}
main .container .fifth-content .carousel-item:nth-child(10) {
  top: -7rem;
  right: -4rem;
  animation: move-circle-4 22s infinite linear; /* Движение по кругу с другой анимацией */
}
main .container .fifth-content .carousel-item:nth-child(11) {
  top: 18rem;
  left: 16rem;
  animation: move-circle-7 19s infinite linear; /* Движение по кругу с другой анимацией */
}
main .container .fifth-content .carousel-item:nth-child(12) {
  top: 9rem;
  left: -8rem;
  animation: move-circle-3 13s infinite linear; /* Движение по кругу с другой анимацией */
}
main .container .fifth-content .carousel-item:nth-child(13) {
  top: -9rem;
  left: 31rem;
  animation: move-circle-2 23s infinite linear; /* Движение по кругу с другой анимацией */
}
main .container .fifth-content .carousel-item:nth-child(14) {
  top: 15rem;
  left: -3rem;
  animation: move-circle-1 16s infinite linear; /* Движение по кругу с другой анимацией */
}
main .container .fifth-content .carousel-item:nth-child(15) {
  top: 3rem;
  left: 24rem;
  animation: move-circle-7 15s infinite linear; /* Движение по кругу с другой анимацией */
}
@keyframes move-circle-1 {
  0% {
    transform: rotate(0deg) translateX(10px) translateY(-10px) translateZ(0) rotate(0deg);
  }
  25% {
    transform: rotate(12deg) translateX(10px) translateY(10px) translateZ(-60px) rotate(-12deg);
  }
  50% {
    transform: rotate(8deg) translateX(10px) translateY(-10px) translateZ(-100px) rotate(-8deg);
  }
  75% {
    transform: rotate(5deg) translateX(10px) translateY(10px) translateZ(-50px) rotate(-5deg);
  }
  100% {
    transform: rotate(10deg) translateX(10px) translateY(-10px) translateZ(0) rotate(-10deg);
  }
}
@keyframes move-circle-2 {
  0% {
    transform: rotate(0deg) translateX(-10px) translateY(10px) translateZ(0) rotate(0deg);
  }
  25% {
    transform: rotate(6deg) translateX(-10px) translateY(10px) translateZ(-40px) rotate(-6deg);
  }
  50% {
    transform: rotate(0deg) translateX(-10px) translateY(10px) translateZ(-80px) rotate(-10deg);
  }
  75% {
    transform: rotate(10deg) translateX(-10px) translateY(10px) translateZ(-20px) rotate(-10deg);
  }
  100% {
    transform: rotate(0deg) translateX(-10px) translateY(10px) translateZ(0) rotate(0deg);
  }
}
@keyframes move-circle-3 {
  0% {
    transform: rotate(0deg) translateX(12px) translateY(-5px) translateZ(0) rotate(0deg);
  }
  25% {
    transform: rotate(7deg) translateX(12px) translateY(-5px) translateZ(-60px) rotate(-7deg);
  }
  50% {
    transform: rotate(3deg) translateX(12px) translateY(-5px) translateZ(-80px) rotate(-3deg);
  }
  75% {
    transform: rotate(2deg) translateX(12px) translateY(-5px) translateZ(-40px) rotate(-2deg);
  }
  100% {
    transform: rotate(0deg) translateX(12px) translateY(-5px) translateZ(0) rotate(0deg);
  }
}
@keyframes move-circle-4 {
  0% {
    transform: rotate(0deg) translateX(5px) translateY(-3px) translateZ(0) rotate(0deg);
  }
  25% {
    transform: rotate(9deg) translateX(5px) translateY(-3px) translateZ(-30px) rotate(-9deg);
  }
  50% {
    transform: rotate(3deg) translateX(5px) translateY(-3px) translateZ(-80px) rotate(-3deg);
  }
  75% {
    transform: rotate(6deg) translateX(5px) translateY(-3px) translateZ(-40px) rotate(-6deg);
  }
  100% {
    transform: rotate(0deg) translateX(5px) translateY(-3px) translateZ(0) rotate(0deg);
  }
}
@keyframes move-circle-5 {
  0% {
    transform: rotate(0deg) translateX(8px) translateY(-4px) translateZ(0) rotate(0deg);
  }
  25% {
    transform: rotate(2deg) translateX(8px) translateY(-4px) translateZ(-70px) rotate(-2deg);
  }
  50% {
    transform: rotate(8deg) translateX(8px) translateY(-4px) translateZ(-100px) rotate(-8deg);
  }
  75% {
    transform: rotate(5deg) translateX(8px) translateY(-4px) translateZ(-60px) rotate(5deg);
  }
  100% {
    transform: rotate(0deg) translateX(8px) translateY(-4px) translateZ(0) rotate(0deg);
  }
}
@keyframes move-circle-6 {
  0% {
    transform: rotate(0deg) translateX(3px) translateY(-5px) translateZ(0) rotate(0deg);
  }
  25% {
    transform: rotate(2deg) translateX(3px) translateY(-5px) translateZ(-80px) rotate(-2deg);
  }
  50% {
    transform: rotate(6deg) translateX(3px) translateY(-5px) translateZ(-120px) rotate(-6deg);
  }
  75% {
    transform: rotate(1deg) translateX(3px) translateY(-5px) translateZ(-80px) rotate(-1deg);
  }
  100% {
    transform: rotate(-2deg) translateX(3px) translateY(-5px) translateZ(0) rotate(2deg);
  }
}
@keyframes move-circle-7 {
  0% {
    transform: rotate(0deg) translateX(16px) translateY(-14px) translateZ(0) rotate(0deg);
  }
  25% {
    transform: rotate(12deg) translateX(16px) translateY(-14px) translateZ(-50px) rotate(-12deg);
  }
  50% {
    transform: rotate(7deg) translateX(16px) translateY(-14px) translateZ(-100px) rotate(-7deg);
  }
  75% {
    transform: rotate(3deg) translateX(16px) translateY(-14px) translateZ(-50px) rotate(-3deg);
  }
  100% {
    transform: rotate(0deg) translateX(16px) translateY(-14px) translateZ(0) rotate(0deg);
  }
}
main .container .fifth-content .carousel-item:hover {
  position: fixed;
  animation-play-state: paused;
  scale: 1.25;
  cursor: pointer;
  z-index: 11;
  text-shadow: 7px 7px 12px rgba(0, 0, 0, 0.595);
  background-color: rgba(0, 108, 5, 0.7294117647);
  border-radius: 10px;
  color: #eee;
}
main .container .fifth-content .button-two {
  display: block;
  text-align: center;
  margin: calc(var(--index) * 9) auto;
  z-index: 100;
  background-color: #007f06;
  color: #eee;
  font-weight: 600;
  width: calc(var(--index) * 23);
}
main .container .sixth-content {
  margin: 80px auto;
  width: calc(var(--index) * 46);
}
main .container .sixth-content .carousel-controls {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  align-items: center;
}
main .container .sixth-content .carousel-controls h2 {
  display: block;
  padding-right: 10px;
  font-family: first-font;
  font-weight: 800;
  font-size: calc(var(--index) * 2);
  letter-spacing: 7px;
  text-shadow: 4px 4px 15px rgba(0, 151, 10, 0.599);
  text-align: center;
  position: relative;
}
main .container .sixth-content .carousel-control {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(0, 151, 10, 0.599);
  border-radius: 50%;
  color: white;
  text-align: center;
  line-height: 37px;
  margin: 20px 10px 0 10px;
  cursor: pointer;
  font-size: 26px;
  font-weight: 700;
}
main .container .sixth-content .carousel-control:hover {
  background: #2980b9;
}
main .container .sixth-content .card-carousel-wrapper {
  overflow: hidden;
  width: 100%;
}
main .container .sixth-content .card-carousel {
  display: flex;
  margin-top: 20px;
  transition: transform 0.5s ease-in-out; /* Плавная анимация для карусели */
}
main .container .sixth-content .card-carousel .card {
  display: flex;
  flex-direction: column;
  border: 2.5px solid rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  width: calc(var(--index) * 14);
  height: calc(var(--index) * 21);
  flex: 0 0 calc(var(--index) * 14); /* Ширина карточки фиксирована */
  margin-right: 20px;
  transition: opacity 0.5s ease-in, transform 0.5s ease-in; /* Добавляем переход для трансформации */
  opacity: 0; /* Изначально карточки невидимы */
  transform: rotateY(-100deg) rotateZ(-100deg); /* Начальный поворот для 3D-эффекта */
}
main .container .sixth-content .card-carousel .card .client-logo {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
main .container .sixth-content .card-carousel .card .client-logo img {
  width: calc(var(--index) * 3.4);
  height: calc(var(--index) * 1.5);
  margin: 10px;
}
main .container .sixth-content .card-carousel .card .client-logo .name {
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin: 20px;
}
main .container .sixth-content .card-carousel .card .card-content {
  position: relative;
  border-radius: 20px;
  width: calc(var(--index) * 13);
  height: calc(var(--index) * 15);
  margin: 0 auto;
  overflow: hidden; /* Скрываем выходящие за пределы содержимое */
  position: relative; /* Обеспечиваем позиционирование для дочерних элементов */
}
main .container .sixth-content .card-carousel .card .card-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* Сохраняем соотношение сторон и заполняем элемент */
  border-radius: 20px; /* Применяем скругленные углы */
}
main .container .sixth-content .card-carousel .card .card-content p {
  width: 140px;
  position: absolute;
  top: 10px;
  left: 5px;
  background-color: rgba(238, 238, 238, 0.4039215686);
  border-radius: 10px;
  padding: 5px;
  font-size: 13px;
}
main .container .sixth-content .card-carousel .card .video-play-button {
  position: relative;
  margin: 20px;
  width: 50px;
  height: 50px;
  color: #eee;
}
main .container .sixth-content .card-carousel .card .video-play-button p {
  max-width: 200px;
  position: absolute;
  color: #3f3f3f;
  right: -220px;
  font-size: 15px;
  font-weight: 600;
}
main .container .sixth-content .card-carousel .card .video-play-button .play-icon {
  font-family: first-font;
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%); /* Центрируем треугольник */
}
main .container .sixth-content .card-carousel .card .video-icon:hover,
main .container .sixth-content .card-carousel .card .video-play-button:hover {
  color: #006c05;
  transform: scale(1); /* Легкое увеличение при наведении */
}
main .container .sixth-content .card-carousel .card.hidden {
  opacity: 0;
  transform: rotateY(-100deg) rotateZ(-100deg); /* Возвращаем начальный поворот при скрытии */
}
main .container .sixth-content .card-carousel .card:not(.hidden) {
  opacity: 1;
  transform: rotateY(0deg) rotateZ(0deg); /* Поворот к нормальному состоянию при появлении */
}
main .container .seventh-content {
  margin: 80px auto;
  width: calc(var(--index) * 46);
}
main .container .seventh-content .tutorial-carousel-controls {
  display: flex;
  justify-content: left;
  margin-top: 10px;
  align-items: center;
}
main .container .seventh-content .tutorial-carousel-controls h2 {
  display: block;
  padding-right: 10px;
  font-family: first-font;
  font-weight: 800;
  font-size: calc(var(--index) * 2);
  letter-spacing: 7px;
  text-shadow: 4px 4px 15px rgba(0, 151, 10, 0.599);
  text-align: center;
  position: relative;
}
main .container .seventh-content .tutorial-carousel-control {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(0, 151, 10, 0.599);
  border-radius: 50%;
  color: white;
  text-align: center;
  line-height: 37px;
  margin: 20px 10px 0 10px;
  cursor: pointer;
  font-size: 26px;
  font-weight: 700;
}
main .container .seventh-content .tutorial-carousel-control:hover {
  background: #2980b9;
}
main .container .seventh-content .tutorial-card-carousel-wrapper {
  overflow: hidden;
  width: 100%;
}
main .container .seventh-content .tutorial-carousel {
  display: flex;
  margin-top: 20px;
  transition: transform 0.5s ease-in-out; /* Плавная анимация для карусели */
}
main .container .seventh-content .tutorial-carousel .tutorial-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  width: calc(var(--index) * 35);
  height: calc(var(--index) * 21);
  flex: 0 0 calc(var(--index) * 35); /* Ширина карточки фиксирована */
  margin-right: 20px;
  color: rgba(0, 0, 0, 0.725);
  font-family: first-font;
  transition: opacity 0.5s ease-in, transform 0.5s ease-in; /* Добавляем переход для трансформации */
  opacity: 0; /* Изначально карточки невидимы */
  transform: rotateY(-100deg) rotateZ(-100deg); /* Начальный поворот для 3D-эффекта */
}
main .container .seventh-content .tutorial-carousel .tutorial-card h3 {
  margin: 0;
  display: inline;
  font-weight: 800;
  font-size: calc(var(--index) * 3);
  letter-spacing: 3px;
}
main .container .seventh-content .tutorial-carousel .tutorial-card h4 {
  margin: 0 auto;
  word-spacing: 7px;
  letter-spacing: 1px;
  font-size: calc(var(--index) * 1.6);
  font-weight: 600;
  max-width: calc(var(--index) * 30);
}
main .container .seventh-content .tutorial-carousel .tutorial-card .video-play-button {
  position: relative;
  margin: 30px;
  width: 80px;
  height: 80px;
}
main .container .seventh-content .tutorial-carousel .tutorial-card .video-play-button .play-icon {
  font-size: 40px;
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%); /* Центрируем треугольник */
}
main .container .seventh-content .tutorial-carousel .tutorial-card .video-play-button p {
  position: absolute;
  width: 200px;
  top: 30%;
  left: 100px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
}
main .container .seventh-content .tutorial-carousel .tutorial-card .video-play-button span {
  position: absolute;
  width: 100px;
  top: 60%;
  left: 100px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
}
main .container .seventh-content .tutorial-carousel .tutorial-card.hidden {
  opacity: 0;
  transform: rotateY(-45deg) rotateZ(-45deg); /* Возвращаем начальный поворот при скрытии */
}
main .container .seventh-content .tutorial-carousel .tutorial-card:not(.hidden) {
  opacity: 1;
  transform: rotateY(0deg) rotateZ(0deg); /* Поворот к нормальному состоянию при появлении */
}
main .container .seventh-content .tutorial-carousel .button-two {
  width: calc(var(--index) * 18);
}
main .container .seventh-content .tutorial-carousel .phone-tutorial {
  position: absolute;
  z-index: 1;
  right: -17rem;
  top: -3rem;
}
main .container .seventh-content .tutorial-carousel .phone-tutorial img {
  width: calc(var(--index) * 14);
  height: calc(var(--index) * 23);
}
main .container .eighth-content .carousel-container {
  margin-top: 160px;
}
main .container .eighth-content h2 {
  display: block;
  padding-right: 15px;
  font-family: first-font;
  font-weight: 900;
  font-size: calc(var(--index) * 2);
  letter-spacing: 7px;
  text-shadow: 4px 4px 15px rgba(0, 151, 10, 0.599);
  text-align: center;
}
main .container .eighth-content h3 {
  text-align: center;
  margin: 0 auto;
  font-family: first-font;
  font-weight: 800;
  font-size: calc(var(--index) * 2.4);
  letter-spacing: 7px;
  text-shadow: 4px 4px 15px rgba(0, 151, 10, 0.599);
  color: #009b08;
  pointer-events: none;
}
main .container .eighth-content .button-two {
  display: block;
  text-align: center;
  margin: calc(var(--index) * 9) auto;
  z-index: 100;
  background-color: #007f06;
  color: #eee;
  font-weight: 600;
  width: calc(var(--index) * 23);
}
main .container .ninth-content {
  margin: 0 auto !important;
  width: calc(var(--index) * 36);
}
main .container .ninth-content .valuation-carousel-controls {
  display: flex;
  justify-content: center;
  margin-top: 80px;
  align-items: center;
  flex-direction: column;
}
main .container .ninth-content .valuation-carousel-controls h1 {
  font-size: 52px;
  display: inline;
  padding: 20px;
  font-family: first-font;
  font-weight: 700;
}
main .container .ninth-content .valuation-carousel-controls h2 {
  display: inline;
  font-size: 35px;
  font-family: first-font;
}
main .container .ninth-content .valuation-carousel-controls h3 {
  display: inline;
  font-size: 25px;
  padding: 20px;
  font-family: first-font;
}
main .container .ninth-content .valuation-carousel-control {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(0, 151, 10, 0.599);
  border-radius: 50%;
  color: white;
  text-align: center;
  line-height: 37px;
  margin: 20px 10px 0 10px;
  cursor: pointer;
  font-size: 26px;
  font-weight: 700;
}
main .container .ninth-content .valuation-carousel-control:hover {
  background: #2980b9;
}
main .container .ninth-content .valuation-card-carousel-wrapper {
  overflow: hidden;
  width: 100%;
}
main .container .ninth-content .valuation-carousel {
  color: red;
  display: flex;
  transition: transform 0.5s ease-in-out; /* Плавная анимация для карусели */
  justify-content: center;
  width: calc(var(--index) * 180);
}
main .container .ninth-content .valuation-carousel .valuation-card {
  display: flex;
  flex-direction: column;
  justify-content: left;
  text-align: left;
  border-radius: 20px;
  width: calc(var(--index) * 37);
  height: calc(var(--index) * 21);
  flex: 0 0 calc(var(--index) * 37); /* Ширина карточки фиксирована */
  margin-right: 20px;
  color: rgba(0, 0, 0, 0.725);
  font-family: first-font;
  transition: opacity 0.5s ease-in, transform 0.5s ease-in; /* Добавляем переход для трансформации */
  opacity: 0; /* Изначально карточки невидимы */
  transform: rotateY(-100deg) rotateZ(-100deg); /* Начальный поворот для 3D-эффекта */
}
main .container .ninth-content .valuation-carousel .valuation-card h3 {
  margin: 10px;
  display: inline;
  font-weight: 800;
  font-size: calc(var(--index) * 2);
  letter-spacing: 3px;
}
main .container .ninth-content .valuation-carousel .valuation-card h4 {
  display: flex;
  justify-content: space-between;
  margin: 5px;
  word-spacing: 7px;
  letter-spacing: 1px;
  font-size: calc(var(--index) * 1);
  font-weight: 600;
}
main .container .ninth-content .valuation-carousel .valuation-card h4 span {
  margin-left: 200px;
}
main .container .ninth-content .valuation-carousel .valuation-card .video-play-button {
  position: relative;
  margin: 30px;
}
main .container .ninth-content .valuation-carousel .valuation-card .video-play-button p {
  position: absolute;
  width: 200px;
  top: 30%;
  left: 100px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
}
main .container .ninth-content .valuation-carousel .valuation-card .video-play-button span {
  position: absolute;
  width: 100px;
  top: 60%;
  left: 100px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
}
main .container .ninth-content .valuation-carousel .valuation-card.hidden {
  opacity: 0;
  transform: rotateY(-45deg) rotateZ(-45deg); /* Возвращаем начальный поворот при скрытии */
}
main .container .ninth-content .valuation-carousel .valuation-card:not(.hidden) {
  opacity: 1;
  transform: rotateY(0deg) rotateZ(0deg); /* Поворот к нормальному состоянию при появлении */
}
main .container .ninth-content .valuation-carousel .button-two {
  width: calc(var(--index) * 18);
  margin: 20px 0;
}
main .container .phone {
  position: absolute;
  z-index: 1;
  right: 7rem;
  top: 8rem;
}
main .container .phone img {
  width: calc(var(--index) * 14);
  height: calc(var(--index) * 23);
  position: relative;
  z-index: 2;
  filter: drop-shadow(-7px 7px 10px black);
}
main .container .phone .gif-container {
  position: absolute;
  top: 3%;
  left: 5%;
  width: 91%;
  height: 92%;
  overflow: hidden;
  z-index: 1;
  border-radius: 15px;
}
main .container .phone .chat-gif {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main .container:first-of-type {
  flex-direction: row;
}
main .container:not(:first-of-type) {
  flex-direction: column;
}
main .container:not(:first-of-type) h3 {
  margin: 50px auto;
}

.button {
  position: relative;
  width: calc(var(--index) * 17);
  display: block;
  border: solid 3px #3f3f3f;
  border-radius: 25px;
  margin: 20px auto;
  transition: 0.29s;
  text-align: center;
  padding: 15px;
  font-size: 25px;
  font-weight: 700;
  font-family: var(--button-hover-color);
  left: calc(var(--index) * -40);
  animation: fromLeft 2s ease-in-out forwards, shine 3s infinite; /* Добавляем анимацию отблеска */
  animation-delay: 4s;
  background-color: rgb(0, 160, 0);
  color: rgb(0, 116, 0);
}

.button {
  background: rgb(0, 160, 0);
  background: linear-gradient(to right, rgb(0, 160, 0) 20%, rgba(255, 255, 255, 0.8) 50%, rgb(0, 160, 0) 80%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.button:hover {
  -webkit-box-reflect: below 0.4px linear-gradient(transparent, rgba(0, 0, 0, 0.3333333333));
  box-shadow: 0 0 10px var(--button-hover-color), 0 0 15px var(--button-hover-color), 0 0 25px var(--button-hover-color) var(--button-hover-color);
  background: var(--button-hover-color);
  border: solid 3px rgb(8, 0, 255);
  color: #fff;
}

/* Анимация отблеска */
@keyframes shine {
  0% {
    background-position: -200px;
  }
  100% {
    background-position: 200px;
  }
}
.button-two {
  position: relative;
  width: calc(var(--index) * 36);
  display: block;
  text-align: center;
  border: solid 3px #fff;
  border-radius: 25px;
  margin: 0 auto;
  transition: 0.29s;
  text-align: center;
  padding: 7px;
  font-size: 24px;
  font-weight: 700px;
  font-family: var(--button-hover-color);
  left: calc(var(--index) * -40);
  animation: fromLeft 2s ease-in-out forwards;
  animation-delay: 3s;
  background-color: rgb(0, 160, 0);
  color: #fff;
}

.button-two:hover {
  -webkit-box-reflect: below 0.4px linear-gradient(transparent, rgba(0, 0, 0, 0.3333333333));
  box-shadow: 0 0 10px var(--button-hover-color), 0 0 15px var(--button-hover-color), 0 0 25px var(--button-hover-color) var(--button-hover-color);
  background: var(--button-hover-color);
  border: solid 3px rgb(8, 0, 255);
}

/* Контейнер для иконок видео */
.video-icons-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

/* Иконка видео */
.video-icon,
.video-play-button {
  width: 80px;
  height: 80px;
  background: rgba(29, 156, 0, 0.7647058824); /* Синий цвет фона */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  position: relative; /* Добавляем позиционирование относительное для контейнера */
  transition: background 0.3s ease, transform 0.3s ease;
}

/* Иконка при наведении */
.video-icon:hover,
.video-play-button:hover {
  background: none;
  transform: scale(1.1); /* Легкое увеличение при наведении */
  color: #00ab09;
}

/* Иконка Play */
.play-icon {
  font-size: 45px;
  position: absolute; /* Добавляем абсолютное позиционирование для треугольника */
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%); /* Центрируем треугольник */
}

/* Контейнер для видео проигрывателя */
.video-player-container {
  display: none;
  justify-content: center;
  margin-top: 20px;
}

/* Видео проигрыватель */
#video-player {
  width: 100%;
  max-width: 600px;
  height: auto;
}

.vpbtn-1 {
  position: absolute;
}

#sale-item {
  transition: opacity 0.7s;
  opacity: 1;
  font-weight: 800;
}

#sale-item.fade-out {
  opacity: 0;
}

.typewriter {
  border-right: 2px solid black;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  animation: blink-caret 0.75s step-end infinite;
}

.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.5s ease-out 5s, transform 1.5s ease-out 5s;
}

.fade-in.in-view {
  opacity: 1;
  transform: translateY(0);
}

.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

.drop-words {
  opacity: 0;
  transform: scale(0);
  transition: opacity 1.5s ease-out 3s, transform 1.5s ease-out 3s;
}

.drop-words.in-view {
  opacity: 1;
  transform: scale(1);
}

/* Устанавливаем общие стили анимации */
.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Добавляем задержки для каждой секции */
.one .drop-words {
  transition-delay: 1s, 1s;
}

.one .fade-in {
  transition-delay: 2s, 2s;
}

.one .typewriter {
  transition-delay: 2s, 2s;
}

.two .drop-words {
  transition-delay: 4s, 4s;
}

.two .fade-in {
  transition-delay: 5s, 5s;
}

.two .typewriter {
  transition-delay: 5s, 5s;
}

.three .drop-words {
  transition-delay: 7s, 7s;
}

.three .fade-in {
  transition-delay: 7s, 7s;
}

.three .typewriter {
  transition-delay: 8s, 8s;
}

/* Применяем анимации, когда элементы входят в видимость */
.animate-on-scroll.in-view {
  opacity: 1;
  transform: none;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: black;
  }
}
.typewriter.done {
  border-right: none;
}

.typewriter.done.test {
  font-size: 30px;
}

.blink-fade {
  font-size: 2rem;
  opacity: 0;
  text-shadow: 0 0 0px #fff; /* Начальное свечение */
  animation: fadeIn 5s ease-in-out forwards;
}

.blink-fade.active {
  opacity: 1;
  animation: blinkGlow 0.6s 1.4s 5 alternate;
}

/* Эффект появления */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Эффект мигания с ярким свечением */
@keyframes blinkGlow {
  0% {
    text-shadow: 0 0 5px rgba(157, 255, 0, 0.6745098039), 0 0 10px rgba(157, 255, 0, 0.6745098039), 0 0 20px rgba(157, 255, 0, 0.6745098039);
    color: #00ab09;
    opacity: 1;
  }
  50% {
    text-shadow: 0 0 20px rgba(238, 255, 0, 0.6862745098), 0 0 40px rgba(238, 255, 0, 0.6862745098), 0 0 60px rgba(238, 255, 0, 0.6862745098);
    color: #6ce700;
    opacity: 0.8;
  }
  100% {
    text-shadow: 0 0 5px rgba(255, 255, 71, 0.6196078431), 0 0 10px rgba(255, 255, 71, 0.6196078431), 0 0 20px rgba(255, 255, 71, 0.6196078431);
    opacity: 1;
  }
}
/* Эффект появления слева */
@keyframes fromLeft {
  from {
    left: calc(var(--index) * -40);
  }
  to {
    left: 0;
  }
}
/* Эффект падения */
@keyframes dropWords {
  from {
    scale: 0;
    opacity: 0;
  }
  to {
    scale: 1;
    opacity: 1;
  }
}
.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.in-view {
  opacity: 1;
}

.footer-content {
  width: calc(var);
  position: relative;
}

.team {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: 75px auto 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(var(--index) * 50);
}
.team h2 {
  display: block;
  padding-right: 15px;
  font-family: first-font;
  font-weight: 900;
  font-size: calc(var(--index) * 2);
  letter-spacing: 7px;
  text-shadow: 4px 4px 15px rgba(0, 151, 10, 0.599);
  text-align: center;
}
.team .team-members {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 5px;
}
.team .team-member {
  text-align: center;
  margin: 10px;
  width: 200px;
}
.team .portrait {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 5px;
  border: 3px solid #909090;
  box-shadow: 4px 4px 15px rgba(0, 151, 10, 0.599);
}
.team .portrait img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.team .info {
  margin-top: 5px;
}
.team .info .name {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin: 5px 0;
}
.team .info .position {
  font-size: 16px;
  color: #777;
  margin: 5px 0;
}

.footer {
  display: flex;
  flex-wrap: wrap; /* Это позволяет элементам переходить на следующую строку */
  background-color: rgba(238, 238, 238, 0.662745098);
  padding: 20px;
  border-top: 1px solid #ddd;
  width: 100%;
  margin: 0 auto;
  position: fixed;
  bottom: 0;
  left: 0;
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 1s ease, transform 1s ease;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: -1;
  max-height: 300px;
}

.footer.in-view {
  opacity: 1;
  transform: translateY(0);
  z-index: 10;
}

.footer-contact {
  flex: 0 0 20%; /* Левый блок — 20% ширины */
  margin: 10px 100px;
  font-size: calc(var(--index) * 0.6);
  font-weight: 600;
}
.footer-contact p {
  margin: 10px;
}

.footer-sections {
  flex: 1; /* Остальное пространство для секций */
  display: flex;
  flex-wrap: wrap; /* Перенос элементов на новую строку */
  gap: 20px; /* Отступы между секциями */
  margin-left: 20px;
  margin-top: 5px;
}

.footer-section {
  flex: 1 0 30%; /* Каждая секция будет занимать 30% ширины */
  padding: 0 8px;
  margin-bottom: 5px; /* Отступ снизу */
}

.footer-section h3 {
  margin-bottom: 7px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 5px;
}

.footer-section ul li a {
  text-decoration: none;
  color: #333;
  font-size: calc(var(--index) * 0.65);
}

.footer-section ul li a:hover {
  text-decoration: underline;
  color: #1c9800;
}

.footer-contact .social-icons {
  margin-top: 15px;
}

.footer-contact .social-icons a {
  color: #333;
  font-size: 24px;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.footer-contact .social-icons a:hover {
  color: #12dc00;
}

@media (max-width: 768px) {
  .team-members {
    flex-direction: column;
    align-items: center;
  }
  main {
    height: 100vh; /* Высота основного блока на 100% высоты экрана */
    width: calc(var(--index) * 30);
    scroll-snap-type: y mandatory; /* Задаем режим принудительной прокрутки */
    scroll-behavior: smooth; /* Включаем плавную прокрутку */
    overflow-y: scroll; /* Включаем вертикальную прокрутку */
  }
  main .container {
    height: 100vh; /* Высота каждой секции на 100% высоты экрана */
    scroll-snap-align: start; /* Начальная точка для прокрутки */
    transition: transform 12s linear; /* Плавный переход */
    width: calc(var(--index) * 30);
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: center;
    margin-top: 10px;
  }
  .button {
    position: relative;
    width: calc(var(--index) * 20);
    display: block;
    border: solid 2px black;
    border-radius: 8px;
    margin: 20px auto;
    transition: 0.29s;
    text-align: center;
    padding: 15px;
    font-size: 24px;
    font-weight: 600px;
    font-family: var(--button-hover-color);
    left: calc(var(--index) * -40);
    animation: fromLeft 2s ease-in-out forwards;
    animation-delay: 4s;
  }
  .button:hover {
    -webkit-box-reflect: below 0.4px linear-gradient(transparent, rgba(0, 0, 0, 0.3333333333));
    box-shadow: 0 0 10px var(--button-hover-color), 0 0 15px var(--button-hover-color), 0 0 25px var(--button-hover-color) var(--button-hover-color);
    background: var(--button-hover-color);
    border: solid 2px rgb(8, 0, 255);
  }
}/*# sourceMappingURL=home.css.map */