/*Load*/

section .container {
  margin-top: 0px;
}

section .text-container {
  display: absolute;
}

section .text-container {
  flex-direction: row;
}

section .text-container .text-box {
  margin-top: 0px;
  padding: 20px;
}

.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}

/**************************************** Mediascreen ****************************************/

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

/**************************************** Mediascreen ****************************************/

/*Load*/

section .container {
  margin: 0px;
}

section .text-container {
  display: absolute;
}

section .text-container {
  flex-direction: column;
}

section .text-container .text-box {
  margin-top: 0px;
  padding: 20px;
}

.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}

}