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

:root {
  --column-spacing: 70px;
}

@media screen and (max-width: 1500px) {
  :root {
    --column-spacing: 30px;
  }
}

@media screen and (max-width: 300px) {
  :root {
    --column-spacing: 20px;
  }
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  background-color: white;
  font-family: "Red Hat Display", sans-serif;
}

/*De banner achter de titel van de pagina (begin)*/
.BannerWrapper {
  width: 100%;
  height: 430px;
}

.BannerOverlay {
  width: inherit;
  height: inherit;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  backdrop-filter: blur(3px);
}

.Banner {
  position: absolute;
  z-index: -1;
  width: inherit;
  height: inherit;
  background-attachment: fixed;
  background-position: center;
  background-size: inherit;
  background-repeat: no-repeat;
}
/*De banner achter de titel van de pagina (einde)*/


/*Banner voor de Coaching pagina*/
.Banner.CoachingBanner {
  background-image: url("Afbeeldingen/CoachingPaginaBanner.jpg");
  background-position: center -450px;
  background-repeat: repeat;
  background-size: contain 100%;
}

/*Banner voor de Mediation pagina*/
.Banner.MediationBanner {
  background-image: url("Afbeeldingen/MediationPaginaBanner.jpg");
  background-size: cover;
}

/*Banner voor de Re-intergratie pagina*/
.Banner.Re-integratieBanner {
  background-image: url("Afbeeldingen/re-intergratie-banner.jpg");
  background-size: contain 100%;
  background-position: center -400px;
}

/*Banner voor de Psychologie pagina*/
.Banner.PsychologieBanner {
  background-image: url("Afbeeldingen/PsychologiePaginaBanner2.0.png");
  background-color: grey;
  background-position: center -400px;
  background-size: contain 100%;
}

/*Banner voor de Re-intergratie pagina*/
.Banner.VertrouwenspersoonBanner {
  background-image: url("Afbeeldingen/VertrouwenspersoonPaginaBanner.jpg");
  background-position: center -700px;
  background-size: contain 100%;
}

/*Titel over de banner van de pagina waarop je je op dat moment bevind*/
.WelkomStukje {
  padding-top: 4%;
  width: inherit;
  height: inherit;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.WelkomStukje h1 {
  font-size: 40px;
}

@media screen and (max-width: 1400px) {
  .WelkomStukje h1 {
    font-size: 35px;
  }
}

@media screen and (max-width: 900px) {
  .WelkomStukje h1 {
    font-size: 30px;
  }
}

@media screen and (max-width: 300px) {
  .WelkomStukje h1 {
    font-size: 25px;
  }
}

.lijn {
  margin: 15px auto;
  color: black;
  background-color: black;
  height: 2px;
  width: 150px;
}

@media screen and (max-width: 1400px) {
  .lijn {
    width: 120px;
  }
}

@media screen and (max-width: 900px) {
  .lijn {
    width: 80px;
  }
}

@media screen and (max-width: 300px) {
  .lijn {
    width: 55px;
  }
}

/*Gedeelte waar een korte uitleg staat over het bedrijf*/
.WelkomContainer {
  background-color: white;
  width: 100%;
  height: 100%;
  margin: auto;
}

/*Zorgt dat de uitleg allemaal mooi en in het midden staat*/
.content {
  margin: auto;
  text-align: center;
  padding-top: 2%;
  width: 75%;
  height: 80%;
  background-color: white;
  font-size: 20px;
  padding-bottom: 3%;
}


/*Responsive gedeelte waardoor de tekst kleiner word wanneer de window ook kleiner word (begin)*/
@media screen and (max-width: 922px) {
  .content h2 {
    font-size: 25px;
  }
}

@media screen and (max-width: 500px) {
  .content h2 {
    font-size: 20px;
  }
}

@media screen and (max-width: 922px) {
  .content p {
    font-size: 16px;
  }
}

@media screen and (max-width: 500px) {
  .content p {
    font-size: 16px;
  }
}

@media screen and (max-width: 922px) {
  .content {
    padding-bottom: 5%;
  }
}

@media screen and (max-width: 500px) {
  .content {
    padding-bottom: 9%;
  }
}

/*Responsive gedeelte waardoor de tekst kleiner word wanneer de window ook kleiner word (begin)*/

/*CONTACT KNOP*/
.contact-button {
  background-color: #62b2bd;
  border: none;
  border-radius: 8px;
  color: black;
  padding: 20px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 17px;
  font-weight: bold;
  font-family: "Red Hat Display", sans-serif;
  cursor: pointer;
  outline: none;
}

@media screen and (max-width: 1400px) {
  .contact-button {
    padding: 17px 27px;
  }
}

@media screen and (max-width: 1000px) {
  .contact-button {
    padding: 13px 22px;
    font-size: 14px;
  }
}

@media screen and (max-width: 300px) {
  .contact-button {
    padding: 11px 18px;
    font-size: 13px;
  }
}

/*Geeft de hover een lichte kleur */
.contact-button:hover {
  background-color: #6ec1cc;
}