.technologies-section {
  padding-top: 127px;
  padding-bottom: 96px;
  position: relative;
}

.technologies-wrapper {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.technologies-info .technologies-info-pretitle {
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  text-transform: uppercase;
  text-align: right;
  color: #fff;
  display: block;
}

.technologies-info .technologies-info-title{
  font-weight: 700;
  font-size: 48px;
  line-height: 125%;
  letter-spacing: -0.02em;
  text-align: right;
  color: #fff;
  display: block;
  margin-bottom: 20px;
}

.technologies-info p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: right;
  color: var(--subtext);
}

.technologies-marquee {
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}

.technologies-info {
  max-width: 790px;
  z-index: 3;
}

.swiper-marquee .swiper-wrapper {
  transition-timing-function: linear !important;
}

.marquee-block {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border: 1px solid var(--accent);
  border-radius: 20px;
  width: 200px;
  height: 200px;
  flex-shrink: 0;
}

.technologies-gif {
  mix-blend-mode: lighten;
  pointer-events: none;
}

.technologies-section .bg-circle-white {
  position: absolute;
  top: -20%;
  left: -20%;
  max-width: 100vw;
  width: 100%;
  max-height: 792px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.technologies-section .bg-circle-white svg {
  width: 100%;
}

.technologies-section .bg-circle-red {
  position: absolute;
  top: 0;
  right: 0%;
  width: 440px;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-radius: 100%;
  background: var(--accent);
  filter: blur(190px);
  animation: bg-circle-red-technologies 10s infinite linear;
}

@keyframes bg-circle-red-technologies {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
@media (max-width: 1280px) {
  .technologies-gif {
    max-width: 480px;
    width: 100%;
    flex-shrink: 0;
    margin-left: -40px;
  }
  .technologies-info p {
    margin-left: -20px;
  }
  .technologies-section .bg-circle-red {
    top: auto;
    bottom: 5%;
    right: auto;
    left: 0;
    z-index: -1;
  }
}
@media (max-width: 767px) {
  .technologies-section {
    padding-top: 72px;
    padding-bottom: 0;
  }
  .technologies-info .technologies-info-pretitle {
    margin-bottom: 12px;
  }
  .technologies-section .bg-circle-white {
    display: none;
  }
  .technologies-info .technologies-info-title {
    font-size: 28px;
    margin-bottom: 48px;
  }
  .technologies-info p {
    margin-left: 0;
  }
  .technologies-wrapper {
    margin-bottom: 24px;
  }
  .swiper-marquee {
    padding-bottom: 75px;
  }
}/*# sourceMappingURL=technologies-section.css.map */