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

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

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

/*Contact banner foto (begin) */
.BannerWrapper {
  width: 100%;
  height: 430px;
}

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

.Banner {
  position: absolute;
  z-index: -1;
  width: inherit;
  height: inherit;
  background-image: url("Afbeeldingen/contactPaginaBanner.jpg");
  filter: blur(3px);
  background-size: contain 100%;
  background-position: center -300px;
}
/*Contact banner foto (einde) */

.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;
  }
}

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

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

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

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

.ContactContainer {
  background-color: white;
  width: 100%;
}

/*De melding die je krijgt bij een error of bij succes*/
.alert {
  padding: 10px;
  background-color: #f44336;
  color: white;
  opacity: 1;
  transition: opacity 0.6s;
  margin-bottom: 15px;
  font-size: 16px;
}

/*Geeft de succes melding een groene kleur*/
.alert.success {
  background-color: #4caf50;
}

.ContactFormulierTekst {
  background-color: white;
  padding-top: 2%;
  padding-left: 18%;
  width: 85%;
  height: 40%;
  font-size: 19px;
}

.formulier {
  background-color: white;
  padding-top: 1%;
  padding-left: 18%;
  width: 85%;
  height: 100%px;
  font-size: 19px;
  font-weight: bold;
  padding-bottom: 10%;
}

/*Veld waar je je verhaal kan typen*/
input[type="text"],
select,
textarea {
  width: 100%; 
  padding: 12px; 
  background-color: #dedede;
  border: 1px solid #ccc; 
  border-radius: 4px; 
  box-sizing: border-box; 
  margin-top: 6px; 
  margin-bottom: 16px; 
  resize: vertical;
  outline: none !important;
}

/* Geeft de "Verzenden" knop styling*/
input[type="submit"] {
  background-color: #4caf50;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  outline: none !important;
}

/*Geeft de verzenden knop een donkere groen als je er overheen hovered*/
input[type="submit"]:hover {
  background-color: #45a049;
}

.Contactrow {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 2%;
}

.column1 {
  width: 57%;
}

.Contactrow,
.column1,
.column2,
ul {
  list-style-type: none;
}

.column2 {
  font-size: 20px;
  padding-top: 1%;
  width: 40%;
}

.column2 a {
  text-decoration: none;
  color: black;
}

/*Zet de rechter column onder het contactform als het venster te smal word */
@media screen and (max-width: 850px) {
  .column1 {
    width: 100% !important;
    display: block !important;
  }

  .column2 {
    width: 100% !important;
    display: block !important;
    padding-left: 18%;
    padding-bottom: 10%;
  }

  .Contactrow {
    display: block;
  }
}

.black-line {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  width: 60%;
}

.i {
  color: yellow;
}

.hidden {
  display: none !important;
  visibility: hidden;
}