html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Mountains of Christmas", cursive;
}

h1, h2 {
  font-size: 42px;
  text-align: center;
  line-height: 68px;
  padding-top: 25px;
}

@media (min-width: 600px) {
  h1, h2 {
    font-size: 56px;
    line-height: 112px;
    padding-top: 25px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 700;
  font-family: "Muli", sans-serif;
  padding-bottom: 10px;
}

body {
  font-family: "Muli", sans-serif;
}

.left {
  float: left;
}

.right {
  float: right;
}

.hero {
  width: 100%;
  height: 50vw;
  max-height: 450px;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.grid {
  max-width: 1400px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  min-height: 100%;
  -ms-grid-rows: auto 1fr;
  -ms-grid-columns: 1fr;
  grid-template: "header" "content" 1fr / 1fr;
}

@media (min-width: 900px) {
  .grid {
    -ms-grid-rows: 100%;
    -ms-grid-columns: minmax(250px, 10%);
    grid-template: "header content" 100%/minmax(250px, 10%);
  }
}

.grid__header {
  padding: 0 25px;
  position: -webkit-sticky;
  position: sticky;
  top: -90px;
  background-color: white;
  z-index: 300;
}

@media (min-width: 900px) {
  .grid__header {
    position: relative;
    background-color: none;
    top: 0;
  }
}

.grid__content {
  position: relative;
}

.wrapper {
  max-width: 80%;
  position: relative;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .wrapper {
    max-width: 60%;
  }
}

.rainbow {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #485155), color-stop(0.15, #21333A), color-stop(0.3, #485155), color-stop(0.45, #21333A), color-stop(0.6, #485155), color-stop(0.75, #21333A), color-stop(0.9, #485155), color-stop(1, #21333A));
  background-image: gradient(linear, left top, right top, color-stop(0, #485155), color-stop(0.15, #21333A), color-stop(0.3, #485155), color-stop(0.45, #21333A), color-stop(0.6, #485155), color-stop(0.75, #21333A), color-stop(0.9, #485155), color-stop(1, #21333A));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.italic {
  font-style: italic;
}

strong {
  font-weight: 700;
}

.inline-link {
  color: #95C11E;
}

.inline-link:hover {
  color: #3AA935;
}

.max-width-400 {
  max-width: 400px;
  margin: 0 auto;
}

@media (min-width: 1000px) {
  .max-width-400 {
    margin: 0;
  }
}

.padding {
  padding-left: 50px;
  padding-right: 50px;
}

.special-padding {
  padding: 0 20px 50px;
}

@media (min-width: 900px) {
  .special-padding {
    padding: 0 80px 50px;
  }
}

@-webkit-keyframes dropdown {
  0% {
    display: block;
  }
  0% {
    opacity: 0;
  }
  0% {
    height: 0%;
  }
  100% {
    opacity: 1;
  }
  100% {
    height: 100%;
  }
}

@keyframes dropdown {
  0% {
    display: block;
  }
  0% {
    opacity: 0;
  }
  0% {
    height: 0%;
  }
  100% {
    opacity: 1;
  }
  100% {
    height: 100%;
  }
}

.nav-icon {
  width: 30px;
  height: 30px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  cursor: pointer;
  z-index: 5;
  -webkit-transition: .1s ease-in-out;
  -o-transition: .1s ease-in-out;
  transition: .1s ease-in-out;
  display: inline-block;
}

.nav-icon span {
  display: block;
  position: absolute;
  height: 4px;
  width: 50%;
  background: #3AA935;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .1s ease-in-out;
  -o-transition: .1s ease-in-out;
  transition: .1s ease-in-out;
}

.nav-icon span:nth-child(even) {
  left: 50%;
}

.nav-icon span:nth-child(odd) {
  left: 1px;
}

.nav-icon span:nth-child(1), .nav-icon span:nth-child(2) {
  top: 0px;
}

.nav-icon span:nth-child(3), .nav-icon span:nth-child(4) {
  top: 8px;
}

.nav-icon span:nth-child(5), .nav-icon span:nth-child(6) {
  top: 16px;
}

.nav-icon.open span {
  background: #95C11E;
}

.nav-icon.open span:nth-child(1), .nav-icon.open span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav-icon.open span:nth-child(2), .nav-icon.open span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.nav-icon.open span:nth-child(1) {
  left: 3px;
  top: 3px;
}

.nav-icon.open span:nth-child(2) {
  left: calc(50% - 3px);
  top: 3px;
}

.nav-icon.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

.nav-icon.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

.nav-icon.open span:nth-child(5) {
  left: 3px;
  top: 12px;
}

.nav-icon.open span:nth-child(6) {
  left: calc(50% - 3px);
  top: 12px;
}

header #logo {
  margin: 5px 0 5px;
  width: 194px;
}

header .hamburger {
  position: relative;
  float: right;
  top: 115px;
}

header nav {
  height: 0%;
  opacity: 0;
  display: none;
  background: white;
  position: relative;
  -webkit-animation: dropdown .5s ease-in-out;
  animation: dropdown .5s ease-in-out;
}

header nav .nav-menu {
  margin: 0 auto;
  text-align: center;
  height: 0%;
  background-color: white;
}

header nav a {
  margin: 0 0 10px;
}

@media (min-width: 900px) {
  header nav a {
    margin: 0 0 30px 10px;
  }
}

header nav.open {
  height: 100%;
  opacity: 1;
  display: block;
}

header nav.open .nav-menu {
  height: 100%;
}

header nav:after {
  content: "";
  display: table;
  clear: both;
}

@media (min-width: 900px) {
  header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }
  header #logo {
    margin: 75px 0 50px;
  }
  header .hamburger {
    display: none;
  }
  header nav {
    height: 100%;
    opacity: 1;
    display: block;
  }
  header nav .nav-menu {
    margin: 0;
    height: 100%;
  }
}

.nav-menu li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: black;
  font-size: 24px;
  padding: 4px 12px 7px;
  background-color: none;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}

.nav-menu li a.current {
  background-color: #3AA935;
  color: white;
}

.nav-menu li a.current img {
  opacity: 1;
}

.nav-menu li a img {
  opacity: 0;
  position: absolute;
  height: 105%;
  width: 100%;
  z-index: 99;
  top: -1px;
  left: 0;
  -webkit-transition: opacity 1s ease;
  -o-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

.nav-menu li a:hover {
  color: white;
  background-color: #95C11E;
  -webkit-transition: background-color .5s ease;
  -o-transition: background-color .5s ease;
  transition: background-color .5s ease;
}

.nav-menu li a:hover img {
  opacity: 1;
  -webkit-transition: opacity .0s ease;
  -o-transition: opacity .0s ease;
  transition: opacity .0s ease;
}

footer {
  z-index: 100;
  position: relative;
  background-color: #1C1C1B;
  padding: 10px 20px;
  font-size: 16px;
  color: #9D9C9C;
}

footer:after {
  content: "";
  display: table;
  clear: both;
}

footer a {
  color: #9D9C9C;
  padding: 10px 15px;
  display: inline-block;
}

footer a:hover {
  color: #ECECEC;
}

footer p {
  display: inline-block;
}

footer img {
  width: 35px;
  position: absolute;
  top: -40px;
  right: 140px;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.bg {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.container {
  width: 100%;
  height: 100%;
  position: relative;
}

.container__border {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 99;
  top: -1px;
}

.container__img {
  position: relative;
  width: 100%;
}

.container.flex-basis {
  -ms-flex-preferred-size: 23%;
  flex-basis: 23%;
}

.container.flex-basis .mouseover {
  cursor: pointer;
}

.container.flex-basis .mouseover .overlay {
  width: 0%;
  height: 0%;
  top: 50%;
  left: 50%;
  border: none;
  border-radius: 50%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 5;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.container.flex-basis .mouseover:hover .overlay, .container.flex-basis .mouseover.current .overlay {
  width: 100%;
  height: 95%;
  top: 0;
  left: 0;
  border: none;
  border-radius: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 5;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

section {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 75px;
}

section p {
  font-size: 18px;
  line-height: 40px;
  padding-bottom: 25px;
  color: #21333A;
}

section#home {
  padding-bottom: 0;
}

section#about, section.about {
  padding: 0 20px 50px;
}

section#about .columns, section.about .columns {
  -webkit-column-count: 1;
  column-count: 1;
  -webkit-column-gap: 30px;
  column-gap: 30px;
}

section#about h3, section.about h3 {
  margin-top: 50px;
  padding-bottom: 5px;
}

@media (min-width: 900px) {
  section#about, section.about {
    padding: 0 80px 50px;
  }
  section#about .columns, section.about .columns {
    -webkit-column-count: 2;
    column-count: 2;
  }
}

section#services #img-active {
  margin-bottom: 15px;
}

section#services .img-box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

section#offers {
  padding: 0 30px 100px;
}

section#offers .mainflex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

section#offers .mainflex .subflex {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  margin-bottom: 25px;
}

@media (min-width: 1000px) {
  section#offers .mainflex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  section#offers .mainflex .subflex {
    width: 48%;
    padding-top: 20px;
    margin-bottom: 0;
  }
  section#offers .mainflex .subflex .container {
    top: 20px;
  }
}

section#offers .counting {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 20px;
}

section#offers .counting__tekst p {
  line-height: 14px;
}

section#offers .counting__numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  top: -3px;
  margin-bottom: 18px;
}

section#offers .counting__numbers--nr span {
  margin-left: 5px;
  margin-right: 5px;
  text-align: right;
  width: 15px;
  display: inline-block;
}

section#offers .counting__numbers p {
  cursor: pointer;
  padding: 5px 10px;
  display: inline-block;
  line-height: 20px;
  font-weight: 700;
  color: white;
  position: relative;
  background-color: #3AA935;
  margin-bottom: 5px;
  margin-left: 5px;
  -webkit-transition: background-color .2s ease;
  -o-transition: background-color .2s ease;
  transition: background-color .2s ease;
}

section#offers .counting__numbers p:hover {
  background-color: #95C11E;
}

section#offers .counting__numbers p img {
  position: absolute;
  height: 104%;
  width: 100%;
  z-index: 99;
  top: -1px;
  left: 0px;
}

section#contact {
  position: relative;
  text-align: left;
  height: 100%;
  width: 100%;
  padding-bottom: 0;
}

section#contact .hero {
  margin-bottom: 50px;
}

section#contact .contact__text {
  padding: 0 30px;
}

@media (min-width: 900px) {
  section#contact .contact__text {
    padding: 0 80px;
  }
}

section#contact .gmap_canvas {
  margin-top: 50px;
  position: relative;
  overflow: hidden;
  background: none !important;
  height: 100%;
  width: 100%;
}

section#contact .gmap_canvas iframe {
  position: relative;
  width: 100%;
  min-height: 400px;
  max-height: 500px;
  height: 25vw;
}

.overlay_header {
  position: relative;
  width: 100%;
  height: 100%;
}

/*# sourceMappingURL=style.css.map */

/* EDITS 07-07-2021 - DANIEL HOPPENER 
      ADDED 3 IMAGES AND CHANGED THE FLEX STRUCTURE
*/
.container.flex-basis {
      width: 25%;
      display: block;
      position: relative;
      flex-basis: 25%;
}
section#services .img-box {
      justify-content: flex-start;
      flex-wrap: wrap;
}