@import url('https://fonts.googleapis.com/css?family=Kanit:500,700&display=swap');

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}


hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}


.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

.hidden {
    display: none !important;
}

.sr-only {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
    /* 1 */
}

.sr-only.focusable:active,
.sr-only.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    white-space: inherit;
    width: auto;
}



::-moz-selection {
    background: #4F7879;
}

::selection {
    background: #4F7879;
    color: #fff
}

html {
    scroll-behavior: smooth;
}


.invisible {
    visibility: hidden;
}



.clearfix:before,
.clearfix:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
}

.clearfix:after {
    clear: both;
}


body {
font-family: 'Kanit', sans-serif;
    font-weight: 700;
    color: #fff;
    background-color: #101010;
    font-size: 16px;
    overflow-wrap: break-word;
}

body table {
    margin-bottom: 10px;
}

body table td {
    padding: 10px;
    border-left: 1px solid #1cf5ae;
}

body table tr td > :nth-last-child(1) {
    margin-bottom: 0 !important;
}

body a {
    text-decoration: none;
    color: #fff;
}

body b,
body strong {
    font-weight: 700;
}

html body * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.container {
    max-width: 1290px;
    margin: auto;
    padding: 0 10px;
}

header {
    background-color: black;
    position: fixed;
    width: 100%;
    z-index: 11;
    /*
    -webkit-box-shadow: 0 0 15px #000000;
    box-shadow: 0 0 15px #000000;
*/
    border-bottom: solid 5px #4F7879;
}

header .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 60px;
}

header .logos .gmglink {
    margin-right: 20px;
}

.links ul {
    list-style: none;
    padding: 0;
}

.links ul li {
    display: inline-block;
    margin-right: 20px;
    text-transform: uppercase;
}

.links ul li:nth-child(1) a {
    background-color: #4F7879;
    color: #fff;
    padding: 5px 21px;
    font-weight: 700;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
}

.links ul li:hover {
    opacity: 0.7;
}

#hero {
    background-color: #000;
    height: 550px;
    background-image: url('../img/backgrounds/background.jpg');
    background-size: cover;
    background-position: 50% 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    overflow: hidden;
}

#hero .aerologo {
    position: absolute;
    pointer-events: none;
    height: 200px;
    top: 55%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -55%);
    animation: aeroshine 8s infinite normal ease-out;
}

@keyframes aeroshine {
    0% {
        filter: brightness(none);
    }

    50% {
        filter: brightness(2);
    }

    100% {
        filter: brightness(none);
    }
}

#hero::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
background: linear-gradient(0deg, rgba(16,16,16,1) 0%, rgba(16,16,16,0) 47%);
}


#hero #headerVideoLink {
    font-size: 20px;
    position: absolute;
    text-align: center;
    align-content: center;
    padding: 10px 20px;
    background: #4F7879;
    color: white;
    top: 80%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
    box-shadow: 0 3px 8px #00000091;
    z-index: 2;
}

#hero #headerVideoLink:hover {
    background: white;
    color: #4F7879;
}

.links ul li:nth-child(1) a:hover {
    background: white;
    color: #4F7879;
}

#hero #trailersnip {
    z-index: 0;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    min-width: 100%;
    min-height: 100%;
}

#headerPopup {
    width: 75%;
    margin: 0 auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.video-container embed,
.video-container iframe,
.video-container object {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle
}

.front .character1 {
    position: relative;
    top: 7%;
    left: -100px;
    -webkit-animation: floatBubble 2s 1 normal ease-out;
    animation: floatBubble 2s 1 normal ease-out;
}

.front .character2 {
    position: absolute;
    top: 7%;
    right: -100px;
    -webkit-animation: floatBubble2 2s 1 normal ease-out;
    animation: floatBubble2 2s 1 normal ease-out;
}

@keyframes floatBubble {
    0% {
        left: -500px;
    }

    100% {
        left: -100px;
    }
}

@keyframes floatBubble2 {
    0% {
        right: -500px;
    }

    100% {
        right: -100px;
    }
}

.steam {
    width: 100%;
    height: 250px;
    background-color: #101010;
}

.text-center {
    text-align: center !important;
    padding-top: 30px;
}


.section-title {
    text-transform: uppercase;
    margin: 0px;

}

.section-text {
    max-width: 700px;
}

.column {
    float: left;
    width: 50%;
    padding: 10px;
}

.overview {
    padding: 30px;
    background-color: #4F7879;
    background-image: url('../img/backgrounds/background-overview.jpg');
    background-size: cover;
    background-position: 50% 50%;
    text-shadow: 0px 3px 8px #00000063;

}

.become {
    padding: 60px;
    background-color: #4F7879;
    background-image: url('../img/backgrounds/background-become.jpg');
    background-size: cover;
    background-position: 50% 50%;
    min-height: 300px;
    text-shadow: 0px 3px 8px #000000ab;
}

.overlap {
    background-image: url('../img/overlap.png');
    background-repeat: repeat-x;
    z-index: 4;
    width: 100%;
  
    margin-top: -10px;
    display: list-item;
}

.manage {
    text-shadow: 0px 3px 8px #00000063;
    padding: 40px;
    background-color: #4F7879;
    background-image: url('../img/backgrounds/background-manage.jpg');
    background-size: cover;
    background-position: 50% 100%;
    text-align: right;
}

.become .imperial-orc {
    text-align: center;
    padding: 40px 80px 20px 80px;
}

.turnbased {
    padding: 40px;
    text-align: right;
}

.squadron {
    padding: 40px;
    text-align: left;
}

.parallax {
    height: 100%;
    background-image: url('../img/backgrounds/parallax.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #101010;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

.gallery {
    padding: 30px 0 50px 0;
}

#gallery-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px
}

#gallery-wrapper img {
    width: 100%
}

#gallery-wrapper .thumbnail {
    -webkit-transition: .1s;
    -o-transition: .1s;
    transition: .1s
}

#gallery-wrapper .thumbnail:hover {
    -webkit-filter: brightness(1.3);
    filter: brightness(1.3);
    -webkit-transform: scale(1.07);
    -ms-transform: scale(1.07);
    transform: scale(1.07);
    z-index: 10;
    -webkit-box-shadow: 0 0 20px #000;
    box-shadow: 0 0 20px #000
}

#gallery-wrapper:hover > :hover {
    z-index: 2
}

#gallery-wrapper > * {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

#gallery-wrapper:hover > :not(:hover) {
    -webkit-filter: brightness(.6);
    filter: brightness(.6);
    z-index: 1;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 12;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .8);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.lightbox img {
    max-width: 80%;
        margin-top: 80px;
          z-index: 12;
}

.lightbox:target {
    outline: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer {
    background: black;
    color: white;
    font-size: 12px;
    font-family: Arial;
    text-align: center;
    padding: 10px 200px;
    border-top: solid 2px #4F7879;
}




@media only screen and (max-width: 983px) {

    .logos,
    .character1,
    .character2 {
        display: none;
    }

}

@media only screen and (max-width: 800px) {

    .badge {
        display: none;
    }

    .column {
        width: 100%;
        text-align: center;
    }

    .become .imperial-orc {
        padding: 40px 20px 20px 20px;
    }

    .overview,
    .turnbased,
    .become,
    .squadron,
    .manage {
        padding: 20px;
    }

    .turnbased .column {
        padding-top: 0px;
    }

    .footer {
        padding: 10px 20px;
    }
}

@media only screen and (max-width: 670px) {
    .steam {
        display: none;
    }

    #hero #trailersnip {
        left: 0;
    }

    .links ul li {
        font-size: 12px;
        margin-right: 11px;

    }

    .links ul li:nth-child(1) a {
        padding: 5px 5px;
    }
}


@media only screen and (max-width: 472px) {

    .links ul li {
        font-size: 14px;
        margin-right: 5px;
        align-content: center;

    }
    
      #hero .aerologo {
            height: 130px;
    }
}

@media only screen and (max-width: 390px) {
  
    .links ul li {
        font-size: 12px;
        margin-right: 5px;

    }

}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {

    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important;
        /* Black prints faster */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " ("attr(href) ")";
    }

    abbr[title]:after {
        content: " ("attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre {
        white-space: pre-wrap !important;
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
     */
    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}


