* {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

.fixed-nav {
    position: fixed;
    height: 100%;
    width: 100px;
    background-color: #b0d235;
    -webkit-box-shadow: 10px 0 12px -4px #444;
    box-shadow: 7px 0 12px -4px #444;
}

.logo img {
    display: block;
    margin: 30px auto;
}

.toggle-nav {
    bottom: 30px;
    position: fixed;
    left: 32.5px;
}

    .toggle-nav span {
        height: 5px;
        width: 35px;
        margin-bottom: 5px;
        border-radius: 5px;
        background-color: #fff;
        display: block;
    }

.banner {
    padding-top: 3em;
    padding-bottom: 3em;
    background-color: #ff9907;
    background-image: url(../images/bg.png);
    background-position: center;
    background-size: cover;
    min-height: 100%;
    -webkit-animation: slide 20s linear infinite;
}

@-webkit-keyframes slide {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: -20px 0;
    }
    100%{
            background-position: 0 0;
    }
}



.scene,
.layer {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
}

.scene {
    margin-top: 0em;
    position: relative;
}

.layer {
    position: absolute;
}

    .layer div {
        -webkit-transform: translate3d(0,0,0);
        -moz-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
        -webkit-transform-style: preserve-3d;
        -moz-transform-style: preserve-3d;
        transform-style: preserve-3d;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .layer img {
        -webkit-animation: wave 7.11111s 0.1s infinite linear;
        -moz-animation: wave 7.11111s 0.1s infinite linear;
        animation: wave 7.11111s 0.1s infinite linear;
    }

.banner h2 {
    text-align: center;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    color: #fff;
    font-size: 48px;
    font-weight: 300;
}


@keyframes wave {
    0% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    50% {
        -webkit-transform: translate3d(0,3%,0);
        -moz-transform: translate3d(0,3%,0);
        transform: translate3d(0,3%,0);
    }

    100% {
        -webkit-transform: translate3d(0,0,0);
        -moz-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

@media(min-width:1650px) {
    .banner h2 {
        font-size: 60px;
    }
}

@media(min-width:992px) {
    .banner {
        padding-left: 100px;
    }

    .banner {
        height: 100%;
    }
}



@media(max-width:768px) {
    .banner h2 {
        font-size: 30px;
    }
}
