.cards {
  padding-top: 30px;
  background: var(--color-white);
  margin-bottom: 0px;
}
.cards .cards-title {
  font-size: 60px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
  line-height: 62px;
  max-width: 800px;
  justify-self: center;
}
.cards .cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
@media (min-width: 768px) {
  .cards .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.cards .card {
  background: white;
  border: 5px solid var(--primary-color);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  min-height: 280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.cards .card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.cards .card .card-icon {
  margin-bottom: 30px;
}
.cards .card .card-icon img {
  width: 38px;
  height: 38px;
  -o-object-fit: contain;
     object-fit: contain;
}
.cards .card .card-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 36px;
  line-height: 1.2;
}
.cards .card .card-text {
  font-size: 16px;
  line-height: 1.5;
}