 

.banner {
    background: #191919;
    overflow: hidden;
}

.banner-full-screen {
    background: #191919;
    overflow: hidden;
}
.banner-full-screen #motion{
    max-width: 90%;
}

#motion {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;

    font-family: 'Roboto', sans-serif;
    background: url(./elements/loader-ring-white.svg ) center center no-repeat;
}

#motion .btn-yellow {
    font-weight: bold;
}

.empty {
    width: 100%;
    display: block;
}

#motion .scene {        
    background: #191919;
}
#motion .scene a{        
    position:absolute;
    left:10%;
    margin-top: 14%;
    max-width: 140px; 
}
#motion .scene a.mt14{        
    margin-top: 14%; 
}

#motion .scene,
#motion .element {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
    animation-direction: initial;
    animation-fill-mode: forwards;
    animation-play-state: initial;
    opacity: 0;
}

#motion .scene {
    animation-duration: 0.9s;
    z-index: 1;
}

#motion .element {
    animation-duration: 0.5s;
}

#motion .scene.focused {
    opacity: 1;
    z-index: 2;
}

/* --- motion scenes --- */

.left-in {
    animation-name: leftIn;
}

.right-in {
    animation-name: rightIn;
}

.top-in {
    animation-name: topIn;
}

.bottom-in {
    animation-name: bottomIn;
}

.fade-in {
    animation-name: fadeIn;
}

.fade-slow-in {
    animation-name: fadeIn;
    animation-duration: 1.5s;
}

.zoom-in {
    animation-name: zoomIn;
}

@keyframes leftIn {
    from {
        transform: translateX(-20%);
        filter: blur(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0%);
        opacity: 1;
    }
}

@keyframes rightIn {
    from {
        transform: translateX(20%);
        filter: blur(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0%);
        opacity: 1;
    }
}

@keyframes topIn {
    from {
        transform: translateY(-200px);
        filter: blur(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0%);
        opacity: 1;
    }
}

@keyframes bottomIn {
    from {
        transform: translateY(200px);
        filter: blur(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0%);
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(1.5);
        filter: blur(100px);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

 


/* --- nav --- */

#motion-nav {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 15%;
    display: flex;
    justify-content: center;
    color: white;
    z-index: 3;
    opacity: 1;
    transition: ease all 0.5s;
}

#motion-nav.hide {
    opacity: 0;
}

#motion-nav a {
    position: relative;
    cursor: pointer;
    transition: ease all 0.5s;
}

#motion-nav a span.circle {
    background: #fff;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: block;
    border: 2px solid #000;
    transform: scale(0.8);
}

#motion-nav a span.label {
    position: absolute;
    top: 20px;
    left: -90px;
    width: 200px;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
}

#motion-nav span.delimiter {
    width: 17%;
    height: 1px;
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.5);
}

#motion-nav a.active span.label {
    color: #ffd119;
}

#motion-nav a.active span.circle {
    transform: scale(1);
    background: #ffd119;

}