/*Variabelen, om makkelijk te kunnen veranderen*/
:root {
	--header-hover-color: rgb(56, 164, 197);
}

/*---------------Globale pagina settings--------------*/

* {
	/*verberg scrollbar voor meerdere browsers*/
	-ms-overflow-style: none; /* IE and Edge */
	scrollbar-width: none; /* Firefox */

	/*zorgt voor een aangrenzende header*/
	margin: 0;
	padding: 0;

	/*zet het algemene pagina font*/
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	border-width: 1px;
}

body {
	background-image: linear-gradient(#ffebeb, #ffffff);
	max-width: 100%;
	overflow-x: hidden;
}

#text {
	font-size: normal;
}

/*----------------------Header----------------------*/

.headerTop {
	top: 0;
	padding: 10px 16px;
	background: rgb(156, 182, 249);
	background: linear-gradient(
		90deg,
		rgba(156, 182, 249, 1) 0%,
		rgba(32, 184, 194, 1) 100%
	);
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
		rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.headerBottom {
	top: 0;
	position: sticky;
	background: rgb(156, 182, 249);

	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
		rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.menu {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	justify-content: space-around;
	display: flex;
	background-color: #2af2ff;
	width: 100%;
}

.listHeader {
	width: 100%;
	transition: 0.1s;
}

.listHeader a {
	transition: 0.3s;
	display: block;
	color: black;
	text-align: center;
	text-decoration: none;
	padding: 0 9.5%;
	padding-top: 2%;
	padding-bottom: 2%;
	border-left: 1px solid black;
}

.listHeader:hover {
	background-color: rgb(152, 179, 228);
}

.listHeader a:hover {
	box-shadow: 0px 3px 4px black;
}

/*----------------------1e column----------------------*/

.deelEen {
	margin-left: 2%;
	padding-left: 20px;
	width: 40%;
}

.carDiv {
	display: flex;
	justify-content: space-between;
}

.carPic {
	height: 400px;
	width: 45%;
	object-fit: cover;
	border-bottom-left-radius: 25px;
}

/*----------------------2e column----------------------*/

/*------Vak-------*/
.deelTwee {
	display: flex;
	justify-content: space-evenly;
	width: 100%;
}

.proeflessen {
	background-color: #dbee8c;
	border-radius: 25px;
	margin-left: 3%;
	width: 50%;
	height: 15em;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: 8px 10px 0px #5a6237;
}

.proeflesButton {
	text-decoration: none;
	color: black;
	transition: 0.15s;
	margin-top: 65px;
	padding: 6%;
	background-color: orange;
	width: 80%;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	box-shadow: 2px 2px 4px black;
}

.proeflesButton:hover {
	box-shadow: 3px 3px 4px black;
	background-color: rgb(250, 186, 67);
}

.proeflessen .center {
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 60%;
}

/*
.center .imagee {
	display: flex;
	justify-content: flex-end;
	margin-top: -10px;
}

.center .imagee img {
	width: 25%;
	overflow: hidden;
}
*/

/*------Text-------*/

.deelTwee #text {
	width: 60%;
	margin-left: 18%;
	margin-right: 2%;
	margin-top: 3%;
}

/*----------------------3e column----------------------*/

.deelDrie {
	display: flex;
	justify-content: flex-start;
	width: 100%;
}

.area {
	background-color: #f1efef;
	width: 45%;
	margin-right: 11%;
	border-top-right-radius: 75px;
	height: 400px;
	display: flex;
	flex-direction: column;
}

.area #text {
	margin-left: 2%;
	padding-left: 20px;
	padding-right: 50px;
}

.deelDrie .div2 {
	border-radius: 10px;
}

.div3 {
	margin-top: 100px;
	height: 50%;
}
.cards #i1,
#i2,
#i3 {
	padding-left: 10px;
	padding-right: 10px;
}

.cards #i1,
#i2 {
	border-right-style: solid;
}

.cards a {
	background-color: red;
	border-radius: 3px;
	text-decoration: none;
	color: black;
	margin-left: 20%;
	padding: 0px 10px;
	margin-bottom: 100px;
	font-size: large;
	box-shadow: 2px 2px 4px black;
}

.cards a:hover {
	background-color: rgb(255, 58, 58);
}

.cards {
	box-shadow: 3px 3px 1px black;
	border-radius: 10px;
	list-style-type: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	background-color: #dbee8c;
}

.card {
	display: flex;
	justify-content: left;
	flex-direction: column;
	list-style-type: circle;
	margin-left: 20px;
}

.top_border {
	border-top-style: solid;
	border-width: 2px;
	border-top-color: black;
}

.cards h3 {
	border-bottom-style: solid;
	text-align: center;
}

/*---button---*/
#button {
	margin-left: 12%;
	background-color: orange;
	transition: 0.15s;
	border-radius: 7px;
	padding: 5px 20px;
}

#button:hover {
	box-shadow: 3px 3px 4px black;
	background-color: rgb(250, 186, 67);
}

.contactButton {
	text-decoration: none;
	padding-top: 5px;
	padding-bottom: 5px;
	color: black;
	margin-left: 4%;
	padding-left: 6%;
	padding-right: 6%;
	background-color: orange;
	width: 10%;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 7px;
	box-shadow: 2px 2px 4px black;
}

.contactButton:hover {
	box-shadow: 3px 3px 4px black;
	background-color: rgb(250, 186, 67);
}

/*----------------------Footer----------------------*/
.footer {
	border-top-style: solid;
	background: #b7e7eb;
	background: linear-gradient(180deg, #90e3ea 0%, #c8ebee 12%);
	padding-bottom: 5%;
}

.footer div {
	background-color: #c8ebee;

	display: flex;
	justify-content: space-around;
}

.footer h2 {
	position: relative;
	margin-left: 5%;
}

.footer ul li {
	position: relative;
	list-style: circle;
}

/*--------------------buttons---------------------*/
