:root {
  --timeline-dark-green: #243508;
  --timeline-light-green: #bff355;
  --timeline-taupe: #e2d6cf;
}

.timeline {
  position: sticky;
  top: 80px;
  transition: all 0.5s ease-in-out;
  /***HLWD-148 fix no parallax on resolution lesser than desktkop***/
  /***HLWD-148 fix no parallax on resolution lesser than desktkop***/
}
@media (max-width: 1180px) {
  .timeline {
    position: relative !important;
    top: 0 !important;
  }
}

.on-page-editor .timeline {
  position: relative;
  top: 0;
}

.min-h-screen {
  min-height: 100vh;
}

.bg-white {
  background-color: white;
}

section.timeline:has(+ footer) {
  margin-bottom: -1px;
  margin-top: -1px;
}

section.timeline {
  padding-top: 120px;
  padding-bottom: 120px;
  font-family: "roobert_regular";
  background-color: #243508;
  color: white;
}
@media (max-width: 992px) {
  section.timeline {
    padding-top: 60px;
    padding-bottom: 60px;
    margin-right: -2px;
  }
}
section.timeline.dark_green {
  background-color: #243508;
  color: white;
}
section.timeline.light_green {
  background-color: var(--timeline-light-green);
  color: var(--timeline-dark-green);
}
section.timeline.bg_grey {
  background-color: var(--timeline-taupe);
  color: var(--timeline-dark-green);
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.text-timeline {
  color: var(--timeline-light-green);
  font-size: 35px;
  margin-bottom: 4rem;
}
.bg_grey .text-timeline {
  color: var(--timeline-dark-green);
}
.light_green .text-timeline {
  color: var(--timeline-dark-green);
}

.dark_green.text-timeline {
  color: #fff;
}

.light_green.text-timeline {
  color: var(--timeline-dark-green);
}

.bg_grey.text-timeline {
  color: var(--timeline-dark-green);
}

.text-3xl {
  font-size: 2.875rem;
}

.font-bold {
  font-weight: 700;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.tabs-wrapper {
  border-right: 2px solid var(--timeline-light-green);
  border-left: 2px solid var(--timeline-light-green);
  margin-top: 30px;
}
@media (max-width: 767px) {
  .tabs-wrapper {
    border-right: 0;
    border-left: 0;
    margin-left: -15px;
    margin-right: -15px;
  }
}
.bg_grey .tabs-wrapper {
  border-color: var(--timeline-dark-green);
}
.light_green .tabs-wrapper {
  color: var(--timeline-dark-green);
  border-color: var(--timeline-dark-green);
}

.abstract-wrapper {
  display: flex;
  row-gap: 3rem;
  flex-wrap: wrap;
  font-size: 21px;
}
@media (min-width: 992px) {
  .abstract-wrapper {
    padding-bottom: 64px;
  }
}
.bg_grey .abstract-wrapper {
  color: var(--timeline-dark-green);
}
.light_green .abstract-wrapper {
  color: var(--timeline-dark-green);
}

/* 1col - always full width */
.timeline_text_1col {
  flex-basis: 100%;
  width: 100%;
  display: block;
  padding-right: 20px;
}

/* 2col - start on new line, take half width */
.timeline_text_2col {
  flex-basis: 50%;
  width: 50%;
  display: block;
  padding-right: 20px;
}

@media (max-width: 768px) {
  .timeline_text_1col,
  .timeline_text_2col {
    flex-basis: 100%;
    width: 100%;
  }
}
.text-abstract {
  font-size: 21px;
  width: 80%;
}
.bg_grey .text-abstract {
  color: var(--timeline-dark-green);
}
.light_green .text-abstract {
  color: var(--timeline-dark-green);
}

.leading-relaxed {
  line-height: 1.625;
}

.grid {
  display: grid;
}

.gap-8 {
  gap: 2rem;
}

.timeline-tabs {
  font-size: 17px;
  min-height: 64px;
}
.timeline-tabs .timeline-wrapper {
  display: flex;
  overflow-x: auto;
}
.timeline-tabs .flex {
  display: flex;
}
.timeline-tabs .overflow-x-auto {
  overflow-x: auto;
}
.timeline-tabs .scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.timeline-tabs .scrollbar-hide::-webkit-scrollbar {
  display: none;
}
.timeline-tabs .snap-x {
  scroll-snap-type: x mandatory;
}
.timeline-tabs .snap-mandatory {
  scroll-snap-type: x mandatory;
}
.timeline-tabs .py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.timeline-tabs .w-full {
  width: 100%;
}

#tabs-container {
  scroll-snap-type-x: mandatory;
}

.timeline-tab {
  flex: 1;
  min-width: 119px;
  min-height: 64px;
  padding: 1rem;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
  font-size: 17px;
  font-family: "roobert_regular";
  scroll-snap-align: center;
  background-color: var(--timeline-dark-green);
  color: var(--timeline-light-green);
  cursor: pointer;
  border: none;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  border-left: 1px solid var(--timeline-light-green);
  border-right: 1px solid var(--timeline-light-green);
  border-bottom: 2px solid var(--timeline-light-green);
  scroll-snap-align: start;
}
@media (min-width: 1100px) and (max-width: 1280px) {
  .timeline-tab {
    min-width: unset;
  }
}
.timeline-tab:first-child {
  border-left: 0;
}
.timeline-tab:hover {
  background-color: rgba(45, 60, 40, 0.9);
}
.timeline-tab.active {
  background-color: var(--timeline-light-green);
  color: var(--timeline-dark-green);
}
.timeline-tab:focus {
  border-color: var(--timeline-dark-green);
  border-width: 2px;
  outline: none;
}
.dark_green .timeline-tab:focus {
  border-color: var(--timeline-light-green);
}
.timeline-tab:focus-visible {
  outline: none;
  border-color: var(--timeline-dark-green);
  border-width: 2px;
  outline: none;
}
.dark_green .timeline-tab:focus-visible {
  border-color: var(--timeline-light-green);
}
.bg_grey .timeline-tab {
  background-color: var(--timeline-taupe);
  color: var(--timeline-dark-green);
  border-left: 1px solid var(--timeline-dark-green);
  border-right: 1px solid var(--timeline-dark-green);
  border-bottom: 2px solid var(--timeline-dark-green);
}
.bg_grey .timeline-tab.active {
  background-color: var(--timeline-dark-green);
  color: var(--timeline-light-green);
}
.bg_grey .timeline-tab:focus {
  border: 1px solid var(--timeline-dark-green);
}
.bg_grey .timeline-tab:focus-visible {
  border: 1px solid var(--timeline-dark-green);
}
.bg_grey .timeline-tab:first-child {
  border-left: 0;
}
.light_green .timeline-tab {
  background-color: var(--timeline-light-green);
  color: var(--timeline-dark-green);
  border-left: 1px solid var(--timeline-dark-green);
  border-right: 1px solid var(--timeline-dark-green);
  border-bottom: 2px solid var(--timeline-dark-green);
}
.light_green .timeline-tab.active {
  background-color: var(--timeline-dark-green);
  color: var(--timeline-light-green);
}
.light_green .timeline-tab:focus {
  border: 1px solid var(--timeline-dark-green);
}
.light_green .timeline-tab:focus-visible {
  border: 1px solid var(--timeline-dark-green);
}
.light_green .timeline-tab:first-child {
  border-left: 0;
}
.light_green .timeline-tab {
  color: var(--timeline-dark-green);
}
.dark_green .timeline-tab:focus {
  border: 1px solid var(--timeline-light-green);
}
.dark_green .timeline-tab:focus-visible {
  border: 1px solid var(--timeline-light-green);
}
.timeline-tab:focus {
  border: 1px solid var(--timeline-light-green);
}
.timeline-tab:focus-visible {
  border: 1px solid var(--timeline-light-green);
}

.timeline-content {
  padding: 3.375rem;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  animation: fade-in 0.3s ease-out;
}
.bg_grey .timeline-content {
  color: var(--timeline-dark-green);
}
.light_green .timeline-content {
  color: var(--timeline-dark-green);
}
.timeline-content .year-label {
  color: var(--timeline-light-green);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.timeline-content .title {
  color: var(--timeline-light-green);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 1rem;
}
.bg_grey .timeline-content .title {
  color: var(--timeline-dark-green);
}
.light_green .timeline-content .title {
  color: var(--timeline-dark-green);
}
.timeline-content .description {
  margin-bottom: 1rem;
  margin-bottom: 1rem;
  line-height: 1.625;
}
.bg_grey .timeline-content .description {
  color: var(--timeline-dark-green);
}
.light_green .timeline-content .description {
  color: var(--timeline-dark-green);
}
.timeline-content .description p {
  margin-bottom: 1rem;
  line-height: 1.625;
}
.timeline-content .highlights {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
@media (max-width: 767px) {
  .timeline-content .highlights {
    gap: 20px;
  }
}
.timeline-content .highlights .highlight {
  text-align: left;
  padding: 0 2.5rem;
  border-left: 0.5px solid var(--timeline-dark-green);
  border-right: 0.5px solid var(--timeline-dark-green);
  font-size: 17px;
  font-family: "roobert_regular";
}
.timeline-content .highlights .highlight:first-child {
  border-left: 0;
  padding-left: 0;
}
.timeline-content .highlights .highlight:last-child {
  border-right: 0;
  padding-right: 0;
}
@media (max-width: 767px) {
  .timeline-content .highlights .highlight {
    border-left: 0;
    border-right: 0;
    padding: 0;
  }
  .timeline-content .highlights .highlight:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .timeline-content .highlights .highlight {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--timeline-dark-green);
  }
}
.timeline-content .highlights .highlight .label {
  position: relative;
  width: max-content;
  padding: 10px;
  font-size: 14px;
  background: #243508;
  color: #bff355;
  margin-bottom: 20px;
  background-color: var(--timeline-light-green);
  color: var(--timeline-dark-green);
}
.dark_green .timeline-content .highlights .highlight .label {
  background-color: var(--timeline-light-green);
  color: var(--timeline-dark-green);
}
.light_green .timeline-content .highlights .highlight .label {
  background-color: var(--timeline-dark-green);
  color: var(--timeline-light-green);
}
.bg_grey .timeline-content .highlights .highlight .label {
  background-color: var(--timeline-dark-green);
  color: var(--timeline-light-green);
}
.timeline-content .highlights .highlight .timeline_description {
  position: relative;
  font-size: 17px;
  color: #fff;
  text-align: left;
  display: block;
}
.bg_grey .timeline-content .highlights .highlight .timeline_description {
  color: var(--timeline-dark-green);
}
.light_green .timeline-content .highlights .highlight .timeline_description {
  color: var(--timeline-dark-green);
}
.timeline-content .highlights .highlight .timeline_stats {
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  color: white;
  margin-bottom: 1.25rem;
  display: block;
  text-align: left;
  overflow-wrap: anywhere;
  font-family: "roobert_medium";
}
.bg_grey .timeline-content .highlights .highlight .timeline_stats {
  color: var(--timeline-dark-green);
}
.light_green .timeline-content .highlights .highlight .timeline_stats {
  color: var(--timeline-dark-green);
}
.timeline-content .highlights .highlight .text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
}
.bg_grey .timeline-content .highlights .highlight .text {
  color: var(--timeline-dark-green);
}
.light_green .timeline-content .highlights .highlight .text {
  color: var(--timeline-dark-green);
}

.timeline-content {
  display: none;
}

.timeline-content.active {
  display: block;
}

@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 768px) {
  .md\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .md\:text-4xl {
    font-size: 2.25rem;
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline-content .highlights {
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    max-width: 100%;
  }
}
.timeline-tab.faded {
  opacity: 0.4;
  cursor: not-allowed;
  /* Optionally: */
  pointer-events: none;
}

.on-page-editor .timeline {
  position: relative;
  top: unset;
}