@import url("https://use.typekit.net/doq5rdp.css");
* {
  font-family: "futura-pt", sans-serif;
  line-height: 1.33333;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  font-style: normal;
}

::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #0F2D41;
}

::-webkit-scrollbar-thumb:hover {
  background: #0F2D41;
}

body {
  color: #0F2D41;
  background-color: #FFF4EE;
  overflow: auto;
  overflow-x: hidden;
}
body p {
  font-size: 17px;
}

html,
body {
  overflow-x: hidden;
}

body {
  position: relative;
}

.col-md,
.col-xs,
.col-xs-6,
.col-xs-4,
.col-md-4 {
  padding: unset !important;
}

/* Landing page */
.landing__page {
  height: 100vh;
  background-color: #0F2D41;
}
@media screen and (max-width: 640px) {
  .landing__page .section1 {
    margin-left: unset !important;
    text-align: center;
    margin: auto;
  }
  .landing__page .section1 .button {
    font-size: 17px;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .landing__page .section1 .landing__page__content {
    margin-left: 2rem;
    margin-right: 2rem;
  }
  .landing__page .section2 {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .landing__page .section2 .button {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
.landing__page .section1 {
  color: #FFF4EE;
  margin-left: 5.5rem;
}
.landing__page .section1 button {
  color: #FFF4EE;
  border-color: #FFF4EE;
}
.landing__page .section1 .logo {
  margin-top: 2rem;
}
.landing__page .section1 img {
  width: 10%;
}
.landing__page .section1 .landing__page__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: normal;
  height: 75vh;
  margin-right: 3rem;
}
.landing__page .section1 .landing__page__content h1 {
  font-size: 36px;
  margin-bottom: 1rem;
}
.landing__page .section1 .landing__page__content p {
  font-size: 17px;
  margin-bottom: 3rem;
}
.landing__page .section1 .landing__page__content .button {
  width: max-content;
  font-size: 16px;
}
.landing__page .section2 {
  background-color: #0F2D41;
}
.landing__page .section2 img {
  width: 60%;
  position: relative;
  position: relative;
  top: 31%;
  left: 50%;
  transform: translateX(-50%);
}

/* contact form */
.contact__form {
  height: max-content;
  margin-top: 10rem;
  margin-left: 5rem !important;
  margin-right: 5rem !important;
  margin-bottom: 5.5rem !important;
}
.contact__form .info-left {
  padding: unset !important;
  margin-right: 3rem !important;
}
@media screen and (max-width: 1023px) {
  .contact__form {
    margin: unset !important;
    margin-bottom: 10rem !important;
    margin-left: 2rem !important;
    margin-right: 2rem !important;
    margin-top: 4rem !important;
    height: max-content !important;
    display: block !important;
  }
  .contact__form .submit__button {
    display: flex;
    margin: auto;
  }
}
.contact__form h2 {
  font-size: 33px;
  margin-top: unset !important;
  margin-bottom: 2rem;
}
.contact__form li {
  text-decoration: none;
  list-style: none;
}
.contact__form ul {
  padding: unset !important;
}
.contact__form-box {
  position: relative;
  margin-bottom: 3%;
}
.contact__form-box label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 0;
  font-size: 16px;
  color: #0F2D41;
  pointer-events: none;
  transition: 0.5s;
}

.contact__form-box input:focus ~ label,
.contact__form-box input:valid ~ label {
  top: -20px;
  left: 0;
  color: #0F2D41;
  font-size: 12px;
}

.contact__form-box textarea:focus ~ label,
.contact__form-box textarea:valid ~ label {
  top: -20px;
  left: 0;
  color: #0F2D41;
  font-size: 12px;
}

.contact__form-box input,
textarea {
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  color: #0F2D41;
  margin-bottom: 30px;
  border: none;
  border-bottom: 2px solid #0F2D41;
  outline: none;
  background: transparent;
}

.contact__form-box label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 0;
  font-size: 16px;
  color: #0F2D41;
  pointer-events: none;
  transition: 0.5s;
}

/* CTA Button */
.button {
  padding: 0.8em 1.7em;
  background-color: transparent;
  border-radius: 1.5em;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: 0.5s;
  font-weight: 400;
  font-size: 16px;
  border: 1px solid;
  font-family: inherit;
  color: #0F2D41;
  z-index: 1;
}
.button::before,
.button ::after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 50%;
}

/* Submit Button */
.submit__button {
  padding: 0.8em 1.7em;
  background-color: #0F2D41;
  border-radius: 1.5em;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: 0.5s;
  font-weight: 400;
  font-size: 16px;
  border: 1px solid;
  font-family: inherit;
  color: #FFF4EE;
  z-index: 1;
}
.submit__button::before,
.submit__button ::after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 50%;
}

/* Footer */
footer {
  text-align: center !important;
}
footer .footer-portal {
  margin-left: 5rem;
}
footer .footer-portal .widget {
  margin-bottom: 3rem;
}
footer .widget {
  margin-right: 1rem;
}
footer .widgettitle {
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 640px) {
  footer {
    margin-top: 5rem !important;
  }
  footer p {
    font-size: 15px;
  }
  footer .footer-portal {
    justify-content: left !important;
    margin-left: 2rem !important;
  }
  footer hr {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  footer .footer-bottom {
    justify-content: center !important;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  footer .subfooter {
    text-align: center;
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 1023px) {
  footer #text-6 {
    margin-right: 2rem !important;
  }
}
@media screen and (max-width: 1023px) {
  footer .footer-portal {
    margin-left: 2rem !important;
  }
}
@media screen and (max-width: 1023px) {
  footer .footer hr {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
}
@media screen and (max-width: 1023px) {
  footer .footer-bottom {
    margin-left: 2rem !important;
  }
}
footer .footer-bottom {
  justify-content: space-between;
  margin-left: 5rem;
  margin-right: 5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
footer a {
  text-decoration: none;
  color: #0F2D41;
  margin-bottom: 3rem;
}
footer .site-footer {
  background-color: #FFF4EE !important;
}
footer hr {
  color: #0F2D41;
  margin-left: 5rem;
  margin-right: 5rem;
  margin-bottom: 3rem;
}
footer .uppercase {
  text-transform: uppercase;
}
footer ul {
  display: inline-flex;
  margin: auto;
  padding-left: unset !important;
}
footer ul li {
  margin: 0 1rem;
  list-style: none;
}
footer .afspraak-maken {
  margin-bottom: 2rem;
}
footer .subfooter {
  margin-bottom: 5rem;
}