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

body {
  font-size: 18px;
  color: #FFF;
  font-family: 'Poppins', sans-serif;
  background: url(/assets/vrijdagonline-bg.svg), #404455;
  background-size: cover;
  background-position: bottom left;
  background-repeat: repeat-x;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

.oranje {
  color: #E75C14;
}

@-webkit-keyframes bounce {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}

@keyframes bounce {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}

@-webkit-keyframes bounceSide {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
}

@keyframes bounceSide {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
}

.w {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.w-s {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.w-s * {
  position: absolute;
}

.w-s .s1 {
  -webkit-animation: bounce 3s infinite alternate;
          animation: bounce 3s infinite alternate;
  top: 10%;
  right: 10%;
}

.w-s .s2 {
  -webkit-animation: bounce 2s infinite alternate;
          animation: bounce 2s infinite alternate;
  top: 15%;
  left: 40%;
}

@media (max-width: 767px) {
  .w-s .s2 {
    display: none;
  }
}

.w-s .s3 {
  -webkit-animation: bounce 5s infinite alternate;
          animation: bounce 5s infinite alternate;
  bottom: 10%;
  left: 6%;
}

.w-s .s4 {
  -webkit-animation: bounce 2s infinite alternate;
          animation: bounce 2s infinite alternate;
  bottom: 20%;
  right: 25%;
}

.w-s .s5 {
  -webkit-animation: bounce 4s infinite alternate;
          animation: bounce 4s infinite alternate;
  left: 30%;
  top: 25%;
}

.w-s .s6 {
  -webkit-animation: bounce 7s infinite alternate;
          animation: bounce 7s infinite alternate;
  right: 50%;
  bottom: 30%;
}

.w-s .s7 {
  -webkit-animation: bounce 3s infinite alternate;
          animation: bounce 3s infinite alternate;
  right: 5%;
  top: 40%;
}

@media (max-width: 767px) {
  .w-s .s7 {
    display: none;
  }
}

.w-h {
  padding: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  z-index: 2;
}

.w-h img {
  width: 300px;
  max-width: 300px;
  height: auto;
}

@media (max-width: 767px) {
  .w-h {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .w-h img {
    max-width: 200px;
    padding-top: 100px;
  }
}

.w-i {
  position: relative;
  z-index: 2;
  padding-left: 5%;
}

@media (max-width: 767px) {
  .w-i {
    text-align: center;
    padding-left: 0;
    padding-top: 120px;
  }
}

.w-i h1 {
  text-transform: uppercase;
  font-size: 3.6rem;
  max-width: 600px;
  line-height: 1em;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .w-i h1 {
    font-size: 2rem;
  }
}

.w-i a {
  text-decoration: none;
  display: inline-block;
  padding: 18px 25px;
  background-color: #E75C14;
  color: white;
  font-weight: 700;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  border-radius: 50px;
}

.w-i a svg {
  fill: white;
  width: 14px;
  height: 14px;
  position: relative;
  top: 1px;
  margin-left: 10px;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  -webkit-animation: bounceSide 1s infinite alternate;
          animation: bounceSide 1s infinite alternate;
}

.w-i a:hover svg {
  margin-left: 15px;
}
/*# sourceMappingURL=style.css.map */