/* max width + 40px + 40px margins */
.sidebar {
  grid-column: 2/6;
  height: 0;
  padding-right: 4rem;
}
.sidebar__inner {
  background: white;
  padding: 8px 0;
  position: relative;
}
.sidebar__inner:before, .sidebar__inner:after {
  content: "";
  position: absolute;
  height: 22px;
  width: 100%;
  top: -22px;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}
.sidebar__inner:after {
  top: auto;
  bottom: -22px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}
.sidebar strong {
  font-family: "MaisonNeue", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: bold;
}
.sidebar ol {
  list-style: none;
  counter-reset: ob-counter;
  padding-left: 0;
}
.sidebar ol p {
  margin-bottom: 0;
}
.sidebar li {
  counter-increment: ob-counter;
  display: flex;
  margin-bottom: 1.2rem;
  opacity: 1;
  transform: translateY(0);
}
.sidebar li:before {
  content: counter(ob-counter);
  font-size: 60px;
  font-size: 6rem;
  line-height: 50px;
  line-height: 5rem;
  flex: 0 0 60px;
}
.sidebar.observed--out li {
  opacity: 0;
  transform: translateY(3rem);
}
.sidebar.observed li:nth-child(1) {
  transition: all 0.5s ease 0.2s;
}
.sidebar.observed--out li:nth-child(1) {
  transition: none;
}
.sidebar.observed li:nth-child(2) {
  transition: all 0.5s ease 0.4s;
}
.sidebar.observed--out li:nth-child(2) {
  transition: none;
}
.sidebar.observed li:nth-child(3) {
  transition: all 0.5s ease 0.6s;
}
.sidebar.observed--out li:nth-child(3) {
  transition: none;
}
.sidebar.observed li:nth-child(4) {
  transition: all 0.5s ease 0.8s;
}
.sidebar.observed--out li:nth-child(4) {
  transition: none;
}
.sidebar.observed li:nth-child(5) {
  transition: all 0.5s ease 1s;
}
.sidebar.observed--out li:nth-child(5) {
  transition: none;
}
.sidebar.observed li:nth-child(6) {
  transition: all 0.5s ease 1.2s;
}
.sidebar.observed--out li:nth-child(6) {
  transition: none;
}
.sidebar.observed li:nth-child(7) {
  transition: all 0.5s ease 1.4s;
}
.sidebar.observed--out li:nth-child(7) {
  transition: none;
}
.sidebar.observed li:nth-child(8) {
  transition: all 0.5s ease 1.6s;
}
.sidebar.observed--out li:nth-child(8) {
  transition: none;
}
.sidebar.observed li:nth-child(9) {
  transition: all 0.5s ease 1.8s;
}
.sidebar.observed--out li:nth-child(9) {
  transition: none;
}
@media screen and (max-width: 1200px) {
  .sidebar {
    padding-right: 1.2rem;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 24px;
    line-height: 2.4rem;
  }
}
@media screen and (max-width: 900px) {
  .sidebar {
    padding-right: 0;
  }
  .sidebar li:before {
    font-size: 30px;
    font-size: 3rem;
    line-height: 36px;
    line-height: 3.6rem;
    flex: 0 0 30px;
  }
}
@media screen and (max-width: 766px) {
  .sidebar {
    height: auto;
    grid-column: 2/14;
    margin-bottom: 2.4rem;
  }
}

/*# sourceMappingURL=style.css.map */