@import "/wp-content/themes/avo/bootstrap/css/bootstrap.min.css";
@import url('https://fonts.googleapis.com/css?family=Titillium+Web:400,600,700');
@import url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css');
@import "/wp-content/themes/avo/css/font-awesome.min.css";
/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
.light {
  font-weight: 300;
}
.regular {
  font-weight: 400;
}
.semibold {
  font-weight: 500;
}
.bold {
  font-weight: 700;
}
.basis_font {
  font-family: 'Titillium Web', sans-serif;
}
.rel {
  position: relative;
}
.abs {
  position: absolute;
}
.fixed {
  position: fixed;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.fill {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.background-cover {
  background-size: cover;
  background-position: center center;
}
.flex {
  display: flex;
}
.inline-block {
  display: inline-block;
}
.block {
  display: block;
}
.none {
  display: none;
}
h1,
.look-h1 {
  font-size: 34px;
  line-height: 1.4;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 30px;
  color: #1e1e1c;
}
@media (max-width: 767px) {
  h1,
  .look-h1 {
    font-size: 29px;
  }
}
h2,
.look-h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #1e1e1c;
}
@media (max-width: 767px) {
  h2,
  .look-h2 {
    font-size: 20px;
  }
}
h3,
.look-h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  h3,
  .look-h3 {
    font-size: 18px;
  }
}
.inputstyle {
  border: 2px solid #d5d5d5;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 10px;
}
.inputstyle:focus {
  outline: none;
  border: 2px solid #aeaeae;
}
p,
.look-p {
  font-size: 16px;
  line-height: 2;
  color: #1e1e1c;
  font-weight: 400;
  margin-bottom: 15px;
}
p b,
.look-p b,
p strong,
.look-p strong {
  font-weight: 600;
}
.button {
  background-color: #e3652a;
  position: relative;
  color: white;
  font-size: 16px;
  padding: 12px 65px 12px 15px;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.button::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 46px;
  background-color: #ca521b;
  background-image: url('http://www.avo-verdelerbouw.nl/wp-content/themes/avo/images/icon-chevron-right-white.svg');
  background-size: auto 15px;
  background-position: center center;
  background-repeat: no-repeat;
}
.button:hover {
  background-color: #ca521b;
  text-decoration: none;
  color: white;
}
.button:focus,
.button:active {
  outline: none;
  color: white;
}
.button.color-1 {
  background-color: #009fe3;
}
.button.color-1::after {
  background-color: #0082ba;
}
.button.color-1:hover {
  background-color: #0082ba;
}
body {
  font-family: 'Titillium Web', sans-serif;
  color: #1e1e1c;
  background: white;
  overflow-x: hidden;
}
body.home {
  background: #eeeeee;
}
.website-content {
  display: block;
  width: 100%;
  padding: 90px 0 80px 0;
}
.website-content.no-padding-bottom {
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .website-content {
    padding: 75px 0 30px 0;
  }
  .website-content.no-padding-bottom {
    padding-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .website-content {
    padding: 80px 0 40px 0;
  }
  .website-content.no-padding-bottom {
    padding-bottom: 0;
  }
}
@media (min-width: 767px) {
  .container {
    width: 1170px;
    max-width: 100%;
  }
  .container.container-wide {
    width: 1500px;
    max-width: 100%;
  }
}
.container-full {
  width: 100%;
}
.flex-row {
  display: flex;
}
@media (max-width: 991px) {
  .flex-row.default {
    flex-direction: column;
  }
}
a {
  text-decoration: none;
}
a:hover,
a:active,
a:focus {
  text-decoration: none;
}
a#swipebox-prev,
a#swipebox-next {
  top: inherit !important;
  bottom: 0 !important;
  position: absolute;
}
a#swipebox-prev {
  left: 0;
}
a#swipebox-next {
  right: 0;
}
.btnstyle {
  display: inline-block;
  font-size: 16px;
  color: white;
  text-transform: uppercase;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #009fe3;
  padding: 12px 20px;
  border-radius: 4px;
}
.btnstyle::before {
  content: '\f105';
  display: inline-block;
  font-family: FontAwesome;
  font-size: 16px;
  color: white;
  margin-right: 12px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btnstyle:hover,
.btnstyle:active,
.btnstyle:focus {
  background: #0082ba;
  text-decoration: none;
}
.btnstyle:hover::before,
.btnstyle:active::before,
.btnstyle:focus::before {
  margin-left: 4px;
  margin-right: 8px;
}
@media (max-width: 767px) {
  .btnstyle {
    padding: 6px 12px;
    font-size: 14px;
  }
}
.box-shadow {
  -webkit-box-shadow: 1px 1px 5px 0px rgba(50, 50, 50, 0.15);
  -moz-box-shadow: 1px 1px 5px 0px rgba(50, 50, 50, 0.15);
  box-shadow: 1px 1px 5px 0px rgba(50, 50, 50, 0.15);
}
header.header-2 .header-top {
  display: inline-block;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 1500;
}
header.header-2 .header-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: #1e1e1c;
}
header.header-2 .header-top .logo {
  display: inline-block;
  float: left;
  width: 200px;
}
header.header-2 .header-top .logo a.logolink {
  display: inline-block;
  float: left;
  width: 100%;
}
header.header-2 .header-top .logo a.logolink img {
  float: left;
  max-width: 100%;
  max-height: 70px;
  display: inline-block;
}
header.header-2 .header-top .header-contact {
  display: flex;
  align-items: center;
  padding: 8px 0;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
header.header-2 .header-top .header-contact .header-contact-left {
  width: 220px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
header.header-2 .header-top .header-contact .header-contact-left .werkenbij-link {
  color: white;
  padding: .1rem 0 .1rem 3rem;
  background-image: url('http://www.avo-verdelerbouw.nl/wp-content/themes/avo/images/rocket-icon.png');
  background-size: contain;
  background-position: center left;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header.header-2 .header-top .header-contact .header-contact-left .werkenbij-link:hover {
  color: rgba(255, 255, 255, 0.7);
}
header.header-2 .header-top .header-contact .header-contact-right {
  width: calc(100% - 200px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header.header-2 .header-top .header-contact p {
  margin-bottom: 0;
  color: white;
  font-size: 14px;
}
header.header-2 .header-top .header-contact p a {
  color: white;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header.header-2 .header-top .header-contact p a:hover {
  color: rgba(255, 255, 255, 0.7);
}
header.header-2 .header-top .header-contact p > span {
  margin-right: 2rem;
}
header.header-2 .header-top .header-contact .button {
  font-size: 14px;
}
@media (min-width: 768px) and (max-width: 991px) {
  header.header-2 .header-top .header-contact .header-contact-left .werkenbij-link {
    font-size: 1.2rem;
  }
  header.header-2 .header-top .header-contact .header-contact-right p,
  header.header-2 .header-top .header-contact .header-contact-right a {
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  header.header-2 .header-top .header-contact .header-contact-left {
    width: 145px;
  }
  header.header-2 .header-top .header-contact .header-contact-left .werkenbij-link {
    font-size: 1.1rem;
    padding: 0 0 0 2rem;
  }
  header.header-2 .header-top .header-contact .header-contact-right {
    width: calc(100% - 145px);
  }
  header.header-2 .header-top .header-contact .header-contact-right p,
  header.header-2 .header-top .header-contact .header-contact-right a {
    font-size: 1.1rem;
  }
  header.header-2 .header-top .header-contact .header-contact-right p span {
    margin-right: 0;
    width: 100%;
    display: block;
  }
  header.header-2 .header-top .header-contact .header-contact-right p span.telefoon {
    display: none;
  }
}
header.header-2 .header-top .header-menu {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  background: white;
  align-items: center;
  padding: 0 20px;
  -webkit-box-shadow: 1px 1px 5px 0px rgba(50, 50, 50, 0.15);
  -moz-box-shadow: 1px 1px 5px 0px rgba(50, 50, 50, 0.15);
  box-shadow: 1px 1px 5px 0px rgba(50, 50, 50, 0.15);
  border-radius: 3px;
}
@media (max-width: 991px) {
  header.header-2 .header-top .header-menu {
    padding: 10px;
  }
}
header.header-2 .header-top .navbar-toggle {
  float: left;
  padding: 5px;
  background: #009fe3;
  margin: 0;
  position: relative;
  align-items: center;
  display: flex;
  height: 40px;
  border-top: none;
  border-bottom: none;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header.header-2 .header-top .navbar-toggle .hamburger-menu {
  float: left;
}
header.header-2 .header-top .navbar-toggle .icon-bar {
  height: 2px;
  background: #fff;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header.header-2 .header-top .navbar-toggle .menu {
  display: none;
  float: left;
  position: relative;
  color: #1e1e1c;
  font-size: 17px;
  margin: -4px 0 -5px 10px;
  font-weight: 900;
}
header.header-2 .header-top .navbar-toggle.responsive-nav-close .hamburger-menu .icon-bar-2 {
  opacity: 0;
}
header.header-2 .header-top .navbar-toggle.responsive-nav-close .hamburger-menu .icon-bar-1 {
  -webkit-transform: rotate(45deg) scale(1) translateY(0) translateX(0);
  -moz-transform: rotate(45deg) scale(1) translateY(0) translateX(0);
  -o-transform: rotate(45deg) scale(1) translateY(0) translateX(0);
  -ms-transform: rotate(45deg) scale(1) translateY(0) translateX(0);
  transform: rotate(45deg) scale(1) translateY(0) translateX(0);
  top: 6px;
}
header.header-2 .header-top .navbar-toggle.responsive-nav-close .hamburger-menu .icon-bar-3 {
  -webkit-transform: rotate(-45deg) scale(1) translateY(0) translateX(0);
  -moz-transform: rotate(-45deg) scale(1) translateY(0) translateX(0);
  -o-transform: rotate(-45deg) scale(1) translateY(0) translateX(0);
  -ms-transform: rotate(-45deg) scale(1) translateY(0) translateX(0);
  transform: rotate(-45deg) scale(1) translateY(0) translateX(0);
  bottom: 6px;
}
header.header-2 .header-top .header-right .phone-mobile a {
  margin-right: 1rem;
}
header.header-2 .header-top .header-right .phone-mobile a:last-child {
  margin-right: 0;
}
header.header-2 .header-top .header-right .phone-mobile img {
  max-height: 30px;
}
header.header-2 .header-top .header-right .navigation {
  position: unset;
  text-align: right;
  font-size: 18px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
header.header-2 .header-top .header-right .navigation ul {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
  float: right;
}
header.header-2 .header-top .header-right .navigation li {
  position: unset;
  display: inline-block;
  padding: 40px 17px;
}
header.header-2 .header-top .header-right .navigation li a {
  display: inline-block;
  font-size: 15px;
  padding: 0;
  margin-bottom: 0;
  color: #1e1e1c;
  text-decoration: none;
  position: relative;
}
header.header-2 .header-top .header-right .navigation li a span {
  position: relative;
  z-index: 1;
}
header.header-2 .header-top .header-right .navigation li a.sf-with-ul {
  position: relative;
}
header.header-2 .header-top .header-right .navigation li a.sf-with-ul::after {
  position: absolute;
  content: "";
  background: url('http://www.avo-verdelerbouw.nl/wp-content/themes/avo/images/icon-chevron-down.svg');
  background-size: 8px;
  background-position: right 4px center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  right: 0;
  top: 4px;
  border: none;
}
header.header-2 .header-top .header-right .navigation li a.sf-with-ul:hover::after,
header.header-2 .header-top .header-right .navigation li a.sf-with-ul:active::after {
  background-image: url('http://www.avo-verdelerbouw.nl/wp-content/themes/avo/images/icon-chevron-down.svg');
}
header.header-2 .header-top .header-right .navigation li a:hover,
header.header-2 .header-top .header-right .navigation li a:active {
  color: #1e1e1c;
  text-decoration: none;
}
header.header-2 .header-top .header-right .navigation li.current-menu-item:not(.button) a,
header.header-2 .header-top .header-right .navigation li.current_page_parent:not(.button) a {
  color: #1e1e1c !important;
}
header.header-2 .header-top .header-right .navigation li.current-menu-item:not(.button) a.sf-with-ul::after,
header.header-2 .header-top .header-right .navigation li.current_page_parent:not(.button) a.sf-with-ul::after {
  background-image: url('http://www.avo-verdelerbouw.nl/wp-content/themes/avo/images/icon-chevron-down.svg');
}
header.header-2 .header-top .header-right .navigation li.menu-item-has-children > a {
  padding-right: 20px;
}
header.header-2 .header-top .header-right .navigation li > ul.dropdown-menu {
  list-style: none;
  padding: 0;
  position: absolute;
  top: 100%;
  width: 100%;
  padding: 40px 60px 40px 550px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1400px;
  background: #eeeeee;
  border: none;
  min-width: 320px;
  margin: 0;
  display: none;
  text-align: left;
  z-index: 203;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  box-shadow: none;
  border: 1px solid #e1e1e1;
  border-top: 0;
  min-height: 275px;
}
header.header-2 .header-top .header-right .navigation li > ul.dropdown-menu li {
  display: inline-block;
  position: relative;
  width: 100%;
  margin-bottom: 16px;
  padding: 0;
  background: none;
}
header.header-2 .header-top .header-right .navigation li > ul.dropdown-menu li a {
  display: inline-block;
  color: #1e1e1c;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: none;
}
header.header-2 .header-top .header-right .navigation li > ul.dropdown-menu li a::before {
  content: '\f105';
  display: inline-block;
  font: normal normal normal 16px/1 FontAwesome;
  margin-right: 8px;
  color: #1e1e1c;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header.header-2 .header-top .header-right .navigation li > ul.dropdown-menu li a:hover {
  color: #009fe3;
  text-decoration: underline;
  background: none;
}
header.header-2 .header-top .header-right .navigation li > ul.dropdown-menu li a:hover::before {
  color: #009fe3;
  margin-right: 12px;
}
header.header-2 .header-top .header-right .navigation li > ul.dropdown-menu li.current_page_item {
  font-weight: 700;
}
header.header-2 .header-top .header-right .navigation li > ul.dropdown-menu li.current_page_item a::before {
  color: #009fe3;
}
header.header-2 .header-top .header-right .navigation li > ul.dropdown-menu .tekst-container {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 550px;
  padding: 40px 90px 40px 60px;
  -webkit-column-count: 0;
  -moz-column-count: 0;
  column-count: 0;
}
header.header-2 .header-top .header-right .navigation li > ul.dropdown-menu .tekst-container h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #1e1e1c;
  margin-top: 0;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  header.header-2 .header-top .header-right .navigation li > ul.dropdown-menu .tekst-container h3 {
    font-size: 20px;
  }
}
header.header-2 .header-top .header-right .navigation li > ul.dropdown-menu .tekst-container p {
  font-size: 14px;
  color: #262626;
}
header.header-2 .header-top .header-right .navigation .nav > ul > li.menu-item-has-children > a::before {
  height: calc(100% + 55px);
}
header.header-2 .header-top .header-right .navigation .nav > ul > li > a {
  position: relative;
}
header.header-2 .header-top .header-right .navigation .nav > ul > li > a::before {
  content: '';
  position: absolute;
  width: calc(100% + 30px);
  left: -15px;
  top: -14px;
  height: calc(100% + 30px);
  background: #eeeeee;
  z-index: 0;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header.header-2 .header-top .header-right .navigation .nav > ul > li:hover > a::before {
  opacity: 1;
}
header.header-2 .header-top .header-right .header-telefoonnummers {
  float: right;
  display: flex;
}
header.header-2 .header-top .header-right .header-telefoonnummers .telefoonnummer-item {
  display: inline-block;
  width: 130px;
  margin-right: 50px;
}
header.header-2 .header-top .header-right .header-telefoonnummers .telefoonnummer-item span {
  display: inline-block;
  color: white;
}
header.header-2 .header-top .header-right .header-telefoonnummers .telefoonnummer-item span.telefoonnummer-icon {
  float: left;
  width: 21px;
  height: 39px;
  background-image: url('http://www.avo-verdelerbouw.nl/wp-content/themes/avo/images/icon-phone-white.png');
  background-size: 100% auto;
}
header.header-2 .header-top .header-right .header-telefoonnummers .telefoonnummer-item span.telefoonnummer-titel {
  float: right;
  width: 100%;
  width: calc(100% - 31px);
  font-weight: 300;
  text-transform: uppercase;
}
header.header-2 .header-top .header-right .header-telefoonnummers .telefoonnummer-item span.telefoonnummer {
  float: right;
  width: 100%;
  width: calc(100% - 31px);
  font-weight: 800;
}
header.header-2 .header-top .header-right .header-telefoonnummers .telefoonnummer-item span.telefoonnummer a {
  display: inline-block;
  color: #fff;
}
header.header-2 .header-top .header-right .header-telefoonnummers .telefoonnummer-item.storing span.telefoonnummer-icon {
  background-image: url('http://www.avo-verdelerbouw.nl/wp-content/themes/avo/images/icon-phone-green.png');
}
@media (min-width: 1200px) and (max-width: 1400px) {
  header.header-2 .header-top .header-right .navigation li {
    padding: 40px 8px;
    margin-right: 0;
  }
  header.header-2 .header-top .header-right .navigation li a {
    font-size: 13px;
  }
  header.header-2 .header-top .header-contact-button a {
    font-size: 13px;
    padding-right: 55px;
    padding-left: 8px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.header-2 .header-top .logo {
    width: 95px;
  }
  header.header-2 .header-top .logo a.logolink {
    height: 40px;
  }
  header.header-2 .header-top .logo a.logolink img {
    height: auto;
    max-width: 100%;
    max-height: 100%;
  }
  header.header-2 .header-top .header-right .navigation ul {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  header.header-2 .header-top .header-right .navigation li {
    padding: 30px 5px;
    margin-right: 0;
  }
  header.header-2 .header-top .header-right .navigation li a {
    font-size: 12px;
  }
  header.header-2 .header-top .header-contact-button a {
    font-size: 12px;
    padding-right: 50px;
    padding-left: 12px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  header.header-2 .header-top .header-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header.header-2 .header-top .logo {
    margin-left: 3rem;
  }
  header.header-2 .header-top .logo a.logolink {
    height: 40px;
  }
  header.header-2 .header-top .logo a.logolink img {
    height: auto;
    max-width: 100%;
    max-height: 100%;
  }
  header.header-2 .header-top .navbar-toggle {
    display: flex;
    height: 40px;
  }
  header.header-2 .header-top .header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
  }
  header.header-2 .header-top .header-right .navigation {
    display: none;
  }
  header.header-2 .header-top .header-right .header-telefoonnummers .telefoonnummer-item {
    margin-right: 30px;
  }
  header.header-2 .header-top .header-contact-button {
    display: none;
  }
}
@media (max-width: 767px) {
  header.header-2 .header-top .header-menu {
    width: calc(100% + 30px);
    -webkit-transform: translate(-15px, 0);
    -moz-transform: translate(-15px, 0);
    -o-transform: translate(-15px, 0);
    -ms-transform: translate(-15px, 0);
    transform: translate(-15px, 0);
  }
  header.header-2 .header-top .header-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header.header-2 .header-top .logo {
    margin-left: 1.5rem;
    width: 160px;
  }
  header.header-2 .header-top .logo a.logolink {
    height: 38px;
  }
  header.header-2 .header-top .logo a.logolink img {
    height: auto;
    max-width: 100%;
    max-height: 100%;
  }
  header.header-2 .header-top .navbar-toggle {
    display: flex;
    height: 38px;
  }
  header.header-2 .header-top .header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  header.header-2 .header-top .header-right .navigation {
    display: none;
  }
}
.fadeInUpBig {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#hoofdnavigatie {
  display: none;
  position: fixed;
  left: 0;
  top: 0px;
  right: 0;
  background-color: #eeeeee;
  z-index: 1490;
  padding: 250px 0 50px 0;
  height: 100%;
  overflow-y: auto;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
#hoofdnavigatie.open::after {
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transition-delay: 1s;
}
#hoofdnavigatie .container > .row {
  display: flex;
  align-items: flex-end;
}
#hoofdnavigatie .nav {
  padding: 0;
  margin: 0;
}
#hoofdnavigatie .nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
  padding: 15px 0;
}
#hoofdnavigatie .nav ul li {
  display: inline-block;
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}
#hoofdnavigatie .nav ul li:last-child {
  margin-bottom: 0;
}
#hoofdnavigatie .nav ul li a {
  display: inline-block;
  color: #1e1e1c;
  font-size: 34px;
  font-weight: 800;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding-left: 25px;
}
#hoofdnavigatie .nav ul li a::before {
  position: absolute;
  top: 50%;
  -webkit-transform: rotate(0deg) scale(1) translateY(-50%) translateX(0);
  -moz-transform: rotate(0deg) scale(1) translateY(-50%) translateX(0);
  -o-transform: rotate(0deg) scale(1) translateY(-50%) translateX(0);
  -ms-transform: rotate(0deg) scale(1) translateY(-50%) translateX(0);
  transform: rotate(0deg) scale(1) translateY(-50%) translateX(0);
  left: 0;
  content: '\f105';
  display: inline-block;
  font: normal normal normal 26px/1 FontAwesome;
  color: #1e1e1c;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#hoofdnavigatie .nav ul li a:hover,
#hoofdnavigatie .nav ul li a:active,
#hoofdnavigatie .nav ul li a:focus {
  color: #009fe3;
  text-decoration: underline;
  padding-left: 30px;
}
#hoofdnavigatie .nav ul li a:hover::before,
#hoofdnavigatie .nav ul li a:active::before,
#hoofdnavigatie .nav ul li a:focus::before {
  color: #009fe3;
}
#hoofdnavigatie .nav ul li.current-menu-item a,
#hoofdnavigatie .nav ul li.current_page_parent a {
  color: rgba(30, 30, 28, 0.6);
}
#hoofdnavigatie .nav ul li.current-menu-item a::before,
#hoofdnavigatie .nav ul li.current_page_parent a::before {
  color: #009fe3;
}
#hoofdnavigatie .hoofdnavigatie-contact {
  padding: 15px 35px 0 35px;
  margin-bottom: 15px;
}
#hoofdnavigatie .hoofdnavigatie-contact h3 {
  font-size: 16px;
  margin-bottom: 0;
  color: #1e1e1c;
  margin-top: 0;
}
#hoofdnavigatie .hoofdnavigatie-contact h3.groen {
  color: #42bc18;
}
#hoofdnavigatie .hoofdnavigatie-contact p {
  color: #1e1e1c;
}
#hoofdnavigatie .hoofdnavigatie-contact a {
  color: #1e1e1c;
}
#hoofdnavigatie .hoofdnavigatie-contact a:hover {
  text-decoration: underline;
}
#hoofdnavigatie .hoofdnavigatie-contact ul.social-media {
  padding: 0;
  margin: 15px 0 0 0;
  display: inline-block;
}
#hoofdnavigatie .hoofdnavigatie-contact ul.social-media li {
  display: inline-block;
  float: left;
  margin-right: 10px;
}
#hoofdnavigatie .hoofdnavigatie-contact ul.social-media li a {
  background-size: 100% auto;
  height: 40px;
  width: 40px;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#hoofdnavigatie .hoofdnavigatie-contact ul.social-media li a.icon-tw {
  background-image: url('http://www.avo-verdelerbouw.nl/wp-content/themes/avo/images/icon-twitter.png');
}
#hoofdnavigatie .hoofdnavigatie-contact ul.social-media li a.icon-fb {
  background-image: url('http://www.avo-verdelerbouw.nl/wp-content/themes/avo/images/icon-facebook.png');
}
#hoofdnavigatie .hoofdnavigatie-contact ul.social-media li a.icon-yt {
  background-image: url('http://www.avo-verdelerbouw.nl/wp-content/themes/avo/images/icon-youtube.png');
}
#hoofdnavigatie .hoofdnavigatie-contact ul.social-media li a.icon-pi {
  background-image: url('http://www.avo-verdelerbouw.nl/wp-content/themes/avo/images/icon-pinterest.png');
}
#hoofdnavigatie .hoofdnavigatie-contact ul.social-media li a:hover {
  -webkit-transform: rotate(0deg) scale(1.15) translateY(0) translateX(0);
  -moz-transform: rotate(0deg) scale(1.15) translateY(0) translateX(0);
  -o-transform: rotate(0deg) scale(1.15) translateY(0) translateX(0);
  -ms-transform: rotate(0deg) scale(1.15) translateY(0) translateX(0);
  transform: rotate(0deg) scale(1.15) translateY(0) translateX(0);
}
#hoofdnavigatie .hoofdnavigatie-contact ul.social-media li:last-child {
  margin-right: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  #hoofdnavigatie {
    padding: 150px 0 30px 0;
  }
  #hoofdnavigatie .nav ul {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
  #hoofdnavigatie .nav ul li a {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  #hoofdnavigatie {
    padding: 110px 0 10px 0;
  }
  #hoofdnavigatie .nav ul {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
  #hoofdnavigatie .nav ul li a {
    font-size: 18px;
    padding-left: 15px;
  }
  #hoofdnavigatie .nav ul li a::before {
    font-size: 14px;
    margin-right: 5px;
  }
  #hoofdnavigatie .hoofdnavigatie-contact {
    padding: 15px 0 0 0;
    border: none;
    border-top: 1px solid #4f4f4e;
  }
  #hoofdnavigatie .hoofdnavigatie-contact ul.social-media {
    margin-top: 10px;
  }
  #hoofdnavigatie .hoofdnavigatie-contact ul.social-media li {
    margin-right: 7px;
  }
  #hoofdnavigatie .hoofdnavigatie-contact ul.social-media li a {
    height: 25px;
    width: 25px;
  }
  #hoofdnavigatie .container > .row {
    display: block;
  }
}
ul.breadcrumbs {
  position: relative;
  padding: 30px 0;
  list-style: none;
  width: 100%;
  display: inline-block;
  margin-bottom: 0px;
}
ul.breadcrumbs li {
  display: inline-block;
  font-family: 'Titillium Web', sans-serif;
  color: #1e1e1c;
  font-size: 16px;
  font-weight: 500;
}
ul.breadcrumbs li a {
  color: rgba(30, 30, 28, 0.4);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
ul.breadcrumbs li a:hover {
  color: #1e1e1c;
  text-decoration: underline;
}
ul.breadcrumbs li.separator {
  margin: 0 8px;
}
@media (max-width: 767px) {
  ul.breadcrumbs {
    padding: 15px 0;
    margin-bottom: 15px;
  }
  ul.breadcrumbs li {
    font-size: 12px;
  }
  ul.breadcrumbs li.separator {
    margin: 0 4px;
  }
}
.breadcrumbs-full {
  width: 100%;
  background: white;
  border-bottom: 1px solid #9d9d9d;
}
.breadcrumbs-full ul.breadcrumbs {
  margin-bottom: 0;
  border-bottom: 0;
}
@media (max-width: 767px) {
  .breadcrumbs-full {
    padding: 0 15px;
  }
}
.page-title-full {
  width: 100%;
  background: #eeeeee;
  padding: 115px 0 35px 0;
}
.page-title-full h1 {
  font-size: 39px;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 767px) {
  .page-title-full {
    padding: 65px 15px 20px 15px;
  }
  .page-title-full h1 {
    font-size: 30px;
  }
}
.page-title-full .contact-section-blocks {
  padding: 20px 0 40px 0;
}
.page-uitgelicht-item {
  margin-bottom: 60px;
  background-image: linear-gradient(0deg, #ffffff 50%, #eeeeee 50%);
}
.ajax_posts {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .ajax_posts {
    display: inline-block;
  }
}
.projecten-overzicht .module-item .module-item-image {
  display: block;
}
.projecten-overzicht .module-item .module-item-info {
  background: #eeeeee;
}
.module-item {
  margin-bottom: 35px;
  border-radius: 3px;
}
.module-item.uitgelicht-module-item {
  margin-bottom: 0;
  overflow: hidden;
}
.module-item.uitgelicht-module-item .module-item-image {
  padding: 30px 50px;
}
.module-item.uitgelicht-module-item .module-item-image .container {
  padding: 0;
}
.module-item.uitgelicht-module-item .module-item-image .container .module-item-info {
  background: rgba(255, 255, 255, 0.8);
  padding: 60px 65px 40px 65px;
  width: 100%;
  max-width: 700px;
}
.module-item.uitgelicht-module-item .module-item-image .container .module-item-info h2 {
  font-size: 39px;
  line-height: 1.4;
  margin: 0 0 30px 0;
  width: 100%;
  border: none;
}
.module-item.nieuws,
.module-item.project {
  height: 100%;
  margin-bottom: 0;
  padding-bottom: 35px;
}
.module-item.nieuws > a,
.module-item.project > a {
  background: #eeeeee;
  display: inline-block;
  height: 100%;
  border-radius: 3px;
  overflow: hidden;
}
.module-item.nieuws > a.bg-white,
.module-item.project > a.bg-white {
  background: white;
}
.module-item.nieuws > a:hover .module-item-image-element,
.module-item.project > a:hover .module-item-image-element {
  transform: scale(1.1);
}
.module-item.nieuws > a:hover .module-item-info h2,
.module-item.project > a:hover .module-item-info h2 {
  color: #009fe3;
}
.module-item.nieuws .module-item-image,
.module-item.project .module-item-image {
  overflow: hidden;
}
.module-item.nieuws .module-item-info,
.module-item.project .module-item-info {
  background: none;
  padding: 25px 30px;
}
.module-item.nieuws .module-item-info h2,
.module-item.project .module-item-info h2 {
  border: none;
  min-height: 60px;
}
.module-item.nieuws .module-item-info p:last-of-type,
.module-item.project .module-item-info p:last-of-type {
  margin-bottom: 0;
}
.module-item.project .module-item-info h2 {
  min-height: 40px;
}
.module-item:not(.uitgelicht-module-item):not(.nieuws):not(.project) .module-item-image {
  position: relative;
}
.module-item:not(.uitgelicht-module-item):not(.nieuws):not(.project) .module-item-info {
  position: absolute;
  bottom: 15px;
  right: 15px;
  left: 15px;
  background: none;
}
.module-item:not(.uitgelicht-module-item):not(.nieuws):not(.project) .module-item-info .module-item-info-inner .module-item-titel {
  display: block;
  margin-bottom: 15px;
}
.module-item:not(.uitgelicht-module-item):not(.nieuws):not(.project) .module-item-info .module-item-info-inner .module-item-titel .module-item-titel-inner {
  display: inline-block;
  background: rgba(255, 255, 255, 0.8);
  padding: 12px 20px;
}
.module-item:not(.uitgelicht-module-item):not(.nieuws):not(.project) .module-item-info .module-item-info-inner .module-item-titel .module-item-titel-inner h2 {
  min-height: 0px;
  border: none;
  margin: 0;
}
.module-item:not(.uitgelicht-module-item):not(.nieuws):not(.project) .module-item-info .module-item-info-inner span.textlink {
  display: inline-block;
  color: white;
  text-transform: uppercase;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #009fe3;
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 16px;
}
.module-item:not(.uitgelicht-module-item):not(.nieuws):not(.project) .module-item-info .module-item-info-inner span.textlink::before {
  content: '\f105';
  display: inline-block;
  font-family: FontAwesome;
  font-size: 16px;
  color: white;
  margin-right: 12px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.module-item:not(.uitgelicht-module-item):not(.nieuws):not(.project) .module-item-info .module-item-info-inner span.textlink:hover,
.module-item:not(.uitgelicht-module-item):not(.nieuws):not(.project) .module-item-info .module-item-info-inner span.textlink:active,
.module-item:not(.uitgelicht-module-item):not(.nieuws):not(.project) .module-item-info .module-item-info-inner span.textlink:focus {
  background: #0082ba;
  text-decoration: none;
}
.module-item:not(.uitgelicht-module-item):not(.nieuws):not(.project) .module-item-info .module-item-info-inner span.textlink:hover::before,
.module-item:not(.uitgelicht-module-item):not(.nieuws):not(.project) .module-item-info .module-item-info-inner span.textlink:active::before,
.module-item:not(.uitgelicht-module-item):not(.nieuws):not(.project) .module-item-info .module-item-info-inner span.textlink:focus::before {
  margin-left: 4px;
  margin-right: 8px;
}
@media (max-width: 767px) {
  .module-item:not(.uitgelicht-module-item):not(.nieuws):not(.project) .module-item-info .module-item-info-inner span.textlink {
    padding: 6px 12px;
    font-size: 14px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .module-item:not(.uitgelicht-module-item):not(.nieuws):not(.project) .module-item-info {
    position: absolute;
    bottom: 8px;
    right: 8px;
    left: 8px;
  }
}
.module-item .module-item-image {
  display: inline-block;
  width: 100%;
  min-height: 200px;
  background-size: cover;
  background-position: center center;
}
.module-item .module-item-image .module-item-image-element {
  width: 100%;
  min-height: 250px;
  background-size: cover;
  background-position: center center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.module-item .module-item-image.module-item-image-link {
  overflow: hidden;
}
.module-item .module-item-image.module-item-image-link:hover .module-item-image-element {
  transform: scale(1.1);
}
.module-item .module-item-info {
  padding: 12px 15px;
}
.module-item .module-item-info h2 {
  font-size: 18px;
  line-height: 1.7;
  font-weight: 700;
  margin: 0;
  min-height: 75px;
  border-bottom: 1px solid #9d9d9d;
  margin-bottom: 15px;
}
.module-item .module-item-info a.textlink {
  font-size: 16px;
  color: #1e1e1c;
  text-transform: uppercase;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.module-item .module-item-info a.textlink::before {
  content: '\f105';
  display: inline-block;
  font-family: FontAwesome;
  font-size: 16px;
  color: #1e1e1c;
  margin-right: 8px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.module-item .module-item-info a.textlink:hover,
.module-item .module-item-info a.textlink:active,
.module-item .module-item-info a.textlink:focus {
  color: #009fe3;
  text-decoration: underline;
}
.module-item .module-item-info a.textlink:hover::before,
.module-item .module-item-info a.textlink:active::before,
.module-item .module-item-info a.textlink:focus::before {
  color: #009fe3;
  margin-right: 12px;
}
@media (max-width: 767px) {
  .module-item.uitgelicht-module-item {
    padding: 0 15px;
  }
  .module-item.uitgelicht-module-item .module-item-image {
    padding: 20px 15px;
  }
  .module-item.uitgelicht-module-item .module-item-image .container .module-item-info {
    padding: 15px;
    max-width: 100%;
  }
  .module-item.uitgelicht-module-item .module-item-image .container .module-item-info h2 {
    font-size: 20px;
    width: 100%;
    margin-bottom: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .module-item.uitgelicht-module-item .module-item-image {
    padding: 20px 40px;
  }
  .module-item.uitgelicht-module-item .module-item-image .container .module-item-info {
    padding: 50px 30px 30px 30px;
    max-width: 400px;
  }
}
.loadmorebutton_section {
  text-align: center;
}
.loadmorebutton_section a.loadmorebutton {
  background-color: #e3652a;
  position: relative;
  color: white;
  font-size: 16px;
  padding: 12px 65px 12px 15px;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 12px 35px;
}
.loadmorebutton_section a.loadmorebutton::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 46px;
  background-color: #ca521b;
  background-image: url('http://www.avo-verdelerbouw.nl/wp-content/themes/avo/images/icon-chevron-right-white.svg');
  background-size: auto 15px;
  background-position: center center;
  background-repeat: no-repeat;
}
.loadmorebutton_section a.loadmorebutton:hover {
  background-color: #ca521b;
  text-decoration: none;
  color: white;
}
.loadmorebutton_section a.loadmorebutton:focus,
.loadmorebutton_section a.loadmorebutton:active {
  outline: none;
  color: white;
}
.loadmorebutton_section a.loadmorebutton.color-1 {
  background-color: #009fe3;
}
.loadmorebutton_section a.loadmorebutton.color-1::after {
  background-color: #0082ba;
}
.loadmorebutton_section a.loadmorebutton.color-1:hover {
  background-color: #0082ba;
}
.header-single-item {
  height: 700px;
  background-size: cover;
  background-position: center center;
  position: relative;
}
.header-single-item .breadcrumbs-full {
  background: rgba(255, 255, 255, 0.2);
}
.header-single-item .header-single-item-title {
  position: absolute;
  bottom: 50px;
  background: rgba(255, 255, 255, 0.9);
  padding: 35px 40px 35px 40px;
  max-width: calc(100% - 60px);
  border-radius: 3px;
}
.header-single-item .header-single-item-title h1 {
  font-size: 39px;
  line-height: 1.4;
  margin: 0;
  border: none;
}
.header-single-item .header-single-item-title ul.breadcrumbs {
  position: absolute;
  bottom: calc(100% + 30px);
  padding: 0;
  margin: 0;
}
.header-single-item .header-single-item-title ul.breadcrumbs li {
  color: white;
}
.header-single-item .header-single-item-title ul.breadcrumbs li a {
  color: rgba(238, 238, 238, 0.3);
}
.header-single-item .header-single-item-title ul.breadcrumbs li a:hover {
  color: white;
}
@media (max-width: 767px) {
  .header-single-item {
    height: 275px;
  }
  .header-single-item .header-single-item-title {
    padding: 15px;
    max-width: calc(100% - 60px);
    margin-left: 15px;
    bottom: 30px;
  }
  .header-single-item .header-single-item-title h1 {
    font-size: 20px;
    width: 100%;
  }
  .header-single-item .header-single-item-title ul.breadcrumbs {
    margin: 0;
    bottom: calc(100% + 10px);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header-single-item {
    height: 500px;
  }
  .header-single-item .header-single-item-title {
    padding: 30px;
    bottom: 50px;
  }
}
.module-item-detail .page-text-content .module-item-detail-text {
  padding: 30px 40px;
}
.module-item-detail .page-text-content .module-item-detail-images {
  width: 100%;
  max-width: 840px;
}
.module-item-detail .page-text-content .module-item-detail-images img {
  max-width: 100%;
  margin-bottom: 35px;
}
.module-item-detail .page-text-content .module-item-detail-images img:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .module-item-detail {
    height: 350px;
  }
  .module-item-detail .page-text-content .module-item-detail-text {
    padding: 10px 0px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .module-item-detail {
    height: 500px;
  }
  .module-item-detail .header-single-item-title {
    padding: 50px 30px 30px 30px;
  }
}
.more-module-items .module-item .module-item-image {
  display: block;
}
.more-module-items h3 {
  margin-bottom: 30px;
  font-size: 28px;
}
@media (max-width: 767px) {
  .more-module-items {
    padding: 20px 0 10px 0;
  }
}
.header-image {
  position: relative;
  padding: 200px 0 250px 0;
  background-size: cover;
  background-position: center center;
}
.header-image .video-element {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.header-image .video-element .video-js {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: auto;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.header-image .header-image-info {
  width: 100%;
  max-width: 800px;
}
.header-image .header-image-info span.toptitel {
  color: white;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 16px;
  display: block;
}
.header-image .header-image-info h1,
.header-image .header-image-info h2 {
  font-size: 39px;
  line-height: 1.4;
  margin: 0 0 30px 0;
  width: 85%;
  border: none;
  color: white;
}
.header-image .header-image-info a {
  display: inline-block;
  font-size: 16px;
  color: white;
  text-transform: uppercase;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #009fe3;
  padding: 12px 20px;
  border-radius: 4px;
}
.header-image .header-image-info a::before {
  content: '\f105';
  display: inline-block;
  font-family: FontAwesome;
  font-size: 16px;
  color: white;
  margin-right: 12px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header-image .header-image-info a:hover,
.header-image .header-image-info a:active,
.header-image .header-image-info a:focus {
  background: #0082ba;
  text-decoration: none;
}
.header-image .header-image-info a:hover::before,
.header-image .header-image-info a:active::before,
.header-image .header-image-info a:focus::before {
  margin-left: 4px;
  margin-right: 8px;
}
@media (max-width: 767px) {
  .header-image .header-image-info a {
    padding: 6px 12px;
    font-size: 14px;
  }
}
.header-image.home .video-element {
  bottom: -3rem;
}
@media (max-width: 767px) {
  .header-image {
    padding: 90px 0 90px 0;
  }
  .header-image .header-image-info span.toptitel {
    font-size: 13px;
    margin-bottom: 5px;
  }
  .header-image .header-image-info h1,
  .header-image .header-image-info h2 {
    font-size: 20px;
    width: 100%;
    margin-bottom: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header-image {
    padding: 150px 0 150px 0;
  }
  .header-image .header-image-info span.toptitel {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .header-image .header-image-info h1,
  .header-image .header-image-info h2 {
    font-size: 25px;
    width: 100%;
    margin-bottom: 15px;
  }
}
/*
.page-id-34																					{
	.header-image																			{
		.header-image-info																	{ padding: 125px 40px 40px 40px; 
			@media (max-width: @screen-xs-max) 												{ padding: 30px 15px 15px 15px; }
			@media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) 				{ padding: 60px 35px 35px 35px; }
			
		}
	}
}
*/
.styled-input-list {
  margin: 0;
  list-style: none;
  width: 100%;
  padding: 0;
}
.styled-input-list li {
  display: inline-block;
  position: relative;
  width: 100%;
  margin-bottom: 16px;
  padding: 0;
  background: none;
}
.styled-input-list li a {
  display: inline-block;
  color: #1e1e1c;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: none;
}
.styled-input-list li a::before {
  content: '\f105';
  display: inline-block;
  font: normal normal normal 16px/1 FontAwesome;
  margin-right: 8px;
  color: #1e1e1c;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.styled-input-list li a:hover {
  color: #009fe3;
  text-decoration: underline;
  background: none;
}
.styled-input-list li a:hover::before {
  color: #009fe3;
  margin-right: 12px;
}
.styled-input-list li.current_page_item {
  font-weight: 700;
}
.styled-input-list li.current_page_item a::before {
  color: #009fe3;
}
.styled-ul-text {
  margin: 0;
  list-style: none;
  width: 100%;
  padding: 0;
}
.styled-ul-text li {
  font-size: 16px;
  line-height: 2;
  color: #1e1e1c;
  font-weight: 400;
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
  width: 100%;
  margin-bottom: 0;
  padding: 0;
  background: none;
}
.styled-ul-text li b,
.styled-ul-text li strong {
  font-weight: 600;
}
.styled-ul-text li::before {
  content: '\f105';
  display: inline-block;
  font: normal normal normal 16px/1 FontAwesome;
  margin-right: 8px;
  color: #1e1e1c;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.styled-ul-text li a {
  display: inline-block;
  color: #1e1e1c;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: none;
}
.styled-ul-text li a:hover {
  color: #009fe3;
  text-decoration: underline;
  background: none;
}
.styled-ul-text li a:hover::before {
  color: #009fe3;
  margin-right: 12px;
}
.infoblocks-home {
  margin-top: -68px;
}
.infoblocks-home .infoblocks-home-inner {
  display: flex;
  margin-bottom: 95px;
  border-radius: 3px;
}
.infoblocks-home .infoblocks-home-inner .infoblock-item {
  display: flex;
}
.infoblocks-home .infoblocks-home-inner .infoblock-item .infoblock-item-inner {
  background: white;
  padding: 30px 35px 30px 35px;
  width: 100%;
  position: relative;
  border-top: 4px solid #009fe3;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.infoblocks-home .infoblocks-home-inner .infoblock-item .infoblock-item-inner h2 {
  width: 100%;
  margin-top: 0;
}
.infoblocks-home .infoblocks-home-inner .infoblock-item .infoblock-item-inner ul {
  margin: 0;
  list-style: none;
  width: 100%;
  padding: 0;
  padding: 15px 10px 0 10px;
}
.infoblocks-home .infoblocks-home-inner .infoblock-item .infoblock-item-inner ul li {
  display: inline-block;
  position: relative;
  width: 100%;
  margin-bottom: 16px;
  padding: 0;
  background: none;
}
.infoblocks-home .infoblocks-home-inner .infoblock-item .infoblock-item-inner ul li a {
  display: inline-block;
  color: #1e1e1c;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: none;
}
.infoblocks-home .infoblocks-home-inner .infoblock-item .infoblock-item-inner ul li a::before {
  content: '\f105';
  display: inline-block;
  font: normal normal normal 16px/1 FontAwesome;
  margin-right: 8px;
  color: #1e1e1c;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.infoblocks-home .infoblocks-home-inner .infoblock-item .infoblock-item-inner ul li a:hover {
  color: #009fe3;
  text-decoration: underline;
  background: none;
}
.infoblocks-home .infoblocks-home-inner .infoblock-item .infoblock-item-inner ul li a:hover::before {
  color: #009fe3;
  margin-right: 12px;
}
.infoblocks-home .infoblocks-home-inner .infoblock-item .infoblock-item-inner ul li.current_page_item {
  font-weight: 700;
}
.infoblocks-home .infoblocks-home-inner .infoblock-item .infoblock-item-inner ul li.current_page_item a::before {
  color: #009fe3;
}
.infoblocks-home .infoblocks-home-inner .infoblock-item .infoblock-item-inner .image-infoblock {
  height: 250px;
  width: 100%;
  left: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
  position: absolute;
}
.infoblocks-home .infoblocks-home-inner .infoblock-item .infoblock-item-inner:hover {
  background-color: #f7f7f7;
  border-color: #f7f7f7;
}
.infoblocks-home .infoblocks-home-inner .infoblock-item.nieuws .infoblock-item-inner {
  background: #009fe3;
  padding: 20px 30px;
  width: 100%;
}
.infoblocks-home .infoblocks-home-inner .infoblock-item.nieuws .infoblock-item-inner h2 {
  color: white;
}
.infoblocks-home .infoblocks-home-inner .infoblock-item.nieuws .infoblock-item-inner ul {
  max-width: 75%;
  padding: 15px 0;
}
.infoblocks-home .infoblocks-home-inner .infoblock-item.nieuws .infoblock-item-inner ul li {
  color: white;
  padding: 22px 6px;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.infoblocks-home .infoblocks-home-inner .infoblock-item.nieuws .infoblock-item-inner ul li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.infoblocks-home .infoblocks-home-inner .infoblock-item.nieuws .infoblock-item-inner ul li span {
  display: inline-block;
  width: 100%;
  font-size: 13px;
  margin-bottom: 15px;
}
.infoblocks-home .infoblocks-home-inner .infoblock-item.nieuws .infoblock-item-inner ul li a {
  color: white;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.infoblocks-home .infoblocks-home-inner .infoblock-item.nieuws .infoblock-item-inner ul li a::before {
  display: none;
}
.infoblocks-home .infoblocks-home-inner .infoblock-item.nieuws .infoblock-item-inner ul li a:hover {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
}
.infoblocks-home .infoblocks-home-inner .infoblock-item.nieuws .infoblock-item-inner a.older-news {
  color: #1e1e1c;
  text-transform: uppercase;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.infoblocks-home .infoblocks-home-inner .infoblock-item.nieuws .infoblock-item-inner a.older-news::before {
  content: '\f105';
  display: inline-block;
  font: normal normal normal 16px/1 FontAwesome;
  margin-right: 8px;
  color: #1e1e1c;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.infoblocks-home .infoblocks-home-inner .infoblock-item.nieuws .infoblock-item-inner a.older-news:hover,
.infoblocks-home .infoblocks-home-inner .infoblock-item.nieuws .infoblock-item-inner a.older-news:focus,
.infoblocks-home .infoblocks-home-inner .infoblock-item.nieuws .infoblock-item-inner a.older-news:active {
  color: white;
  text-decoration: underline;
}
.infoblocks-home .infoblocks-home-inner .infoblock-item.nieuws .infoblock-item-inner a.older-news:hover::before,
.infoblocks-home .infoblocks-home-inner .infoblock-item.nieuws .infoblock-item-inner a.older-news:focus::before,
.infoblocks-home .infoblocks-home-inner .infoblock-item.nieuws .infoblock-item-inner a.older-news:active::before {
  color: white;
  margin-right: 12px;
}
@media (max-width: 767px) {
  .infoblocks-home .infoblocks-home-inner {
    display: inline-block;
    margin-bottom: 30px;
  }
  .infoblocks-home .infoblocks-home-inner .infoblock-item {
    display: inline-block;
    margin-bottom: 25px;
  }
  .infoblocks-home .infoblocks-home-inner .infoblock-item .infoblock-item-inner {
    display: inline-block;
  }
  .infoblocks-home .infoblocks-home-inner .infoblock-item .infoblock-item-inner h2 {
    font-size: 19px;
  }
  .infoblocks-home .infoblocks-home-inner .infoblock-item .infoblock-item-inner .image-infoblock {
    height: 150px;
  }
  .infoblocks-home .infoblocks-home-inner .infoblock-item:last-child .infoblock-item-inner ul {
    max-width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .infoblocks-home .infoblocks-home-inner {
    color: red;
  }
  .infoblocks-home .infoblocks-home-inner .infoblock-item .infoblock-item-inner {
    padding: 15px 17px 15px 17px;
  }
  .infoblocks-home .infoblocks-home-inner .infoblock-item .infoblock-item-inner h2 {
    font-size: 16px;
  }
  .infoblocks-home .infoblocks-home-inner .infoblock-item:last-child .infoblock-item-inner ul {
    max-width: 100%;
  }
}
.content-section-home {
  padding: 80px 0;
}
.content-section-home h1 {
  max-width: 50%;
  font-weight: 300;
  font-size: 39px;
  margin-bottom: 20px;
}
.tekst-met-afbeelding {
  padding: 80px 0;
  background: white;
}
.tekst-met-afbeelding .tekst-met-afbeelding-inner {
  display: flex;
}
.tekst-met-afbeelding .tekst-met-afbeelding-inner .tekst-container {
  display: flex;
  height: 100%;
  justify-content: center;
  flex-direction: column;
  padding: 20px 0;
}
.tekst-met-afbeelding .tekst-met-afbeelding-inner .tekst-container p a {
  color: #1e1e1c;
  text-decoration: underline;
}
.tekst-met-afbeelding .tekst-met-afbeelding-inner .tekst-container p a:hover {
  text-decoration: none;
}
.tekst-met-afbeelding .tekst-met-afbeelding-inner .tekst-container p:last-of-type {
  margin-bottom: 0;
}
.tekst-met-afbeelding .tekst-met-afbeelding-inner .tekst-container .button-container {
  margin-top: 30px;
}
.tekst-met-afbeelding .tekst-met-afbeelding-inner .image-container {
  display: flex;
  height: 100%;
  align-items: center;
}
.tekst-met-afbeelding .tekst-met-afbeelding-inner .image-container img {
  width: 100%;
  height: auto;
  border-radius: 3px;
}
@media (max-width: 767px) {
  .tekst-met-afbeelding {
    padding: 40px 0;
  }
  .tekst-met-afbeelding .tekst-met-afbeelding-inner {
    display: flex;
    flex-direction: column-reverse;
  }
  .tekst-met-afbeelding .tekst-met-afbeelding-inner .image-container {
    width: calc(100% + 60px);
    margin-left: -30px;
  }
}
@media (max-width: 767px) {
  .infoblocks-home + .tekst-met-afbeelding {
    padding-top: 0;
  }
}
.nieuws-berichten {
  padding: 80px 0;
}
.nieuws-berichten h2.look-h1 {
  text-align: center;
  margin-bottom: 50px;
}
.nieuws-berichten .nieuws-berichten-inner {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .nieuws-berichten {
    padding: 40px 0;
  }
  .nieuws-berichten h2.look-h1 {
    text-align: center;
    margin-bottom: 20px;
  }
  .nieuws-berichten .nieuws-berichten-inner {
    display: inline-block;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .nieuws-berichten h2.look-h1 {
    margin-bottom: 30px;
  }
}
.contact-section-blocks {
  padding-top: 80px;
}
.contact-section-blocks .contact-section-blocks-inner {
  display: flex;
  width: 100%;
}
.contact-section-blocks .contact-section-blocks-inner .contact-block-item {
  display: flex;
  /*
			&:last-child																	{
				.contact-block-item-inner													{
					h2																		{ color: @color_groen; }
				}
			}
*/
}
.contact-section-blocks .contact-section-blocks-inner .contact-block-item.delay {
  animation-duration: 1.2s !important;
}
.contact-section-blocks .contact-section-blocks-inner .contact-block-item .contact-block-item-inner {
  background: white;
  padding: 20px 30px 10px 30px;
  width: 100%;
}
.contact-section-blocks .contact-section-blocks-inner .contact-block-item .contact-block-item-inner h2 {
  margin-bottom: 15px;
}
.contact-section-blocks .contact-section-blocks-inner .contact-block-item .contact-block-item-inner a {
  color: #1e1e1c;
}
.contact-section-blocks .contact-section-blocks-inner .contact-block-item .contact-block-item-inner a:hover,
.contact-section-blocks .contact-section-blocks-inner .contact-block-item .contact-block-item-inner a:active,
.contact-section-blocks .contact-section-blocks-inner .contact-block-item .contact-block-item-inner a:focus {
  color: #009fe3;
  text-decoration: underline;
}
.contact-section-blocks .contact-section-blocks-inner .contact-block-item .contact-block-item-inner p {
  /*
					&.icon-contact															{ 
						&::before															{ content: ''; .fl; .inline-block; width: 37px; height: 66px; background-size: 100% auto; background-repeat: no-repeat; background-position: center center; margin-right: 25px; }
						
						&.icon-contact-adres												{ 
							&::before														{ background-image: url('http://www.avo-verdelerbouw.nl/wp-content/themes/avo/images/icon-contact-adres.png'); }
						}
						&.icon-contact-phone												{ line-height: 66px;
							&::before														{ background-image: url('http://www.avo-verdelerbouw.nl/wp-content/themes/avo/images/icon-contact-phone.png'); }
						}
						&.icon-contact-phone-green											{ line-height: 66px;
							&::before														{ background-image: url('http://www.avo-verdelerbouw.nl/wp-content/themes/avo/images/icon-contact-phone-green.png'); }
						}
						&.icon-contact-email												{ line-height: 66px;
							&::before														{ background-image: url('http://www.avo-verdelerbouw.nl/wp-content/themes/avo/images/icon-contact-email.png'); }
						}
					}
*/
}
@media (max-width: 767px) {
  .contact-section-blocks .contact-section-blocks-inner {
    display: inline-block;
  }
  .contact-section-blocks .contact-section-blocks-inner .contact-block-item {
    display: inline-block;
    margin-bottom: 25px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-section-blocks .contact-section-blocks-inner .contact-block-item .contact-block-item-inner p.icon-contact::before {
    margin-right: 12px;
  }
}
.maps {
  display: block;
  width: 100%;
  padding-bottom: 25%;
  position: relative;
}
.maps iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .maps {
    padding-bottom: 30%;
  }
}
aside.sidebar {
  width: 100%;
  height: calc(100% + 60px);
  margin-top: -60px;
  background: #eeeeee;
}
aside.sidebar::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 5000px;
  left: -4985px;
  top: 0;
  background: #eeeeee;
}
aside.sidebar .sidebar-menu {
  display: block;
  position: relative;
  width: 100%;
  padding: 0 25px 0 0;
  z-index: 10;
  background: none;
}
aside.sidebar .sidebar-menu h4 {
  position: relative;
  background: #009fe3;
  color: white;
  font-size: 24px;
  margin: 0 0 25px 0;
  font-weight: 700;
  padding: 17px 0;
}
aside.sidebar .sidebar-menu h4 span {
  font-weight: 300;
  font-size: 12px;
  display: inline-block;
  width: 100%;
  margin-bottom: 8px;
}
aside.sidebar .sidebar-menu h4::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  width: 100vw;
  background: inherit;
}
aside.sidebar .sidebar-menu h4::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 25px;
  background: inherit;
}
aside.sidebar .sidebar-menu h4 .chevron-down {
  display: none;
}
aside.sidebar .sidebar-menu .sidebar-menu-content a.button {
  margin-bottom: 30px;
}
aside.sidebar .sidebar-menu .sidebar-menu-content .sidebar-menu-list {
  margin-top: 30px;
}
aside.sidebar .sidebar-menu.with-toptitel {
  display: inline-block;
  width: 100%;
  margin-top: -20px;
}
aside.sidebar .sidebar-menu.with-toptitel h4 {
  padding-top: 5px;
}
aside.sidebar .sidebar-menu ul.sidebar-menu-list {
  margin: 0;
  list-style: none;
  width: 100%;
  padding: 0;
}
aside.sidebar .sidebar-menu ul.sidebar-menu-list li {
  display: inline-block;
  position: relative;
  width: 100%;
  margin-bottom: 16px;
  padding: 0;
  background: none;
}
aside.sidebar .sidebar-menu ul.sidebar-menu-list li a {
  display: inline-block;
  color: #1e1e1c;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: none;
}
aside.sidebar .sidebar-menu ul.sidebar-menu-list li a::before {
  content: '\f105';
  display: inline-block;
  font: normal normal normal 16px/1 FontAwesome;
  margin-right: 8px;
  color: #1e1e1c;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
aside.sidebar .sidebar-menu ul.sidebar-menu-list li a:hover {
  color: #009fe3;
  text-decoration: underline;
  background: none;
}
aside.sidebar .sidebar-menu ul.sidebar-menu-list li a:hover::before {
  color: #009fe3;
  margin-right: 12px;
}
aside.sidebar .sidebar-menu ul.sidebar-menu-list li.current_page_item {
  font-weight: 700;
}
aside.sidebar .sidebar-menu ul.sidebar-menu-list li.current_page_item a::before {
  color: #009fe3;
}
aside.sidebar .sidebar-menu a.button {
  background-color: #e3652a;
  position: relative;
  color: white;
  font-size: 16px;
  padding: 12px 65px 12px 15px;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 30px;
}
aside.sidebar .sidebar-menu a.button::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 46px;
  background-color: #ca521b;
  background-image: url('http://www.avo-verdelerbouw.nl/wp-content/themes/avo/images/icon-chevron-right-white.svg');
  background-size: auto 15px;
  background-position: center center;
  background-repeat: no-repeat;
}
aside.sidebar .sidebar-menu a.button:hover {
  background-color: #ca521b;
  text-decoration: none;
  color: white;
}
aside.sidebar .sidebar-menu a.button:focus,
aside.sidebar .sidebar-menu a.button:active {
  outline: none;
  color: white;
}
aside.sidebar .sidebar-menu a.button.color-1 {
  background-color: #009fe3;
}
aside.sidebar .sidebar-menu a.button.color-1::after {
  background-color: #0082ba;
}
aside.sidebar .sidebar-menu a.button.color-1:hover {
  background-color: #0082ba;
}
@media (max-width: 991px) {
  aside.sidebar .sidebar-menu {
    padding-right: 0;
  }
  aside.sidebar .sidebar-menu::before {
    width: calc(100% + 30px);
    left: -15px;
  }
  aside.sidebar .sidebar-menu h4 {
    margin: 0;
  }
  aside.sidebar .sidebar-menu h4.with-submenu {
    position: relative;
  }
  aside.sidebar .sidebar-menu h4.with-submenu .chevron-down {
    display: block;
    position: absolute;
    top: 0;
    right: 1.5rem;
    bottom: 0;
    width: 2rem;
    margin: 0;
    background-image: url('http://www.avo-verdelerbouw.nl/wp-content/themes/avo/images/icon-chevron-down-white.svg');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center right;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  aside.sidebar .sidebar-menu h4.with-submenu.open .chevron-down {
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
  }
  aside.sidebar .sidebar-menu .sidebar-menu-content {
    display: none;
  }
  aside.sidebar .sidebar-menu .sidebar-menu-content.open {
    max-height: 100%;
  }
}
@media (max-width: 767px) {
  aside.sidebar .sidebar-menu {
    /* &::after																		{ content:''; width: 30px; height: 100%; .abs; top: 0; right: -30px; background: @color_grijs; } */
  }
  aside.sidebar .sidebar-menu::before {
    content: '';
    width: 30px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -30px;
  }
  aside.sidebar .sidebar-menu h4::after {
    display: none;
  }
  aside.sidebar .sidebar-menu a.button {
    margin-top: 15px;
  }
}
aside.sidebar .sidebar-item {
  display: inline-block;
  width: 100%;
}
.page-banner {
  height: 450px;
  background-size: cover;
  background-position: center center;
  display: block;
  width: 100%;
}
@media (max-width: 767px) {
  .page-banner {
    height: 250px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-banner {
    height: 350px;
  }
}
.page-content.bg-light {
  background: #f9f9f9;
  position: relative;
}
.page-content.bg-light::after {
  content: '';
  width: 100vw;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  background: inherit;
}
.page-content .page-intro {
  display: inline-block;
  float: left;
  padding-left: 20px;
}
.page-content .page-intro .page-intro-content {
  display: inline-block;
  width: 100%;
}
.page-content .page-intro .page-intro-content p {
  font-weight: 500;
}
.page-content .page-intro .page-intro-content p a {
  color: #1e1e1c;
  text-decoration: underline;
}
.page-content .page-intro .page-intro-content p a:hover {
  text-decoration: none;
}
.page-content .page-intro .page-intro-content ul {
  margin: 0;
  list-style: none;
  width: 100%;
  padding: 0;
}
.page-content .page-intro .page-intro-content ul li {
  font-size: 16px;
  line-height: 2;
  color: #1e1e1c;
  font-weight: 400;
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
  width: 100%;
  margin-bottom: 0;
  padding: 0;
  background: none;
}
.page-content .page-intro .page-intro-content ul li b,
.page-content .page-intro .page-intro-content ul li strong {
  font-weight: 600;
}
.page-content .page-intro .page-intro-content ul li::before {
  content: '\f105';
  display: inline-block;
  font: normal normal normal 16px/1 FontAwesome;
  margin-right: 8px;
  color: #1e1e1c;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-content .page-intro .page-intro-content ul li a {
  display: inline-block;
  color: #1e1e1c;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: none;
}
.page-content .page-intro .page-intro-content ul li a:hover {
  color: #009fe3;
  text-decoration: underline;
  background: none;
}
.page-content .page-intro .page-intro-content ul li a:hover::before {
  color: #009fe3;
  margin-right: 12px;
}
.page-content .page-intro .page-intro-content ul li {
  font-weight: 500;
}
.page-content .page-text-content {
  padding: 20px 0 100px 20px;
  display: inline-block;
  float: left;
  width: 100%;
}
.page-content .page-text-content img {
  border-radius: 3px;
}
.page-content .page-text-content img.size-large {
  width: 100%;
  margin: 20px 0;
  height: auto;
}
.page-content .page-text-content h2,
.page-content .page-text-content h3,
.page-content .page-text-content h4 {
  margin-top: 35px;
}
.page-content .page-text-content p:first-of-type img {
  margin-top: 0;
}
.page-content .page-text-content .vacatures-overzicht {
  width: 75%;
}
.page-content .page-text-content .vacatures-overzicht h2 {
  color: #009fe3;
}
.page-content.page-content-full .page-text-content {
  padding: 40px 0;
}
.page-content.page-content-full .page-text-content .contactformulier {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .page-content {
    padding: 0 15px;
  }
  .page-content.bg-light::before {
    content: '';
    width: 30px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
    background: inherit;
  }
  .page-content .page-intro {
    padding-left: 0;
  }
  .page-content .page-text-content {
    padding: 20px 0px;
  }
  .page-content .page-text-content img.size-large {
    width: calc(100% + 60px);
    margin: 10px 0 10px -30px;
  }
  .page-content .page-text-content h2,
  .page-content .page-text-content h3,
  .page-content .page-text-content h4 {
    margin-top: 15px;
  }
  .page-content .page-intro {
    margin-top: 10px;
  }
  .page-content .page-intro .page-intro-content h1 {
    width: 100%;
    font-size: 30px;
  }
  .page-content .page-text-content .vacatures-overzicht {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-content .page-intro .page-intro-content h1 {
    width: 55%;
    font-size: 30px;
  }
}
.latest-project-featured {
  padding: 80px 0;
  background: white;
}
.latest-project-featured .module-item {
  padding: 0;
}
.latest-project-featured .module-item.uitgelicht-module-item .module-item-image {
  padding: 120px 0;
}
.latest-project-featured .module-item.uitgelicht-module-item .module-item-image .container {
  padding: 0 15px;
}
@media (max-width: 767px) {
  .latest-project-featured {
    padding: 40px 0;
  }
  .latest-project-featured .module-item.uitgelicht-module-item .module-item-image {
    padding: 40px 0;
  }
}
.zakenpartners {
  background: #eeeeee;
  padding: 80px 0 80px 0;
}
.zakenpartners h2 {
  text-align: center;
  margin: 0;
}
.zakenpartners .referentie-slider {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 30px;
}
.zakenpartners .referentie-slider .referentie-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  width: 160px;
  height: 205px;
  border-radius: 5px;
  text-align: center;
  outline: none;
}
.zakenpartners .referentie-slider .referentie-item .referentie-item-inner {
  background: white;
  width: 100%;
  height: 100%;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  border-radius: 3px;
}
.zakenpartners .referentie-slider .referentie-item .referentie-item-inner a {
  display: inline-block;
  width: 100%;
  text-align: center;
}
.zakenpartners .referentie-slider .referentie-item .referentie-item-inner img {
  width: auto;
  height: auto;
  min-width: 50px;
  max-height: 85px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .zakenpartners {
    padding: 0 0 40px 0;
  }
  .zakenpartners .referentie-slider {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-top: 0;
  }
  .zakenpartners .referentie-slider .referentie-item {
    height: 200px;
  }
  .zakenpartners .referentie-slider .referentie-item .referentie-item-inner img {
    width: 100%;
    height: auto;
    max-height: 80%;
    max-width: 90%;
    min-width: 150px;
  }
}
@media (max-width: 767px) {
  .zakenpartners {
    padding: 0 0 30px 0;
  }
  .zakenpartners .referentie-slider {
    padding: 20px 0;
  }
  .zakenpartners .referentie-slider .referentie-item {
    height: 110px;
  }
  .zakenpartners .referentie-slider .referentie-item .referentie-item-inner img {
    width: 55%;
    min-width: unset;
  }
  .zakenpartners .referentie-slider .logo-merk {
    width: 95px;
  }
  .zakenpartners .referentie-slider .logo-merk img {
    max-height: 45px;
  }
}
.home .zakenpartners {
  padding-top: 0px;
}
.page-id-26 .zakenpartners,
.page-id-28 .zakenpartners {
  padding-top: 80px;
  border-top: 1px solid #eeeeee;
}
@media (max-width: 767px) {
  .page-id-26 .zakenpartners,
  .page-id-28 .zakenpartners {
    padding-top: 30px;
  }
}
@media (max-width: 991px) {
  .page-id-26 .zakenpartners,
  .page-id-28 .zakenpartners {
    padding-top: 40px;
  }
}
footer {
  position: relative;
  margin: 0;
  display: inline-block;
  width: 100%;
  background: #1e1e1c;
}
footer .footer-top {
  padding: 50px 0 60px 0;
  border-bottom: 1px solid #4f4f4e;
  display: inline-block;
  width: 100%;
}
@media (max-width: 991px) {
  footer .footer-top .footer-item-links .footer-item,
  footer .footer-top .footer-item-rechts .footer-item {
    margin-bottom: 30px;
  }
}
footer .footer-top .footer-item-links a.logolink,
footer .footer-top .footer-item-rechts a.logolink {
  width: 100%;
  margin-bottom: 40px;
  display: inline-block;
}
footer .footer-top .footer-item-links a.logolink img,
footer .footer-top .footer-item-rechts a.logolink img {
  width: 100%;
  max-width: 300px;
}
footer .footer-top .footer-item-links h3,
footer .footer-top .footer-item-rechts h3 {
  margin-bottom: 25px;
  color: white;
  font-size: 16px;
  margin-top: 0;
}
footer .footer-top .footer-item-links h3.storing,
footer .footer-top .footer-item-rechts h3.storing {
  margin: 40px 0 5px 0;
}
footer .footer-top .footer-item-links p,
footer .footer-top .footer-item-rechts p {
  color: white;
}
footer .footer-top .footer-item-links p.groen,
footer .footer-top .footer-item-rechts p.groen {
  color: #42bc18;
}
footer .footer-top .footer-item-links p.groen *,
footer .footer-top .footer-item-rechts p.groen * {
  color: #42bc18;
}
footer .footer-top .footer-item-links p.storingsnummer,
footer .footer-top .footer-item-rechts p.storingsnummer {
  margin-top: 41px;
}
footer .footer-top .footer-item-links ul,
footer .footer-top .footer-item-rechts ul {
  padding: 0;
  font-size: 16px;
  line-height: 2.2;
}
footer .footer-top .footer-item-links ul li,
footer .footer-top .footer-item-rechts ul li {
  list-style: none;
}
footer .footer-top .footer-item-links ul li a,
footer .footer-top .footer-item-rechts ul li a {
  color: white;
}
footer .footer-top .footer-item-links ul li a:hover,
footer .footer-top .footer-item-rechts ul li a:hover {
  text-decoration: underline;
}
footer .footer-top .footer-item-links a,
footer .footer-top .footer-item-rechts a {
  color: white;
}
footer .footer-top .footer-item-links a:hover,
footer .footer-top .footer-item-rechts a:hover {
  text-decoration: underline;
}
footer .footer-bottom {
  padding: 20px 0;
}
footer .footer-bottom .footer-bottom-inner {
  display: flex;
  align-items: center;
}
footer .footer-bottom ul {
  padding: 0;
  list-style: none;
  width: 100%;
  text-align: right;
  margin-bottom: 0;
}
footer .footer-bottom ul li {
  color: #4f4f4e;
  display: inline-block;
  font-size: 14px;
}
footer .footer-bottom ul li::after {
  content: '|';
  display: inline-block;
  margin: 0 5px;
}
footer .footer-bottom ul li a {
  color: #4f4f4e;
}
footer .footer-bottom ul li a:hover {
  text-decoration: underline;
}
footer .footer-bottom ul li:last-child::after {
  display: none;
}
footer .footer-bottom ul.social-media {
  padding: 0;
  display: inline-block;
  text-align: left;
}
footer .footer-bottom ul.social-media li {
  display: inline-block;
  margin-right: 10px;
}
footer .footer-bottom ul.social-media li::after {
  display: none;
}
footer .footer-bottom ul.social-media li a {
  background-size: 100% auto;
  height: 40px;
  width: 40px;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
footer .footer-bottom ul.social-media li a.icon-tw {
  background-image: url('http://www.avo-verdelerbouw.nl/wp-content/themes/avo/images/icon-twitter.svg');
}
footer .footer-bottom ul.social-media li a.icon-fb {
  background-image: url('http://www.avo-verdelerbouw.nl/wp-content/themes/avo/images/icon-facebook.svg');
}
footer .footer-bottom ul.social-media li a.icon-yt {
  background-image: url('http://www.avo-verdelerbouw.nl/wp-content/themes/avo/images/icon-youtube.svg');
}
footer .footer-bottom ul.social-media li a.icon-pi {
  background-image: url('http://www.avo-verdelerbouw.nl/wp-content/themes/avo/images/icon-pinterest.svg');
}
footer .footer-bottom ul.social-media li a.icon-li {
  background-image: url('http://www.avo-verdelerbouw.nl/wp-content/themes/avo/images/icon-linkedin.svg');
}
footer .footer-bottom ul.social-media li a:hover {
  -webkit-transform: rotate(0deg) scale(1.15) translateY(0) translateX(0);
  -moz-transform: rotate(0deg) scale(1.15) translateY(0) translateX(0);
  -o-transform: rotate(0deg) scale(1.15) translateY(0) translateX(0);
  -ms-transform: rotate(0deg) scale(1.15) translateY(0) translateX(0);
  transform: rotate(0deg) scale(1.15) translateY(0) translateX(0);
}
footer .footer-bottom ul.social-media li:last-child {
  margin-right: 0;
}
@media (max-width: 767px) {
  footer .footer-top {
    padding: 50px 0 10px 0;
  }
  footer .footer-top .footer-item-links,
  footer .footer-top .footer-item-rechts {
    border: none;
    padding: 0;
  }
  footer .footer-top .footer-item-links a.logolink,
  footer .footer-top .footer-item-rechts a.logolink {
    margin-bottom: 20px;
  }
  footer .footer-top .footer-item-links a.logolink img,
  footer .footer-top .footer-item-rechts a.logolink img {
    max-width: 250px;
    height: auto;
  }
  footer .footer-top .footer-item-links h3,
  footer .footer-top .footer-item-rechts h3 {
    margin: 20px 0 15px 0;
  }
  footer .footer-top .footer-item-links h3.groen,
  footer .footer-top .footer-item-rechts h3.groen {
    margin-top: 15px;
  }
  footer .footer-top .footer-item-links ul,
  footer .footer-top .footer-item-rechts ul {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    column-gap: 30px;
  }
  footer .footer-top .footer-item-links ul li,
  footer .footer-top .footer-item-rechts ul li {
    font-size: 15px;
  }
  footer .footer-top .footer-item-links p,
  footer .footer-top .footer-item-rechts p,
  footer .footer-top .footer-item-links a,
  footer .footer-top .footer-item-rechts a {
    font-size: 14px;
  }
  footer .footer-bottom {
    padding: 25px 0;
  }
  footer .footer-bottom .footer-bottom-inner {
    display: inline-block;
  }
  footer .footer-bottom ul {
    text-align: left;
  }
  footer .footer-bottom ul:not(.social-media) li::after {
    display: none;
  }
  footer .footer-bottom ul.social-media {
    text-align: left;
    margin-top: 20px;
  }
  footer .footer-bottom ul.social-media li a {
    height: 30px;
    width: 30px;
  }
}
.wpcf7 form.wpcf7-form {
  display: inline-block;
  width: 100%;
}
.wpcf7 form.wpcf7-form .form-group {
  display: inline-block;
  width: 100%;
}
.wpcf7 form.wpcf7-form .form-group input.wpcf7-text,
.wpcf7 form.wpcf7-form .form-group textarea.wpcf7-textarea {
  border-radius: 0;
  padding: 20px 10px;
  border-width: 1px;
  border-color: rgba(157, 157, 157, 0.6);
  color: #1e1e1c;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wpcf7 form.wpcf7-form .form-group input.wpcf7-text:focus,
.wpcf7 form.wpcf7-form .form-group textarea.wpcf7-textarea:focus {
  box-shadow: none;
  border-color: #42bc18;
}
.wpcf7 form.wpcf7-form .form-group input.wpcf7-text.wpcf7-not-valid,
.wpcf7 form.wpcf7-form .form-group textarea.wpcf7-textarea.wpcf7-not-valid {
  border-color: #ef4035;
}
.wpcf7 form.wpcf7-form .form-group input.wpcf7-submit {
  border: none;
  background-color: #e3652a;
  position: relative;
  color: white;
  font-size: 16px;
  padding: 12px 65px 12px 15px;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  min-width: 200px;
  float: right;
}
.wpcf7 form.wpcf7-form .form-group input.wpcf7-submit::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 46px;
  background-color: #ca521b;
  background-image: url('http://www.avo-verdelerbouw.nl/wp-content/themes/avo/images/icon-chevron-right-white.svg');
  background-size: auto 15px;
  background-position: center center;
  background-repeat: no-repeat;
}
.wpcf7 form.wpcf7-form .form-group input.wpcf7-submit:hover {
  background-color: #ca521b;
  text-decoration: none;
  color: white;
}
.wpcf7 form.wpcf7-form .form-group input.wpcf7-submit:focus,
.wpcf7 form.wpcf7-form .form-group input.wpcf7-submit:active {
  outline: none;
  color: white;
}
.wpcf7 form.wpcf7-form .form-group input.wpcf7-submit.color-1 {
  background-color: #009fe3;
}
.wpcf7 form.wpcf7-form .form-group input.wpcf7-submit.color-1::after {
  background-color: #0082ba;
}
.wpcf7 form.wpcf7-form .form-group input.wpcf7-submit.color-1:hover {
  background-color: #0082ba;
}
@media (max-width: 767px) {
  .wpcf7 form.wpcf7-form .form-group input.wpcf7-submit {
    width: 100%;
  }
}
.wpcf7 form.wpcf7-form .form-group span.wpcf7-not-valid-tip {
  display: none;
}
.wpcf7 form.wpcf7-form .wpcf7-validation-errors,
.wpcf7 form.wpcf7-form .wpcf7-mail-sent-ok {
  border: none;
  background: #ef4035;
  padding: 15px 20px;
  margin: 15px 0;
  color: white;
}
.wpcf7 form.wpcf7-form .wpcf7-mail-sent-ok {
  background: #42bc18;
}
.werken-bij-overzicht {
  background: #eeeeee;
  padding: 0 0 80px 0;
}
.werken-bij-overzicht .slick-prev,
.werken-bij-overzicht .slick-next,
.werken-bij-overzicht .slick-prev:hover,
.werken-bij-overzicht .slick-next:hover,
.werken-bij-overzicht .slick-prev:focus,
.werken-bij-overzicht .slick-next:focus {
  right: 20px;
  height: 100%;
  width: 2.5rem;
  top: 0;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  z-index: 10;
}
.werken-bij-overzicht .slick-prev::before,
.werken-bij-overzicht .slick-next::before,
.werken-bij-overzicht .slick-prev:hover::before,
.werken-bij-overzicht .slick-next:hover::before,
.werken-bij-overzicht .slick-prev:focus::before,
.werken-bij-overzicht .slick-next:focus::before {
  content: '';
  background-image: url('http://www.avo-verdelerbouw.nl/wp-content/themes/avo/images/icon-chevron-right.svg');
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: 1.5rem auto;
  background-position: center right;
  background-repeat: no-repeat;
}
.werken-bij-overzicht .slick-prev::after,
.werken-bij-overzicht .slick-next::after,
.werken-bij-overzicht .slick-prev:hover::after,
.werken-bij-overzicht .slick-next:hover::after,
.werken-bij-overzicht .slick-prev:focus::after,
.werken-bij-overzicht .slick-next:focus::after {
  content: '';
  position: absolute;
  top: 0;
  right: -2rem;
  bottom: 0;
  left: -2rem;
  background-image: linear-gradient(90deg, rgba(238, 238, 238, 0) 0%, #eeeeee 100%);
  opacity: 1;
  z-index: -1;
}
.werken-bij-overzicht .slick-prev,
.werken-bij-overzicht .slick-prev:hover,
.werken-bij-overzicht .slick-prev:focus {
  right: auto;
  left: 20px;
}
.werken-bij-overzicht .slick-prev::before,
.werken-bij-overzicht .slick-prev:hover::before,
.werken-bij-overzicht .slick-prev:focus::before {
  background-image: url('http://www.avo-verdelerbouw.nl/wp-content/themes/avo/images/icon-chevron-left.svg');
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: 1.5rem auto;
  background-position: center left;
  background-repeat: no-repeat;
}
.werken-bij-overzicht .slick-prev::after,
.werken-bij-overzicht .slick-prev:hover::after,
.werken-bij-overzicht .slick-prev:focus::after {
  left: -2rem;
  right: -2rem;
  background-image: linear-gradient(-90deg, rgba(238, 238, 238, 0) 0%, #eeeeee 100%);
}
.werken-bij-overzicht .slick-disabled {
  opacity: 0;
  cursor: default;
}
.werken-bij-overzicht .slick-disabled:hover {
  opacity: 0;
}
.werken-bij-overzicht .werkenbij-titel-container {
  position: relative;
  width: 100%;
}
.werken-bij-overzicht .werkenbij-titel-container .container-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 30px 40px 20px 40px;
  background: #eeeeee;
  transform: translateY(-100%);
}
.werken-bij-overzicht .werkenbij-titel-container .container-inner h3 {
  margin: 0;
}
.werken-bij-overzicht .werken-bij-overzicht-inner {
  padding-top: 40px;
}
.werken-bij-overzicht .werken-bij-overzicht-inner .slide-item {
  padding: 0px 15px;
}
.werken-bij-overzicht .werken-bij-overzicht-inner .werkenbij-item {
  display: inline-block;
  width: 100%;
  background: white;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 3px;
}
.werken-bij-overzicht .werken-bij-overzicht-inner .werkenbij-item .werkenbij-image {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 55%;
  overflow: hidden;
  border-radius: 3px 3px 0 0;
}
.werken-bij-overzicht .werken-bij-overzicht-inner .werkenbij-item .werkenbij-image .werkenbij-image-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  transform: scale(1);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.werken-bij-overzicht .werken-bij-overzicht-inner .werkenbij-item .werkenbij-titel {
  background: #009fe3;
  padding: 10px 20px;
}
.werken-bij-overzicht .werken-bij-overzicht-inner .werkenbij-item .werkenbij-titel span.toptitel {
  margin-bottom: 5px;
  color: white;
  font-weight: 300;
  font-size: 12px;
}
.werken-bij-overzicht .werken-bij-overzicht-inner .werkenbij-item .werkenbij-titel h3 {
  margin: 0;
  color: white;
  font-size: 20px;
}
.werken-bij-overzicht .werken-bij-overzicht-inner .werkenbij-item .werkenbij-content {
  padding: 15px 20px;
}
.werken-bij-overzicht .werken-bij-overzicht-inner .werkenbij-item .werkenbij-content p {
  font-size: 11px;
  line-height: 1.5;
}
.werken-bij-overzicht .werken-bij-overzicht-inner .werkenbij-item .werkenbij-content ul:not(.no-list-style):not(.voordelen):not(.menu) {
  padding: 0;
  list-style: none;
  margin-bottom: 2em;
}
.werken-bij-overzicht .werken-bij-overzicht-inner .werkenbij-item .werkenbij-content ul:not(.no-list-style):not(.voordelen):not(.menu) li {
  color: #1e1e1c;
  padding-left: 1em;
  margin-bottom: .5rem;
}
.werken-bij-overzicht .werken-bij-overzicht-inner .werkenbij-item .werkenbij-content ul:not(.no-list-style):not(.voordelen):not(.menu) li::before {
  content: "\2022";
  color: #009fe3;
  font-weight: 700;
  display: inline-block;
  font-size: 1.1rem;
  width: 1em;
  margin-left: -1em;
}
.werken-bij-overzicht .werken-bij-overzicht-inner .werkenbij-item:hover .werkenbij-image .werkenbij-image-inner {
  transform: scale(1.1);
}
.werken-bij-overzicht .werken-bij-overzicht-inner .werkenbij-item:hover .werkenbij-titel {
  background: #0082ba;
}
.sfeerbeelden-container {
  display: flex;
}
.sfeerbeelden-container .sfeerbeeld {
  width: 20%;
}
.sfeerbeelden-container .sfeerbeeld .sfeerbeeld-link {
  padding-bottom: 55%;
  position: relative;
  display: block;
  overflow: hidden;
}
.sfeerbeelden-container .sfeerbeeld .sfeerbeeld-link .sfeerbeeld-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  transform: scale(1);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sfeerbeelden-container .sfeerbeeld .sfeerbeeld-link:hover .sfeerbeeld-inner {
  transform: scale(1.1);
}
.radio-onderzoek-container {
  display: flex;
  align-items: center;
  padding: 0 0 10px 0;
}
.radio-onderzoek-container p.label-value {
  font-style: italic;
  margin: 0;
  font-size: 14px;
}
.radio-onderzoek-container .radio-onderzoek-items {
  padding: 0 15px;
}
.radio-onderzoek-container .radio-onderzoek-items .wpcf7-list-item {
  margin: 0;
}
.radio-onderzoek-container .radio-onderzoek-items input[type="radio"] {
  opacity: 0;
  position: fixed;
  width: 0;
}
.radio-onderzoek-container .radio-onderzoek-items input[type="radio"]:checked + span.wpcf7-list-item-label {
  background-color: #009fe3;
  color: white;
}
.radio-onderzoek-container .radio-onderzoek-items input[type="radio"]:not(:checked):hover + span.wpcf7-list-item-label {
  background-color: #e1e1e1;
}
.radio-onderzoek-container .radio-onderzoek-items span.wpcf7-list-item-label {
  display: inline-block;
  background-color: #eeeeee;
  padding: 10px 20px;
  font-size: 16px;
}
@media (max-width: 767px) {
  .radio-onderzoek-container p.label-value {
    font-size: 8px;
  }
  .radio-onderzoek-container .radio-onderzoek-items {
    padding: 0 5px;
  }
  .radio-onderzoek-container .radio-onderzoek-items span.wpcf7-list-item-label {
    padding: 5px 8px;
    font-size: 11px;
  }
}
