@font-face {
  font-family: 'Electrofied';
  src: url(/images/fonts/ELECTR.TTF);
}

/* GENERAL */
h1, h2, h3, h4, h5, h6, nav > ul > li > a, button {
    font-family: 'Electrofied';
    font-size: 12pt;
    text-transform: uppercase;
}

h1 > b,
h3 > b,
nav > ul > li > a {
    color: #fff;
    text-shadow: -1px 2px 5px rgba(0, 0, 0, 0.6);
}

aside h3,
main h1 {
    padding-top: 1em;
    padding-bottom: 1em;
}
aside h3,
aside p,
aside form,
main h1,
main p {
    padding-left: 1em;
    padding-right: 1em;
}

input[type=text],
input[type=password] {
    background-color: white;
    border: 1px solid #000;
    border-radius: 0;
    color: #000;
    font-size: 10pt;
    height: 1.5em;
    padding: .1em;
}

button {
    border-radius: 0;
    font-size: 10pt;
    padding: .1em;
}

/* LAYOUT */
body {
    background: #000 url(/images/back.jpg) no-repeat left top;
    background-size: 100%;
    font-family: Tahoma;
    font-size: 12pt;
    font-smooth: never;
    -webkit-font-smoothing : none;
    padding: 1em;
}

body > aside,
body > aside > div,
body > header,
body > footer,
body > main {
    max-width: 100%;
    width: 100%;
}
body > header {
    background-image: url(/images/main_menu_bg.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100%;
    height: 200px;
    margin-top: 230px;
}
body > header > nav {
    align-items: flex-end;
    background-image: url(/images/main_menu.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    height: 90px;
    position: relative;
    top: 90px;
}
body > header > nav > ul {
    margin-left: 350px !important;
}
body > header > nav > ul > li {
    padding: 0.5em;
}
body > header > nav > ul > li:not(:first-child)::before {
  content: '/';
  margin-left: -11px;
  color: #afafaf;
}
body > header > nav > ul > li > a {
    color: #fff;
}

/* DECORATIONS */
body > aside,
body > main {
    margin-bottom: 1em;
    padding-left: .5em;
    padding-top: .5em;
}
body > aside {
    background-color: rgba(143, 142, 142, 1);
    background-image: linear-gradient(90deg, rgba(143, 142, 142, 1) 0%, rgba(94, 93, 93, 1) 5%, rgba(95, 95, 95, 1) 100%);
    margin-bottom: 1em;
    padding-bottom: 2em;
}


body > aside > div {
}

body > main {
    background-color: #333;
}

h1 {
    background: rgb(132, 130, 130);
    display: inline-block;
    width: 100%;
}

h3 {
    background-color: #d2d2d2;
    background-image: url(/images/small_hdr_bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    box-shadow: 9px 11px 16px 1px rgba(0, 0, 0, 0.51);
}

/*
h3::before {
    content: ' ';
    display: block;
    background-image: url(/images/TopArrow.png);
    background-repeat: no-repeat;
    height: 18px;
    width: 20px;
}
h3.look_backward::after {
    background-image: inherit;
    background-size: 100% 400%;
}
*/


.look_backward {
    position: relative;
}
.look_backward::before {
    content: '';
    position: absolute;
    top: 0;
    left: -1.9em;
    width: 1.9em;
    height: 1.9em;
    background-color: inherit;
    background-image: none;
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    z-index: 1;
}
.look_backward .look_backward::before {
    left: -1.3em;
    width: 1.3em;
    height: 1.3em;
    z-index: 2;
}
.look_backward::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0em;
    width: 2em;
    height: 2em;
    background-color: #000;
    background-image: none;
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    z-index: 1;
}
.look_backward .look_backward::after {
    width: 1.5em;
    height: 1.5em;
}

.line {
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.7) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
    bottom: 1em;
    box-shadow:
        inset 0 1px 2px rgba(255, 255, 255, 0.75),
        inset 0 -1px 2px rgba(0, 0, 0, 0.75),
        2px -2px 9px rgba(0, 0, 0, 0.51);
    content: ' ';
    height: 6px;
    left: 0;
    position: absolute;
    width: 100%;
}

@media only screen and (max-width: 1024px) {
    body > header > nav {
    }
}
@media only screen and (min-width: 1024px) {
    html, body {
        width: 1024px;
    }
    body {
        display: flex;
        flex-wrap: wrap;
    }
    body > header,
    body > footer {
        flex-basis: 100%;
    }
    body > aside,
    body > main {
        flex: 1;
    }
    body > aside {
        width: 20%;
    }
    body > main {
        margin-left: .5em;
        margin-right: .5em;
    }
}
