.blokken_content{
  max-width: 85% !important;
}

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
textarea:focus, input:focus, select:focus, button:focus, option:focus{
  outline: none;
}
input[type=text],
input[type=submit],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
textarea,
select,
option {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}
html,
body {
  margin:0;
  padding:0;
  height:100%;
  position: relative;
  font-family: effra, sans-serif;
}

p {
  font-size: 1.5em;
  line-height: 120%;
}

strong {
  font-weight: 500;
}
.gotofooter {
  cursor: pointer;
}

/* Menu Button */

.menu_button {
  position: fixed;
  right: 30px;
  top: 30px;
  z-index: 70;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

.menu_button img {
  width: 150px;
  margin-right: 30px;
}

.menu_button div {
  width: 50px;
  height: 50px;
  transition: all .5s;
  padding: 0;
  display: flex;
  color: black;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  border-radius: 200px;
  background-color: white;
  border-radius: 200px;
  font-size: 1.3em; 
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.10);
  -moz-box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.10);
  box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.10);
}
/* Einde Menu Button */

/* Menu */

.menu {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 40;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: none;
}

.menuoverlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: .2;
  filter: grayscale(100%);

}

.menu>nav {
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  z-index: 2;
  position: relative;
}

.menu>nav ul {
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  flex-direction: column;
}

.menu>nav ul a {
  font-weight: 700;
  color: black;
  display: inline-block;
  padding: 20px 0;
  text-align: center;
  font-size: 80px;
}

.menu span {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 0 20px;
}

.menu span:before, .menu span:after {
  content: '';
  position: absolute;
  width: 0%;
  height: 5px;
  bottom: 0;
  margin-top: -0.5px;
  background: black;
}

.menu span:before {
  left: -2.5px;
}
.menu span:after {
  right: 2.5px;
  background: black;
  transition: width 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.menu span:hover:before {
  background: black;
  width: 100%;
  transition: width .6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.menu span:hover:after {
  background: transparent;
  width: 100%;
  transition: 0s;
}

/* Einde Menu */


/* Page Header */

.page_header {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  flex-direction: column;
  padding: 0 10px;
  padding-bottom: 50px;
  padding-top: 80px;
}

.page_header>div:first-of-type {
  height: 45px;
  width: 2px;
  background-color: #002D5B;
  margin-bottom: 30px;
}

.page_header>h2 {
  color: #4C4C4C;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.page_header>h1 {
  color: #1C1B1B;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 1px;
  text-align: center;
  max-width: 600px;
  margin-bottom: 20px;
}

.page_header_tekst {
  line-height: 170%;
  font-weight: 200;
  font-size: 20px;
  color: #4C4C4C;
  width: 100%;
  text-align: center;
}

/* Einde Page Header*/


/* Screen Intro */

.intro_screen {
  width: 100%;
  height: 100vh;
  background-image: url(/images/intro.png);
  background-position: center;
  background-size: cover;
  position: relative;
  background-color: rgba(0,49,76,.75);
  background-blend-mode: multiply;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  cursor: pointer;
  z-index: 10000;
  position: relative;
}

.intro_content {
  width: 100%;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  flex-direction: column;
  max-width: 1400px;
}

.intro_content h2 {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 2.5px;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
}

.intro_content p {
  color: white;
  margin: 25px 0;
  font-size: 1.3em;
}

.intro_content img {
  width: 360px;
}

/* Einde Screen Intro */

/* Home Intro */

.home_intro {
  width: 100%;
  height: 100vh;
  background-position: center;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  z-index: 0;
}

.home_intro_content {
  width: 100%;
  margin: 0;
  padding: 80px;
  padding-right: 120px;
  text-align: right;

}

.home_intro_content h2 {
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 15px;
  color: #fff;
  margin-bottom: 20px;
  line-height: 120%;
}


.home_intro_content h1 {
  font-size: 90px;
  font-weight: 600;
  line-height: 110%;
  color: #fff;
}

.home_intro_content a {
  margin-top: 10px;
  display: inline-block;
  background-color: black;
  border: 1px solid black;
  color: white;
  letter-spacing: 2px;
  padding: 9px 30px;
  padding-top: 13px;
  text-transform: uppercase;
  font-weight: 500;
}

.home_intro_content a:hover {
  background-color: transparent;
  border: 1px solid white;
}

/* Einde Home Intro */



/* Cookie Melding */
.PL_Wrapper {
  position: fixed;
  left: 10px;
  bottom: 10px;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  z-index: 100;
  padding: 25px;
  transition: all .8s;
  -webkit-box-shadow: 0px 2px 22px 0px rgba(61,61,61,0.41);
  -moz-box-shadow: 0px 2px 22px 0px rgba(61,61,61,0.41);
  box-shadow: 0px 2px 22px 0px rgba(61,61,61,0.41);
}

.PL_Wrapper h2 {
  color: #353535;
  font-weight: 700;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.PL_Wrapper p {
  max-width: 500px;
  color: #979797;
  margin-bottom: 20px;
  text-align: justify;
  line-height: 130%;
  font-size: 1.1em !important;
}

.PL_Buttons {
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  width: 100%;
}

.PL_Buttons a {
  padding: 15px;
  background-color: black;
  border: 1px solid black;
  color: #fff;
  width: 48%;
  font-size: 1.2em;
  font-weight: 200;
  cursor: pointer;
  text-align: center;
  transition: all .3s;
}

.PL_Buttons a:hover {
  background-color: transparent;
  color: #2A3234; 
}
/* Einde Cookie Melding */

/* Portfolio */

/* In Beeld */

.portfolio_header {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  flex-direction: column;
  padding: 10px 0;
  padding-bottom: 50px;
}

.portfolio_header>div:first-of-type {
    height: 55px;
    width: 2px;
    background-color: black;
    margin-bottom: 30px;
}

.portfolio_header>h2 {
  color: #4C4C4C;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.portfolio_header>h1 {
  color: black;
  font-weight: 700;
  font-size: 50px;
  text-align: center;
  max-width: 1400px;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  line-height: 120%;
}

.portfolio_header {
  line-height: 150%;
  font-weight: 200;
  font-size: 1.4em;
  color: #4C4C4C;
  width: 100%;
  text-align: center;
  max-width: 1350px;
}

.in_beeld {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  margin-bottom: 30px;
}

.in_beeld article {
  width: 24%;
  margin: .5%;
  cursor: pointer;
  overflow: hidden;
}

.in_beeld article .overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(0,0,0,.6);
  display: flex;
  opacity: 0;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  color: white;
  font-size: 2em;
  transition: all .3s;
  z-index: 2;
}

.in_beeld article:hover .overlay {
  opacity: 1;
}

.in_beeld article:hover img {
  transform: scale(1.1);
}

.in_beeld article img {
  width: 100%;
  transition: all .5s;
}

/* Einde In Beeld */

/* Einde Portfolio */

/* Home Split */
.home_split {
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.split_left {
  width: 50%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}

.split_left>div:first-of-type {
  padding: 50px 70px;
  background-color: white;
  width: 100%;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  flex-direction: column;
}

.split_left>div:first-of-type h2 {
  font-size: 2.5em;
  color: black;
  margin-bottom: 20px;
}

.split_left>div:first-of-type div {
  line-height: 150%;
  color: #4C4C4C;
  font-weight: 200;
  text-align: center;
}

.split_left>div:first-of-type a {
  background-color: black;
  color: white;
  padding: 10px 15px;
  letter-spacing: 2px;
  display: inline-block;
  margin-top: 20px;
}

.split_left>div:last-of-type {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  flex: 1;
}

.split_right {
  width: 50%;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  flex-wrap: wrap;
}

.split_contact {
  padding: 120px 20px;
  width: 100%;
  text-align: center;
  max-width: 80%;
}

.split_contact h2 {
  font-size: 3em;
  color: black;  
  margin-bottom: 20px;
}

.split_contact p {
  margin-bottom: 15px;
}

.split_contact>div {
  line-height: 150%;
  color: #4C4C4C;
  font-weight: 200;
}

.split_contact form {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  -ms-align-items: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}

.split_contact form #NaamInput {
  width: 60%;
  margin-bottom: 30px;
}

.split_contact form #PostInput {
  width: 38%;
  margin-bottom: 30px;
}

.split_contact form input[type=text],
.split_contact form input[type=email] {
  width: 100%;
  font-family: effra, sans-serif;
  border: none;
  padding: 5px;
  background-color: #E6EAED;
}

.split_contact form input[type=submit] {
  padding: 7px 20px;
  color: white;
  font-family: effra, sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  margin-top: 20px;
  border: none;
  background-color: black;
} 


.split_contact form textarea {
  width: 100%;
  border: none;
  padding: 5px;
  font-family: effra, sans-serif;
  color: #000;
  background-color: #E6EAED;
  min-height: 120px;
}

.privholder {
  display: flex;
  justify-content: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.labelform {
  color: #4C4C4C;
  font-weight: 200;
  width: 100%;
  padding-bottom: 5px;
  display: block;
}

.split_images {
  width: 100%;
  position: relative;
}

.main_slider {
  width: 100%;
}

.main_slider img {
  width: 100%;
}

.split_controls {
  background-color: black;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  position: absolute;
  width: 60%;
  right: 0;
  bottom: 0;
}

.split_controls h2 {
  font-weight: 700;
  font-size: 1.3em;
  color: white;
  padding: 10px 50px;
  border-right: 2px solid white;
}

.split_controls button {
  background-color: transparent;
  border: none;
  color: white;
  font-size: 1.8em;
  margin: 0 20px;
}

.split_controls div {
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  padding: 10px 40px;
}

.amount_slider {
  color: white;
  font-size: 1.1em;
  font-weight: 400;
  letter-spacing: 5px;
}

/* Einde Home Split */

#content-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin: auto;
}

#content-container h1 {
  width: 100%;
  text-align: center;
  font-size: 3em;
  font-weight: 700;
  color: black;
  margin-bottom: 20px;
  margin-top: 150px;
}


#content-container h2 {
  color:black;
  font-size:2.4em;
  font-weight:bold;
  margin-bottom: 1em;
  margin-top: 1em;
  cursor: pointer;
  padding-left: 15px;
}


#content-container h3 {
  background: black;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3em;
  padding: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  -ms-align-items: center;
  align-items: center;
  margin-top: 20px;
}

#content-container h3 span {
  position: absolute;
  z-index: 1;
  background: transparent url("/images/cross_w.png") no-repeat;
  display: inline-block;
  width: 15px;
}

#content-container h4 {
  margin-left: 2em;
  font-size: 1.1em;
  font-weight: bold;
}

#content-container p {
  padding: 20px;
  line-height: 170%;
  color: #7e7e7e;
  font-size: 1.2em;
}

#content-container ul {
  margin-left: 3em;
}

#content-container table {
  width: 100%;
}

#content-container a {
  color: black;
  font-weight: 700;
}

#gdpr-wrapper {
  min-height:100%;
  position:relative;
}

#content-container thead {
  background-color: #4C4C4C;
  color: #fff;
}


#content-container thead th {
  border: 1px solid #353535;
  padding: 10px;
}

#content-container tbody td {
  border: 1px solid #353535;
  color: #7e7e7e;
  line-height: 150%;
  padding: 5px;
}

#content-container tbody td p {
  padding: 0px;
}

#content-container ul {
  padding-left: 20px;
  line-height: 170%;
  color: #7e7e7e;
  list-style-type: disc;
}


/* Home AK */

.home_ak {
  min-width: 100vw;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(100);
  background-color: rgba(242,138,63,.75);
  background-blend-mode: multiply;
  background-attachment: fixed;
}

.home_ak>div {
  width: 100%;
  padding: 20px;
  max-width: 1400px;
  display: flex;
  justify-content: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.home_ak>div h3 {
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 3px;
  color: white;
  margin-bottom: 20px;
}

.home_ak>div h2 {
  font-size: 59px;
  font-weight: 600;
  line-height: 110%;
  max-width: 630px;
  color: #fff;
  margin-bottom: 40px;
}

.home_ak>div a {
  display: inline-block;
  border: 2px solid white;
  padding: 8px 15px;
  color: white;
  letter-spacing: 2px;
}

.home_ak #myVideo {
  -webkit-transform: translateX(-50%) translateY(-43%);
  -moz-transform: translateX(-50%) translateY(-43%);
  -ms-transform: translateX(-50%) translateY(-43%);
  -o-transform: translateX(-50%) translateY(-43%);
  transform: translateX(-50%) translateY(-43%);
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
}

/* Einde Home AK */

/* Woontypes */

.woontypes {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 50px 0;
  display: flex;
  justify-content: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}

.woontypes article {
  width: 33.33%;
  padding: 30px;
  margin-bottom: 20px;
}

.woontypes article img {
  width: 100%;
}

.woontypes article h2 {
  font-size: 25px;
  color: #00314C;
  margin-bottom: 20px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
}

.woontypes article h2 div {
  width: 50px;
  height: 1px;
  background-color: #04243B;
}

.woontypes article h3 {
  font-size: 17px;
  color: #00314C;
  font-weight: 700;
}


.woontypes_tekst {
  line-height: 150%;
  font-size: 17px;
  color: #00314C;
  font-weight: 200;
}

.woontypes_gegevens {
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  flex-direction: column;
  margin: 20px 0;
}

.woontypes_gegevens>div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  padding: 10px 0;
  border-bottom: #04243B 1px dotted;
  font-weight: 200;
  color: #04243B;
}

.woontype_button_devider {
  width: 100%;
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.woontype_button_devider a {
  width: 48%;
  background-color: #04243B;
  font-weight: 200;
  letter-spacing: 3px;
  color: white;
  text-align: center;
  padding: 15px 10px;
}

/* Einde Woontypes */

/* Woontype Detail */

.woontype_det {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  -ms-align-items: flex-start;
  align-items: flex-start;
  padding: 20px 0;
}

.woontype_det>div {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding: 30px 10px;
}

.woontype_det>div h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

.woontype_det_tekst {
  font-weight: 200;
  font-size: 17px;
  line-height: 150%;
  color: #04243B;
}

.woontype_det_geg {
  color: #04243B;
  font-weight: 200;
  font-size: 17px;
  width: 100%;
  padding: 30px 0;
}

.woontype_det_geg>div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  border-bottom: 1px dotted #04243B;
  padding: 14px 0;
}

.woontype_det_geg>div a {
  color: #04243B;
  text-decoration: underline;
}

.woontype_det_geg .prijs {
  font-size: 22px;
  font-weight: 700;
  margin-top: 30px;
  border-bottom: none !important;
}

.woontype_det_geg>div p:first-of-type {
  font-weight: 400;
}

.woontype_det_geg .prijs p:first-of-type {
  font-weight: 700;
}

.woontype_det>aside {
  max-width: 600px;
  min-width: 600px;
  margin-left: 30px;
  padding: 30px 0;
  padding-left: 30px;
  border-left: 2px solid #00314C;
}

.woontype_det>aside h2 {
  font-size: 2em;
  color: #04243B;
  margin-bottom: 20px;
}

.woontype_det>aside>div {
  line-height: 150%;
  color: #04243B;
  font-weight: 200;
}

.woontype_det>aside form {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  -ms-align-items: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}

.woontype_det>aside form #NaamInput {
  width: 60%;
  margin-bottom: 20px;
}

.woontype_det>aside form #PostInput {
  width: 38%;
  margin-bottom: 30px;
}

.woontype_det>aside form textarea {
  width: 100%;
  border: none;
  padding: 5px;
  background-color: #E6EAED;
  min-height: 120px;
  font-family: effra, sans-serif;
  color: #000;
}

.woontype_det>aside form input[type=text], .woontype_det>aside form input[type=email] {
  width: 100%;
  font-family: effra, sans-serif;
  border: none;
  padding: 5px;
  background-color: #E6EAED;
}

.woontype_det>aside form input[type=submit] {
  padding: 7px 20px;
  color: white;
  font-family: effra, sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  margin-top: 20px;
  background-color: #00314C;
}

.specialcontrols {
  max-width: 500px;
}

/* Einde Woontype Detail */

/* Bevestiging */

.bevestiging_bg {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bevestiging {
  width: 100%;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.10);
  -moz-box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.10);
  box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.10);
  max-width: 700px;
  padding: 50px;
  background-color: white;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  flex-direction: column;
}

.bevestiging i {
  font-size: 2em;
  color: black;
}

.bevestiging h2 {
  text-transform: uppercase;
  letter-spacing: 3px;
  color: black;
  font-size: 15px;
  margin: 10px 0;
}

.bevestiging h1 {
  font-weight: 700;
  font-size: 2em;
  text-align: center;
  color: black;
  margin-bottom: 10px;
}

.bevestiging p {
  line-height: 150%;
  color: black;
  font-size: 17px;
  font-weight: 200;
}

.bevestiging a {
  cursor: pointer;
  display: inline-block;
  padding: 13px 30px;
  background-color: black;
  border: 1px solid black;
  font-weight: 200;
  color: white;
  margin-top: 20px;
}
.bevestiging a:hover {
  background-color: transparent;
  color: black;
}

/* Einde Bevestiging*/


/* Blokken */

.blokken {
  display: flex;
  justify-content: center;
  -ms-align-items: flex-start;
  align-items: flex-start;
  flex-direction: column;
  max-width: 1600px;
  padding: 10px 10px;
  margin: 0 auto;
  width: 100%;
}

.blokken article {
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 0;
  width: 100%;
}

.blokken article>img {
  width: 48%;
  order: 1;
}

.blokken_cont {
  width: 50%;
  padding: 30px;
  order: 2;
}

.blokken_titel {
  position: relative;
  display: flex;
  justify-content: flex-start;
  -ms-align-items: center;
  align-items: center;
  margin-bottom: 10px;
}

.blokken_titel h2 {
  color: #000;
  line-height: 150%;
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 1.6em;
}

.blokken_tekst {
  line-height: 180%;
  font-weight: 200;
  font-size: 20px;
  color: #4C4C4C;
  width: 100%;
  margin-bottom: 20px;
}

.blokken_tekst p>a {
  color: #DBB957;
}

.blokken_cont>a {
  display: inline-block;
  color: #4C4C4C;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.blokken_tekst ul {
  padding-left: 20px;
  list-style-type: disc;
}

.blokken_cont>a i {
  margin-left: 5px;
  transition: all .5s; 
}

.blokken_cont>a:hover i {
  margin-left: 10px;
}

.blokken article:nth-child(even) img {
  order: 3;
}

.blokken_content {
  width: 100%;
  max-width: 1100px;
  margin: 6em auto;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  flex-direction: column;
}

.blokken_content>div:first-of-type {
  height: 115px;
  width: 2px;
  background-color: black;
  margin-bottom: 30px;
}

.blokken_content>h3 {
  color: #4C4C4C;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.blokken_content>h2 {
  color: black;
  font-weight: 700;
  font-size: 70px;
  text-align: center;
  max-width: 50%;
}

/* Einde Blokken */


/* Content Split */

.content_split {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding-top: 70px;
}

.content_split_left {
  width: 50%;
  padding: 50px 40px;
}

.content_split_left article {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 500px;
}

.content_split_right {
  width: 50%;
  border-left: 2px solid black;
  padding: 50px 40px;
}

.content_split_right h2 {
  font-size: 35px;
  color: black;
  margin-bottom: 30px;
}

.content_split_right h2:not(:first-of-type) {
  margin-top: 70px;
}

.content_split_right p {
  line-height: 150%;
  font-weight: 200;
  color: #4C4C4C;
}

.content_split table {
  width: 477px !important;
  margin-bottom: 30px;
}

.content_split table caption {
  background-color: black;
  color: #fff;
  padding: 7px;
  padding-top: 12px;
  text-align: center;
  text-transform: uppercase;
  font-size: 1em;
  display: none;
}

.content_split td {
  width: 31.33%;
  text-align: center;
  padding: 15px;
  vertical-align: middle;
}

.content_split tr:first-of-type {
  font-weight: 500;
  border-bottom: 3px solid #EFEFEF;
  background-color: black;
  color: #fff;
}

/* Einde Content Split */


/* Grijze AK */

.grijze_ak {
  background-color: #EFEFEF;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  margin-top: 150px;
  padding-bottom: 10px;
}

.grijze_ak_content {
  width: 100%;
  max-width: 1100px;
  padding: 20px;
  transform: translateY(-70px);
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
}

.grijze_ak_content>div {
  width: 45%;
}

.grijze_ak_content>div h2 {
  font-size: 35px;
  color: black;
  
  margin-bottom: 30px;
}

.grijze_ak_content>div div {
  line-height: 180%;
  font-weight: 200;
  color: #4C4C4C;
}

.grijze_ak_content>div a {
  margin-top: 20px;
  display: inline-block;
  background-color: black;;
  color: white;
  letter-spacing: 2px;
  padding: 9px 30px;
  padding-top: 13px;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid black;

}

.grijze_ak_content>div a:hover {
  background-color: transparent;
  color: black;
}

.grijze_ak_content img {
  width: 45%;
}

/* Einde Grijze AK */


/* op_de_hoogte */

.op_de_hoogte {
  margin: 150px auto;
  max-width: 800px;
  width: 100%;

  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  flex-direction: column;
}

.op_de_hoogte h2 {
  font-size: 50px;
  font-weight: 700;
  color: black;
  margin-bottom: 20px;
}

.op_de_hoogte h3 {
  color: #4C4C4C;
  letter-spacing: 3px;
  line-height: 150%;
  text-align: center;
  text-transform: uppercase;
}

.op_de_hoogte form {
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  padding: 20px;
  margin-top: 20px;
  width: 100%;
}

.op_de_hoogte form input[type=email] {
  padding: 12px;
  font-family: effra, sans-serif;
  color: #00314C;
  border: none;
  width: 100%;
  max-width: 450px;
  margin-right: 15px;
  background-color: #F0F0F0;
}

.op_de_hoogte form input[type=submit] {
  padding: 12px 40px;
  font-family: effra, sans-serif;
  background-color: black;
  color: white;
  border: none;
}

/* Einde op_de_hoogte */


/* Footer */

footer {
  width: 100%;
  background-color: black;
  padding: 50px 10px;
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  flex-direction: column;
}

.contactTitel {
  font-size: 50px;
  font-weight: 700;
  color: black;
  text-align: center;
  width: 100%;
}

.split_footer {
  display: flex;
  justify-content: space-between;
  -ms-align-items: flex-start;
  align-items: flex-start;
  padding: 100px 0;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 105px;
}

.split_footer>div {
  width: 400px;
  margin-right: 30px;
  text-align: left !important;
}

.split_footer>div h2 {
  color: black;
  margin-bottom: 30px;
  font-size: 40px;
  font-weight: 700;
  text-align: left !important;
}

.split_footer>div div {
  color: #272727;
  line-height: 170%;
  font-weight: 200;
  text-align: left;
}

.split_footer>div div p {
  text-align: left !important;
}

.split_footer form {
  width: 100%;
  display: flex;
  justify-content: space-between;
  -ms-align-items: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}

.split_footer form #NaamInput {
  width: 60%;
  margin-bottom: 30px;
}

.split_footer form #PostInput {
  width: 38%;
  margin-bottom: 30px;
}

.split_footer form input[type=text],
.split_footer form input[type=email] {
  width: 100%;
  font-family: effra, sans-serif;
  border: none;
  padding: 5px;
  color: #272727;
  background-color: #f2f2f2;
}

.split_footer form input[type=submit] {
  padding: 7px 20px;
  padding-top: 10px;
  color: #fff;
  font-family: effra, sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  margin-top: 20px;
  border: none;
  background-color: black;
  border-radius: 200px;

} 

.split_footer form input[type=submit]:disabled {
  opacity: 0.3;
}

.split_footer form textarea {
  width: 100%;
  border: none;
  font-family: effra, sans-serif;
  padding: 5px;
  color: #272727;
  background-color: #f2f2f2;
  min-height: 120px;
}

.split_footer  .privholder {
  width: 100%;
  display: flex;
  justify-content: space-between;
  -ms-align-items: flex-end;
  align-items: flex-end;
  flex-direction: row;
}

.split_footer>div h2, .split_footer>div div {
  text-align: center;
}
.split_footer .labelform {
  color: #272727;
}


.inner_footer {
  width: 100%;
  margin: 0 auto;
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
}

.inner_footer p {
  color: white;
  line-height: 170%;
}

.inner_footer a {
  color: white;
  line-height: 170%;  
}

.inner_footer > div {
  display: flex;
  justify-content: flex-start;
  -ms-align-items: center;
  align-items: center;
  flex-direction: column;
}

.inner_footer > div img {
  width: 150px;
}

.disclaimer {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  flex-direction: column;
  padding: 30px 0;
  background-color: black;
  position: relative;
  margin-bottom: 0;
}



.disclaimer div {
  display: flex;
  flex-direction: row;
}

.disclaimer div:first-of-type {
  font-size: 1.2em;
  font-weight: lighter;
}

.disclaimer p {
  color: #fff;
  padding-right: 0.5em;
  padding-left: 0.5em;
}

.disclaimer a {
  color: #fff;
  padding-right: 0.5em;
  padding-left: 0.5em;
}

.disclaimer div:last-of-type {
  font-size: 0.9em !important;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 20px;
  font-weight: lighter;
}

.disclaimer div:last-of-type p {
  font-size: 0.9em !important;;
}

.disclaimer span {
  color: #fff !important;
}

.disclaimer div:last-of-type p,.disclaimer div:last-of-type a, .disclaimer div:last-of-type span {
  color: #fff;
}

.disclaimer a:last-of-type i.show{
  display: inline;
}

.disclaimer a:last-of-type i.hidden{
  display: none;
  color: #8bcf97;
}

.disclaimer a:last-of-type:hover i.show {
  display: none;
}
.disclaimer a:last-of-type:hover i.hidden {
  display: inline;
}


/* Einde Footer */


/* Ontwikkelaars */

.ontwikkelaars {
  width: 100%;
  height: 100vh;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/images/ontwikkelaars.jpg);
}

.ontwikkelaars_round {
  border-radius: 200px;
  background-color: #19455E;
  width: 350px;
  height: 350px;
  position: absolute;
  left: 50%;
  bottom: 50px;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  flex-direction: column;
  transform: translateX(-50%);
}

.ontwikkelaars_round h2 {
  text-align: center;
  font-size: 50px;
  color: white;
  margin-bottom: 20px;
  max-width: 200px;
}

.ontwikkelaars_round div {
  color: white;
  max-width: 300px;
  text-align: center;
  font-weight: 200;
  line-height: 150%;
  margin-bottom: 20px;
}

.ontwikkelaars_round a {
  font-size: 3em;
  cursor: pointer;
  color: white;
}

/* Einde Ontwikkelaars */

/* Personen */


.personen {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 130px 20px;
  display: flex;
  justify-content: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.personen article {
  width: 25%;
  padding: 50px;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  flex-direction: column;
}

.personen_foto {
  width: 180px;
  height: 180px;
  margin-bottom: 30px;
  border-radius: 200px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.personen article h2 {
  font-size: 35px;
  line-height: 100%;
  color: #19455E;
  text-align: center;
  margin-bottom: 20px;
  max-width: 180px;
}

.personen article div {
  line-height: 150%;
  text-align: center;
  font-weight: 200;
  margin-bottom: 40px;
  color: #19455E;
}

.personen article a {
  text-align: center;
  font-weight: 700;
  color: #19455E;
  font-size: 20px;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

.personen article a i {
  margin-right: 15px;
}


/* Einde Personen */


/* Liggin */

#dasmap {
  width: 100%;
  height: 90vh;
}
/* Einde Ligging*/



/* Responsive */

@media screen and (max-width: 1800px){
  .split_controls {
    width: 100%;
  }
}

@media screen and (max-width: 1580px){
  .home_intro_content {
    padding-right: 50px;
  }
}

@media screen and (max-width: 1400px){
  .home_intro, .home_ak, .ontwikkelaars {
    background-attachment: initial;
  }

  .home_intro_content {
    padding-right: 20px;
  }
}

@media screen and (max-width: 1300px){
  .personen article {
    padding: 20px;
  }
 
  

  .home_intro_content {
    padding-right: 50px;
    padding-top: 500px;
  }
 
}

@media screen and (max-width: 1200px){

  .blokken_content>h2 {
    font-size: 60px;
    max-width: 70%;
}

  .home_intro_content {
    padding-right: 50px;
  }

  .home_intro_content h1 {
    font-size: 80px;
  }

  .menu>nav ul a {
    font-size: 50px;
  }

  .woontype_det {
    flex-wrap: wrap;
  }

  .woontype_det>div {
    width: 100%;
  }

  .woontype_det>aside {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    margin-left: 0;
    padding: 50px 10px;
    border-left: 0;
    border-top: 1px solid #04243B;
    margin-top: 20px;
    padding-top: 30px;
  }

  .woontypes article {
    width: 50%;
  }
}

@media screen and (max-width: 1000px){

 
  .personen {
    flex-wrap: wrap;
  }
  .personen article {
    width: 50%;
  }

  .specialcontrols {
    max-width: 100%;
    position: relative;
  }

  .blokken article {
    padding: 20px 10px;
  }

  .blokken article>img {
    width: 100%;
    margin-bottom: 10px;
    order: 1 !important;
  }

  .blokken_cont {
    width: 100%;
    padding: 0;
    order: 2 !important;
  }

  .split_footer {
    display: block;
    width: 100%;
    padding-left: 1em;
    padding-right: 1em;
  }

  .split_footer>div {
    width: 100%;
    margin-bottom: 2em;
  }

  .content_split {
    flex-wrap: wrap;
    padding-top: 30px;
  }

  .content_split_left {
    width: 100%;
  }

  .content_split_right {
    width: 100%;
    border-left: none;
    margin: auto;
  }
  .content_split_left, .content_split_right {
    padding: 30px 20px;
  }

  .content_split table {
    margin: auto;
  }

  .split_footer>div h2, .split_footer>div div p {
    text-align: center !important;
}

.split_footer {
  padding-top: 0;
}
}

@media screen and (max-width: 950px) {

  #content-container h1 {
    font-size: 2.5em;
    margin-bottom: 60px !important;
  }

  #content-container h2 {
    font-size:1.8em;
  }

  .in_beeld article {
    width: 32.33%;
  }

  .home_intro_content {
    padding-right: 40px;
  }

  .home_intro_content h1 {
    font-size: 70px;
  }

  .home_intro_content a {
    font-size: 0.9em;
  }

}

@media screen and (max-width: 900px){
  .home_ak>div h2 {
    font-size: 40px;
    text-align: center;
  }

  .home_ak>div {
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
  }

  


  .ontwikkelaars_round {
    bottom: 2%;
    width: 96%;
    left: 2%;
    right: 2%;
    transform: translate(0,50%);
    border-radius: 0;
    height: initial;
    padding: 15px;
  }

  .ontwikkelaars_round h2 {
    max-width: initial;
    font-size: 30px;
  }

  .ontwikkelaars_round a {
    font-size: 2em;
  }

  .ontwikkelaars {
    height: initial;
    padding-bottom: 76%;
    position: relative;
  }

  .personen {
    padding: 50px 0;
    padding-top: 100px;
  }

  .woontypes article {
    padding: 15px;
  }
}

@media screen and (max-width: 850px){

  .home_split {
    flex-wrap: wrap;
  }

  .home_intro_content {
    padding-right: 20px;
  }

  .home_intro_content h1 {
    font-size: 60px;
  }

  .home_intro_content a {
    font-size: 0.9em;
  }

  .split_left {
    width: 100%;
  }

  .split_right {
    width: 100%;
  }

  .grijze_ak_content img {
    width: 100%;
    order: 1;
    margin-bottom: 40px;
  }

  .grijze_ak_content>div {
    width: 100%;
    order: 2;
    padding-left: 20px;
    padding-right: 20px;
  }

  .grijze_ak_content {
   display: block;
  }

  .grijze_ak_content>div h2 {
    padding-top: 20px;
  }

  .grijze_ak_content>div div {
    padding-bottom: 20px;
  }
  .grijze_ak {
    padding-top: 80px;
    margin-top: 20px;
  }

  .op_de_hoogte {
    margin: 40px auto;
  }

  .split_footer {
    flex-wrap: wrap;
  }

  .split_footer>div {
    width: 100%;
    margin-right: 0;
    margin-bottom: 50px;
  }

  .split_footer>div h2 {
    font-size: 25px;
    margin-bottom: 15px;
  }

  .inner_footer>div {
    padding-left: 20px;
    padding-right: 20px;
  }

  .home_ak {
    min-width: 100vw;
  min-height: 40vh;
  display: inline-block;
  
  background-position: unset;
  background-size: unset;
  background-repeat: unset;
  filter: grayscale(100);
  background-color: rgba(242,138,63,.75);
  background-blend-mode: unset;
  background-attachment: unset;
  }
  .home_ak #myVideo {
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
  }

  .grijze_ak_content .slick-dots {
    width: 95% !important;
    margin: auto !important;
  }
 
  .blokken_content {
    margin-top: 0;
  }

  .content_split_right {
    padding-top: 0;
  }


}

@media screen and (max-width: 700px){
  .home_intro_content h1 {
    font-size: 50px;
  }

  .in_beeld article {
    width: 49%;
  }
  .woontypes article {
    width: 100%;
    padding: 10px;
    margin-bottom: 50px;
  }

  .detail {
    padding-top: 80px;
  }

  .menu_button {
    top: 20px;
    right: 20px;
  }

  .menu>nav ul a {
    font-size: 40px;
  }

  footer>h2 {
    font-size: 30px;
  }

  footer {
    padding: 30px 10px; 
  }

  .split_contact {
    padding: 50px 20px;
  }

  .home_ak>div h2 {
    font-size: 30px;
  }

  .home_ak>div h3 {
    text-align: center;
  }

  .blokken_content>h2 {
    font-size: 40px;
  }
  
  .op_de_hoogte h2 {
    font-size: 30px;
  }

  .woontype_det>div h1 {
    font-size: 30px;
  }

  .split_footer {
    padding: 30px 0;
  
  }

  .contactTitel {
    font-size: 40px;
  }

  .split_footer>div h2 {
    text-align: center;
  }

  .split_footer>div div {
    text-align: center;
  }

  .woontype_det_geg .prijs {
    font-size: 18px;
  }
  .split_footer {
    padding-left: 2em;
    padding-right: 2em;
  }

  .split_footer>div {
    width: 100%;
    margin-bottom: 2em;
  }
}

@media screen and (max-width: 650px){

  #content-container h1 {
    font-size: 2.1em;

  }

  #content-container h2 {
    font-size:1.5em;
  }

  .portfolio_header>h1 {
    
    font-size: 35px;
  
  }

  .portfolio_header>h2 {
    
    font-size: 16px;
    margin-bottom: 0px;
  }


  .portfolio_header {
    padding-bottom: 20px;
  }
  .inner_footer {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 0.9em;
  }
  .inner_footer p, .disclaimer div:first-of-type {
    font-size: 1.1em;
  }
  .personen article h2 {
    font-size: 25px;
  }

  .split_left>div:first-of-type h2, .split_contact h2 {
    font-size: 2em;
  }

  p {
    font-size: 1.2em;
  }

  .blokken_content>div:first-of-type {
    height: 55px;
    width: 1px;
  }
  .blokken_content>h2 {
    font-size: 40px;
    max-width: 90%;
}
}

@media screen and (max-width: 600px) {
  .PL_Wrapper {
    right: 10px;
  }

  .blokken_content {
    max-width: 100% !important;
    padding-left: 20px;
    padding-right: 20px;
  }
  .content_split {
    width: 100%;
    display: block;
    flex-wrap: unset;
  }


  .content_split table {
    width: 100% !important;
  }

  .content_split table caption {
    width: 100% !important;
  }

}

@media screen and (max-width: 550px){

  .content_split td {
    font-size: .9em;
  }

  .home_intro_content {
    padding-right: 20px;
  }

  .home_intro_content h1 {
    font-size: 40px;
  }

  .home_intro_content a {
    font-size: 0.8em;
  }
  .split_contact form #NaamInput, .split_footer form #PostInput, .woontype_det>aside form #PostInput {
    width: 100%;
  }

  .split_contact form #PostInput, .split_footer form #NaamInput, .woontype_det>aside form #NaamInput {
    width: 100%;
  }

  .split_contact h2 {
    font-size: 2em;
  }

  .op_de_hoogte form {
    flex-wrap: wrap;
  }

  .op_de_hoogte form input[type=email] {
    width: 100%;
    max-width: initial;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .op_de_hoogte form input[type=submit] {
    width: 100%;
  }

}

  @media screen and (max-width: 550px) {
    .split_controls button {
      margin: 0 10px;
    }

    .split_controls div {
      padding: 10px;
    }

    .split_controls h2 {
      padding: 10px 20px;
    }
  }

  @media screen and (max-width: 500px) {

    .content_split tbody {
      display: flex;
      flex-direction: row;

    }

    .content_split tr {
      display: flex;
      flex-direction: column;
      width: 50%;
      align-items: center;
      -ms-align-items: center;
    }

    .content_split td {
      width: 100%;
    }

    .content_split tr:first-of-type{
      background-color: transparent;
      color: black;
      border-bottom: none;
    }

    .content_split td:nth-of-type(odd) {
      background-color: black;
      color: #fff;
    }



    
  #content-container h1 {
    font-size: 1.8em;

  }

    .inner_footer {
      display: block;
    }
    .inner_footer>div {
      width: 100%;
    }
    .disclaimer a {
      font-size: 0.8em;
    }

    .split_left>div:first-of-type h2, .split_contact h2 {
      text-align: center  !important;
  }
  .split_left>div:first-of-type {
    padding: 50px 20px;
    
}
.split_contact {

  max-width: 100%;
}
  }

  
@media screen and (max-width: 480px) {

  .disclaimer div {
    flex-direction: column;
    line-height: 140%;
  }

  .disclaimer span {
    display: none;
  }

  .disclaimer div:last-of-type {
    justify-content: center;
    align-items: center;
    -ms-align-items: center;
 margin-top: 0;
 line-height: 180%;
}

}

  @media screen and (max-width: 450px) {

   
    .home_intro_content {
      padding-right: 15px;
      padding-top: 500px;
    }
  
    .home_intro_content h1 {
      font-size: 30px;
    }
  
    .home_intro_content a {
      font-size: 0.8em;
      padding-left: 15px;
      padding-right: 15px;
    }

    .contactTitel {
      font-size: 30px;
    }



  }


}




