@import url('https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i');

* {
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Lato', sans-serif;
	font-size: 14px;
	color: #999999;
	word-wrap: break-word;
}

p {
	margin: 0 0 10px;
}

ul {
	list-style: none;
}

.container {
	width: 100%;
	position: relative;
	margin: 0;
	font-weight: 900;
	text-transform: none;
	text-align: left;
	/*padding: 0 0 200px;*/
}


.animate {
	font-size: 60px;
	position: absolute;
	top: 900px;
	left: 1070px;
	margin: 0 0;
}

.animate span {
	display: inline-block;
}


.animate span:nth-of-type(2) {
	animation-delay: .05s;
}

.animate span:nth-of-type(3) {
	animation-delay: .1s;
}

.animate span:nth-of-type(4) {
	animation-delay: .15s;
}

.animate span:nth-of-type(5) {
	animation-delay: .2s;
}

.animate span:nth-of-type(6) {
	animation-delay: .25s;
}

.animate span:nth-of-type(7) {
	animation-delay: .3s;
}

.animate span:nth-of-type(8) {
	animation-delay: .35s;
}

.animate span:nth-of-type(9) {
	animation-delay: .4s;
}

.animate span:nth-of-type(10) {
	animation-delay: .45s;
}

.animate span:nth-of-type(11) {
	animation-delay: .5s;
}

.animate span:nth-of-type(12) {
	animation-delay: .55s;
}

.animate span:nth-of-type(13) {
	animation-delay: .6s;
}

.animate span:nth-of-type(14) {
	animation-delay: .65s;
}

.animate span:nth-of-type(15) {
	animation-delay: .7s;
}

.animate span:nth-of-type(16) {
	animation-delay: .75s;
}

.animate span:nth-of-type(17) {
	animation-delay: .8s;
}

.animate span:nth-of-type(18) {
	animation-delay: .85s;
}

.animate span:nth-of-type(19) {
	animation-delay: .9s;
}

.animate span:nth-of-type(20) {
	animation-delay: .95s;
}


/* Animation Seven */


.seven span {
	color: #ffffff;
	opacity: 0;
	transform: translate(-150px, 0) scale(.3);
	animation: leftRight .5s forwards;
}


@keyframes leftRight {
	40% {
		transform: translate(50px, 0) scale(.7);
		opacity: 1;
		color: #000000;
	}

	60% {
		color: #0f40ba;
	}

	80% {
		transform: translate(0) scale(2);
		opacity: 0;
	}

	100% {
		transform: translate(0) scale(1);
		opacity: 1;
	}
}