.tl-static {
  --dot-size: 16px;
  --line-w: 4px;

  position: relative;
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px; /** The space between pink sections */
  font-family: sans-serif;
  margin-bottom:50px;
}

@media all and (min-width: 0px)
{
  .tl-static img
  {
    border-top-left-radius:30px;
    border-top-right-radius:30px;
    border-bottom-left-radius:30px;
    border-bottom-right-radius:30px;
    width:100%;
  }
}

@media (min-width: 1120px)
{
  .tl-static img
  {
    width:500px;
  }

  .tl-static__event.tl-static__event--right.tl-static__event--image-section {
    padding-left: 50px;
  }
}

.tl-static__line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: var(--line-w);
  height: 100%;
  background: #201F41;
}

/* fixed dot (will be pinned) */
.tl-static__dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: var(--dot-size);
  height: var(--dot-size);
  margin-left: calc(var(--dot-size) / -2);
  border-radius: 50%;
  background: #201F41;
  z-index: 2;
  box-shadow: 0 0 0 5px #A1A1AF;
  display: none;
}

/* entry block */
.tl-static__entry {
  position: relative;
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

/* date */
.tl-static__date {
  font-size: 20px;
  /*font-weight: 700;*/
  opacity: 0;
  transform: translateY(50px);
  border-radius: 23px;
  padding: 30px 40px;
  text-align: center;
  color: white;
  background: #BF0071
}

/* events */
.tl-static__event {
  max-width: 280px;
  padding: 1.2rem;
  color: #fff;
  opacity: 0;
  padding-right: 2px;
  padding-left: 2px;
  min-width: 100px;

  /*background-color:red;*/
}
.tl-static__event.tl-static__event--right > div {
  border-radius: 0 20px 20px 0 !important;
}

.tl-static__event.tl-static__event--left > div {
  border-radius: 20px 0 0 20px !important;
}

@media (min-width: 1120px)
{
  .tl-static__event
  {
    max-width: 450px;
  }
  .tl-static__event.tl-static__event--image-section {
    max-width: 550px;
  }
}

.tl-static__event--left {
  align-self: flex-start;
  transform-origin: right center;
}
.tl-static__event--right {
  align-self: flex-end;
  transform-origin: left center;
}

.tl-static__event-box {
  width: 100%;
  display: flex;
  z-index: 15 !important;
}
.tl-static__event--right.tl-static__event-box {
  justify-content: flex-start;
}
.tl-static__event--left.tl-static__event-box {
  justify-content: flex-end;
}
.tl-static__event-box > div {
  background: #002D64;
  color: white;
  padding: 1.2rem 40px 1.2rem 40px;
  z-index: 11 !important;
}


.tl-static__event--image-section {
  color: inherit;
  display: flex;
  flex-direction: column;
  transform: translateY(-120px)
}

@media (max-width: 1120px) {
  .tl-static__dot {
    display: none;
  }
  .tl-static__event,
  .tl-static__event--left,
  .tl-static__event--right {
    align-self: center; 
    text-align: center; 
  }
  .tl-static__event-box {
    justify-content: center !important;
  }

  .tl-static__event.tl-static__event--right > div,
  .tl-static__event.tl-static__event--left > div {
    border-radius: 20px !important
  }

  .tl-static__event--image-section {
    transform: none;
  }
}

.timeline-normal-text {
  background: white;
}

.tl-static__date, .tl-static__event--image-section, .timeline-normal-text {
  z-index: 10;
  position: relative;
}

.tl-static__event--text-box {
  background: #00809B;
  color: white;
  padding: 10px 20px;
  padding-bottom:20px;
  border-radius: 10px;
  margin-top: -20px;
  margin-bottom: 40px;

  font-family:"DM Serif Display", serif;
  font-weight:400;
  font-style:normal;

  z-index: 11;
  position: relative;
}

.tl-static__event--text-box h3
{
  font-family:"DM Serif Display", serif;
  font-weight:400;
  font-style:normal;
}