/* Banner --------------------------------------------------------------------------------------------------------*/
.banner {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  align-items: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
  margin-bottom: 21px;
}

.banner-left-part {
  background: #134776;
  width: 288px;
  padding: 25px 15px;
}

.banner-left-heading {
  font-weight: 700;
  margin-bottom: 10px;
}

.banner-left-listing-item + .banner-left-listing-item {
  margin-top: 10px;
}

.banner-left-listing-link {
  color: #fff;
  display: inline-block;
  position: relative;
  padding-left: 20px;
  text-decoration: underline;
  line-height: 1.25rem;
}
.banner-left-listing-link:hover {
  color: #fff;
}
.banner-left-listing-link:before {
  content: "";
  height: 3px;
  width: 1px;
  background: #fff;
  position: absolute;
  left: 10px;
  top: 8px;
}

.banner-right-part {
  background: #FF3946;
  width: 344px;
  padding: 25px 15px;
}

.banner-right-heading {
  font-weight: 700;
  margin-bottom: 10px;
}

.banner-right-content {
  font-size: 0.813rem;
  line-height: 1.25rem;
}

/* Responsive Media Queries --------------------------------------------------------------------------------------------------------*/
@media (max-width: 767.98px) {
  .banner {
    display: block;
    padding: 0;
    background: none !important;
    margin-bottom: 30px;
  }

  .banner-left-part {
    width: auto;
  }

  .banner-right-part {
    width: auto;
    margin-top: 20px;
  }

  .banner-left-listing-link:before {
    top: 9px;
  }

  .banner-left-listing {
    max-width: 251px;
  }

  .banner-right-content {
    font-size: 1rem;
    line-height: 1.25rem;
  }
}

/*# sourceMappingURL=banner.css.map */
