.banner {
  width: 100%;
  margin: 25px 0;
}
.banner--standard {
  background-color: #315470;
  background-image: linear-gradient(45deg, #315470, #4F868E);
}
.banner--standard .banner__button a {
  background-color: #DB864E;
}
.banner--standard .banner__button a:hover {
  background-color: #cc6a2a;
}
.banner--alternate {
  background-color: #315470;
  background-image: linear-gradient(45deg, #315470, rgba(49, 84, 112, 0.5));
}
.banner--alternate .banner__button a {
  background-color: #A70E13;
}
.banner--alternate .banner__button a:hover {
  background-color: #c80f13;
}
.banner--dcss {
  background-color: #315470;
  background-image: linear-gradient(45deg, #4197cb, #105589);
}
.banner--dcss .banner__button a {
  color: #105589 !important;
  background-color: #62cbc9;
}
.banner--dcss .banner__button a:hover {
  color: #105589;
  background-color: #75d1d0;
}
.banner--grey {
  background-color: #000;
  background-image: linear-gradient(45deg, #555, #000);
}
.banner--grey .banner__button a {
  background-color: #c80f13;
}
.banner--grey .banner__button a:hover {
  background-color: #A70E13;
}
.banner .banner__contain {
  max-width: 1140px;
  min-height: 105px;
  margin: 0 auto;
  padding: 10px 15px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
.banner .banner__title {
  font-family: "Roboto", sans-serif;
  font-size: 28px;
  line-height: 34px;
  font-weight: 700;
  color: #fff;
}
.banner .banner__button a {
  display: inline-block;
  padding: 5px;
  min-width: 250px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  transition: background-color 0.2s ease-in-out;
}

@media screen and (max-width: 640px) {
  .banner .banner__contain {
    flex-flow: column wrap;
    justify-content: center;
  }
  .banner .banner__title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 15px;
  }
}/*# sourceMappingURL=Banner.css.map */