@charset "UTF-8";
* {
  box-sizing: border-box;
  -webkit-appearance: none;
}

#uber-wrap {
  font-size: 16px;
}
@media (min-width: 1800px) {
  #uber-wrap {
    font-size: 120%;
  }
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
#uber-wrap {
  /* HTML5 display-role reset for older browsers */
}
#uber-wrap html, #uber-wrap body, #uber-wrap div, #uber-wrap span, #uber-wrap applet, #uber-wrap object, #uber-wrap iframe,
#uber-wrap h1, #uber-wrap h2, #uber-wrap h3, #uber-wrap h4, #uber-wrap h5, #uber-wrap h6, #uber-wrap p, #uber-wrap blockquote, #uber-wrap pre,
#uber-wrap a, #uber-wrap abbr, #uber-wrap acronym, #uber-wrap address, #uber-wrap big, #uber-wrap cite, #uber-wrap code,
#uber-wrap del, #uber-wrap dfn, #uber-wrap em, #uber-wrap img, #uber-wrap ins, #uber-wrap kbd, #uber-wrap q, #uber-wrap s, #uber-wrap samp,
#uber-wrap small, #uber-wrap strike, #uber-wrap strong, #uber-wrap sub, #uber-wrap sup, #uber-wrap tt, #uber-wrap var,
#uber-wrap b, #uber-wrap u, #uber-wrap center,
#uber-wrap dl, #uber-wrap dt, #uber-wrap dd, #uber-wrap ol, #uber-wrap ul, #uber-wrap li,
#uber-wrap fieldset, #uber-wrap form, #uber-wrap label, #uber-wrap legend,
#uber-wrap table, #uber-wrap caption, #uber-wrap tbody, #uber-wrap tfoot, #uber-wrap thead, #uber-wrap tr, #uber-wrap th, #uber-wrap td,
#uber-wrap article, #uber-wrap aside, #uber-wrap canvas, #uber-wrap details, #uber-wrap embed,
#uber-wrap figure, #uber-wrap figcaption, #uber-wrap footer, #uber-wrap header, #uber-wrap hgroup,
#uber-wrap menu, #uber-wrap nav, #uber-wrap output, #uber-wrap ruby, #uber-wrap section, #uber-wrap summary,
#uber-wrap time, #uber-wrap mark, #uber-wrap audio, #uber-wrap video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
#uber-wrap article, #uber-wrap aside, #uber-wrap details, #uber-wrap figcaption, #uber-wrap figure,
#uber-wrap footer, #uber-wrap header, #uber-wrap hgroup, #uber-wrap menu, #uber-wrap nav, #uber-wrap section {
  display: block;
}
#uber-wrap body {
  line-height: 1;
}
#uber-wrap ol, #uber-wrap ul {
  list-style: none;
}
#uber-wrap blockquote, #uber-wrap q {
  quotes: none;
}
#uber-wrap blockquote:before, #uber-wrap blockquote:after,
#uber-wrap q:before, #uber-wrap q:after {
  content: "";
  content: none;
}
#uber-wrap table {
  border-collapse: collapse;
  border-spacing: 0;
}

#uber-wrap footer {
  position: relative;
  background: white;
  margin-top: 220px;
  display: grid;
  place-items: center;
}
#uber-wrap footer .bottom-arch {
  position: absolute;
  top: -220px;
  left: 0;
  width: 100%;
  height: 220px;
  display: block;
  z-index: 1;
  background-image: url(../img/top-arch.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  transform: scaleY(-1);
}
#uber-wrap footer .content-box {
  padding-bottom: 2rem;
}
#uber-wrap footer .content-box:after {
  content: "";
  display: table;
  clear: both;
}
#uber-wrap footer .footer-logo {
  text-align: center;
  padding-bottom: 2rem;
  position: absolute;
  top: -130px;
  z-index: 2;
}
#uber-wrap footer .footer-logo img {
  max-width: 12rem;
}

#uber-wrap #formulier {
  font-size: 1.2rem;
}
#uber-wrap #formulier:after {
  content: "";
  display: table;
  clear: both;
}
#uber-wrap #formulier .alert-danger {
  width: 100%;
  padding: 1em 0;
  color: red;
  border-top: rgba(0, 0, 0, 0) 100px solid;
}
#uber-wrap #formulier .alert-success {
  width: 100%;
  padding: 30px;
  text-align: center;
}
#uber-wrap #formulier .alert-success img {
  display: block;
  margin: auto;
  padding-top: 3em;
  margin-bottom: 1em;
}
#uber-wrap #formulier .error {
  font-weight: 300;
  color: black;
}
#uber-wrap #formulier .investment {
  color: #B9B9B9;
  font-size: 85%;
  text-align: left;
}
#uber-wrap #formulier label {
  padding-bottom: 5px;
  float: left;
  width: 100%;
  margin-top: 10px;
  text-align: left;
  font-weight: 300;
}
#uber-wrap #formulier input, #uber-wrap #formulier textarea, #uber-wrap #formulier select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  border: none;
  width: 100%;
  padding: 0.6em;
  color: black;
  float: left;
  font-size: 1em;
  border: solid 0.05em black;
  border-radius: 0.2em;
  transition-duration: 0.2s;
  background: #ECEAE6;
}
#uber-wrap #formulier input[type=submit], #uber-wrap #formulier textarea[type=submit], #uber-wrap #formulier select[type=submit] {
  margin-top: 2em;
  cursor: pointer;
  width: 50%;
  float: left;
  color: #F7F6F3;
  border: solid 0.05em black;
  background: #191919;
  float: right;
}
@media (max-width: 760px) {
  #uber-wrap #formulier input[type=submit], #uber-wrap #formulier textarea[type=submit], #uber-wrap #formulier select[type=submit] {
    width: 100%;
  }
}
#uber-wrap #formulier input[type=submit]:hover, #uber-wrap #formulier textarea[type=submit]:hover, #uber-wrap #formulier select[type=submit]:hover {
  background: #E24A21;
  color: white;
  border-color: #E24A21;
  transition-duration: 0.2s;
}
#uber-wrap #formulier input:focus, #uber-wrap #formulier textarea:focus, #uber-wrap #formulier select:focus {
  background: #E24A21;
  color: white;
  outline: none;
  transition-duration: 0.2s;
  border-color: #E24A21;
}
#uber-wrap #formulier textarea {
  height: 150px;
  transition-duration: 0.2s;
}
#uber-wrap #formulier textarea:focus {
  height: 200px;
  color: white;
  transition-duration: 0.2s;
}
#uber-wrap #formulier .ccm-input-date {
  width: 50% !important;
  cursor: pointer;
}
#uber-wrap #formulier .file_upload {
  padding: 11px;
  background: #ccc;
  margin-top: 40px;
}

#uber-wrap .content-wrapper-footer {
  width: auto;
  max-width: 1600px;
  margin: 0 auto 0 auto;
}
@media (max-width: 999px) {
  #uber-wrap .content-wrapper-footer {
    padding: 0 1em;
    width: calc(100% - 2rem);
    margin: 0 auto 0 auto;
  }
}
@media (min-width: 1600px) {
  #uber-wrap .content-wrapper-footer {
    margin: 0 auto;
    margin-bottom: 0;
    width: calc(100% - 2rem);
  }
}
#uber-wrap .content-wrapper {
  width: 100%;
}
#uber-wrap main {
  background: #000;
  padding-top: 200px;
  margin-top: -200px;
  padding-bottom: 200px;
  margin-bottom: -200px;
}
#uber-wrap .content-wrapper-no-padding {
  width: 100%;
  max-width: 100%;
  margin: 0 auto 3em auto;
  position: relative;
  height: 100%;
}
@media (min-width: 2300px) {
  #uber-wrap .content-wrapper-no-padding {
    max-width: 1400px;
  }
}
@media (max-width: 999px) {
  #uber-wrap .content-wrapper-no-padding {
    padding: 0 1em;
    margin: 0 auto 3em auto;
  }
}
@media (min-width: 1600px) {
  #uber-wrap .content-wrapper-no-padding {
    margin: 0 auto;
    margin-bottom: 3em;
  }
}
#uber-wrap .topBarWrap {
  position: relative;
}
#uber-wrap .splash {
  width: 100%;
  height: 600px;
  background: red;
  margin-top: -200px;
  padding-top: 300px;
  background-image: url(../img/homepage-bg.jpg);
  background-size: cover;
  background-position: center center;
  position: relative;
  border-bottom: solid 0.5rem white;
  margin-bottom: 5rem;
  display: flex;
  align-items: center; /* verticaal */
}
#uber-wrap .splash .overlay {
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  background: #000;
  opacity: 0.5;
}
#uber-wrap .splash p {
  position: relative;
  color: white;
  font-size: clamp(4rem, 5vw, 6rem);
  line-height: 5rem;
  font-weight: 800;
  font-style: italic;
  hyphens: auto;
  overflow-wrap: break-word;
}
#uber-wrap .content-box, #uber-wrap .header-in-content {
  width: calc(100% - 3rem);
  max-width: 1600px;
  margin: 0 auto 0 auto;
  padding-bottom: 6rem;
}
@media (min-width: 2300px) {
  #uber-wrap .content-box, #uber-wrap .header-in-content {
    max-width: 1800px;
    width: calc(100% - 20rem);
  }
}
@media (max-width: 999px) {
  #uber-wrap .content-box, #uber-wrap .header-in-content {
    width: calc(100% - 3rem);
    max-width: 100%;
    padding-bottom: 6rem;
  }
}
@media (max-device-width: 400px), (max-width: 481px) {
  #uber-wrap .content-box, #uber-wrap .header-in-content {
    width: calc(100% - 1rem);
  }
}
#uber-wrap .content-box img, #uber-wrap .header-in-content img {
  max-width: 100%;
  height: auto;
}
#uber-wrap .content-box a, #uber-wrap .header-in-content a {
  color: white;
  text-decoration: none;
}
#uber-wrap .content-box a:hover, #uber-wrap .header-in-content a:hover {
  color: grey;
}
#uber-wrap .content-box-menu {
  width: calc(100% - 3rem);
  max-width: 1600px;
  margin: 0 auto 0 auto;
  padding-bottom: 0;
  position: relative;
}
#uber-wrap .content-box-menu:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 2300px) {
  #uber-wrap .content-box-menu {
    max-width: 1800px;
    width: calc(100% - 20rem);
  }
}
@media (max-width: 999px) {
  #uber-wrap .content-box-menu {
    width: calc(100% - 3rem);
    max-width: 100%;
  }
}
@media (max-width: 760px) {
  #uber-wrap .content-box-menu {
    width: 100%;
  }
}
#uber-wrap .content-box-np {
  width: calc(100% - 3rem);
  max-width: 1600px;
  margin: 0 auto 0 auto;
  padding-bottom: 0;
  position: relative;
}
#uber-wrap .content-box-np:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 2300px) {
  #uber-wrap .content-box-np {
    max-width: 1800px;
    width: calc(100% - 20rem);
  }
}
@media (max-width: 999px) {
  #uber-wrap .content-box-np {
    width: calc(100% - 3rem);
    max-width: 100%;
    padding-bottom: 0;
  }
}
#uber-wrap .content-box-np img {
  max-width: 100%;
  height: auto;
}
#uber-wrap .diensten {
  padding-top: 2rem;
}
#uber-wrap .diensten ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
#uber-wrap .diensten li {
  margin-bottom: 0.55rem !important;
  list-style-type: none;
}
#uber-wrap .diensten a {
  color: white;
  font-weight: 600;
  font-size: 120%;
  border: solid 0.2rem white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  width: 100%;
  display: block;
  cursor: pointer;
}
#uber-wrap .diensten a:hover {
  color: black;
  background: white;
}
#uber-wrap .projecten-overzicht {
  position: relative;
}
#uber-wrap .projecten-overzicht .iaa-een {
  background-image: url(../img/gebouw-binnenkant.jpg);
}
#uber-wrap .projecten-overzicht .iaa-twee {
  background-image: url(../img/muur-wit-blauw.jpg);
}
#uber-wrap .projecten-overzicht .iaa-drie {
  background-image: url(../img/muur-met-rand.jpg);
}
#uber-wrap .projecten-overzicht .cadix-een {
  background-image: url(../img/Drachten-gebouw.jpg);
}
#uber-wrap .projecten-overzicht .cadix-twee {
  background-image: url(../img/blauw-overleg.jpg);
}
#uber-wrap .projecten-overzicht .cadix-drie {
  background-image: url(../img/kraan-automatisering.jpg);
}
#uber-wrap .projecten-overzicht .theuws-een {
  background-image: url(../img/verf-spuiten.jpg);
}
#uber-wrap .projecten-overzicht .theuws-twee {
  background-image: url(../img/kraan-poly.jpg);
}
#uber-wrap .projecten-overzicht .theuws-drie {
  background-image: url(../img/poly-blauw.jpg);
}
#uber-wrap .projecten-overzicht .afbeelding-links {
  position: absolute;
  top: 0;
  left: 0;
  width: 32%;
  height: 25rem;
  z-index: 1;
  background-position: center center;
  background-size: cover;
  opacity: 0.5;
}
#uber-wrap .projecten-overzicht .afbeelding-midden {
  position: absolute;
  top: 0;
  left: 34%;
  width: 32%;
  height: 25rem;
  z-index: 1;
  background-position: center center;
  background-size: cover;
  opacity: 0.5;
}
#uber-wrap .projecten-overzicht .afbeelding-rechts {
  position: absolute;
  top: 0;
  right: 0;
  width: 32%;
  height: 25rem;
  z-index: 1;
  background-position: center center;
  background-size: cover;
  opacity: 0.5;
}
#uber-wrap .projecten-overzicht .tekst-wrap {
  position: relative;
  z-index: 2;
  padding-top: 12rem;
}
@media (max-width: 760px) {
  #uber-wrap .projecten-overzicht .tekst-wrap {
    padding-top: 9rem;
  }
}
#uber-wrap .projecten-overzicht .tekst-wrap .tekst {
  position: relative;
  width: 80%;
  margin: 0 auto;
  padding: 3rem;
  background: white;
}
@media (max-width: 760px) {
  #uber-wrap .projecten-overzicht .tekst-wrap .tekst {
    width: 95%;
    margin: 0 auto;
    padding: 2rem 0 2rem 2rem;
  }
}
#uber-wrap .projecten-overzicht .tekst-wrap .tekst .tekst-content {
  margin-left: 5rem;
}
@media (max-width: 760px) {
  #uber-wrap .projecten-overzicht .tekst-wrap .tekst .tekst-content {
    margin-left: 0;
    margin-top: 1rem;
  }
}
#uber-wrap .projecten-overzicht .tekst-wrap .tekst .logo {
  position: absolute;
  top: 5rem;
  max-width: 4rem;
  left: 2rem;
}
#uber-wrap .projecten-overzicht .tekst-wrap .tekst .logo img {
  max-width: 100%;
}
@media (max-width: 760px) {
  #uber-wrap .projecten-overzicht .tekst-wrap .tekst .logo {
    width: 100%;
    position: static;
  }
}
#uber-wrap .project-detail .project-banner {
  width: 100%;
  height: 35rem;
  background: #000;
  position: relative;
  z-index: 1;
  background-size: cover;
  background-position: center center;
}
@media (max-width: 760px) {
  #uber-wrap .project-detail .project-banner {
    height: 25rem;
  }
}
#uber-wrap .project-detail .project-banner .project-nav {
  position: absolute;
  left: 0;
  top: 3rem;
  color: #0C478D;
  display: inline-block;
  background: white;
  padding: 0.5rem 1rem;
  text-decoration: none;
}
#uber-wrap .project-detail .project-banner .project-nav ol li {
  display: inline-block;
}
#uber-wrap .project-detail .project-banner .project-nav ol li:first-child {
  display: none;
}
#uber-wrap .project-detail .project-banner .project-nav ol li:nth-child(2) {
  font-weight: 600;
}
#uber-wrap .project-detail .project-banner .project-nav ol li:nth-child(2):after {
  content: " > ";
}
#uber-wrap .project-detail .project-banner .project-nav ol li a {
  text-decoration: none;
  color: #0C478D;
}
#uber-wrap .project-detail .project-banner .project-nav ol li a:hover {
  color: black;
}
#uber-wrap .project-detail .tekst-wrap {
  position: relative;
  background: white;
  z-index: 2;
  width: 80%;
  margin: -7rem auto 0 auto;
}
@media (max-width: 760px) {
  #uber-wrap .project-detail .tekst-wrap {
    width: 95%;
  }
}
#uber-wrap .project-detail .tekst-wrap .tekst {
  padding: 2rem;
}
#uber-wrap .project-detail .tekst-wrap .tekst:after {
  content: "";
  display: table;
  clear: both;
}
#uber-wrap .project-detail .tekst-wrap .tekst .logo {
  width: 4rem;
  float: left;
  margin-top: 3rem;
}
@media (max-width: 760px) {
  #uber-wrap .project-detail .tekst-wrap .tekst .logo {
    width: 100%;
    margin-top: 0;
  }
  #uber-wrap .project-detail .tekst-wrap .tekst .logo img {
    max-width: 6rem;
    padding-bottom: 1rem;
  }
}
#uber-wrap .project-detail .tekst-wrap .tekst .tekst-content {
  width: calc(100% - 4rem);
  float: left;
  padding-left: 2rem;
}
@media (max-width: 760px) {
  #uber-wrap .project-detail .tekst-wrap .tekst .tekst-content {
    width: 100%;
    padding-left: 0;
  }
}
#uber-wrap .contact-detail .contact-achtergrond {
  background-image: url(../img/contact-achtergrond.png);
  background-size: cover;
  background-position: top center;
}
#uber-wrap .contact-detail .project-banner {
  width: 100%;
  height: 25rem;
  position: relative;
  z-index: 1;
}
#uber-wrap .contact-detail .project-banner .breadcrumb {
  position: absolute;
  left: 0;
  top: 3rem;
  color: #0C478D;
  display: inline-block;
  background: white;
  padding: 0.5rem 1rem;
  text-decoration: none;
}
#uber-wrap .contact-detail .project-banner .breadcrumb .ol li {
  display: inline-block;
}
#uber-wrap .contact-detail .project-banner .breadcrumb .ol li a {
  text-decoration: none;
  display: inline-block;
}
#uber-wrap .contact-detail .tekst-wrap {
  position: relative;
  background: white;
  z-index: 2;
  width: 80%;
  margin: -20rem auto 0 auto;
  min-height: 20rem;
}
@media (max-width: 760px) {
  #uber-wrap .contact-detail .tekst-wrap {
    width: 95%;
  }
}
#uber-wrap .contact-detail .tekst-wrap .tekst {
  padding: 3rem 2rem 2rem 2rem;
}
#uber-wrap .contact-detail .tekst-wrap .tekst:after {
  content: "";
  display: table;
  clear: both;
}
#uber-wrap .knop {
  text-decoration: none;
  color: black !important;
  display: inline-block;
  border: solid 0.2rem white;
  background: white;
  padding: 0.7rem 1.5rem;
  font-weight: 800;
  border-radius: 0.5rem;
}
#uber-wrap .knop:hover {
  background: black;
  color: white !important;
}
#uber-wrap .afbeelding-tekst {
  display: grid;
  grid-template-columns: 40% 1fr; /* ← breedte afbeelding */
  gap: 2rem;
  align-items: stretch; /* belangrijk! */
  grid-template-areas: "image content";
}
@media (max-width: 760px) {
  #uber-wrap .afbeelding-tekst {
    grid-template-columns: 1fr;
    grid-template-areas: "content" "image";
  }
}
#uber-wrap .afbeelding-tekst .afbeelding {
  height: 100%;
  grid-area: image;
}
#uber-wrap .afbeelding-tekst .afbeelding img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* vult zonder vervorming */
  display: block;
  border-radius: 1rem;
  border: solid white 0.2rem;
}
#uber-wrap .afbeelding-tekst .afbeelding .tekst {
  grid-area: content;
}
#uber-wrap .ccm-image-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}
#uber-wrap .ccm-image-slider-container .ccm-image-slider .ccm-image-slider-inner ul li {
  height: 90vh;
}
@media (max-width: 999px) {
  #uber-wrap .ccm-image-slider-container .ccm-image-slider .ccm-image-slider-inner ul li {
    height: 60vh;
  }
}
#uber-wrap .ccm-image-slider-container .ccm-image-slider .ccm-image-slider-inner ul li img {
  object-fit: cover;
  height: 120%;
}
@media (max-width: 999px) {
  #uber-wrap .ccm-image-slider-container {
    height: 60vh;
  }
}
#uber-wrap .ccm-image-slider {
  height: 90vh;
}
#uber-wrap .ccm-image-slider-inner {
  height: 90vh;
}
#uber-wrap .rslides {
  height: 90vh;
}
#uber-wrap .rslides li {
  height: 90vh;
  width: 100%;
}
#uber-wrap .rslides li img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
#uber-wrap .owl-prev {
  position: absolute;
  left: 0;
  bottom: -2.5rem;
  z-index: 5;
  transform: rotate(180deg);
  height: 2.2rem;
  width: 2.2rem;
}
#uber-wrap .owl-prev:hover {
  opacity: 0.7;
}
#uber-wrap .owl-prev img {
  max-width: 100%;
  height: auto;
}
#uber-wrap .owl-next {
  position: absolute;
  right: 0;
  bottom: -2.5rem;
  z-index: 5;
  height: 2.2rem;
  width: 2.2rem;
}
#uber-wrap .owl-next:hover {
  opacity: 0.7;
}
#uber-wrap .owl-next img {
  max-width: 100%;
  height: auto;
}
#uber-wrap .disabled {
  opacity: 0.2;
}

#uber-wrap {
  /* ANIMATIE: wanneer knop actief is (menu open) */
}
#uber-wrap .relative {
  position: relative;
}
#uber-wrap .fixed {
  position: fixed !important;
  top: 2rem !important;
  right: 1.5rem !important;
}
@media (max-width: 999px) {
  #uber-wrap .fixed {
    right: 1rem !important;
  }
}
@media (min-width: 1600px) {
  #uber-wrap .fixed {
    right: calc((100% - 1600px) / 2) !important;
  }
}
@media (min-width: 2300px) {
  #uber-wrap .fixed {
    right: calc((100% - 1800px) / 2) !important;
  }
}
#uber-wrap .topBarWrap {
  width: 100%;
  height: 10rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 5;
}
#uber-wrap .topBarWrap .top-arch {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 220px;
  display: block;
  z-index: 1;
  top: -60px;
  background-image: url(../img/top-arch.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}
@media (max-width: 760px) {
  #uber-wrap .topBarWrap .top-arch {
    height: 160px;
  }
}
@media (max-width: 760px) {
  #uber-wrap .topBarWrap {
    height: auto;
    margin-bottom: 1.5rem;
  }
}
#uber-wrap .topBarWrap .logo {
  height: 100%;
  height: 4rem;
  justify-self: center;
  align-self: center;
  z-index: 2;
}
#uber-wrap .topBarWrap .logo img {
  max-height: 100%;
}
#uber-wrap .topBarWrap .telefonnummer {
  z-index: 2;
  margin-top: 0.5rem;
  align-self: center;
}
#uber-wrap .topBarWrap .telefonnummer a {
  background: black;
  border-radius: 1rem;
  display: inline-block;
  padding: 0.5rem 1rem;
  color: white;
  font-weight: 500;
  text-decoration: none;
}
#uber-wrap .topBarWrap .telefonnummer a:hover {
  color: black;
  background: white;
  border: solid 0.2rem black;
}
#uber-wrap .topBarWrap .telefonnummer a i {
  padding-right: 0.5rem;
}
@media (max-width: 760px) {
  #uber-wrap .topBarWrap .telefonnummer {
    display: none;
  }
}
#uber-wrap .topBarWrap .menu-toggle-uber-wrap {
  align-self: center;
  justify-self: end;
}
#uber-wrap .top-nav-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  padding: 1rem 1.5rem;
  position: relative;
  z-index: 999;
}
@media (max-width: 760px) {
  #uber-wrap .top-nav-bar {
    grid-template-columns: auto 1fr auto;
    padding: 1rem 0;
  }
}
#uber-wrap .menu.open ~ .page {
  pointer-events: none;
  height: 100dvh;
  overflow: hidden;
}
#uber-wrap .menu {
  z-index: 99;
  position: absolute;
  top: 0;
  height: 100dvh;
  transform: translateY(-100%);
  color: white;
  transform: 0.3s ease;
  z-index: 1;
  transition: transform 0.3s ease;
  overflow-y: auto;
  right: 0;
  left: auto;
  inset: 0;
}
#uber-wrap .menu nav ul {
  padding-bottom: 0;
  padding-top: 20rem;
}
#uber-wrap .menu nav ul li {
  line-height: 1.6rem;
  display: block;
  text-align: right;
  margin-bottom: 0;
  text-align: left;
  padding-left: 2rem;
}
#uber-wrap .menu nav ul li .nav-path-selected {
  font-weight: 800 !important;
}
#uber-wrap .menu nav ul li a {
  font-size: 1rem;
  display: inline-block;
  text-decoration: none;
  color: black;
  font-weight: 400;
  color: white;
  font-size: 2rem;
  padding-bottom: 2rem;
}
#uber-wrap .menu nav ul li a:hover {
  color: black;
}
#uber-wrap .open {
  transform: translateY(0);
  background: grey;
  opacity: 1;
  position: fixed;
}
#uber-wrap .menu-knop {
  padding: 12px; /* 🔑 dit lost alles op */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  justify-self: end !important;
  min-width: 44px;
  min-height: 44px;
}
#uber-wrap .menu-knop:hover {
  transform: scale(1.3);
}
#uber-wrap .menu-knop span {
  width: 30px;
  height: 3px;
  background: black;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 999;
}
#uber-wrap .knop-actief {
  z-index: 999;
}
#uber-wrap .menu-knop.knop-actief span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background: black;
}
#uber-wrap .menu-knop.knop-actief span:nth-child(2) {
  opacity: 0;
}
#uber-wrap .menu-knop.knop-actief span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background: black;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  position: absolute;
}
.owl-theme .owl-dots .owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-theme .owl-dots .owl-theme .owl-dots .owl-dot span {
  width: 2em;
  height: 0.2em;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
}
.owl-theme .owl-dots .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-theme .owl-dots .owl-dot:hover span {
  background: red;
}

#uber-wrap h2, #uber-wrap h1 {
  font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.6rem;
  line-height: 2.1rem;
  font-weight: 800;
  padding-bottom: 0.5rem;
  color: white;
}
#uber-wrap h3 {
  font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: white;
}
#uber-wrap p {
  font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.75rem;
  padding-bottom: 1.7rem;
  color: white;
}
#uber-wrap p:last-child {
  padding-bottom: 0;
}
#uber-wrap ul {
  font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.2rem;
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 1.2rem; /* of meer afhankelijk van je font */
  padding-bottom: 1.7rem;
}
#uber-wrap ul li {
  font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.2rem;
  list-style-type: disc;
  font-weight: 300;
  margin-bottom: 0.55rem;
  color: white;
}
#uber-wrap ul li:last-child {
  margin-bottom: 0;
}
#uber-wrap strong {
  font-weight: 800;
}
#uber-wrap .strong {
  font-weight: 800 !important;
}
#uber-wrap .light {
  font-weight: 400;
}
#uber-wrap em {
  font-style: italic;
}
#uber-wrap .grijs {
  color: #777777;
}
#uber-wrap a {
  font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.2rem;
}

body, html {
  font-family: "Poppins", sans-serif;
  margin: 0;
  overflow-x: clip;
  background: #fff;
}
@media (min-width: 2300px) {
  body, html {
    font-size: 125%;
  }
}
@media (max-width: 999px) {
  body, html {
    font-size: 90%;
    overflow-x: hidden;
  }
}

html.menu-open,
body.menu-open {
  overflow: hidden;
  height: 100%;
}

#lpckBannerContainer {
  display: none !important;
}

@media (max-device-width: 400px), (max-width: 481px) {
  #ccm-nav-intelligent-search-wrapper {
    display: none;
  }
}

.safari-reset {
  position: fixed;
  inset: 0;
  background: #ffffff;
  pointer-events: none;
  z-index: 1;
}

@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-Regular.woff2") format("woff2");
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-Italic.woff2") format("woff2");
  font-weight: 100 1000;
  font-style: italic;
  font-display: swap;
}
