* {
	box-sizing: border-box;
}
body {
	background: #000;
}
.fcontainer{
    margin: 100px;
}
.ccontainer {
	display: flex;
	flex-wrap: wrap;
	max-width: 800px;
	margin: 0 auto;
}
.ctimeline {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	width: 100%;
}
.icon {
	display: flex;
	background: linear-gradient(to right, #3594cc 45%, #b1dcf5 45%, #b1dcf5 45%, #3594cc 50%);
	order: 2;
	text-align: center;
	color: #fff;
	font-size: 28px;
	flex-basis: 100px;
}
.icon>span {
	font-size: 20px;
	margin: auto;
	background: #46a4da;
	border-radius: 50px;
	width: 50px;
	height: 50px;
	line-height: 40px;
	border: 5px solid #b1dcf5;
}
.cinfo {
	text-align: left;
	padding: 10px;
	border-radius: 5px;
	color: #000;
	order: 3;
	width: 80%;
	padding-left: 10px;
	background: #fff;
	transition: all .6s ease;
}
.cinfo:hover {
	background: #B7F547;
    color: #000;
}
.cinfo {
	margin-bottom: 3%;
}
.cinfo h2 {
	margin: 0;
	font-size: 18px;
	text-transform: uppercase;
	font-family: 'Poppins', sans-serif;
	letter-spacing: 2px;
}
.cinfo p {
	line-height: 1.4;
	font-family: 'Poppins', sans-serif;
}
@media (min-width: 640px) {
	.cinfo, .ccustom {
		width: 40%;
	}
	.cbox-right .cinfo {
		order: 1;
		padding-right: 10px;
	}
	.cbox-right .ccustom {
		order: 3;
	}
}
