.oupute_contact_service {
  padding: 2rem 0;
  background: #FB7018;
  font-family: var(--font-family);
}

.oupute_contact_service .ocs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.oupute_contact_service .ocs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.oupute_contact_service .ocs-item-icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF;
  border-radius: 0.5rem;
}

.oupute_contact_service .ocs-item-icon img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}

.oupute_contact_service .ocs-item-title {
  margin-top: .75rem;
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.oupute_contact_service .ocs-item-desc {
  margin-top: .25rem;
  color: #FFF;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.43;
}

@media screen and (max-width: 768px) {
  .oupute_contact_service .ocs-grid {
    grid-template-columns: 1fr;
  }
}