/**
 * Breakpoints
 */
/**
 * Typography
 */
/**
 * Grid
 */
/**
 * Colors
 */
/**
 * Spacing
 */
/**
* Font Sizes
*/
/**
 * Components
 */
/**
 * Animations
 */
/*
 * Media query to respond to a minimum size (mobile first)
 */
/*
 * Media query to respond to a maximum size
 */
/*
 * Output font size in px/rem
 */
/*
 * Placeholder mixin for <input>
 */
/**
 * Clearfix
 */
.section--split-content {
  padding: var(--section-vertical-padding) 0;
}
.section--split-content__text {
  padding-left: 85px;
}
.row--reverse .section--split-content__text {
  padding-right: 90px;
  padding-left: 0;
}
.section--split-content .statistics {
  display: flex;
  margin-top: 40px;
  padding-right: 50px;
  gap: 50px;
}
.section--split-content .statistics dl {
  position: relative;
  text-align: center;
}
.section--split-content .statistics dl:after {
  display: block;
  position: absolute;
  top: 0;
  right: -25px;
  content: "";
  border-right: 1px #1D2E40 dashed;
  width: 1px;
  height: 100%;
}
.section--split-content .statistics dl:first-child {
  padding-left: 0;
}
.section--split-content .statistics dl:last-child:after {
  display: none;
}
.section--split-content .statistics dl:nth-child(1) {
  flex-basis: 94px;
}
.section--split-content .statistics dl:nth-child(2) {
  flex-basis: 140px;
}
.section--split-content .statistics dl:nth-child(3) {
  flex-basis: 172px;
}
.section--split-content .statistics dt {
  font-size: 24px;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.section--split-content .statistics dd {
  font-size: 12px;
  font-size: 0.75rem;
}
.row--reverse .section--split-content .statistics {
  padding-right: 0;
  padding-left: 50px;
}
@media screen and (max-width: 768px) {
  .section--split-content .statistics {
    flex-direction: column;
    gap: 20px;
    padding: 0;
    margin-top: 38.4px;
    margin-bottom: 0;
    border-top: 1px #1D2E40 dashed;
    border-bottom: 1px #1D2E40 dashed;
    padding: 19.2px 0;
  }
  .section--split-content .statistics dl {
    flex-basis: auto !important;
  }
  .section--split-content .statistics dl:after {
    border-right: none;
    border-bottom: 1px #1D2E40 dashed;
    width: 100%;
    height: 1px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    top: unset;
  }
  .section--split-content__text {
    padding-right: 0 !important;
    padding-left: 0 !important;
    padding-top: 38.4px;
  }
  .section--split-content__text.last-on-mobile {
    padding-top: 0;
  }
  .section--split-content .row--reverse__text {
    padding-top: 0;
  }
}
