.cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 1rem;
  margin-bottom: 4rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 1024px) {
  .cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 80%;
    margin: 5rem auto;
  }
}

.cards__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: Montserrat, sans-serif;
  width: 70%;
  margin-bottom: 2rem;
  max-height: 800px;
  border-radius: 5px;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 2200px) {
  .cards__card {
    height: 1000px;
  }
}

@media (min-width: 1024px) {
  .cards__card {
    width: 32%;
    min-height: 475px;
  }
}

.cards__card:hover {
  -webkit-box-shadow: 2px 3px 20px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 2px 3px 20px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.cards__card-image {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  width: 100%;
  height: 45%;
}

.cards__card-header {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  text-align: center;
  font-size: 1rem;
}

@media (min-width: 2200px) {
  .cards__card-header {
    font-size: 2rem;
  }
}

.cards__card-para {
  margin-right: 0.5rem;
  margin-left: 0.5rem;
  padding-bottom: 1rem;
}

@media (min-width: 2200px) {
  .cards__card-para {
    font-size: 1.5rem;
  }
}
/*# sourceMappingURL=cards.css.map */