#nav__nav--container {
    height: 70px;
    width: 100%;
    background-color: #ffffff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: rgba(0, 0, 0, 0.6);
    padding: 0 2rem;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
}

#nav__logo--container {
    height: 100%;
}

#nav__logo--container img {
    height: 100%;
    padding: 8px;
}

#nav__logo--link {
    height: 100%;
    width: 100%;
}

#nav__options--list {
    height: 100%;
    display: flex;
    flex-direction: row;
}

.nav__option--simple {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 400;
}

.nav__option--simple:hover {
    color: rgba(0, 0, 0, 0.6);
    opacity: .7;
    transition: all 0.4s ease-out;
}

@media screen and (min-width: 2000px) {
        #nav__nav--container {
            padding: 0 38rem;
        }
}