.banner {
  background-color: #363636;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  line-height: 1.6;
  font-size: 16px;


.banner:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.08);
  transition: transform .3s, opacity .6s;
  pointer-events: none;
}

.banner-container.page-center {
  position: relative;
  z-index: 1;
  text-align: center;
  display: table;
  width: 100%;
  height: 33.07vw;
 
}

.banner-content {
  display: table-cell;
  vertical-align: middle;
}

.banner-content h1 {
  margin-top: .2em;
  margin-bottom: .2em;
  color: #007cba;
  font-size: 3.5em;
  text-shadow: 0px 1px 1px #bbbbbb;
  font-weight: 500;
}

.banner-content p {
  color: #007cba;
  margin-top: .2em;
  margin-bottom: .2em;
  font-size: 2em;
  text-shadow: 0px 1px 1px #bbbbbb;
  line-height: 1.5;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

@media screen and (max-width: 849px) {
  .banner {
    font-size: 1.8vw;
  }
}

@media screen and (max-width: 549px) {
  .banner {
    font-size: 11px;
  }

  .banner-content h1 {
    font-size: 2em;
  }

  .banner-content p {
    font-size: 1.3em;
  }
}


