.title-normal {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  position: relative;
  margin-bottom: 32px;
}
.title-normal::before {
  position: absolute;
  content: "";
  background: url("https://static.cmereye.com/imgs/2022/12/d5f545332ae6097e.png") no-repeat center;
  width: 100%;
  height: 16px;
  left: 0;
  bottom: -16px;
}
.services-item {
  position: relative;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 0 15px lightgray;
  max-width: 228px;
  text-align: center;
}
.services-item a {
  color: var(--color-accent);
  transition: all 0.3s ease;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.services-item a:hover {
  background-color: var(--color-accent);
  color: #fff;
}
.services-item a::before {
  position: absolute;
  content: "";
  width: 200%;
  height: 200%;
  background-color: rgba(255, 255, 255, 0.3);
  left: 0;
  top: 0;
  transition: all 0.3s ease-in;
  transform: rotate(-45deg) translate(-100%, -100%);
  pointer-events: none;
}
.services-item a:hover::before {
  transform: rotate(-45deg) translate(100%, 100%);
}
@media screen and (min-width: 768px) {
  .video-swiper {
    padding: 40px 0;
  }
  .video-swiper .swiper-slide.swiper-slide-prev,
  .video-swiper .swiper-slide.swiper-slide-next {
    transform: scale(1.2);
    z-index: 10;
  }
  .video-swiper .swiper-slide.swiper-slide-active {
    transform: scale(1.4);
    z-index: 20;
  }
}
@media screen and (max-width: 1023px) {
  .services-item {
    padding: 12px 0;
  }
  .services-item::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    width: 100%;
    height: 104%;
    margin-left: 7.5px;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(
      120deg,
      rgba(0, 123, 255, 0) 20%,
      rgba(0, 123, 255, 0.25),
      rgba(255, 255, 255, 0),
      #b3d7ff,
      rgba(255, 255, 255, 0),
      #4777d8,
      rgba(0, 123, 255, 0.25),
      rgba(0, 123, 255, 0.5),
      rgba(0, 123, 255, 0.25),
      rgba(255, 255, 255, 0)
    );
    background-size: 482%;
  }
}
@media screen and (min-width: 1024px) {
  .title-normal {
    font-size: 36px;
    margin-bottom: 88px;
  }
  .title-normal::before {
    bottom: -24px;
  }
  .services-item {
    aspect-ratio: 1/1;
  }
}
