* {
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  padding: 0;
  margin: 0;
}



.timeline-container {
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.title {
  font-size: 38px;
  color: #000;
  font-weight: 300;
}

.timeline {
  height: 50em;
  width: 100%;
  position: relative;

}
.timeline-nav__item {
  width: auto;
  height: auto;
  text-align: center;
  opacity: 0.5;
  background: transparent;
  color: #3e3e3e;
  margin: 15px 25px !important;
  position: relative;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  outline: none;
  cursor: pointer;
}
.timeline-nav__item::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #3e3e3e;
  transition: .2s;
}
.timeline-nav__item.slick-current {
  color: #00a9ff;
  opacity: 1;
    font-size: 18px;
}
.timeline-nav__item.slick-current::before {
  background-color: #00a9ff;
}
.timeline-wrapper {
  position: relative;
  width: 100%;
  height: 580px;
  margin: 25px auto;
}
@media (max-width: 500px) {
  .timeline-wrapper {
    height: 1000px;
    max-height: 900px;
  }
}
.timeline-slider {
  height: 100%;
}
.timeline .slick-list {
  height: 100%;
}
@media (min-width: 1080px) {
  .timeline .slick-list {
    padding: 0 180px !important;
  }
}
.timeline .slick-track {
  height: 100%;
}
.timeline-slide {
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  outline: none;
  background-size: auto 30em, cover;
  background-position: top;
  margin: 0 24px;
  width: 80%;
  z-index: 1;
}
.timeline-slide:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 166, 255, 0.67);
  z-index: 2;
}
.timeline-slide__content {
	z-index: 5;
    position: absolute;
    top: 69%;
    background: #007abf;
    width: 80%;
    left: 50%;
    -webkit-transform: translate(-50%, 0px);
    transform: translate(-50%, 0px);
    padding: 18px;
    padding-top: 0;
    opacity: 0;
    transition: opacity 1s;
}

.timeline-slide__content p {
	margin-top: 1.1em;
}

@media (max-width: 500px) {
  .timeline-slide__content {
    width: 100%;
  }
  
  .timeline-slide {
	  background-size: auto 15em, cover;
	  background-position: center center;
	}
}

@media screen and (max-width: 768px) and (min-width: 310px) {
	.slick-prev {
		float: left;
	}
	
	.slick-next {
		float: right;
	}
	
	#arrowsContainer {
		
	    margin-top: -26% !important;
	    position: absolute !important;
	}

}

/*@media (min-width: 226px) and (max-width: 768px) {

	.timeline-year {
		font-size:15px !important;
	}
	
	.timeline-slide {
		    background-size: auto 131px, cover;
	}
	
	.timeline-nav__item {
		    margin: 15px 10px !important;
	}
	.timeline .slick-current .timeline-slide__content {
		    margin-top: -50% !important;
		    height: 10em;
	}
	
	.timeline-title {
    font-size: 19px;
    line-height: 0;
}
}*/


.timeline-year {
  z-index: 5;
  font-size: 35px;
  color: #ffffff;
  background: #00a6ff;
  padding: 15px 26px;
  transition: opacity 1.2s;
  position: absolute;
  right: 0;
  opacity: 0;
}
.timeline-title {
	color: #c4eaff;
	font-size: 1.5em;
	margin-top: 1em;
	line-height: 0;
	font-weight: 400;
}
.timeline-text {
  margin-top: 1em;
  font-size: 2em;
  line-height: 28px;
  color: #fff;
}
.timeline .slick-current:after {
  background-color: rgba(0, 52, 113, 0);
}
.timeline .slick-current .timeline-year {
  opacity: 1;
}
.timeline .slick-current .timeline-slide__content {
  opacity: 1;
}

.slick-arrow {
	    font-family: 'Arial';
    font-size: 2em;
    color: rgb(0, 119, 194);
    margin-right: 10px;
    background: rgb(194, 233, 255);
    border: 0;
    width: 2em;
    height: 2em;
    border-radius: 25px;

}

.padding-left:hover {
	background: rgba(0,0,0,0.1);
}

#arrowsContainer {
	position: absolute;
	margin-top: -30%;
    width: 100%;
}

.slick-prev {
	float: left;
}
.slick-next {
	float: right;
}

.slick-prev.hidden,
.slick-next.hidden {
    opacity: 0;
    pointer-events:none;
}