@charset "UTF-8";

.timeline {
  width: 100%;
  max-width: 1300px;
  background: #fff;
  padding: 100px 50px;
  position: relative;
}
.timeline:before {
  content: "";
  position: absolute;
  top: 0px;
  left: calc(33% + 15px);
  bottom: 0px;
  width: 4px;
  background: #f6f6f6;
}
.timeline:after {
  content: "";
  display: table;
  clear: both;
}

.entry {
  clear: both;
  text-align: left;
  position: relative;
}
.entry .title {
  margin-bottom: 0.5em;
  float: left;
  width: 33%;
  padding-right: 30px;
  text-align: right;
  position: relative;
}
.entry .title:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 10px solid #ebf7ff;
  background-color: #006df8;
  border-radius: 100%;
  top: 15%;
  right: -15px;
  z-index: 99;
}
.entry .title h3 {
  margin: 0;
  font-size: 2.5rem;
}
.entry .title p {
  margin: 0;
  font-size: 100%;
}
.entry .body {
  margin: 0 0 3em;
  float: right;
  width: 66%;
  padding-left: 30px;
}
.entry .body p {
  line-height: 1.4em;
	font-size: 1rem;
  font-weight: 600;
}
.entry .body p:first-child {
  margin-top: 0;
	font-size: 1rem;
  font-weight: 600;
}
.entry .body ul {
  color: #333;
	font-weight: 400;
  padding-left: 0;
  list-style-type: none;
	margin-bottom: 20px;
}
.entry .body ul li {width: 100%;}

.entry .body ul li:before {
  content: "-";
  margin-right: 0.5em;
}

@media screen and (max-width: 800px) {

	.timeline {
		width: 100%;
		max-width: 1300px;
		background: #fff;
		padding: 50px 0px;
		position: relative;
	}
	.timeline:before {
		content: "";
		position: absolute;
		top: 0px;
		left: calc(33% - 1px);
		bottom: 0px;
		width: 4px;
		background: #f6f6f6;
	}
	.timeline:after {
		content: "";
		display: table;
		clear: both;
	}
	
	.entry {
		clear: both;
		text-align: left;
		position: relative;
	}
	.entry .title {
		margin-bottom: 0.5em;
		float: left;
		width: 33%;
		padding-right: 20px;
		text-align: right;
		position: relative;
	}
	.entry .title:before {
		content: "";
		position: absolute;
		width: 7px;
		height: 7px;
		border: 7px solid #ebf7ff;
		background-color: #006df8;
		border-radius: 100%;
		top: 15%;
		right: -11px;
		z-index: 99;
	}
	.entry .title h3 {
		margin: 0;
		font-size: 1.5rem;
	}
	.entry .title p {
		margin: 0;
		font-size: 100%;
	}
	.entry .body {
		margin: 0 0 3em;
		float: right;
		width: 66%;
		padding-left: 20px;
	}
	.entry .body p {
		line-height: 1.4em;
		font-size: 1rem;
		font-weight: 600;
	}
	.entry .body p:first-child {
		margin-top: 0;
		font-size: 1rem;
		font-weight: 600;
	}
	.entry .body ul {
		color: #333;
		font-weight: 400;
		padding-left: 0;
		list-style-type: none;
		margin-bottom: 20px;
	}
	.entry .body ul li {width: 100%;}
	.entry .body ul li:before {
		content: "-";
		margin-right: 0.5em;
	}

}