/*RESET CSS*/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
strong{
    font-weight: bold;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*STEVE HERMANS CSS*/
div.header{
    height: 650px;
    background: url(images/hermans-front.jpg);
    background-size: cover;
    background-position: right center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
*{
    font-family: "Montserrat", sans-serif !important;
    box-sizing: border-box;
}
h1{
    width: 1400px;
    flex: 100%;
    text-align: center;
    font-size: 4em;
    font-weight: 700;
    background: #009fe3;
    color: white;
    padding: 20px !important;
}
.usp{
    background: #009fe3;
    padding: 30px;
    color: white;
    font-weight: bold;
}
.usp ul{
    display:flex;
    gap: 30px;
}
.usp li:first-child{
    list-style-type: none;;
}
.body{
    max-width: 1400px;
    padding: 30px;
    width: 100%;
    margin: 0 auto;
}
.rowtitle h2{
    font-size: 2em;
    font-weight: bold;
    color: #009fe3;
    margin-bottom: 20px;
    text-align: center;
}
.diensten{
    display: flex;
    gap: 40px;
    margin: 30px 0;
    line-height: 1.6;
    justify-content: center;
}
.diensten div{
    background: #009fe3;
    color: white;
    padding: 30px;
    flex: 50%;
}
.businessinfo{
    line-height: 1.6;
    display: flex; 
    gap: 40px;
    justify-content: center;
}
.businessinfo div{
    flex: 50%;
}
a{
    color: black;
}

@media screen and (max-width: 800px){
    .businessinfo{
    line-height: 1.6;
    display: block; 
    gap: 40px;
    justify-content: center;
}
.diensten{
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin: 30px 0;
    line-height: 1.6;
    justify-content: center;
}
.diensten>div{
    width: 100% !important;
}
h1{
    font-size: 2em;
}
.usp ul{
    display:flex;
    gap: 30px;
    flex-wrap: wrap;
}
}