﻿@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.banner {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin: 0 -50vw 1em;
  min-height: 400px;
  display: flex;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1024px) {
  .banner {
    background-position: 75%;
  }
}
.banner .banner-inverse .banner__text-contents {
  background-color: rgba(0, 0, 0, 0.85);
  color: #ffffff;
}
.banner .banner-inverse .banner__cta a.button--text {
  color: #ffffff;
}

.banner__text-container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-self: center;
  padding: 0 10%;
  filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.5));
}
@media (max-width: 1024px) {
  .banner__text-container {
    padding: 0;
    position: absolute;
    filter: none;
  }
}
@media screen and (min-width: 992px) {
  .banner__text-container {
    width: 40%;
    padding: 0 0 0 5%;
  }
}
.banner__text-container .banner__logo img {
  max-width: 140px;
}
.banner__text-container .banner__title h1,
.banner__text-container .banner__title h2,
.banner__text-container .banner__title h3 {
  font-size: 1.75rem;
}
.banner__text-container .banner__text-contents {
  background-color: rgba(255, 255, 255, 0.9);
  width: 100%;
  margin: 0 auto;
  padding: 25px;
}
@media screen and (min-width: 992px) {
  .banner__text-container .banner__text-contents {
    width: unset;
  }
}
@media (max-width: 1024px) {
  .banner__text-container .banner__text-contents {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 2em;
  }
}
.banner__text-container .banner__text {
  line-height: 1.5em;
}
.banner__text-container .banner__text p {
  margin: 0.5em 0;
}
.banner__text-container .banner__cta {
  margin-top: 1em;
}
.banner__text-container .banner__cta a.button--text {
  color: #000000;
}
.banner__text-container .banner__cta a.button--text:hover, .banner__text-container .banner__cta a.button--text:focus {
  color: #ff4c00;
}
.banner__text-container.banner-dark {
  min-height: 400px;
  padding: 0;
  filter: none;
}
.banner__text-container.banner-dark.banner-inverse .banner__text-contents {
  background-color: rgba(255, 255, 255, 0.9);
  color: #000000;
}
.banner__text-container.banner-dark.banner-inverse .banner__text-contents .cta a {
  color: #000000;
}
.banner__text-container.banner-dark.banner-inverse .banner__text-contents .cta a:hover {
  color: #ff4c00;
}
@media screen and (min-width: 992px) {
  .banner__text-container.banner-dark {
    width: 50%;
  }
}
.banner__text-container.banner-dark .banner__title h1,
.banner__text-container.banner-dark .banner__title h2,
.banner__text-container.banner-dark .banner__title h3 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.banner__text-container.banner-dark .banner__text-contents {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  color: #ffffff;
  margin: 0;
  padding: 1em 25%;
}
@media (max-width: 1024px) {
  .banner__text-container.banner-dark .banner__text-contents {
    padding: 2em;
    background-color: rgba(0, 0, 0, 0.7);
  }
}
.banner__text-container.banner-dark .cta a {
  color: #ffffff;
}
