/*-- Animation --*/

@keyframes circle {
  0% {
    transform: rotate(90deg); opacity: 0; filter:blur(0px);
    transform-origin: center;
  }
  25% {
    transform: rotate(180deg);
    transform-origin: center;
  }
  50% {
    transform: rotate(270deg); filter:blur(10px);
    transform-origin: center;
  }
  100% {
    transform: rotate(360deg); opacity: 1; filter:blur(0px);
    transform-origin: center;
 }
}

@keyframes letters {
  from { transform: translateY(-10px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes buttons {
  from { transform: translateY(10px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes polygon {
  from { transform: translateY(10px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes dash {
  from {
    transform: rotate(90deg);
    transform-origin: center;
    stroke-dasharray: 20;
    opacity: 0;
  }

  to {
    transform: rotate(360deg);
    transform-origin: center;
    stroke-dasharray: 160;
    opacity: 1;
 }
}

@keyframes fadeOut {
  from {opacity: 1;}
  to {opacity: 0;}
}

@keyframes sparkle {
  0% {
    opacity: 0;
    mix-blend-mode: soft-light;
  }

  50% {
    opacity: 0;
    mix-blend-mode: initial;
  }

  100% {
    opacity: 1;
    mix-blend-mode: soft-light;
  }
}

@keyframes shine {
  0% {
    opacity: 0;
    filter: blur(3px);
  }

  50% {
    opacity: 1;
    filter: blur(0);
  }

  100% {
    opacity: 0.5;
    filter: blur(5px);
  }
}

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {
  body {
    font-size: 14px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
  }

  header {
    background-color: #141414;
    height: auto;
    width: 100%;
    top: 0;
    z-index: 999;
    box-shadow: none;
    position: fixed;
  }

  a {
    color: #f59e35;
  }

  section {
    border-bottom: 1px solid #eaeaea;
  }

  pre {
    color: white;
    background-color: #F59E35;
    text-align: left;
  }

  .navbar {
    margin-bottom: 0;
  }

  .navbar-brand {
    display: none;
  }

  .navbar-collapse {
    background-color: #141414;
  }

  .nav-buttons {
    display: none;
  }

  svg {
    float: left;
    width: 20%;
    margin-left: 40%;
  }

  #animation-container {
    animation-delay: 5s;
  /*  -moz-animation-name: fadeOut;
    -moz-animation-duration: 2s;
    -webkit-animation-name: fadeOut;
    -webkit-animation-duration: 2s;
    animation-fill-mode: forwards;
  */
  }

  #animation-container .btn-group {
    margin-left: 0;
    margin-top: 21%;
    position: absolute;
    text-align: center;
    width: 100%;
    z-index: 12;
    opacity: 0;
    box-shadow: none;
  }

  .tekst-fade {
    text-align: center;
    position: absolute;
    width: 100%;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 15px;
    z-index: 10;
    opacity: 0;
  }

  #animation-container .btn-group button {
    width: 50%;
    margin: 0;
    background-color: transparent;
    border: 2px solid #f59e35;
    border-radius: 5px;
    color: #f59e35;
    font-size: 12px;
    padding: 12px 12px;
    vertical-align: middle;
    line-height: 12px;
    text-align: center;
  }

  .header_image {
    filter: blur(10px);
    left: -5%;
    position: absolute;
    top: -5%;
    width: 150%;
    z-index: -1;
  }

  header button,
  #link_demo,
  #tel_link {
    margin: 0 auto;
    margin-top: 5px;
    background-color: transparent;
    border: 2px solid #f59e35;
    border-radius: 5px;
    color: #f59e35;
    font-size: 12px;
    padding: 12px 12px;
    vertical-align: middle;
    line-height: 12px;
    display: block;
    text-align: center;
    width: 100%;
  }

  h2 {
    font-size: 32px;
    font-weight: 300;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
  }

  h3 {
    font-size: 43px;
    text-align: center;
    font-weight: 300;
    color: white;
  }

  h4 {
    color: #f59e35;
    font-size: 20px;
    font-weight: 300;
  }

  h5 {
    font-size: 21px;
    font-weight: 300;
    margin-top: 5px;
    margin-bottom: 5px;
    font-family: 'Roboto', sans-serif;
  }

  p {
    font-size: 16px;
    color: #7b7b7b;
  }

  q {
    display: block;
    font-size: 18px;
    min-height: 50px;
  }

  strong {
    color: #f59e35;
  }

  a {
    text-decoration: none;
  }

  a:hover {
    text-decoration: none;
    transition: 0.2s ease-in;
    color: white;
  }

  #voordelen ul {
    padding: 0;
    padding-left: 40px;
    display: block;
    float: left;
  }

  #voordelen h5 {
    text-align: center;
    font-size: 1.2em;
  }

  #voordelen #aboutSubtitle {
    text-align: center;
    font-size: 1.2em;
    width: 100%;
    margin-left: 0;
  }

  #voordelen li {
    list-style: none;
  }

  #voordelen li p {
    text-align: left;
  }

  #voordelen li::before {
    content: "\f00c"; /* FontAwesome Unicode */
    font-family: FontAwesome;
    display: inline-block;
    margin-left: -1.3em; /* same as padding-left set on li */
    width: 1.3em; /* same as padding-left set on li */
    position: absolute;
    color: #a2c62c;
  }

  input[type="submit"], button[type="submit"] {
    background-color: #F0F0F0;
    border: none;
    display: inline-block;
    margin-top: 13px;
    padding: 15px;
    position: relative;
    white-space: nowrap;
    border-radius: 5px;
    width: 100%;
    color: #000000;
    font-size: 16px;
    text-transform: uppercase;
  }

  input [type="submit"] {
    border: 1px solid #000000;
  }

  button {
    padding: 15px;
  }

  .dark {
    background-color: #f59e35;
    color: white;
    border: none;
  }

  .dark:hover {
    background-color: #1492c0;
    transition: 0.3s ease-in;
  }

  .mail_button {
    margin-top: 15px;
  }

  .mail_button {
    background-color: #EAEAEA;
    border: medium none;
    border-radius: 5px;
    display: inline-block;
    font-size: 14px;
    padding: 10px 15px;
    width: auto;
    font-size: 14px;
    color: #666666;
  }

  .mail_button:hover {
    background-color: #DEDEDE;
    transition: 0.3s ease-in;
    color: #666666;
  }

  input[type="text"], input[type="password"], input[type="email"], textarea {
    border: 1px solid #86919e;
    height: 34px;
    line-height: 32px;
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
    color: #cccccc;
    border-radius: 5px;
    margin-top: 10px;
  }

  ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #99a2a9;
  }
  ::-moz-placeholder { /* Firefox 19+ */
    color: #99a2a9;
  }
  :-ms-input-placeholder { /* IE 10+ */
    color: #99a2a9;
  }
  :-moz-placeholder { /* Firefox 18- */
    color: #99a2a9;
  }

  label {
    width: 100%;
    text-align: center;
    font-weight: 300;
  }

  .divider {
    margin-bottom: 20px;
  }

  .icon-title {
    height: auto;
    width: 100%;
    color: white;
  }

  .icon-title i {
    display: none;
    color: #F59E35;
    float: left;
    font-size: 45px;
    margin-top: 8px;
    text-align: center;
    width: 100%;
    text-align: center;
  }

  .icon-title h5 {
    color: black;
    float: left;
    font-size: 21px;
    font-weight: 500;
    width: 100%;
    text-align: center;
  }

  .text-offset p {

    text-align: center;
  }

  .navbar {
    background-color: #151515;
    border: none;
    padding-top: 10px;
  }

  .navbar-header {
    width: 15%;
  }

  .navbar-default {
    border: none;
  }

  .navbar-brand {
    padding: 0;
  }

  .navbar-brand > img {
    width: 50%;
  }

  .navbar-collapse {
    border: none;
  }

  .navbar-nav > li {
    margin: 2px;
    text-align: center;
  }

  .navbar-default .navbar-nav > li > a {
    color: #ffffff;
    font-size: 14px;
    line-height: 20px;
    padding: 15px 5px;
  }

  .navbar-default .navbar-nav > li > a:focus {
    color: #f59e35;
  }

  .navbar-toggle {
    width: auto;
    margin-right: 0px;
  }

   #hero_image {
    width: 100%;
    background-image: none;
    height: auto;
    overflow: hidden;
    padding: 0;
  }

  #hero_image img {
    width: 100%;
  }

  .header_image.active {
    filter: blur(0);
    transition: 0.3s ease-in;
  }

  .header_cloud {
    display: none;
  }

  svg {
    display: none;
  }

  .header_content {
    padding-top: 15%;
    margin-left: 5%;
    position: relative;
    width: 90%;
  }

  .header_content .subtitle {
    float: left;
    font-size: 1.2em;
    margin-bottom: 0px;
    margin-top: 60px;
    opacity: 0;
    width: 100%;
  }

  .subtitle.active {
    animation-delay: 0.5s;
    -moz-animation-name: letters;
    -moz-animation-duration: 2s;
    -webkit-animation-name: letters;
    -webkit-animation-duration: 2s;
    animation-fill-mode: forwards;
  }

  .btn-group {
    margin-left: 0%;
    opacity: 0;
    text-align: center;
    width: 100%;
    z-index: 12;
  }

  .btn-group.active {
    animation-delay: 0.4s;
    -moz-animation-name: buttons;
    -moz-animation-duration: 2s;
    -webkit-animation-name: buttons;
    -webkit-animation-duration: 2s;
    box-shadow: none;
    animation-fill-mode: forwards;
  }

  .btn-group button {
    width: 46%;
    margin: 2%;
    background-color: transparent;
    border: 2px solid #f59e35;
    border-radius: 5px;
    color: #f59e35;
    font-size: 12px;
    padding: 12px 12px;
    vertical-align: middle;
    line-height: 12px;
    text-align: center;
  }

  .btn-group button:hover {
    background-color: #1492c0;
    transition: 0.3s ease-in;
  }

  #HeaderContent {
    background-color: #E7B35E;
    background-image: none;
    text-align: center;
    min-height: 330px;
    padding-top: 30px;
  }

  #HeaderContent a {
    margin-top: 15px;
    background-color: white;
    color: #F59E35;
    transition: 0.3s ease-in;
  }

  #HeaderContent a:hover {
    background-color: #F59E35;
    color: white;
  }

  #dsngrintro {
    margin-top: 15%;
  }

  #dsngrintro h1 {
    font-size: 3em;
    color: white;
    margin-bottom: 5px;
  }

  #dsngrintro h3 {
    color: white;
    margin-top: 0;
  }

  #dsngrintro h5 {
    color: white;
    margin-top: 30px;
  }

  #dsngrintro strong {
    color: white;
  }

  #hero_content img {
    position: absolute;
    right: 0;
    top: -100%;
    width: 100%;
    display: none;
  }

  #hero_content button {
    width: 46%;
    float: left;
    margin: 2%;
  }

  #app_section {
    background-image: none;
    padding-bottom: 30px;
  }

  #app_section h2 {
    text-align: left;
  }

  #app_section h4 {
    text-align: center;
    margin-bottom: 30px;
  }

  #about {
    background-color: white;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 30px;
  }

  #static_video {
    margin-bottom: 25px;
    margin-top: 25px;
  }

  #about .left,
  #about .right {
    margin-bottom: 30px;
    text-align: left;
  }

  #about i {
    display: none;
  }

  #about .icon-resp {
    display: inline;
    float: left;
    font-size: 3em;
    margin: 10px;
    color: #f59e35;
  }

  #about .video_container {
    display: none;
  }

  #about iframe {
    height: 250px;
    width: 100%;
  }

  #about h4 {
    margin: 0px;
    line-height: 30px;
  }

  #about .divider {
    display: none;
  }

  #how_it_works {
    padding-bottom: 30px;
    display: none;
  }

  #how_it_works_small article {
    background-color: #E4E7E7;
    padding: 10px;
  }

  #how_it_works_small .row {
    margin-bottom: 15px;
  }

  #how_it_works_small .uitgelicht {
    background-color: #F59D36;
    color: white;
  }

  #how_it_works .uitgelicht {
    color: white;
    background-color: #f59d36;
  }

  #how_it_works th {
    text-align: center;
    background-color: #e4e7e7;
    padding: 15px;
    font-size: 16px;
  }

  #how_it_works td, th {
    background-color: white;
    padding: 15px;
    border: 1px solid #e4e7e7;
    text-align: center;
    font-size: 16px;
  }

  #voordelen {
    background-color: white;
    padding-bottom: 30px;
  }

  #voordelen .divider {
    display: none;
  }

  #voordelen h2 {
    margin-bottom: 0;
  }

   #aboutSubtitle {
    text-align: center;
    height: 50px;
    margin-top: 10px;
    margin-bottom: 30px;
    float: left;
    width: 80%;
    margin-left: 10%;
  }

  #voordelen img {
    display: none;
  }

  #how_it_works button {
    width: 100%;
  }

  #introductiekorting {
    padding-bottom: 30px;
    background-color: #F59E35;
  }

  #introductiekorting h2 {
    margin-bottom: 30px;
    color: white;
  }

  #introductiekorting h3 {
    color: white;
    font-style: italic;
    font-weight: bold;
    font-size: 1.4em;
  }

  #introductiekorting p {
    color: white;
    text-align: center;
  }

  #introductiekorting strong {
    color: white;
  }

  #team {
    text-align: center;
  }

  #team .col-md-4 {
    margin-bottom: 30px;
  }

  #team h4 {
    margin-bottom: 5px;
    margin-top: 5px;
  }

  #team .lab {
    border: 1px solid #cccccc;
    padding-top: 15px;
    padding-bottom: 15px;
    box-sizing: border-box;
  }

  #team .lab img {
    border-radius: 50%;
    width: 125px;
  }

  #nieuwsbrief {
    background-image: url("/imgs/img.1-1.jpg");
    background-attachment: fixed;
    padding: 30px 25px;
  }

  #nieuwsbrief a:hover {
    color: #ce7e1d;
  }

  #nieuwsbrief article {
    text-align: center;
  }

  #cases {
    display: none;
  }

  #carousel_cases {
    display: block;
  }

  .carousel-control {
    color: #2c2e2d;
    position: relative;
  }

  .carousel-control:hover,
  .carousel-control:active,
  .carousel-control:focus {
    color: #f59e35;
  }

  .carousel-control.left {
    text-align: left;
  }

  .carousel-control.right {
    text-align: right;
  }

  .carousel-control.left,
  .carousel-control.right {
    background-image: none;
    width: 50%;
    padding: 15px;
    display: block;
    float: left;
    text-shadow: none;
  }

  .carousel-inner .item h4 {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border-top: 1px solid #eaeaea;
    color: #2c2e2d;
    font-size: 2em;
    margin: 0;
    padding: 15px;
  }

  .carousel-inner .item img {
    width: 100%;
  }

  .case img {
    width: 100%;
  }

  .case_content {
    background-color: transparent;
    color: #2c2e2d;
    margin-bottom: 15px;
    padding: 15px;
    text-align: left;
    padding-bottom: 30px;
    float: left;
    border: 1px solid #eaeaea;
    box-sizing: border-box;
  }

  .case_content .fa.fa-info {
    float: left;
    font-size: 3em;
    text-align: center;
    width: 20%;
  }

  .case_content > p {
    float: left;
    margin: 0;
  }

  #gegevens {
    text-align: center;
    padding-bottom: 30px;
  }

  #gegevens i {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    padding: 15px;
    background-color: #f59e35;
    color: white;
    font-size: 2em;
    line-height: 1.5em;
  }

  #contact{
    background-image: url("/imgs/Parallax-Background-Light-031-1.jpg");
    background-attachment: fixed;
    padding-bottom: 30px;
  }

  #contact h2 {
    text-align: center;
  }

  #contact input, textarea {
    width: 100%;
  }

  #contact label {
    font-size: 1.2em;
    margin-top: 10px;
  }

  footer {
    min-height: 200px;
    background-color: #1A1A1A;
    color: white;
  }

  footer h3 {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 30px;
  }

  footer h5 {
    font-size: 12px;
    text-align: center;
    padding: 15px;
  }

  footer h5 strong {
    color: white;
  }

  footer #footer-socials {
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: center;
  }

  footer #footer-socials a i {
    color: white;
    font-size: 30px;
  }

  footer #logos {
    border-top: 1px solid #2c2e2d;
    box-sizing: border-box;
  }

  footer #logos .col-md-4 {
    padding: 30px;
    padding-top: 30px;
  }

  footer #logos img {
    width: 100%;
  }

  footer ul {
    padding: 0;
    width: 100%;
  }

  footer ul li {
    list-style: none;
    text-align: center;
  }

  footer #xl_product {
    text-align: center;
    padding-bottom: 30px;
    border-top: 1px solid #2c2e2d;
  }

  footer #xl_product img {
    width: 10%;
  }

  .pagetwo-header {
    margin-top: 10%;
    padding-top: 5%;
    padding-bottom: 5%;
    background-color: #f59e35;
  }

  .pagetwo-header h1 {
    font-size: 3em;
    color: white;
    width: 100%;
    text-align: center;
    margin-top: 50px;
  }

  .page-two {
    padding-top: 30px;
  }

  #about.page-two article {
    margin-top: 30px;
    text-align: left;
  }

  #about.page-two .row {
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 15px;
  }

  #about .row:first-child {
    border: none;
  }

  #about.page-two #back {
    border: none;
  }

  #about .page-two .divider {
    display: none;
  }

  #about.page-two article i {
    margin: 0 auto;
    display: inline;
    font-size: 4em;
    margin: 10px;
    border: 2px solid #f59e35;
    color: #f59e35;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    line-height: 100px;
    padding: 5%;
  }

  #about.page-two a:hover {
    color: #ce7e1d;
  }

  #about.page-two h1 {
    text-align: left;
  }

  #about.page-two h2 {
    text-align: left;
  }

  #about.page-two h3 {
    color: black;
    text-align: left;
  }

  #about.page-two h4 {
    text-align: left;
    margin-bottom: 30px;
    margin-top: 30px;
    color: black;
  }

  #about.page-two h5 {
    margin-top: 30px;
    text-align: left;
  }

  #about.page-two ul {
    padding-left: 15px;
  }

  #about.page-two li {
    text-align: left;
    margin-bottom: 5px;
    font-size: 16px;
  }

  #about.page-two article p {
    text-align: left;
    font-size: 16px;
  }

  #about.page-two tbody tr:nth-child(odd) {
    background-color: #eaeaea;
  }

  #about.page-two table {
    border: 1px solid #eaeaea;
  }

  #about.page-two table th, td {
    text-align: left;
    padding: 15px;
    border: none;
  }

  .page-two .back-button {
    text-align: center;
  }
}


/* Small Devices, Tablets */
@media only screen and (min-width : 600px) {

  header {
    background-color: #141414;
  }

  svg {
    display: block;
  }

  #HeaderContent {
    background-color: #E7B35E;
    background-image: none;
    text-align: center;
    min-height: 400px;
    padding-top: 30px;
  }

  .header_content {
    padding-top: 15%;
    margin-left: 10%;
    position: relative;
    width: 80%;
  }

  .header_content .subtitle {
    margin-top: 20px;
    font-size: 2em;
  }

  .header_cloud {
    display: inline;
    position: absolute;
    top: 20%;
    left: 0;
    width: 50%;
    text-align: center;
    z-index: 1;
  }

  .header_cloud.right {
    right: 0;
    left: 50%;
  }

  .header_cloud ul {
    text-align: center;
    opacity: 0.3;
  }

 .header_cloud ul li {
    color: white;
    list-style: none;
    float: left;
    text-align: center;
    margin: 0;
    text-align: center;
    width: 100%;
    filter: blur(3px);
    mix-blend-mode: soft-light;
    opacity: 0.2;
  }

  .normal {
  }

  .big {
    font-size: 3em;
    margin: 20px;
  }

  .big:hover,
  .bold:hover,
  .italic:hover,
  .normal:hover
   {
    filter: blur(0);
    mix-blend-mode: normal;
    opacity: 1;
    transition: 0.2s ease-in;
  }

  .big:hover svg,
  .bold:hover svg,
  .italic:hover svg,
  .normal:hover svg {
    filter: blur(3px);
  }

  .bold {
    font-weight: 600;
    font-size: 2em;
  }

  .italic {
    font-style: italic;
  }

  .navbar-nav > li {
    margin: 2px;
    text-align: left;
  }

  .navbar-nav button {
    width: auto;
  }

  #tel_link {
    width: auto;
  }

  #voordelen article {
    margin-bottom: 30px;
  }

  .icon-title {
    height: 40px;
    width: auto;
    color: white;
  }

  .icon-title i {
    width: 100%;
    float: left;
    font-size: 26px;
    color: #F59E35;
    margin: 0 auto;
    text-align: center;
  }

  .icon-title h5 {
    width: 100%;
    float: left;

    text-align: center;
  }

  .text-offset p {
    text-align: center;
  }

  #about iframe {
    height: 350px;
    width: 100%;
  }

  #how_it_works_small {
    display: none;
  }

  #how_it_works {
    display: block;
  }

  #how_it_works button {
    width: 50%;
    margin-left: 25%;
  }

  #gegevens i {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    padding: 15px;
    background-color: #f59e35;
    color: white;
    font-size: 1.5em;
    line-height: 1.5em;
  }

  #about.page-two article i {
    margin: 0 auto;
    display: inline;
    font-size: 3em;
    margin: 10px;
    padding: 2%;
  }
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
  h2 {
    margin-top: 60px;
    margin-bottom: 60px;
    text-align: center;
  }

  h4 {
    color: #f59e35;
    font-size: 31px;
    font-weight: 300;
  }

  input[type="submit"], button[type="submit"] {
    width: auto;
  }

  q {
    font-size: 18px;
  }

  .navbar-brand {
    display: block;
    float: left;
    font-size: 18px;
    height: 50px;
    line-height: 20px;
    padding: 0;
  }

  .navbar-brand > img {
    width: 45%;
  }

  .navbar {
    border: none;
  }

  .navbar-nav {
    float: left;
  }

  #HeaderContent {
    background-color: #E7B35E;
    background-image: url("../imgs/headerXD-background.png");
    background-size: cover;
    text-align: center;
    min-height: 500px;
    padding-top: 0;
  }

  .header_content {
    padding-top: 15%;
    margin-left: 25%;
    position: relative;
    width: 50%;
  }

  #hero_content img {
    display: inline-block;
    height: auto;
  }

  #hero_content button {
    width: auto;
    float: left;
    margin: 5px;
  }

  #app_section {
    background-image: url("../imgs/one-page-bg-1-1024x538-1.jpg");
    background-repeat: no-repeat;
    padding-bottom: 30px;
    background-size: 85%;
    background-position: left, center;
  }

  #app_section h4 {
    text-align: left;
  }

  #app_section .col-md-6 {
    background-color: transparent;
  }

  #about .icon-resp {
    display: inline;
    float: left;
    font-size: 3em;
    margin: 10px;
    color: #f59e35;
  }

  #how_it_works {
    background-image: url("../imgs/XF-watishet-.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    padding-bottom: 30px;
  }

  #introductiekorting h3 {
    font-size: 2em;
  }

  #contact{
    background-image: url("../imgs/Parallax-Background-Light-031-1.jpg");
    background-attachment: fixed;
    padding-bottom: 30px;
  }

  #contact label {
    font-size: 1em;
  }

  #voordelen img {
    display: block;
    position: absolute;
    width: 100%;
  }

  .case img {
    background-color: #2c2e2d;
  }

  .case .case_content {
    background-color: transparent;
    text-align: left;
    color: white;
    position: absolute;
    top: 0;
    left: 0;
    padding: 15px;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(-100px);
    transition: 0.3s ease-in;
    border: none;
  }

  .case .case_content h4 {
    color: white;
    margin: 0;
    width: 100%;
  }

  .case .case_content i {
    transform: translateY(-40px);
    transition: 0.45s ease-in;
    font-size: 1.5em;
  }

  .case.hover img {
    opacity: 0.3;
    background-blend-mode: multiply;
    transition: 0.3s ease-in;
    filter: blur(5px);
  }

  .case.hover .case_content {
    opacity: 1;
    transform: translateY(0px);
    transition: 0.3s ease-in;
  }

  .case.hover .case_content h4 {
    opacity: 1;
    transform: translateY(0);
    transition: 0.4s ease-in;
  }

  .case.hover .case_content i {
    transform: translateY(0);
    transition: 0.45s ease-in;
  }

  #support input[type="submit"], #support button[type="submit"]  {
    width: 100%;
  }

  .pagetwo-header h1 {
    font-size: 4em;
    color: white;
    width: 100%;
    text-align: center;
  }

   #about.page-two article i {
    margin: 0 auto;
    display: inline;
    font-size: 2em;
    margin: 10px;
    padding: 5%;
  }

  #about.page-two article {
    text-align: center;
    margin-top: 0;
  }

  #about.page-two .divider {
    display: block;
    margin-bottom: 60px;
  }
}

@media only screen and (min-width : 600px) {
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

  body{
    font-size: 19px;
  }

  h2 {
    font-size: 60px;
    margin-bottom: 60px;
    margin-top: 60px;
  }

  button {
    width: auto;
  }

  header {
    height: 115px;
  }

  header .navbar-default .navbar-nav > li > .contactlink:hover {
    background-color: #f59e35;
    color: white;
  }

  #HeaderContent {
    background-image: url("../imgs/headerXD-background.png");
    text-align: center;
    min-height: 800px;
  }

  .header_content .subtitle {
    margin-top: 0;
  }

  #animation-container {
    margin-top: 0;
  }

  .btn-group  {
    width: 50%;
    margin-left: 25%;
  }

  p {
    font-size: 19px;
  }

  .fa-mobile-phone::before, .fa-mobile::before {
    font-size: 1.5em;
  }

  .navbar-collapse {
    background-color: transparent;
  }

  .mail_button {
    background-color: #EAEAEA;
    border: medium none;
    border-radius: 5px;
    display: inline-block;
    font-size: 14px;
    padding: 10px 15px;
    width: auto;
    font-size: 14px;
    color: #666666;
  }

  .mail_button:hover {
    background-color: #DEDEDE;
    transition: 0.3s ease-in;
    color: #666666;
  }

  .divider {
    margin-bottom: 50px;
  }

  .arrow-down {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 40px solid white;
    content: "";
    left: 50%;
    margin-left: -40px;
    position: absolute;
    margin-top: 30px;
  }

  .icon-title i {
    width: 20%;
    float: left;
    font-size: 40px;
  }

  .icon-title h5 {
    width: 100%;
    float: left;
    margin-bottom: 15px;
  }

  .text-offset {
    margin-left: 0;
  }

  .icon-text {
    width: 80%;
  }

  .navbar-brand > img {
    width: 40%;
  }

  .navbar-toggle {
    width: auto;
  }

  .navbar ul {
    padding: 0;
  }

  .navbar ul li {
    float: left;
    list-style: none;
    display: inline-block;
    vertical-align: middle;
  }

  .navbar-default .navbar-nav > li > a {
    font-size: 14px;
    line-height: 20px;
    color: white;
  }

  .navbar-default .navbar-nav > li > a:hover,
  .navbar-default .navbar-nav > li > a:focus {
    color: #f59e35;
  }

  #hero_image {
    background-color: #8e9696;
  }

  #hero_image .col-md-12 {
    padding: 0;
  }

  #app_section {
    padding-bottom: 30px;
  }

  #app_section p strong {
    color: #F59E35;
    font-size: 19px;
    line-height: 27px;
  }

  #app_section .col-md-6 {
    background-color: transparent;
  }

  #about .video_container {
    display: block;
    z-index: 1;
  }

  #static_video {
    display: none;
  }

  #about .container {
    overflow: hidden;
    padding-bottom: 60px;
  }

  #about .icon-resp {
    display: none;
  }

  #about i {
    font-size: 50px;
    border: 2px solid #f59e35;
    color: #f59e35;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    line-height: 100px;
    text-align: center;
    display: block;
    margin: 0 auto;
  }

  #about .left,
  #about .right {
    margin-bottom: 30px;
    text-align: left;
  }

  #about .left {
    text-align: right;
    transition: 0.3s ease-in;
  }

  .left.hide_side {
    /*transform: translateX(-100%);
    transition: 0.3s ease-in; */
    filter: blur(5px);
    transition: 0.2s ease-in;
  }

  #about .right {
    text-align: left;
    transition: 0.3s ease-in;
  }

  .right.hide_side {
    /*transform: translateX(100%);
    transition: 0.3s ease-in; */
    filter: blur(5px);
    transition: 0.2s ease-in;
  }

  #about img {
    position: absolute;
    width: 90%;
    display: block;
    transition: 0.3s ease-in;
  }

  #about .video_img.rotate {
    transform: rotate(90deg);
    transition: 0.3s ease-in;
  }

  iframe {
    left: -21px;
    margin-top: 200px;
    position: absolute;
    z-index: 100;
  }


  #about iframe {
    width: 110%;
    height: 240px;
  }

  #how_it_works h2 {
    text-align: left;
  }

  #how_it_works .col-md-6 {
    padding-right: 70px;
  }

  #how_it_works button {
    width: auto;
    margin-left: 0;
  }

  #voordelen {
    background-color: white;
  }

  #voordelen h5 {
    text-align: center;
  }

  #voordelen #aboutSubtitle {
    text-align: center;
  }

  #voordelen ul {
    padding-left: 15px;
  }

  #voordelen p {
    text-align: center;
  }

  #voordelen .text-offset p {
    text-align: left;
  }

  #voordelen .icon-title h5 {
    text-align: left;
  }

  #voordelen .divider {
    display: block;
  }

  #voordelen img {
    display: inline;
  }

  #voordelen .col-md-4 img {
    width: 100%;
    position: absolute;
  }

  #voordelen .icon-title {
    height: auto;
  }

  #team h4 {
    margin-bottom: 30px;
  }

  #team img {
    width: 170px;
    height: auto;
  }

  #team .col-md-4 h4 {
    color: #333333;
    margin-top: 15px;
    margin-bottom: 19px;
  }
  #nieuwsbrief {
    background-image: url("/imgs/img.1-1.jpg");
    background-attachment: fixed;
    padding: 90px 25px;
  }

  #nieuwsbrief .container {
    text-align: center;
  }

  /*-- Cases --*/


  #cases {
    display: block;
  }

  #carousel_cases {
    display: none;
  }

  #cases .case {
    padding: 0;
    position: relative;
    overflow: hidden;
    background-color: #2c2e2d;
    height: auto;
  }

  .case_content h4 {
    font-size: 21px;
    margin-bottom: 15px;
  }

  .case_content br {
    display: none;
  }

  .case_content p {
    font-size: 12px;
  }

  #team {
    text-align: center;
  }

  #team .lab {
    border: 1px solid #000000;
    padding: 20px;
    margin-left: 15px;
    margin-right: 15px;
  }

  #gegevens{
    text-align: center;
  }

  #contact {
    padding-bottom: 30px;
  }

  #contact label {
    width: 100%;
    text-align: center;
  }

  #contact form {
    text-align: center;
  }

  #contact input[type="text"], #contact input[type="email"] {
    width: 75%;
  }

  #contact textarea {
    width: 100%;
    color: #000000;
  }

  #contact input[type="submit"] {
    width: auto;
  }

  #contact textarea {
    height: 166px;
  }

  footer #footer-socials .twitter {
    text-align: right;
  }

  footer #footer-socials .linkedin {
    text-align: left;
  }

  footer #footer-socials a i:hover {
    transition: 0.3s ease-in;
    color: #f59e35;
  }

  footer #logos {
    border: none;
  }

  footer #logos .col-md-4 {
    padding: 30px;
    padding-top: 30px;
  }

  .pagetwo-header {
    margin-top: 5%;
  }
}

@media only screen and (min-width : 1600px) {

  #about .video_container {
    display: block;
    z-index: 990;
  }

  #static_video {
    display: none;
  }

  #about iframe {
    width: 110%;
    height: 240px;
  }

  .case_content h4 {
    font-size: 31px;
  }

  .case_content br {
    display: inline-block;
  }

  .case_content p {
    font-size: 14px;
  }
}
