/************************************************
* history
*************************************************/
.history {
  margin: 0 auto;
}
.historydiv:not(.media):not(header) {
  padding-bottom: 0 !important;
}
@media screen and (min-width: 768px) {
  .history {
    margin-bottom: 10em;
  }
}
.history .entries {
  position: relative;
  margin-bottom: 18em;
}
.history .entries::after {
  content: "";
  width: 2px;
  height: 100%;
  position: absolute;
  background: var(--color-primary);
  left: 2.5rem;
  top: 0;
  z-index: -1;
}
.history .entry:nth-child(even) .number {
  display: flex;
  justify-content: flex-end;
}
.history .entry {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.history .entry figure {
  margin: calc(3em + 2px) 0 0 0;
  padding: 0;
  width: 100%;
}
.history .entry figure img {
  width: 100%;
}
.history .entry::before {
  content: "";
  flex: 1 auto;
  min-height: 3em;
}
@media screen and (max-width: 768px) {
  .history .entry .number {
    position: absolute;
  }
}
@media screen and (min-width: 768px) {
  .history .entry:nth-child(odd) .number {
    order: 2;
  }
  .history .entry:nth-child(odd) .innerContent {
    order: 1;
  }
  .history .entry:nth-child(odd)::before {
    order: 3;
  }
}
.history .number {
  position: relative;
}
@media screen and (min-width: 768px) {
  .history .number {
    width: 40%;
  }
}
.history .number::before {
  content: "";
  width: 50%;
  min-height: 2px;
  background: var(--color-primary);
  position: absolute;
  top: 50%;
}
.history .entry:nth-child(even) .number::before {
  right: 0;
}
@media screen and (min-width: 1024px) {
  .history .entry:last-child .number::after {
    content: "";
    width: 100%;
    display: block;
    background: #fff;
    position: absolute;
    min-height: 515px;
  }
}
.history .circle {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1em;
}
.history .circle span {
  font-weight: 600;
  color: white;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.history .innerContent {
  width: 70%;
  margin-left: 30%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .history .innerContent .innerText {
    position: absolute;
  }
}
.history .innerContent h2::after,
.history .innerContent h3::after,
.history .innerContent h4::after {
  content: "";
  display: block;
  width: 130px;
  height: 0;
  border: 3px solid var(--color-primary);
  background-color: var(--color-primary);
  margin-top: 0.2em;
}

/************************************************
* RESPONSIVE
*************************************************/
@media (min-width: 750px) {
  .history .entries::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .history .innerContent {
    width: 30%;
    margin-left: 0;
    order: 2;
  }
}

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