@charset "UTF-8";
/* CSS Document */
/* Navbar and Navigation Styles */

.nav {
    position: sticky;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    top: 0;
    background: #fff;
}

.nav__title {
    margin: 0px 30px;
}

.nav__item {
    display: inline-block;
    margin: 0px 30px;
}

.nav__item a {
    color: #000;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.15em;
    padding: 15px 20px;
    position: relative;
}

.nav__item a:after {
    background: transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    background: #000;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}

.nav__item a:hover:after {
    width: 100%;
    left: 0;
}

.navbar {
    background-color: #CA5A00;
    width: 100%;
}

.navbar-toggle {
    margin-right: 0px !important;
}

