/* https://foundation.zurb.com/building-blocks/blocks/responsive-timeline.html?__cf_chl_captcha_tk__=5bec1faa3f461232e664810e1494fa8f97f9da39-1577290923-0-AWfVt5p9TnXlhdb-KL8qbfR35nDmBqseaZBKUIpE13u7xseUTnqHvgFdzFmSg5eclK3ASPt0ym9ew_Mc-2LDEUAgsxBxSxmYVS87FSoGm8ZWCSI9JfB_heq4K9k8dxfUlE0Qd18g7uCyafHx-8wOVzhQt1bo9gHxkgpYfYUfESP7GUY6nVJMcA40GeDH5KLJO8JtOSi_w8os2-AYR-xae91FZmrIWk_yBIsksNBHK3WzN89dnWSIeHJcYbuWoUZOcmLU7MXeoKoG44ZjEllM4m53s4owf8pjDyDQMaB5hsJ_-SWup--AaFS3EiXLMziCFfoKJaH9EtE9fZ8wlc7UkCnkawM8jfKd8NQyqK-wXSik */

.timeline .timeline-item::after,
.timeline .timeline-item::before {
	clear: both;
	content: '';
	display: block;
	width: 100%;
}

.timeline {
	margin: 30px auto;
	padding: 0 10px;
	position: relative;
	transition: all 0.25s ease-in;
	width: 100%;
}

.timeline::before {
	background: #282c35;
	content: '';
	height: 100%;
	left: 50%;
	position: absolute;
	top: 0;
	width: 5px;
}

.timeline::after {
	clear: both;
	content: '';
	display: table;
	width: 100%;
}

.timeline a {
	color: rgba(19, 83, 209, .9);
	font-weight: bold;
	transition: all 0.25s ease-in;
	text-decoration: none;
}

.timeline a:hover {
	color: #fb730b;
	transition: all 0.25s ease-in;
}

.timeline .timeline-item {
	margin-bottom: 50px;
	position: relative;
}

.timeline .timeline-item .timeline-icon {
	background: white;
	border-radius: 50%;
	border: 5px solid #282c35;
	height: 50px;
	left: 50%;
	margin-left: -23px;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.timeline .timeline-item .timeline-icon i {
	color: rgba(19, 83, 209, .9);
	font-size: 24px;
}

.timeline .timeline-item .timeline-content {
	padding: 20px;
	text-align: right;
	transition: all 0.25s ease-in;
	width: 45%;
	background: transparent;

	/* animate.css */
	animation-duration: 3s;
	animation-delay: 2s;
	animation-iteration-count: 1;
	-webkit-animation-iteration-count: 1;
	animation-fill-mode: forwards;
	-webkit-animation-fill-mode: forwards;
}

.timeline .timeline-item .timeline-content p {
	/* color: #fefefe; */
}

.timeline .timeline-item .timeline-content p {
	font-size: 16px;
	line-height: 1.4;
	margin-bottom: 0;
}

.timeline .timeline-item .timeline-content .timeline-content-date {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 0;
}

.timeline .timeline-item .timeline-content .timeline-content-month {
	font-size: 0.875rem;
	text-transform: uppercase;
	font-weight: 400;
}

.timeline .timeline-item .timeline-content.right {
	float: right;
	text-align: left;
}

@media screen and (max-width: 39.9375em) {
	.timeline {
		margin: 30px;
		padding: 0;
		width: 90%;
	}
	.timeline::before {
		left: 0;
	}
	.timeline .timeline-item .timeline-content {
		float: right;
		text-align: left;
		width: 90%;
	}
	.timeline .timeline-item .timeline-content::before,
	.timeline .timeline-item .timeline-content.right::before {
		border-left: 0;
		border-right: 7px solid #fefefe;
		left: 10%;
		margin-left: -6px;
	}
	.timeline .timeline-item .timeline-icon {
		left: 0;
	}
}