.service-banner {
  padding: 60px 160px;
  background-color: var(--black);
}
@media (max-width: 950px) {
  .service-banner {
    padding: 60px 80px;
  }
}
@media (max-width: 600px) {
  .service-banner {
    padding: 60px 20px;
  }
}
.service-banner h2 {
  color: white;
  text-align: center;
  margin: 0 auto 50px;
  width: 100%;
}
.service-banner .service-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1360px;
  margin: 0 auto;
}
@media screen and (max-width: 1160px) {
  .service-banner .service-wrapper {
    justify-content: center;
  }
}
@media screen and (max-width: 900px) {
  .service-banner .service-wrapper {
    flex-direction: column;
    align-items: center;
  }
}
.service-banner .service-wrapper .service-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  flex: 0 0 200px;
}
@media screen and (max-width: 900px) {
  .service-banner .service-wrapper .service-container {
    flex-direction: row;
    width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .service-banner .service-wrapper .service-container {
    flex-direction: column;
  }
}
.service-banner .service-wrapper .service-container .img-container {
  width: 200px;
  height: 200px;
  min-width: 200px;
  min-height: 200px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 5px solid var(--red);
  overflow: hidden;
}
.service-banner .service-wrapper .service-container .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-banner .service-wrapper .service-container .text-container h3 {
  color: white;
  text-align: center;
  hyphens: auto;
  hyphenate-limit-chars: 6 6 11;
  line-height: 1.5;
}
@media screen and (max-width: 900px) {
  .service-banner .service-wrapper .service-container .text-container h3 {
    text-align: left;
  }
}
@media screen and (max-width: 450px) {
  .service-banner .service-wrapper .service-container .text-container h3 {
    text-align: center;
  }
}

/*# sourceMappingURL=service-banner.css.map */
