@charset "utf-8";

.service__box {
  padding: 60px 20px !important;
}
@media screen and (min-width: 900px) {
  .service__box {
    padding: 81px 72px 80px 72px !important;
  }
}

.service__box::before {
  content: "";
  position: absolute;
  width:100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #2d87e9 0%, rgba(32, 118, 211, 0.44) 55.66%, rgba(55, 126, 203, 0.14) 100%, #fff 100%);
  opacity: 0.75;
  z-index: 1;
  pointer-events: none;
}
.service__box-item {
  z-index: 2;
}

.service__box-img {
  object-fit: cover;
}

.service__box-links {
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
   justify-content: center;
}
@media screen and (min-width: 800px) {
  .service__box-links {
 justify-content: start;
  }
}

.service__box-link {
  width: 200px;
  background: #fff;
  border-radius: 5px;
  padding: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.service__box-link::after {
  content: "";
  background: url(../images/arrow-down.svg) center / cover no-repeat;
  width: 7px;
  height: 7px;
}
.service__box-link:hover {
  background: #F2F9FF;
}

.service__wrap {
      display: flex;
    flex-direction: column;
    gap: 100px;
}

.service__head {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 40px;
}
@media screen and (min-width: 900px) {
  .service__head {
    flex-direction: row;
    align-items: center;
    gap: 70px;
  }
}

.service__swiper {
  width: 100vw;
  height: auto;
  margin-top: 64px;
  margin-left: calc((100vw - 100%) / 2 * -1);
}
@media screen and (min-width: 900px) {
  .service__swiper {
    margin-top: 164px;
  }
}
.service__swiper,
.service__swiper-wrapper,
.service__swiper-slide {
  position: relative;
}
.service__swiper-wrapper {
  display: flex;
  transition-timing-function: linear;
  align-items: flex-start;
}
.service__swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  aspect-ratio: 390 / 400;
  width: 390px;
}
.service__swiper-slide img {
aspect-ratio: 390 / 400;
  object-fit: cover;
  width: 100%;
  height: 100%;
  width: 390px;
}
