section.boxes.dark .content {
  background: var(--chapter-color-dark);
  color: var(--white);
}
section.boxes.dark li::after {
  background-color: var(--chapter-color-dark);
}
section.boxes li {
  list-style: none;
  position: relative;
}
section.boxes li + li {
  margin-top: 6.25rem;
}
section.boxes li .content {
  background: var(--chapter-color);
  border-radius: 2.5rem;
  padding: 3.125rem;
  text-align: center;
}
@media screen and (max-width: 63.9375em) {
  section.boxes li .content {
    padding: 2.5rem 1.875rem;
  }
}
section.boxes li::after {
  content: "";
  width: 100px;
  height: 100px;
  display: block;
  -webkit-mask-image: url("/wp-content/themes/ung-face-it-live/assets/arrow-sketch.svg");
          mask-image: url("/wp-content/themes/ung-face-it-live/assets/arrow-sketch.svg");
  background: var(--chapter-color);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: auto;
          mask-size: auto;
  position: absolute;
  bottom: -60px;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  left: 25%;
}
@media screen and (max-width: 63.9375em) {
  section.boxes li::after {
    right: -25%;
    left: auto;
    bottom: 0;
    -webkit-transform: translateY(70%) scale(-1, 1);
            transform: translateY(70%) scale(-1, 1);
  }
}
section.boxes li:nth-child(even)::after {
  left: auto;
  right: 25%;
  -webkit-transform: translateY(100%) scale(-1, 1);
          transform: translateY(100%) scale(-1, 1);
}
@media screen and (max-width: 63.9375em) {
  section.boxes li:nth-child(even)::after {
    left: -25%;
    right: auto;
    bottom: 0;
    -webkit-transform: translateY(70%) scale(1, 1);
            transform: translateY(70%) scale(1, 1);
  }
}
section.boxes li:last-child::after {
  display: none;
}