  .timeline {
	padding: 80px 0 40px;
  }
  
  h2.logo-grid-header { 
	  text-align: center;
	  font-weight: normal;
	  font-family: Eina Regular, sans-serif;
	  font-family: Eina Semi Bold,sans-serif;
	  font-size: 2rem;
	  margin: 0 0 1rem 0;
  }
  
  .timeline .description-above-logos p {
	  text-wrap: balance;
  }

  .timeline-track {
	display: flex;
	position: relative;
  }

  .timeline-track::before {
	content: '';
	position: absolute;
	top: 5px;
	left: 0;
	right: 0;
	height: 1px;
	background: #000;
  }

  .timeline-event {
	flex: 1;
	position: relative;
	padding-right: 40px;
  }

  .timeline-event:last-child {
	padding-right: 0;
  }

  .timeline-dot {
	width: 10px;
	height: 10px;
	background: #162224;
	border-radius: 50%;
	position: relative;
	z-index: 1;
	margin-bottom: 30px;
  }

  .timeline-content p {
	font-size: 18px;  
	letter-spacing: 0;
	margin-bottom: 1.66667em;
	font-family: 'Eina Regular', sans-serif;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
	color: #1a1a1a;
  }
  
  .timeline-content a {
	  color: #000;
	  text-decoration: none;
	  border-bottom: 1px solid #000;
	  transition: background-color .3s, color .3s, border-color .3s;
  }
  
  .timeline-content a:hover {
	  color: #1b79ff;
	  border-color: #1b79ff;
  }
  
  p.has-pitch-medium-font-family.has-medium-32-font-size {
	  font-size: 32px !important;
  }
  
  @media (max-width: 767px) {
	  h2.logo-grid-header { 
		  font-size: clamp(18px, 5vw, 2em);
	  }
  }

  @media (max-width: 767px) {
	.timeline-track {
	  flex-direction: column;
	  padding-left: 20px;
	}

	.timeline-track::before {
	  top: 0;
	  bottom: 0;
	  left: 5px;
	  right: auto;
	  width: 1px;
	  height: 100%;
	}

	.timeline-event {
	  padding-right: 0;
	  padding-left: 24px;
	  padding-bottom: 32px;
	}

	.timeline-event:last-child {
	  padding-bottom: 0;
	}

	.timeline-dot {
	  position: absolute;
	  left: -20px;
	  top: 0;
	}

	.timeline-content {
	  max-width: 100%;
	  margin-bottom: 0.66667em;
	}
  }