body, html {
    background: #ffffff;
    margin: 0;
    padding: 0;
    font-size: 62.5%;
    font-family: 'Roboto', arial, sans-serif;
}

@media screen and (max-width: 600px){
    html{
        font-size: 43%;
    }
}

@media screen and (min-width: 600px){
    html{
        font-size: 50%;
    }
}

@media screen and (min-width: 900px){
    html{
        font-size: 57%;
    }
}

@media screen and (min-width: 1200px){
    html{
        font-size: 65%;
    }
}

@media screen and (min-width: 2000px){
    html{
        font-size: 80%;
    }
}

#wrapper {
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: visible;

    
}


header{
    background: #e3e3e3;
    width: 100%;
    position: fixed;
    top: 0;
    transition: 200ms all;
    height: 70px;
    height: 7rem;
    
    
    
}

@media screen and (max-width: 1100px){
    header{
        text-align: right;
    }
}

@media screen and (min-width: 1100px){
    header{
        text-align: center;
    }
}

header nav#normal {
    color: #e3e3e3;
    display: inline-block;
}



header nav#normal img {
    margin: 0;
    padding: 0;
    height: 6rem;
    position: absolute;
    left: 1.5rem;
    top: 0.5rem;

    
}

header nav#normal ul {
    margin: 0;
    padding: 0;
    transition: all 300ms;
    display: inline-block;
    
}

header nav#normal ul li{
    margin: 0;
    padding: 0;
    list-style: none;
    float: left;
    position: relative;
    transition: all 300ms;
    font-weight: 200;
}

header nav#normal ul li a{
    display: inline-block;
    margin: 0 1px 0 0;
    padding: 2.17rem;
    min-width: 12rem;
    text-align: center;
    font-size: 2rem;
    color: #333333;
    background: #e3e3e3;

    text-decoration: none;
    position: relative;
    transition: all 300ms;
}

header nav#normal ul li:hover > a{
    color: #e3e3e3;
    background: #333333;

}

@media screen and (max-width: 950px){
    
    header nav#normal {
        display: none;
    }
}



header nav#mobile {
    color: #e3e3e3;
    display: none;
}

@media screen and (max-width: 950px){
    
    header nav#mobile {
        display: block;
    }
}

header nav #menu {
    padding: 2.17rem 5% 2.17rem 5%;
    float: left;
    width: 90%;
    text-align: center;
    font-size: 2rem;
    color: #333333;
    font-weight: 400;
    transition: all 300ms;
    
}

header nav#mobile ul{
    width: 100%;
    margin: 0;
    padding: 0;
    max-height: 0;
    transition: all 300ms;
    overflow: hidden;
    float: left;
}

header nav#mobile:hover > ul{
    max-height: 800px;
}

header nav#mobile ul li{
    margin: 0;
    padding: 0;
    float: left;
    width: 100%;
    list-style: none;
    position: relative;
    transition: all 300ms;
}

header nav#mobile ul li a{
    display: inline-block;
    margin: 0 1px 0 0;
    padding: 2.17rem 5% 2.17rem 5%;
    min-width: 12rem;
    width: 90%;
    text-align: center;
    font-size: 2rem;
    color: #333333;
    background: #e3e3e3;
    font-weight: 250;
    text-decoration: none;
    
    position: relative;
    transition: all 300ms;
}

header nav#mobile ul li:hover > a{
    color: #e3e3e3;
    background: #333333;
}





section {
    background-color: #ffffff;
    padding-bottom: 4rem;
    margin: 0;
    width: 100%;
    height: auto;
    text-align: left;

}

section h1{
    text-align: center;
    width: 100%;
    font-weight: 350;
    font-size: 4rem;
    padding: 9rem 0 6rem 0;
    background-color: #333333;
    color: #e3e3e3;
}

section h2{
    padding: 2rem 8% 2rem 8%;
    font-size: 3.5rem;
    color: #FAA21F;
    font-weight: 250;
}

section p{
    font-size: 2.5rem;
    padding: 0.5rem 10% 0.5rem 10%;
    font-weight: 200;
    color: #333333;
}

section h3{
    font-size: 3rem;
    color: #333333;
    font-weight: 225;
    padding: 2rem 9% 2rem 9%;
}

section ul{
    padding-left: 11%;
    list-style-type: none;
}

section li{
    font-size: 2rem;
    color: #474747;
    font-weight: 200;
    padding: 0.5rem 0 0.5rem 0;
    display: block;
}









footer {
    bottom: 0;
    width: 100%;
    background: #333333;
    transition: 200ms all;
    text-align: center;
    
    
    

}

@media screen and (max-width: 950px){
    
    footer{
        height: 32rem;

    }
    footer ul li a{
        
        display: block;
    }

    footer ul{
        width: 100%
    }
}

@media screen and (min-width: 950px){
    
    footer{
        height: 15rem;
    }

    footer ul{
        display: inline-block;
    }

    footer ul li{
        float: left;
    }

    footer ul li a{
        display: inline-block;
    }
    
}

footer ul{
    margin: 0;
    padding: 0;
    transition: all 300ms;
    position: relative;
}

footer ul li{
    
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    transition: all 300ms;
    font-weight: 200;
    text-align: center;
}

footer ul li a{
    margin: 0 1px 0 0;
    padding: 2.17rem;
    min-width: 12rem;
   
    font-size: 2rem;
    color: #FAA21F;
    background: #333333;
    text-decoration: none;
    text-align: center;
    
    position: relative;
    transition: all 300ms;
}

footer ul li:hover > a{
    color: #333333;
    background: #FAA21F;
}


