@charset "UTF-8";
/**
 * Intro module. All selectors are children of .mod_intro.
 * Optional image before title (centered, max 180×60px), optional H2, text, optional CTA. No reviews block.
 */
.mod_intro {
  text-align: center;
}

.mod_intro .row .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 20px;
}

.mod_intro .row .logo img {
  max-width: 180px;
  max-height: 60px;
  width: auto;
  height: auto;
  display: block;
}

@media screen and (max-width: 64em) {
  .mod_intro .row .logo img {
    max-width: 160px;
    max-height: 50px;
  }
}

@media screen and (max-width: 40em) {
  .mod_intro .row .logo img {
    max-width: 140px;
    max-height: 40px;
  }
}

.mod_intro .row .inner {
  max-width: 580px;
  margin: 0 auto 20px;
  position: relative;
}

.mod_intro .row h2 {
  margin-bottom: 0;
}

.mod_intro .row .btn {
  margin-top: 0.5em;
}
