@charset "UTF-8";
@media (min-width: 1400px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1435px !important;
  }
}

@media (min-width: 992px) {
  .container-fluid-left {
    margin-left: calc((100vw - 960px) / 2) !important;
    max-width: calc(100% - (100vw - 960px) / 2 + 0px) !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 1200px) {
  .container-fluid-left {
    margin-left: calc((100vw - 1140px) / 2) !important;
    max-width: calc(100% - (100vw - 1140px) / 2 + 0px) !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 1400px) {
  .container-fluid-left {
    margin-left: calc((100vw - 1320px) / 2) !important;
    max-width: calc(100% - (100vw - 1320px) / 2 + 0px) !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 1500px) {
  .container-fluid-left {
    margin-left: calc((100vw - 1435px) / 2) !important;
    max-width: calc(100% - (100vw - 1435px) / 2 + 0px) !important;
    margin-right: 0 !important;
  }
}

@media (min-width: 768px) {
  .container-fluid-left-100 {
    margin-left: calc((100vw - 720px) / 2) !important;
    max-width: calc(100% - (100vw - 720px) / 2 + 100px) !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 992px) {
  .container-fluid-left-100 {
    margin-left: calc((100vw - 960px) / 2) !important;
    max-width: calc(100% - (100vw - 960px) / 2 + 100px) !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 1200px) {
  .container-fluid-left-100 {
    margin-left: calc((100vw - 1140px) / 2) !important;
    max-width: calc(100% - (100vw - 1140px) / 2 + 100px) !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 1400px) {
  .container-fluid-left-100 {
    margin-left: calc((100vw - 1320px) / 2) !important;
    max-width: calc(100% - (100vw - 1320px) / 2 + 100px) !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 1500px) {
  .container-fluid-left-100 {
    margin-left: calc((100vw - 1435px) / 2) !important;
    max-width: calc(100% - (100vw - 1435px) / 2 + 100px) !important;
    margin-right: 0 !important;
  }
}

.flex, .flex-end, .flex-end-center, .flex-end-stretch, .flex-end-end, .flex-end-start, .flex-start, .flex-start-stretch, .flex-start-end, .flex-start-start, .flex-evenly, .flex-evenly-stretch, .flex-evenly-end, .flex-evenly-start, .flex-around, .flex-around-stretch, .flex-around-end, .flex-around-start, .flex-between, .flex-between-center, .flex-between-stretch, .flex-between-end, .flex-between-start, .flex-center, .flex-center-stretch, .flex-center-end, .flex-center-start {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.flex-reverse {
  flex-direction: row-reverse;
}

.flex-center, .flex-center-stretch, .flex-center-end, .flex-center-start {
  justify-content: center;
  align-items: center;
}

.flex-center-start {
  align-items: flex-start;
}

.flex-center-end {
  align-items: flex-end;
}

.flex-center-stretch {
  align-items: stretch;
}

.flex-between, .flex-between-center, .flex-between-stretch, .flex-between-end, .flex-between-start {
  justify-content: space-between;
}

.flex-between-start {
  align-items: flex-start;
}

.flex-between-end {
  align-items: flex-end;
}

.flex-between-stretch {
  align-items: stretch;
}

.flex-between-center {
  align-items: center;
}

.flex-around, .flex-around-stretch, .flex-around-end, .flex-around-start {
  justify-content: space-around;
}

.flex-around-start {
  align-items: flex-start;
}

.flex-around-end {
  align-items: flex-end;
}

.flex-around-stretch {
  align-items: stretch;
}

.flex-evenly, .flex-evenly-stretch, .flex-evenly-end, .flex-evenly-start {
  justify-content: space-evenly;
}

.flex-evenly-start {
  align-items: flex-start;
}

.flex-evenly-end {
  align-items: flex-end;
}

.flex-evenly-stretch {
  align-items: stretch;
}

.flex-start, .flex-start-stretch, .flex-start-end, .flex-start-start {
  justify-content: flex-start;
}

.flex-start-start {
  align-items: flex-start;
}

.flex-start-end {
  align-items: flex-end;
}

.flex-start-stretch {
  align-items: stretch;
}

.flex-end, .flex-end-center, .flex-end-stretch, .flex-end-end, .flex-end-start {
  justify-content: flex-end;
}

.flex-end-start {
  align-items: flex-start;
}

.flex-end-end {
  align-items: flex-end;
}

.flex-end-stretch {
  align-items: stretch;
}

.flex-end-center {
  align-items: center;
}

.flex-col, .flex-col-end, .flex-col-start, .flex-col-start-center,
.flex-col-center,
.flex-col-between-center,
.flex-col-end-center {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}

.flex-col-start, .flex-col-start-center {
  align-items: flex-start;
}

.flex-col-start-center {
  justify-content: center;
}

.flex-col-end {
  align-items: flex-end;
}

.flex-col-end-center {
  justify-content: flex-end;
}

.flex-col-between-center {
  justify-content: space-between;
}

.gap-05 {
  gap: 0.5rem;
}

.gap-075 {
  gap: 0.75rem;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.gap-3 {
  gap: 3rem;
}

.gap-4 {
  gap: 4rem;
}

.gap-5 {
  gap: 5rem;
}

.gap-6 {
  gap: 6rem;
}

.fill {
  width: 100%;
  height: 100%;
}

.fill-width {
  width: 100%;
}

.fill-height {
  height: 100%;
}

.fluid-height {
  max-width: 100%;
  height: auto;
}

.fluid-width {
  max-height: 100%;
  width: auto;
}

.relative {
  position: relative;
}

.text-center * {
  text-align: center;
}

.no-padding {
  padding: 0;
}

.no-margin {
  margin: 0;
}

.half-page-left {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
}
@media (max-width: 1199px) {
  .half-page-left {
    position: relative;
    width: 100%;
    height: 420px;
  }
}

.half-page-right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
}
@media (max-width: 1199px) {
  .half-page-right {
    position: relative;
    width: 100%;
    height: 420px;
  }
}

.contain,
.contain-width {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.cover,
.cover-width {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.contain-height {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.contain-width {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.background,
.background-cover {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.background-contain {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  width: 100%;
  z-index: -1;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.info-box {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.info-box.in-view {
  opacity: 1;
  transform: translateY(0);
}

.contact {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.contact.in-view {
  opacity: 1;
  transform: translateY(0);
}

.contact-hero {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.contact-hero.in-view {
  opacity: 1;
  transform: translateY(0);
}

.hero-pages {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.hero-pages.in-view {
  opacity: 1;
  transform: translateY(0);
}

.onze-modellen {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.onze-modellen.in-view {
  opacity: 1;
  transform: translateY(0);
}

.single-carslider .owl-item {
  opacity: 1;
  transform: none;
  transition: none;
}

.owl-item {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 1s ease, transform 1s ease;
}
.owl-item.active {
  opacity: 1;
  transform: translateY(0);
}
.owl-item.in-view {
  opacity: 1;
  transform: translateY(0);
}

header {
  position: fixed;
  top: 3%;
  left: 0;
  width: 100%;
  z-index: 9000;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 500px) {
  header {
    justify-content: flex-end;
    padding-right: 20px;
  }
}
@media screen and (max-width: 992px) {
  header {
    justify-content: flex-end;
    padding-right: 20px;
  }
}

#main-header {
  position: fixed;
  color: white;
  z-index: 9999;
  transition: transform 0.3s ease;
}

/* Verberg de header naar boven toe */
#main-header.hide {
  transform: translateY(-200%);
}

.nav-container {
  width: 100%;
}

.nav-background {
  background: rgba(0, 0, 0, 0.75);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-radius: 100px;
  gap: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  width: auto;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 567px) {
  .nav-background {
    padding: 12px 1.5rem;
    gap: 10px;
  }
}
@media screen and (max-width: 992px) {
  .nav-background {
    padding: 12px 1.5rem;
  }
}

.logo {
  padding: 12px 12px;
}
@media screen and (max-width: 500px) {
  .logo {
    padding: 0;
  }
}
.logo a {
  display: flex;
}
.logo img {
  height: 32px;
}

#nav-items {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  height: 100%;
}
@media (max-width: 992px) {
  #nav-items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background-color: white;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding: 32px;
    padding-bottom: 104px;
    background-color: rgb(235, 235, 235);
  }
}
#nav-items #cross {
  display: none;
}
@media (max-width: 992px) {
  #nav-items #cross {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    cursor: pointer;
  }
  #nav-items #cross .cross-line-1,
  #nav-items #cross .cross-line-2 {
    margin-top: 32px;
    width: 30px;
    height: 4px;
    background-color: #333;
    margin: 6px 0;
  }
  #nav-items #cross .cross-line-1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  #nav-items #cross .cross-line-2 {
    transform: rotate(45deg) translate(-5px, -6px);
  }
}
#nav-items .primary-nav {
  height: 100%;
}
#nav-items .primary-nav ul {
  height: 100%;
  display: flex;
  gap: 2em;
  padding: 0;
  list-style: none;
  margin: 0;
}
#nav-items .primary-nav ul li {
  margin: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  #nav-items .primary-nav ul li {
    height: auto;
  }
}
#nav-items .primary-nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  transition: color 0.3s ease;
}
@media (max-width: 992px) {
  #nav-items .primary-nav ul li a {
    font-size: 20px;
    color: black;
  }
}
#nav-items .primary-nav ul li.current_page_item a {
  color: #d1b604;
}
#nav-items .primary-nav ul li.page_item_has_children::after {
  content: url("../images/menu-has-child.svg");
  margin-left: 5px;
  display: inline-block;
  transition: 0.3s ease;
}
#nav-items .primary-nav ul li:hover a {
  color: #d1b604;
}
#nav-items .primary-nav ul li:hover::after {
  transform: scaleY(-1);
  color: #d1b604;
}
#nav-items .primary-nav ul li:hover .children {
  display: inline;
}
@media (max-width: 992px) {
  #nav-items .primary-nav ul {
    flex-direction: column;
  }
}
@media (max-width: 992px) {
  #nav-items .search {
    width: 100%;
  }
}
#nav-items .search .searchform {
  display: flex;
  align-items: center;
  background-color: rgb(235, 235, 235);
  border-radius: 100px;
  padding: 0.7em 1.2em;
}
@media (max-width: 992px) {
  #nav-items .search .searchform {
    width: 100%;
    justify-content: space-between;
    background-color: white;
  }
}
#nav-items .search input::-moz-placeholder {
  border: none;
  background-color: transparent;
  outline: none;
  color: rgb(109, 109, 109);
  font-size: 16px;
}
#nav-items .search input,
#nav-items .search button,
#nav-items .search input::placeholder {
  border: none;
  background-color: transparent;
  outline: none;
  color: rgb(109, 109, 109);
  font-size: 16px;
}
#nav-items.is-active {
  transform: translateX(0%);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 38px;
  padding: 0.5em 1em;
  margin: 0 16px;
  background-color: rgb(235, 235, 235);
  border-radius: 4px;
  cursor: pointer;
}
@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }
}
.hamburger .hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #333;
  margin: 2px 0;
}
.nav-container #nav-items .primary-nav li.page_item_has_children {
  position: relative;
}
.nav-container #nav-items .primary-nav li.page_item_has_children .children {
  display: none;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  transform: translate(0%, 100%);
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1em;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}
.nav-container #nav-items .primary-nav li.page_item_has_children::after {
  content: url("../images/menu-has-child.svg");
  margin-left: 5px;
  display: inline-block;
  transition: 0.3s ease;
}
.nav-container #nav-items .primary-nav li.page_item_has_children:hover::after {
  transform: scaleY(-1);
}
.nav-container #nav-items .primary-nav li.page_item_has_children:hover .children {
  display: flex;
}

.hero {
  position: relative;
}
@media screen and (max-width: 576px) {
  .hero {
    display: flex;
    height: 700px;
    position: relative;
    background-color: black;
    align-items: center;
  }
}
.hero .image-container {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero .image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}
.hero .image-container .text-container {
  position: absolute;
  top: 65%;
  left: 0;
  text-align: left;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 576px) {
  .hero .image-container .text-container {
    top: 45%;
  }
}
.hero .image-container .text-container h1 {
  color: #fee434;
  font-weight: bold;
}
@media screen and (max-width: 500px) {
  .hero .image-container .text-container h1 {
    font-size: 35px;
  }
}
@media screen and (max-width: 567px) {
  .hero .image-container {
    height: 400px;
  }
  .hero .image-container img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.info-block {
  padding-top: 70px;
  padding-bottom: 140px;
  background-color: #f8f8f8;
  color: black;
}
.info-block .row {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.info-block .col-lg-5 {
  display: flex;
}
.info-block .info-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  width: 100%;
}
.info-block .info-box .content .title {
  font-weight: 500;
}
@media screen and (max-width: 567px) {
  .info-block .info-box .content .title {
    font-size: 32px;
  }
}
@media screen and (max-width: 567px) {
  .info-block .info-box .content p {
    font-size: 14px;
  }
}
.info-block .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  color: black;
  background-color: #fee434;
  width: auto;
  align-self: start;
}
.info-block .btn-primary p {
  padding: 0;
  margin: 0;
}
.info-block .btn-primary:hover {
  background-color: #e1c929;
}

.hero-pages .content {
  position: relative;
}
.hero-pages .content .image-container {
  width: 100%;
  height: 700px;
  left: 8%;
  top: 22%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 992px) {
  .hero-pages .content .image-container {
    height: 100%;
  }
}
.hero-pages .content .image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.hero-pages .content .hero-title {
  left: -10%;
  top: 50%;
  position: absolute;
}
.hero-pages .content .hero-title .gouwe {
  color: white;
  font-weight: bold;
  -webkit-text-stroke: 3px black;
}
.hero-pages .content .hero-title .autopark {
  font-weight: bold;
  color: black;
  text-decoration: underline;
}
.hero-pages .content .hero-title h1 {
  font-size: 80px;
}
@media screen and (max-width: 1900px) {
  .hero-pages .content .hero-title {
    left: -1%;
    top: 62%;
  }
  .hero-pages .content .hero-title h1 {
    font-size: 70px;
  }
}
@media screen and (max-width: 1400px) {
  .hero-pages .content .hero-title {
    left: 0%;
    top: 50%;
  }
  .hero-pages .content .hero-title .autopark {
    color: white;
  }
}
@media screen and (max-width: 992px) {
  .hero-pages .content .hero-title {
    left: 0%;
    top: 44%;
  }
  .hero-pages .content .hero-title h1 {
    font-size: 38px;
  }
}
@media screen and (max-width: 375px) {
  .hero-pages .content .hero-title {
    left: 0%;
    top: 35%;
  }
  .hero-pages .content .hero-title h1 {
    font-size: 30px;
  }
}
@media screen and (max-width: 335px) {
  .hero-pages .content .hero-title {
    left: 0%;
    top: 30%;
  }
  .hero-pages .content .hero-title h1 {
    font-size: 30px;
  }
}
.hero-pages .content .hero-text h1 {
  font-size: 48px;
}

.onze-modellen {
  background-color: #f8f8f8;
}
.onze-modellen .text-container {
  text-align: left;
}
@media screen and (max-width: 992px) {
  .onze-modellen .text-container {
    text-align: center;
  }
}
.onze-modellen .text-container h1 {
  font-size: 48px;
}
.onze-modellen .search-bar {
  position: relative;
  width: 100%;
}
.onze-modellen .search-bar input {
  width: 100%;
  padding: 12px 40px 12px 20px;
  border: 1px solid #ddd;
  border-radius: 999px;
  font-size: 16px;
  outline: none;
}
.onze-modellen .search-bar .search-icon {
  height: 24px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: #000;
}
.onze-modellen .search-bar .search-icon svg {
  width: 100%;
  height: 100%;
}
.onze-modellen a {
  color: black;
}
.onze-modellen .row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.onze-modellen .card-wrapper {
  padding-top: 50px;
  flex: 1 1 calc(33% - 30px);
  max-width: 340px;
  display: flex;
  transition: transform 0.3s ease-in-out;
}
.onze-modellen .card {
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  width: 100%;
  transition: transform 0.3s ease-in-out;
}
.onze-modellen .card a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.onze-modellen .card .card-image {
  max-width: 100%;
  max-height: 300px;
  overflow: hidden;
}
.onze-modellen .card .card-image img {
  width: 100%;
  border-radius: 12px 12px 0 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.onze-modellen .card .card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 10px;
  position: relative;
}
.onze-modellen .card .card-content .title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #565656;
  flex-shrink: 0;
}
.onze-modellen .card .card-content .prijs {
  color: black;
  font-size: 24px;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.onze-modellen .card .card-content .card-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: auto;
  margin-bottom: 15px;
}
.onze-modellen .card .card-content .card-specs span {
  color: black;
  padding-left: 5px;
}
.onze-modellen .card .card-content .card-specs .svg-container {
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  background-color: black;
}
.onze-modellen .card .card-content .card-specs .spec-item {
  display: flex;
  align-items: center;
  background-color: white;
  color: #fee434;
  border-radius: 6px;
  padding: 6px 0px;
  font-size: 14px;
  font-weight: 500;
}
.onze-modellen .card .card-content .card-specs .spec-item img {
  color: #fee434;
  width: 24px;
  height: 24px;
}
.onze-modellen .card .card-footer {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.onze-modellen .card .card-footer img {
  padding-left: 9px;
  width: 35px;
}
.onze-modellen .card .card-footer .btn-primary {
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  color: black;
  background-color: #fee434;
  display: flex;
  align-items: center;
  flex-direction: row;
}
.onze-modellen .card .card-footer:hover .btn-primary {
  background-color: #e1c929;
}
.onze-modellen .card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.onze-modellen .button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 50px;
}
.onze-modellen .button-wrapper .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  color: black;
  background-color: #fee434;
  width: auto;
  align-self: start;
}
.onze-modellen .button-wrapper .btn-primary:hover {
  background-color: #e1c929;
}
.onze-modellen .cards-count {
  color: black;
  font-size: 24px;
}

.contact-hero {
  padding-bottom: 170px;
  padding-top: 150px;
}
@media screen and (max-width: 567px) {
  .contact-hero {
    padding-bottom: 70px;
  }
}
.contact-hero .content {
  position: relative;
}
.contact-hero .content .image-container {
  height: 500px;
  display: flex;
  justify-content: center;
}
.contact-hero .content .image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1900px) {
  .contact-hero .content .image-container {
    height: 400px;
    width: 50%;
  }
}
@media screen and (max-width: 1200px) {
  .contact-hero .content .image-container {
    height: 400px;
    width: 60%;
  }
}
@media screen and (max-width: 992px) {
  .contact-hero .content .image-container {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .contact-hero .content .image-container {
    width: 100%;
  }
}
.contact-hero .content .hero-title {
  position: absolute;
  left: 0%;
  top: 100%;
  font-size: 60px;
}
.contact-hero .content .hero-title .gouwe {
  color: white;
  font-weight: bold;
  -webkit-text-stroke: 3px black;
}
.contact-hero .content .hero-title .autopark {
  font-weight: bold;
  color: black;
  text-decoration: underline;
}
@media screen and (max-width: 769px) {
  .contact-hero .content .hero-title .autopark {
    color: black;
  }
}
@media screen and (max-width: 1200px) {
  .contact-hero .content .hero-title {
    left: 0%;
    top: 80%;
  }
  .contact-hero .content .hero-title h1 {
    font-size: 50px;
  }
}
@media screen and (max-width: 769px) {
  .contact-hero .content .hero-title {
    top: 60%;
    left: 0%;
  }
}
@media screen and (max-width: 500px) {
  .contact-hero .content .hero-title {
    top: 30%;
  }
  .contact-hero .content .hero-title h1 {
    font-size: 36px;
  }
}
@media screen and (max-width: 1900px) {
  .contact-hero .content {
    left: 0;
    top: 0%;
  }
  .contact-hero .content h1 {
    font-size: 70px;
  }
}
.contact-hero .hero-text {
  z-index: -1;
  top: 65%;
  position: absolute;
  width: 40%;
  background-color: #000;
  border-radius: 20px;
  padding: 20px 40px;
  color: white;
}
.contact-hero .hero-text h1 {
  font-size: 48px;
}
@media screen and (max-width: 1400px) {
  .contact-hero .hero-text h1 {
    font-size: 38px;
  }
}
@media screen and (max-width: 992px) {
  .contact-hero .hero-text h1 {
    font-size: 32px;
  }
}
.contact-hero .hero-text p {
  color: white;
}
@media screen and (max-width: 1400px) {
  .contact-hero .hero-text p {
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  .contact-hero .hero-text p {
    font-size: 12px;
  }
}
@media screen and (max-width: 1200px) {
  .contact-hero .hero-text {
    width: 50%;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .contact-hero .hero-text {
    width: 80%;
  }
}
@media screen and (max-width: 500px) {
  .contact-hero .hero-text {
    top: 57%;
    padding: 10px 20px;
  }
}

.contact {
  padding-bottom: 70px;
}
.contact .contact-form {
  padding-top: 150px;
  padding-bottom: 50px;
}
.contact .contact-form h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  color: black;
}
.contact .contact-form .subtekst {
  font-size: 16px;
  margin-bottom: 30px;
}
.contact .contact-form .wrapper {
  display: flex;
  flex-direction: column;
}
.contact .contact-form .wrapper .form-row {
  gap: 20px;
}
.contact .contact-form .wrapper .form-row input {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  background-color: #f2f2f2;
  width: 90%;
}
.contact .contact-form .wrapper input,
.contact .contact-form .wrapper .text {
  resize: vertical;
  min-height: 120px;
}
.contact .contact-form .wrapper .contact-button {
  padding: 15px;
  background-color: black;
  color: white;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 90%;
}
.contact .contact-form .wrapper .contact-button:hover {
  background-color: #333;
}
.contact .contact-form input.wpcf7-form-control,
.contact .contact-form textarea.wpcf7-form-control {
  all: unset;
  width: 90%;
  display: block;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  background-color: #f2f2f2;
}
.contact .contact-form .wpcf7 {
  width: 100%;
}
.contact .contact-form .wpcf7-form {
  display: contents;
}
.contact .contact-form .wpcf7-response-output {
  margin-top: 10px;
  color: red;
}
@media screen and (max-width: 567px) {
  .contact .contact-form {
    padding-top: 70px;
    padding-bottom: 0px;
  }
}

.maps-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.maps-wrapper iframe {
  border: 0;
  height: 80%;
  width: 100%;
  padding: 40px;
}
@media screen and (max-width: 972px) {
  .maps-wrapper iframe {
    padding: 0;
    height: 400px;
  }
}

.single-carslider {
  padding-top: 140px;
}
.single-carslider .owl-wrapper {
  position: relative;
}
.single-carslider .owl-wrapper .owl-stage-outer {
  height: 600px;
  width: 1000px;
}
@media screen and (max-width: 1400px) {
  .single-carslider .owl-wrapper .owl-stage-outer {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .single-carslider .owl-wrapper .owl-stage-outer {
    height: 400px;
  }
}
@media screen and (max-width: 500px) {
  .single-carslider .owl-wrapper .owl-stage-outer {
    height: 300px;
  }
}
.single-carslider .owl-wrapper .advertentie-slider .owl-item.active {
  display: flex;
  justify-content: center;
  align-items: center;
}
.single-carslider .owl-wrapper .advertentie-slider .item img {
  width: 600px;
}
@media screen and (max-width: 768px) {
  .single-carslider .owl-wrapper .advertentie-slider .item img {
    width: 100%;
    -o-object-fit: container;
       object-fit: container;
  }
}
.single-carslider .owl-wrapper .hero-title {
  height: 400px;
  z-index: 100;
  background-color: white;
  position: absolute;
  left: 0%;
  top: 70%;
  font-size: 60px;
}
@media screen and (max-width: 1200px) {
  .single-carslider .owl-wrapper .hero-title {
    left: 0%;
    top: 70%;
  }
  .single-carslider .owl-wrapper .hero-title h1 {
    font-size: 50px;
  }
}
@media screen and (max-width: 1400px) {
  .single-carslider .owl-wrapper .hero-title {
    background-color: transparent;
  }
}
@media screen and (max-width: 992px) {
  .single-carslider .owl-wrapper .hero-title {
    display: none;
  }
}
.single-carslider .owl-wrapper .hero-title .gouwe {
  color: white;
  font-weight: bold;
  -webkit-text-stroke: 3px black;
}
.single-carslider .owl-wrapper .hero-title .autopark {
  font-weight: bold;
  color: black;
  text-decoration: underline;
}
@media screen and (max-width: 769px) {
  .single-carslider .owl-wrapper .hero-title .autopark {
    color: #fee434;
  }
}

.information {
  background-color: #f8f8f8;
  padding-bottom: 70px;
}
.information .content {
  padding-top: 50px;
}
.information .content .card-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: auto;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .information .content .card-specs {
    display: flex;
    flex-direction: column;
  }
}
.information .content .card-specs span {
  color: black;
  padding-left: 5px;
}
.information .content .card-specs .svg-container {
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  background-color: black;
}
.information .content .card-specs .spec-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  background-color: #f8f8f8;
  color: #fee434;
  border-radius: 6px;
  padding: 15px 20px;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .information .content .card-specs .spec-item {
    font-size: 16px;
  }
}
.information .content .card-specs .spec-item .spans {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.information .content .card-specs .spec-item .spans span:first-child {
  color: #5d5d5d;
}
.information .content .card-specs .spec-item img {
  color: #fee434;
  width: 24px;
  height: 24px;
}
.information .content h3 {
  color: #565656;
  margin-bottom: 0px;
  padding: 6px 20px;
}
.information .content h2 {
  color: black;
  margin-top: 5px;
  padding: 6px 20px;
}

.beschrijving {
  padding-top: 70px;
  padding-bottom: 70px;
}

.footer-main {
  background-color: #000;
  color: #fff;
  padding: 2rem 0;
}
.footer-main h2,
.footer-main h3,
.footer-main p,
.footer-main a {
  color: #fff;
}
.footer-main .contact-row {
  margin-top: 2rem;
}
.footer-main .contact-row .contact-info a,
.footer-main .contact-row .social-media a {
  text-decoration: none;
}
.footer-main .contact-row .contact-info p,
.footer-main .contact-row .social-media p {
  margin-bottom: 0.5rem;
}
.footer-main .contact-row .contact-info p i,
.footer-main .contact-row .social-media p i {
  margin-right: 0.5rem;
}
.footer-main .contact-row .contact-info .icons a,
.footer-main .contact-row .social-media .icons a {
  display: inline-block;
  margin-right: 10px;
  color: white;
  font-size: 1.2rem;
}
.footer-main .contact-row .contact-info .icons a:hover,
.footer-main .contact-row .social-media .icons a:hover {
  color: #f5d100;
}
.footer-main .footer-divider {
  border-color: #444;
  margin: 2rem 0;
}
.footer-main .page-links {
  display: flex;
  flex-direction: row;
}
.footer-main .page-links .footer-bottom-nav {
  gap: 1rem;
  list-style: none;
  padding-left: 0;
}
.footer-main .page-links .footer-bottom-nav li,
.footer-main .page-links .footer-bottom-nav a,
.footer-main .page-links .footer-bottom-nav ul {
  color: white;
  text-decoration: none;
}
.footer-main .page-links .footer-bottom-nav li::marker,
.footer-main .page-links .footer-bottom-nav a::marker,
.footer-main .page-links .footer-bottom-nav ul::marker {
  content: none;
}
.footer-main .page-links .footer-bottom-nav li:hover,
.footer-main .page-links .footer-bottom-nav a:hover,
.footer-main .page-links .footer-bottom-nav ul:hover {
  color: #f5d100;
}
.footer-main .page-links .footer-bottom-nav ul {
  display: flex;
  justify-content: space-evenly;
  gap: 30px;
  flex-wrap: wrap;
  padding-left: 0px;
}

.rotate {
  transform: rotate(-90deg);
  transform-origin: left top;
  display: inline-block;
}

section.error-404 {
  padding: 5em 0;
}

body,
html {
  padding: 0;
  margin: 0;
  font-family: "Sansation", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333b6f;
}
body.menu-open,
html.menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 30px;
  font-weight: 100;
  font-family: "Sansation", sans-serif;
  line-height: 1.2;
}
@media (max-width: 1199px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-top: 22px;
    margin-bottom: 22px;
  }
}
@media (max-width: 992px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-top: 18px;
    margin-bottom: 18px;
  }
}
@media (max-width: 768px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-top: 12px;
    margin-bottom: 12px;
  }
}

ul {
  padding-left: 20px;
  list-style: disc;
}
ul li {
  margin-bottom: 15px;
  color: #333b6f;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

p + .btn {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

p {
  color: black;
}

.hero-title {
  font-size: 80px;
}

.hero-subtitle {
  font-size: 48px;
}

.button {
  font-size: 24px;
}

.title {
  font-size: 48px;
}

.paragraph {
  font-size: 16px;
}

.paragraph-title {
  font-size: 24px;
}

.stroke-only {
  color: transparent; /* Binnenkant doorzichtig */
  -webkit-text-stroke: 2px white; /* Witte buitenlijn */
}

.stroke-only-yellow {
  color: white; /* Binnenkant doorzichtig */
  -webkit-text-stroke: 3px #fee434; /* Witte buitenlijn */
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .stroke-only-yellow {
    -webkit-text-stroke: 2px #fee434; /* Witte buitenlijn */
  }
}

.caps {
  text-transform: uppercase;
}

.licenseform {
  padding-top: 80px;
  padding-bottom: 80px;
}
.licenseform .kentekencheck {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.licenseform .kentekencheck h2 {
  text-align: center;
  color: #333;
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: 600;
}
.licenseform .kentekencheck input[type=text] {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1.1rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  box-sizing: border-box;
}
.licenseform .kentekencheck input[type=text]:focus {
  outline: none;
  border-color: #007cba;
  box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}
.licenseform .kentekencheck input[type=text]::-moz-placeholder {
  text-transform: none;
  opacity: 0.7;
}
.licenseform .kentekencheck input[type=text]::placeholder {
  text-transform: none;
  opacity: 0.7;
}
.licenseform .kentekencheck button {
  width: 100%;
  padding: 15px;
  background: #fee434;
  color: black;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}
.licenseform .kentekencheck button:hover {
  background: #e1c929;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 124, 186, 0.3);
}
.licenseform .kentekencheck button:active {
  transform: translateY(0);
}
.licenseform .kentekencheck button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.licenseform .kentekencheck #result {
  margin-top: 20px;
}
.licenseform .kentekencheck .vehicle-container {
  background: #f8f9fa;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.5s ease-in-out;
}
.licenseform .kentekencheck .vehicle-header {
  background: linear-gradient(135deg, #fee434 0%, #e1c929 100%);
  color: black;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.licenseform .kentekencheck .vehicle-header .vehicle-title h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}
.licenseform .kentekencheck .vehicle-header .vehicle-title .vehicle-color {
  display: inline-block;
  background: #e1c929;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-top: 5px;
}
.licenseform .kentekencheck .vehicle-header .vehicle-year {
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.9;
}
.licenseform .kentekencheck .info-section {
  border-bottom: 1px solid #e5e5e5;
}
.licenseform .kentekencheck .info-section:last-child {
  border-bottom: none;
}
.licenseform .kentekencheck .info-section h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #495057;
}
.licenseform .kentekencheck .info-section.basis-info {
  padding: 20px;
  background: white;
}
.licenseform .kentekencheck .info-section.basis-info h4 {
  margin-bottom: 15px;
  color: #007cba;
}
.licenseform .kentekencheck .info-section.dropdown-section .section-header {
  padding: 15px 20px;
  background: #f8f9fa;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border-bottom: 1px solid #e5e5e5;
}
.licenseform .kentekencheck .info-section.dropdown-section .section-header:hover {
  background: #e9ecef;
}
.licenseform .kentekencheck .info-section.dropdown-section .section-header.active {
  background: #e7f3ff;
}
.licenseform .kentekencheck .info-section.dropdown-section .section-header.active h4 {
  color: #007cba;
}
.licenseform .kentekencheck .info-section.dropdown-section .section-header .dropdown-icon {
  font-size: 0.8rem;
  color: #6c757d;
  transition: transform 0.3s ease;
}
.licenseform .kentekencheck .info-section.dropdown-section .section-content {
  display: none;
  padding: 20px;
  background: white;
  animation: slideDown 0.3s ease-in-out;
}
.licenseform .kentekencheck .info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 600px) {
  .licenseform .kentekencheck .info-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.licenseform .kentekencheck .info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}
.licenseform .kentekencheck .info-item .label {
  font-weight: 500;
  color: #495057;
  flex: 1;
}
.licenseform .kentekencheck .info-item .value {
  font-weight: 600;
  color: #212529;
  text-align: right;
  flex: 1;
  background: rgba(0, 124, 186, 0.05);
  padding: 4px 8px;
  border-radius: 4px;
  margin-left: 10px;
}
.licenseform .kentekencheck .loading {
  text-align: center;
  padding: 20px;
  color: #6c757d;
  font-style: italic;
  position: relative;
}
.licenseform .kentekencheck .loading::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(0, 124, 186, 0.3);
  border-radius: 50%;
  border-top-color: #007cba;
  animation: spin 1s ease-in-out infinite;
  margin-left: 10px;
}
.licenseform .kentekencheck .error {
  background: #f8d7da;
  color: #721c24;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #f5c6cb;
  text-align: center;
  animation: shake 0.5s ease-in-out;
}
.licenseform .kentekencheck .error::before {
  content: "⚠️";
  margin-right: 8px;
}
@media (max-width: 768px) {
  .licenseform .kentekencheck {
    margin: 20px;
    padding: 20px;
  }
  .licenseform .kentekencheck h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .licenseform .kentekencheck .vehicle-info .info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .licenseform .kentekencheck .vehicle-info .info-row:hover {
    margin: 0;
    padding: 12px 0;
  }
  .licenseform .kentekencheck .vehicle-info .info-row .value {
    text-align: left;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .licenseform .kentekencheck {
    margin: 10px;
    padding: 15px;
  }
  .licenseform .kentekencheck input[type=text] {
    padding: 12px 16px;
    font-size: 1rem;
  }
  .licenseform .kentekencheck button {
    padding: 12px;
    font-size: 1rem;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

.result {
  font-weight: 600;
  padding: 3px 10px;
  background-color: #f8f8f8;
  text-align: right;
  flex: 1;
}
.result .info-item {
  display: flex;
  justify-content: space-between;
}

.button-wrapper {
  padding-top: 50px;
}
.button-wrapper .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  color: black;
  background-color: #fee434;
  width: auto;
  align-self: start;
}
.button-wrapper .btn-primary p {
  padding: 0;
  margin: 0;
}
.button-wrapper .btn-primary:hover {
  background-color: #e1c929;
}

@media screen and (max-width: 567px) {
  .cards .owl-carousel {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
  .cards .owl-carousel .owl-stage-outer {
    padding: 0px;
  }
}
.cards .owl-stage {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.cards .container .row {
  gap: 30px;
  padding: 80px 0 50px 0;
}
.cards .container .row.owl-carousel .owl-stage-outer {
  height: 850px;
}
@media screen and (max-width: 768px) {
  .cards .container .row.owl-carousel .owl-stage-outer {
    height: 750px;
  }
}
.cards .container .row.owl-carousel .owl-item:not(.cloned):nth-of-type(2) .card {
  flex: 1.2 1 calc(34% - 40px);
  max-width: 420px;
}
.cards .container .row.owl-carousel .owl-item:not(.cloned):nth-of-type(2) .card .card-image img {
  height: 320px;
}
.cards .container .row.owl-carousel .owl-item:not(.cloned):nth-of-type(2) .card .card-content {
  padding: 15px;
}
.cards .container .row.owl-carousel .owl-item:not(.cloned):nth-of-type(2) .card .card-footer {
  padding: 25px;
}
.cards .container .row.owl-carousel .owl-item:not(.cloned):nth-of-type(2) .card .card-footer .btn-primary {
  padding: 12px 24px;
}
.cards .container .row.owl-carousel .owl-item:not(.cloned):nth-of-type(2) .card:hover {
  transform: scale(1.05);
}
.cards .container .row .card {
  flex: 1.2 1 calc(34% - 40px);
  max-width: 420px;
  padding: 0px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  width: 100%;
  transition: transform 0.3s ease-in-out;
}
.cards .container .row .card a {
  color: black;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.cards .container .row .card .card-image {
  max-width: 100%;
  max-height: 300px;
  overflow: hidden;
}
.cards .container .row .card .card-image img {
  width: 100%;
  border-radius: 12px 12px 0 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.cards .container .row .card .card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 20px;
  position: relative;
}
.cards .container .row .card .card-content .title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #565656;
  flex-shrink: 0;
}
.cards .container .row .card .card-content .prijs {
  color: black;
  font-size: 24px;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.cards .container .row .card .card-content .card-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: auto;
  margin-bottom: 15px;
}
.cards .container .row .card .card-content .card-specs span {
  color: black;
  padding-left: 5px;
}
.cards .container .row .card .card-content .card-specs .svg-container {
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  background-color: black;
}
.cards .container .row .card .card-content .card-specs .spec-item {
  display: flex;
  align-items: center;
  background-color: white;
  color: #fee434;
  border-radius: 6px;
  padding: 6px 0px;
  font-size: 14px;
  font-weight: 500;
}
.cards .container .row .card .card-content .card-specs .spec-item img {
  color: #fee434;
  width: 24px;
  height: 24px;
}
.cards .container .row .card .card-footer {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.cards .container .row .card .card-footer img {
  padding-left: 9px;
  width: 35px;
}
.cards .container .row .card .card-footer .btn-primary {
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  color: black;
  background-color: #fee434;
  display: flex;
  align-items: center;
  flex-direction: row;
}
.cards .container .row .card .card-footer:hover .btn-primary {
  background-color: #e1c929;
}
.cards .container .row .card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.cards .container .row .button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 50px;
}
.cards .container .row .button-wrapper .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  color: black;
  background-color: #fee434;
  width: auto;
  align-self: start;
}
.cards .container .row .button-wrapper .btn-primary:hover {
  background-color: #e1c929;
}
.cards .button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 50px;
}
.cards .button-wrapper .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  color: black;
  background-color: #fee434;
  width: auto;
  align-self: start;
}
.cards .button-wrapper .btn-primary:hover {
  background-color: #e1c929;
}

.owl-carousel .owl-nav {
  display: flex;
  justify-content: flex-start;
  gap: 5px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .owl-carousel .owl-nav {
    margin-top: 0px;
  }
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  background-color: #fee434 !important;
  padding: 10px 6px !important;
  border-radius: 8px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.owl-carousel .owl-nav button.owl-prev span svg,
.owl-carousel .owl-nav button.owl-next span svg {
  display: flex;
  width: 35px;
  height: 25px;
}
.owl-carousel .owl-nav button.owl-prev1,
.owl-carousel .owl-nav button.owl-next1 {
  background-color: #fee434 !important;
  padding: 10px 6px !important;
  border-radius: 8px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.owl-carousel .owl-nav button.owl-prev1 span svg,
.owl-carousel .owl-nav button.owl-next1 span svg {
  display: flex;
  width: 35px;
  height: 25px;
}

.advertentie-slider .owl-nav {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 0px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .advertentie-slider .owl-nav {
    justify-content: flex-start;
  }
}
.advertentie-slider .owl-nav button.owl-prev,
.advertentie-slider .owl-nav button.owl-next {
  background-color: #fee434 !important;
  padding: 10px 6px !important;
  border-radius: 8px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.advertentie-slider .owl-nav button.owl-prev span svg,
.advertentie-slider .owl-nav button.owl-next span svg {
  display: flex;
  width: 35px;
  height: 25px;
}/*# sourceMappingURL=style.css.map */