/* ------------------------- */
/* ------- PRELOADER ------- */
/* ------------------------- */

.preloader {
  position: fixed;
  height: 100vh;
  width: 100vw;
  z-index: 1;
  background-color: #f9f7f3;
  background: linear-gradient(to top, #f9f7f3dd, #f9f7f3dd),
    url(https://markup.standaard.be/extra/assets/extra/dslive/anti/previsualisatie/soja/1-amazone/assets/video/Soyfield3-poster.jpg) no-repeat top center;
  background-size: cover;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.preloader h2.text {
  font-size: 18px!important;
  font-family: "Libre Franklin", Arial, Helvetica, sans-serif;
  color: #3d4730;
  text-align: center;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
  }
}

.load {
  width: 50px;
  height: 50px;
  margin: 0;
  margin-bottom: 25px;
  border: solid 3px #3d4730;
  border-radius: 50%;
  border-right-color: transparent;
  border-bottom-color: transparent;
  -webkit-transition: all 0.5s ease-in;
  -webkit-animation-name: rotate;
  -webkit-animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;

  transition: all 0.5s ease-in;
  animation-name: rotate;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@media only screen and (max-width: 768px) {
  .preloader {
    background: linear-gradient(to top, #f9f7f3dd, #f9f7f3dd),
      url(https://markup.standaard.be/extra/assets/extra/dslive/anti/previsualisatie/soja/1-amazone/assets/video/BR163-5-poster.jpg) no-repeat top center;
  }
}
/* ------------------------- */
/* ------- SCROLLAMA ------- */
/* ------------------------- */

.step.notop {
  margin-top: 10vh !important;
}

#intro p {
  max-width: 650px;
}

#outro {
  height: 40vh;
}

#scrolly {
  position: relative;
  background-color: white;
  margin: 0 auto !important;
}

article.starter,
article.sud2 {
  position: relative;
  padding: 0;
  max-width: 100%;
  margin: 0 auto;
}

figure {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  width: 100%;
  margin: 0;
  z-index: 0;
  text-align: center;
  width: 100%;
  height: 100vh !important;
  overflow-x: hidden !important;
  overflow-y: hidden !important;
  top: 0px !important;
}

.step {
  margin: 0 auto;
  color: white;
  width: 80%;
  max-width: 600px;
  margin-bottom: 85vh;
  padding: 1em;
  background: rgba(0, 0, 0, 0.7);
  color: white;
}

.step.transparant {
  background: rgba(0, 0, 0, 0.7);
  color: white;
}

.step:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
  .achtergrond.scrollme {
    margin-top: 0 !important;
  }

  .step div {
    padding: 0 1rem 1rem 1rem;
    font-size: 1.2rem;
    line-height: 1.2;
  }

  .scroll-icon-container,
  .field,
  .mouse,
  .field-text {
    display: none;
  }

  .achtergrond {
    margin-top: 50px;
  }

  .DS2020-container__inner {
    padding: 30px;
  }
}

@media only screen and (min-width: 769px) {
  .theme-live .breadcrumb {
    display: none;
  }

  .article__body {
    margin-top: -70px;
  }

  figure {
    width: 100%;
    height: 100vh !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    top: 0px !important;
  }

  article.starter,
  article.sud2 {
    margin-top: -70vh;
    max-width: 600px;
  }

  .step div {
    padding: 0;
    line-height: 2.2rem;
    font-size: 1.4rem;
  }

  .ntm {
    max-width: 997px;
    margin: 0 auto !important;
  }

  .main-container {
    max-width: 100%;
  }

  .DS2020-container__inner {
    padding: 50px !important;
    min-height: 50vh;
  }

  #scrolly {
    margin-top: 0px;
  }

  .step {
    margin-bottom: 50vh;
  }

  .container .animateme h3 {
    font-size: 3rem;
  }
}

/* ------------------------- */
/* -------- FADEIN -------- */
/* ----------------------- */

/* OLD */

/* FADE IN */
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* Fading animation */
.fadein {
  -webkit-animation-name: fade-in;
  -webkit-animation-duration: 1.5s;
  animation-name: fade-in;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
}

/* NEW */

.fadein {
  -webkit-animation: fade-in 1.5s ease-out both !important;
  animation: fade-in 1.5s ease-out both !important;
}

.drama {
  -webkit-animation: more-drama 2s ease-out both !important;
  animation: more-drama 2s ease-out both !important;
}

.fadeout {
  -webkit-animation: fade-out 2s ease-out both !important;
  animation: fade-out 2s ease-out both !important;
}

/* FADE IN */
@-webkit-keyframes fade-in {
  0% {
    opacity: 0.3;
  }

  100% {
    opacity: 0.7;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0.3;
  }

  100% {
    opacity: 0.7;
  }
}

/* FADE IN DRAMA*/
@-webkit-keyframes more-drama {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes more-drama {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* FADE OUT */
@-webkit-keyframes fade-out {
  0% {
    opacity: 0.7;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fade-out {
  0% {
    opacity: 0.7;
  }

  100% {
    opacity: 0;
  }
}

.animatemelater h3 {
  font-family: "arnhem-blond", Georgia, serif;
  font-weight: 200 !important;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

/* ------------------------- */
/* -------- MOBILE -------- */
/* ----------------------- */

@media only screen and (max-width: 769px) {
  .step.groter div {
    font-size: 1.8em;
    line-height: 1.3;
  }

  .step.left {
    max-width: 90% !important;
  }

  img.groot {
    width: 90vw!important;
    height: 140vw!important;
    object-fit: cover;
  }

  img.klein {
    width: 90vw;
    object-fit: cover;
  }

  .is-760 img.mobilegroot {
    width: 90vw;
    height: 140vw;
    object-fit: cover;
    margin: 0 1em;
  }

  .animatemelater h3 {
    font-size: 1.4rem !important;
  }

  span.description {
    font-size: 1rem !important;
    text-align: left;
  }

  .animateme.letsmove h3,
  .animateme h3 {
    font-size: 2.2rem !important;
  }

  .achtergrond.video .container h2 {
    margin-bottom: 0em !important;
  }

  .achtergrond.video .container.bottom {
    align-items: flex-start !important;
  }

  .achtergrond.video .container.mobiletop {
    margin: auto;
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }

  .hold.mobiletop,
  .mobiletop {
    padding-top: 3em;
  }

  .br163 .swiper-slide[data-swiper-slide-index="0"] video {
    object-position: 90% top !important;
  }

  /* .hero .swiper-slide[data-swiper-slide-index="0"] video {
    object-position: 60% bottom !important;
  } */

  img.rechterkant {
    max-width: 45% !important;
  }
}

/* --------------------------- */
/* -------- ALGEMEEN -------- */
/* ------------------------- */

.row, .slideshow {
  padding-left:0rem;
}

.body-wrapper {
  padding-top:4.5625rem;
}


.credits {
  background-color: #f9f7f3;
}

.container.bottom h2 {
  padding-bottom: 0em !important;
}

img.rechterkant {
  max-width: 45% !important;
  float: right;
}

.regie {
  background-color: bisque;
  font-family: monospace;
}

body {
  background-color: #f9f7f3 !important;
  margin: 0;
  padding: 0;
}

[data-mht-block="zone 1__extra-5k"] {
  background-color: #f9f7f3!important;
}

.question {
  font-weight: 400 !important;
}

.step.groter div {
  font-size: 2em;
  line-height: 1.05;
  margin-top: 20vh;
  margin-bottom: 20vh;
}

.step.groter {
  opacity: 0;
}

video.banner__video {
  opacity: 1 !important;
  background-color: black;
}

video.banner__video.fadeout {
  opacity: 0 !important;
}

.step>div {
  padding: 0.5rem !important;
  line-height: 1.5;
}

span.label-text,
span.sublabel-text {
  color: #3d4730 !important;
  background-size: cover;
}

.highlight_kaart {
  background: linear-gradient(to top, #5a484875 50%, transparent 50%);
}

.is-small {
  margin: 0 auto;
  width: 80%;
  max-width: 600px;
  padding: 0 !important;
}

div.is-small img {
  margin: 1em auto !important;
}

.achtergrond.video {
  margin: 2em auto !important;
}

.is-760 {
  margin: 2em auto !important;
}

#scrolly,
#scrollybr163 {
  margin: 2em auto !important;
}

.br163 .step:last-child {
  margin-bottom: 0;
}

.hero .step:last-child {
  margin-bottom: 0;
}

.bord {
  margin: 2em auto !important;
}

@media (pointer: coarse) and (hover: none) {
  .achtergrond.video.opener {
    background-color: black;
  }
}

.achtergrond.foto.bord {
  background-image: url(https://markup.standaard.be/extra/assets/extra/dslive/anti/previsualisatie/soja/1-amazone/assets/5_reiger.jpg);
}

@media only screen and (max-width: 768px) {
  .achtergrond.foto.bord {
    background-image: url(https://markup.standaard.be/extra/assets/extra/dslive/anti/previsualisatie/soja/1-amazone/assets/5_terminal.jpg);
    object-position: 90% top !important;
    background-position: 90% top !important;
  }



}

@media only screen and (max-width: 768px) {
  .step.notop {
    margin-top: -60vh !important;
  }

  .step {
    margin-bottom: 65vh;
  }

  div.is-small img {
    margin: 1em auto !important;
  }

  .social-media img {
    width: 15% !important;
  }

  .social-media {
    margin-bottom: 0rem !important;
  }

  .achtergrond.minderwit {
    margin-top: 0px !important;
    padding-top: 0px;
  }

  .body-wrapper {
    padding-top: 0rem !important;
  }

  .dubbel img {
    width: 90% !important;
    max-width: 90% !important;
    margin: 1em auto;
  }

  .container h2 {
    width: 100% !important;
  }

  span.label-text,
  span.sublabel-text {
    color: white !important;
  }
}

.lottie {
  margin: 2em auto !important;
}

.hold.left,
.center.center {
  text-align: left !important;
}

.auteurbox {
  margin: 0 0 1em 0;
}

.hold h2 {
  padding: 2rem 0 !important;
}

.achtergrond.video .container,
.hold {
  flex-direction: column;
}

.achtergrond.video .container.bottom {
  align-items: flex-start !important;
}

.hold {
  max-width: 550px;
}

/* ------------------------- */
/* -------- SWIPER -------- */
/* ----------------------- */

@import url("https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@400;600&display=swap");

.swiper {
  width: 760px;
  height: auto;
}

@media only screen and (max-width: 600px) {
  .swiper {
    width: 90%;
    height: auto;
  }
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination {
  background: rgba(0, 0, 0, 0.8);
  width: fit-content;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination-bullet {
  width: fit-content;
  text-align: center;
  font-size: 12px;
  color: #fff;
  opacity: 1;
  background: rgba(0, 0, 0, 0);
  height: 20px;
  font-family: "Libre Franklin";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 2px;
  padding-right: 2px;
  line-height: auto !important;
  color: #73867e;
}

.swiper-pagination-bullet-active {
  font-size: 16px;
  font-weight: 500;
  color: #d5f3e7;
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  bottom: 4%;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(1) !important;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  color: #9fb2aa !important;
  opacity: 1 !important;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  color: #73867e !important;
  opacity: 1 !important;
}

/* -------------------------- */
/* -------- SCROLLY -------- */
/* ------------------------ */
#scrolly {
  position: relative;
  margin: 0 auto;
}

article {
  position: relative;
  padding: 0;
  max-width: 100%;
  margin: 0 auto;
}

figure {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  width: 100%;
  margin: 0;
  z-index: 0;
  padding: 0 !important;
  text-align: center;
  overflow: hidden;
}

figure#scroll-media-full {
  width: 100vw !important;
  height: 100vh !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

#scroll-quote-left .flexie {
  display: flex;
  justify-content: flex-start;
  position: inherit;
}

#scroll-quote-left img {
  max-width: 40%;
}

#scroll-quote-left .flexie .flexie-quote {
  display: flex;
  justify-content: flex-start;
  max-width: 600px;
  align-items: center;
  text-align: left;
  margin-left: 3em;
}

.flexie-quote h3 {
  font-size: 1.7em !important;
}

#quote-bij-img5 {
  opacity: 0;
}

#iframer {
  background-color: black;
}

#scroll-media-full img,
#iframer img {
  margin: 0 auto;
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  opacity: 0;
  object-fit: cover;
}

#scroll-media-left img {
  margin: 0 auto;
  max-height: 100%;
  height: 80%;
  position: absolute;
  top: 0%;
  left: 50%;
  opacity: 0;
}

#scroll-media-right img {
  margin: 0 auto;
  max-height: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
}

figure img.hi {
  -webkit-animation: fade-in 3s cubic-bezier(0, 1, 1, 1) both;
  animation: fade-in 3s cubic-bezier(0, 1, 1, 1) both;
}

.flexie-quote.hi {
  -webkit-animation: text-focus-in 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
  animation: text-focus-in 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

figure img.hi.bye {
  -webkit-animation: darker 1s cubic-bezier(0, 1, 1, 1) both;
  animation: darker 1s cubic-bezier(0, 1, 1, 1) both;
  opacity: 0 !important;
}

.step {
  margin: 0 auto;
  width: 80%;
  max-width: 500px;
  margin-bottom: 60vh;
  padding: 0.7em;
}

.step-background-black {
  -webkit-box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.2);
  background-color: #212121;
  color: white;
}

.step-background-white {
  -webkit-box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.2);
  background-color: white;
}

.step-background-none {
  background-color: none;
}

.step-background-transparant {
  background: rgba(0, 0, 0, 0.7);
  color: white;
}

.step:first-child {
  margin-top: -30vh !important;
}

.step-fulltext {
  margin-bottom: 2em !important;
}

.step-fulltext:first-child {
  margin-top: 0vh !important;
}

.step-fulltext:last-child {
  margin-bottom: 0vh !important;
}

.step p {
  text-align: left;
  font-family: arnhem-blond, Georgia, serif !important;
  padding: 0 !important;
  margin-block-start: 0 !important;
  margin-block-end: 0.5em !important;
}

.step img {
  margin-top: 10px;
  max-width: 100% !important;
}

.flourishken,
figure>iframe {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  overflow-y: hidden !important;
  overflow-x: hidden !important;
  margin: 0 auto;
  border: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

figcaption p,
figcaption,
.DS2020-storyimage__caption {
  margin-top: 0 !important;
  text-align: left;
}

.is-small:first-child {
  padding-top: 0 !important;
}

.grijs {
  color: #ccc;
  font-family: Libre Franklin, Helvetica, Arial, sans-serif;
  font-size: 0.9em;
}

.titelke {
  font-family: Libre Franklin, Helvetica, Arial, sans-serif;
  font-size: 1em;
  color: rgb(51, 51, 51);
  font-weight: normal;
  font-size: 1rem;
  margin-bottom: 0.7em !important;
}

figure h4.titelke {
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: bold;
  color: rgb(51, 51, 51);
  margin: 0 0 0.6em 0;
  padding-top: 0rem;
}

@media only screen and (max-width: 768px) {
  .titelke {
    margin: 0em;
    margin-block-end: 0.5em !important;
    line-height: 1.4;
    font-size: 0.9rem;
  }

  figure h4.titelke {
    font-size: 1rem;
  }

  .step {
    margin-bottom: 85vh;
    width: 80%;
  }

  .step:first-of-type {
    margin-top: 20vh;
  }

  .step:first-child {
    margin-top: 10vh !important;
  }

  .step-fulltext {
    margin-bottom: 2em !important;
  }

  .step-fulltext:first-child {
    margin-top: 0vh !important;
  }

  .step-fulltext:last-child {
    margin-bottom: 1vh !important;
  }

  .step p {
    font-size: 1.2rem;
  }

  .step div {
    padding: 1rem;
  }

  .achtergrond {
    margin-top: 50px;
  }

  .DS2020-container__inner {
    padding: 30px;
  }

  figcaption p,
  figcaption,
  .DS2020-storyimage__caption p {
    padding-left: 0.666666667em !important;
  }

  #scrolly figure {
    top: 10px !important;
  }

  .witnascrolly {
    margin-top: 100px !important;
  }

  .step p {
    width: 100%;
    font-family: arnhem-bold, Georgia, serif !important;
    font-size: 1.5rem;
    padding: 1rem 0 0 0;
  }

  .article__body {
    margin-top: -70px;
  }

  #scroll-media-left,
  #scroll-media-right {
    margin-top: 0px;
    width: 100%;
    max-height: 50vh !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    z-index: 500 !important;
    background: linear-gradient(white, 98%, transparent);
  }

  #scroll-media-left img {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .flourishken {
    width: 100% !important;
    min-height: 100vh !important;
    max-width: 100%;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
  }

  .step div {
    padding: 0;
  }

  .afl .container h2 {
    font-size: 1.3em !important;
    font-weight: 400 !important;
  }

  .off-canvas__wrap {
    margin-top: 4.3em !important;
  }
}

@media only screen and (min-width: 769px) {
  .step.left {
    margin-left: 10% !important;
  }

  .main-footer, .l-zone {
    background-color: #f9f7f3!important;
  }

  .theme-live .breadcrumb {
    display: none;
  }

  .scroll-flex-left {
    display: flex;
    justify-content: flex-start;
  }

  .scroll-flex-left figure {
    max-width: 50% !important;
  }

  .scroll-flex-left article {
    margin-top: 0vh !important;
    margin: 0 !important;
  }

  .scroll-flex-left article .step {
    width: 100% !important;
    max-width: 550px !important;
  }

  .step.left {
    margin-left: 15% !important;
    margin-right: 0 !important;
    margin-top: 0 !important;
  }

  .step.right {
    margin-right: 15% !important;
  }

  .step p {
    width: 100%;
    font-family: arnhem-bold, Georgia, serif !important;
    font-size: 1.5rem;
    padding: 1rem 0 0 0;
  }

  .step div {
    padding: 0;
  }

  .ntm {
    max-width: 997px;
    margin: 0 auto !important;
  }

  .main-container {
    max-width: 100%;
  }

  #scrolly {
    margin-top: 100px;
  }

  #scroll-media-left,
  #scroll-media-right {
    height: 100vh !important;
  }

  #scroll-media-left img {
    left: 15%;
  }

  #scroll-media-right img {
    right: 10%;
  }
}

.animatemelater {
  opacity: 0;
}

.animatemelater h3 {
  font-size: 1.4rem;
  font-family: "arnhem-blond", Georgia, serif;
  font-weight: 100 !important;
}

span.description {
  font-size: 1rem !important;
  text-align: left;
  margin-top: 0.8em;
}

.animateme h3 {
  font-size: 3rem;
  font-family: "Libre Franklin",serif;
  font-weight: bold;
  text-transform: uppercase;
  margin-block-end: 0em !important;
}

.letsmove {
  -webkit-animation: slide-top 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-top 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.fade-in {
  -webkit-animation: fade-in 2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in 2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.cutout {
  background-color: black;
  opacity: 0.8;
  color: white;
  mix-blend-mode: multiply;
}

@-webkit-keyframes slide-top {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }
}

@keyframes slide-top {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes darker {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes darker {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }

  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }

  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

/* --------------------------------- */
/* -------- IMAGES COLLAGE -------- */
/* ------------------------------- */

video.video-small {
  max-width: 100%;
  margin-top: 1em !important;
  margin-bottom: 1em !important;
}

.is-970 {
  text-align: center;
  width: 80%;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

@media only screen and (max-width: 600px) {
  .is-970 {
    width: auto !important;
    padding: 0 1em !important;
  }

  .is-970 img {
    width: 100%;
    max-width: 970px !important;
    margin: 0 auto !important;
  }

  figcaption+div,
  div.is-970+div {
    margin-top: 1em !important;
  }
}

@media only screen and (min-width: 600px) {
  .is-970.desktop-flex {
    display: flex;
    margin-bottom: 2em !important;
    margin-top: 2em !important;
    gap: 0.8em;
  }

  .desktop-flex img {
    object-fit: cover;
  }

  img.groot {
    max-width: 60%;
    width: 60%;
  }

  img.klein {
    max-width: 40%;
    width: 40%;
  }
}

/* ----------------------------- */
/* -------- SWIPER HERO-------- */
/* --------------------------- */

.hero .swiper {
  width: 100vw;
  height: 100vh;
}

.hero .step:first-child {
  margin-top: -80vh !important;
}

.hero .swiper-slide video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero #scrolly {
  position: relative;
  margin: 0 auto;
}

.hero article {
  position: relative;
  padding: 0;
  max-width: 100%;
  margin: 0 auto;
}

.hero .herotext {
  font-size: 2em;
  color: white;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.hero figure {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  width: 100%;
  margin: 0;
  z-index: 0;
  padding: 0 !important;
  text-align: center;
  overflow: hidden;
  background-color: white;
}

.hero .step {
  margin: 0 auto;
  font-size: 1rem;
  width: 80%;
  max-width: 500px;
  margin-bottom: 60vh;
  padding: 0.7em;
}

.hero .DS2020-headline--feature {
  color: white !important;
}

.hero .step:first-child {
  margin-top: -70vh !important;
}

.hero .step p {
  text-align: left;
  font-size: 1.4rem;
  font-family: arnhem-blond, Georgia, serif !important;
  padding: 0 !important;
  margin-block-start: 0 !important;
  margin-block-end: 0.5em !important;
}

@media only screen and (max-width: 768px) {
  .hero .step {
    margin-bottom: 85vh;
    width: 80%;
  }

  .hero .step p {
    font-size: 1.2rem;
  }

  .hero .step:first-of-type {
    margin-top: -70vh;
  }

  .hero .step:first-child {
    margin-top: -70vh !important;
  }
}

/* ---------------------------- */
/* -------- SWIPER BR -------- */
/* -------------------------- */
.br163 .swiper {
  width: 100vw;
  height: 100vh;
}

.br163 .swiper-slide video,
.br163 .swiper-slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.br163 #scrollybr163 {
  position: relative;
  margin: 0 auto;
}

.br163 article {
  position: relative;
  padding: 0;
  max-width: 100%;
  margin: 0 auto;
}

.br163 .br163text {
  font-size: 2em;
  color: white;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.br163 figure {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  width: 100%;
  margin: 0;
  z-index: 0;
  padding: 0 !important;
  text-align: center;
  overflow: hidden;
  background-color: white;
}

.br163 .step {
  margin: 0 auto;
  font-size: 1rem;
  width: 80%;
  max-width: 500px;
  margin-bottom: 60vh;
  padding: 0.7em;
}

.br163 .DS2020-headline--feature {
  color: white !important;
}

.br163 .step:first-child {
  margin-top: -60vh !important;
}

.br163 .step p {
  text-align: left;
  font-size: 1.4rem;
  font-family: arnhem-blond, Georgia, serif !important;
  padding: 0 !important;
  margin-block-start: 0 !important;
  margin-block-end: 0.5em !important;
}

@media only screen and (max-width: 768px) {
  .br163 .step {
    margin-bottom: 85vh;
    width: 80%;
  }

  .br163 .step p {
    font-size: 1.2rem;
  }

  .br163 .step:first-of-type {
    margin-top: -60vh;
  }

  .br163 .step:first-child {
    margin-top: -70vh !important;
  }
}

/* ------------------------- */
/* -------- AI2HTML-------- */
/* ----------------------- */
#g-zuid-amerika-box {
  max-width: 1000px;
}

#g-zuid-amerika-box,
#g-zuid-amerika-box .g-artboard {
  margin: 0 auto;
}

#g-zuid-amerika-box p {
  margin: 0;
}

#g-zuid-amerika-box .g-aiAbs {
  position: absolute;
}

#g-zuid-amerika-box .g-aiImg {
  position: absolute;
  top: 0;
  display: block;
  width: 100% !important;
}

#g-zuid-amerika-box .g-aiSymbol {
  position: absolute;
  box-sizing: border-box;
}

#g-zuid-amerika-box .g-aiPointText p {
  white-space: nowrap;
}

#g-zuid-amerika-Artboard_1 {
  position: relative;
  overflow: hidden;
}

#g-zuid-amerika-Artboard_1 p {
  font-family: "Libre Franklin", arial, helvetica, sans-serif;
  font-weight: 400;
  line-height: 14px;
  height: auto;
  opacity: 1;
  letter-spacing: 0em;
  font-size: 12px;
  text-align: left;
  color: rgb(0, 0, 0);
  text-transform: none;
  padding-bottom: 0;
  padding-top: 0;
  mix-blend-mode: normal;
  font-style: normal;
  position: static;
}

#g-zuid-amerika-Artboard_1 .g-pstyle0 {
  height: 14px;
  opacity: 0.3;
}

#g-zuid-amerika-Artboard_1 .g-pstyle1 {
  line-height: 12px;
  height: 18px;
  font-size: 12px;
}

#g-zuid-amerika-Artboard_1 .g-pstyle2 {
  line-height: 17px;
  height: 17px;
  opacity: 0.5;
  font-size: 11px;
  color: rgb(0, 89, 194);
}

#g-zuid-amerika-Artboard_1 .g-pstyle3 {
  line-height: 17px;
  height: 17px;
  opacity: 0.5;
  font-size: 11px;
  text-align: center;
  color: rgb(0, 89, 194);
}

#g-zuid-amerika-Artboard_1 .g-pstyle4 {
  line-height: 17px;
  height: 17px;
  opacity: 0.8;
  font-size: 12px;
  color: rgb(90, 72, 72);
}

#g-zuid-amerika-Artboard_1 .g-pstyle5 {
  line-height: 29px;
  height: 29px;
  font-size: 20px;
  opacity: 0.6;
}

/* ---------------------------------- */
/* -------- PIJLTJES SCREEN1-------- */
/* -------------------------------- */

.arrows {
  width: 60px;
  height: 72px;
  position: absolute;
  left: 50%;
  margin-left: -30px;
  bottom: -300px;
}

.arrows path {
  stroke: white;
  fill: transparent;
  stroke-width: 1px;
  animation: arrow 2s infinite;
  -webkit-animation: arrow 2s infinite;
}

@keyframes arrow {
  0% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  80% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes arrow {
  0% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  80% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.arrows path.a1 {
  animation-delay: -1s;
  -webkit-animation-delay: -1s;
}

.arrows path.a2 {
  animation-delay: -0.5s;
  -webkit-animation-delay: -0.5s;
}

.arrows path.a3 {
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
}
