#services-list > .container {
  padding-top: var(--block-spacing);
  margin-bottom: -48px;
}
#services-list > .container > h2 {
  color: var(--color-secondary-1);
}
#services-list > div:not(.container) {
  max-width: 1440px;
  margin: 0 auto calc(var(--block-spacing) / 2);
  display: grid;
  grid-template-columns: 1fr 47.9166666667%;
}
#services-list > div:not(.container) > .img {
  clip-path: url(#image-clip-tr);
}
#services-list > div:not(.container) > .img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#services-list > div:not(.container).even {
  grid-template-columns: 47.9166666667% 1fr;
}
#services-list > div:not(.container).even > .img {
  order: -1;
}
#services-list > div:not(.container).even > .services-list-content > .index {
  background-color: var(--color-secondary-1);
}
#services-list > div:not(.container):last-child {
  margin: 0 auto;
}

body.home #services-list > div:not(.container) {
  align-items: end;
}
body.home #services-list > div:not(.container) > .img {
  aspect-ratio: 690/610;
}

@media screen and (width < 1280px) {
  #services-list > .container {
    margin-bottom: 0;
  }
}
@media screen and (width < 1024px) {
  #services-list > div:not(.container),
  #services-list > div.even:not(.container) {
    grid-template-columns: 100%;
  }
  #services-list > div.even:not(.container) > .img {
    order: 0;
  }
}
.services-list-content {
  padding: 0 60px 40px 120px;
}
.services-list-content > .index {
  padding: 4px 24px;
  border-radius: 999px;
  background-color: var(--color-secondary-light);
  color: white;
  width: fit-content;
  margin-bottom: 24px;
}
.services-list-content > h3 {
  white-space: pre-line;
  margin-bottom: 24px;
}
.services-list-content > .content {
  white-space: pre-line;
  color: var(--color-gray-3);
  margin-bottom: 40px;
}
.services-list-content > .list {
  display: flex;
  gap: 12px;
  align-items: start;
  margin-top: 16px;
}
.services-list-content > .list > img {
  width: 24px;
  flex-shrink: 0;
}
.services-list-content > .list > div > p {
  margin-top: 12px;
}
.services-list-content > .default-btn {
  margin-top: 24px;
}

@media screen and (width < 1440px) {
  .services-list-content {
    padding: 0 60px 40px max((100vw - 1200px) / 2, 24px);
  }
}
@media screen and (width < 1024px) {
  .services-list-content {
    padding: 40px 24px 24px;
  }
}
@media screen and (width < 768px) {
  .services-list-content > .index {
    margin-bottom: 12px;
  }
  .services-list-content > h3 {
    margin-bottom: 12px;
  }
  .services-list-content > .content {
    margin-bottom: 24px;
  }
  .services-list-content > .list {
    gap: 8px;
    margin-top: 12px;
  }
  .services-list-content > .list > img {
    width: 20px;
  }
}