@charset 'utf-8';
@font-face {
    font-family: 'Xolonium';
    src: url("../fonts/xolonium-regular.ttf") format("opentype"), url("../fonts/xolonium-regular.eot");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'ROGFont';
    src: url("../fonts/ROGFontsv1.5-Regular.otf");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url("../fonts/Roboto-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

/* ---------- RESET ---------- */

html,
body {
    margin: 0;
    background-color: #000;
    overflow: visible;
}

#hd * {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    word-break: break-word;
}

::selection {
    background: #6278a4;
    color: #fff;
}

::-moz-selection {
    background: #6278a4;
    color: #fff;
}

#hd {
    font-family: "Roboto", "Arial", sans-serif;
    background: black;
    color: #FFF;
    font-size: 16px;
    margin: 0;
    padding: 0;
    /*background: url(../img/bg.jpg) 0 center no-repeat;*/
    background-attachment: fixed;
}

#hd ul,
#hd li,
#hd figure {
    margin: 0;
    padding: 0;
}

#hd h1,
#hd h2,
#hd h3,
#hd h4,
#hd p,
#hd a,
#hd li {
    font: inherit;
}

#hd img {
    display: block;
    height: auto;
    border: none;
    max-width: 100% !important;
    margin: 0 auto;
}

#hd img.lazyLoad {
    opacity: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}


/* ---------- scrollUp ------- */

#scrollUp {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 45px;
    height: 45px;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border: 2px solid #23beff;
    opacity: 0;
    transition: all 0.2s;
}

#scrollUp.hd-show {
    opacity: 1;
}

#scrollUp svg {
    display: block;
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 5px;
    left: 0;
    fill: #23beff;
    -webkit-transform: rotateZ(270deg);
    -moz-transform: rotateZ(270deg);
    -ms-transform: rotateZ(270deg);
    -o-transform: rotateZ(270deg);
    transform: rotateZ(270deg);
    transition: all 0.2s;
}

#scrollUp:hover {
    background-color: #23beff;
}

#scrollUp:hover svg {
    fill: white;
}









