nav {
    padding: 0;
    margin: 0;
    background-color: #fff;
    padding: 0 35px;
    width: 100%;
    height: 90px;
    position: fixed;
    z-index: 3;
    top: 0;

    -webkit-box-shadow: 0px 1px 13px 2px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 1px 13px 2px rgba(0,0,0,0.2);
    box-shadow: 0px 1px 13px 2px rgba(0,0,0,0.2);
}

nav img {
    display: block;
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    transition: left 0.3s, width 0.3s, height 0.3s;
}

nav img:hover {
    width: 60px;
    height: 67px;
    transition: width 0.3s, height 0.3s;
}

nav ul {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s;
    margin: 0;
    padding: 0;
    list-style-type: none;
    position: relative;
    top: 50%;
    left: 70px;
    transform: translateY(-50%);
}

nav ul li {
    display: inline-block;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    margin-right: 15px;
}

nav ul li a {
    text-decoration: none;
    color: #383838;
}

nav ul li a.active {
    color: #000;
}

nav ul li a:hover {
    text-decoration: none;
    color: #000;
}

nav i.fas.fa-bars {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0s 0.25s;
    position: absolute;
    top: 50%;
    right: 27px;
    transform: translateY(-50%);
    font-size: 28px;
    cursor: pointer;
}

div.navigation {
    height: 90px;
}