html {
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}


body {
    position: relative;
    margin: 0;
    padding-bottom: 6rem;
    min-height: 100%;
    font-family: "Helvetica Neue", Arial, sans-serif;
    background: #000;
    background-image: url(../img/Intro/BG.jpg);
    background-size: cover;
    overflow: hidden;
}

.loadScreen {
    color: white;
}

.middle, .centerText {
    text-align: center;
    margin: 0 auto;
}

.middle img { 
    margin: 0 auto;
}

.logo {
    max-width: 600px;
    width: 100%;
    display: block;
    margin: 0 auto;
    padding-bottom: 95px;
}

.block {
    display: block;
}

.item {
    text-align: center;
}

.item img {
    width: 100%;
    margin: 0 auto;
    display: block;
}

.item-wide {}

.item-wide img {
    max-width: 400px;
}

.item-narrow {
    width: 320px;
}

.item-narrow img {
    max-width: 200px;
}

.title {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1rem;
    padding-top: 10px;
}

.description {
    padding-top: 5px;
    font-size: 1rem;
}

.clicker {
    position: fixed;
    left: 0px;
    bottom: 0px;
    padding-top: 35px;
    height: 73px;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.removeMargin {
    margin: -40px 0 -40px 34px;
}

.wideFirst {
    order: 0;
}

.smallBorder {
    border: none;
}

.noSmallHeight {
    display: initial;
}

.smallHeight {
    display: none;
}

.width {
    width: 100%;
}

.footer {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1rem;
    background-color: #000;
    text-align: center;
}

table.styled {
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
}

table.styled caption {
    font-size: 1.5em;
    margin: .5em 0 .75em;
}

table.styled tr {
    background: #f8f8f8;
    border: 1px solid #ddd;
    padding: .35em;
}

table.styled th,
table.styled td {
    padding: .625em;
    text-align: center;
}

table.styled th {
    font-size: .85em;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.page-wrap {
    min-height: 100%;
    /* equal to footer height */
    margin-bottom: -50px; 
    padding-bottom: 50px;
  }
  .page-wrap:after {
    content: "";
    display: block;
  }
  .site-footer, .page-wrap:after {
    height: 50px; 
  }
  .site-footer {
    padding: 1rem;
    background-color: #000;
    text-align: center;
  }

  @media screen and (max-height: 600px) {
    .page-wrap {
        zoom: 60%;
    }
}
@media screen and (max-width: 770px) {
    .logo {
        padding-bottom: 25px;
    }
    .description {
        font-size: 0.7em;
    }
    .title {
        font-size: 0.9em;
    }
    .item-wide img {
        max-width: 190px;
    }
    .item-narrow img {
        max-width: 55px;
        max-height: 100px;
    }
    .logo {
        padding-bottom: 0px;
        max-width: 250px;
    }
    .item {
        padding-top: 10px;
    }
    .page-wrap {
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 600px) {
    table.styled {
        border: 0;
    }
    table.styled caption {
        font-size: 1.3em;
    }
    table.styled thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }
    table.styled tr {
        border-bottom: 3px solid #ddd;
        display: block;
        margin-bottom: .625em;
    }
    table.styled td {
        border-bottom: 1px solid #ddd;
        display: block;
        font-size: .8em;
        text-align: right;
    }
    table.styled td:before {
        /*
      * aria-label has no advantage, it won't be read inside a table
      content: attr(aria-label);
      */
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
    }
    table.styled td:last-child {
        border-bottom: 0;
    }
}