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

@import url('https://fonts.googleapis.com/css?family=Fira+Sans:300,300i,400,400i,500,500i,600,600i,700,700i');
html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Fira Sans', sans-serif;
    color: white;
    background: #00d2ff;  /* oude browsers */
    background: radial-gradient(#00d2ff, #3a7bd5);
}

p {
	margin:0;
}
.flex-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.kop {
    padding: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.logo {
}
.sociale-media {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    align-items: center;
}
.sociale-media-inhoud {
    padding-left: 10px;
    display: flex;
    flex-direction: row;
}
.voet {
    padding: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.adres {
    display: flex;
    align-self: flex-end;
}
ul {
    margin: 0;
    padding: 0;
}
li {
    list-style: none;
}
li a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 36px;
    color: white;
}
li a {
    text-decoration: none;
    color: rgba(255,255,255,1);
    position: relative;
    padding: 16px 7px;
    border-top: 2px solid rgba(255,255,255,0);
    border-bottom: 2px solid rgba(255,255,255,0);
    transition: padding .3s, border-color .3s;
}
li a:focus, li a:hover {
    padding: 5px 7px;
    border-color: rgba(255,255,255,1);
    outline: none;
}
li a::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    max-height: 0;
    color: rgba(255,255,255,0);
    border-left: 2px solid rgba(255,255,255,0);
    content: attr(data-text);
    transition: max-height .3s, border-color 0s;
}
li a::after {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 15px;
    max-height: 0;
    color: rgba(255,255,255,0);
    border-right: 2px solid rgba(255,255,255,0);
    content: attr(data-text);
    transition: max-height .3s, border-color 0s;
}
li a:focus::before, li a:hover::before, li a:focus::after, li a:hover::after {
    max-height: 100%;
    transition-delay: .28s;
    border-color: rgba(255,255,255,1);
}
.sociale-media-inhoud p {
    font-size: 12px;
	font-weight: 400;
}
.navigatie {
    align-self: flex-end;
}
.adres {
    display: flex;
    align-self: flex-end;
    flex-direction: column;
    text-align: right;
}
.adres p {
    font-size: 12px;
    line-height: 18px;
	font-weight: 400;
    text-align: right;
	margin:0;
}

.inhoud {
	display:flex;
	width: 100%;
	height:450px;
}
.midden-tekst {
	width: 40%;
	padding-left:25px;
	padding-right:25px;
}
.midden-beeld {
	width: 60%;
}
.midden-beeld img {
    display: block;
    margin-left: auto;
    margin-right: auto;
	filter: drop-shadow(10px 10px 15px #000);
}

.hero-beeld h1 {
	font-size: 36px;
	font-weight: 200;
	text-align: center;
	
}.hero-beeld span {
	font-weight: 500;
}

.midden-tekst h2 {
	font-size: 24px;
	line-height: 30px;
	font-weight: 300;
	text-align: left;
}

.midden-tekst p {
	font-size: 15px;
	line-height: 20px;
	font-weight: 200;
	text-align: left;
}

.hero-beeld img {
    display: block;
    margin-left: auto;
    margin-right: auto;
	filter: drop-shadow(10px 10px 15px #000);
}

.midden-tekst a {
	text-decoration:none;
	color: white;
	font-weight: 400;
	
}