/* --- Section: services --- */
.section-layanan-kami {
  background-color: #fff;
  justify-content: center;
  align-items: center;
  padding: 100px;
  display: flex;
  overflow: hidden;
}
.section-layanan-kami-container {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  grid-template-rows: auto;
  grid-template-columns: 0.6fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  justify-content: stretch;
  align-items: stretch;
  max-width: 1140px;
  max-height: none;
  display: grid;
}
.section-layanan-kami-img-desktop-wrapper {
  object-fit: fill;
  border-radius: 8px;
  order: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  display: flex;
  overflow: hidden;
}
.section-layanan-kami-details-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: space-around;
  width: auto;
  height: 100%;
  display: flex;
}
.section-layanan-kami-img-desktop {
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  display: block;
}
.section-layanan-kami-grid {
  grid-template-rows: auto auto auto;
}
.section-layanan-kami-grid-item {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #eef5f9;
  border-radius: 8px;
  flex-flow: column;
  justify-content: flex-start;
  padding: 20px;
  display: flex;
}
.section-layanan-kami-grid-item--title {
  color: var(--darker-ssid);
  font-family: Roboto, sans-serif;
  font-weight: 700;
}
.section-layanan-kami-grid-item--desc {
  color: #969bab;
  font-family: Roboto, sans-serif;
  font-size: 1rem;
}
.section-layanan-kami--section-name {
  color: var(--00afaa);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 700;
}
.section-layanan-kami--title {
  color: var(--10405a);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
}
.section-layanan-kami--desc {
  color: var(--10405a);
  font-family: Roboto, sans-serif;
  font-size: 1rem;
}
.section-layanan-kami--action {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}
.section-layanan-kami-img-mobile-wrapper {
  height: 100%;
  max-height: 388px;
  overflow: hidden;
}
.section-layanan-kami-img-mobile {
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: 388px;
  display: block;
}
.section-layanan-kami-details--header {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}
@media screen and (width<=991px) {
  .section-layanan-kami {
    padding: 60px;
  }
}
@media screen and (width<=767px) {
  .section-layanan-kami {
    padding: 40px;
  }
  .section-layanan-kami-container {
    grid-template-columns: 1fr;
  }
  .section-layanan-kami-img-desktop-wrapper {
    display: none;
  }
  .section-layanan-kami-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}
@media screen and (width<=479px) {
  .section-layanan-kami {
    padding: 30px;
  }
  .section-layanan-kami--title {
    font-size: 1.5rem;
  }
}
@media screen and (width>=1920px) {
  .section-layanan-kami--desc {
    font-size: 1.2rem;
  }
}
