/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

@media (max-width: 767px) {
    .header__menu-container--mobile {
        display: none !important;
    }
  
}


.container {
  height: 20x; /* just for demonstration purpose to create scrolling */
}

.fade-in {
  opacity: 0;
  transform: translateY(20x);
  transition: opacity 2s, transform 1s;
}

.fade-in.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}


.container {
  display: flex;
  justify-content: center;
  align-items: center; {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
}
.slidecontainer {
  position: relative;
  width: 100%;
  height: 150vh;
  overflow: hidden;
}

.slide-right-text-block {
  transform: translateY(-50%);
  animation: slide-in 1s forwards;
}
  
 .slide-right-text-block-visible {
  transform: translateX(0%);
}

.slide-left-text-block {
  transform: translateY(-50%);
  animation: slide-in 1s forwards;
}
  
 .slide-left-text-block-visible {
  transform: translateX(0%);
}


@keyframes slide-in {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

  height: 100vh;
}


}


.scrolltextcontainer {
  height: 20px; /* just for demonstration purpose to create scrolling */
}