@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,700");
body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: calc(100vh - 2rem);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color:#D1DEE6;
	font-family: "Montserrat", sans-serif
}
.wrapper {
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 700px;
	min-height: 700px;
	background: linear-gradient(-45deg, #1D3662, #288EC6, #1D3662, #288EC6);
	background-size: 400% 400%;
}
img {
	width: 50%;
	height: 100%;
	-o-object-position: center;
	object-position: center;
	-o-object-fit: cover;
	object-fit: cover
}
.controls {
	float:left;
	width:100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 20px;
}
.controls #prev-btn, .controls #next-btn {
	border-radius: 0px;
	padding: 0.75rem 2rem;
	margin-left:150px;
	margin-right:150px;
	color: #1D3662;
	border: solid 3px #1D3662;
	background-color:#1D3662;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	font-weight: 700;
}
#prev-btn {
	background-image:url(../images/slider_pijl_links.png);
	background-size: cover;
  	background-repeat: no-repeat;
  	background-position: 50% 50%;
	background-color:#1D3662;
	width:60px;
	height:60px;
}
#next-btn {
	background-image:url(../images/slider_pijl_rechts.png);
	background-size: cover;
  	background-repeat: no-repeat;
  	background-position: 50% 50%;
	background-color:#1D3662;
	width:60px;
	height:60px;
}

.controls #prev-btn:focus, .controls #next-btn:focus {
	outline: none
}
.controls #prev-btn:hover, .controls #next-btn:hover {
	color: #eb4848;
	background-color: #fff
}
.controls #prev-btn:hover.disabled, .controls #next-btn:hover.disabled {
	background-color: transparent;
	color: #fff
}
#prev-btn:hover {
	background-image:url(../images/slider_pijl_links_hover.png);
}
#next-btn:hover {
	background-image:url(../images/slider_pijl_rechts_hover.png);
}
.slider_info_holder {
	height:150px;
}
.info_slider_outer {
	float:right;
	width:50%;
}

@media screen and (max-width: 1000px) {
	.controls #prev-btn, .controls #next-btn {
	margin-left:50px;
	margin-right:50px;

	}
	img {
	width: 40%;
	}
	.info_slider_outer {
	float:right;
	width:60%;
}
}








