:root{
	--main-color: #00b51a;
	--secondary-color: #f5f5f5;
	--text-color: #4a4a4a;
	--font-family: 'Oxygen', sans-serif;
	--background-shadow-color: rgba(0, 0, 0, 0.1);
	--main-color-reduced: #00b51b76;
}

body {
	width: 100%;
	color: var(--text-color);
	line-height: 150%;
	font-family: var(--font-family);
	font-weight: 300;
	background-image: url('/images/website/verbo_icoon_grijs.png');
	background-repeat: no-repeat;
	background-position: top right;
	position: relative;
	font-size: 20px;
}

.container {
	float: left;
	width: 94%;
	padding-left: 3%;
	padding-right: 3%;
}

/* Tooltip css */
.tooltip {
	max-width: 200px;
	display: none;
	position:absolute;
	border:1px solid #333;
	background-color:#171717;
	border-radius:5px;
	padding:10px;
	color:#fff;
	font-size: 10px !important;
}

/* Contact page */
.contact_info {
	float: left;
	width: 100%;
	text-align: center;
	margin-top: 80px;
}

.contact_info h3 {
	color: var(--text-color);
	font-weight: bold;
	font-size: 40px;
	margin-bottom: 50px;
}

.contact_info a {
	color: var(--main-color);
}

.menu_line {
	float: left;
	width: 10%;
	margin-left: 45%;
	margin-right: 45%;
	border-top: 4px solid #999999;
	margin-bottom: 20px;
}

.verbo_icoon {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 99;
}

article {
	float: right;
	width: 100%;
	padding-left: max(17%, 150px);
}

.content {
	float: right;
	width: 100%;
	margin-top: 5px;
	margin-bottom: 20px;
	height: auto;
	padding: 30px;
	font-size: 18px;
	line-height: 28px;
}

@media screen and (max-width: 480px) {
	.content {
		font-size: 15px;
		line-height: 24px;
	}
}

.plain_page{
	padding: 0 !important;
}

.plain_page b, .plain_page strong {
	font-weight: bold;
}
.plain_page i, .plain_page em {
	font-style: italic;
}
.plain_page ul {
	padding-left: 40px;
	list-style-type: disc;
	line-height: 12px;
}
.plain_page li {
	line-height: 22px;
}

.plain_page .article_img {
	float: left;
	width: 48%;
	margin-left: 0;
	margin-right: 2%;
}
.plain_page .article_img img {
	width: 100%;
}

.header_caption{
	width: 100%;
	text-align: center;
	font-size: 15px;
	color: var(--text-color);
	padding: 10px 0;
	margin-bottom: 10px;
}

.home_div_line {
	float: left;
	width: 100%;
	height: 5px;
	background-color: var(--main-color);
}

.line {
	float: left;
	width: 100%;
	margin-top: 40px;
	margin-bottom: 40px;
}

h1 {
	font-family: 'Oswald', sans-serif;
	font-size: 25px;
	text-align: center;
	text-transform: uppercase;
}

h2 {
	font-family: 'Oswald', sans-serif;
	font-size: 25px;
	text-transform: uppercase;
	margin-bottom: 10px;
	line-height: 150%;
}

h3 {
	font-family: 'Poiret One', cursive;
	color: white;
	font-size: 20px;
	margin-bottom: 20px;
}

h4 {
	font-family: 'Poiret One', cursive;
	font-size: 15px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

/* Image showcase (universal) */
.image_showcase{
	width: 100%;
	height: auto;
	max-height: 50vh;
	min-height: 250px;
	display: flex;
	border-bottom: 2px solid var(--main-color);
	overflow: hidden;
}

.image_showcase > figure{
	width: auto;
	max-width: 25%;
	hieght: 100%;
}

.image_showcase > figure > img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: all 0.3s ease;
}

.image_showcase > figure > img:hover{
	transform: scale(1.2);
}

@media screen and (max-width: 575px){
	.image_showcase{
		max-height: 30vh;
		min-height: 100px;
	}
}

/* Contact */
.contact {
	float: left;
	width: 70%;
	margin-top: 30px;
}

.contact p {
	float: left;
	width: 100%;
	margin-bottom: 20px;
}

/* Footer */
.copyright {
	text-align: center;
	width: 100%;
	padding-bottom: 10px;
	font-size: 11px;
}

.copyright a {
	color: var(--main-color);
}

.copyright a:hover {
	text-decoration: underline;
}

/* Standard button */
.button {
	background-color: transparent;
	border: 2px solid white;
	padding: 10px 20px;
	color: #fff;
	font-size: 17px;
    -webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    transition: all ease 0.4s;
    outline: none;
	font-weight: 300;
	appearance: none;
	-webkit-appearance: none;
}

.button:hover {
	background-color: white;
	color: var(--main-color);
	text-decoration: none;
	cursor: pointer;
}

@media only screen and (max-width: 1100px) {
	.home_div h2 {
		min-height: 148px;
	}
}

@media only screen and (max-width: 959px) {
	.desktop {
		display: inline;
	}
	
	.home_div h2 {
		min-height: 185px;
	}
}

@media only screen and (max-width: 767px) {	
	article {
		width: 100%;
		padding-left: 0;
	}
	
	.line {
		margin-bottom: 19px;
	}

	h1 {
		padding-top: 35px;
	}
	
	.homepage h1 {
		padding-top: 30px;
	}
	
	.home_div h2 {
		min-height: 222px;
	}
	
	.contact {
		width: 60%;
		margin-top: 20px;
	}
	
	.content {
		float: right;
		width: 100%;
		margin-bottom: 10;
		height: auto;
		padding: 15px;
	}
}

@media only screen and (max-width: 479px) {
	.home_div {
		width: 94%;
		padding-left: 3%;
		padding-right: 3%;
		margin-bottom: 0;
	}
	
	.home_div h2 {
		min-height: 148px;
	}
	
	.contact {
		width: 100%;
		margin-top: 10px;
	}
}