html *
{
	box-sizing: border-box;
	z-index: 0;
}

body
{
	background-color: #000000;
	margin: unset;
	height: auto;
	width: 100%;
}

body .background-image
{
	background-image: url("../assets/images/TotaalSplash_0000s_0007_Background.png");
	background-repeat: no-repeat;
	background-size: 100% 100vh;
	background-position: center top;
	position: fixed;
	height: 100%;
    min-width: 1800px;
	right: 0px;
	top: 0px;
	width: 100%;
	z-index: 0;
}

body .website-wrapper
{
	z-index: 10;
}

video.video-player-item
{
	z-index: 15;
	background-color: #000000;
	position: absolute;
}

video.video-player-item,
div.website-wrapper
{
	height: 100%;
	width: 100%;
}

div.website-wrapper .text
{
	color: #FFFFFF;
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 700;
	font-size: 28px;
	text-align: center;
	text-transform: uppercase;
}

/* Images */

div.website-wrapper .images-wrapper
{
	align-items: center;
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
}
div.website-wrapper .images-wrapper.pc .top
{
	max-width: 720px;
    margin-top: 50px;
}
div.website-wrapper .images-wrapper.pc .middle
{
	max-width: 400px;
	margin-top: 25px;
}
div.website-wrapper .images-wrapper.pc .bottom
{
	display: inline-block;
    max-width: 1300px;
	margin-top: -50px;
    transform:scale(1, 1.5);
}
div.website-wrapper .images-wrapper.pc .top img,
div.website-wrapper .images-wrapper.pc .middle img,
div.website-wrapper .images-wrapper.pc .bottom img
{
	width: 100%;
}

div.website-wrapper .images-wrapper.mobile .to-our img
{
	max-width: 180px;
}

/* Media Query's */

@media(min-width: 900px)
{
	div.website-wrapper .images-wrapper.mobile
	{
		display: none;
	}
}
@media(min-width: 700px) and (max-width: 1400px)
{
	body .background-image
	{
		right: -300px;
	}

	div.website-wrapper .images-wrapper.mobile .middle img
	{
		max-width: 400px;
	}
}
@media(max-width: 899px)
{
	div.website-wrapper .images-wrapper.pc
	{
		display: none;
	}
	div.website-wrapper .images-wrapper.mobile
	{
		display: block;
	}


	div.website-wrapper .images-wrapper.mobile,
	div.website-wrapper .images-wrapper.mobile > *
	{
		align-items: center;
		display: flex;
		flex-flow: column nowrap;
		justify-content: center;
	}

	div.website-wrapper .images-wrapper.mobile .top
	{
		margin-top: 35px;
	}

	body .images-wrapper.mobile .middle img
	{
		max-width: 200px;
		margin-top: 28px;
	}

	body .background-image
	{
		min-width: 1100px;
		right: -170px;
	}

	div.website-wrapper .mobile .text
	{
		font-size: 20px;
		transform:scale(1, 1.5);
	}
}





