/** Shopify CDN: Minification failed

Line 156:10 Unexpected "{"
Line 156:19 Expected ":"
Line 157:14 Expected identifier but found whitespace
Line 157:16 Unexpected "{"
Line 157:25 Expected ":"
Line 157:76 Expected ":"
Line 158:17 Expected identifier but found whitespace
Line 158:19 Unexpected "{"
Line 158:28 Expected ":"
Line 158:82 Expected ":"
... and 10 more hidden warnings

**/
.timeline-section {
  color: rgb(var(--color-foreground));
}

.timeline-heading {
  margin-bottom: 2rem;
  text-align: center;
  max-width: 78rem;
}

  .timeline-heading.timeline-heading--left {
    text-align: left;
  }
  .timeline-heading.timeline-heading--center {
    text-align: center;
  }
  .timeline-heading.timeline-heading--right {
    text-align: right;
  }

.timeline {
  position: relative;
  max-width: 130rem;
  margin: 0 auto;
  padding: 2rem 0rem;
}

.timeline-line {
  position: absolute;
  width: 1px;
  background-color: rgb(var(--color-foreground));
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: 4rem 0rem;
  display: block !important;
}

.timeline-item {
  position: relative;
  margin: 0rem 0;
  display: flex;
  justify-content: flex-start;
}

.timeline-marker {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: rgb(var(--color-foreground));
  border: 1px solid rgb(var(--color-foreground));
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: block !important;
}

.timeline-content {
  position: relative;
  width: calc(50% - 5rem);
  padding: 0.5rem 0rem;
  text-align: left;
}

.timeline-item:nth-child(even) {
  justify-content: flex-end;
}

.timeline-content--right {
  margin-left: calc(50% + 5rem);
}

.timeline-year {
  font-size: calc(var(--font-heading-scale) * 3rem);
  font-family: "Romie-Regular";
  line-height: 1.3;
  margin-bottom: 1rem;
}

.timeline-title {
  margin-bottom: 1rem;
}

.timeline-text {
  font-size: 1.6rem;
  line-height: 1.7;
}

/* Mobile styles */
@media screen and (max-width: 749px) {
  .timeline {
    padding: 2rem 0 2rem 2rem;
  }

  .timeline-line {
    left: 3rem;
    transform: none;
  }

  .timeline-item {
    margin: 4rem 0;
  }

  .timeline-marker {
    left: 0rem;
    transform: none;
  }

  .timeline-content,
  .timeline-content--right {
    width: calc(100% - 3rem);
    margin-left: 3rem;
    padding: 0 2rem;
  }

    .timeline-item:nth-child(even) {
    justify-content: flex-start;
  }

  .timeline-year {
    font-size: calc(var(--font-heading-scale) * 2.4rem);
  }
}

/* Animation styles */
.timeline-item.animate--slide-in {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity var(--duration-long) ease,
              transform var(--duration-long) ease;
}

.timeline-item.animate--slide-in.animate--active {
  opacity: 1;
  transform: translateY(0);
}

.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
  padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
}

@media screen and (min-width: 750px) {
  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }
}