/* Basic Timeline Styling */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 14px;
  border-radius: 20px;
  background-color: var( --e-global-color-primary ); /* Orange line */
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -7px;
}

.timeline > .item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 100%;
  display: flex;
}

.timeline > .item > .content > .year::after {
  content: "\2022";
  color: black;
  position: absolute;
  margin-top: 14px;
  font-size: 100px;
  line-height: 0;
  margin-top: 30px;
}

.timeline > .item > .content > .year {
  border-bottom: 3px solid black;
  text-align: right;
	font-family:Geologica;
	font-size:40px;
	font-weight:bold;
}
.timeline > .item > .content > .text_wrapper {
  text-align: left;
	padding-top:2vw;
}

.timeline > .item > .content > .text_wrapper > h3 {
  color: var( --e-global-color-primary );
	font-family:Geologica;
	font-size:40px;
	font-weight:400;
	line-height:1.2;
}

.timeline > .item > .content > .text_wrapper p{
	font-family:Geologica;
	font-size:20px;
	font-weight:200;
	line-height:1.2;
}

.timeline > .item.left {
  flex-direction: row;
}

.timeline > .item.left > .content {
  text-align: right;
}
.timeline > .item.left > .content > .year::after {
  left: 0;
	top:40px;
}
.timeline > .item.left > .content > .text_wrapper {
  text-align: left;
  margin-left: 20px;
}

.timeline > .item.right {
  flex-direction: row-reverse;
}

.timeline > .item.right > .content {
  text-align: left;
}
.timeline > .item.right > .content > .year::after {
  right: 0;
	top:40px;
}

.timeline > .item.right > .content > .year {
  border-bottom: 3px solid black;
  text-align: left;
}
.timeline > .item.right > .content > .text_wrapper {
  text-align: right;
  margin-right: 20px;;
}

.timeline > .item > .content {
  padding: 10px 10px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline > .item > .image_wrapper {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.timeline > .item > .image_wrapper img { 
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
	padding: 10px;
    border: 1px solid var( --e-global-color-primary );
}

@media (max-width:767px){
	.timeline > .item{
		padding:10px!important;
	}
	
	.timeline > .item > .image_wrapper{
		justify-content:flex-start!important;
		padding:20px!important;
	}
	.timeline > .item > .content > .text_wrapper > h3 {
		font-size:18px!important;
	}
	.timeline > .item > .content > .text_wrapper p{
		font-size:17px!important;
	}
	.timeline > .item.left > .content > .text_wrapper{
		margin-right:10px;
	}
	.timeline > .item.right > .content > .text_wrapper{
		margin-left:10px;
	}
}