.feature-cards__section-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
}

.feature-cards__module {
  padding-top: 4rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
}

.vertical__name {
  transform: rotate(-90deg);
  position: absolute;
  left: -2%;
  color: #353d5d;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.card__container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  height: 600px;
}

.card__content {
  padding: 33px 23px;
}

.card__item {
  width: 346px;
  height: 512px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  border-radius: 20px;
  margin: 0 1rem;
  transition: height 0.2s linear;
  overflow: hidden;
}

.card__item:hover {
  height: 572px;
}

.card__title {
  font-size: 36px;
  line-height: 38px;
}

.card__body {
  font-family: 'Lato';
  font-size: 16px;
  line-height: 22px; /* 137.5% */
  margin-bottom: 1rem;
}

.card__body--bullet-points > ul {
  list-style-type: disc;
  padding-left: 1rem;
}

.card__image {
  width: 100%;
  overflow: hidden;
}

.card__image--bottom {
  position: absolute;
  bottom: -48px;
  width: 100%;
  height: auto;
  object-fit: cover;
  margin: 0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  transition: bottom 0.2s linear;
}

.card__item:hover .card__image--bottom {
  bottom: 0;
}

.file-download__container {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
}

@media (max-width: 1200px) {
  .vertical__name {
    display: none;
  }
}

@media (max-width: 1011px) {
  .card__container {
    flex-direction: column;
    align-items: center;
    height: auto;
  }

  .card__item {
    margin: 0 0 1rem 0;
    width: 100%;
    max-width: 708px;
    height: 100%;
    justify-content: center;
  }

  .card__item:hover {
    height: 208px;
  }

  .card__content {
    width: 65%;
    padding: 24px;
  }

  .card__title {
    font-size: 28px;
    line-height: 32px;
    padding-bottom: 1rem;
  }

  .card__body {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0;
  }

  .card__image--bottom {
    position: absolute;
    bottom: -36px;
    right: 0;
    width: 30%;
    border-bottom-right-radius: 20px;
  }
}

@media (max-width: 546px) {
  .feature-cards__module {
    padding-top: 2rem;
  }
  .card__image--bottom {
    display: none;
  }

  .card__item {
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
  }

  .card__content {
    width: 90%;
  }

  .card__title {
    font-size: 24px;
    line-height: 28px;
    padding-bottom: 0.5rem;
  }
  
  .card__body--bullet-points {
    text-align: left;
}
