/* Animated Columns */
.column {
	opacity: 1;
	transform: translateY(0px);
	transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.column--animated {
	opacity: 0;
	transform: translateY(100px);
	transition: none;
}