/* * {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  cursor: none !important;
} */
/* .wrapper{
  overflow-x: hidden;
} */
@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.9;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.6;
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.9;
  }
}

@keyframes clickEffect {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.5);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dots {
  0% {
    content: "";
  }

  33% {
    content: ".\00a0";
  }

  66% {
    content: ".\00a0.\00a0";
  }

  100% {
    content: ".\00a0.\00a0.";
  }
}

@keyframes rotateOrbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateOrbitReverse {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

html,
body {
  overscroll-behavior-y: none;
}

body {
  background: var(--body-bg);
  color: white;
  /* cursor: none; */
  scroll-behavior: smooth;
  font-family: "Vortex";
  min-height: 100vh;
  -webkit-overflow-scrolling: touch;
}

a,
li {
  transition: var(--basic-transition);
}


body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* WebKit-браузеры */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #111;
  /* Тёмный фон */
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #ff0033 #111;
  /* thumb | track */
}

body::-webkit-scrollbar-thumb {
  background-color: red;
  /* Цвет бегунка */
  border-radius: 0px;
  /* Округление бегунка */
  border: 3px solid #050c26;
  /* Оформление границ бегунка */
}

.language-switcher a {
  color: white;
  font-size: 20px;
}

h1 {
  display: flex;
  flex-direction: column;
  font-size: 96px;
  position: relative;
  font-weight: 700;
}

h1 span {
  display: block;
  position: relative;
  position: relative;
  overflow: hidden;
  line-height: 93%;
  white-space: nowrap;
  width: 0;
  animation: typing 1s steps(20, end) forwards;
}

h1 span:nth-child(1) {
  animation-delay: 0.9s;
}

h1 span:nth-child(2) {
  animation-delay: 1.3s;
}

h1 span:nth-child(3) {
  animation-delay: 1.8s;
}

.form {
  margin-top: 90px;
}

h2 {
  font-size: 64px;
  margin-top: 90px;
  margin-bottom: 40px;
}

h3 {
  font-weight: 500;
  font-size: 32px;
}

h2 span {
  color: red;
}

/* Клас для блокування прокрутки */
.body-no-scroll {
  overflow: hidden;
  height: 100vh;
  position: fixed;
  width: 100%;
}

.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid #00d4ff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

.custom-cursor::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background-color: #00d4ff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 1.5s infinite ease-in-out;
}

/* Элемент шлейфа */
.cursor-trail {
  position: fixed;
  width: 10px;
  height: 10px;
  background-color: rgba(0, 212, 255, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
}

.custom-cursor.clicked {
  animation: clickEffect 0.3s ease;
}

header {
  /* background: url("../img/header.jpg") center no-repeat; */
  height: 100vh;
  /* height: calc(var(--vh, 1vh) * 100); */
  contain: content;

  position: relative;
  overflow: hidden;
}



.planet-container {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 100%;
  left: 0;
  align-items: center;
  right: 0;
  height: 100%;
  top: -50%;
  margin: 0 auto;
  max-width: 85vw;
}

.planet-img {
  position: absolute;
  width: 70%;
}

.planet-line {
  position: absolute;
}

.line2 {
  width: 85%;
  animation: rotateOrbit 20s linear infinite;
}

.line3 {
  width: 100%;
  animation: rotateOrbitReverse 30s linear infinite;
}

.header-bottom-baner {
  height: 60px;
  background-color: white;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: black;
  justify-content: center;
}

.header-bottom-baner-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-bottom-baner span {
  flex-shrink: 0;
}

nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  transition: var(--basic-transition);
  padding-top: env(safe-area-inset-top, 20px);
}

@media (display-mode: standalone) {
  .nav {
    padding-top: env(safe-area-inset-top,
        44px);
    /* Увеличенный отступ для PWA */
  }
}

.inner-nav {
  display: flex;
  gap: 3.4vw;
  font-weight: 400;
  font-family: monospace;
}

.inner-nav span {
  color: white;
}

nav.solid {
  background-color: #111111;
  filter: blur(90%);
}

nav.transparent {
  padding: 20px 0px;
}

nav.hidden {
  transform: translateY(-150%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 100%;
}

.nav ul li {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  font-size: 20px;
  height: 100%;
  cursor: pointer;
}

.nav ul li::before {
  position: absolute;
  display: block;
  content: "";
  bottom: 30%;
  height: 2px;
  background-color: white;
  left: 0;
  right: 0;
  transition: var(--basic-transition);
  transform: translateX(-105%);
}

.container {
  padding: 0px 5.3%;
  height: 100%;
}

.logo {
  font-size: 41px;
  color: white;
  font-weight: 400;
}

.header__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header__inner>span::after {
  content: "";
  display: inline-block;
  animation: dots 0.9s steps(3, end) infinite;
  animation-delay: 0.5s;
}

.header__inner h1 span:nth-child(2) {
  color: var(--secondary-color);
}

.header__inner>span {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 16px;
  width: 0;
  animation: typing 1s steps(20, end) forwards;
  animation-delay: 0.5s;
}

.header__inner p {
  font-weight: 400;
  font-size: 16px;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
  animation-delay: 2.4s;
  margin: 25px 0px 35px 0px;
}

.btn-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

button {
  height: 47px;
  display: flex;
  background: none;
  border-radius: var(--basic-radius);
  border: none;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 24px;
  transition: 0.3s;
}

header button {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
  animation-delay: 2.8s;
  transition: background 0.3s ease, transform 0.3s ease;
}

header .defoult-btn {
  max-width: 223px;
  margin-top: 0px;
}

.defoult-btn {
  background: var(--bg-btn-defoult);
  width: 100%;
  max-width: 290px;
  margin-top: 90px;
  position: relative;
  overflow: hidden;
  padding: 15px 30px;
  border: none;
  border-radius: var(--basic-radius);
  cursor: pointer;
  transition: color 0.5s ease;
}

.secondary-btn {
  background: white;
  overflow: hidden;
  max-width: 157px;
  position: relative;
  width: 100%;
  transition: color 0.5s ease;
}

.secondary-btn::before {
  background: var(--secondary-color);
}

.defoult-btn::before {
  background: #fff;
}

.secondary-btn::before,
.defoult-btn::before {
  content: "";
  position: absolute;
  top: var(--y, 50%);
  left: var(--x, 50%);
  width: 0;
  height: 0;
  border-radius: 20%;
  transform: translate(-50%, -50%);
  transition: width 1s ease, height 1s ease;
  z-index: 1;
}

.secondary-btn span,
.defoult-btn span {
  position: relative;
  z-index: 2;
  color: black;
}

.portfolio {
  position: relative;
}

.portfolio-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .portfolio-grid {
    grid-template-columns: repeat(4, 1fr);
    /* максимум 4 в ряд */
  }
}

.portfolio-item {
  background: #1a1a1a;
  color: #B7B7B7;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.portfolio-item p {
  margin: 8px 0px 16px 0px;
}

.portfolio-grid * {
  cursor: pointer;
}

.portfolio-item:hover {
  color: white;
}

.portfolio-item:hover img {
  top: 0%;
}

.portfolio-item img {
  width: 100%;
  height: auto;
  margin-top: auto;
  position: relative;
  transition: .4s;
  top: 9%;
}

.portfolio button {
  margin-top: 5vh;
}

.circle-red {
  position: absolute;
  top: 20%;
  display: block;
  background-color: red;
  width: 250px;
  height: 300px;
  left: 20%;
  z-index: -1;
  filter: blur(200px);
  border-radius: 10%;
}

.process-content {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));
}

.process-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px 20px;
  border-radius: 4px;
  background-color: #353535;
}

/* красное свечение */
.process-item span {
  background-color: red;
  filter: blur(38px);
  width: 40px;
  height: 40px;
  display: none;
  position: absolute;
  top: 0;
  left: 15%;
}

.process-item img {
  /* position: absolute;
  bottom: 50%; */
}

.process .defoult-btn {
  margin-top: 40px;
}

/* .process-content > *:not(:nth-child(4), :nth-child(8))::before {
  content: "";
  position: absolute;
  right: 10%;
  top: 50%;
  width: 20px;
  height: 2px;
  background-color: white;
} */
.services-link {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.services-link * {
  cursor: pointer;
}

.services-tab {
  font-weight: 400;
  font-size: 40px;
  color: #3c3b36;
  height: 55px;
  position: relative;
  overflow: hidden;
}

.services-tab::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  transition: var(--basic-transition);
  right: 0;
  left: 0;
  bottom: 0;
  transform: translateX(-100%);
  height: 2px;
  background-color: white;
}

.services-tab.active {
  font-weight: 400;
  color: var(--color-link);
}

.services-tab.active::before {
  transform: translate(0px);
}

.services-content {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  align-items: stretch;
}

.services-card {
  padding: 40px 30px;
  border-radius: var(--basic-radius);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--basic-transition);
  gap: 130px;
}

.services-card span {
  font-weight: 400;
  font-size: 16px;
}

.services-card.light svg path {
  fill: var(--gray-dark);
}

.services-card.dark svg path {
  fill: white;
}

.services--top-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.services--bottom-card svg {
  transition: var(--basic-transition);
}

.services--bottom-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.services--bottom-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* .services--bottom-card h4 span {
  font-weight: 400;
  font-size: 24px;
} */
.services-card .defoult-btn {
  margin-top: 0px;
  max-width: 100%;
}

.about-us h2 span {
  color: var(--secondary-color);
}

.about-us--content {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  padding: 20px;
  box-sizing: border-box;
  border-radius: var(--basic-radius);
  background-color: #1a1a1a;
  /* Темный фон, как на скриншотах */
}

.about-us--people {
  display: flex;
  gap: 20px;
  flex: 1;
  width: 48%;
}

.about-us--worker {
  flex: 1;
  display: flex;
  position: relative;
  flex-direction: column;
  color: #fff;
  gap: 10px;
  overflow: hidden;
}

.about-us--worker-img {
  position: relative;
  width: fit-content;
}

.about-us--worker-img img {
  opacity: 0.3;
  transition: var(--basic-transition);
}

.about-us--worker-img svg {
  transition: var(--basic-transition);
}

.about-us--worker-img>svg {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.about-us--worker-img.active img {
  opacity: 1;
}

.about-us--worker-info {
  /* position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color:#11111191; */
  /* display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px; */
}

.worker-info-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.worker-open-click {
  min-width: 50px;
}

.about-us--worker span {
  opacity: var(--basic-opacity);
}

.abous-us--info-top {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.abous-us--info-top p {
  opacity: var(--basic-opacity);
}

.about-us--worker h3 {
  font-size: 23px;
}

.about-us--worker img {
  width: 100%;
  max-width: 450px;
  border-radius: var(--basic-radius);
  aspect-ratio: 3 / 3.85;
  /* Сохраняем пропорции изображения */
}

.abous-us--line {
  width: 2px;
  display: block;
  background-color: var(--secondary-color);
}

.about-us--info {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 40%;
}

.about-us--info.active {
  display: flex;
}

.about-us--info h3 {
  font-size: 35px;
  font-weight: bold;
}

.about-us--info h3 span {
  color: red;
}

.abous-us--text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.abous-us--text p {
  opacity: var(--basic-opacity);
  font-size: 19px;
  line-height: 130%;
}

.faq-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background-color: #353535;
  cursor: pointer;
  padding: 25px 20px;
  border-radius: var(--basic-radius);
}
.title-faq-cont{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.title-faq-cont img {
  transition: transform 0.3s ease;
}

.title-faq-cont img.rotated {
  transform: rotate(90deg);
}

.faq-item-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item-h img {
  transition: var(--basic-transition);
}

.faq-item-h.active img {
  transform: rotate(90deg);
}

.form-content {
  display: flex;
  align-items: stretch;
  gap: 40px;
  justify-content: space-between;
}

.faq-item-content {
  margin-top: 32px;
  display: none;
}

.form-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 60%;
}

.form-right h3 {
  margin-bottom: 25px;
}

.form-right p {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -2%;
}

.form-right-bottom p:nth-child(3) {
  margin: 30px 0px 30px 0px;
}

.form-left h2 {
  margin: 30px 0px 50px 0px;
}

.form-left h3 span {
  color: red;
}

.form-btns {
  display: flex;
  gap: 20px;

  margin-bottom: 30px;
}

.form-btns button {
  border: 1px solid white;
  font-size: 17px;
  opacity: 0.5;
  color: white;
  height: 38px;
  padding: 0px 46px;
  max-width: 144px;
  transition: var(--basic-transition);
}

.form-btns .active {
  opacity: 1;
}

.form-right-bottom ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: 13px;
}

.form-right-bottom ul li span {
  color: red;
}

.form-right-bottom ul li {
  position: relative;
}

.form-right-bottom ul li::after {
  content: "";
  display: block;
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: red;
  top: 12%;
  border-radius: 50%;
  left: -11px;
}

.form-left>span {
  opacity: var(--basic-opacity);
}

.form-left>a {
  margin-bottom: 30px;
}

.form-left a {
  display: flex;
  font-size: 32px;
  align-items: center;
  gap: 10px;
}

.form-left a span {
  color: white;
  opacity: var(--basic-opacity);
  transition: var(--basic-transition);
}

.form-left .defoult-btn {
  margin-top: 30px;
}

.laptop {
  position: relative;
  width: 100%;
  max-width: 800px;
  /* Ограничиваем максимальную ширину */
  margin: 0 auto;
  /* Центрируем блок */
}

/* .image-container {
  margin-top: auto;
} */


.laptop-screen {
  position: absolute;
  top: 5%;
  /* Пример: отступ сверху для выравнивания экрана */
  left: 12%;
  /* Пример: отступ слева */
  width: 76%;
  /* Пример: ширина экрана относительно ноутбука */
  height: 60%;
  /* Пример: высота экрана */
  object-fit: cover;
  /* Для корректного отображения изображения на экране */
  border-radius: 5px;
  /* Скругление углов экрана, если нужно */
}

.footer-content {
  margin-top: 35px;
  border-top: 1px solid #292929;
  padding-top: 35px;
  padding-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-content span {
  opacity: 0.7;
}

.logo-footer a {
  font-size: 32px;
}

/* burger menu */
.burger-btn {
  display: none;
  align-items: center;
  gap: 7px;
  position: relative;
  z-index: 200;
  height: 40px;
}

.burger-btn span {
  width: 35px;
  height: 3px;
  background-color: white;
  display: block;
  position: relative;
}

.burger-btn span::before,
.burger-btn span::after {
  content: "";
  position: absolute;
  display: block;
  background-color: white;
  width: 35px;
  height: 3px;
  transition: var(--basic-transition);
}

.burger-btn span::before {
  top: 10px;
}

.burger-btn span::after {
  bottom: 10px;
}

.burger-btn.active span {
  background: none;
}

.burger-btn.active span::after {
  transform: rotate(45deg);
  bottom: 0px;
}

.burger-btn.active span::before {
  transform: rotate(-45deg);
  top: 0px;
}

.menu-burger {
  position: fixed;
  inset: 0;
  transform: translateX(100%);
  backdrop-filter: var(--bg-open-modal);
  transition: 0.4s;
}

.menu-burger.active {
  transform: translateX(0);
}

.burger-content {
  background-color: #111111;
  width: 60%;
  margin-left: auto;
  display: flex;
  /* height: calc(var(--vh, 1vh) * 100); */
  height: 100%;
  flex-direction: column;
}
.box-content-burger{
  padding-left: 20px;
  width: 100%;
  max-width: 420px;                    /* ограничение ширины на больших экранах */
  height: 100vh;                       /* важное: занимает весь экран */
  max-height: 100dvh;                  /* use dynamic viewport on modern browsers */
  display: flex;
  flex-direction: column;                /* фон меню */
  border-radius: 8px;
  overflow: hidden;                    /* скрыть лишнее, используем скролл внутри */
}
.burger-content .language-switcher {
  background-color: #1d1d1d;
  border-radius: var(--basic-radius);
  width: 90px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.burger-content .language-switcher .lang-option.active {
  background-color: #3b3b3b;
  border-radius: var(--basic-radius);
}

ul .language-switcher .lang-option.active {
  color: var(--bg-btn-defoult);
}

.burger-content .language-switcher a {
  padding: 4px 8px;
  border-radius: var(--basic-radius);
}

.burger-content-top {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 20px;
  padding-top: env(safe-area-inset-top, 20px);
}

.burger-content-bottom {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  margin-bottom: 30px;
    flex: 0 0 auto;
}

.burger-content-bottom a {
  color: white;
  font-size: 16px;
}

.burger-content-bottom>a:not(:first-child) {
  margin-top: 11px;
}

.burger-content .defoult-btn {
  margin-top: 17px;
  width: 100%;
}

.burger-content .defoult-btn span {
  margin: 0px;
}

.burger-links {
  flex: 1 1 auto; 
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.burger-links a {
  color: white;
  font-size: 20px;
  font-weight: 600;
}

.burger-content-bottom h4 {
  font-size: 20px;
  font-weight: 600;
}

.burger-content-bottom h4:first-child {
  margin-top: 25px;
}

.burger-content-bottom h4:not(:first-child) {
  margin: 13px 0px 13px 0px;
}

.burger-content-bottom span {
  font-size: 16px;
  opacity: 0.7;
}

.burger-content-bottom span {
  margin-top: 20px;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (hover: hover) {
  .form-left a span:hover {
    opacity: 1;
  }

  .burger-btn:hover span {
    background: none;
  }

  .burger-btn:hover span::after {
    transform: rotate(45deg);
    bottom: 0px;
  }

  .burger-btn:hover span::before {
    transform: rotate(-45deg);
    top: 0px;
  }

  .language-switcher a:hover {
    color: var(--bg-btn-defoult);
  }

  .custom-cursor.hovered {
    border: 2px solid var(--secondary-color);
  }

  .custom-cursor.hovered::before {
    background-color: var(--secondary-color);
  }

  .nav ul li:hover::before {
    transform: translateX(0px);
  }

  .nav ul li:hover {
    color: var(--bg-btn-defoult);
  }

  .defoult-btn:hover::before {
    width: 300%;
    height: 300%;
  }

  .secondary-btn:hover::before,
  .defoult-btn:hover::before {
    width: 300%;
    height: 300%;
  }

  .services-tab:hover::before {
    transform: translate(0px);
  }

  .services-card:hover {
    transform: translateY(-10px) scale(1.01);
  }

  .services--bottom-card svg:hover {
    transform: rotate(-30deg);
  }

  .about-us--worker-img img:focus,
  .about-us--worker-img img:hover {
    opacity: 1;
  }

  .about-us--worker-img:hover svg {
    transform: scale(1.1);
  }

  .form-btns button:hover {
    opacity: 1;
  }
}

@media (min-width: 1820px) {
  .planet-container {
    top: -70%;
  }
}

@media (max-width: 1440px) {
  .services-card {
    padding: 25px 25px;
  }

  h1 {
    font-size: 64px;
  }

  .form {
    margin-top: 50px;
  }

  h2 {
    font-size: 50px;
  }

  h3 {
    font-size: 24px;
  }

  .services-card {
    gap: 90px;
  }

  .process-content {
    grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
  }
}

@media (max-width: 1200px) {
  .services--top-card {
    gap: 10px;
  }

  h3 {
    font-size: 20px;
  }

  .services-card {
    padding: 15px 15px;
  }
}

@media (max-width: 1100px) {
  .about-us--info h3 {
    font-size: 23px;
  }

  p {
    font-size: 16px;
  }

  .abous-us--info-top p {
    display: none;
  }

  .about-us--content {
    flex-direction: column;
  }

  .about-us--people {
    width: 80%;
  }

  .abous-us--line {
    width: 100%;
    height: 2px;
  }

  .about-us--info {
    width: auto;
  }

  .about-us--info {
    gap: 15px;
  }
}

@media (max-width: 1024px) {
  .services-card:last-child {
    display: none;
  }

  h1 {
    font-size: 48px;
  }

  .nav ul li,
  .language-switcher a {
    font-size: 16px;
  }

  .logo {
    font-size: 43px;
  }

  .brave_with_ukraine {
    width: 60px;
  }

  .nav ul {
    gap: 25px;
  }

  .services-tab {
    font-size: 24px;
    height: 32px;
  }

  .process-content {
    grid-template-columns: repeat(auto-fill, minmax(40%, 1fr));
  }

  .form-right {
    display: none;
  }

  .form-link img {
    max-width: 25px;
    width: 100%;
  }

  .form-left a span {
    font-size: 22px;
  }

  .form-left>a {
    margin-bottom: 20px;
  }

  .form-btns button {
    font-size: 15px;
    height: 32px;
    padding: 0px 30px;
  }

  .form-left h2 {
    margin: 20px 0px 30px 0px;
  }

  .logo-footer a {
    font-size: 24px;
  }
}

@media (max-width: 744px) {
  h3 {
    font-size: 18px;
  }

  p {
    font-size: 14px;
  }

  .burger-content {
    width: 100%;
  }

  .burger-btn {
    display: flex;
  }

  nav ul {
    display: none !important;
  }

  .container {
    padding: 0px 3%;
  }

  nav.transparent {
    padding: 5px 0px;
  }

  .services-link {
    gap: 15px;
  }

  .services-tab {
    font-size: 20px;
    background-color: white;
    border: none;
    height: auto;
    padding: 7px 15px;
    transition: var(--basic-transition);
  }

  .services-tab.active {
    background-color: red;
  }

  .services-tab.active::before {
    display: none;
  }

  .process-item img {
    width: 100%;
    object-fit: contain;
    max-width: 40px;
  }

  .faq-item,
  .process-item {
    padding: 16px 15px;
  }

  .faq-content,
  .process-content {
    gap: 15px;
  }

  .logo-footer a {
    font-size: 20px;
  }

  .footer-content span {
    font-size: 12px;
  }
}

@media (max-width: 650px) {
  .services-content {
    flex-wrap: wrap;
  }

  .services-card {
    flex: 1 auto;
    width: 40%;
  }

  .portfolio-grid {
    gap: 0.5rem;
    grid-template-columns: repeat(auto-fit, minmax(46%, 1fr));
  }

  p {
    font-size: 12px;
  }
}

@media (max-width: 580px) {
  .form {
    margin-top: 65px;
  }

  h2 {
    font-size: 35px;
    margin-bottom: 15px;
  }

  .form-modal h3 {
    font-size: 33px;
  }

  .about-us--worker h3,
  .about-us--info h3 {
    font-size: 20px;
  }

  .about-us--people {
    width: auto;
  }

  .portfolio button {
    margin-top: 3vh;
  }

  .process-content {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}

@media (max-width: 450px) {}

@media (max-width: 480px) {
  .burger-content-top {
    gap: 10px;
  }

  h3 {
    font-size: 18px;
  }

  p {
    font-size: 12px;
  }

  h1 {
    font-size: 40px;
  }

  p {
    font-size: 14px;
  }

  nav.transparent {
    padding-top: env(safe-area-inset-top, 20px);
  }

  .about-us--content {
    padding: 10px;
  }

  .secondary-btn,
  .defoult-btn {
    font-size: 18px;
    width: 50%;
  }

  .form-left .defoult-btn {
    width: 100%;
  }

  .services-tab {
    font-size: 17px;
  }

  .logo-footer a {
    font-size: 14px;
  }

  .footer-content span {
    font-size: 10px;
  }

  .footer-content img {
    max-width: 25px;
  }

  .planet-container {
    top: -45%;
  }

  .planet-img {
    position: absolute;
    width: 100%;
  }

  .line2 {
    width: 120%;
  }

  .line3 {
    width: 140%;
  }

  .custom-cursor {
    display: none;
  }

  .services-card {
    gap: 35px;
  }
}

@media (max-width: 430px) {

  .secondary-btn,
  .defoult-btn {
    font-size: 14px;
  }

  .reviews button {
    margin-top: 2vh !important;
  }

  h2 {
    font-size: 31px;
  }

  .custom-cursor {
    display: none;
  }
}

.swiper {
  width: 100% !important;
}

.swiper-slide {
  display: flex !important;

  justify-content: center !important;
}

.swiper-button-prev {
  right: 45px !important;
  left: auto !important;
}

.swiper-button-next {
  right: 0 !important;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute !important;
  top: -26px !important;
  color: #ffffff !important;
  background: #353535 !important;
  width: 35px !important;
  height: 35px !important;
  transition: 0.2s !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  transform: scale(1.1) !important;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  width: 9px !important;
}

/* Стили для пагинации */
.swiper-pagination-bullet {
  background: #6b7280 !important;
}

.swiper-pagination-bullet-active {
  background: #3b82f6 !important;
}