/**
 * Basic layout, for animation examples, check demo.css
 */
 

div.block
{
	position: relative;
	height: 80vh;
	padding: 20vh 15vw 0 15vw;
}

div.block svg
{
	position: absolute;
	bottom: 50px;
	width: 30px;
	
	animation: chevronAnimation 4s ease-in-out 0s infinite;
}

div.block svg path
{
	fill: #7e9aae;
}

div.block:nth-child(1n)
{
	background: #061c2d;
}

div.block:nth-child(2n)
{
	background: hsl(205, 84%, 14%);
}

div.block:nth-child(3n)
{
	background: hsl(205, 90%, 22%);
}


/**
 * Simple keyframes animation for the chevron on the first slide
 */
@keyframes chevronAnimation {
	0% {
		transform: translate(0,0) scale(1.0,1.0);
	}
	50% {
		transform: translate(0,5px) scale(0.8,0.8);
	}
	100% {
		transform: translate(0,0) scale(1.0,1.0);
	}
}

/**
 * Responsiveness
 */
 
 