.card-link {
  display: flex;
  position: relative;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
  padding: 20px 30px;
  position: relative;
  color: white;
  cursor: pointer;
}
@media (min-width: 0) {
  .card-link {
    height: 30vh;
  }
}
@media (min-width: 768px) {
  .card-link {
    height: calc(30vh - 10px);
  }
}
@media (min-width: 1440px) {
  .card-link {
    height: calc(20vh - 10px);
  }
}
.card-link::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: -1;
}
.card-link img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center center;
  z-index: -1;
  opacity: 0.9;
}
.card-link .link {
  display: flex;
  flex-flow: column;
  font-size: 26px;
  font-weight: bold;
}
.card-link .link i {
  margin-top: 10px;
}
