html {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  overflow-x: auto;
  -webkit-text-size-adjust: 100%;
}
body {
  width: 100%;
  height: 100%;
  background-color: #fff;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 14px;
  text-align: left;
  color: #000;
  display: flex;
  flex-direction: column;
}


/* General ------------------------------------------------------------------------------------- */

* {
  padding: 0;
  border: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: #000;
  cursor: pointer;
  transition: background-color 0.2s ease 0s, color 0.2s ease 0s;
}

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 14px;
}

ul {
  list-style-type: none;
}

strong {
  font-weight: 300;
}

address {
  font-style: normal;
}

table {
  font-size: 14px;
  border-collapse: collapse;
}
table th,
table td {
  font-weight: normal;
  text-align: left;
  vertical-align: top;
}

label {
  cursor: pointer;
}
input.input,
select,
textarea {
  background-color: transparent;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-size: 14px;
  outline: none;
  border-radius: 0;
}
input.input::placeholder,
textarea::placeholder {
  color: #666;
  opacity: 1;
}
select {
  cursor: pointer;
}
textarea {
  display: block;
  resize: none;
}


/* Page container ------------------------------------------------------------------------------ */

#page_container {
  flex: 1 0 auto;
}


/* Header -------------------------------------------------------------------------------------- */

#header_container {
  width: 100%;
  height: auto;
  position: relative;
  background-color: #000;
  color: #fff;
}

/* Slideshow placeholder */
#slideshow_placeholder {
  position: static;
}
#slideshow_placeholder img {
  width: 100%;
  height: auto;
  display: block;
}

/* Slideshow images */
#slideshow_images {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#slideshow_images .slide {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0.0;
  transition: opacity 0.5s ease 0s;
}
#slideshow_images .slide.current {
  opacity: 1.0;
}
#slideshow_images .slide img {
  width: 100%;
  height: auto;
  display: block;
}

@media only screen and (min-width: 1600px) {
  #slideshow_placeholder img {
    max-height: 900px;
  }
  #slideshow_images .slide {
    max-height: 900px;
  }
  #slideshow_images .slide img {
    opacity: 0;
  }
}

/* Slideshow text */
#slideshow_text_container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  text-align: center;
}
#slideshow_text {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 50px;
  line-height: 70px;
  text-align: center;
  transform: translate(-50%, -50%);
}
#slideshow_text strong {
  font-weight: 600;
}

@media only screen and (max-width: 1400px) {
  
  #header_container.small #slideshow_text {
    font-size: 40px;
    line-height: 60px;
  }
  
}

@media only screen and (max-width: 1250px) {
  
  #header_container.small #slideshow_text {
    font-size: 30px;
    line-height: 50px;
  }
  
}

@media only screen and (max-width: 1000px) {
  
  #header_container.small #slideshow_text {
    display: none;
  }
  
}

@media only screen and (max-width: 900px) {
  
  #slideshow_text {
    font-size: 40px;
    line-height: 60px;
  }
  
}

@media only screen and (max-width: 700px) {
  
  #slideshow_text {
    font-size: 30px;
    line-height: 50px;
  }
  
}

@media only screen and (max-width: 600px) {
  
  #slideshow_text {
    display: none;
  }
  
}

/* Slideshow pagination */
#slideshow_pagination {
  width: 100%;
  position: absolute;
  bottom: 35px;
  left: 0;
  font-size: 0;
  line-height: 0;
  text-align: center;
}
#slideshow_pagination a {
  width: 16px;
  height: 16px;
  display: inline-block;
  background-color: #000;
  font-size: 16px;
  line-height: 16px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 16px;
  margin: 0 9px 0 9px;
}
#slideshow_pagination a.current {
  background-color: #fff;
}
#slideshow_pagination a span {
  display: none;
}
.no-touch #slideshow_pagination a:hover,
          #slideshow_pagination a:active,
.no-touch #slideshow_pagination a:focus {
  background-color: #fff;
}

/* Logo menu phone container */
#logo_menu_phone_container {
  width: 100%;
  height: 75px;
  position: absolute;
  top: 20px;
  left: 0;
}
#logo_menu_phone {
  width: 100%;
  max-width: 1270px;
  height: 75px;
  position: relative;
  background-color: #333;
  background-image: url('../images/beton_donker.png');
  background-repeat: repeat;
  background-position: center center;
  background-size: 200px 200px;
  margin: 0 auto 0 auto;
}

/* Logo */
#logo {
  width: 465px;
  height: 75px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999999;
  background-color: #FDD900;
  color: #000;
}
#logo a {
  width: 465px;
  height: 85px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url('../images/logo_kranen.svg');
  background-repeat: no-repeat;
  background-position: center center;
  color: #000;
}
#logo a span {
  display: none;
}

/* Logo small */
#logo_small {
  width: 275px;
  height: 75px;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999999;
  background-color: #FDD900;
  color: #000;
}
#logo_small a {
  width: 275px;
  height: 85px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url('../images/logo_kranen_mobiel.svg');
  background-repeat: no-repeat;
  background-position: center center;
  color: #000;
}
#logo_small a span {
  display: none;
}

/* Menu */
#menu,
#menu_mobile {
  width: 100%;
  height: 75px;
  position: absolute;
  top: 0;
  left: 0;
  text-align: right;
  padding: 0 200px 0 465px;
  box-sizing: border-box;
}
#menu ul {
  font-size: 0;
  line-height: 0;
}
#menu ul li {
  display: inline-block;
  position: relative;
  padding: 0 25px 0 0;
}
#menu ul li.submenu a:after,
#menu ul li.submenu span:after {
  font-family: 'FontAwesome';
  font-weight: normal;
  content: '\f107';
  margin: 0 0 0 5px;
}
#menu ul a,
#menu ul span {
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  line-height: 75px;
  color: #fff;
}
.no-touch #menu ul a:hover,
          #menu ul a:active,
.no-touch #menu ul a:focus,
          #menu ul li.active a,
          #menu ul li.active span,
          #menu ul li.open   a,
          #menu ul li.open   span {
  color: #FDD900;
}
#menu ul span {
  color: #FDD900;
}

/* Menu mobile */
#menu_mobile {
  display: none;
}
#menu_mobile a {
  display: inline-block;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 75px;
  color: #fff;
  padding: 0 25px 0 25px;
}
#menu_mobile a:before {
  font-family: 'FontAwesome';
  font-weight: normal;
  content: '\f0c9';
  margin: 0 10px 0 0;
}
.no-touch #menu_mobile a:hover,
          #menu_mobile a:active,
.no-touch #menu_mobile a:focus {
  color: #FDD900;
}

@media only screen and (max-width: 1200px) {
  
  #menu {
    display: none;
  }
  
  #menu_mobile {
    display: block;
  }
  
}

@media only screen and (max-width: 800px) {
  
  #menu_mobile {
    padding-right: 0;
  }
  
  #phone {
    display: none;
  }
  
}

@media only screen and (max-width: 600px) {
  
  #logo {
    display: none;
  }
  #logo_small {
    display: block;
  }
  
  #menu_mobile {
    padding-left: 0;
  }
  
}

/* Submenu */
#menu ul .submenu_container {
  display: none;
}
#menu ul ul {
  position: absolute;
  top: 75px;
  left: -25px;
  z-index: 9999;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  text-align: left;
  padding: 10px 0 10px 0;
}
#menu ul ul li {
  display: block;
  padding: 0;
}
#menu ul ul a,
#menu ul ul span {
  display: block;
  font-weight: 300;
  line-height: 40px;
  color: #fff;
  padding: 0 50px 0 25px;
}
#menu ul li.open ul a {
  color: #fff;
}
#menu ul li.open ul span {
  color: #FDD900;
}
#menu ul li.submenu ul a:after,
#menu ul li.submenu ul span:after {
  display: none;
}

/* Phone */
#phone {
  width: 200px;
  height: 75px;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #666;
  background-image: url('../images/beton_licht.png');
  background-repeat: repeat;
  background-position: center center;
  background-size: 200px 200px;
  font-weight: 600;
  line-height: 75px;
  text-align: center;
}
#phone a {
  height: 75px;
  display: block;
  color: #fff;
}
#phone a:before {
  font-family: 'FontAwesome';
  font-weight: normal;
  font-size: 16px;
  color: #FDD900;
  content: '\f095';
  margin: 0 6px 0 0;
}
.no-touch #phone a:hover,
          #phone a:active,
.no-touch #phone a:focus {
  color: #FDD900;
}


/* Breadcrumbs --------------------------------------------------------------------------------- */

#breadcrumbs_container {
  width: 100%;
}
#breadcrumbs {
  width: 100%;
  max-width: 1300px;
  padding: 20px 15px 20px 15px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}

#breadcrumbs ul {
  line-height: 26px;
}
#breadcrumbs li {
  float: left;
}
#breadcrumbs a {
  display: inline-block;
  margin: 0 10px 0 0;
}
.no-touch #breadcrumbs a:hover,
          #breadcrumbs a:active,
.no-touch #breadcrumbs a:focus {
  text-decoration: underline;
}
#breadcrumbs li:after {
  display: inline-block;
  font-family: 'FontAwesome';
  font-weight: normal;
  content: '\f105';
  margin: 0 10px 0 0;
}
#breadcrumbs li:last-child:after {
  display: none;
  margin: 0;
}


/* Button -------------------------------------------------------------------------------------- */

.button {
  display: inline-block;
  background-color: #FDD900;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #000;
  cursor: pointer;
  padding: 15px 25px 15px 25px;
  transition: background-color 0.2s ease 0s, color 0.2s ease 0s;
  outline: none;
}
.button:after {
  font-family: 'FontAwesome';
  font-weight: normal;
  content: '\f105';
  margin: 0 0 0 6px;
}
.no-touch .button:hover,
          .button:active,
.no-touch .button:focus {
  background-color: #000 !important;
  color: #fff !important;
}


/* CTA ----------------------------------------------------------------------------------------- */

.cta_container {
  width: 100%;
}
.cta_container.dark {
  background-color: #666;
  background-image: url('../images/beton_licht.png');
  background-repeat: repeat;
  background-position: center center;
  background-size: 200px 200px;
  color: #fff;
}
.cta {
  width: 100%;
  max-width: 1300px;
  text-align: center;
  padding: 60px 15px 60px 15px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}

.cta h2 {
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  margin: 0 0 36px 0;
}
.cta p {
  line-height: 26px;
  padding: 0 20% 0 20%;
  margin: 0 0 36px 0;
}
.cta p a {
  text-decoration: underline;
}
.no-touch .cta p a:hover,
          .cta p a:active,
.no-touch .cta p a:focus {
  text-decoration: none;
}

.cta .cta_form {
  width: 100%;
  max-width: 750px;
  float: none;
  box-sizing: border-box;
  margin: 0 auto 0 auto;
}

@media only screen and (max-width: 800px) {
  
  .cta p {
    padding-left: 0;
    padding-right: 0;
  }
  
}


/* Houses -------------------------------------------------------------------------------------- */

#houses_container {
  width: 100%;
  background-color: #666;
  background-image: url('../images/beton_licht.png');
  background-repeat: repeat;
  background-position: center center;
  background-size: 200px 200px;
  color: #fff;
}
#houses_container.list {
  background-color: #fff;
  background-image: none;
  /* border-bottom: 1px solid #ccc; */
}

#houses {
  width: 100%;
  max-width: 1300px;
  padding: 60px 15px 70px 15px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}

#houses h2 {
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  margin: 0 0 50px 0;
}

.houses {
  display: flex;
}
.houses.last {
  display: block;
}

.houses.list {
  margin: 0 0 40px 0;
}
.houses.list.last {
  margin-bottom: 0;
}

.house {
  width: 30%;
  float: left;
  flex: 1;
  position: relative;
  background-color: #333;
  background-image: url('../images/beton_donker.png');
  background-repeat: repeat;
  background-position: center center;
  background-size: 200px 200px;
  color: #fff;
  padding: 0 0 50px 0;
  margin: 0 5% 0 0;
  box-sizing: border-box;
}
.houses.last .house {
  flex: auto;
}
.house.last {
  margin-right: 0;
}
#houses_container.list .house {
  background-color: #666;
  background-image: url('../images/beton_licht.png');
}

.house_image {
  width: 100%;
}
.house_image a {
  display: block;
}
.house_image img {
  width: 100%;
  height: auto;
  display: block;
}

.house_info {
  padding: 26px 26px 22px 26px;
}
.house_info h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  margin: 0 0 12px 0;
}
.house_info h3 a {
  color: #fff;
}
.no-touch .house_info h3 a:hover,
          .house_info h3 a:active,
.no-touch .house_info h3 a:focus {
  color: #FDD900;
}
.house_info span.vov {
  display: inline-block;
  background-color: #000;
  font-weight: 600;
  line-height: 20px;
  color: #fff;
  padding: 3px 10px 3px 10px;
  margin: 0 0 12px 0;
}
.house_info p {
  font-weight: 600;
  line-height: 26px;
  margin: 0 0 26px 0;
}
.house_info ul {
  line-height: 26px;
}
.house_info li {
  width: 50%;
  float: left;
  position: relative;
  white-space: nowrap;
  padding: 0 0 12px 36px;
  box-sizing: border-box;
}
.house_info li:before {
  width: 26px;
  height: 26px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center center;
  content: ' ';
}
.house_info li.oppervlakte:before { background-image: url('../images/oppervlakte.svg'); }
.house_info li.inhoud:before      { background-image: url('../images/inhoud.svg');      }
.house_info li.slaapkamers:before { background-image: url('../images/slaapkamers.svg'); }
.house_info li.perceel:before     { background-image: url('../images/perceel.svg');     }
.house_info li.label:before       { background-image: url('../images/label.svg');       }

.house_link {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.house_link a.button {
  display: block;
  text-align: center;
}
.house_link span {
  display: block;
  background-color: #000;
  font-weight: 600;
  line-height: 50px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
}

@media only screen and (max-width: 800px) {
  
  .houses {
    display: block;
  }
  
  .house {
    width: 100%;
    float: none;
    margin: 0 0 40px 0;
  }
  .house.last {
    margin-bottom: 0;
  }
  
}


/* Intro --------------------------------------------------------------------------------------- */

#intro_container {
  width: 100%;
}
#intro {
  width: 100%;
  max-width: 1300px;
  padding: 60px 15px 60px 15px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}

#intro h2 {
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  margin: 0 0 60px 0;
}

.intro_column {
  width: 30%;
  float: left;
  position: relative;
  padding: 0 0 0 70px;
  margin: 0 5% 0 0;
  box-sizing: border-box;
}
.intro_column.last {
  margin-right: 0;
}

.intro_column h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  margin: 0 0 26px 0;
}
.no-touch .intro_column h3 a:hover,
          .intro_column h3 a:active,
.no-touch .intro_column h3 a:focus {
  text-decoration: underline;
}
.intro_column p {
  line-height: 26px;
  margin: 0 0 26px 0;
}

.intro_column .icon {
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  top: -12px;
  left: 0;
  background-repeat: no-repeat;
  background-position: center center;
  font-size: 0;
  line-height: 0;
  content: ' ';
}
.intro_column #icon_4 { background-image: url('../images/icon_4.svg'); }
.intro_column #icon_5 { background-image: url('../images/icon_5.svg'); }
.intro_column #icon_6 { background-image: url('../images/icon_6.svg'); }

@media only screen and (max-width: 800px) {
  
  #intro {
    padding-bottom: 20px;
  }
  
  .intro_column {
    width: 100%;
    float: none;
    margin: 0 0 40px 0;
  }
  
}


/* Columns 3 ----------------------------------------------------------------------------------- */

.columns3_container {
  width: 100%;
  background-color: #666;
  background-image: url('../images/beton_licht.png');
  background-repeat: repeat;
  background-position: center center;
  background-size: 200px 200px;
  color: #fff;
}
.columns3 {
  width: 100%;
  max-width: 1300px;
  padding: 60px 15px 60px 15px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}

.columns3 h2 {
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  margin: 0 0 46px 0;
}

.column3 {
  width: 30%;
  float: left;
  position: relative;
  padding: 0 0 0 70px;
  margin: 0 5% 0 0;
  box-sizing: border-box;
}
.column3.last {
  margin-right: 0;
}

.column3 h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  margin: 0 0 26px 0;
}
.column3 p {
  line-height: 26px;
}
.column3 ul {
  line-height: 26px;
}
.column3 li {
  position: relative;
  padding: 0 0 0 16px;
}
.column3 li:before {
  width: 4px;
  height: 4px;
  display: block;
  position: absolute;
  top: 11px;
  left: 0;
  background-color: #fff;
  font-size: 0;
  line-height: 0;
  content: ' ';
}

.column3 .icon {
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  top: -12px;
  left: 0;
  background-repeat: no-repeat;
  background-position: center center;
  font-size: 0;
  line-height: 0;
  content: ' ';
}
.column3 #icon_1 { background-image: url('../images/icon_1.svg'); }
.column3 #icon_2 { background-image: url('../images/icon_2.svg'); }
.column3 #icon_3 { background-image: url('../images/icon_3.svg'); }

.column3 #icon_7 { background-image: url('../images/icon_7.svg'); }
.column3 #icon_8 { background-image: url('../images/icon_8.svg'); }
.column3 #icon_9 { background-image: url('../images/icon_9.svg'); }

@media only screen and (max-width: 800px) {
  
  .column3 {
    width: 100%;
    float: none;
    margin: 0 0 40px 0;
  }
  .column3.last {
    margin-bottom: 0;
  }
  
}


/* Article ------------------------------------------------------------------------------------- */

.article_container {
  width: 100%;
}
.article_container.border {
  border-bottom: 1px solid #ccc;
}
.article {
  width: 100%;
  max-width: 1300px;
  padding: 60px 15px 34px 15px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}

.article h1 {
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  margin: 0 0 26px 0;
}
.article h2 {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  margin: 36px 0 26px 0;
}
.article p {
  line-height: 26px;
  margin: 0 0 26px 0;
}
.article p.introduction {
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
}
.article p a {
  text-decoration: underline;
}
.article p a:hover,
.article p a:active,
.article p a:focus {
  text-decoration: none;
}
.article ul {
  line-height: 26px;
  margin: 0 0 26px 0;
}
.article ul li {
  position: relative;
  padding: 0 0 0 16px;
}
.article ul li:before {
  width: 4px;
  height: 4px;
  display: block;
  position: absolute;
  top: 11px;
  left: 0;
  background-color: #000;
  font-size: 0;
  line-height: 0;
  content: ' ';
}

.article .to_right {
  width: 30%;
  float: right;
  position: relative;
  z-index: 100;
  margin: 5px 0 26px 5%;
}

@media only screen and (max-width: 800px) {
  
  .article .to_right {
    width: 40%;
    margin-bottom: 5%;
  }
  
}

.article a.image_link {
  display: block;
}
.article a.image_link img {
  width: 100%;
  height: auto;
  display: block;
}
.article a.image_link div.button {
  display: block;
  text-align: center;
}

.article #iframe_container {
  margin: 0 0 40px 0;
}
.article #iframe_container iframe {
  display: block;
}


/* Persons ------------------------------------------------------------------------------------- */

.article .persons {
  width: 100%;
  display: flex;
  font-size: 0;
  line-height: 0;
  justify-content: center;
  text-align: center;
  margin: 0;
}

.article .persons .person {
  width: 100%;
  max-width: 350px;
  flex: 1;
  position: relative;
  background-color: #666;
  background-image: url('../images/beton_licht.png');
  background-repeat: repeat;
  background-position: center center;
  background-size: 200px 200px;
  text-align: left;
  color: #fff;
  vertical-align: top;
  margin: 0 26px 40px 26px;
}

@media only screen and (max-width: 700px) {
  
  .article .persons {
    display: block;
  }
  .article .persons .person {
    display: block;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
  
}

.article .persons .person_image img {
  width: 100%;
  height: auto;
  display: block;
}

.article .persons .person_description {
  padding: 26px 26px 50px 26px;
}
.article .persons .person_description h2 {
  margin: 0 0 26px 0;
}
.article .persons .person_description p {
  font-size: 14px;
  line-height: 26px;
}

.article .persons .person_description ul {
  font-size: 14px;
  line-height: 26px;
  margin: 0 0 20px 0;
}
.article .persons .person_description ul li {
  padding: 0 0 6px 27px;
}
.article .persons .person_description ul li:before {
  width: 17px;
  height: 26px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  font-family: 'FontAwesome';
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
}
.article .persons .person_description ul li.mail:before { content: '\f003'; }
.article .persons .person_description ul li.tel:before  { content: '\f095'; }

.article .persons .person_description a {
  color: #fff;
}
.no-touch .article .persons .person_description a:hover,
          .article .persons .person_description a:active,
.no-touch .article .persons .person_description a:focus {
  text-decoration: underline;
}

.article .persons a.person_link {
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  box-sizing: border-box;
}


/* Info blocks --------------------------------------------------------------------------------- */

.article .info_blocks {
  font-size: 0;
  line-height: 0;
  margin: 0;
}
.article .info_block {
  display: inline-block;
  vertical-align: top;
  margin: 10px 0 26px 0;
}
.article .info_block.first {
  width: 200px;
}
.article .info_block h2 {
  margin: 0 0 26px 0;
}
.article .info_block p {
  font-size: 14px;
  line-height: 26px;
  margin: 0;
}
.article .info_block address {
  font-size: 14px;
  line-height: 26px;
}
.article .info_block table th,
.article .info_block table td {
  line-height: 26px;
}
.article .info_block table th {
  width: 75px;
}
.article .info_block table a {
  text-decoration: underline;
}
.no-touch .article .info_block table a:hover,
          .article .info_block table a:active,
.no-touch .article .info_block table a:focus {
  text-decoration: none;
}


/* Call to action form ------------------------------------------------------------------------- */

.cta_form {
  width: 40%;
  float: right;
  background-color: #666;
  background-image: url('../images/beton_licht.png');
  background-repeat: repeat;
  background-position: center center;
  background-size: 200px 200px;
  color: #fff;
  padding: 26px;
  margin: 5px 0 26px 5%;
}

@media only screen and (max-width: 800px) {
  
  .cta_form {
    width: 50%;
    margin-bottom: 5%;
  }
  
}

.article .cta_form h2 {
  margin-top: 0;
}

.cta_form form {
  width: 100%;
}

.cta_form .form_columns {
  width: 100%;
}
.cta_form .form_column {
  width: 47%;
}
.cta_form .form_column.left {
  float: left;
}
.cta_form .form_column.right {
  float: right;
}

.cta_form .select_container {
  width: 100%;
  position: relative;
  padding: 0 0 13px 0;
}
.cta_form .select_container select {
  width: 100%;
  height: 50px;
  background-color: #fff;
  font-size: 14px;
  color: #000;
  padding: 0 0 0 13px;
  box-sizing: border-box;
}
.cta_form .select_container:after {
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #fff;
  font-family: 'FontAwesome';
  font-weight: normal;
  font-size: 16px;
  line-height: 50px;
  text-align: center;
  color: #000;
  content: '\f107';
  pointer-events: none;
}
.cta_form .select_container select:focus {
  background-color: #fcf3c5;
}

.cta_form .input_container {
  width: 100%;
  padding: 0 0 13px 0;
}
.cta_form .input_container input.input,
.cta_form .input_container textarea {
  width: 100%;
  height: 50px;
  background-color: #fff;
  font-size: 14px;
  color: #000;
  padding: 0 0 0 13px;
  box-sizing: border-box;
}
.cta_form .input_container textarea {
  height: 125px;
  padding-top: 14px;
}
.cta_form .input_container input.input:focus,
.cta_form .input_container textarea:focus {
  background-color: #fcf3c5;
}

.cta_form .button_container {
  width: 100%;
  padding: 13px 0 0 0;
}
.cta_form .button_container button {
  width: 100%;
  display: block;
}

@media only screen and (max-width: 600px) {
  
  .cta_form {
    width: 100%;
    float: none;
    margin: 0 0 26px 0;
    box-sizing: border-box;
  }
  
  .cta_form .select_container select {
    font-size: 16px;
  }
  .cta_form .input_container input.input,
  .cta_form .input_container textarea {
    font-size: 16px;
  }
  
}

@media only screen and (max-width: 400px) {
  
  .cta_form .form_column {
    width: 100%;
  }
  
}


/* Reviews ------------------------------------------------------------------------------------- */

#reviews_container {
  width: 100%;
  background-color: #666;
  background-image: url('../images/beton_licht.png');
  background-repeat: repeat;
  background-position: center center;
  background-size: 200px 200px;
  color: #fff;
}
#reviews {
  width: 100%;
  max-width: 1300px;
  text-align: center;
  padding: 60px 15px 60px 15px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}

#reviews h2 {
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  margin: 0 0 50px 0;
}

#reviews .reviews_container {
  display: flex;
}

#reviews .review {
  width: 30%;
  float: left;
  position: relative;
  flex: 1;
  background-color: #333;
  background-image: url('../images/beton_donker.png');
  background-repeat: repeat;
  background-position: center center;
  background-size: 200px 200px;
  text-align: left;
  color: #fff;
  padding: 26px 26px 104px 26px;
  margin: 0 5% 0 0;
  box-sizing: border-box;
}
#reviews .review.last {
  margin-right: 0;
}

#reviews .review_heading {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  padding: 0 75px 0 0;
  margin: 0 0 12px 0;
}
#reviews .review_score {
  position: absolute;
  top: 26px;
  right: 26px;
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  color: #FDD900;
}
#reviews .review_date {
  line-height: 26px;
  margin: 0 0 26px 0;
}
#reviews .review blockquote {
  font-style: italic;
  line-height: 26px;
  margin: 0 0 26px 0;
}
#reviews .review_recommend {
  height: 26px;
  position: relative;
  line-height: 26px;
  overflow: hidden;
  padding: 0 0 0 36px;
  margin: 0 0 26px 0;
}
#reviews .review_recommend:before {
  width: 26px;
  height: 26px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url('../images/recommend.svg');
  background-repeat: no-repeat;
  background-position: center center;
  font-size: 0;
  line-height: 0;
  content: ' ';
}
#reviews .review_name {
  height: 26px;
  line-height: 26px;
  overflow: hidden;
}

#reviews .review_footer {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 26px 26px 26px;
  box-sizing: border-box;
}

#reviews a.button {
  margin: 50px 0 0 0;
}

@media only screen and (max-width: 800px) {
  
  #reviews .reviews_container {
    display: block;
  }
  
  #reviews .review {
    width: 100%;
    float: none;
    margin: 0 0 40px 0;
  }
  #reviews .review.last {
    margin-bottom: 0;
  }
  
}


/* Map ----------------------------------------------------------------------------------------- */

#map_container {
  width: 100%;
  height: 500px;
  background-color: #fff;
}
#map {
  width: 100%;
  height: 500px;
}


/* Blog ---------------------------------------------------------------------------------------- */

#blog_message_container {
  width: 100%;
}
#blog_message {
  width: 100%;
  max-width: 1300px;
  padding: 40px 15px 34px 15px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}

#blog_message_text {
  width: 65%;
  float: left;
  padding: 0 0 1px 0;
}

#blog_message_text h1 {
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  margin: 0 0 10px 0;
}
#blog_message_text h1#margin {
  margin: 0 0 36px 0;
}
#blog_message_text h2 {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  margin: 0 0 10px 0;
}
.no-touch #blog_message_text h2 a:hover,
          #blog_message_text h2 a:active,
.no-touch #blog_message_text h2 a:focus {
  text-decoration: underline;
}

#blog_message_text .blog_message_details {
  line-height: 26px;
  margin: 0 0 26px 0;
}

#blog_message_text .blog_message_image {
  margin: 0 0 26px 0;
}
#blog_message_text .blog_message_image a {
  display: block;
}
#blog_message_text .blog_message_image img {
  width: 450px;
  max-width: 100%;
  height: auto;
  display: block;
  border: 1px solid #ccc;
  box-sizing: border-box;
  transition: border 0.2s ease 0s;
}
#blog_message_text .blog_message_image a img {
  border-color: #ccc;
}
.no-touch #blog_message_text .blog_message_image a:hover  img,
          #blog_message_text .blog_message_image a:active img,
.no-touch #blog_message_text .blog_message_image a:focus  img {
  border-color: #666;
}

#blog_message_text p {
  line-height: 26px;
  margin: 0 0 26px 0;
}
#blog_message_text p strong {
  font-weight: 600;
}

#blog_message_text a.button {
  margin: 0 0 26px 0;
}

#blog_message_text hr {
  width: 100%;
  height: 1px;
  background-color: #ccc;
  margin: 10px 0 36px 0;
}

#blog_navigation {
  height: 50px;
  position: relative;
  font-size: 0;
  line-height: 0;
  text-align: center;
  margin: 0 0 26px 0;
}

#blog_navigation a.button {
  width: 120px;
  position: absolute;
  top: 0;
  right: 0;
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
#blog_navigation a.button.prev {
  right: auto;
  left: 0;
  background-color: #666;
  background-image: none;
  color: #fff;
}
#blog_navigation a.button.prev:before {
  font-family: 'FontAwesome';
  font-weight: normal;
  content: '\f104';
  margin: 0 6px 0 0;
}
#blog_navigation a.button.prev:after {
  display: none;
}

#blog_navigation a.button_pagination {
  width: 50px;
  height: 50px;
  display: inline-block;
  background-color: #fff;
  font-weight: 600;
  font-size: 14px;
  line-height: 48px;
  border: 1px solid #FDD900;
  box-sizing: border-box;
  margin: 0 5px 0 5px;
}
#blog_navigation a.button_pagination.current {
  background-color: #FDD900;
}
.no-touch #blog_navigation a.button_pagination:hover,
          #blog_navigation a.button_pagination:active,
.no-touch #blog_navigation a.button_pagination:focus {
  background-color: #FDD900;
}

#blog_extra {
  width: 30%;
  float: right;
}

#blog_extra h2 {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  margin: 0 0 26px 0;
}

#blog_extra .house {
  width: 100%;
  background-color: #666;
  background-image: url('../images/beton_licht.png');
  margin: 0 0 26px 0;
}

@media only screen and (max-width: 900px) {
  
  #blog_message_text {
    width: 100%;
    float: none;
  }
  #blog_extra {
    width: 100%;
    float: none;
    padding-top: 10px;
  }
  
}


/* Text page ----------------------------------------------------------------------------------- */

#textpage_container {
  width: 100%;
}
#textpage {
  width: 100%;
  max-width: 1300px;
  padding: 60px 15px 34px 15px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}

#textpage h1 {
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  margin: 0 0 26px 0;
}
#textpage h2 {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  margin: 36px 0 26px 0;
}
#textpage h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #666;
  margin: 0 0 10px 0;
}

#textpage a {
  text-decoration: underline;
}
.no-touch #textpage a:hover,
          #textpage a:active,
.no-touch #textpage a:focus {
  text-decoration: none;
}

#textpage p {
  line-height: 26px;
  margin: 0 0 26px 0;
}
#textpage strong {
  font-weight: 600;
}

#textpage ul {
  line-height: 26px;
  margin: 0 0 26px 0;
}
#textpage ul li {
  position: relative;
  padding: 0 0 0 16px;
}
#textpage ul li:before {
  width: 4px;
  height: 4px;
  display: block;
  position: absolute;
  top: 11px;
  left: 0;
  background-color: #000;
  font-size: 0;
  line-height: 0;
  content: ' ';
}

#textpage ul.files li {
  padding: 0 0 0 20px;
}
#textpage ul.files li:before {
  width: auto;
  height: auto;
  top: 0;
  background-color: transparent;
  font-family: 'FontAwesome';
  font-weight: normal;
  font-size: 14px;
  line-height: 26px;
}
#textpage ul.files li.pdf:before {
  content: '\f1c1';
}

#textpage #sitemap_container {
  width: 50%;
  margin: 0 0 26px 0;
}
#textpage #sitemap_container ul {
  padding: 0;
  margin: 0;
}
#textpage #sitemap_container ul li {
  padding: 0 0 10px 0;
}
#textpage #sitemap_container ul li:before {
  display: none;
}
#textpage #sitemap_container ul ul {
  margin: 0 0 0 40px;
}
#textpage #sitemap_container ul ul li {
  padding: 10px 0 0 0;
}
#textpage #sitemap_container a {
  display: block;
  position: relative;
  background-color: #eee;
  line-height: 20px;
  text-decoration: none;
  padding: 15px 20px 15px 40px;
}
#textpage #sitemap_container ul a:before {
  width: 4px;
  height: 4px;
  display: block;
  position: absolute;
  top: 23px;
  left: 23px;
  background-color: #000;
  font-size: 0;
  line-height: 0;
  content: ' ';
}
.no-touch #textpage #sitemap_container a:hover,
          #textpage #sitemap_container a:active,
.no-touch #textpage #sitemap_container a:focus {
  background-color: #000;
  color: #fff;
}
.no-touch #textpage #sitemap_container a:hover:before,
          #textpage #sitemap_container a:active:before,
.no-touch #textpage #sitemap_container a:focus:before {
  background-color: #fff;
}

@media only screen and (max-width: 1200px) {
  
  #textpage #sitemap_container {
    width: 100%;
  }
  
}


/* Filter bar ---------------------------------------------------------------------------------- */

#filter_bar_container {
  width: 100%;
  background-color: #666;
  background-image: url('../images/beton_licht.png');
  background-repeat: repeat;
  background-position: center center;
  background-size: 200px 200px;
  color: #fff;
}
#filter_bar {
  width: 100%;
  max-width: 1300px;
  text-align: left;
  padding: 0 15px 0 15px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}

#filter_container {
  width: 70%;
  float: left;
  padding: 60px 5% 47px 0;
  box-sizing: border-box;
}

#sorting_container {
  width: 30%;
  float: right;
  background-color: #333;
  background-image: url('../images/beton_donker.png');
  padding: 60px 26px 60px 26px;
  box-sizing: border-box;
}

#filter_bar h2 {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  margin: 0 0 26px 0;
}

#filter_bar .filter_group {
  width: 30%;
  float: left;
  margin: 0 5% 0 0;
}
#filter_bar .filter_group.last {
  margin-right: 0;
}

#filter_bar .select_container {
  position: relative;
  padding: 0 0 13px 0;
}
#filter_bar .select_container select {
  width: 100%;
  height: 50px;
  background-color: #fff;
  font-size: 14px;
  color: #000;
  padding: 0 0 0 13px;
  box-sizing: border-box;
}
#filter_bar .select_container select:focus {
  background-color: #fcf3c5;
}
#filter_bar .select_container:after {
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #fff;
  font-family: 'FontAwesome';
  font-weight: normal;
  font-size: 16px;
  line-height: 50px;
  text-align: center;
  color: #000;
  content: '\f107';
  pointer-events: none;
}

#filter_bar button.button {
  width: 100%;
  display: block;
}

@media only screen and (max-width: 800px) {
  
  #filter_bar {
    padding: 0;
  }
  
  #filter_container {
    width: 100%;
    float: none;
    padding: 40px 15px 27px 15px;
  }
  
  #sorting_container {
    width: 100%;
    float: none;
    padding: 40px 15px 40px 15px;
  }
  
}

@media only screen and (max-width: 600px) {
  
  #filter_bar .filter_group {
    width: 100%;
    float: none;
    margin: 0;
  }
  
}


/* Woning -------------------------------------------------------------------------------------- */

#woning_container {
  width: 100%;
}
#woning {
  width: 100%;
  max-width: 1300px;
  padding: 0 15px 0 15px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}

/* Woning header */
#woning_header {
  position: relative;
  margin: 15px 0 35px 0;
}

#woning_header h1 {
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  margin: 0 0 10px 0;
}

#woning_header #woning_vov {
  display: inline-block;
  background-color: #000;
  font-weight: 600;
  line-height: 20px;
  color: #fff;
  padding: 3px 10px 3px 10px;
  margin: 0 0 10px 0;
}

#woning_header #woning_prijs {
  font-weight: normal;
  font-size: 20px;
  line-height: 26px;
}

#woning_header #woning_eigenschappen {
  position: absolute;
  bottom: 0;
  right: 0;
  line-height: 26px;
}
#woning_header #woning_eigenschappen li {
  float: left;
  position: relative;
  padding: 0 0 0 34px;
  margin: 0 26px 0 0;
}
#woning_header #woning_eigenschappen li:last-child {
  margin-right: 0;
}
#woning_header #woning_eigenschappen li:before {
  width: 26px;
  height: 26px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center center;
  font-size: 0;
  line-height: 0;
  text-align: center;
  content: ' ';
}
#woning_header #woning_eigenschappen li#woning_oppv:before {
  background-image: url('../images/oppervlakte_zwart.svg');
}
#woning_header #woning_eigenschappen li#woning_inhoud:before {
  background-image: url('../images/inhoud_zwart.svg');
}
#woning_header #woning_eigenschappen li#woning_slaapkamers:before {
  background-image: url('../images/slaapkamers_zwart.svg');
}
#woning_header #woning_eigenschappen li#woning_label:before {
  background-image: url('../images/label_zwart.svg');
}

@media only screen and (max-width: 700px) {
  
  #woning_header #woning_eigenschappen {
    position: static;
    margin: 20px 0 0 0;
  }
  
}

/* Woning foto's */
#woning_fotos {
  position: relative;
  margin: 0 0 35px 0;
}

#woning_fotos .woning_foto {
  display: none;
}
#woning_fotos .woning_foto.active {
  display: block;
}
#woning_fotos .woning_foto img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 0 auto;
}

#woning_fotos a.woning_fotos_button {
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  top: 50%;
  background-color: #fdd900;
  font-family: 'FontAwesome';
  font-weight: normal;
  font-size: 20px;
  line-height: 50px;
  text-align: center;
  color: #000;
  margin: -25px 0 0 0;
}
#woning_fotos a.woning_fotos_button#woning_fotos_prev {
  left: 0;
}
#woning_fotos a.woning_fotos_button#woning_fotos_next {
  right: 0;
}
#woning_fotos a.woning_fotos_button#woning_fotos_prev:before {
  content: '\f104';
}
#woning_fotos a.woning_fotos_button#woning_fotos_next:before {
  content: '\f105';
}
#woning_fotos a.woning_fotos_button span {
  display: none;
}
#woning_fotos a.woning_fotos_button:hover,
#woning_fotos a.woning_fotos_button:active,
#woning_fotos a.woning_fotos_button:focus {
  background-color: #000;
  color: #fff;
}
#woning_fotos a.woning_fotos_button.disabled {
  background-color: #888 !important;
  color: #fff !important;
  cursor: auto;
}

/* Tabs */
#tabs {
  width: 100%;
  height: 49px;
}
#tabs li {
  float: left;
  padding: 0 16px 0 0;
}
#tabs li:last-child {
  padding-right: 0;
}
#tabs a {
  height: 50px;
  display: block;
  background-color: #FDD900;
  font-weight: 600;
  line-height: 48px;
  padding: 0 25px 0 25px;
  border: 1px solid #FDD900;
  box-sizing: border-box;
}
#tabs li.open a {
  background-color: #fff;
  border-bottom-color: #fff;
}
.no-touch #tabs a:hover,
          #tabs a:active,
.no-touch #tabs a:focus {
  background-color: #fff;
}

/* Tab content */
.tab_content {
  display: none;
  padding: 35px 25px 10px 25px;
  border: 1px solid #fdd900;
  margin: 0;
}

.tab_content_col1 {
  width: 60%;
  float: left;
}
.tab_content_col2 {
  width: 40%;
  float: right;
  padding: 0 0 0 50px;
  box-sizing: border-box;
}

.tab_content h2 {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  margin: 0 0 26px 0;
}
.tab_content h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  margin: 0 0 16px 0;
}
.tab_content p {
  line-height: 26px;
  margin: 0 0 26px 0;
}
.tab_content a.button {
  margin: 0 0 26px 0;
}

.tab_content table {
  line-height: 26px;
  margin: 0 0 26px 0;
}
.tab_content table th {
  width: 200px;
  padding: 0;
}
.tab_content .tab_content_col2 table th {
  width: auto;
  padding: 0 26px 0 0;
}

.tab_content span.ja,
.tab_content span.nee {
  width: 14px;
  display: block;
}
.tab_content span.ja:before,
.tab_content span.nee:before {
  display: block;
  font-family: 'FontAwesome';
  font-weight: normal;
  text-align: center;
}
.tab_content span.ja:before {
  content: '\f00c';
  color: #090;
}
.tab_content span.nee:before {
  content: '\f00d';
  color: #c00;
}
.tab_content span.ja  span,
.tab_content span.nee span {
  display: none;
}

.tab_content #map_woning_container {
  border: 1px solid #ccc;
  margin: 0 0 26px 0;
}
.tab_content #map_woning {
  width: 100%;
  height: 400px;
}

.tab_content form {
  width: 100%;
  margin: 0 0 26px 0;
}

.tab_content .input_container {
  width: 100%;
  padding: 0 0 10px 0;
}
.tab_content .input_container label {
  width: 20%;
  float: left;
  display: block;
  line-height: 40px;
  white-space: nowrap;
}
.tab_content .input_container label span.required {
  font-weight: normal;
  color: #fdd900;
}
.tab_content .field_container {
  width: 80%;
  float: left;
}

.tab_content input.input,
.tab_content textarea {
  width: 100%;
  height: 40px;
  background-color: #f9f9f9;
  color: #000;
  padding: 0 0 0 10px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
.tab_content textarea {
  height: 150px;
  padding-top: 8px;
}
.tab_content input.input:focus,
.tab_content textarea:focus {
  border-color: #888;
}

.tab_content .button_container {
  padding: 16px 0 0 0;
}
.tab_content .button_container button {
  float: right;
}

@media only screen and (max-width: 900px) {
  
  #tabs {
    display: none;
  }
  .tab_content {
    display: block !important;
    margin: 0 0 26px 0;
  }
  .tab_content_col1 {
    width: 100%;
    float: none;
  }
  .tab_content_col2 {
    width: 100%;
    float: none;
    padding: 0;
  }
  a.button.button_tab {
    display: none;
  }
  
}

@media only screen and (max-width: 600px) {
  
  .tab_content .input_container label {
    width: 100%;
    float: none;
    line-height: 26px;
    margin: 0 0 10px 0;
  }
  .tab_content .field_container {
    width: 100%;
    float: none;
  }
  
}


/* Message ------------------------------------------------------------------------------------- */

.message,
.error {
  position: relative;
  background-color: rgba(253, 217, 0, 0.1);
  line-height: 26px;
  padding: 16px 16px 16px 58px;
  border: 1px solid #fdd900;
}
.message {
  margin: 0 0 35px 0;
}
.error {
  padding: 6px 6px 6px 44px;
  margin: 0 0 10px 0;
}
.message:before,
.error:before {
  width: 26px;
  height: 26px;
  display: block;
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: #000;
  font-family: 'FontAwesome';
  font-weight: normal;
  text-align: center;
  content: '\f12a';
  color: #fff;
}
.error:before {
  top: 6px;
  left: 6px;
}
.message a,
.error   a {
  text-decoration: underline;
}
.no-touch .message a:hover,
          .message a:active,
.no-touch .message a:focus,
.no-touch .error   a:hover,
          .error   a:active,
.no-touch .error   a:focus {
  text-decoration: none;
}


/* Footer -------------------------------------------------------------------------------------- */

#footer_container {
  width: 100%;
  flex-shrink: 0;
  background-color: #333;
  background-image: url('../images/beton_donker.png');
  background-repeat: repeat;
  background-position: center center;
  background-size: 200px 200px;
  color: #fff;
}


/* Footer 1 ------------------------------------------------------------------------------------ */

#footer1_container {
  width: 100%;
  border-bottom: 1px solid #888;
}
#footer1 {
  width: 100%;
  max-width: 1300px;
  position: relative;
  font-size: 14px;
  line-height: 24px;
  padding: 40px 15px 20px 15px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}

#footer1 a {
  color: #fff;
}

/* Office */
#office {
  width: 100%;
  margin: 0 0 20px 0;
}

#office_image {
  float: left;
  margin: 0 40px 0 0;
}
#office_image img {
  display: block;
  background-color: #fff;
  color: #000;
}

#office_text {
  float: left;
}
#office_text .footer_heading {
  font-weight: 600;
  color: #FDD900;
}
#office_text address {
  margin: 0 0 24px 0;
}
#office_text p {
  margin: 0 0 24px 0;
}
#office_text a#footer_tel {
  display: block;
  font-weight: 600;
}
#office_text a#footer_tel:before {
  font-family: 'FontAwesome';
  font-weight: normal;
  font-size: 16px;
  color: #FDD900;
  content: '\f095';
  margin: 0 6px 0 0;
}
.no-touch #office_text a#footer_tel:hover,
          #office_text a#footer_tel:active,
.no-touch #office_text a#footer_tel:focus {
  color: #FDD900;
}

/* Social media */
#socialmedia {
  width: 420px;
  position: absolute;
  top: 40px;
  right: 15px;
  padding: 50px 125px 0 0;
  box-sizing: border-box;
}
#socialmedia p {
  font-family: 'Kalam', 'Poppins', Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 25px;
  text-align: right;
  white-space: nowrap;
  margin: 0 40px 0 0;
}
#socialmedia #socialmedia_buttons {
  position: absolute;
  bottom: 0;
  right: 0;
}
#socialmedia a.socialmedia {
  width: 50px;
  height: 50px;
  display: block;
  float: left;
  background-repeat: no-repeat;
  background-position: top center;
  margin: 0 25px 0 0;
}
#socialmedia a.socialmedia span {
  display: none;
}
.no-touch #socialmedia a.socialmedia:hover,
          #socialmedia a.socialmedia:active,
.no-touch #socialmedia a.socialmedia:focus {
  background-position: bottom center;
}
#socialmedia:before {
  width: 90px;
  height: 32px;
  position: absolute;
  top: 0;
  right: 100px;
  background-image: url('../images/arrow.svg');
  background-repeat: no-repeat;
  background-position: center center;
  font-size: 0;
  line-height: 0;
  content: ' ';
}

#socialmedia a#socialmedia_whatsapp {
  background-image: url('../images/logo_whatsapp.svg');
}
#socialmedia a#socialmedia_facebook {
  background-image: url('../images/logo_facebook.svg');
  margin-right: 0;
}
#socialmedia a#socialmedia_linkedin {
  background-image: url('../images/logo_linkedin.svg');
  margin-right: 0;
}

/* Logos */
#logos {
  position: absolute;
  bottom: 20px;
  right: 15px;
}
#logos a.logo {
  height: 50px;
  display: block;
  float: left;
  background-repeat: no-repeat;
  background-position: top center;
  line-height: 50px;
  text-align: center;
  margin: 0 30px 20px 0;
}
#logos a.logo span {
  display: none;
}
.no-touch #logos a.logo:hover,
          #logos a.logo:active,
.no-touch #logos a.logo:focus {
  background-position: bottom center;
}

#logos a#logo_nrvt {
  width: 110px;
  background-image: url('../images/logo_nrvt.svg');
}
#logos a#logo_nvm {
  width: 36px;
  background-image: url('../images/logo_nvm.svg');
}
#logos a#logo_vastgoedcert {
  width: 140px;
  background-image: url('../images/logo_vastgoedcert.svg');
}
#logos a#logo_nwwi {
  width: 100px;
  background-image: url('../images/logo_nwwi.svg');
}
#logos a#logo_funda {
  width: 100px;
  background-image: url('../images/logo_funda.svg');
  margin-right: 0;
}

@media only screen and (max-width: 1200px) {
  
  #logos {
    position: static;
    bottom: auto;
    right: auto;
    margin: 40px 0 0 0;
  }
  
}

@media only screen and (max-width: 1010px) {
  
  #socialmedia {
    position: relative;
    top: auto;
    right: auto;
    margin: 20px 0 0 0;
  }
  
}

@media only screen and (max-width: 675px) {
  
  #office_image {
    float: none;
    margin: 0 0 24px 0;
  }
  #office_image img {
    max-width: 100%;
    height: auto;
  }
  
  #office_text {
    float: none;
    margin: 0;
  }
  
}

@media only screen and (max-width: 475px) {
  
  #socialmedia {
    display: none;
  }
  
}


/* Footer 2 ------------------------------------------------------------------------------------ */

#footer2_container {
  width: 100%;
}
#footer2 {
  width: 100%;
  max-width: 1300px;
  position: relative;
  font-size: 13px;
  line-height: 30px;
  padding: 15px 15px 15px 15px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}

#footer2 a {
  color: #fff;
}
.no-touch #footer2 a:hover,
          #footer2 a:active,
.no-touch #footer2 a:focus {
  color: #FDD900;
}

/* Service links */
#servicelinks li {
  float: left;
  position: relative;
  padding: 0 15px 0 0;
  margin: 0 10px 0 0;
}
#servicelinks li:after {
  width: 4px;
  height: 4px;
  display: block;
  position: absolute;
  top: 13px;
  right: 0;
  background-color: #FDD900;
  font-size: 0;
  line-height: 0;
  content: ' ';
}
#servicelinks li.last {
  padding-right: 0;
  margin-right: 0;
}
#servicelinks li.last:after {
  display: none;
}
#servicelinks span {
  color: #FDD900;
}

/* Credits */
#credits {
  position: absolute;
  top: 20px;
  right: 15px;
  line-height: 20px;
  padding: 0 134px 0 0;
}
#credits a {
  width: 124px;
  height: 20px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background-image: url('../images/logo_whirlwind.svg');
  background-repeat: no-repeat;
  background-position: top center;
}
#credits a span {
  display: none;
}
.no-touch #credits a:hover,
          #credits a:active,
.no-touch #credits a:focus {
  background-position: bottom center;
}

@media only screen and (max-width: 1050px) {
  
  #credits {
    display: inline-block;
    position: relative;
    top: auto;
    right: auto;
    margin: 15px 0 0 0;
  }
  
}


/* Overlay ------------------------------------------------------------------------------------- */

#menu_overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999999999;
  display: none;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

a#menu_overlay_close {
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  top: 25px;
  right: 25px;
  background-color: #fff;
  font-family: 'FontAwesome';
  font-weight: normal;
  font-size: 25px;
  line-height: 50px;
  text-align: center;
  border-radius: 50px;
}
a#menu_overlay_close span {
  display: none;
}
a#menu_overlay_close:before {
  content: '\f00d';
}
.no-touch a#menu_overlay_close:hover,
          a#menu_overlay_close:active,
.no-touch a#menu_overlay_close:focus {
  background-color: #FDD900;
}

#menu_overlay_items {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#menu_overlay ul {
  padding: 30px;
}
#menu_overlay li {
  padding: 0 0 30px 0;
}
#menu_overlay li.last {
  padding-bottom: 0;
}
#menu_overlay li a,
#menu_overlay li span {
  display: block;
  font-size: 32px;
  line-height: 38px;
  text-align: center;
  color: #fff;
}
#menu_overlay li span {
  color: #FDD900;
}
.no-touch #menu_overlay li a:hover,
          #menu_overlay li a:active,
.no-touch #menu_overlay li a:focus {
  color: #FDD900;
}
#menu_overlay li.active a,
#menu_overlay li.active span {
  color: #FDD900;
}


/* Clearing <div> ------------------------------------------------------------------------------ */

.clear {
  width: 0;
  height: 0;
  clear: both;
  font-size: 0;
  line-height: 0;
}