
/* ------------------ GLOBAL ------------------ */

body {
    font-size: 10px;
}
section {
    margin-top: 8vh;
    overflow: hidden;
}


.section-bg-offset {
    padding: 50px;
}

#cookie-message {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: rgba(32,63,120,0.7);
  width: 420px;
  max-width: calc( 100% - 70px );
  padding: 15px;
  z-index: 999;
  font-size:16px;
  line-height:18px;
  border-radius: 6px;
  box-shadow: 0 0 10px #e3e3e3;
  display:none;
}
#cookie-message p {
  margin: 0;
  color:white;
  font-size:18px;
  line-height:24px;
  padding: 10px 0 5px 0;
}
#cookie-message h4 {
  margin: 0;
  padding: 0;
  font-size:22px;
}
#cookie-message a {
  display: block;
  color:White;
  font-size:18px;
}
#cookie-message span {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size:2.2rem;
  cursor: pointer;
}
#cookie-message span:hover {
  color: #ccc;
}

h1 {
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    margin: 0;
}
h2 {
    font-family: 'Exo', sans-serif;
    font-weight: 900;
    color: #203F78;
    font-size: 2.4rem;
    letter-spacing: -0.08px;
    margin-bottom: 10px;
}
h2 i {
    font-family: 'Exo', sans-serif;
    font-weight: 800;
    color: #203F78;
    font-size: 2.2rem;
    letter-spacing: -0.08px;
    margin-bottom: 10px;
}
h3 {
    font-family: 'Exo', sans-serif;
    font-weight: 800;
    color: #203F78;
    font-size: 1.6rem;
    letter-spacing: -0.08px;
    margin-bottom: 10px;
}
h4 {
    font-family: 'Exo', sans-serif;
    font-weight: 800;
    color: white;
    font-size: 1.2rem;
    letter-spacing: -0.08px;
    margin-bottom: 10px;
}
h5 {
    font-family: 'Exo', sans-serif;
    font-weight: 800;
    color: white;
    font-size: 1rem;
    letter-spacing: -0.08px;
    margin-bottom: 10px;
}

p {
    font-family: 'Exo', sans-serif;
    font-weight: 500;
    line-height:2.8rem;
     font-size:1.5rem;
     color:#4A4A4A;
}
p strong, p b {
    color: #1F3F78;
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -0.07px;
}

p a {
  color:#FB6300;
}

a {
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    color: unset;
}
a:hover {
    text-decoration: none;
    color: unset;
}
span {
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    font-size: 2.2rem
}
ul {
  /* list-style: none;
  margin: 0;
  padding: 0; */
}
li {
    font-family: 'Exo', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
}

button, .button {
    font-family: 'Exo', sans-serif;
    padding: 15px 20px;
    border: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    background-color: black;
    margin: 0;
    border-radius: 12px;
    /* display: flex; */
    align-items: center;
    flex-grow: 1;
    cursor: pointer;
    transition: all ease 200ms;
    position: relative;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.5);
}
button::before, .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    background-color: rgba(0,0,0,0.05);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    border-radius: 12px;
}
button:hover, .button:hover {
    /*filter: brightness(1.2);
    transform: translateY(-3px)scale(1.05);
    box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.6);*/
    color:white;
}
button:hover::before, .button:hover::before {
    opacity: 1;
    width: 100%;
}
button.no-shadow, .button.no-shadow {
    box-shadow: none;
}
button:focus, .button:focus {
    outline: none;
}
button.no-shadow:hover, .button.no-shadow:hover {
    box-shadow: none;
}
button i, .button i {
    font-size: 2rem;
    margin-right: 20px;
}
button.button-black, .button.button-black {
    background-color: black;
}
button.button-black:hover, .button.button-black:hover {
    background-color: #191919;
}
button.button-orange, .button.button-orange {
    background-color: #FB6300;
}
button.button-green, .button.button-green {
    background-color: #17724D;
}

.form-control {
  padding: 10px 20px;
  border-color:#203F78;
    color: #203F78;
    height:auto;
}

.alert {
  font-size:24px;
}



/* ------------------ END GLOBAL ------------------ */

/* ------------------ POPUP ------------------ */

.scrolllock {
    overflow-y: hidden;
    padding-right: 17px;
}

.popup {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
    align-items: center;
    justify-content: center;
    display: flex;
    visibility: hidden;
}
.popup.active {
    pointer-events: all;
    visibility: visible;
}

.popup-background {
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0;
    transition: all ease 300ms;
    position: absolute;
    cursor: pointer;
}

.popup.active .popup-background {
    opacity: 0.6;
}

.popup-inner {
    width: 80%;
    height: 85%;
    background-color: white;
    position: absolute;
    transition: all cubic-bezier(0.54, -0.82, 0.44, 1.75) 500ms;
    transform: scale(0.9, 0.9);
    opacity: 0;
}
.popup.active .popup-inner {
    opacity: 1;
    transform: scale(1);
}
.popup-content {
    width: 100%;
    height: 100%;
}

.badge {
  font-size:16px;
}

.popup-close {
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background-color: white;
    border: 3px solid #5d5d5d;
    color: #5d5d5d;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.popup .popup-content iframe {
    width: 100% !important;
    height: 100% !important;
}

.extra-image {
  border-radius:12px;
}

/* ------------------ END POPUP ------------------ */


/* ------------------ NAV ------------------ */
nav {
    padding: 20px 0;
    position: absolute;
    width: 100%;
    z-index: 10;
}

nav#header-page {
    position: fixed;
    background-color: white;
    box-shadow: 2px 0 5px #00000033;
    padding: 10px 0;
    transition: all ease 400ms;
    transform: translateY(-100%);
}
nav#header-page.header-scroll-page {
    transform: translateY(0%);
}
nav#header-page.header-scroll-page {
    transform: translateY(0%);
}

nav h1 {
    max-width: 40%;
}
nav h1 img {

}

.nav-info a {
    display: flex;
    margin-left: 25px;
    color: white;
    transition: all ease 200ms;
    align-items: center;
    height: 3rem;
}
.nav-info a:hover {
    text-decoration: none;
    color: #c5c5c5;
}
nav#header-page a.nav-whatsapp {
    color: #4abb44;
}
nav#header-page a.nav-whatsapp:hover {
    color: #338c2e;
}
nav#header-page a.nav-phone {
    color: #5277a9;
}
nav#header-page a.nav-phone:hover {
    color: #2a4a77;
}


.nav-info i {
    font-size: 2.4rem;
    font-weight: 300;
    min-width: 35px;
    text-align: center;
}
.nav-phone i {
    font-weight: 600;
    font-size: 1.6rem;
}
.nav-bovag {
    margin-left: 25px;
    max-width: 150px;
}
.nav-bovag img {

    align-self: center;
}
.nav-info span {
    font-size: 1.2rem;
    letter-spacing: -0.07px;
    line-height: 2.9rem;
    margin-left: 10px;
}

.subnav-active {
  padding-bottom:30px;
}

.subnavigation li.subnav-item {
  margin-bottom:0px;
}

.subnavigation li.subnav-item a {
  font-size:20px;
  height:36px;
  opacity:.7;
}


.subnavigation li.subnav-item a:hover, .subnavigation li.active.subnav-item a {
  opacity:1;
}

.subnavigation li.subnav-item a .fa {
  font-size:14px;
}


.subnavigation li.subsubnav-item {
  margin-bottom:0px;
}

.subnavigation li.subsubnav-item a {
  font-size:16px;
  height:32px;
  opacity:.7;
}


.subnavigation li.subsubnav-item a:hover, .subnavigation li.active.subsubnav-item a {
  opacity:1;
}

.subnavigation li.subsubnav-item a .fa {
  font-size:10px;
}

/* A.S. CUSTOM NAVBAR*/
.dc-nav-topbar {
    background-color: rgba(0,0,0,.34);
    display: block;
}
.dc-nav-topbar .dc-link {
    color: #ffffff;
    font-size: 12px;
    line-height: 16px;
    font-weight: bolder;
    margin-right: 13px;
    vertical-align: middle;
}
.dc-nav-topbar .dc-link i {
    margin-right: 5px;
}
.dc-nav-topbar img {
    margin-top: 6px;
    margin-bottom: 5px;
    margin-left: 35px;
}
.dc-navbar.fixed-top {
    top: 36px;
}
.dc-navbar {
    padding-top: 21px;
    padding-bottom: 21px;
}
.dc-navbar-active {
    background-color: #ffffff;
    box-shadow: 2px 0 5px #00000033;
}
.dc-navbar .nav-link {
    color: #ffffff;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.03px;
    font-weight: bold;
    padding-left: 25px !important;
    padding-right: 25px !important;
}
.dc-navbar-active .nav-link {
    color: #203F78;
}
.dc-navbar .dropdown-toggle::after {
    display: none;
}
.dc-navbar {}
.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before, .hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner:after, .hamburger.is-active .hamburger-inner:before, .hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner:after, .hamburger.is-active .hamburger-inner:before {
    background-color: #ffffff;
}
.dc-navbar-active .hamburger-inner, .dc-navbar-active .hamburger-inner:after, .dc-navbar-active .hamburger-inner:before, .hamburger.is-active .hamburger-inner, .dc-navbar-active .hamburger.is-active .hamburger-inner:after, .dc-navbar-active .hamburger.is-active .hamburger-inner:before, .dc-navbar-active .hamburger.is-active .hamburger-inner, .dc-navbar-active .hamburger.is-active .hamburger-inner:after, .dc-navbar-active  .hamburger.is-active .hamburger-inner:before {
    background-color: #203F78;
}

/* [END] A.S. CUSTOM NAVBAR*/

/* ------------------ END NAV ------------------ */

/* ------------------ HEADER ------------------ */

header {
    background-size: cover;
    background-position: center;
    filter: hue-rotate;
    height: 706px;
    max-height:90vh;
    overflow: hidden;
    box-sizing: content-box;
}

.hero-sub .hero-text h1 {
  color:white;
  font-size:62px;
}

.hero-sub .hero-text h2 {
  color:white;
  font-size:32px;
  font-weight:400;
}

.hero-coloroverlay {
    position: absolute;
    height: 706px;
    max-height:90vh;
    width: 100%;
    background-color: rgba(32,63,120,0.8);
    z-index: 1;
    pointer-events: none;
}

.hero-coloroverlay-dimm {
  opacity:.7;
}

.hero-scrolloverlay {
    position: absolute;
    height: 706px;
    max-height:90vh;
    width: 100%;
    background-color: black;
    opacity: 0;
    z-index: 3;
    pointer-events: none;
}

.hero-text {
    margin-top: 30vh;
    position: relative;
    z-index: 2;
}
.hero-img {
    z-index: 2;
}

.hero-text h2 {
    color: white;
    font-size: 1.2rem;
    letter-spacing: 0;
    font-weight: 700;
}
.hero-text h2 strong {
    font-size: 3.4rem;
    line-height: 5.2rem;
    letter-spacing: 1px;
}

.hero-buttons {
    margin-top: 10px;
}
.hero-buttons button {
    margin-bottom: 20px;
    white-space: nowrap;
}
.hero-buttons .col-12:first {
  padding-left:10px;
  padding-right:10px;
}


.intro-bar {
    background-color: #203F78;
    color: white;
    padding: 20px 0;
}

.intro-bar .col-12 {
    display: flex;
    align-items: center;
}
.intro-bar i {
    font-size: 2.8rem;
    margin-right: 20px;
}
.intro-bar h2 {
    color: white;
    margin: 0;
    font-size: 2rem;
}
/* ------------------ END HEADER ------------------ */



/* ----- back-button ----- */

.back-button {
    color: #FB6300;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    margin: 5vh 0 -4vh 0;
}
.back-button i {
    font-size: 1.4rem;
    margin-right: 10px;
}



/* ----- END back-button ----- */



/* ------------------ HEADING ------------------ */

.heading {
  background-color:#1F3F78;
  height:110px;
}

.heading h2 {
  color:white;
  font-size:32px;
  margin-bottom:0px;
}

.heading-svg #Fill-1 {
  fill:rgb(255,255,255);
}

.heading-svg {
  position:relative;
  width:100px;
}

.heading-svg .svg-item {
  position: absolute;
  width: auto;
  height: 24%;
  left: 34%;
  top: 43%;
  transform: rotate(0deg);
}

.backlink {
  font-size:22px;
  font-weight:900;
  color:#FB6300;
  display:inline-block;
}
.backlink:hover {
  opacity:.8;
}
/* ------------------ END HEADING ------------------ */

/* ------------------ SUBNAVIGATION ------------------ */

.subnavigation ul {
  margin-top:30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.subnavigation li {
  margin-bottom:10px;
  border-radius:15px;
}

.subnavigation li a {
  width:100%;
  display:inline-block;
  background-color:#EDEFF3;
  border-radius:12px;
  font-size:26px;
  height:60px;
  color:#1f3f78;
  transition:background-color .2s ease-in-out;
  padding:10px;
}

.subnavigation li.active a {
  background-color:transparent;
  color:white;
}

.subnavigation li a .fa {
  width:40px;
  text-align:center;
  font-size:24px;
}

.subnavigation li a:hover {
  background-color:transparent;
  color:white;
}

/* ------------------ END SUBNAVIGATION ------------------ */

/* ------------------ INTRO ------------------ */

.intro-text p {
    color: #4A4A4A;
    font-size: 1.5rem;
    line-height: 2.8rem;
    margin-top: 25px;
}
.intro-text p strong {
    display: inline-block;
}

.intro-reviews {
    margin-left: auto;
    margin-right: auto;
}

.intro-reviews-imgholder {
    width: 60%;
    margin: auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all ease 300ms;
}
.intro-reviews-imgholder svg {
    width: 100%;
}

.intro-reviews-imgholder .st0, .intro-reviews-imgholder .st1, .intro-reviews-imgholder .st2, .intro-reviews-imgholder .st3, .intro-reviews-imgholder .st4, .intro-reviews-imgholder .st5, .intro-reviews-imgholder .st6, .intro-reviews-imgholder .st7, .intro-reviews-imgholder .st8 {
    opacity: 0;
    transition: all ease 150ms;
}

.intro-reviews.aos-animate .st3 {
    opacity: 1;
    transition-delay: 0ms;
}
.intro-reviews.aos-animate .st4 {
    opacity: 1;
    transition-delay: 80ms;
}
.intro-reviews.aos-animate .st5 {
    opacity: 1;
    transition-delay: 160ms;
}
.intro-reviews.aos-animate .st7 {
    opacity: 1;
    transition-delay: 300ms;
}
.intro-reviews.aos-animate .st6 {
    opacity: 1;
    transition-delay: 450ms;
}
.intro-reviews.aos-animate .st8 {
    opacity: 1;
    transition-delay: 550ms;
}
.intro-reviews.aos-animate .st0 {
    opacity: 1;
    transition-delay: 650ms;
}
.intro-reviews.aos-animate .st1 {
    opacity: 1;
    transition-delay: 800ms;

}
.intro-reviews.aos-animate .st2 {
    opacity: 1;
    transition-delay: 1000ms;
}

.intro-reviews-imgholder .intro-reviews-imgoverlay {
    position: absolute;
    font-size: 50px;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: 'Roboto', sans-serif;
    color: #514c4c;
}

.intro-reviews h3 {
    font-weight: 400;
    color: #484848;
    font-size: 2.4rem;
    text-align: center;
    line-height: 2.6rem;
    margin-top: 25px;
}



/* ------------------ END INTRO ------------------ */

/* ------------------ SELLINGPOINTS ------------------ */

.sellingpoints {
    padding: 0px 0 00px 0;
}

.sellingpoints .sellingpoints-block {
    text-align: center;
    margin-bottom: 20px;
}

.sellingpoints .sellingpoints-block i {
    color: #FB6300;
    font-size: 2.2rem;
    margin-bottom: 15px;
}
.sellingpoints .sellingpoints-block p {
    font-size: 21px;
    line-height: 28px;
}

.sellingpoints .carousel-inner {
    width: 80%;
    margin: auto;
    min-height: 200px;
}
.carousel-indicators {
    z-index: unset;
}
.sellingpoints .carousel-indicators li {
    background-color: #565656;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    margin: 0 7px;
}

/* ------------------ END SELLINGPOINTS ------------------ */

/* ------------------ IMAGEBLOCK ------------------ */

.imageblock-bg {
    width:100%;
    height: 637px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    background-image:url('/images/docars-joost-esther-van-dongen.jpg');
  }

.imageblock-overlay {
    position: absolute;
    padding: 0px 30px;
    top: 0;
}

.imageblock h2 {
    margin-top: 100px;
    color: white;
}
.imageblock h2 i {
    color: white;
    display: inline;
    position: absolute;
    left: 3px;
    font-style: normal;
}
.imageblock p {
    font-size: 1.2rem;
    margin-bottom: 26px;
    color: white;
}


/* ------------------ END IMAGEBLOCK ------------------ */

/* ------------------ CONTACTBLOCK ------------------ */

.contactblock-inner {
    border-radius: 20px;
    background-color: #EDEDED;
}

.contactblock-image {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 20px;
}

.contactblock p {
    font-size: 1.4rem;
    line-height: 2.6rem;
    margin: 20px 0 35px 0;
    color: #4A4A4A;
}

.contactblock p a {
    color: #FB6300;
    text-decoration: underline;
}

/* ------------------ END CONTACTBLOCK ------------------ */

/* ------------------ POSTS ------------------ */

.posts-block-inner {
    display: block;
    background-color: gainsboro;
    height: 280px;
    border-radius: 20px;
    position: relative;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
}

.posts-block-inner:hover .posts-block-overlay {
    opacity: 1;
}
.posts-block-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(67, 96, 152, 0.9);
    opacity: 0;
    transition: all ease 200ms;
    cursor: pointer;
}
.posts-block-overlay h3 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

/* ------------------ END POSTS ------------------ */

/* ------------------ EXAMPLE ------------------ */

.example .section-content > .col-12:nth-child(1) {
    padding-right: 0;
}
.example .section-content > .col-12:nth-child(2) {
    padding-left: 0;
}


.example .example-image {
    background-size: cover;
    background-position: center;
    height: 100%;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    min-height: 250px;
}

.example-details {
    background-color: #285197;
    color: white;
    padding: 25px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.example-details h3 {
    color: white;
    font-size: 2rem;
}
.example-details h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.example-details span:nth-child(1) {
    font-size: 1.4rem;
    line-height: 2rem;
    margin: 5px 0;
}
.example-details span:nth-child(2) {
    font-size: 1.4rem;
    font-weight: 400;
    white-space: nowrap;
    line-height: 2rem;
    margin: 5px 0;
}

.example-details button {
    margin: 30px 0 10px 0;
}




/* ------------------ END EXAMPLE ------------------ */

/* ------------------ FOOTER ------------------ */

footer {
    margin-top: 8vh;
    color: white;
}
.main-footer {
    background-color: #122445;
    padding: 80px 0;
}
.lower-footer {
    background-color: black;
    padding: 20px 0;
}


footer h2 {
    font-size: 1.6rem;
    color: white;
    font-weight: 700;
}

.main-footer-details .main-footer-text {
    display: flex;
    align-items: center;
}

.main-footer-details {
    margin-bottom: 40px;
}

.main-footer-details ul, .main-footer-times ul {
  margin:0;
  list-style: none;
}

.footer-details-before {
    width: 4rem;
    font-size: 1.2rem;
    font-weight: 700;
    display:inline-block;
}
.main-footer a {
    font-weight: 500;
    transition: all ease 200ms;
    width: 100%;
    display: block;
}
.main-footer li > * {
    padding: 0.6rem 0;
}

.main-footer-times li strong {
    width: 100%;
    display: block;
    font-weight: 600;
    font-size: 1.2rem;
}

.main-footer-times .main-footer-text {
    font-size: 1.2rem;
    padding: 7px 0;
}


.lower-footer a {
    font-size: 1.2rem;
    font-weight: 400;
    transition: all ease 200ms;
}
.lower-footer a:hover {
    color: darkgray;
}
.lower-footer a:hover i {
    background-color: darkgray;
}

.lower-footer p {
    font-size: 1.2rem;
    font-weight: 400;
    transition: all ease 200ms;
}

.lower-footer .separator {
    margin: 0 20px;
    font-size: 1.2rem;
    line-height: 0;
    margin-bottom: 5px;
}

.lower-footer a i {
    background-color: white;
    color: black;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
}

.lower-footer img {
    max-height: 80px;
}

/* ------------------ END FOOTER ------------------ */



/* ------------------ SECTION CONTACT-FORMULIER ------------------ */

.contact-formulier h2 {
    font-size: 2.6rem;
}
.contact-formulier p {
    margin-bottom: 80px;
    font-size: 1.6rem;
    margin-top: 10px;
}
.contact-formulier input, .contact-formulier textarea {
    border-radius: 10px;
    width: 100%;
    border-style: solid;
    border-width: 1px;
    padding: 10px 20px;
    font-size: 1.4rem;
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    color: #203F78;
    letter-spacing: -0.08px;
    margin-bottom: 30px;
}

.contact-formulier-vraag textarea {
    min-height: 100px;
}

.contact-formulier-klant {
    display: flex;
    align-items: center;
    margin: 20px 0;
}
.contact-formulier-klant h3 {
    margin: 0 30px 0 0;
}
.contact-formulier-klant input {
    width: unset;
    margin: 0;
    -webkit-appearance: none;
    padding: 18px;
    border-radius: 100%;
    margin: 0 5px 0 15px;
}
.contact-formulier-klant input:checked {
    background-color: #122445;
}
.contact-formulier-klant label {
    margin: 0;
    font-family: 'Exo', sans-serif;
    font-weight: 800;
    color: #203F78;
    font-size: 1.2rem;
}

.contact-formulier-submit {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
}
.contact-formulier-submit input {
    width: unset;
    background-color: #203F78;
    color: white;
    padding: 10px 40px;
}


/* ------------------ END SECTION CONTACT-FORMULIER ------------------ */


/* ------------------ SECTION GOOGLEMAPS ------------------ */

.googlemaps {
    margin-bottom: -8vh;
}
.googlemaps h2 {
    margin: 4vh 0;
}



/* ------------------ END SECTION GOOGLEMAPS ------------------ */

.autoAnimatie {

}
.autoAnimatie .animatie-block {
    background-color: var(--bg-color);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    margin-bottom: 30px;
    padding: 20px 0;
    transition: all ease 200ms;
}
.autoAnimatie .animatie-block.orange {
	--bg-color: #FF4C00;
}
.autoAnimatie .animatie-block.lightblue {
	--bg-color: #0067C7;
}
.autoAnimatie .animatie-block.yellow {
	--bg-color: #FFA000;
}
.autoAnimatie .animatie-block.purple {
	--bg-color: #533488;
}
.autoAnimatie .animatie-block.darkgreen {
	--bg-color: #00754C;
}
.autoAnimatie .animatie-block.blue {
	--bg-color: #00407A;
}

.autoAnimatie .animatie-block:hover, .autoAnimatie .animatie-block.playing {
	border-bottom-right-radius: 28%;
}


.autoAnimatie .animatie-block::after {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    display: block;
    position: absolute;
    border-radius: 12px;
    background-color: black;
    z-index: -1;
    opacity: 0.4;
}
.autoAnimatie .fold {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: var(--bg-color);
    border-radius: 12px;
    z-index: -2;
}



.autoAnimatie .svg-container {
    width: 100%;
}

.autoAnimatie .svg-car {
    width: 30%;
    height: unset;
    /* transform: translate(85%, 0); */
    margin-left: 40%;
}

.autoAnimatie .svg-item {
    position: absolute;
    width: auto;
    /*transition-timing-function: cubic-bezier(0.54, -0.52, 0.32, 1.11);
    transition-property: top, left, height;
    transition-duration: 300ms;*/
    height: 24%;
    left: 34%;
    top: 43%;
    transform: rotate(0deg);
}
.autoAnimatie .fi-icon {
    position: absolute;
    width: auto;
    height: 24%;
    left: 34%;
    top: 43%;
    transform: rotate(0deg);
    fill: white !important;
    background-color: var(--bg-color);
    border-radius: 100%;
    padding: 0px;
    border: 6px solid white;
    display: flex;
}
.autoAnimatie .fi-icon > g {
    transform: scale(0.8) translate(12%, 10%);
}

.autoAnimatie .animatie-block:hover .svg-item, .autoAnimatie .animatie-block.playing .svg-item, .autoAnimatie .animatie-block:hover .fi-icon, .autoAnimatie .animatie-block.playing .fi-icon {
    animation: itemHop 0.6s ease-in-out;
    animation-fill-mode: both;
}

@keyframes itemHop {
    0% {
        height: 24%;
        left: 34%;
        top: 43%;
        transform: rotate(0deg);
    }
    20% {
        height: 20%;
        left: 36%;
        top: 46%;
        transform: rotate(-10deg);
    }
    55% {
        transform: rotate(30deg);
    }
    75% {
        height: 28%;
        left: 32%;
        top: 41%;
    }
    100% {
        height: 24%;
        left: 34%;
        top: 43%;
        transform: rotate(0deg);
    }
}

.autoAnimatie .animatie-block.rotate:hover .svg-item, .autoAnimatie .animatie-block.rotate.playing .svg-item {
    animation: itemHop 0.7s ease, itemSpin 1.4s infinite cubic-bezier(0.74, 0.03, 0.53, 0.96);
    animation-fill-mode: both;
}

@keyframes itemSpin {
  to {
    transform: rotate(360deg);
  }
}




/* item */
.autoAnimatie                       .svg-item > g > g > g > path:first-of-type {
    stroke: white;
    fill: var(--bg-color);
}
.autoAnimatie 						.svg-item path {
    fill: white;
}

/* auto */
.autoAnimatie 						.svg-car path {
    fill: white;
}
.autoAnimatie .animatie-block:hover .svg-car path, .autoAnimatie .animatie-block.active .svg-car path {
    animation: carSmall 600ms ease alternate;
}

@keyframes carSmall {
  60% {
    transform: translate(10%, 10%) scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}


.autoAnimatie h3 {
    height: 2rem;
    line-height: 2rem;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: white;
    text-align: center;
}
.autoAnimatie p {
	margin: 20px 0 0 0;
	text-align: center;
	font-family: 'Exo', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color:#ffffff;
}

/* ------------------ END AUTOANIMATIE ------------------ */

/* Mox overrides */
.mox .mox-product-title, .mox .mox-product-title a {
    color: #203F78 !important;
    font-family: 'Exo', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -0.08px;
    margin-bottom: 10px;
}
.mox a:hover {
    color: #000000 !important;
    text-shadow: unset !important;
}
.mox-product-title {
    margin-bottom: 0px;
}
.mox-product-type {
    font-size: 21px !important;
    line-height: 28px !important;
    margin-top: 9px !important;
    font-weight: normal;
}
.mox .mox-list-attributes li {
    font-size: 16px !important;
    line-height: 19px !important;
}
.mox-license-plate {
    margin-top: 16px;
    margin-bottom: 16px;
}

.mox-product-row {
    border: unset;
}
.mox .mox-btn.mox-btn-default {
    color: #203F78;
    border-color: #203F78;
    background-color: #FFFFFF;
}
.mox-filter-name:after {
    color: #203F78 !important;
}
.mox a, .mox-select:after, .mox-result-count {
    color: #203F78 !important;
}
.mox-tax {
    font-size: 16px;
    display: block;
}
.mox-pagination a.mox-pagination-active {
    background-color: #203F78 !important;
    border-radius: 14px;
    width: 26px;
    height: 26px;
    text-align: center;
    vertical-align: middle;
    font-size: 16px;
}
.mox-product p {
    font-family: Open Sans,Arial,sans-serif !important;
    font-size: 18px !important;
}