#section_250 .floating-text-box header h2 {
  margin-top: 0;
}

#section_250 #tarieven-basic-prijzen-wrapper {
  background-image: url("https://webmin.digiteam.nl/sites/115/media/images/globaldesign/kozeeland4.jpg");
  background-image: url("https://webmin.digiteam.nl/sites/115/media/images/globaldesign/kozeeland3.jpg");
  background-image: url("https://webmin.digiteam.nl/sites/115/media/images/globaldesign/training4.jpg");
}

@media only screen and (max-width: 1023px) {
    #section_250 #tarieven-basic-prijzen-wrapper {
      background-image: url("https://webmin.digiteam.nl/sites/115/media/images/globaldesign/training4responsive.jpg");
    } 
}

#section_250 .floating-text-box {
  background-size: 100vw;
  padding-top: 70vw;
  background-repeat: no-repeat;
  min-height: 100vh;
}

#section_250 .floating-text-box .content {
  padding: 20px 1em 0;
}

/*
@media only screen and (max-width: 1000px) {
  #section_250 h2 {
    font-size: 32px;
    margin-top: 15px;
    margin-bottom: 5px;
  }
  
  #section_250 .floating-text-box .content {
    padding: 0 10px 10px 20px;
  }
}
*/

@media screen and (max-width: 480px) and (orientation: portrait) {
    #section_250 h2 {
        font-size: 30px;
    }
    #section_250 .floating-text-box {
        padding-top: 204px;
        padding-top: 210px;
        padding-top: 58vw;
        padding-bottom:70px;
    }
    #section_250 #tarieven-basic-prijzen-content ul {
        padding-left: 20px;
        padding-right: 30px;
    }
}

@media screen and (min-width: 480px) and (max-width: 799px) and (orientation: landscape) {
    #section_250 #tarieven-basic-prijzen-wrapper {
        background-position-y: -100px;
        background-position-y: -19vw;
    }
    #section_250 .floating-text-box {
        padding-top: 210px;
        padding-top: 43vw;
    }
}

@media only screen and (min-width: 600px) and (max-width: 767px) and (orientation: portrait) {
    #section_250 .floating-text-box {
        padding-top: 400px;
        padding-top: 63vw;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {

    #section_250 .floating-text-box {
        padding-top: 508px;
        padding-top: 63vw;
    }


}

@media only screen and (min-width: 800px) and (max-width: 1023px) and (orientation: landscape) {
    #section_250 #tarieven-basic-prijzen-wrapper {
        background-position-y: -120px;
        background-position-y: -13vw;
    }
    #section_250 .floating-text-box {
        padding-top: 410px;
        padding-top: 50vw;
        padding-bottom:50px;
    }
}

@media only screen and (min-width: 1024px) {
    
    #section_250 #tarieven-basic-prijzen-content {
        background-color: rgba(255, 255, 255, 0.9);
        padding: 30px 3em 40px;
        width: max-content;
        margin-left: 30px;
        max-width: 70vw;
    }

    #section_250 #tarieven-basic-prijzen-wrapper.floating-text-box {
       background-size: 80% auto !important; 
    }
    
    
  #section_250 .floating-text-box {
    background-size: auto 100%;
    background-position-x: right;
    background-position-y: center;
    padding-top: initial;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #section_250 .floating-text-box .content {
    background-color: rgba(29, 29, 27, 0.9);
    padding: 0 1em 0;
    width: max-content;
    margin-left: 30px;
    margin-top: 90px;
    max-width: calc(100vw - 60px);
    padding: 0 20px 30px 40px;
    
    min-height: min-content !important;
  }

}

@media only screen and (max-width: 1150px) {
  #section_250 #ktarieven-basic-prijzen-content {
    line-height: 20px !important;
    font-size: 14px !important;
  }
}

@media only screen and (min-width: 1440px) {
  #section_250 .floating-text-box .content {
    max-width: 85vw;
  }
}

@media only screen and (min-width: 2100px) {
  #section_250 .floating-text-box .content {
    max-width: 90vw;
  }
}

@media only screen and (max-width: 1700px) {
  #section_250 .floating-text-box .content {
    max-width: 90vw;
    /*min-height: 45vw;*/
  }
}

/* ANIMATION SET 1: Scrolling to this section from the previous section. Left text box slides in from bottom. Right image box slides in from the right*/
.ftb-wrapper-slide-in-right {
  animation-name: ftb-wrapper-slide-in-right;
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  animation-fill-mode: forwards;

  -webkit-animation-name: ftb-wrapper-slide-in-right;
  -webkit-animation-duration: 500ms;
  -webkit-animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  -webkit-animation-fill-mode: forwards;
}

.ftb-content-slide-in-bottom {
  animation-name: ftb-content-slide-in-bottom;
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  animation-fill-mode: forwards;

  -webkit-animation-name: ftb-content-slide-in-bottom;
  -webkit-animation-duration: 500ms;
  -webkit-animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  -webkit-animation-fill-mode: forwards;
}

@keyframes ftb-wrapper-slide-in-right {
  from {
    transform: translateX(100vw);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes ftb-content-slide-in-bottom {
  from {
    transform: translateY(100vh) translateX(-100vw);
  }
  to {
    transform: translateY(0) translateX(0);
  }
}

@-webkit-keyframes ftb-wrapper-slide-in-right {
  from {
    transform: translateX(100vw);
  }
  to {
    transform: translateX(0);
  }
}

@-webkit-keyframes ftb-content-slide-in-bottom {
  from {
    transform: translateY(100vh) translateX(-100vw);
  }
  to {
    transform: translateY(0) translateX(0);
  }
}

/*ANIMATION SET 2: Scrolling from this section to next section. Left box slides out to left. Right image box slides out to right.*/
.ftb-wrapper-slide-out-right-custom {
  animation-name: ftb-wrapper-slide-out-right-custom;
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  animation-fill-mode: forwards;

  -webkit-animation-name: ftb-wrapper-slide-out-right-custom;
  -webkit-animation-duration: 500ms;
  -webkit-animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  -webkit-animation-fill-mode: forwards;
}

.ftb-content-slide-out-left {
  animation-name: ftb-content-slide-out-left;
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  animation-fill-mode: forwards;

  -webkit-animation-name: ftb-content-slide-out-left;
  -webkit-animation-duration: 500ms;
  -webkit-animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  -webkit-animation-fill-mode: forwards;
}

@keyframes ftb-wrapper-slide-out-right-custom {
  from {
    transform: translateX(0);
  }
  to {
      transform: translateY(20vh);
    transform: translateX(140vw);
  }
}

@keyframes ftb-content-slide-out-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200vw);
  }
}

@-webkit-keyframes ftb-wrapper-slide-out-right-custom {
  from {
    transform: translateX(0);
  }
  to {
      transform: translateY(20vh);
    transform: translateX(140vw);
  }
}

@-webkit-keyframes ftb-content-slide-out-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200vw);
  }
}

/*ANIMATION SET 3: Scrolling from a further section back to section. Left box slides in from left. Right image box slides in from top*/
.ftb-wrapper-slide-in-top {
  animation-name: ftb-wrapper-slide-in-top;
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  animation-fill-mode: forwards;

  -webkit-animation-name: ftb-wrapper-slide-in-top;
  -webkit-animation-duration: 500ms;
  -webkit-animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  -webkit-animation-fill-mode: forwards;
}

.ftb-content-slide-in-left {
  animation-name: ftb-content-slide-in-left;
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  animation-fill-mode: forwards;

  -webkit-animation-name: ftb-content-slide-in-left;
  -webkit-animation-duration: 500ms;
  -webkit-animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  -webkit-animation-fill-mode: forwards;
}

@keyframes ftb-wrapper-slide-in-top {
  from {
    transform: translateY(-100vh);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes ftb-content-slide-in-left {
  from {
    transform: translateY(0) translateX(-100vw);
  }
  to {
    transform: translateY(0) translateX(0);
  }
}

@-webkit-keyframes ftb-wrapper-slide-in-top {
  from {
    transform: translateY(-100vh);
  }
  to {
    transform: translateY(0);
  }
}

@-webkit-keyframes ftb-content-slide-in-left {
  from {
    transform: translateY(0) translateX(-100vw);
  }
  to {
    transform: translateY(0) translateX(0);
  }
}

/* ANIMATION 4: Slow moving text box */
@media only screen and (min-width: 1024px) {
  .ftb-content-move-up-down {
    animation-name: ftb-content-move-up-down;
    animation-duration: 4850ms;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-direction: alternate;
    /*animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);*/

    -webkit-animation-name: ftb-content-move-up-down;
    -webkit-animation-duration: 4850ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-direction: alternate;
    /*-webkit-animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);*/
  }

  @keyframes ftb-content-move-up-down {
    from {
      transform: translate3d(0, 0, 0);
    }
    to {
      transform: translate3d(0, 30px, 0);
    }
  }
  
  @-webkit-keyframes ftb-content-move-up-down {
    from {
      transform: translate3d(0, 0, 0);
    }
    to {
      transform: translate3d(0, 30px, 0);
    }
  }
}

#section_251 .floating-text-box header h2 {
  margin-top: 0;
}


#section_251 #fundamentals-advanced-wrapper {
    background-image: url("https://webmin.digiteam.nl/sites/115/media/images/globaldesign/kozeeland6.jpg");
    background-image: url("https://webmin.digiteam.nl/sites/115/media/images/globaldesign/kozeeland1.jpg");
    background-image: url("https://webmin.digiteam.nl/sites/115/media/images/globaldesign/training2.jpg");
    
    background-image: url("https://webmin.digiteam.nl/sites/115/media/images/globaldesign/training7.jpg");

}

#section_251 .floating-text-box {
    background-size: 100vw;
    padding-top: 70vw;
    background-repeat: no-repeat;
    min-height: 100vh;
}

#section_251 .floating-text-box .content {
    padding: 20px 1em 0;
}

@media screen and (max-width: 480px) and (orientation: portrait) {
    
    #section_251 #fundamentals-advanced-wrapper {
        background-position-y: 30px;
    }
    
    #section_251 h2 {
        font-size: 30px;
    }
    
    #section_251 #fundamentals-advanced-content ul {
        padding-left: 20px;
        padding-right: 30px;
    }
    
    #section_251 .floating-text-box {
        padding-top: 214px;
        padding-top: 220px;
        padding-top: 61vw;
        padding-bottom:50px;
    }
}

@media screen and (min-width: 480px) and (max-width: 799px) and (orientation: landscape) {
    /*
    #section_251 #fundamentals-advanced-wrapper {
        background-image: url("https://webmin.digiteam.nl/sites/115/media/images/globaldesign/training2responsive.jpg");
    }
    */
    
    #section_251 #fundamentals-advanced-wrapper {
        background-image: url("https://webmin.digiteam.nl/sites/115/media/images/globaldesign/training7responsive.jpg");
    }
    
    #section_251 #fundamentals-advanced-wrapper {
        background-position-y: -64px;
        background-position-y: -60px;
        background-position-y: -11vw;
    }
    
    #section_251 .floating-text-box {
        padding-top: 196px;
        padding-top: 192px;
        padding-top: 40vw;
    }

}

@media only screen and (min-width: 600px) and (max-width: 767px) and (orientation: portrait) {
    #section_251 .floating-text-box {
        padding-top: 422px;
        padding-bottom:0;
        
        padding-top: 380px;
        padding-top: 59vw;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
    #section_251 .floating-text-box {
        padding-top: 550px;
        padding-top: 490px;
        padding-top: 61vw;
    }
}

@media only screen and (min-width: 800px) and (max-width: 1023px) and (orientation: landscape) {
    /*
    #section_251 #fundamentals-advanced-wrapper {
        background-image: url("https://webmin.digiteam.nl/sites/115/media/images/globaldesign/training2responsive.jpg");
    }
    */
    
    #section_251 #fundamentals-advanced-wrapper {
        background-position-y: -160px;
        background-position-y: -130px;
        background-position-y: -14vw;
    }
    #section_251 .floating-text-box {
        padding-top: 310px;
        padding-bottom:0px;
        margin-bottom:-10px;
        
        padding-top: 380px;
        padding-top: 47vw;
    }
}

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

    #section_251 #fundamentals-advanced-wrapper {
        background-position-x: -100px !important;
    }

    #section_251 #fundamentals-advanced-content {
        background-color: rgba(255, 255, 255, 0.9);
        padding: 30px 3em 40px;
        width: max-content;
        margin-left: 30px;
        max-width: 70vw;
    }

    #section_251 .floating-text-box {
        background-size: auto 100%;
        background-position-x: right;
        background-position-y: center;
        padding-top: initial;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Override to have image left, text right. */
    #section_251 #fundamentals-advanced-wrapper {
        background-position-x: left;
        flex-direction: row;
        justify-content: flex-end;
    }
    
    #section_251 .floating-text-box .content {
        background-color: rgba(29, 29, 27, 0.9);
        padding: 30px 3em 40px;
        width: max-content;
        margin-left: 30px;
        max-width: 70vw;
    }
    
    #section_251 #fundamentals-advanced-content {
        margin-right: 30px;
        margin-top: auto;
        margin-bottom: auto;
    }
  
}


@media only screen and (max-width: 1600px) {
  #section_251 #fundamentals-advanced-content {
    padding-top:40px;
    padding-bottom:50px;
  }
}


/* ANIMATION SET 1 ALTERNATE: Scrolling from top to this section. Right text box slides in from bottom. Left image box slides in from the left. */
.ftb-wrapper-slide-in-left {
  animation-name: ftb-wrapper-slide-in-left;
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  animation-fill-mode: forwards;

  -webkit-animation-name: ftb-wrapper-slide-in-left;
  -webkit-animation-duration: 500ms;
  -webkit-animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  -webkit-animation-fill-mode: forwards;
}
.ftb-content-right-slide-in-bottom {
  animation-name: ftb-content-right-slide-in-bottom;
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  animation-fill-mode: forwards;

  -webkit-animation-name: ftb-content-right-slide-in-bottom;
  -webkit-animation-duration: 500ms;
  -webkit-animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  -webkit-animation-fill-mode: forwards;
}

@keyframes ftb-wrapper-slide-in-left {
  from {
    transform: translateX(-100vw);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes ftb-content-right-slide-in-bottom {
  from {
    transform: translateY(100vh) translateX(100vw);
  }
  to {
    transform: translateY(0) translateX(0);
  }
}

@-webkit-keyframes ftb-wrapper-slide-in-left {
  from {
    transform: translateX(-100vw);
  }
  to {
    transform: translateX(0);
  }
}

@-webkit-keyframes ftb-content-right-slide-in-bottom {
  from {
    transform: translateY(100vh) translateX(100vw);
  }
  to {
    transform: translateY(0) translateX(0);
  }
}

/*ANIMATION SET 2 ALTERNATE: Scrolling from this section to next section. Right content slides out to Right. Left image box slides out to left.*/
.ftb-wrapper-slide-out-left-custom {
  animation-name: ftb-wrapper-slide-out-left-custom;
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  animation-fill-mode: forwards;

  -webkit-animation-name: ftb-wrapper-slide-out-left-custom;
  -webkit-animation-duration: 500ms;
  -webkit-animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  -webkit-animation-fill-mode: forwards;
}

.ftb-content-slide-out-right {
  animation-name: ftb-content-slide-out-right;
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  animation-fill-mode: forwards;

  -webkit-animation-name: ftb-content-slide-out-right;
  -webkit-animation-duration: 500ms;
  -webkit-animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  -webkit-animation-fill-mode: forwards;
}

@keyframes ftb-wrapper-slide-out-left-custom {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100vw);
  }
}

@keyframes ftb-content-slide-out-right {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(200vw);
  }
}

@-webkit-keyframes ftb-wrapper-slide-out-left-custom {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100vw);
  }
}

@-webkit-keyframes ftb-content-slide-out-right {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(200vw);
  }
}

/*ANIMATION SET 3 ALTERNATE: Scrolling from the next section back to this section. Right box slides in from right. Left image slides in from top. */
.ftb-wrapper-slide-in-top {
  animation-name: ftb-wrapper-slide-in-top;
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  animation-fill-mode: forwards;

  -webkit-animation-name: ftb-wrapper-slide-in-top;
  -webkit-animation-duration: 500ms;
  -webkit-animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  -webkit-animation-fill-mode: forwards;
}

.ftb-content-slide-in-right {
  animation-name: ftb-content-slide-in-right;
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  animation-fill-mode: forwards;

  -webkit-animation-name: ftb-content-slide-in-right;
  -webkit-animation-duration: 500ms;
  -webkit-animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  -webkit-animation-fill-mode: forwards;
}

@keyframes ftb-wrapper-slide-in-top {
  from {
    transform: translateY(-100vh);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes ftb-content-slide-in-right {
  from {
    transform: translateY(100vh) translateX(100vw);
  }
  to {
    transform: translateY(0) translateX(0);
  }
}

@-webkit-keyframes ftb-wrapper-slide-in-top {
  from {
    transform: translateY(-100vh);
  }
  to {
    transform: translateY(0);
  }
}

@-webkit-keyframes ftb-content-slide-in-right {
  from {
    transform: translateY(100vh) translateX(100vw);
  }
  to {
    transform: translateY(0) translateX(0);
  }
}

/* ANIMATION 4: Slow moving text box */
@media only screen and (min-width: 1024px) {
  .ftb-content-move-up-down {
    animation-name: ftb-content-move-up-down;
    animation-duration: 4850ms;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-direction: alternate;
    /*animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);*/

    -webkit-animation-name: ftb-content-move-up-down;
    -webkit-animation-duration: 4850ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-direction: alternate;
    /*-webkit-animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);*/
  }

  @keyframes ftb-content-move-up-down {
    from {
      transform: translate3d(0, 0, 0);
    }
    to {
      transform: translate3d(0, 30px, 0);
    }
  }
  @-webkit-keyframes ftb-content-move-up-down {
    from {
      transform: translate3d(0, 0, 0);
    }
    to {
      transform: translate3d(0, 30px, 0);
    }
  }
}

#section_252 .floating-text-box header h2 {
  margin-top: 0;
}

#section_252 #tarieven-aanvullende-kosten-wrapper {
  background-image: url("https://webmin.digiteam.nl/sites/115/media/images/globaldesign/kozeeland4.jpg");
  
  background-image: url("https://webmin.digiteam.nl/sites/115/media/images/globaldesign/training5.jpg");
  
  background-image: url("https://webmin.digiteam.nl/sites/115/media/images/globaldesign/kozeeland2.jpg");
  
  
}

#section_252 .floating-text-box {
  background-size: 100vw;
  padding-top: 70vw;
  background-repeat: no-repeat;
  min-height: 100vh;
}

#section_252 .floating-text-box .content {
  padding: 20px 1em 0;
}

@media screen and (max-width: 480px) and (orientation: portrait) {
    #section_252 #tarieven-aanvullende-kosten-wrapper {
        background-size: 100%;
        background-position-y: -200px;
        background-position-y: -55vw;
    }
    #section_252 h2 {
        font-size: 30px;
    }
    
    #section_252 #tarieven-aanvullende-kosten-content ul {
        padding-left: 20px;
        padding-right: 30px;
    }
    #section_252 .floating-text-box {
        padding-top: 230px;
        
        padding-top: 250px;
        padding-top: 264px;
        padding-top: 78vw;
    }
}

@media screen and (min-width: 480px) and (max-width: 799px) and (orientation: landscape) {
    #section_252 #tarieven-aanvullende-kosten-wrapper {
        background-position-y: -86px;
        
        background-size: 100%;
        background-position-y: -428px;
        background-position-y: -85vw;
    }
    #section_252 .floating-text-box {
        padding-top: 250px;
        padding-bottom:90px;
        
        padding-top: 236px;
        padding-top: 48vw;
    }
}

@media only screen and (min-width: 600px) and (max-width: 767px) and (orientation: portrait) {
    #section_252 #tarieven-aanvullende-kosten-wrapper {
        background-size: 100%;
        background-position-y: -428px;
        background-position-y: -69vw;
    }
    
    #section_252 .floating-text-box {
        padding-top: 420px;
        
        padding-top: 400px;
        padding-top: 65vw;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
    #section_252 #tarieven-aanvullende-kosten-wrapper {
        background-size: 100%;
        background-position-y: -560px;
        background-position-y: -70vw;
    }
    #section_252 .floating-text-box {
        padding-top: 532px;
        padding-top: 496px;
        padding-top: 64vw;
    }
}

@media only screen and (min-width: 800px) and (max-width: 1023px) and (orientation: landscape) {
    #section_252 #tarieven-aanvullende-kosten-wrapper {
        background-position-y: -120px;
        
        background-size: 100%;
        background-position-y: -700px;
        background-position-y: -84vw;
    }
    #section_252 .floating-text-box {
        padding-top: 430px;
        padding-bottom:70px;
        
        padding-top: 400px;
        padding-top: 50vw;
    }
}

@media only screen and (min-width: 1024px) {
    
    #section_252 #tarieven-aanvullende-kosten-content {
        background-color: rgba(255, 255, 255, 0.9);
        padding: 30px 3em 40px;
        width: max-content;
        margin-left: 30px;
        max-width: 70vw;
    }

    #section_252 #tarieven-aanvullende-kosten-wrapper.floating-text-box {
        background-size: 80% auto !important; 
    }
    
    #section_252 .floating-text-box {
        background-size: auto 100%;
        background-position-x: right;
        background-position-y: center;
        padding-top: initial;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    #section_252 .floating-text-box .content {
        background-color: rgba(29, 29, 27, 0.9);
        padding: 0 1em 0;
        width: max-content;
        margin-left: 30px;
        margin-top: 90px;
        max-width: calc(100vw - 60px);
        padding: 0 20px 30px 40px;
        
        min-height: min-content !important;
    }
  
}

@media only screen and (max-width: 1000px) {
  #section_252 h2 {
    font-size: 32px;
    margin-top: 15px;
    margin-bottom: 5px;
  }
  #section_252 .floating-text-box .content {
    padding: 0 10px 10px 20px;
  }
}

@media only screen and (min-width: 1440px) {
  #section_252 .floating-text-box .content {
    max-width: 85vw;
  }
}

@media only screen and (min-width: 2100px) {
  #section_252 .floating-text-box .content {
    max-width: 90vw;
  }
}

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

    #section_252 .floating-text-box .content {
        max-width: 90vw;
        /*min-height: 45vw;*/
    }
    
    #section_252 .kapsalon-pricing-table li div:nth-child(1) span:nth-child(2) {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ANIMATION SET 1: Scrolling to this section from the previous section. Left text box slides in from bottom. Right image box slides in from the right*/
.ftb-wrapper-slide-in-right {
  animation-name: ftb-wrapper-slide-in-right;
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  animation-fill-mode: forwards;

  -webkit-animation-name: ftb-wrapper-slide-in-right;
  -webkit-animation-duration: 500ms;
  -webkit-animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  -webkit-animation-fill-mode: forwards;
}

.ftb-content-slide-in-bottom {
  animation-name: ftb-content-slide-in-bottom;
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  animation-fill-mode: forwards;

  -webkit-animation-name: ftb-content-slide-in-bottom;
  -webkit-animation-duration: 500ms;
  -webkit-animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  -webkit-animation-fill-mode: forwards;
}

@keyframes ftb-wrapper-slide-in-right {
  from {
    transform: translateX(100vw);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes ftb-content-slide-in-bottom {
  from {
    transform: translateY(100vh) translateX(-100vw);
  }
  to {
    transform: translateY(0) translateX(0);
  }
}

@-webkit-keyframes ftb-wrapper-slide-in-right {
  from {
    transform: translateX(100vw);
  }
  to {
    transform: translateX(0);
  }
}

@-webkit-keyframes ftb-content-slide-in-bottom {
  from {
    transform: translateY(100vh) translateX(-100vw);
  }
  to {
    transform: translateY(0) translateX(0);
  }
}

/*ANIMATION SET 2: Scrolling from this section to next section. Left box slides out to left. Right image box slides out to right.*/
.ftb-wrapper-slide-out-right {
  animation-name: ftb-wrapper-slide-out-right;
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  animation-fill-mode: forwards;

  -webkit-animation-name: ftb-wrapper-slide-out-right;
  -webkit-animation-duration: 500ms;
  -webkit-animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  -webkit-animation-fill-mode: forwards;
}

.ftb-content-slide-out-left {
  animation-name: ftb-content-slide-out-left;
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  animation-fill-mode: forwards;

  -webkit-animation-name: ftb-content-slide-out-left;
  -webkit-animation-duration: 500ms;
  -webkit-animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  -webkit-animation-fill-mode: forwards;
}

@keyframes ftb-wrapper-slide-out-right {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100vw);
  }
}

@keyframes ftb-content-slide-out-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200vw);
  }
}

@-webkit-keyframes ftb-wrapper-slide-out-right {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100vw);
  }
}

@-webkit-keyframes ftb-content-slide-out-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200vw);
  }
}

/*ANIMATION SET 3: Scrolling from a further section back to section. Left box slides in from left. Right image box slides in from top*/
.ftb-wrapper-slide-in-top {
  animation-name: ftb-wrapper-slide-in-top;
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  animation-fill-mode: forwards;

  -webkit-animation-name: ftb-wrapper-slide-in-top;
  -webkit-animation-duration: 500ms;
  -webkit-animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  -webkit-animation-fill-mode: forwards;
}

.ftb-content-slide-in-left {
  animation-name: ftb-content-slide-in-left;
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  animation-fill-mode: forwards;

  -webkit-animation-name: ftb-content-slide-in-left;
  -webkit-animation-duration: 500ms;
  -webkit-animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  -webkit-animation-fill-mode: forwards;
}

@keyframes ftb-wrapper-slide-in-top {
  from {
    transform: translateY(-100vh);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes ftb-content-slide-in-left {
  from {
    transform: translateY(0) translateX(-100vw);
  }
  to {
    transform: translateY(0) translateX(0);
  }
}

@-webkit-keyframes ftb-wrapper-slide-in-top {
  from {
    transform: translateY(-100vh);
  }
  to {
    transform: translateY(0);
  }
}

@-webkit-keyframes ftb-content-slide-in-left {
  from {
    transform: translateY(0) translateX(-100vw);
  }
  to {
    transform: translateY(0) translateX(0);
  }
}

/* ANIMATION 4: Slow moving text box */
@media only screen and (min-width: 1024px) {
    
  .ftb-content-move-up-down {
    animation-name: ftb-content-move-up-down;
    animation-duration: 4850ms;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-direction: alternate;
    /*animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);*/

    -webkit-animation-name: ftb-content-move-up-down;
    -webkit-animation-duration: 4850ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-direction: alternate;
    /*-webkit-animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);*/
  }

  @keyframes ftb-content-move-up-down {
    from {
      transform: translate3d(0, 0, 0);
    }
    to {
      transform: translate3d(0, 30px, 0);
    }
  }
  @-webkit-keyframes ftb-content-move-up-down {
    from {
      transform: translate3d(0, 0, 0);
    }
    to {
      transform: translate3d(0, 30px, 0);
    }
  }
}




#section_253 .floating-text-box header h2 {
  margin-top: 0;
}
    
#section_253 #tarieven-aanvullende-info-wrapper {
    background-image: url("https://webmin.digiteam.nl/sites/115/media/images/globaldesign/kozeeland6.jpg");
    background-image: url("https://webmin.digiteam.nl/sites/115/media/images/globaldesign/smiling-woman-portrait.jpg");
}

@media only screen and (max-width: 1023px) {
    #section_253 #tarieven-aanvullende-info-wrapper {
        background-image: url("https://webmin.digiteam.nl/sites/115/media/images/globaldesign/smiling-woman-portrait-responsive.jpg");
    }
}

#section_253 .floating-text-box {
    background-size: 100vw;
    padding-top: 70vw;
    background-repeat: no-repeat;
    min-height: 100vh;
}

#section_253 .floating-text-box .content {
    padding: 20px 1em 0;
}

@media screen and (max-width: 480px) and (orientation: portrait) {
    #section_253 .floating-text-box {
        padding-top: 202px;
        padding-top: 58vw;
    }
    #section_253 h2 {
        font-size:30px;
    }
}

@media screen and (min-width: 480px) and (max-width: 799px) and (orientation: landscape) {
    #section_253 #tarieven-aanvullende-info-wrapper {
        background-position-y: -90px;
        background-position-y: -18vw;
    }
    #section_253 .floating-text-box {
        padding-top: 220px;
        padding-top: 46vw;
    }
    #section_253 h2 {
        font-size:30px;
    }
}

@media only screen and (min-width: 600px) and (max-width: 767px) and (orientation: portrait) {
    #section_253 .floating-text-box {
        padding-top: 408px;
        padding-top: 65vw;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
    #section_253 .floating-text-box {
        padding-top: 530px;
        padding-top: 66vw;
    }
}

@media only screen and (min-width: 800px) and (max-width: 1023px) and (orientation: landscape) {
    #section_253 #tarieven-aanvullende-info-wrapper {
        background-position-y: -120px;
        background-position-y: -14vw;
    }
    #section_253 .floating-text-box {
        padding-top: 426px;
        padding-top: 52vw;
        padding-bottom:70px;
    }
}

@media only screen and (min-width: 1024px) {
    
    #section_253 #tarieven-aanvullende-info-content {
        background-color: rgba(255, 255, 255, 0.9);
        padding: 30px 3em 40px;
        width: max-content;
        margin-left: 30px;
        max-width: 70vw;
    }
    
    #section_253 .floating-text-box {
        background-size: auto 100%;
        background-position-x: right;
        background-position-y: center;
        padding-top: initial;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    /* Override to have image left, text right. */
    #section_253 #tarieven-aanvullende-info-wrapper {
        background-position-x: left;
        flex-direction: row;
        justify-content: flex-end;
    }
    
    #section_253 .floating-text-box .content {
        background-color: rgba(29, 29, 27, 0.9);
        padding: 30px 3em 40px;
        width: max-content;
        margin-left: 30px;
        max-width: 70vw;
    }
    
    #section_253 #tarieven-aanvullende-info-content {
        margin-right: 30px;
        margin-top: auto;
        margin-bottom: auto;
    }
  
}


@media only screen and (max-width: 1600px) {
  #section_253 #tarieven-aanvullende-info-content {
    padding-top:40px;
    padding-bottom:50px;
  }
}


/* ANIMATION SET 1 ALTERNATE: Scrolling from top to this section. Right text box slides in from bottom. Left image box slides in from the left. */
.ftb-wrapper-slide-in-left {
  animation-name: ftb-wrapper-slide-in-left;
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  animation-fill-mode: forwards;

  -webkit-animation-name: ftb-wrapper-slide-in-left;
  -webkit-animation-duration: 500ms;
  -webkit-animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  -webkit-animation-fill-mode: forwards;
}

.ftb-content-right-slide-in-bottom {
  animation-name: ftb-content-right-slide-in-bottom;
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  animation-fill-mode: forwards;

  -webkit-animation-name: ftb-content-right-slide-in-bottom;
  -webkit-animation-duration: 500ms;
  -webkit-animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  -webkit-animation-fill-mode: forwards;
}

@keyframes ftb-wrapper-slide-in-left {
  from {
    transform: translateX(-100vw);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes ftb-content-right-slide-in-bottom {
  from {
    transform: translateY(100vh) translateX(100vw);
  }
  to {
    transform: translateY(0) translateX(0);
  }
}

@-webkit-keyframes ftb-wrapper-slide-in-left {
  from {
    transform: translateX(-100vw);
  }
  to {
    transform: translateX(0);
  }
}

@-webkit-keyframes ftb-content-right-slide-in-bottom {
  from {
    transform: translateY(100vh) translateX(100vw);
  }
  to {
    transform: translateY(0) translateX(0);
  }
}

/*ANIMATION SET 2 ALTERNATE: Scrolling from this section to next section. Right content slides out to Right. Left image box slides out to left.*/
.ftb-wrapper-slide-out-left {
  animation-name: ftb-wrapper-slide-out-left;
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  animation-fill-mode: forwards;

  -webkit-animation-name: ftb-wrapper-slide-out-left;
  -webkit-animation-duration: 500ms;
  -webkit-animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  -webkit-animation-fill-mode: forwards;
}

.ftb-content-slide-out-right {
  animation-name: ftb-content-slide-out-right;
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  animation-fill-mode: forwards;

  -webkit-animation-name: ftb-content-slide-out-right;
  -webkit-animation-duration: 500ms;
  -webkit-animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  -webkit-animation-fill-mode: forwards;
}

@keyframes ftb-wrapper-slide-out-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100vw);
  }
}

@keyframes ftb-content-slide-out-right {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(200vw);
  }
}

@-webkit-keyframes ftb-wrapper-slide-out-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100vw);
  }
}

@-webkit-keyframes ftb-content-slide-out-right {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(200vw);
  }
}

/*ANIMATION SET 3 ALTERNATE: Scrolling from the next section back to this section. Right box slides in from right. Left image slides in from top. */
.ftb-wrapper-slide-in-top {
  animation-name: ftb-wrapper-slide-in-top;
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  animation-fill-mode: forwards;

  -webkit-animation-name: ftb-wrapper-slide-in-top;
  -webkit-animation-duration: 500ms;
  -webkit-animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  -webkit-animation-fill-mode: forwards;
}

.ftb-content-slide-in-right {
  animation-name: ftb-content-slide-in-right;
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  animation-fill-mode: forwards;

  -webkit-animation-name: ftb-content-slide-in-right;
  -webkit-animation-duration: 500ms;
  -webkit-animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);
  -webkit-animation-fill-mode: forwards;
}

@keyframes ftb-wrapper-slide-in-top {
  from {
    transform: translateY(-100vh);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes ftb-content-slide-in-right {
  from {
    transform: translateY(100vh) translateX(100vw);
  }
  to {
    transform: translateY(0) translateX(0);
  }
}

@-webkit-keyframes ftb-wrapper-slide-in-top {
  from {
    transform: translateY(-100vh);
  }
  to {
    transform: translateY(0);
  }
}

@-webkit-keyframes ftb-content-slide-in-right {
  from {
    transform: translateY(100vh) translateX(100vw);
  }
  to {
    transform: translateY(0) translateX(0);
  }
}

/* ANIMATION 4: Slow moving text box */
@media only screen and (min-width: 1024px) {
    
  .ftb-content-move-up-down {
    animation-name: ftb-content-move-up-down;
    animation-duration: 4850ms;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-direction: alternate;
    /*animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);*/

    -webkit-animation-name: ftb-content-move-up-down;
    -webkit-animation-duration: 4850ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-direction: alternate;
    /*-webkit-animation-timing-function: cubic-bezier(0.23, 0.15, 0.25, 0.99);*/
  }

  @keyframes ftb-content-move-up-down {
    from {
      transform: translate3d(0, 0, 0);
    }
    to {
      transform: translate3d(0, 30px, 0);
    }
  }
  
  @-webkit-keyframes ftb-content-move-up-down {
    from {
      transform: translate3d(0, 0, 0);
    }
    to {
      transform: translate3d(0, 30px, 0);
    }
  }
  
}

.button-container {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
#menu_personeel_container {
    height: auto;
    background: rgba(6, 6, 6, 0.3);
    background-color: #111111;
    width: 100%;
    height: 50px;
}

@media screen and (max-width: 1331px) {
    
    #menu_personeel_container .col-md-3:first-child {
        width:0px;
        padding:0px;
    }
    
    #menu_personeel_container .col-md-6 {
        width:75%;
    }
    
}

#realisatie {
  font-family: 'Source Sans Pro';
  font-size: 14px;
  text-align: right;
  color:#FFFFFF;
}

#realisatie_inner {
  position: relative;
  white-space: nowrap;
  top:8px;
}

#realisatie_inner {
  opacity: 0.7;
}

#realisatie_inner img {
  display: inline-block;
  margin-left: 5px;
  width: 100px;
  opacity: 0.5;
}

#section_265 {
  background-size: 100% auto !important;
  background-position: center center;
  background-position-y: -15px !important;
}

#section_265 .section_inner {
  position: relative;
}

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

    #menu_personeel_container .col-md-3:last-child {
        width:35%;
    }
    
    #menu_personeel_container .col-md-6 {
        width:65%;
    }
    
    #menu_root_8 {
        font-size: 20px;
    }
    
    #menu_8 #menu_root_8 > li {
        width: 49%;
        text-align: center;
    }
    
    #menu_8 #menu_root_8 > li a {
        padding-top:20px;
        padding-left: 5px;
        padding-right: 5px;
        line-height: 5px;
    }
    
    #section_265 {
        background-position-y: 50px !important;
    }

}

@media screen and (max-width: 1023px) {
    
    #section_265 {
        background-position-y: 100px !important;
    }
  
    #menu_root_8 {
        height:60px;
    }
    
    #menu_root_8 > li {
        top: -8px;
        vertical-align: middle;
    }
  
    #menu_8 #menu_root_8 > li a {
        line-height: 20px;
    }
    
    #menu_personeel_container {
        height:70px;
    }
    
    #realisatie_inner {
        top: 16px;
    }
    
}

@media screen and (max-width: 850px) {
    
    #section_265 {
        background-position-y: 50% !important;
    }
    
    #menu_personeel_container {
        height: 130px;
    }
    
    #menu_personeel_container .col-md-3:last-child {
        width:100%;
    }
    
    #menu_personeel_container .col-md-6 {
        width:100%;
    }
    
    #menu_root_8 {
        padding-left:revert;
    }
    
    #menu_root_8 > li {
        top:0;
    }
    
    #realisatie {
        position: relative;
        text-align: center;
        -ms-transform: translate(0%, 0%);
        transform: translate(0%, 0%);
    }
  
}

@media screen and (max-width: 767px) {
    
    #menu_personeel_container .col-md-3:first-child {
        width: 0px;
        padding: 0px;
        height: 0;
    }

    #menu_personeel {
        display:block !important;
    }
    
}

/* Overrides for small (height) screens. */
@media screen and (max-width: 330px) and (max-height: 768px) {
    
  #menu_8 #menu_root_8 > li a {
    padding: 0;
  }
  
}
 
@media screen and (min-width: 480px) and (max-width: 799px) and (orientation: landscape) {
    
    #logos-footer-container {
        margin-top:98px;
    }
    
    #section_265 table {
        height: 150px !important;
    }

}

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

    #logos-footer-container {
        margin-top:10px;
    }
    
    #section_265 table {
        height: 150px !important;
    }
    
    #menu_root_8 {
        font-size: 14px;
    }
    
}
