@import url(normalize.css);
@import url(https://fonts.googleapis.com/css?family=Lora:400,400italic,700italic,700);

/* General */

	body{
		line-height: 28px;
		font-size: 18px;
		font-family: "Lora", sans-serif;
	}

	ul{
		list-style: none;
		padding-left: 0;
	}

	h1, h2, h3{
		margin: 0;
	}

	h1{
		line-height: 64px;
	}

	.clearfix:after {
		visibility: hidden;
		display: block;
		font-size: 0;
		content: " ";
		clear: both;
		height: 0;
	}

	.inline-link{
		color: inherit;
		text-decoration: none;
		border-bottom: 2px solid white;
	}

	.inline-link:hover{
		border-bottom: 2px solid transparent;
	}

	.showcase__element a{
		border-bottom: 2px solid #2F2F2F;
	}

/* Title */

	.t-container{
		background-color: #2F2F2F;
		color: white;
		padding: 10px;
		padding-top: 60px;
		padding-bottom: 60px;
		-webkit-animation: unroll 800ms cubic-bezier(0.000, 1.100, 1.000, 1.000);
		-moz-animation: unroll 800ms cubic-bezier(0.000, 1.100, 1.000, 1.000);
		-ms-animation: unroll 800ms cubic-bezier(0.000, 1.100, 1.000, 1.000);
	}

	.t-container__subtitle, .t-container__title{
		width: 80%;
		line-height: 100%;
	}

	.t-container__title{
		font-size: 5em;
		margin-bottom: 10px;
	}

	.t-container__subtitle{
		font-weight: 400;
		font-size: 1em;
		font-style: italic;
		margin-left: 5px;
	}

	.t-container__expl{
		font-style: italic;
		font-size: 1.5em;
		display: block;
		line-height: 140%;
		width: 80%;
		margin-left: 5px;
	}

	.t-container__subtitle, .t-container__title, .t-container__expl{
		-webkit-animation: appear 1800ms ease-out;
		-moz-animation: appear 1800ms ease-out;
		-ms-animation: appear 1800ms ease-out;
	}

/* Showcase */

	.showcase{
		padding: 10px;
	}

	.showcase__element{
		margin-top: 50px;
		-webkit-animation: appear 2500ms ease-out;
		-moz-animation: appear 2500ms ease-out;
		-ms-animation: appear 2500ms ease-out;
	}

	.showcase__video{
		width: 100%;
		height: 251px;
	}

	.showcase__number{
		line-height: 40px;
		font-size: 22.5px;
		font-weight: 400;
		margin-top: 10px;
	}

	.showcase__title{
		line-height: 40px;
	}

/* Animations */

	@-webkit-keyframes unroll{
		0%{
			transform: translateY(-100%);
		}
		100%{
			transform: translateY(0%);
		}
	}

	@-webkit-keyframes appear{
		0%{
			opacity: 0;
		}
		50%{
			opacity: 0;
		}
		100%{
			opacity: 1;
		}
	}

	@-moz-keyframes unroll{
		0%{
			transform: translateY(-100%);
		}
		100%{
			transform: translateY(0%);
		}
	}

	@-moz-keyframes appear{
		0%{
			opacity: 0;
		}
		50%{
			opacity: 0;
		}
		100%{
			opacity: 1;
		}
	}

	@-webkit-keyframes unroll{
		0%{
			transform: translateY(-100%);
		}
		100%{
			transform: translateY(0%);
		}
	}

	@-webkit-keyframes appear{
		0%{
			opacity: 0;
		}
		50%{
			opacity: 0;
		}
		100%{
			opacity: 1;
		}
	}

	@-ms-keyframes unroll{
		0%{
			transform: translateY(-100%);
		}
		100%{
			transform: translateY(0%);
		}
	}

	@-ms-keyframes appear{
		0%{
			opacity: 0;
		}
		50%{
			opacity: 0;
		}
		100%{
			opacity: 1;
		}
	}

@media only screen and (min-width: 600px){

	.t-container{
		padding-left: 20%;
	}
	
	.t-container__subtitle, .t-container__expl{
		margin-left: 0;
	}

	.showcase__element{
		width: 60%;
		margin: 0 auto;
		margin-top: 50px;
	}

	.showcase__video{
		margin: 0 auto;
	}

}

@media only screen and (min-width: 900px){
	
	.t-container{
		padding-left: 3%;
	}

	.showcase__list{
		width: 95%;
		margin: 0 auto;
	}

	.showcase__element{
		width: 45%;
		float: left;
		margin-right: 10%;
	}

	.showcase__element:nth-child(2n+2){
		margin-right: 0;
	}

	.showcase__video{
		margin: 0 auto;
	}

}

@media only screen and (min-width: 1050px){
	
	.t-container{
		padding-left: 10%;
	}

	.t-container__expl{
		width: 60%;
	}

	.showcase__list{
		width: 80%;
		margin: 0 auto;
	}

}