nav {
    height: 80px;
    position: fixed;
    width: 100%;
    z-index: 999;
    background-color: white;
    box-shadow: 5px 2px 18px #888888;
}
.navbar-spacer {
    height: 80px;
}

nav .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    height: 80%;
    width: auto;
}

nav .logo img {
    height: 100%;
}

nav .links {
    display: flex;
}

nav .links .link,
nav .links .indicator {
    padding: 0 1.5rem;
}

nav .link a {
    text-decoration: none;
    color: black;
    text-transform: uppercase;
    font-weight: 500;
}

nav .link .indicator {
    height: 3px;
    background-color: #FEA82F;
    opacity: 0.4;
    transition: 0.5s;
}

nav .link .indicator.active {
    opacity: 1;
}

nav .link:hover .indicator {
    opacity: 1;
    transition: 0.4s;
}
nav.navbar {
    display: none;
}
.nav-link {
    color: orange !important;
    font-weight: 500;
}

@media(max-width: 768px) {
    nav {
        display: none;
        height: auto !important;
    }
    nav.navbar {
        background-color: white !important;
        display: block;
    }
    nav .navbar-brand {
        width: 70px;
    }
    nav .navbar-brand img {
        width: 100%;
    }
    .navbar-toggler {
        border-color: black;
        line-height: inherit !important;
    }
    .navbar-spacer {
        display: none;
    }
}