@font-face {
  font-family: "ZeekrText-Medium, sans-serif";
  src: url(../fonts/ZeekrText-Medium.ttf) format("ttf");
}
body {
  font-family: "ZeekrText-Medium, sans-serif";
  font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

h2 {
  padding-bottom: 20px;
  font-size: 40px;
  line-height: 48px;
}

h3 {
  padding-bottom: 20px;
  font-size: 28px;
  line-height: 34px;
}

h5 {
  padding-bottom: 16px;
  font-size: 18px;
  line-height: 34px;
}

.btn {
  font-size: 18px;
  line-height: 22px;
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
  align-items: center;
}
.btn svg {
  transition: 0.5s;
}
.btn:hover {
  border-color: rgba(0, 0, 0, 0);
}
.btn:hover svg {
  transform: scale(1.2);
}

.btn-primary {
  font-weight: 500;
  box-shadow: none;
  border-radius: 300px;
  padding: 16px 24px;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0);
  background-color: #fff4e2;
}
.btn-primary .icon {
  width: 24px;
  height: 24px;
  fill: #000;
}
.btn-primary:hover {
  color: #000;
  background-color: #ebebeb;
}

.btn-danger {
  font-weight: 500;
  box-shadow: none;
  border-radius: 300px;
  padding: 16px 24px;
  color: #fff4e2;
  border: 1px solid #ff5841;
  background-color: #ff5841;
}
.btn-danger .icon {
  width: 24px;
  height: 24px;
  fill: #000;
}
.btn-danger:hover {
  background-color: #ff7a62;
}

.btn-outline-primary {
  font-weight: 500;
  box-shadow: none;
  border-radius: 300px;
  padding: 16px 24px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid #fff;
}
.btn-outline-primary .icon svg path {
  width: 24px;
  height: 24px;
  fill: #fff;
}
.btn-outline-primary:hover {
  color: #000;
  background-color: #fff;
}
.btn-outline-primary:hover .icon svg path {
  fill: #000;
}

.btn-link {
  font-weight: 500;
  margin-top: 32px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  box-shadow: none;
  color: #1ef1c6;
  text-decoration: none;
}
.btn-link .icon svg path {
  fill: #1ef1c6;
}
.btn-link:hover {
  color: #0dcea7;
}
.btn-link:hover .icon svg path {
  fill: #0dcea7;
}

.card {
  border: none;
  border-radius: 8px;
  background-color: #000;
}
.card .card-img-top {
  margin-bottom: 20px;
  border-radius: 8px;
}
.card .card-body {
  padding: 0;
  color: #e6e6e6;
}
.card .subtitle {
  text-transform: uppercase;
  letter-spacing: 8px;
}

.form-check-input[type=checkbox] {
  border-radius: 4px;
  width: 28px;
  height: 28px;
  border: 1px solid #000;
}
.form-check-input[type=checkbox]:focus {
  box-shadow: none;
}

.sidebar {
  position: fixed;
  bottom: 0;
  left: auto;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  height: -moz-fit-content;
  height: fit-content;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 13px 0 rgba(0, 0, 0, 0.04), 0 2px 55px 0 rgba(0, 0, 0, 0.13);
}
.sidebar .sidebar-item {
  background-color: #000;
  padding: 8px;
  width: 80px;
  height: 90px;
}
.sidebar .sidebar-item a {
  background-color: #000;
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  height: 100%;
  font-size: 11px;
}
.sidebar .sidebar-item a svg, .sidebar .sidebar-item a i {
  font-size: 22px;
}
.sidebar .sidebar-item a:hover {
  color: #000;
}
.sidebar .sidebar-item.locatie {
  background-color: #fff;
}
.sidebar .sidebar-item.locatie a {
  background-color: #fff;
  color: #000;
}
.sidebar .sidebar-item.locatie:hover {
  background-color: #000;
}
.sidebar .sidebar-item.locatie:hover a {
  color: #fff;
  background-color: #000;
}
.sidebar .sidebar-item.locatie:hover svg, .sidebar .sidebar-item.locatie:hover i {
  color: #fff;
}
.sidebar .sidebar-item:hover {
  background-color: #fff;
}
.sidebar .sidebar-item:hover a {
  background-color: #fff;
  color: #000;
}
.sidebar .sidebar-item:hover svg, .sidebar .sidebar-item:hover i {
  color: #000;
}

header .navbar {
  background-color: #131313;
  padding: 16px 0;
}
header .wrapper-navbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .wrapper-navbar .navbar-brand {
  display: flex;
  gap: 11px;
  align-items: center;
}
header .wrapper-navbar .navbar-brand img {
  width: 120px;
}
header .right-side {
  display: flex;
  align-items: center;
  gap: 35px;
}
header .navigation-links {
  margin: 0;
}
header .navigation-links .list-inline-item:not(:last-child) {
  margin-right: 35px;
}
header .navigation-links .list-inline-item .list-link {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  padding: 12px 16px 12px 16px;
  text-align: center;
  border-radius: 39px;
  transition: all ease-in-out 0.2s;
}
header .navigation-links .list-inline-item .list-link:hover {
  background-color: #fff4e2;
  color: #000;
}
header .wrapper-offcanvas .btn-header {
  padding: 8px 16px;
  border: 1px solid rgba(0, 0, 0, 0);
  color: #fff;
  background-color: #ff5841;
  border-radius: 39px;
  cursor: pointer;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 17px;
}
header .wrapper-offcanvas .btn-header .fa-bars {
  font-size: 17px;
}
header .wrapper-offcanvas .btn-header:hover {
  background-color: #ff7a62;
}
header .wrapper-offcanvas .offcanvas {
  background-color: #131313;
  max-width: 350px;
  width: 100%;
}
header .wrapper-offcanvas .offcanvas-header {
  padding: 27px 32px;
  align-items: center;
  background-color: #ff7a62;
  display: flex;
  justify-content: space-between;
}
header .wrapper-offcanvas .offcanvas-title {
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 8px;
  line-height: 21px;
  font-weight: 600;
  color: #fff;
  padding-bottom: 0;
}
header .wrapper-offcanvas .btn-close {
  opacity: 1;
}
header .wrapper-offcanvas .offcanvas-body {
  padding: 32px;
}
header .wrapper-offcanvas .menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
header .wrapper-offcanvas .menu-list .menu-list-item {
  margin-bottom: 25px;
}
header .wrapper-offcanvas .menu-list .menu-list-item a {
  padding: 18px 18px;
  font-size: 18px;
  line-height: 22px;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  gap: 16px;
  background-color: #262626;
  transition: all ease-in-out 0.2s;
  font-weight: 600;
  letter-spacing: 1.5px;
}
header .wrapper-offcanvas .menu-list .menu-list-item a:hover {
  background-color: #fff4e2;
  color: #000;
}

.hero-banner {
  position: relative;
  background-color: #000;
}
.hero-banner .video-container {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}
.hero-banner .video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-banner .img-fluid {
  max-width: 100%;
  height: auto;
  width: 100%;
  aspect-ratio: 20/5;
}
.hero-banner .wrapper-text-banner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 90%;
}
.hero-banner .wrapper-text-banner .text-banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.hero-banner .wrapper-text-banner .text-banner h2 {
  color: #fff;
}
.hero-banner .title-element {
  text-align: center;
}
.hero-banner .title-element h1 {
  padding-bottom: 16px;
  font-size: 82px;
  line-height: 86px;
  letter-spacing: -1px;
  color: #fff;
}
.hero-banner .title-element p {
  font-size: 24px;
  line-height: 26px;
  color: #fff;
}
.hero-banner .buttons-element {
  display: flex;
  align-items: center;
  gap: 15px;
}

.wrapper-cards {
  background-color: #000;
  padding: 80px 0;
}

.text-image {
  background-color: #000;
  padding: 80px 0;
}
.text-image .image-side {
  display: flex;
  align-items: center;
  height: 100%;
}
.text-image .image-side img {
  border-radius: 8px;
}

.text-image + .text-image {
  padding-top: 0;
}

.wrapper-small-cards {
  background-color: #000;
  padding-bottom: 80px;
}
.wrapper-small-cards .card {
  text-align: center;
}
.wrapper-small-cards .card-img-top {
  max-width: 24px;
  margin: 0 auto 20px auto;
}

.wrapper-video {
  padding: 80px 0;
  background-color: #1c1c1c;
}
.wrapper-video .video {
  display: flex;
  justify-content: center;
  align-items: center;
}
.wrapper-video .video iframe {
  max-width: 100%;
  background-image: url("https://i.ytimg.com/vi_webp/fy8SQCnbYls/sddefault.webp");
}
.wrapper-video .video .vid-fluid {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.wrapper-video .video .border-radius-img {
  border-radius: 10px;
}
.wrapper-video .video .transition {
  transition: all 0.3s ease;
}

.info-cta {
  padding-bottom: 80px;
  background-color: #f1efeb;
}
.info-cta h2 {
  font-size: 48px;
  line-height: 50px;
}
.info-cta p {
  font-size: 32px;
  line-height: 1.1;
}
.info-cta .wrapper-info-cta {
  max-width: 900px;
  margin: auto;
  color: #000;
}

.formular-contact .contact-outer-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.formular-contact .contact-wrapper {
  margin: 0 auto;
  padding: 80px 16px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.formular-contact .contact {
  margin-top: 20px;
  width: 100%;
}
.formular-contact .contact textarea {
  height: 100px !important;
}
.formular-contact .contact .name-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.formular-contact .form-floating input:focus,
.formular-contact .form-floating textarea:focus,
.formular-contact .form-floating select:focus {
  box-shadow: none;
}
.formular-contact .contact .name-group .form-floating {
  width: 100%;
}
.formular-contact .contact-terms {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 10px 0 20px 0;
}
.formular-contact .contact-terms p {
  margin: 0;
  font-size: 15px;
}
.formular-contact .contact-terms p a {
  text-decoration: none;
  color: #1ef1c6;
}
.formular-contact .btn {
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.wrapper-accordion {
  background-color: #000;
  padding: 80px 0;
}
.wrapper-accordion h2 {
  color: #fff;
}
.wrapper-accordion .accordion .accordion-item {
  background-color: #000;
  color: #e6e6e6;
  border: none;
  border-bottom: 1px solid #464646;
}
.wrapper-accordion .accordion .accordion-item:first-child {
  border-top: 1px solid #464646;
  border-bottom: 1px solid #464646;
}
.wrapper-accordion .accordion .accordion-item .accordion-header {
  padding-bottom: 0;
  line-height: 30px;
}
.wrapper-accordion .accordion .accordion-item .accordion-button {
  background-color: #000;
  color: #e6e6e6;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 20px;
}
.wrapper-accordion .accordion .accordion-item .accordion-button:focus {
  box-shadow: none;
}
.wrapper-accordion .accordion .accordion-button:not(.collapsed)::after {
  background-image: url("../images/minus.svg") !important;
}
.wrapper-accordion .accordion .accordion-button.collapsed::after {
  background-image: url("../images/plus.svg") !important;
}

.test-drive-form .contact {
  margin-top: 0;
}
.test-drive-form .form-item {
  margin-bottom: 20px;
}
.test-drive-form .form-item input::-webkit-calendar-picker-indicator {
  filter: invert(1);
}
.test-drive-form .terms-wrapper {
  margin-top: 50px;
}

.model-style .img-fluid {
  aspect-ratio: 12/5;
}
.model-style .wrapper-text-banner {
  right: 0;
}
.model-style .title-element {
  padding: 20px;
}
.model-style h4 {
  text-transform: uppercase;
  letter-spacing: 8px;
  padding-bottom: 20px;
}

.model-style-2 {
  overflow: hidden;
}
.model-style-2 .img-fluid {
  aspect-ratio: 12/5;
}
.model-style-2 .wrapper-text-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
}
.model-style-2 .title-element {
  padding: 20px;
}
.model-style-2 h4 {
  text-transform: uppercase;
  letter-spacing: 8px;
  padding-bottom: 20px;
}

.grid-small-cards {
  background-color: #000;
  padding: 70px;
}
.grid-small-cards .title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 8px;
  margin-bottom: 40px;
}
.grid-small-cards .single-card {
  padding: 40px;
  min-height: 205px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin-bottom: 20px;
}
.grid-small-cards .single-card p {
  margin: 0;
}

.full-image {
  padding: 50px 0;
  background-color: #000;
}

.galerie {
  padding: 50px 0;
  background-color: #000;
}
.galerie h2 {
  text-transform: uppercase;
  letter-spacing: 8px;
}

.caracteristici {
  padding: 50px 0;
  background-color: #000;
}
.caracteristici h2 {
  text-transform: uppercase;
  letter-spacing: 8px;
}

.title-section {
  padding-top: 50px;
  background-color: #000;
}

.carousel-gallery {
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #ebe8e3);
}
.carousel-gallery .carousel {
  padding-top: 100px;
}
.carousel-gallery .carousel-indicators {
  margin-left: auto;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
  bottom: auto;
  top: 15px;
  padding: 4px;
  border-radius: 50px;
  background-color: #ebe8e3;
  gap: 20px;
}
.carousel-gallery .carousel-indicators button {
  font-size: 16px;
  line-height: 16px;
}
.carousel-gallery .carousel-indicators [data-bs-target] {
  text-indent: 0;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  color: #000;
  background-color: #fff;
  border-top: none !important;
  border-bottom: none !important;
  padding: 20px 35px;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.carousel-gallery picture {
  width: 100%;
  display: inline-block;
  height: 100%;
  text-align: center;
}
.carousel-gallery .wrapper-car-details {
  display: flex;
  width: 90%;
  text-align: center;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 auto;
}
.carousel-gallery .wrapper-car-details .car-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-items: center;
}
.carousel-gallery .wrapper-car-details .car-details span {
  font-size: 40px;
  line-height: 43px;
  font-weight: 600;
}
.carousel-gallery .wrapper-car-details .car-details span.small {
  color: #66696b;
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
}
.carousel-gallery .btn-danger {
  width: -moz-fit-content;
  width: fit-content;
  margin: 25px auto 25px auto;
}

.footer-top {
  padding: 40px 0;
  background-color: #1c1c1c;
}
.footer-top h5 {
  font-size: 20px;
  padding: 15px 0;
  text-transform: uppercase;
  color: #fff;
}
.footer-top ul {
  padding: 0;
  list-style: none;
}
.footer-top ul li {
  margin-bottom: 10px;
  padding: 0;
}
.footer-top ul li a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}
.footer-top ul li a:hover {
  color: #fff4e2;
}

.footer-middle {
  background-color: #1c1c1c;
  padding: 20px 0;
  border-top: 1px solid #464646;
  border-bottom: 1px solid #464646;
}
.footer-middle .text-social-media {
  margin-right: 10px;
  font-size: 18px;
  color: #fff;
}
.footer-middle .footer-social {
  color: #fff;
}
.footer-middle .footer-social i,
.footer-middle .footer-social svg {
  font-size: 25px;
}
.footer-middle .footer-social:hover {
  color: #fff4e2;
}
.footer-middle .anpc {
  width: 150px;
}

.footer-bottom {
  padding: 20px 0;
  background-color: #1c1c1c;
}
.footer-bottom .wrapper-bottom-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom .footer-logos {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-bottom .footer-logos img {
  max-width: 100px;
  width: 100%;
}
.footer-bottom .list-inline {
  margin: 0;
}
.footer-bottom .list-inline li a {
  color: #fff4e2;
  font-size: 14px;
  text-decoration: none;
}
.footer-bottom .list-inline li a:hover {
  text-decoration: underline;
  color: #fff4e2;
}

.simple-banner {
  background-color: #000;
  padding: 70px 0;
}
.simple-banner h2 {
  padding: 0;
  text-align: center;
  color: #fff;
}

.service {
  font-family: "ZeekrText-Medium, sans-serif";
}
.service h3 {
  padding-bottom: 50px;
  text-align: center;
}
.service ul {
  font-size: 20px;
  font-family: "ZeekrText-Medium, sans-serif";
}
.service ul li {
  padding: 10px 0;
}
.service p {
  margin-top: 20px;
}
.service p span {
  text-decoration: underline;
}

@media (max-width: 1300px) {
  .hero-banner .img-fluid {
    aspect-ratio: 13/5;
  }
}
@media screen and (max-width: 1000px) {
  .responsive-table {
    max-height: 500px;
    overflow: auto;
    position: relative;
  }
  .responsive-table thead {
    position: sticky;
    top: 0;
  }
}
@media (max-width: 992px) {
  .sidebar {
    bottom: 0;
    left: 50%;
    right: auto;
    top: auto;
    transform: translate(-50%, 0);
    flex-direction: row;
    width: 100vw;
  }
  .sidebar .sidebar-item {
    width: 100%;
    height: 60px;
  }
  header .navigation-links {
    display: none;
  }
  .hero-banner .img-fluid {
    aspect-ratio: 11/5;
  }
}
@media (max-width: 767px) {
  .hero-banner .img-fluid {
    aspect-ratio: 8/5;
  }
  .card {
    margin-bottom: 30px;
  }
  .wrapper-cards {
    padding-bottom: 0;
  }
  .text-image .text-side {
    margin-bottom: 30px;
  }
  .footer-bottom .wrapper-bottom-footer {
    flex-direction: column-reverse;
  }
}
@media (max-width: 576px) {
  header .wrapper-offcanvas .offcanvas {
    max-width: 100%;
  }
  .hero-banner .title-element h1 {
    font-size: 38px;
    line-height: 40px;
  }
  .hero-banner .wrapper-text-banner .title-element {
    position: relative;
    z-index: 2;
  }
  .hero-banner .wrapper-text-banner p {
    margin: 0;
  }
  .hero-banner .buttons-element {
    flex-direction: column;
    margin-top: 20px;
  }
  .hero-banner .buttons-element .btn {
    width: 100%;
  }
  .wrapper-cards h2 {
    font-size: 34px;
  }
  .info-cta .buttons-element {
    flex-direction: column;
  }
  .info-cta .buttons-element .btn {
    width: 100%;
  }
  .caracteristici {
    padding: 20px;
  }
  .caracteristici h2 {
    font-size: 22px;
    margin: 0;
  }
  .second h2 {
    font-size: 35px;
  }
}/*# sourceMappingURL=style.css.map */