.card {
  border-radius: unset;
  background-color: $white;
  padding: 1rem;
  border: unset;
  transition: all 0.2s ease-in-out;
  &-01 {
    border-radius: 1.25rem;
    background-color: $primary-94;
    padding: 1.5rem;
    text-align: center;

    &:hover {
      background-color: $secondary;
      transform: translateY(-8px);
      box-shadow: 0px 16px 48px rgba(0, 0, 0, 0.32);
      i,
      h5 {
        color: $white !important;
      }
    }
  }
}
