@charset "UTF-8";
/**
 * Banner module: dark section with title and content.
 * Reference: modulos/mod_banner/mod_banner.css
 */

.mod_banner {
  background: #333;
  position: relative;
  overflow: hidden;
}
.mod_banner .row {
  position: relative;
  z-index: 2;
  padding: calc(60px + 2.5%) 20px;
}
@media screen and (max-width: 40em) {
  .mod_banner .row {
    padding: 45px 20px;
  }
}
.mod_banner .row p a {
  text-decoration: underline;
}
.mod_banner .row h2,
.mod_banner .row h3,
.mod_banner .row h4,
.mod_banner .row p,
.mod_banner .row ul li,
.mod_banner .row a,
.mod_banner .row p a {
  color: #fff;
}
.mod_banner .row span.small {
  color: #fff;
}
.mod_banner .row ul li:before {
  background: #fff !important;
}
.mod_banner .row a.btn {
  text-decoration: none;
}
.mod_banner.dark {
  background: #333;
}
.mod_banner.dark .row {
  position: relative;
  z-index: 3;
}
.mod_banner.dark .row h2,
.mod_banner.dark .row h3,
.mod_banner.dark .row h4,
.mod_banner.dark .row p,
.mod_banner.dark .row ul li,
.mod_banner.dark .row a,
.mod_banner.dark .row p a {
  color: #fff;
}
.mod_banner.dark:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #222;
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
}
/* Background image: full-bleed layer behind all content (CSS background-image) */
.mod_banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.mod_banner .content.columns-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
}
@media screen and (max-width: 40em) {
  .mod_banner .content.columns-two {
    grid-template-columns: 1fr;
  }
}
