.services-detail-bottom {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 80px 0 160px 0;
  background-image: url("/assets/image/bg-pattern-mobile-2.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right top;
}
.services-detail-bottom .content-wrapper {
  align-items: center;
  justify-content: center;
}
.services-detail-bottom__container p {
  margin-bottom: 16px;
}
.services-detail-bottom__container img {
  display: inline-block;
  min-height: 200px;
  object-fit: cover;
}
@media only screen and (min-width: 480px) {
  .services-detail-bottom {
    background-size: cover;
  }
}
@media only screen and (min-width: 768px) {
  .services-detail-bottom {
    background-image: url("/assets/image/bg-pattern-2.png");
  }
}
@media only screen and (min-width: 1024px) {
  .services-detail-bottom {
    padding: 130px 0 200px 0;
  }
  .services-detail-bottom__container {
    display: grid;
    grid-template-columns: [full-width-start] 17% [content-start] 1fr [content-end] 17% [full-width-end];
  }
  .services-detail-bottom__container * {
    display: inline-block;
    grid-column: content;
  }
  .services-detail-bottom__container p:has(img) {
    grid-column: full-width;
    text-align: center;
  }
}
.services-detail-top {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 0 60px 0;
}
.services-detail-top .content-wrapper {
  align-items: center;
  justify-content: space-between;
}
.services-detail-top__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-right: 0;
}
.services-detail-top__title {
  margin-bottom: 30px;
}
.services-detail-top__text p {
  color: #655C4F;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 30px;
  line-height: 1.875rem;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
}
.services-detail-top__image {
  width: auto;
  margin-bottom: 60px;
}
@media only screen and (min-width: 1024px) {
  .services-detail-top {
    padding: 150px 0;
  }
  .services-detail-top .content-wrapper {
    flex-direction: row-reverse;
  }
  .services-detail-top__content {
    max-width: 480px;
    margin-right: 100px;
  }
  .services-detail-top__image {
    width: 40%;
    margin-bottom: 0;
  }
}