:root {
    --quorange: #FF3E01;
    --qumagenta: #E41B52;
    --qured: #D90A35;
    --qublack: #454545;
}

*{
    font-family: "Roboto";
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
}

a, a:hover, a:visited, a:active {
    color: inherit;
    text-decoration: none;
   }

h1 {
    color: var(--quorange);
}

h2 {
    color: var(--quorange);
}

.navcontainer {
    width: 100%;
    background-color: var(--quorange);
    position: fixed;
}
.navbar {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    font-size: 1rem;
    justify-content: space-between;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.navleft h2{
    color: #ffffff;
    font-size: 2rem;
    padding-left: 2rem;
    padding-top: 1.2rem;
    font-weight: 500;
}

.navright{
    display: inline-flex;
    flex-direction: row;
    font-size: .9rem;
    margin-top: 1.8rem;
    margin-right: 1.5rem;
    color: #ffffff;
}

.navright h3 {
    color: #ffffff;
    margin-left: 10px;
    margin-right: 10px;
    font-weight: 400;
    font-size: 1rem;
}

.navright li {
    list-style-type: none;
    display: inline-block;
    flex-direction: row;  
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 30px;
    height: 3.6px;
    margin-bottom: 6px;
    background-color: #ffffff;
}

@media screen and (max-width: 650px){
    .hamburger {
        display: block;
        margin-top: 1.8rem;
        margin-right: 2rem;
    }
    .navright {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        flex-wrap: wrap;
        background-color: var(--quorange);
        width: 100%;
        text-align: start;
        margin-top: 22px;
        margin-left: 0px;
        margin-right: 0px;
    }

    .navright.active {
        left: 0%;
    }

    .navright h3{
        font-size: 18px;
    }

    .navitem {
        padding-left: 20px;
        padding-top: 10px;
        padding-bottom: 5px;
    }
    
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}