.proc-g {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.proc-c {
  background: rgba(13, 31, 28, .5);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
}

.proc-c:hover {
  transform: translateY(-8px);
  border-color: rgba(29, 124, 110, .3);
}

.proc-n {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, .85);
  line-height: 1;
  margin-bottom: 1.5rem;
  display: block;
  transition: color .3s;
}

.proc-c:hover .proc-n {
  color: #1D7C6E;
}

.proc-c h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: .75rem;
}

.proc-c p {
  color: rgba(255, 255, 255, .75);
  line-height: 1.6;
  font-size: .85rem;
}
