* {
    box-sizing: border-box;
}
body {
    margin: 0px;
    padding: 0px;
    background: #000036 url(img/gw_bg.gif) fixed;
    background-position: center top;
    font-size: 1em;
    line-height: 1.65;
    font-weight: 300;
    font-style: normal;
    color: #d7d7ef;
    text-align: center;
    font-family: 'Oxygen', sans-serif;
    overflow-x: hidden;
}
#wrapper {
    width: 100vw;
    height: 100vh;
    box-shadow: 0px 0px 20vw #000 inset;
    padding: 0px 10vw 0px 10vw;
    position: fixed;
    overflow-y: scroll;
    overflow-x: hidden;
}
main{
    min-height: 85vh;
    display: block;
    overflow: hidden;
}
#logo{
    width: 33%;  
    display: block;
    margin: 5% auto 3% auto;
}
.intro {
    width: 50%;
    display: inline-block;
}
h1 {
    font-size: 1.8em;
    text-transform: uppercase;
    font-weight: 300;
    line-height: 1.2;
    position: relative;
    color:#fff;
}
h1:before {
    content: "";
    display: block;
    height: 0.2vw;
    min-height: 3px;
    background: #b6b6ff;
    width: 33%;
    position: absolute;
    left: 50%;
    bottom: -1vw;
    margin-left: -16.5%;
}
footer {
    background: rgba(0, 0, 0, 0.4);
    overflow: hidden;
    color: #6363ca;
    width: 100vw;
    font-size: 0.8em;
    line-height: 1.5;
    padding: 1vw;
    margin-left: -10vw;
    min-height: 15vh;
}
#innerfooter {
    display: inline-block;
    margin: 0 auto;
    width: 100%;
}
small {
    font-size: 1em;
    line-height: 1.5;
    display: inline-block;
    text-align: left;
    margin-right: 2%;
}
.brand {
    width: 40%;
    float: left;
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    margin: 2%;
    text-align: left;
    padding: 2%;
}
.brand:nth-child(even) {
    margin-left: 8%;
}
.brand b {
    text-transform: uppercase;
}
#noblelogo, #nitrologo {
    width: 50%;
    display: block;
    position: relative;
    top: 0px;
    left: 0px;
}
#nitrologo {
    width: 19%;
}
.button {
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    background: #b6b6ff;
    border: none 0;
    color:  #000036;
    font-size: 0.8em;
    padding: 0.7% 2%;
    text-decoration: none;
    font-weight: 900;
}
.button:hover {
    background: #000;
    color: #fff;
}
/*MQ_________________________________________________________________*/
@media screen and (max-width: 1024px) {
    #noblelogo {
        width: 80%;
    }
    #nitrologo {
        width: 30%;
    }
}

@media screen and (max-width: 768px) {
    .brand {
        width: 90%;
        margin: 2% auto;
        padding: 5%;
        float: none;
    }
    .brand:nth-child(even) {
        margin-left: auto;
    }
    #noblelogo {
        width: 50%;
    }
    #nitrologo {
        width: 25%;
    }
    #logo {
        width: 50%;
    }
    .intro {
        width: 90%;
        display: inline-block;
    }
    small {
        text-align: center;
        display: block;
        margin: 2% 0px;
    }
    body {
        background-size: 100% auto;
    }
}

@media screen and (max-width: 320px) {
    #noblelogo {
        width: 90%;
    }
    #nitrologo {
        width: 55%;
    }
    #wrapper {

        padding: 0px 4vw 0px 4vw;

    }
}


