/* =========================
   VALUES
========================= */

.values {
  padding: 4rem 0;
}

.values__title {
  margin-bottom: 2rem;
  text-align: center;
}

.values__grid {
  display: grid;
  gap: 1.5rem;
}

/* desktop */
@media (min-width: 768px) {
  .values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.value {
  padding: 1.5rem;
  border: 1px solid #eee;
}

.value__title {
  margin-bottom: 0.5rem;
}

.value__text {
  opacity: 0.8;
}



