
/* author */
/* https://codepen.io/kjbdesign/pen/xOWZNj */


.steps {
	position: relative;
}

.steps:before {
	top: 0;
	bottom: 0;
	position: absolute;
	content: " ";
	width: 2px;
	background-color: #00356b;
	left: 50%;
	margin-left: -1px;
}

.timeline {
	margin: 0px auto;
	overflow: hidden;
	position: relative;
	padding: 0px;
	list-style-type: none;
}

.timeline .timeline-box {
	position: relative;
	float: left;
	clear: left;
	width: 45%;
	margin: 1em 0;
	list-style-type: none;
	display: block;
	padding: 25px;
	background: #fff;
	z-index: 15;
}

.timeline .timeline-box .timeline-title {
	color: #00356b;
	font-weight: 700;
	font-size: 1.5em;
	float: left;
	margin-bottom: 0;
}

.timeline .timeline-box .timeline-details {
	clear: both;
	padding-top: 5px;
}

.timeline .timeline-box span {
	position: absolute;
	top: -15px;
	right: 24px;
	font-size: 6em;
	font-weight: 700;
	color: #999;
	opacity: 0.1;
	z-index: -1;
}

@media all and (max-width:600px) {
	.timeline .timeline-box {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}

}

.timeline .timeline-box:hover:after {
	background: #00356b;
}

@media all and (min-width:650px) {
	.timeline .timeline-box:after {
		display: block;
		content: ' ';
		height: 15px;
		width: 15px;
		background: #fff;
		border-radius: 50%;
		position: absolute;
		right: -12.5%;
		top: 1.5em;
		border: 2px solid #00356b;
	}

}

.timeline .timeline-box:first-child {
	margin-bottom: 2.5em;
}

.timeline .timeline-box:nth-of-type(1n):before {
	position: absolute;
	top: 8px;
	right: -20px;
	display: inline-block;
	border-top: 20px solid transparent;
	border-left: 20px solid #fff;
	border-right: 0 solid #fff;
	border-bottom: 20px solid transparent;
	content: " ";
}

.timeline .timeline-box:nth-of-type(2n) {
	float: right;
	clear: right;
}

.timeline .timeline-box:nth-of-type(2n):before {
	right: auto;
	left: -20px;
	position: absolute;
	top: 8px;
	display: inline-block;
	border-top: 20px solid transparent;
	border-right: 20px solid #fff;
	border-left: 0 solid #fff;
	border-bottom: 20px solid transparent;
	content: " ";
}

@media all and (min-width:600px) {
	.timeline .timeline-box:nth-of-type(2n) {
		margin-top: 3em;
	}

}

.timeline .timeline-box:nth-child(2n):after {
	left: -12.6%;
	right: auto;
}

.timeline-box:hover,
.timeline-box:focus {
	transform: translate(0, -5px);
	-webkit-transform: translate(0, -5px);
	-ms-transform: translate(0, -5px);
}

.timeline-box:hover,
.timeline-box:focus {
	-webkit-box-shadow: 0px 3px 0px 0px #00356b;
	-moz-box-shadow: 0px 3px 0px 0px #00356b;
	box-shadow: 0px 3px 0px 0px #00356b;
}

.timeline-box {
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-o-transition: all 300ms ease-in-out;
}

.steps-area {
	padding: 30px 0;
}