/* ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
/* general */
/* ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
/* ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
body {
  animation: fadeInAnimation ease 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
   }
}

.bodyfixed {
  position: fixed;
}

.hidden {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 300ms 150ms ease-out;
  -moz-transition: opacity 300ms 150ms ease-out;
  -o-transition: opacity 300ms 150ms ease-out;
  transition: opacity 300ms 150ms ease-out;
}

.hide_desktop {
  display: none;
}

.title__mobile {
  display: none;
}

.main__section__splash {
  display: flex;
  justify-content: center;
  padding: 60px;
  position: relative;
}

.logo__splash {
  position: absolute;
  left: 60px;
}

.name__splash {
  margin-top: -6px; 
}

.footer__splash {
  width: 100%;
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 70px;
}