body {
	font-family: Arial;
}


.cntl {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.cntl-center {
	left:0;
    right:0;
    margin-left:auto;
    margin-right:auto;
}

.cntl-bar {
	position: absolute;
	width:2px;
	top: 0;
	bottom: 0;
	background-color: #E4E4E4;
}


.cntl-bar-fill {
	background-color: #EA5504;
	position: absolute;
	left:0;
	right:0;
	top:0;
	height:0;

}

.cntl-state {
	position: relative;
	width:100%;
	min-height: 100px;
	margin-bottom: 50px;
}

.cntl-state::after {
	display:block;
	content: ' ';
	clear:both;
}

.cntl-state-hidden {
    height:1px; min-height:1px; margin:0; overflow:hidden;
}

.cntl-icon {
	border-radius: 50%;
	width: 50px;
	height: 50px;
	background-color: #EA5504;
	border: solid 4px #F7B089;
	position: absolute;
	top: 0;
	text-align: center;
	line-height: 44px;
	font-size: 24px;
	color: #fff;
}

.cntl-content {
	width: 47%;
	padding: 0 16% 2% 2%;
	/*background-color: rgba(238, 238, 238, 0.25);*/
	border-radius: 8px;
	/*border-bottom: solid 3px #009ABB;*/
	float:right;
	opacity:0;
	position:relative;
    font-size:15px;
	margin-right:-40%;
    color:#666666;
}

.cntl-state:nth-child(2n+2) .cntl-content {
	float:left;
	margin-left:-40%;
    text-align:right;
	padding: 0 2% 2% 16%;
}

.cntl-image {
	opacity:0;
	width: 40%;
	padding: 2%;
}

.cntl-state:nth-child(2n+1) .cntl-image {
	float:left;
}

.cntl-image img {
	width:100%;
}

.cntl-content h4 {
	font-size:20px;
	font-weight: 600;
	margin-bottom: 10px;
    color:#EA5504;
}


/*
animations
*/
.cntl-bar-fill,.cntl-content,.cntl-image {
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	transition: all 500ms ease;
}

.cntl-animate .cntl-content {
	opacity:1;
	margin-right:0%;
}

.cntl-state:nth-child(2n+2).cntl-animate .cntl-content {
	margin-left:0%;
}

.cntl-animate .cntl-image {
	opacity:1;
}




/* mobile support */

@media (max-width: 768px) {

    .cntl-content {
        text-align: right;
        margin-right: 0%;
        float: none;
        padding: 0 2% 2% 6% !important;
    }

        .cntl-content h4 {
            font-size: 18px;
        }

	.cntl-bar {
		left:auto;
		right: 37px;
	}

	.cntl-content {
		width:80%;
		float:none;
	}
	.cntl-state:nth-child(2n+2) .cntl-content {
		margi-right:0%;
		float:none;
	}

	.cntl-image {
		width:80%;
	}

	.cntl-state:nth-child(2n+1) .cntl-image {
		float:none;
	}

	.animate .cntl-content {
		margin-left: 2%;
	}

	.cntl-icon {
		left: auto;
		right: 0;
	}

}
