.logo {
  font-size: 3.8rem;
  font-weight: 500;

  /* margin-right: 300px; */
  z-index: 1;

  width: auto;
  height: 40%;
  align-items: stretch;
  display: flex;
}

li {
  font-family: "Formular-300";
  color: var(--base-black-color);
  font-size: 1.2rem;
}

.nav-item {
  transition: font-weight 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.nav-item:hover,
.nav-item:focus,
.nav-item:active {
  font-family: "Formular-700";
}

.nav-item a {
  text-decoration: none;
  color: #222222;
}

header {
  background: #e7e8ed;
  /* height: 90rem; */
  position: relative;
  overflow: hidden;
  padding-top: 60px;
}

/* 
.container::after {
    content: "";
    position: absolute;
    height: 90rem;
    width: 100%;
    background-image: url('images/bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
} */

/* header::after {
    content: "";
    position: absolute;
    width: 315px;
    height: 315px;
    background-image: url('images/Ellipse.svg');
    background-size: cover;
    background-repeat: no-repeat;
    bottom: -35%;
    left: 30%;
    background: rgba(39, 24, 169, 0.26);
    filter: blur(78.6500015258789px);
} */

button {
  border: 1px solid var(--base-blue-color);
  color: var(--base-blue-color);
  font-family: "Formular-300";
  border-radius: 6px;
  padding: 6px 12px;
  z-index: 1;
}

nav,
ul {
  display: flex;
  align-items: center;
  z-index: 1;
}

ul {
  gap: 32px;
}

nav {
  display: flex;
  justify-content: space-between;

  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  height: 10vh;
  padding: 1rem 2rem;

  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: all 0.3s ease;
  box-shadow: none;

  padding: 20px;
  padding-left: clamp(1rem, 10vw, 10rem);
  padding-right: clamp(1rem, 10vw, 10rem);
}

nav.scrolled {
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

.nav-item:last-child {
  margin-right: 12px;
  margin-left: 60px;
}

.call-to-action {
  padding: 10px;
  font-size: 12px;
}
.text-block-2:hover {
  color: #fff;
}
/* nav::before {
    content: "";
    position: absolute;
    width: 315px;
    height: 315px;
    background-image: url('images/Ellipse.svg');
    background-size: cover;
    background-repeat: no-repeat;
    top: -30%;
    left: 20%;
    background: rgba(39, 24, 169, 0.26);
    filter: blur(78.6500015258789px);
} */

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 700px;
  z-index: 1;
  /* position: relative; */
}

.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  gap: 15px;
  position: relative;
  z-index: 10;
  padding: 0 30px;
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 200px;
  background-image: url("images/Ellipse.svg");
  background-size: cover;
  background-repeat: no-repeat;
  top: -120px;
  right: 30px;
  background: rgba(39, 24, 169, 0.26);
  filter: blur(78.6500015258789px);
}

.container::before {
  content: "";
  position: absolute;
  width: 315px;
  height: 315px;
  background-image: url("images/Ellipse.svg");
  background-size: cover;
  background-repeat: no-repeat;
  left: -10%;
  top: 50%;
  background: rgba(39, 24, 169, 0.26);
  filter: blur(78.6500015258789px);
}

.hero-title::before {
  content: "";
  position: absolute;
  width: 135px;
  height: 135px;
  background-image: url("images/Union.svg");
  background-size: cover;
  background-repeat: no-repeat;
  top: -90px;
  left: -100px;
  z-index: 100;
}

.hero-title::after {
  content: "";
  position: absolute;
  width: 55px;
  height: 55px;
  background-image: url("images/Union.svg");
  background-size: cover;
  background-repeat: no-repeat;
  right: -30px;
  top: 40px;
  z-index: 100;
}

.hero-title {
  color: var(--base-black-color);
  font-size: clamp(2rem, 8vw, 4.8rem);
  font-family: "NeueMachina-800";
}

.special-title {
  color: var(--base-blue-color);
}

.hero-article {
  color: var(--base-black-color);
  font-size: clamp(1.2rem, 8vw, 2.4rem);
  font-family: "Formular-400";
  max-width: 55rem;
  text-align: center;
  line-height: 95%;
}

.hero-input {
  padding: 25px 70px 25px 25px;
  border-radius: 20px;
  background: #fff;
  height: 70px;
  width: 100%;
  max-width: 55rem;
  /* background-image: url('images/loupe.svg'); */
  background-repeat: no-repeat;
  background-position: right 30px center;
  background-size: 27px 27px;

  position: relative;
}

.search-btn {
  position: absolute;
  right: 10%;
  top: 23px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.search-btn img {
  width: 24px;
  height: 24px;
}

.search-btn:hover {
  background-color: unset;
  transform: scale(1.3);
}

.hero-input,
.hero-input::placeholder {
  color: rgba(29, 29, 29, 0.6);
  font-family: "NeueMachina-300";
  font-size: 1.8rem;
}

.floating-text {
  font-family: "NeueMachina-300";
  position: relative;
  padding: 10px 15px;
  border: none !important;
  font-size: clamp(1rem, 8vw, 1.7rem);
  max-width: 200px;
  text-align: center;
  animation: floatUpDown 4s ease-in-out infinite;
  will-change: transform;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Top-left corner */
.floating-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-top: 1px solid;
  border-left: 1px solid;
  border-color: inherit;
}

/* Bottom-right corner */
.floating-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  border-color: inherit;
}

.floating-text {
  background-image: linear-gradient(
      to bottom,
      currentColor 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, currentColor 1px, transparent 1px),
    linear-gradient(to right, currentColor 1px, transparent 1px),
    linear-gradient(to right, currentColor 1px, transparent 1px),
    /* Горизонтальная линия сверху длиной 30px */
      linear-gradient(
        to right,
        transparent calc(50% - 15px),
        currentColor calc(50% - 17px),
        currentColor calc(50% + 15px),
        transparent calc(50% + 15px)
      ),
    /* Горизонтальная линия снизу длиной 30px */
      linear-gradient(
        to right,
        transparent calc(50% - 15px),
        currentColor calc(50% - 15px),
        currentColor calc(50% + 15px),
        transparent calc(50% + 15px)
      );
  background-position: top right, bottom left, top right, bottom left,
    /* Позиция для верхней линии */ top center,
    /* Позиция для нижней линии */ bottom center;
  background-size: 20px 1px, 20px 1px, 1px 20px, 1px 20px,
    /* Размер для верхней линии */ 100% 1px,
    /* Размер для нижней линии */ 100% 1px;
  background-repeat: no-repeat;
  transition: 0.3s;
}

.floating-text a {
  text-decoration: none;
}

.floating-text:hover {
  background-size: 100% 1px, /* top */ 100% 1px, /* bottom */ 1px 100%,
    /* left */ 1px 100%;
  /* right */
}

.blue {
  color: var(--base-blue-color);
}

.black {
  color: var(--base-black-color);
}

.blue a {
  color: var(--base-blue-color);
}

.black a {
  color: var(--base-black-color);
}

.floating-text:nth-of-type(1) {
  position: absolute;
  top: 20%;
  left: 45%;
  transform: translate(-50%, -50%);
}

.floating-text:nth-of-type(2) {
  position: absolute;
  top: 12%;
  left: 70%;
}

.floating-text:nth-of-type(3) {
  position: absolute;
  top: 20%;
  left: 80%;
}

.floating-text:nth-of-type(4) {
  position: absolute;
  top: 30%;
  left: 86%;
}

.floating-text:nth-of-type(5) {
  position: absolute;
  top: 45%;
  left: 78%;
}

.floating-text:nth-of-type(6) {
  position: absolute;
  top: 60%;
  left: 86%;
}

.floating-text:nth-of-type(7) {
  position: absolute;
  top: 70%;
  left: 70%;
}

.floating-text:nth-of-type(8) {
  position: absolute;
  top: 83%;
  left: 60%;
}

.floating-text:nth-of-type(9) {
  position: absolute;
  top: 78%;
  left: 45%;
  transform: translate(-50%, -50%);
}

.floating-text:nth-of-type(10) {
  position: absolute;
  top: 89%;
  left: 45%;
  transform: translate(-50%, -50%);
}

.floating-text:nth-of-type(11) {
  position: absolute;
  top: 83%;
  left: 30%;
}

.floating-text:nth-of-type(12) {
  position: absolute;
  top: 70%;
  left: 18%;
}

.floating-text:nth-of-type(13) {
  position: absolute;
  top: 60%;
  left: 5%;
}

.floating-text:nth-of-type(14) {
  position: absolute;
  top: 45%;
  left: 10%;
}

.floating-text:nth-of-type(15) {
  position: absolute;
  top: 30%;
  left: 5%;
}

.floating-text:nth-of-type(16) {
  position: absolute;
  top: 20%;
  left: 15%;
}

.floating-text:nth-of-type(17) {
  position: absolute;
  top: 12%;
  left: 30%;
}

.integration-section,
.moriak-section {
  background: #e7e8ed;
  padding: 60px 0;
}

.all-agents {
  padding: 30px;
  margin: 0 auto;
  max-width: 1600px;
  /* или любая другая нужная ширина */
  width: 100%;
  box-sizing: border-box;
}

.agents {
  border-radius: 20px;
  background: linear-gradient(156deg, #dbdbeb 40.9%, #b8c0e9 131.96%);
  box-shadow: 0px 10px 30px -20px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: start;
  flex-wrap: nowrap;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 20px;
  scroll-padding: 0 20px;

  /* Ограничение ширины контейнера под 3 карточки */
  /* 3 карточки + 2 gap + 2 padding */

  max-width: calc(3 * 31rem + 2 * 20px + 40px);
  width: 100%;
  min-width: 31rem;
  box-sizing: border-box;
}

.agent-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 15px;
  width: 100%;
  max-width: none;
  min-height: 53rem;
  max-width: 31rem;
  padding: 20px;
  border-radius: 20px;
}

.agent-card-link {
  /* display: block; */
  flex: 0 0 31rem;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.agent-card-link:hover {
  transform: translateY(-10px);
}

.heading-agents {
  color: #2718a9;
  font-family: "NeueMachina-800";
  font-size: clamp(2rem, 8vw, 4.8rem);
  margin-bottom: 15px;
}

.text-agents {
  color: #1d1d1d;
  text-align: center;
  font-family: "Formular-400";
  max-width: calc(3 * 31rem + 2 * 20px + 40px);
  font-size: clamp(1.5rem, 8vw, 2.4rem);
  margin-bottom: 15px;
}

.agent-card h2 {
  color: #fff;
  font-family: "Formular-700";
  font-size: 2.4rem;
}

.agent-card .workflows {
  color: #fff;
  font-family: "Formular-700";
  font-size: 1.6rem;
  text-transform: uppercase;
}

.agent-card .workflows-item {
  border-radius: 10px;
  border: 0.5px solid rgba(255, 255, 255, 0.95);
  background: rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(20px);
  padding: 10px 20px;
  color: #fff;
  font-family: "Formular-700";
  font-size: 1.6rem;
}

.dolor-section {
  padding: 60px 30px;
}

.integration-section {
  overflow: hidden;
  position: relative;
  width: auto;
}

.apps-container {
  display: flex;
  align-items: center;
  gap: 15px;
  animation: scroll 10s linear infinite;
  width: auto;
  padding-bottom: 20px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-120px * 12 - 15px * 12));
  }
}

.apps-container::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

.app-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  width: 120px;
  padding: 10px;
  border-radius: 50%;
  border: 0.4px solid var(--base-blue-color);
  box-shadow: 0px 1.516px 1.516px 0px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}

.app-circle img {
  height: 60px;
}

.moriak-section {
  padding: 0 80px 80px 45px;
}

.moriak {
  max-width: 100%;
  height: auto;
  margin-bottom: 40px;
}

.moriak-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.moriak-heading {
  color: var(--base-black-color);
  font-family: "NeueMachina-500";
  font-size: clamp(2rem, 8vw, 9.6rem);
}

.moriak-special {
  color: var(--base-blue-color);
  font-family: "NeueMachina-500";
}

.dolor-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.start-button {
  color: #1d1d1d;
  font-family: "NeueMachina-500";
  font-size: clamp(2rem, 8vw, 9.6rem);
  border: 3px solid var(--base-blue-color);
  border-radius: 30px;
}

.comparison-container {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 1500px;
  min-width: 300px;
  padding: 40px 40px 40px 0;
  box-sizing: border-box;
}

.comparison-header {
  display: grid;
  grid-template-columns: 300px 1fr 1fr;
  margin-bottom: 30px;
}

.comparison-header h2 {
  font-family: "NeueMachina-800";
  font-size: 5rem;
  margin: 0;
  color: var(--base-black-color);
  padding-left: 40px;
}

.comparison-header .empty-cell {
  /* Empty space for alignment */
}

.comparison-row {
  display: grid;
  grid-template-columns: 300px 1fr 1fr;
  border-bottom: 1px solid var(--border-color);
}

.comparison-row:last-child {
  border-bottom: none;
}

.category {
  font-family: "NeueMachina-800";
  font-size: clamp(2rem, 8vw, 4rem);
  color: var(--base-black-color);
}

.category.promise {
  padding: 0 0 30px 20px;
  border-bottom: 1px solid rgba(39, 24, 169, 0.1);
  background: #fff;
}

.category.cloud {
  padding: 30px 0 0 20px;
}

.pro-list,
.contra-list {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}

.pro-list,
.contra-list {
  border-bottom: 0.8px solid var(--base-blue-color);
  padding: 0;
  margin: 0 40px;
}

.pro_768 {
  display: none;

  font-family: "NeueMachina-800";
  font-size: 3rem;
  margin: 0;
  color: var(--base-black-color);
  padding-left: 40px;
  margin-top: 10px;
}

.item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 0.8px solid var(--base-blue-color);
}

.item:last-child {
  border-bottom: none;
}

.item-number {
  font-family: "Formular-300";
  font-size: 1.9rem;
  color: var(--base-black-color);
  margin-right: 15px;
  min-width: 30px;
  list-style: inside;
}

.item-text {
  font-family: "Formular-300";
  font-size: clamp(1rem, 8vw, 1.9rem);
  color: var(--base-black-color);
  word-wrap: break-word;
  hyphens: auto;
}

/* development-stages */
.development-container {
  width: 100%;
  min-height: 30rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

.development-stages {
  position: relative;
  /* background: url('images/background.svg'); */
  width: 100%;
}

.development-stages::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(231, 232, 237, 0.6);
  z-index: 0;
}

.stages {
  width: 100%;
  max-width: 65%;
  height: auto;
  object-fit: contain;
  transform: translateX(-40px);
}

.robot-container {
  position: relative;
  display: inline-block;
  width: auto;
}

.robot-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #f5f5f5, #e6e6fa, #f5f5f5);
  z-index: -1;
  border-radius: 16px;
}

.robot,
.stages {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* .robot-container {
  width: 100%; 
  max-width: 35%; 
  height: auto;
  object-fit: contain;
  max-height: 600px;
} */

.robot-container {
  position: relative;
  display: inline-block;
  width: 35%;
  max-width: 35%;
  max-height: 600px;
  max-width: 400px;
}

.robot {
  width: 100%;
  /* max-width: 35%;  */
  height: auto;
  object-fit: contain;
  max-width: 400px;
  max-height: 600px;
}

.steps-section {
  position: relative;
  /* background: url('images/background.svg'); */
  padding: 40px;
  overflow-x: hidden;
  padding: 40px 40px 70px 40px;
}

.step-contaienr {
  position: relative;
  z-index: 1;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 100px;
}

/* .arrow-bg {
    position: absolute;
    top: 650px;
    right: 35%;
    z-index: 0;
    width: 300px;
    transform: rotate(-180deg);
    height: auto;
  }
  */

.step-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 40px;
  min-width: 340px;
}

.steps-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(231, 232, 237, 0.6);
  z-index: 0;
}

footer {
  position: relative;
  /* background: url('images/background.svg'); */
  padding: 60px;
  padding-left: clamp(1rem, 10vw, 10rem);
  padding-right: clamp(1rem, 10vw, 10rem);

  background: rgba(231, 232, 237, 0.6);
}

/* footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(231, 232, 237, 0.6);
  z-index: 0;
} */

.footer-container,
.customer-info-footer {
  position: relative;
  z-index: 1;
  margin-bottom: 100px;
}
.footer-container {
  width: 44%;
}

.footer-container img {
  max-width: 125px;
  height: 20px;
}

.footer-logo {
  color: var(--base-blue-color);
  font-family: "NeueMachina-500";
  font-size: clamp(2rem, 8vw, 3.2rem);
}

.customer-info-footer {
  display: flex;
  justify-content: flex-start;
}

.customer-info-footer p:not(.footer-logo) {
  color: var(--base-blue-color);
  font-family: "NeueMachina-500";
  font-size: clamp(1rem, 8vw, 2rem);
}

.telephone-container,
.legal-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.social-medias {
  display: flex;
  gap: 10px;
}

.social-medias button {
  font-size: 2rem;
}

.text-block-18 {
  color: #1d1d1d;
  white-space: nowrap;
  font-family: Formular, sans-serif;
  font-size: 12px;
  line-height: 120%;
  text-align: center;
  padding-top: 20px;
}

.link-block-5 {
  border: 3px solid var(--base-blue-color);
  color: var(--brandcolor2);
  border-radius: 30px;
  padding: 10px 60px;
  font-family: "NeueMachina-500", sans-serif;
  text-decoration: none;
}

.text-block-17 {
  white-space: nowrap;
  align-items: center;
  padding-bottom: 15px;
  font-family: "NeueMachina-500", sans-serif;
  line-height: 100%;
  display: flex;
  font-size: 60px;
}

.input-wrapper {
  position: relative;
  width: 100%;
}

.hero-input {
  margin-bottom: 20px;
}

#agent-list {
  position: absolute;
  top: 90%;
  left: 0;
  width: 100%;
  background: white;
  border: 1px solid #ccc;
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
  border: none;
  padding: 15px 25px;
  border-radius: 20px;
}

#agent-list::-webkit-scrollbar {
  display: none;
}

.agent a {
  font-family: "Formular-300";
  font-size: clamp(1rem, 8vw, 2rem);
  color: var(--base-black-color);
  text-decoration: none;
}

.agent a:hover {
  text-decoration: underline;
}

.floating-span {
  color: #1d1d1d;
  font-family: "NeueMachina-500";
  font-size: clamp(2rem, 8vw, 4rem);
  border: 2px solid var(--base-blue-color);
  border-radius: 15px;
}

.group-3-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.search-button {
}

.search-button a {
  display: block;
  white-space: wrap;
  text-decoration: none;
  color: var(--base-blue-color);
  border-radius: 10px;
  border: 0.5px solid rgba(255, 255, 255, 0.95);
  background: rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(20px);
  padding: 5px 10px;
  font-family: "Formular-700";
  font-size: clamp(1rem, 3vw, 1.4rem);
  transition: 0.4s;
  text-align: center;
}

.search-button a:hover {
  background: rgb(255 255 255);
}

.workflows-list .workflow-item {
  border-radius: 10px;
  border: 0.5px solid rgba(255, 255, 255, 0.95);
  background: rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(20px);
  padding: 10px 20px;
  color: #fff !important;
  font-family: "Formular-700" !important;
  font-size: 1.6rem !important;
  margin: 5px;
}

#agent-detail .workflow-desc {
  color: var(--base-blue-color);
  font-size: clamp(2rem, 8vw, 3rem);
  font-family: "NeueMachina-500";
  text-align: center;
}

.category-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 90px;
}

.scroll-buttons-container {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  gap: 10px;
}

.scroll-buttons-container button {
  padding: 15px 30px;
}

.div-block-39 {
  width: 45%;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: flex-start;
  font-size: 20px;
  line-height: 120%;
  display: flex;
  font-family: "NeueMachina-500";
  white-space: nowrap;
}

.div-block-42 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  display: flex;
}
.link-block-6 {
  color: #1d1d1d;
  border: 1px solid #1d1d1d;
  border-radius: 12px;
  padding: 8px 25px;
  font-family: "NeueMachina-500";

  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
}
.loader {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  border: 6px solid #f3f3f3;
  border-top: 6px solid #2718a9;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: spin 1s linear infinite;
  z-index: 9999;
  background: transparent;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.hidden {
  display: none;
}


@media (max-width: 1024px) {
  .stages {
    max-width: 100%;
    transform: none;
    /* отключаем смещение */
    margin: 0 auto;
    /* центрируем */
  }

  .footer-container {
    width: 37%;
  }
}

/* Для планшетов */
@media (max-width: 768px) {
  .app-circle {
    height: 90px;
    width: 90px;
    padding: 8px;
  }

  .app-circle img {
    height: 45px;
  }

  .moriak-container {
    flex-direction: column;
    gap: 20px;
  }
  .moriak-heading {
    font-size: 14vw;
  }
  .link-block-5 {
    width: 100%;
    justify-content: center;
    display: flex;
  }

  .text-block-17 {
    font-size: 48px;
    padding: 0;
  }
  .footer-container {
    width: 100%;
    margin-bottom: 0;
    margin: auto;
    order: 2;
    display: flex;
    justify-content: center;
  }

  .customer-info-footer {
    display: flex !important;
    flex-direction: column;
    margin: 0;
    gap: 50px;
  }

  .div-block-39 {
    order: 1;
  }
}

/* Для мобильных */
@media (max-width: 480px) {
  .app-circle {
    height: 70px;
    width: 70px;
    padding: 6px;
  }

  .app-circle img {
    height: 35px;
  }

  .search-btn {
    right: 25px;
  }
}
