#about .row {
	align-items: stretch;
}

#about .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#vision {
	background-color: #f5f5f5;
}

#foundation .row {
	margin: 0px -30px;
}

#foundation .info-col {
	width: 75%;
	padding: 0 30px;
}

#foundation .image {
	width: 25%;
	padding: 0 30px;
}

#foundation .image img {
	width: 100%;
}

#leadership {
	background: #f5f5f5;
}

#leadership .name {
	margin-top: 15px;
	margin-bottom: 5px;
}

#leadership .position {
	margin-top: 0;
}

.leaders {
	padding-top: 15px;
}

#timeline {
	background: #f5f5f5;
}

.timeline-wrapper {
	position: relative; 
	padding-top: 25px;
	margin-top: 40px;
	margin-bottom: 40px;
}

.timeline {
    position: absolute;
    top: 0;
    left: 108px;
    width: 3px;
    height: 100%;
    background: #111;
    border-radius: 10px;
}

.timeline .progress {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border-radius: 10px;
	background: #0e003a;
	transform-origin: top;
}

.timeline-item {
    display: flex;
    flex-flow: row;
    align-items: center;
    margin: 35px 0 35px;
    position: relative;
}

.timeline-item .pointer {
	display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid #0e003a;
    border-radius: 50%;
    left: 109px;
    top: 50%;
    background: #f5f5f5;
    transform: translate(-50%,-50%);
}

.timeline-item .pointer:after {
    content: "";
    display: block;
    width: 44px;
    height: 3px;
    background: #0e003a;
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
}

.award.left .pointer:after {
    right: 100%;
	transform-origin: right;
	transition: transform 0.3s linear;
}

.award.right .pointer:after {
    left: 100%;
	transform-origin: left;
	transition: transform 0.3s linear;
}

.award.left {
    text-align: right;
}

.award.right {
    flex-flow: row-reverse;
}

.timeline-item .info {
    flex: 1;
    box-sizing: border-box;
}

.timeline-item .info {
	padding-left: 50px;
}

.timeline-item .info .content {
    background: #0e003a;
    padding: 35px;
    transition: background 0.3s;
	display: block;
	transition: box-shadow 0.3s;
}

.timeline-item:hover .content {
	box-shadow: 3px 3px 14px -3px rgba(0, 0, 0, 0.5);
}

.timeline-item .info .content.has-content {
    cursor: pointer;
}

.timeline-item .year {
	color: #0e003a;
	margin: 0;
	transition: color 0.3s;
}

.timeline-item .name {
    color: #fff;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.timeline-item .description {
    margin: 0;
    font-size: 0.9em;
    margin-top: 8px;
	line-height: 1.4em;
	color: rgba(255, 255, 255, 0.8);
}

.timeline-wrapper .time {
    padding: 25px 25px 25px 0;
    width: 110px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
	.timeline-item .info {
		flex: 1;
	}

	.timeline-wrapper .time {
		width: 85px;
	}

	.timeline {
		left: 83px;
	}

	.timeline-item .pointer {
		left: 85px;
	}
} 