.services-v2 {
  padding-bottom: var(--sp);
  background: var(--secondary-2);
  color: var(--secondary-1);
}

.services-v2__inner {
  padding-top: var(--sp);
  position: relative;
}

.services-v2__title,
.services-v2__items {
  position: relative;
  z-index: 2;
}

.services-v2__title {
  display: none;
  margin-bottom: var(--title-mb);
}

.services-v2__items {
  width: 100%;
  max-width: 406px;
  margin-left: auto;
  padding-bottom: 375px;
}

.services-v2__items .item {
  position: -webkit-sticky;
  position: sticky;
  top: 97px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 196px;
  padding: 32px 16px;
  border-bottom: 1px solid var(--neutral-3);
  background: var(--secondary-2);
  transition: var(--transition);
}

.services-v2__items .item:hover {
  background: var(--primary-1);
}

.services-v2__items .item__title a:hover {
  color: var(--primary-2);
}

.services-v2__items .item__arrow {
  width: 17px;
  aspect-ratio: 17/18;
  margin-left: auto;
  margin-top: auto;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='18' viewBox='0 0 17 18' fill='none'%3E%3Cpath d='M15.6406 10.0762L12.6543 10.0107L-4.37583e-07 10.0107L-3.43245e-07 7.85254L12.6543 7.85254L6.32715 1.52637L7.85352 -3.90414e-07L16.7852 8.93164L15.6406 10.0762ZM7.85547 17.8633L6.36621 16.375L11.1943 11.5469L14.1074 11.6104L7.85547 17.8633Z' fill='white'/%3E%3C/svg%3E") center/contain no-repeat;
}

.services-v2__items .item__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.services-v2__image {
  position: absolute;
  z-index: 1;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
}

.services-v2__image-box,
.services-v2__image-car {
  position: absolute;
  left: 0;
  width: 100%;
  aspect-ratio: 1240/765;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.services-v2__image-box {
  position: -webkit-sticky;
  position: sticky;
  top: 97px;
}

.services-v2__image-car {
  bottom: 0;
}

@media (max-width: 1260px) {
  .services-v2__items {
    max-width: 360px;
    padding-bottom: 170px;
  }

  .services-v2__items .item:hover {
    background: transparent;
  }

  .services-v2__items .item {
    padding: 32px 0;
  }

  .services-v2__image {
    width: 75%;
  }
}

@media (max-width: 760px) {
  .services-v2__title {
    display: block;
  }

  .services-v2__items {
    max-width: none;
    margin: 0;
    padding-bottom: 0;
  }

  .services-v2__image {
    position: relative;
    width: 552px;
    aspect-ratio: 1240/765;
  }
}