
.banner {
  position: relative;
  font-size: 1rem;
}
.banner .bg-image {
  margin: 0 0 1rem;
  overflow: hidden;
}
.banner .bg-image img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  vertical-align: middle;
}
.banner .banner-content {
  background: #002b60;
}
.banner .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -30px;
  margin-left: -30px;
}

.banner .text-wrap {
  position: relative;
  width: 100%;
  background: #002b60;
  color: #fff;
  padding: 1.25rem 1.875rem;
}

.banner .text-inner {
    margin-top: 3em;
    margin-bottom: 3em;
}

.banner h1 {
  font-size: 2.5rem;
  position: relative;
  margin-bottom: 2.5rem;
  color: #fff;
}

.banner h1:before {
  content: " ";
  width: 44px;
  height: 3px;
  background: #ee7600;
  display: inline-block;
  position: absolute;
  bottom: -15px;
  left: 0;
  border-radius: 5px;
  -webkit-animation: d .3s ease-in 0s 1 forwards;
  animation: d .3s ease-in 0s 1 forwards;
}
.banner .text-inner p {
  font-weight: 400;
  color: #ced4da;
  font-size: 1.25rem;
}

@media (min-width: 992px) {
  .banner .banner-content {
    position: absolute;
    background: transparent;
    bottom: 0;
    width: 100%;
  }
  .banner .text-wrap {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
    border-top-right-radius: 20px;
    margin-left: -2.1875rem;
    padding: 2.5rem 4.0625rem;
  }
  .banner.no-image .banner-content {
    position: unset;
    background: #002b60;
  }
}
