
html,
body
{
    width: 100%;
    height: 100% !important;
}

body
{
    font-weight: 300;
    font-style: normal;

    overflow: hidden;

    color: #fff;
    background: #111;

    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6
{
    font-family: 'Raleway', sans-serif;
    font-weight: normal;
    line-height: auto;

    color: #fff;
}

h1
{
    font-size: 45px;
}

h2
{
    font-size: 35px;
}

h3
{
    font-size: 30px;
}

h4
{
    font-size: 24px;
}

h5
{
    font-size: 18px;
}

h6
{
    font-size: 16px;
}

p
{
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    line-height: auto;
}



}




/** 2. LOADING
*****************************************************************/

#page-loader
{
    position: fixed;
    z-index: 99999;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 100%;

    -webkit-transition: all 800ms cubic-bezier(.540, .086, .000, .980) .2s;
            transition: all 800ms cubic-bezier(.540, .086, .000, .980) .2s;

    background: #040404;
}

#page-loader.hide-this
{
    bottom: 100%;
}

#page-loader .spinner-container
{
    position: absolute;
    z-index: 200;
    left: 50%;
	top: 50%;

    -webkit-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
}

#page-loader .spinner-container .css-spinner
{
    display: block;

    width: 120px;
    height: 120px;

    -webkit-transition: all .4s cubic-bezier(.19, 1, .22, 1);
            transition: all .4s cubic-bezier(.19, 1, .22, 1);
    -webkit-animation: spinner 400ms linear infinite;
            animation: spinner 400ms linear infinite;

    opacity: 1;
    border: solid 8px transparent;
    border-top-color: #0085E2;
    border-left-color: #0085E2;
    border-radius: 100%;
}

#page-loader.hide-this .spinner-container .css-spinner
{
    opacity: 0;
}

@-webkit-keyframes spinner
{
    0%
    {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100%
    {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@keyframes spinner
{
    0%
    {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100%
    {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}




/** 3. CONTENT
*****************************************************************/



#main
{
    position: fixed;

    width: 100%;
    height: 100%;
}

#main-container
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    overflow: hidden;

    -webkit-transition: all 200ms linear;
            transition: all 200ms linear;
}

.container-mid
{
    position: absolute;
    z-index: 2;
    top: 40%;
    left: 0;

    display: block;

    width: 100%;
    height: auto;
    max-height: 100%;

    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    text-align: center;
}