:root {
	/* Colors
	Blue Dark: #001C26;
	Blue: #26CBFA;
	Green Dark: #005D7B;
	Green: #57BC96;
	Grey: #E9EAEE;
	Grey Light: #F2F2F2;
	Purple: #B4008A;
	Gradient Blue Dark: #005D7B - #002F3E;
	Gradient Blue: #52D1F5 - #1168DE;
	Gradient Green: #00CC7F - #018D58;
	Gradient Yellow: #FFD23B - #C76E14
	*/
}

/* [CSS] */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	height: 100%;
}

body {
	margin: 0;
	padding: 0;
	min-height: 100%;
	height: 100%;
	font-family: 'Archivo', sans-serif;
	color: #000;
	font-size: 1.5rem;
	font-weight: 100;
	font-smooth: always;
	-webkit-font-smoothing: antialiased;
	overflow: hidden;
}

h1 {
	margin: 0;
}

h2 {
	font-size: 2.5rem;
	line-height: 3rem;
	font-weight: 600;
	letter-spacing: -1px;
	color: #FFF;
	margin: 0 0 2rem 0;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.splitscreen {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	height: 100dvh;
}

.splitscreen .top {
	position: relative;
	display: flex;
	width: 100%;
	height: 50vh;
}

.splitscreen .image {
	position: absolute;
	display: flex;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('img/background.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	-webkit-transition: all 0.9s;
	   -moz-transition: all 0.9s;
	 	-ms-transition: all 0.9s;
	  	 -o-transition: all 0.9s;
		 	transition: all 0.9s;
}

.splitscreen .image.nonactive {
	opacity: 0;
}

.splitscreen .image-bezorgers {
	position: absolute;
	display: flex;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('img/background-bezorgers.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	opacity: 0;
	-webkit-transition: all 0.9s;
	   -moz-transition: all 0.9s;
	 	-ms-transition: all 0.9s;
	  	 -o-transition: all 0.9s;
		 	transition: all 0.9s;
}

.splitscreen .image-bezorgers.active {
	opacity: 1;
	z-index: 1;
}

.splitscreen .image-zakelijk {
	position: absolute;
	display: flex;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('img/background-zakelijk.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	opacity: 0;
	-webkit-transition: all 0.9s;
	   -moz-transition: all 0.9s;
	 	-ms-transition: all 0.9s;
	  	 -o-transition: all 0.9s;
		 	transition: all 0.9s;
}

.splitscreen .image-zakelijk.active {
	opacity: 1;
	z-index: 1;
}

.splitscreen .top .logowrap {
	position: absolute;
	display: flex;
	z-index: 9;
	bottom: 0%;
	left: 50%;
	background-color: #FFF;
	padding: 3rem;
	transform: translate(-50%, 10%);
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	 	-ms-transition: all 0.3s;
	  	 -o-transition: all 0.3s;
		 	transition: all 0.3s;
	-webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
	   -moz-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
		 	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
}

.splitscreen .top .logowrap.move-left {
	left: 50%;
	bottom: 0%;
}

.splitscreen .top .logowrap.move-right {
	left: 50%;
	bottom: 5%;
}	

.splitscreen .top .logowrap img.logo {
	width: 150px;
	height: auto;
}

.splitscreen .bottom {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	height: 50vh;
}

.splitscreen .bottom .left {
	position: relative;
	display: flex;
	flex-direction: column;
    justify-content: center;
    align-items: center;
	width: 100%;
	height: 100%;
	text-align: center;
	-webkit-box-shadow: 0px -5px 10px 0px rgba(0,0,0,0.75);
	   -moz-box-shadow: 0px -5px 10px 0px rgba(0,0,0,0.75);
		  	box-shadow: 0px -5px 10px 0px rgba(0,0,0,0.75);
}

.splitscreen .bottom .right {
	position: relative;
	display: flex;
	flex-direction: column;
    justify-content: center;
    align-items: center;
	width: 100%;
	height: 100%;
	text-align: center;
	-webkit-box-shadow: 0px -5px 10px 0px rgba(0,0,0,0);
	   -moz-box-shadow: 0px -5px 10px 0px rgba(0,0,0,0);
		  	box-shadow: 0px -5px 10px 0px rgba(0,0,0,0);
}

.splitscreen .bottom .left a.link {
	position: absolute;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
    justify-content: center;
    align-items: center;
	width: 100%;
	height: 100%;
	padding: 3rem;
	text-decoration: none;
	background: rgb(255,210,59);
	background: -moz-linear-gradient(90deg, rgba(255,210,59,1) 0%, rgba(199,110,20,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(255,210,59,1) 0%, rgba(199,110,20,1) 100%);
	background: linear-gradient(90deg, rgba(255,210,59,1) 0%, rgba(199,110,20,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffd23b",endColorstr="#c76e14",GradientType=1);	
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	 	-ms-transition: all 0.3s;
	  	 -o-transition: all 0.3s;
		 	transition: all 0.3s;
}

.splitscreen .bottom .left a.link:hover,
.splitscreen .bottom .left a.link:focus {
	height: 110%;
	z-index: 1;
	background: rgb(199,110,20);
	background: -moz-linear-gradient(90deg, rgba(199,110,20,1) 0%, rgba(255,210,59,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(199,110,20,1) 0%, rgba(255,210,59,1) 100%);
	background: linear-gradient(90deg, rgba(199,110,20,1) 0%, rgba(255,210,59,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c76e14",endColorstr="#ffd23b",GradientType=1);
	-webkit-box-shadow: 10px 0px 10px 0px rgba(0,0,0,0.25);
	   -moz-box-shadow: 10px 0px 10px 0px rgba(0,0,0,0.25);
			box-shadow: 10px 0px 10px 0px rgba(0,0,0,0.25);
}

.splitscreen .bottom .right a.link {
	position: absolute;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
    justify-content: center;
    align-items: center;
	width: 100%;
	height: 100%;
	padding: 3rem;
	text-decoration: none;
	background: rgb(0,93,123);
	background: -moz-linear-gradient(90deg, rgba(0,93,123,1) 0%, rgba(0,47,62,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(0,93,123,1) 0%, rgba(0,47,62,1) 100%);
	background: linear-gradient(90deg, rgba(0,93,123,1) 0%, rgba(0,47,62,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#005d7b",endColorstr="#002f3e",GradientType=1);
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	 	-ms-transition: all 0.3s;
	  	 -o-transition: all 0.3s;
		 	transition: all 0.3s;
}

.splitscreen .bottom .right a.link:hover,
.splitscreen .bottom .right a.link:focus {
	height: 110%;
	z-index: 1;
	background: rgb(0,47,62);
	background: -moz-linear-gradient(90deg, rgba(0,47,62,1) 0%, rgba(0,93,123,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(0,47,62,1) 0%, rgba(0,93,123,1) 100%);
	background: linear-gradient(90deg, rgba(0,47,62,1) 0%, rgba(0,93,123,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#002f3e",endColorstr="#005d7b",GradientType=1);
	-webkit-box-shadow: -10px 0px 10px 0px rgba(0,0,0,0.25);
	   -moz-box-shadow: -10px 0px 10px 0px rgba(0,0,0,0.25);
			box-shadow: -10px 0px 10px 0px rgba(0,0,0,0.25);
}

.splitscreen .bottom a.link .desc {
	color: #FFF;
	font-size: 1.75rem;
	line-height: 3rem;
	padding-bottom: 0rem;
	opacity: 0;
	height: 0%;
	-webkit-transition: all 0.1s;
	   -moz-transition: all 0.1s;
	 	-ms-transition: all 0.1s;
	  	 -o-transition: all 0.1s;
		 	transition: all 0.1s;
}

.splitscreen .bottom a.link:hover .desc,
.splitscreen .bottom a.link:focus .desc {
	opacity: 0;
	height: 0%;
	-webkit-transition: all 0.6s;
	   -moz-transition: all 0.6s;
	 	-ms-transition: all 0.6s;
	  	 -o-transition: all 0.6s;
		 	transition: all 0.6s;
}

.splitscreen .bottom a.link .btn {
	position: relative;
	display: inline;
	padding: 1rem 0;
	font-size: 2rem;
	line-height: 2rem;
	font-weight: 100;
	color: #FFF;
}

.splitscreen .bottom a.link .btn:before {
	position: absolute;
	display: flex;
	content: "";
	top: 0px;
	left: -70px;
	width: 50px;
	height: 33px;
	pointer-events: none;
	background-image: url('img/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	-webkit-transform: rotate(10deg);
	   -moz-transform: rotate(10deg);
	    -ms-transform: rotate(10deg);
	     -o-transform: rotate(10deg);
			transform: rotate(10deg);
}

.splitscreen .bottom a.link .btn:after {
	position: absolute;
	display: flex;
	content: "";
	bottom: -75px;
	left: 0;
	width: 0%;
	height: 75px;
	clip-path: polygon(0 4%, 70% 8%, 100% 4%, 100% 0, 0 0);
	background-color: #FFF;
	pointer-events: none;
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	 	-ms-transition: all 0.3s;
	  	 -o-transition: all 0.3s;
		 	transition: all 0.3s;
}

.splitscreen .bottom a.link:hover .btn,
.splitscreen .bottom a.link:focus .btn {
	color: #FFF;
	text-decoration: none;
}

.splitscreen .bottom a.link:hover .btn:after,
.splitscreen .bottom a.link:hover .btn:after {
	width: 100%;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
	h2 {
		font-size: 2.5rem;
		line-height: 3rem;
	}
	.splitscreen .top {
		height: 50vh;
	}
	.splitscreen .top .logowrap {
		transform: translate(-50%, 10%);
	}
	.splitscreen .top .logowrap.move-left {
		left: 50%;
		bottom: 0%;
	}
	.splitscreen .top .logowrap.move-right {
		left: 50%;
		bottom: 5%;
	}
	.splitscreen .top .logowrap img.logo {
		width: 150px;
	}
	.splitscreen .bottom {
		flex-direction: row;
		height: 50vh;
	}
	.splitscreen .bottom .left, 
	.splitscreen .bottom .right {
		width: 50%;
		-webkit-box-shadow: 0px -5px 10px 0px rgba(0,0,0,0.75);
	       -moz-box-shadow: 0px -5px 10px 0px rgba(0,0,0,0.75);
		  		box-shadow: 0px -5px 10px 0px rgba(0,0,0,0.75);
	}
	.splitscreen .bottom .left a.link:hover,
	.splitscreen .bottom .left a.link:focus {
		height: 110%;
	}
	.splitscreen .bottom .right a.link:hover,
	.splitscreen .bottom .right a.link:focus {
		height: 110%;
	}
	.splitscreen .bottom a.link .desc {
		padding-bottom: 1rem;
	}
	.splitscreen .bottom a.link:hover .desc,
	.splitscreen .bottom a.link:focus .desc {
		opacity: 0;
		height: 0%;
	}
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
	h2 {
		font-size: 3.5rem;
		line-height: 4rem;
	}
	.splitscreen .top {
		height: 60vh;
	}
	.splitscreen .top .logowrap {
		transform: translate(-50%, 10%);
	}
	.splitscreen .top .logowrap.move-left {
		left: 36%;
		bottom: 5%;
	}
	.splitscreen .top .logowrap.move-right {
		left: 64%;
	}	
	.splitscreen .top .logowrap img.logo {
		width: 250px;
	}
	.splitscreen .bottom {
		flex-direction: row;
		height: 40vh;
	}
	.splitscreen .bottom .left, 
	.splitscreen .bottom .right {
		width: 50%;
	}
	.splitscreen .bottom .left a.link:hover,
	.splitscreen .bottom .left a.link:focus {
		height: 125%;
	}
	.splitscreen .bottom .right a.link:hover,
	.splitscreen .bottom .right a.link:focus {
		height: 125%;
	}
	.splitscreen .bottom a.link .desc {
		padding-bottom: 3rem;
	}
	.splitscreen .bottom a.link:hover .desc,
	.splitscreen .bottom a.link:focus .desc {
		opacity: 1;
		height: auto;
	}
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
	.splitscreen .top {
		height: 70vh;
	}
	.splitscreen .top .logowrap.move-left {
		left: 38%;
		bottom: 2.5%;
	}
	.splitscreen .top .logowrap.move-right {
		left: 62%;
		bottom: 2.5%;
	}	
	.splitscreen .bottom {
		height: 30vh;
	}
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
	.splitscreen .top .logowrap.move-left {
		left: 45%;
	}
	.splitscreen .top .logowrap.move-right {
		left: 55%;
	}	
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {

}