@charset "utf-8";

.about__wrap {
  position:relative;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 53px;
}
@media screen and (min-width: 900px) {
  .about__wrap {
    flex-direction: row;
    gap: min(calc(99 / 1366 * 100vw), 99px);
  }
}

.about__title {
  width: fit-content;
  white-space: nowrap;
}
.about__title + .about__title {
  margin-top: 18px;
}

.about__swiper,
.about__swiper-wrapper,
.about__swiper-slide {
  position: relative;
  aspect-ratio: 554 / 460;
  width: min(100%, 554px);
  flex-shrink: 0;
}
@media screen and (min-width: 900px) {
  .about__swiper,
  .about__swiper-wrapper,
  .about__swiper-slide {
    width: min(calc(554 / 1366 * 100vw), 554px);
  }
}
.about__swiper-wrapper {
  transition-timing-function: linear;
  align-items: flex-start;
}
.about__swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  aspect-ratio: 554 / 460;
  max-width: 554px;
}
.about__swiper-slide img {
aspect-ratio: 554 / 460;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.about__text-wrap {
  position: absolute;
  top: 235px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
@media screen and (min-width: 900px) {
  .about__text-wrap {
     top: -90px;
  }
}

.bg-text__wrap {
  display: flex;
  gap: 50px;
}
.bg-text {
  font-size: 261px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: calc(378 / 261);
  color: rgba(54, 142, 232, 0.07);
  flex-shrink: 0;
  animation: infinity-scroll-left 50s infinite linear 0.5s both;
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}

.features__wrap {
  margin: 77px auto 0;
  max-width: 980px;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.features__item {
  display: flex;
  flex-direction: column;
  gap: 75px;
}

.features__head {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-direction: column;
  align-items: start;
}
@media screen and (min-width: 768px) {
  .features__head {
    flex-direction: row;
    gap: min(calc(156 / 1366 * 100vw), 156px);
    align-items: center;
  }
}
.c5153 {
  flex-shrink: 0;
}
.features__point {
  padding: 12px 16px;
  width: fit-content;
  background: url(../images/20250724144439646086.svg) center center / contain no-repeat;
}
.features__point02 {
  background: url(../images/20250729113742364760.svg) center center / contain no-repeat;
}

.features__img {
  aspect-ratio: 375/300;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .features__img {
  aspect-ratio: 980/350;
  }
}


@media screen and (min-width: 900px) {
 .features__item:nth-of-type(2) {
  flex-direction: row-reverse;
   align-items: center;
  gap: 79px;
}
.features__item:nth-of-type(2) .features__img {
  aspect-ratio: 390/500;
  width: 390px;
}
.features__item:nth-of-type(2) .features__head {
  flex-direction: column;
  align-items: start;
  gap: 50px;
}
}


