/* Reset */


/* Timeline Slider */
.timeline-slider {
  height: 20vw;
  width: 100%;
}

/* Timeline Slider - Slide */
.timeline-slider-slide {
  background: ;
  height: 20vw;
  position: relative;
  width: inherit;
}
.timeline-slider-slide:nth-child(odd) {
  background: ;
}
.timeline-slider-slide:focus {
  outline: none;
}

/* Timeline Slider - Slide (Content) */
.timeline-slider-slide-content {
  bottom: 40px;
  display: block;
  width: 90%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 720px) {
  .timeline-slider-slide-content {
    width: 77.5%;
  }
}
@media (min-width: 1200px) {
  .timeline-slider-slide-content {
    bottom: 100px;
    width: 50%;
  }
}
.timeline-slider-slide-content h1, .timeline-slider-slide-content h2, .timeline-slider-slide-content p, .timeline-slider-slide-content .preheading {
  display: block;
  line-height: 25px;
  margin: 0 0 10px;
  padding: 0;
}
.timeline-slider-slide-content h1:last-child, .timeline-slider-slide-content h2:last-child, .timeline-slider-slide-content p:last-child, .timeline-slider-slide-content .preheading:last-child {
  margin-bottom: 0;
}
.timeline-slider-slide-content h1, .timeline-slider-slide-content h2 {
  color: #303030;
  
}
.timeline-slider-slide-content p, .timeline-slider-slide-content .preheading {
  
}
.timeline-slider-slide-content p {
  font-weight: 300;
    letter-spacing: 0px;
    color: #1B355E;
    font-size: 20px;
}
.timeline-slider-slide-content .preheading {
  color: #C3C3C3;
}

/* Timeline Slider - Navigation */
.timeline-slider-dots {
  bottom: -80px;
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 30px 0;
  padding: 0;
  width: 85%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 720px) {
  .timeline-slider-dots {
    width: 75%;
  }
}
@media (min-width: 1200px) {
  .timeline-slider-dots {
    bottom: 0;
    width: 50%;
  }
}
.timeline-slider-dots:after {
  background: #303030;
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  z-index: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.timeline-slider-dots li {
  border: 1px solid transparent;
  border-radius: 100%;
  cursor: pointer;
  display: block;
  height: 20px;
  position: relative;
  transition: all 0.3s ease;
  width: 20px;
  z-index: 2;
}
.timeline-slider-dots li:first-child {
  margin-left: -10px;
}
.timeline-slider-dots li:last-child {
  margin-right: -10px;
}
.timeline-slider-dots li.slick-active, .timeline-slider-dots li.slick-active:hover {
  border-color: #939393;
}
.timeline-slider-dots li:hover {
  border-color: #C3C3C3;
}

.timeline-slider-dots li button {
  background: #303030;
  border: 0;
  border-radius: 100%;
  cursor: pointer;
  display: block;
  font-size: 0;
  height: 7px;
  line-height: 0;
  outline: none;
  padding: 0;
  width: 7px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}