/*to run in console => sass --watch banner-video.scss ../Styles/banner-video.css*/
div.banner-video-section {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 2.5%;
  min-height: 460px;
}
div.banner-video-section.light {
  background-color: #ffffff;
}
div.banner-video-section.light h3 {
  color: #323e48ff;
  font-size: 4rem;
}
div.banner-video-section.light h2 {
  color: #323e48ff;
  font-size: 4rem;
}
div.banner-video-section.dark {
  background-color: #323e48ff;
}
div.banner-video-section.dark h3 {
  color: #ffffff;
  font-size: 4rem;
}
div.banner-video-section.dark h2 {
  color: #ffffff;
  font-size: 4rem;
}
div.banner-video-section .highlight-text {
  text-decoration: underline;
  color: #ffffff;
}
div.banner-video-section .highlight-text:hover {
  cursor: pointer;
}
div.banner-video-section .highlight-orange {
  color: #f28b00ff;
  line-height: normal;
  text-decoration: underline;
}
div.banner-video-section div.banner-video-column {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  text-align: center;
  width: 50%;
}
div.banner-video-section div.banner-video-column .title-container {
  padding: 2rem 6rem;
  text-align: left;
}
div.banner-video-section #ytplayer {
  display: block;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  min-height: 190px;
  max-width: 600px;
  max-height: 380px;
}
@media (max-width: 768px) {
  div.banner-video-section {
    flex-direction: column;
    min-height: unset;
  }
  div.banner-video-section div.banner-video-column {
    width: 100%;
  }
  div.banner-video-section.light h3, div.banner-video-section.dark h3 {
    font-size: 3rem;
  }
  div.banner-video-section.light h2, div.banner-video-section.dark h2 {
    font-size: 3rem;
  }
}
@media (max-width: 600px) {
  div.banner-video-section div.banner-video-column .title-container {
    padding: 2rem;
  }
  div.banner-video-section #ytplayer {
    margin-top: 3rem;
    max-width: 320px;
    max-height: 190px;
  }
}

/*# sourceMappingURL=banner-video.css.map */
