html {
  font-size: 14px;
}
body {
  margin: 0;
  font-family: var(--token-p-font-family);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  background-color: #F2F5F8;
}
header {
  width: 100%;
  min-height: 350px;
  margin-top: 70px;
  color: white;
  text-align: left;
}
.logoBar {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  height: 70px;
  display: flex;
  align-items: center;
  text-align: left;
  background-color: #fff;
  position: absolute;
  top: 0px;
}
.logoBar * img {
  height: 32px;
  margin-left: calc((100vw - 1100px)/2 - 10px);
}

p, li {
  line-height: var(--token-p-line-height);
  font-family: var(--token-p-font-family);
  font-size: var(--token-p-font-size);
}

li {
  margin: 0;
  padding: 0px 0px 20px 26px !important;
  box-sizing: border-box;
  list-style: none;
  background-image: url("./../assets/wrench.png");
  background-repeat: no-repeat;
  background-position: 0px 7px;
  background-size: 16px;
}

h1 {
  /* Header */
  font-family: 'candor-headline', sans-serif;
  font-family: var(--token-h1-font-family);
  font-size: var(--token-h1-font-size);
  line-height: var(--token-h1-line-height);
  text-align: left;
}
h2 {
  /* Header */
  font-family: var(--token-h2-font-family);
  font-size: var(--token-h2-font-size);
  font-weight: 700;
  line-height: var(--token-h2-line-height);
  color: var(--token-color-primary-100);
  margin-bottom: 10px;
}
h3 {
  font-family: var(--token-h3-font-family);
  font-size: var(--token-h3-font-size);
  font-weight: 700;
  line-height: var(--token-h3-line-height);
  color: var(--token-color-primary-100);
  margin-bottom: 10px;
}

h4 {
  line-height: var(--token-h4-line-height);
  font-family: var(--token-h4-font-family);
  font-size: var(--token-h4-font-size);
}
h5 {
  line-height: var(--token-h5-line-height);
  font-family: var(--token-h5-font-family);
  font-size: var(--token-h5-font-size);
}

a {
  text-decoration: underline;
  color:#EC6639;
  font-weight: 600;
  line-height: 130%;
  text-align: left;
}
a:hover {
  text-decoration: underline;
  color:#EC6639;
  font-weight: 600;
  line-height: 130%;
  text-align: left;
}

a:visited {
  text-decoration: none;
  color:#EC6639;
  font-weight: 600;
  line-height: 130%;
}

/*a.secundary {
  color: var(--token-color-neutral-10);
  font-weight: 800;

}

a.secundary:visited {
  color: var(--token-color-neutral-10);
  font-weight: 800;
}
*/

.CTA {
/*  box-sizing: border-box;*/
  color: #000;
  display: flex;
  line-height: 14px;
  font-family: var(--token-p-font-family);
  font-size: var(--token-p-font-size);
  font-weight: var(--token-p-font-weight);
  padding: 15px 15px;
  text-decoration: none;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  background-color: #64C8C8;
  font-weight: 100;
}

.CTA:hover {
  line-height: 14px;
  background-color: #00647D;
  color: #fff;
  font-weight: var(--token-p-font-weight);
  text-decoration: none;
}
.CTA:visited {
  color: #000;
  text-decoration: none;
  font-weight: 100;
}

.CTA > span {
  display: block;
  float: left;
}
.CTA > img {
  width: 20px;
  height: 20px;
}

.headerCTA {
  background-color: #fff;
  width: 280px;
  line-height:  var(--token-p-line-height);
}
.headerCTA:hover {
  background-color: #fff;
  color: #000;
  border-bottom: 2px solid #FA6432;
  margin-bottom: -2px;
  line-height:  var(--token-p-line-height);

}
.headerCTA:visited {
  background-color: #fff;
  color: #000;
}

.activeCTA { 
  background-color: #fff;
  color: #000;
  border-bottom: 2px solid #FA6432;
  margin-bottom: -2px;
}


.container {
  width: 100%;
  max-width: 1100px; 
  margin-top: 50px;
}

.splashHeader {
  background: url("./../assets/headerHero.png") no-repeat right center;
  height: 100%;
  width: 100%;
  height: 100%; 
  text-align: justify; 
  background-size: 40vw 40vw;
}
.infoHeader {
  background: url("./../assets/headerBG.png") right center no-repeat;
  background-size: cover;
  width: 65%;
  height: 28rem;
  display: flex;
  align-items: center;
  justify-content: left;
}
.infoHeader > div {
  max-width: calc(800px - 10vw);
  margin-left: calc((100vw - 1100px)/2 + 10px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.label {
  font-size: 10px;
  background-color: #fff;
  color:  var(--token-color-neutral-10);
  margin-bottom: 20px;
  font-weight: 800;
  flex: none;
  width: 45px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  
}
.infoHeader * p {
  margin: 20px 0px 30px 0px;
  text-align: left;
  max-width: 550px;
}


.textElement {
  display: flex;
  padding: 10px;
  box-sizing: border-box;
  gap: 40px;
  flex-direction: row;
  margin-bottom: 50px;
}
.textElementParagraph {
  width: 600px;
  height: fit-content;
}
.textElementParagraph > p {
  margin-bottom: 20px;
}
.textElementImage {
  height: 100%;
  display: flex;
  overflow: hidden;
  align-items: center;
  text-align: center;
  width: 600px;
}
.textElementImage > img {
  height: 100%;
  max-height: 400px;
}

.CTAHeaderContainer {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  justify-content: flex-start;
}

.meerWeten {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  padding: 50px;
  box-sizing: border-box;
  margin-bottom: 20px;
}

.meerWeten > .textBody {
  display: flex;
  gap: 40px;
  align-self: stretch;
  margin: 20px 0px;
}
.textBody > div > p {
  margin-bottom: 20px;
}
.meerWeten > .CTAHolder {
  justify-content: flex-end;
}


footer {
  background-color: #00283C;
  width: 100vw;
  box-sizing: border-box;
  padding: 50px;
  display: flex;
  justify-content: center;
  color: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

}
footer > div {
  width: 800px;
  display: flex;
  justify-content: space-between;
}


 .CTAHolder {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.logoArray {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

#overlay {
  position: fixed;
  z-index: 10;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
#overlayContainer {
  background-color: #fff;
  padding: 20px;
  box-sizing: border-box;
  width: 380px;
}

#overlayContainer > .CTAContainer {
  margin-top: 20px;
  box-sizing: border-box;
  display: flex;
  gap: 30px;
  justify-content: flex-end;
}
.CTAContainer > .secundary {
  background-color: #00283C;
  color: #fff;
}
#overlayContainer > .CTAContainer > .CTA {
  text-align: center;
  width: fit-content;
}
#overlayContainer > p {
  box-sizing: border-box;
  padding: 20px 10px;
}
#overlayContainer > .info {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-direction: row;
}
.info > img {
  width: 20px;
  height: 20px;
}

.loading {
  width: 100%;
  padding: 200px 0px;
  text-align: center;
  font-style: italic;
  color: #aaa;
  font-size: 1.4em;
}
.hidden {
  display: none;
}



.infoHeaderContainer {
  background-color: #fff;
  max-width: 900px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  color: #aaa;
  align-items: center;
  margin-top: -25px;
  padding: 10px 30px;
  box-sizing: border-box;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.09); 
  font-family: var(--token-p-font-family);
  font-size: var(--token-p-font-size);
}

.infoHeaderContainer > .CTAHolder > span {
  color: #000;
}
.grayed {
  color: #ccc;
}

.warning {
  font-style: italic;
}

@media only screen and (max-width: 1100px) {
  body {
    overflow-x: hidden;

  }
  .container {
    width: 100vw;
    padding: 10px 40px;
    box-sizing: border-box;
  }
  .textElement {
    height: 100%;
    align-items: stretch;
  }
  .textElementParagraph {
    width: 100%;
  }
  .logoBar * img {
    height: 32px;
    margin-left: 20px
  }
  .textElementImage {
    width: 100%;
    background-color: #eee;
  }
  .textElementImage > img {
    height: 100%;
  }
  .removeable {
    display: block;
  }
  .splashHeader {
      background-size: 50vw 50vw;

  }
  .infoHeader {
    width: 65vw;
    padding: 40px;
    box-sizing: border-box;
  }
  .infoHeader > div {
    max-width: 100%;
    width: 100%;
    margin-left: 0px;
  }
  .infoHeader * p {
    max-width: 90%;
  }


  footer > div {
    width: 100%;
    flex-direction: column;
    gap: 30px;
  }

  footer * .logoHolder {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
  footer * .logoArray {
    margin-top: -10px;
  }
  footer * .CTAHolder {
    flex-direction: column;
  }


  footer * .CTAHolder > a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }


}


@media only screen and (max-width: 820px) {
  body {
    overflow-x: hidden;

  }
  .container {
    width: 100vw;
    padding: 10px;
    box-sizing: border-box;
  }
  .textElement {
    flex-direction: column;
  }
  .textElementParagraph {
    width: 100%;
  }
  .logoBar * img {
    height: 32px;
    margin-left: 0px
  }
  .textElementImage {
    width: 100%;
  }
  .textElementImage > img {
    width: 100%;
  }
  .removeable {
    display: none;
  }
  .splashHeader {
    background: url("./../assets/headerHero.png") no-repeat center center;
      background-size: cover;
  }
  .infoHeader {
    width: 95vw;
    padding: 20px;
    box-sizing: border-box;
  }
  .infoHeader > div {
    max-width: 100%;
    width: 100%;
    margin-left: 0px;
  }
  .infoHeader * p {
    max-width: 90%;
  }
}



@font-face {
    font-family: 'candor-light';
    src: url('./../assets/fonts/TMCandor-Light.otf') format('opentype');
}
@font-face {
    font-family: 'candor-regular';
    src: url('./../assets/fonts/TMCandor-Regular.otf') format('opentype');
}
@font-face {
  font-family: 'candor-medium';
  src: url('./../assets/fonts/TMCandor-Medium.otf');
}

@font-face {
    font-family: 'candor-bold';
    src: url('./../assets/fonts/TMCandor-Bold.otf') format('opentype');
}
@font-face {
    font-family: 'candor-headline';
    src: url('./../assets/fonts/TMCandor-Headline.otf') format('opentype');
}
