<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Custom CSS for ACF Home - Banner Images */
.banner-wrapper {
  width: 100%;
  background-color: #e2e3e4;
  height: 71px;
}
.banner-top {
  display: flex;
  align-items: center;
  padding: 15px 0px;
  width: 1170px;
  height: 100%;
  margin: 0 auto;
  
}
.banner-top img {
  max-height: 30px;
  width: auto;
  margin: 0 20px;
  height: 24px;
}
.primary-container {
  display: flex;
  position: relative;
  padding-right: 15px;
  bottom: 5px;
}
.primary-container img {
  margin-left: 0;
  height: 32px;
  bottom: 3px;
}
.primary-container::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 42px;
  right: 0;
  top: -3.1px;
  background-color: #222;
}
.banner-container {
  display: flex;
  flex: 1;
  flex-wrap: wrap; /* Stops image overflow */
}

@media screen and (max-width: 1190px) {
  .banner-top {
    width: 970px;
  }
}
/* Hide on mobile view breakpoint */
@media screen and (max-width: 980px) {
  .banner-wrapper {
    display: none;
  }
}
</pre></body></html>