@charset "utf-8";
/* CSS Document */

.artikelhome {
	display:flex;
	flex-wrap:wrap;
	justify-content: space-between;
	align-items: center;
	position: relative;
	width: 46%;
	border-bottom: 1px solid var(--text-color);
	padding-bottom: 10px;
	margin-bottom: 15px;
	color: var(--text-color);
	text-decoration: none;
}
.artikelhome p {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	flex: 1 1 0px;
    padding-right: 2em;
	margin: 0;
	font-size: 14px;
}
.artikelhome .link {
	transform:translateX(-.5rem);
	width: auto;
	color: var(--sec-color);
	font-size: 12px;
	transition: 0.3s ease;
}
.artikelhome:hover .link {
	transform:TranslateX(0);
}
@media screen and (max-width: 800px) {
	.artikelhome {
		width: 100%;
	}
}

.dienst {
	font-size: 14px;
}
.dienst h2 {
	font-size:26px;
}
.dienst ul {
	padding-left: 15px;
}
.dienst .icon {
	float: left;
	width: 20%;
	height: auto;
	min-height: 1px;
    margin-bottom:.5rem;
}
.dienst .icon img {
	width: 50%;
	height: auto;
	max-height: 90px;
	object-fit: contain;
	object-position: left;
}
.dienst .adviseur {
	float: left;
	width: 25%;
	margin-right: 3%;
	height: 160px;
	position: relative;
	overflow:visible;
	margin-bottom:15px;
}
.dienst .adviseur img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 40px;
}
.dienst .adviseur:hover .omschrijving {
	display: block;
}
.adviseur .omschrijving {
	display: none;
	position: absolute;
	left:145px;
	bottom: 10px;
	height:auto;
	width:450px;
	font-size:13px;
	background: rgba(255,255,255,1);
	box-shadow: 0 2px 5px 3px rgba(0,0,0,0.1);
	border-radius: 20px;
	text-align: left;
	padding:8%;
	z-index:1;
}
@media screen and (max-width: 1000px) {
	.dienst .adviseur:hover .omschrijving {
		display: none;
	}
	.dienst .icon {
		width: 100%;
		text-align: center;
		margin: 20px 0;
	}
	.dienst .icon img {
		max-width: 120px;
	}
}



footer {
	padding-top: 60px;
	padding-bottom:15px;
	background: var(--tint-color);
	font-size: 14px;
}
.footerlogo {
	width: 160px;
}
.footerlogo img {
	width: 100%;
	height: auto;
}
footer .search {
	float: left;
}
footer .search input[type="search"] {
	width: 180px;
}
footer .half {
	float: left;
	width: 50%;
}
footer .div33 {
	margin-bottom:0;
}
footer .div33:nth-child(2) h3 {
	margin-left: 15px;
}
footer .half:first-child {
	box-sizing: border-box;
	padding-left: 15px;
	position: relative;
	border-left: 3px solid var(--sec-color);
}
footer i {
	color: var(--sec-color);
}
.socialmenu {
	margin-top:10px;
}
.socialmenu ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.socialmenu li {
	display: inline-block;
	margin-right: 10px;
}
.socialmenu a {
	display: block;
	color: white;
	border-radius: 50px;
	background: -webkit-linear-gradient(var(--tert-color), var(--sec-color));
	background: -o-linear-gradient(var(--tert-color), var(--sec-color));
	background: linear-gradient(var(--tert-color), var(--sec-color));
	min-width: 25px;
	height: 25px;
	text-align: center;
	line-height: 26px;
}
.socialmenu i {
	color: white;
}

footer .footermenu ul {
	list-style:none;
	padding:0;
	margin:10px 0;
}
footer .footermenu li {
	display:inline-block;
	margin:8px;
}