.card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  border-radius: 45px;
  min-height: 460px;
  overflow: hidden;
}

.card--gradient-bg {
  background: linear-gradient(0deg, #000 0%, rgba(102, 102, 102, 0.00) 50%);
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 0;
}

.card__copy {
  margin-bottom: 40px;
  z-index: 1;
}

.card__title,
.card__desc {
  text-align: center;
  color: white;
}

.card__title {
  font-size: 28px;
}

.card__desc {
  line-height: 130% !important;


@media only screen and (max-width : 767px) {
.card__title { font-size: 25px !important; margin: 0 0 10px !important; }
.card__desc { font-size: 18px !important; }
}