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

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: Intro;
  font-weight: normal;
  src: url("../fonts/intro-regular.woff") format("woff");
}
@font-face {
  font-family: "Intro Bold";
  font-weight: bold;
  src: url("../fonts/intro-bold.woff") format("woff");
}
@font-face {
  font-family: "Intro Light";
  font-weight: lighter;
  src: url("../fonts/intro-light.woff") format("woff");
}
h1, h2, h3, h4, h5 {
  font-family: "Intro", sans-serif;
  font-weight: 700;
}

h2 {
  font-size: 50px;
}

h3 {
  font-size: 1.5em;
  margin-bottom: 0.5em;
}

p, a, input, label {
  font-family: "Intro Light", "sans-serif";
  font-weight: lighter;
}
p::placeholder, a::placeholder, input::placeholder, label::placeholder {
  font-family: "Intro Light", "sans-serif";
}

.hamofaMailing__succes {
  display: none;
  color: #e30613;
}

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

.hamofaMailing__loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  display: none;
  position: relative;
  border: 3px solid;
  border-color: #e30613 #e30613 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 #fff #fff;
  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: #e30613 #e30613 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);
  }
}
.hamofaConsent__button {
  padding: 0.5em 2em;
  background-color: white;
  cursor: pointer;
  text-transform: uppercase;
  border: 1px solid #e30613;
  border-radius: 5px;
  flex-grow: 1;
  text-align: center;
  z-index: 999;
}

.hamofaConsent__button__2 {
  background-color: #e30613;
  color: white;
}

.hamofaConsent__banner {
  position: fixed;
  left: 2em;
  bottom: 2em;
  background-color: white;
  width: fit-content;
  padding: 2em;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 1em;
  border-radius: 20px;
  transition: 0.5s;
}
.hamofaConsent__banner__closed {
  left: -100% !important;
}

.hamofaConsent__banner__header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 1em;
}

.hamofaConsent__banner__header__icon {
  width: 50px;
  padding: 10px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 50%;
}
.hamofaConsent__banner__header__icon img {
  width: 100%;
}

.hamofaConsent__banner__text {
  width: 350px;
}

.hamofaConsent__banner__actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em;
  margin-top: 1em;
}

.hamofaConsent__icon {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 10px;
  background-color: #fff;
  cursor: pointer;
  transition: 0.5s;
}
.hamofaConsent__icon img {
  width: 100%;
}
.hamofaConsent__icon__closed {
  left: -100%;
}

.hamofaConsent__settings {
  position: fixed;
  bottom: 0;
  transition: 0.5s;
  z-index: 999;
  width: 100%;
  height: 100%;
  padding: 2em, 7%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  overflow-y: scroll;
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.9px);
  -webkit-backdrop-filter: blur(7.9px);
}
.hamofaConsent__settings__closed {
  bottom: -100%;
}

.hamofaConsent__settings__wrapper {
  width: 50%;
  height: fit-content;
  padding: 2em;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 20px;
  background-color: #fff;
}

.hamofaConsent__settings__wrapper__text {
  width: 75%;
  margin-bottom: 20px;
}

.hamofaConsent__settings__wrapper__items {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.hamofaConsent__settings__wrapper__items__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
}
.hamofaConsent__settings__wrapper__items__item input {
  accent-color: #e30613;
}

.hamofaConsent__settinges__actions {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  width: fit-content;
}

@media screen and (max-width: 1500px) {
  .hamofaConsent__settings__wrapper {
    width: 75%;
  }
}
@media screen and (max-width: 1100px) {
  .hamofaConsent__settings__wrapper__items__item {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 800px) {
  .hamofaConsent__settings__wrapper__items__item {
    width: 100%;
  }
  .hamofaConsent__settings__wrapper__text {
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .hamofaConsent__settings {
    padding: 2em;
    align-items: flex-end;
  }
  .hamofaConsent__settings__wrapper {
    width: 100%;
  }
  .hamofaConsent__banner {
    width: calc(100% - 4em);
  }
  .hamofaConsent__banner__text {
    width: 100%;
  }
  .hamofaConsent__banner__header__icon {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .hamofaConsent__banner {
    width: 100%;
    left: 0;
    bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .hamofaConsent__settings {
    padding: 0;
  }
  .hamofaConsent__settings__wrapper {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.view {
  max-width: 2250px;
  padding: 2em 7%;
  margin: 0 auto;
}

.logo {
  margin-bottom: 2em;
}
.logo img {
  width: 200px;
}

.formulier h1 {
  margin-bottom: 1em;
}

.input__controll {
  margin-bottom: 2em;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 0.5em;
}
.input__controll input, .input__controll textarea {
  width: 100%;
  resize: none;
  border: 2px solid #e30613;
  font-family: "Intro Light", "sans-serif";
  padding: 1em 2em;
}
.input__controll textarea {
  min-height: 300px;
}

.button {
  display: block;
  cursor: pointer;
  background-color: #e30613;
  width: fit-content;
  text-align: center;
  padding: 1em 2em;
  color: #fff;
  margin-top: 2em;
}

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