/*
*
*   General components
*
*/

.nav-wrapper {
    position: fixed;
    width: 100vw;
    border-bottom: rgba(0, 0, 0, 0.5) 1px solid;
    background-color: transparent;
    transition: all .25s ease;
}

.nav-wrapper.nav-filled {
    border: none;
    background-color: rgba(0, 0, 0, 0.8);
}

.navbar {
    display: flex;
    width: 100%;
    max-width: 1140px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin: auto;
}

.navbar .nav-brand {
    width: 157px;
}

.navbar .nav-links {
    display: flex;
    align-items: flex-end;
    width: 100%;
}

.navbar .nav-links ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    width: 100%;
}

.navbar .nav-links ul li {
    width: 15%;
    display: block;
    text-align: right;
}

.navbar .nav-links ul li a {
    font-size: 1.25rem;
    color: #fff;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    display: inline-block;
    position: relative;
    margin-bottom: 1.25rem;
}

.navbar .nav-links ul li a:after {
    content: '';
    height: 5px;
    width: 100%;
    bottom: -20px;
    display: block;
    position: absolute;
    background-color: #e94c15;
    opacity: 0;
    transform: scaleX(0.25);
    transition-timing-function: cubic-bezier(.58, .3, .005, 1);
    transition: all .2s;
}

.navbar .nav-links ul li a:hover:after {
    opacity: 1;
    transform: scaleX(1);
}


.navbar .nav-links ul li a:visited {
    color: #fff;
    text-decoration: none;
}

.btn {
    background-color: #e94c15;
    border-radius: 4px;
    padding: 14px 34px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    transform: none;
    transition: all .25s ease;
}

.btn:hover {
    cursor: pointer;
    transform: scale(1.05);
    background-color: #e72f24;
}

.btn:active {
    transform: scale(0.95);
}

/*
*
*   Page-specific components/sections
*
*/

.hero {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    width: 100%;
    height: 100vh;
    background-image: linear-gradient( rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1) ), url('../img/hero-index.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
    flex-wrap: wrap;
}

.hero h1 {
    font-size: 8rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0px 0px 15px rgb(0 0 0 / 40%);
    flex-basis: 100%;
    padding-bottom: 20px;
}

.hero h2 {
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: .5rem;
    color: #fff;
    text-shadow: 0px 0px 15px rgb(0 0 0 / 40%);
    flex-basis: 100%;
}

.hero .btn {
    margin-top: 80px;
}