html, body
{
    width: auto;
}

body
{
    margin: 0px;
    padding: 0px;
    width: 100%;
    background-color: #eee;
}

a:link, a:visited, .side-button
{
    text-decoration: none;
    
    -webkit-transition: .2s;
    transition: .2s;
}

input:focus, textarea:focus, button:focus, input, textarea, button
{
    outline: none;
    -webkit-appearance: none;
}

.sheet-wrapper {
    padding: 30px;
}

.sheet {
    width: 100%;
    background-color: #fafafa;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
}



.header-wrapper {
    padding: 50px 3%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    height: 110px;
    
    background-color: #0000ff;
    border-bottom: 2px solid white;
}

.logo {
    height: 100px;
    width: 500px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    float: left;
    
    background-image: url(../asset/images/logo.svg);
}

.nav-wrapper {
    float: right;
    
    font-size: 15px;
    line-height: 15px;
    font-family: Helvetica;
    letter-spacing: 1px;
    text-transform: uppercase;
}

ul{
    margin: 0;
    padding: 0;
    list-style: none;
    background: rgba(255,255,255,0.2);
}

ul li{
    display: inline-block;
    position: relative;
    text-align: left;
}

ul li a{
    display: block;
    padding: 18px 25px;
    color: #fff;
    text-decoration: none;
}

ul li a:hover{
    opacity: 0.6;
}

ul li ul.dropdown{
    min-width: 125px;
    background: #fafafa;
    display: none;
    position: absolute;
    z-index: 999;
    left: 0;
}

.dropdown a{
    font-size: 12px;
    color: #000;
    line-height: 16px;
    padding: 11px 18px;
}

ul li:hover ul.dropdown{
    display: block;
}

ul li ul.dropdown li{
    display: block;
}



.footer-wrapper {
    padding: 15px;
    background-color: #222;
}

.copyright {
    font-size: 13px;
    color: white;
    font-family: Helvetica;
    text-align: center;
}

.title {
    margin-bottom: 20px;
    
    font-size: 42px;
    font-family: Helvetica;
}

.content {
    margin-left: auto;
    margin-right: auto;
    
    font-size: 18px;
    font-family: Verdana;
    line-height: 25px;
    letter-spacing: 1px;
}

.contact-wrapper {
    background-color: #30363A;
    text-align: center;
    padding: 70px 0px;
    color: #fff;
}

.content a {
    color: #fff;
}

.content .lbl {
    text-transform: uppercase;
    font-size: 14px;
    color: #999;
}

.compo-wrapper {
    text-align: center;
    vertical-align: top;
    width: 100%;
}

.compo {
    display: inline-block;
    text-align: left;
    width: 200px;
    padding: 10px;
    border: 1px solid white;
    margin: 20px;
}

.da-link {
    width: auto;
    border: none;
    background-color: white;
    color: #30363A;
    padding: 10px 30px;
    text-transform: uppercase;
}

.da-link:hover {
    text-decoration: underline;
}