.gallery-flush-cards__card {
    transition: transform 0.3s ease;
}
.gallery-flush-cards__card:hover {
    transform: scale(1.05);
}
.gallery-flush-cards__img {
    height: 16rem;
}

/* Card hover: scale */
.portfolio-item-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.portfolio-item-hover:hover {
    transform: scale(1.05);
}

.stats__icon-dim--lg {
  width: 5rem;
  height: 5rem;
}

.stats-card-hover {
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.stats-card-hover:hover {
  box-shadow:
    0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
  transform: translateY(-0.5rem) scale(1.05);
}

.stats-media-hover {
  transition: background-color 0.3s ease;
}

.stats-card-hover:hover .stats-media-hover {
  background-color: rgb(191 219 254);
}

.stats-icon-hover {
  transition: color 0.3s ease;
}

.stats-card-hover:hover .stats-icon-hover {
  color: rgb(30 64 175);
}

.stats-value-hover {
  transition: color 0.3s ease;
}

.stats-card-hover:hover .stats-value-hover {
  color: rgb(30 41 59);
}

.stats__label {
  transition: color 0.3s ease;
}

.stats-card-hover:hover .stats__label {
  color: rgb(51 65 85);
}

