﻿#header-wrapper {
    top: 0;
    position: fixed;
    z-index: 10;
    width: 100%;
}

.topNav {
    width: 100%;
    height: 60px;
    background-color: #222222;
    padding-top: 16px;
    transition: all ease .25s;
}

.scrolled .topNav {
    padding-top: 6px;
    height: 40px;
}

.underNav {
    height: 100px;
    background-color: #333333;
    overflow-y: hidden;
    transition: all ease .25s;
}

.scrolled .underNav {
    height: 62px;
}


.yellowDiv {
    background-color: #FFED00;
    height: 100px;
}

    .yellowDiv img {
        /*    float: right;*/
        height: 90px;
        margin-top: 5px;
        margin-right: 15px;
        position: relative;
        z-index: 5;
        transition: height ease .35s;
    }



.scrolled .yellowDiv img {
    height: 68px;
}

.desktopNav ul li {
    display: inline-block;
}

    .desktopNav ul li a {
        color: white;
        font-family: 'Raleway', sans-serif;
        text-transform: uppercase;
        padding: 38px 20px;
        display: inline-block;
        transition: all ease .35s;
    }

.scrolled .desktopNav ul li a {
    padding: 19px 20px;
}

.desktopNav ul {
    float: right;
    display: inline-block;
    margin-bottom: 0;
}

    .desktopNav ul li.active a, .desktopNav ul li a:hover {
        background-color: #FFED00;
        color: #222222;
        text-decoration: none;
    }


.mobileNav li {
    list-style: none;
}