* {
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

/* rood: #D41325
blauw: #0D3451;
Grijs: #646464; */


body {
    font-family: 'Gordita';
    background-color: #F7F5F5;
    font-size: 1em;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

h1 {
  font-size: 2.5em;
  color: #0D3451
}

h2 {
  color: #D41325;
}

h3 {
  text-transform: uppercase;
    color: #0D3451;
    font-size: 1.1em;
}

p {
  color: rgb(10, 42, 65);
  font-size: 1.1em;
}

.center-me {
  text-align: center;
}

.column p {
  line-height: 2em;
}


.redbtn {
  background-color: #D41325;
  color: #FFFFFF;
  text-decoration: none;
  border: 2px solid #D41325;
  border-radius: 15px;
  padding: 20px 45px;
  transition: all .5s;
  margin-top: 40px;
  display: inline-block;
}

.redbtn:hover {
  background-color: #FFFFFF;
  color: #D41325;
}

#header {
    width: 100%;
    background-color: #FFF;
    height: 120px;
    line-height: 180px;
    text-align: left;
    box-shadow: 0 3px 6px #00000029;
}

#header img {
  height: 35px;
}

.devider {
  height: 80px;
}

.smalldevider {
  height: 40px;
}

.container {
      width: 90%;
      max-width: 1460px;
      margin: auto;
}

.hero {
  position: relative;
  background-color: #193F5C;
}

.hero h1 {
  font-size: 2.5em;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h2 {
  font-size: 2em;
  color: #FFFFFF;
  opacity: 0.6;
  font-weight: normal;
}

.hero p {
  font-size: 1.3em;
  color: #FFFFFF;
  font-weight: 500;
  margin-bottom: 10px;
}

.hero .img_arrow {
  width: 15px;
  margin-right: 10px;
}

.hero img {
  width: 550px;
}

.herobottom {
  margin-top: -56px;
  position: absolute;
  width: 100%;
  height: 180px;
  background-image: url('../images/banner_bottom.svg');
  background-size: cover;
  background-repeat: no-repeat;
}

.column-2 {
  display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 80px;
    grid-row-gap: 35px;
}


.column-4 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 90px;
}

.whitebg {
  background-color: #FFFFFF;
  padding-top: 100px;
  padding-bottom: 100px;
}

label {
  color: #FFFFFF;
  margin-top: 20px;
  font-family: 'Gordita';

}

input, input::placeholder {
    font-size: 1em;
    font-family: 'Gordita';
}

input[type=text],input[type=tel],input[type=email],input[type=text], select {
  width: 100%;
  padding: 12px 20px 8px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 15px;
  box-sizing: border-box;
  font-family: 'Gordita';
  font-size: 1em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #0D3451;
}



input[type=submit] {
  width: 100%;
  background-color: #D41325;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 15px;
  cursor: pointer;
}

/*-- -- */

/* The container */
.boxcont {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 1em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.boxcont input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: -3px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.boxcont:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.boxcont input:checked ~ .checkmark {
  background-color: #D41325;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.boxcont input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.boxcont .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*-- */

input[type=submit]:hover {
  background-color: #FFFFFF;
  color: #D41325;
}

#footer {
  width: 100%;
  height: 150px;
  line-height: 150px;
  background-color: #FFFFFF;
  text-align: center;
}

@media screen and (max-width: 650px) {

  .container {
        width: 90%;
  }

  .devider {
    height: 40px;
  }

  .hero h1 {
    font-size: 2em;
  }

  .hero h2 {
    font-size: 1.5em;
    color: #FFFFFF;
    opacity: 0.6;
    font-weight: normal;
  }

  .hero p {
    font-size: 1.3em;
    color: #FFFFFF;
    font-weight: 500;
    margin-bottom: 10px;
  }


  .hero img {
    width: 280px;
  }

  .column-2 {
      grid-template-columns: 1fr;
      grid-row-gap: 0px;
  }

  .column-4 {
    grid-template-columns: 1fr;
    grid-row-gap: 70px;
  }
}
