/**
* @description Iterates over the $space-gap values and creates a class for each one.
* @param {list} $space-gap - A list of space gap values.
*/
.gap-8 {
  gap: 8px;
}

.gap-16 {
  gap: 16px;
}

.gap-24 {
  gap: 24px;
}

.card-with-hover {
  cursor: pointer;
  height: 100%;
  min-height: 14.5625rem;
  position: relative;
}
@media (min-width: 769px) {
  .card-with-hover {
    height: 100%;
    min-height: 11.875rem;
  }
}
.card-with-hover .card-image-container,
.card-with-hover .card-content {
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
.card-with-hover .card-content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  left: 0;
  padding: 1rem;
  position: absolute;
  top: 0;
  width: 100%;
}
.card-with-hover p {
  font-family: "FinalSix-book", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0rem;
  line-height: 1.25rem;
  margin: 0;
  text-align: left;
}
.card-with-hover .card-title {
  bottom: 40px;
  color: #fff;
  font-size: 25px;
  left: 50%;
  margin: 0 auto;
  padding: 15px 0;
  text-align: center;
  text-shadow: 2px 3px 2px rgba(0, 0, 0, 0.6);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}

/*# sourceMappingURL=cardWithHover.css.map*/