/*to run in console => sass --watch banner-video.scss ../Styles/banner-video.css*/
div.cards-section {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 3.5% 3.5% 0 3.5%;
  background-color: #f3f3f3;
}
div.cards-section h2 {
  color: #323e48ff;
  font-size: 7rem;
  padding-left: 6rem;
  padding-bottom: 2rem;
}
div.cards-section div.cards-column {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: stretch;
  text-align: center;
  width: 33%;
}
div.cards-section div.cards-column h3 {
  color: #323e48ff;
  font-size: 3rem;
  font-weight: normal;
  padding: 0 6rem;
  height: 205px;
}
div.cards-section div.cards-column .image-container {
  text-align: center;
}
div.cards-section .break {
  flex-basis: 100%;
  height: 0;
}
@media (max-width: 768px) {
  div.cards-section {
    flex-direction: column;
    min-height: unset;
  }
  div.cards-section h2 {
    font-size: 6rem;
    padding-left: 2rem;
  }
  div.cards-section div.cards-column {
    width: 100%;
    padding-bottom: 4rem;
  }
  div.cards-section div.cards-column h3 {
    padding: 2rem;
    height: auto;
  }
}

/*# sourceMappingURL=cards-section.css.map */
