.services-top-banner-container {
  width: 100%;
  height: 200px;
  background-image: url(./../media/contact-cover.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--color-brand);
  background-blend-mode: hard-light;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 44px;
  font-weight: 600;
  color: #fff;
}
.services-top-banner-container span {
  background: #f9f9f9bf;
  width: 100%;
  text-align: center;
  color: #0a5688;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.services-main-container {
  max-width: 1200px;
  margin: 0 auto;
}
.service-main-cover {
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  padding: 4rem 2rem 0 2rem;
  max-width: 720px;
  margin: 0 auto;
}
.highlight {
  color: var(--color-brand);
  font-weight: 600;
}

.service-card {
  width: 100%;
  margin: 160px 2rem;
  display: flex;
  gap: 2rem;
  padding: 2rem;
  border-radius: 1rem;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-1);
}

.icon-wrap {
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 500;
  text-transform: capitalize;
  gap: 1rem;
  color: var(--color-brand);
}

@media screen and (max-width: 1030px) {
  .service-card {
    width: unset;
    flex-direction: column;
  }

  .info-wrap {
    text-align: center;
  }
}
