#banner {
  text-align: left;
  background: #FFFFFF;
  margin-top: -6px;
}

#banner-mobile {
  background: #FFFFFF;
  text-align: center;
  margin-bottom: 30px;
}

#banner-row {
  display: flex;
  flex-direction: row;
  padding: 20px 0;
  background-color: #000;
}

#banner-image-container {
  width: 65%;
}

#banner-text-container {
  width: 35%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#banner-title {
  font-size: 25px;
  margin: 0;
  color: #FFFFFF;
}

#banner-subtitle {
  font-size: 16px;
  margin: 0;
  color: #FFFFFF;
}


@media (min-width: 544px){
  #banner-mobile {
    display: none;
  }
}

@media (max-width: 992px){
  #banner-title {
    font-size: 19px;
  }
  
  #banner-subtitle {
    font-size: 13px;
  }
}

@media (max-width: 768px){
  #banner-title {
    font-size: 13px;
  }
  
  #banner-subtitle {
    font-size: 8px;
  }
}


@media (max-width: 543px){
  #banner-image-container {
    width: 90%;
  }

  #banner-text-container {
    display: none;
  }
}