* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  background-color: #000000;
}

h1, h2, h3, h4, h5 {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #ffffff;
  line-height: 0.9em;
}
h1 span, h2 span, h3 span, h4 span, h5 span {
  color: #f39200;
}

p, a, ul, li, input, label, textarea {
  font-family: "roc-grotesk", sans-serif;
  text-decoration: none;
  font-weight: 400;
  font-style: normal;
}
p::placeholder, a::placeholder, ul::placeholder, li::placeholder, input::placeholder, label::placeholder, textarea::placeholder {
  font-family: "roc-grotesk", sans-serif;
}

.button {
  border: 1px solid #f39200;
  padding: 1em 2em;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  display: block;
  width: fit-content;
  margin-top: 2em;
  cursor: pointer;
}
.button-m {
  margin-top: 0;
}

.input__controll {
  width: 100%;
}
.input__controll input, .input__controll textarea {
  display: block;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #f39200;
  padding: 1em;
  color: #ffffff;
  width: 100%;
}
.input__controll input::placeholder, .input__controll textarea::placeholder {
  color: #ffffff;
}
.input__controll textarea {
  height: 100px;
  resize: none;
}

.hamofaMailing__input__error {
  border: 1px solid red !important;
}

.footer {
  background-color: #ffffff;
  padding: 2em 7%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 4em;
  border-top: 4px solid #f39200;
}
.footer h2 {
  color: #f39200;
  padding-bottom: 0.5em;
}

.footer__logo {
  width: 200px;
}

.footer__contact__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 2em;
}

.footer__contact__wrapper__box1 a {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  display: block;
}

.footer__contact__voorwaarden {
  margin-top: 1em;
  border-bottom: 2px solid #ffffff;
  transition: 0.5s;
}
.footer__contact__voorwaarden:hover {
  border-bottom: 2px solid #f39200;
}

.footer__social {
  padding: 0 4em;
  border-right: 2px solid #f39200;
  border-left: 2px solid #f39200;
}

.footer__social__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 2em;
}

.footer__social__item {
  width: 50px;
  display: block;
}
.footer__social__item img {
  width: 100%;
}

.footer__hamofa {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 1em;
  padding-top: 2.5em;
  color: #000000;
}

@media screen and (max-width: 1350px) {
  .footer {
    flex-wrap: wrap;
    gap: 2em;
  }
  .footer__hamofa {
    justify-content: flex-end;
    padding-top: 0;
    width: 100%;
  }
  .footer__social {
    border-right: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 1100px) {
  .footer__hamofa {
    width: calc(50% - 1em);
    justify-content: flex-start;
  }
  .footer__contact {
    width: calc(50% - 1em);
  }
  .footer__social {
    width: calc(50% - 1em);
    border-left: 0;
    padding-left: 0;
  }
}
@media screen and (max-width: 800px) {
  .footer__contact {
    width: 100%;
  }
  .footer__hamofa {
    width: calc(50% - 1em);
    justify-content: flex-end;
  }
}
@media screen and (max-width: 600px) {
  .footer__social {
    width: 100%;
  }
  .footer__hamofa {
    width: 100%;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 500px) {
  .footer__contact__wrapper {
    flex-direction: column-reverse;
    gap: 0.5em;
  }
}
.hamofaMailing__succes {
  display: none;
  color: #f39200;
}

.hamofaMailing__fail {
  display: none;
  color: #f39200;
}

.hamofaMailing__loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  display: none;
  position: relative;
  border: 3px solid;
  border-color: #f39200 #f39200 transparent transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.hamofaMailing__loader::after, .hamofaMailing__loader::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px solid;
  border-color: transparent transparent #ffffff #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-sizing: border-box;
  animation: rotationBack 0.5s linear infinite;
  transform-origin: center center;
}
.hamofaMailing__loader::before {
  width: 32px;
  height: 32px;
  border-color: #f39200 #f39200 transparent transparent;
  animation: rotation 1.5s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.hero {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: 100vh 20vh auto auto;
}

.hero__intro {
  grid-row-start: 1;
  grid-row-end: 3;
  grid-column-start: 1;
  grid-column-end: 2;
  background-image: url("../assets/hero.webp");
  background-size: cover;
  background-color: #000000;
  position: relative;
  z-index: 1;
  padding: 2em 7%;
  padding-right: 20%;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 0;
  position: relative;
}

.hero__intro__logo {
  width: 200px;
}

.hero__intro__text {
  width: 40%;
  align-self: flex-end;
  position: relative;
  z-index: 2;
  margin-top: 4em;
}
.hero__intro__text h1 {
  font-size: 3em;
}

.hero__intro__snack {
  position: absolute;
  right: 0;
  top: 0;
  width: 30%;
}
.hero__intro__snack img {
  width: 100%;
}

.hero__formules {
  grid-row-start: 2;
  grid-row-end: 4;
  grid-column-start: 1;
  grid-column-end: 2;
  background-image: url("../assets/patroon.webp"), linear-gradient(rgba(0, 0, 0, 0) 50px, black);
  background-size: cover;
  position: relative;
  z-index: 2;
}

.hero__formules__titel {
  color: #ffffff;
  width: 35%;
  padding: 2em 7%;
}
.hero__formules__titel h2 {
  font-size: 2.5em;
}

.hero__formules__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 4em;
  padding-top: 3em;
  padding: 2em 7%;
}

.formules__item__wrapper {
  width: calc(25% - 1em);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
}

.formules__item {
  background-color: #ffffff;
  border-radius: 20px 20px 20px 5px;
  position: relative;
  background-image: linear-gradient(to right, #f39200 10%, #ffffff);
}

.formules__item__titel {
  position: absolute;
  right: -1.5em;
  top: -1.5em;
  padding: 1em 3em;
  background-color: #ffffff;
  border-radius: 20px;
  text-transform: uppercase;
}
.formules__item__titel h3 {
  color: #000000;
}

.formules__item__prijs {
  background-color: #f39200;
  padding: 3em 4em;
  padding-top: 5em;
  border-radius: 20px 20px 40px 0;
  color: #ffffff;
}

.formules__item__prijs__big {
  font-weight: 700;
  font-size: 4em;
  margin-bottom: 20px;
}

.formules__item__info {
  padding: 1em 4em;
  background-color: #ffffff;
  border-radius: 30px 0 20px 5px;
}
.formules__item__info h4 {
  color: #000000;
}
.formules__item__info ul {
  margin-top: 0.2em;
  list-style: "- ";
  margin-left: -0.5em;
  width: 75%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.formules__item__info ul li {
  margin-left: 1em;
}
.formules__item__info ul li::marker {
  color: #f39200;
}

.formules__item__info__plus {
  margin-top: 2em;
}

.formules__item__info__extra {
  margin-top: 2em;
}

.formules__item__info__extra__prijs {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2em;
  margin-top: 1em;
  font-size: 1.3em;
}
.formules__item__info__extra__prijs p {
  font-weight: 700;
}

.formules__item__info__extra__prijs1 {
  text-decoration: line-through;
}

.formules__item__info__extra__prijs2 {
  color: #f39200;
}

.truck {
  display: grid;
  grid-template-rows: 1fr 200px auto;
  grid-template-columns: 50% 50%;
  margin-top: 2em;
}

.truck__titel {
  grid-row-start: 1;
  grid-row-end: 2;
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  flex-wrap: nowrap;
  gap: 0;
  padding-left: 28%;
  padding-bottom: 1em;
  font-size: 2.5em;
  position: relative;
  z-index: 3;
}

.hero__truck__image {
  grid-row-start: 1;
  grid-row-end: 3;
  grid-column-start: 2;
  grid-column-end: 3;
  position: relative;
  z-index: 1;
}
.hero__truck__image img {
  width: 100%;
}

.truck__text {
  grid-row-start: 2;
  grid-row-end: 4;
  grid-column-start: 1;
  grid-column-end: 3;
  background-color: #ffffff;
  padding: 4em 14%;
  padding-bottom: 8em;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
}

.truck__text__wrapper {
  width: 33%;
}

.contact {
  background-image: url("../assets/contact.webp");
  background-size: cover;
  display: grid;
  grid-template-rows: 0 auto auto auto;
  padding-bottom: 4em;
}

.contact__white {
  background-color: #ffffff;
  height: 100px;
  width: 100%;
  grid-row-start: 1;
  grid-row-end: 3;
  grid-column-start: 1;
  grid-column-end: 2;
}

.contact__images {
  grid-row-start: 2;
  grid-row-end: 3;
  grid-column-start: 1;
  grid-column-end: 2;
  padding: 0 14%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2em;
}

.contact__images__item {
  width: calc(20% - 1em);
}
.contact__images__item img {
  width: 100%;
}

.contact__form__titel {
  font-size: 3em;
  margin-bottom: 10px;
}

.contact__form {
  grid-row-start: 3;
  grid-row-end: 4;
  grid-column-start: 1;
  grid-column-end: 2;
  padding: 2em 14%;
  margin-top: 4em;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  flex-wrap: nowrap;
  gap: 0;
}

.contact__form__inputs {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 0.8em;
  width: 100%;
}

.contact__form__privacy {
  width: 400px;
  font-size: 0.85em;
}
.contact__form__privacy p {
  color: #ffffff;
  width: 100%;
}
.contact__form__privacy a {
  color: #f39200;
}

@media screen and (max-width: 1300px) {
  .hero__intro {
    padding: 2em 7%;
  }
  .hero__intro__text {
    margin-top: 4em;
    align-self: flex-start;
    width: 50%;
  }
  .hero__intro__snack {
    display: none;
  }
  .hero__formules__wrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 4em;
    display: grid;
    grid-template-columns: 46.5% 46.5%;
    grid-template-rows: 1fr auto 1fr auto;
  }
  .formules__item__wrapper {
    width: 100%;
  }
  #basic {
    grid-row-start: 1;
    grid-row-end: 2;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  #comfort {
    grid-row-start: 2;
    grid-row-end: 4;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  #standaard {
    grid-row-start: 1;
    grid-row-end: 3;
    grid-column-start: 2;
    grid-column-end: 3;
  }
  #deluxe {
    grid-row-start: 3;
    grid-row-end: 5;
    grid-column-start: 2;
    grid-column-end: 3;
  }
  /* .formules__item__wrapper{
      width: calc(50% - 2em);
  } */
  .formules__item__info ul {
    display: block;
  }
  .hero__formules__titel {
    width: 50%;
  }
  .contact__images {
    padding: 2em 7%;
  }
  .contact {
    background-image: url("../assets/patroon.webp");
    background-color: #000000;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    gap: 2em;
  }
  .contact__white {
    display: none;
  }
  .contact__images {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2em;
    padding-right: 0;
  }
  .contact__images__item {
    width: calc(33.3333333333% - 1.5em);
  }
  .contact__form {
    padding-left: 0;
    padding-top: 0;
  }
  .hero__truck__image {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    flex-wrap: nowrap;
    gap: 0;
  }
}
@media screen and (max-width: 1000px) {
  .truck {
    grid-template-columns: 50% 50%;
  }
  .truck__text__wrapper {
    width: 50%;
  }
}
@media screen and (max-width: 900px) {
  .truck {
    grid-template-columns: auto;
    grid-template-rows: auto auto 100px auto;
  }
  .truck__titel {
    grid-row-start: 1;
    grid-row-end: 2;
    grid-column-start: 1;
    grid-column-end: 2;
    padding-left: 7%;
    padding-right: 7%;
  }
  .truck__text {
    grid-row-start: 3;
    grid-row-end: 5;
    grid-column-start: 1;
    grid-column-end: 2;
    padding-top: calc(4em + 100px);
  }
  .hero__truck__image {
    grid-row-start: 2;
    grid-row-end: 4;
    grid-column-start: 1;
    grid-column-end: 2;
    padding-left: 7%;
    padding-right: 7%;
  }
  .truck__text__wrapper {
    width: 100%;
  }
  .contact__images__item {
    width: calc(50% - 1em);
  }
}
@media screen and (max-width: 800px) {
  .contact {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 2em;
    padding: 2em 7%;
  }
  .contact__images {
    padding: 0;
  }
  .contact__images__item {
    width: calc(33.3333333333% - 1.5em);
  }
  .contact__form {
    padding: 0;
    width: 100%;
    display: block;
  }
  .hero__formules {
    overflow: hidden;
  }
  .hero__formules__wrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 2em;
    overflow: scroll;
  }
  .formules__item {
    width: 400px;
  }
}
@media screen and (max-width: 700px) {
  .formules__item__wrapper {
    width: 100%;
  }
  .hero__intro__text {
    width: 100%;
  }
  .hero__intro__text h1 {
    font-size: 2.5em;
  }
  .contact__form__privacy {
    width: 100%;
  }
  .hero__formules__titel {
    width: 100%;
  }
  .contact__form {
    margin-top: 0;
  }
}
@media screen and (max-width: 650px) {
  .truck__titel {
    font-size: 1.5em;
  }
  .formules__item {
    width: 300px;
  }
}
.voorwaarden {
  padding: 2em 7%;
  color: #ffffff;
  width: 50%;
}
.voorwaarden ol, .voorwaarden ul {
  padding-left: 1em;
}

.voorwaarden__logo {
  padding: 2em 7%;
}

.voorwaarden__logo__img {
  width: 200px;
  display: block;
}

@media screen and (max-width: 800px) {
  .voorwaarden {
    width: 100%;
  }
}

/*# sourceMappingURL=main.css.map */
