* {
    margin: 0;
    padding: 0;
    display: block;
    font-family: 'font';
    font-weight: 200;
    position: relative;
     font-family: 'Be Vietnam Pro', sans-serif;
}
body {
    background: #090909;
    max-width: 100vw;
    overflow-x: hidden;
}
b{
    font-weight: 600;
}
a {
    color: #fff
}
p{
    width: 100%;
    display: block;
    
}
header {
    z-index: 999;
}
#logo {
    position: fixed;
    height: 9vw;
    min-height: 80px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: all 0.6s linear;
    -o-transition: all 0.6s linear;
    transition: all 0.6s linear;
}
#logo .icon img {
        height: 100%;
}

.icon, .font {
    width: 100%;
    height: 100%;
    }
.square {
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
        -webkit-transform: scale(0);
            -ms-transform: scale(0);
                transform: scale(0);
        -webkit-animation: in 1s ease-in-out forwards;
                animation: in 1s ease-in-out forwards;
}
.sun {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
    -webkit-animation: in 1s ease-in-out forwards;
            animation: in 1s ease-in-out forwards;
    -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
}
#logo .font div {
    margin-left: 8%;
    height: 33%;
    width: 100%;
    margin-bottom: 2%;
    overflow: hidden;
}

#logo .font div:last-child{
    height: 20%;
    margin-bottom: 0;
}
.font {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: auto;
  max-width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.font img {
    height: 100%;
     -webkit-animation: show 0.8s ease-in-out forwards;
             animation: show 0.8s ease-in-out forwards;
     -webkit-animation-delay: 1s;
             animation-delay: 1s;
      opacity: 0;
    bottom: -100;
}
.rocket {
    position: absolute;
    top: 5%;
    left: 1%;
    height: 100%;
    width: 100%;
    z-index: 1;
    overflow: hidden;
   
   -webkit-animation: shake-circle-01 .1s infinite alternate;
   
           animation: shake-circle-01 .1s infinite alternate;
    -webkit-transform: translate(-0px, -0px);
        -ms-transform: translate(-0px, -0px);
            transform: translate(-0px, -0px);
}
.rocket img {
top: 100%;left: -100%;
 -webkit-animation: rocket-in .6s ease-in forwards;
         animation: rocket-in .6s ease-in forwards;   
 -webkit-animation-delay: 1.8s;   
         animation-delay: 1.8s; 
}

@-webkit-keyframes shake-circle-01 {
  0% { -webkit-transform: translate(-1%, -3%); transform: translate(-1%, -3%); }
  33% { -webkit-transform: translate(-2%, -4%); transform: translate(-2%, -4%); }
  66% { -webkit-transform: translate(-2%, -5%); transform: translate(-2%, -5%); }
  100% { -webkit-transform: translate(-1%, -5%); transform: translate(-1%, -5%); }
}

@keyframes shake-circle-01 {
  0% { -webkit-transform: translate(-1%, -3%); transform: translate(-1%, -3%); }
  33% { -webkit-transform: translate(-2%, -4%); transform: translate(-2%, -4%); }
  66% { -webkit-transform: translate(-2%, -5%); transform: translate(-2%, -5%); }
  100% { -webkit-transform: translate(-1%, -5%); transform: translate(-1%, -5%); }
}

@-webkit-keyframes show {
    0% {
        opacity: 0;
        bottom: -100;
    }
    50% {
        opacity: 0;
    }
   100% {
        opacity: 1;
        bottom: 0;
    }
    
}

@keyframes show {
    0% {
        opacity: 0;
        bottom: -100;
    }
    50% {
        opacity: 0;
    }
   100% {
        opacity: 1;
        bottom: 0;
    }
    
}
@-webkit-keyframes in {
    0% {
        -webkit-transform: scale(0);
                transform: scale(0);
    }
    80% {
        -webkit-transform: scale(1.05);
                transform: scale(1.05);
    }
    100% {
        -webkit-transform: scale(1);
                transform: scale(1);
    }
}
@keyframes in {
    0% {
        -webkit-transform: scale(0);
                transform: scale(0);
    }
    80% {
        -webkit-transform: scale(1.05);
                transform: scale(1.05);
    }
    100% {
        -webkit-transform: scale(1);
                transform: scale(1);
    }
}
@-webkit-keyframes rocket-in {
    0% {
        -webkit-filter: blur(2px);
                filter: blur(2px);
        top: 100%;
        left: -100%;
    }
    100% {
        -webkit-filter: blur(0);
                filter: blur(0);
       top: 0;
        left: 0;
    }
}
@keyframes rocket-in {
    0% {
        -webkit-filter: blur(2px);
                filter: blur(2px);
        top: 100%;
        left: -100%;
    }
    100% {
        -webkit-filter: blur(0);
                filter: blur(0);
       top: 0;
        left: 0;
    }
}


/*MENU*/
.menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: fixed;
    bottom: 12%;
    left: 0;
    right: 0;
    color: #fff;
    text-align: center;
    font-size: 1vw;
}
.menu span {
    margin: 0 1vw;
    opacity: 0;
    bottom: -100;
    cursor: pointer;
    border-bottom: 0.1em solid transparent;
    -webkit-animation: show .6s ease-in forwards;
            animation: show .6s ease-in forwards;
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
}

.menu span.active {
    border-bottom: 0.1em solid #fff;
}

#logo.logo-content {
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
    top: 20px;
    left: 20px;
    height: 4vw;
}

/*CONTACT*/

.scroller {
    color: #fff;
    z-index: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow: scroll;
    height: 100vh;
    position: fixed;
    top: 0;
    top: 0;
    left: 0;
    right: 0;
}
.scroller:before {
    content: '';
    position: fixed;
    background-image: -webkit-gradient(linear, left top, left bottom, from(black), to(transparent));
    background-image: -o-linear-gradient(top, black, transparent);
    background-image: linear-gradient(180deg, black, transparent);
    width: 100%;
    height: 140px;
    top: 0;
    z-index: 1;
}
.scroller:after {
    content: '';
    position: fixed;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(80%, black), to(transparent));
    background-image: -o-linear-gradient(bottom, black 80%, transparent);
    background-image: linear-gradient(0deg, black 80%, transparent);
    width: 100%;
    height: 24%;
    bottom: 0;
    z-index: 1;
}
.scroller-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        width: 100vw;
       height: -webkit-fit-content;
       height: -moz-fit-content;
       height: fit-content;
       padding: 25vh 0;
    
    -webkit-box-pack: start;
    
        -ms-flex-pack: start;
    
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-line-pack: start;
        align-content: flex-start;

    max-width: 80vw;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;

    overflow: hidden;

}

.kontakt-cards .card {
    padding: 1% 1%;
    width: calc(25% - 2%);
    height: auto;
}
.card-content {
    overflow: hidden;
    padding: 1.2% 0;
    width: auto;
}
.card-content * {
bottom: -100;
-webkit-transition: bottom 1s ease-in;
-o-transition: bottom 1s ease-in;
transition: bottom 1s ease-in;
}
.kontakt-cards.show .card-content * {
    bottom: 0;
}

.card h2 {
    font-size: 1.4vw;
    font-weight: bold;
}
.card div span {
    font-size: 1.1vw;
}

.card div:nth-child(2) span {
    font-style: italic;
}

.card h2 {
    background: #f39ea4;
    padding: 3%;
    white-space: nowrap;
    color: #faec31;
}

.scroller {
    opacity: 0;
    z-index: 0;
}
.visible {
    opacity: 1;
    z-index: 1;
}

@media(max-width: 1400px) {
    .scroller-wrapper {
            max-width: 80vw;
    }
    .menu span {
        font-size: 1.5vw;
    }
}

@media(max-width: 1080px) {
    #logo {
        min-height: 62px;
    }
    .kontakt-cards .card {
            width: calc(33% - 2%);
    }
    .card h2 {
    font-size: 1.8vw;
    }
    .card div span {
    font-size: 1.5vw;
    }
    .menu span {
    font-size: 1.5vw;
    }
    .menu {
     bottom: 6%;;
    }
    .kontakt-cards {
        padding: 20vh 0;
    }
    .scroller:after { 
        height: 16%;
    }
}

@media(max-width: 780px) {

    .kontakt-cards .card {
            width: calc(50% - 2%);
    }
    .card h2 {
    font-size: 2.5vw;
    }
    .card div span {
        font-size: 2.1vw;
    }
    .menu span {
        font-size: 2vw;
    }
    
    
    
}

@media(max-width: 600px) { 
    #logo.logo-content {
        top: 3.5vw;
        left: 3.5vw;
    }
    .scroller-wrapper {
        max-width: 95vw;
        padding: 16vh 0;
        margin-bottom: 30vw;
    }
    .card h2 {
        font-size: 4vw;
        letter-spacing: -0.5px;
    }
    .kontakt-cards .card {
        padding: 1%;
        width: calc(50% - 2%);
        margin-bottom: 2%;
    }
    .card div span {
        font-size: 3.5vw;
    }
    .menu span {
        font-size: 4vw;
    }
    #logo {
        min-height: 120px;
    }
    #logo.logo-content {
    min-height: 84px;
    }
    
    
    
}