:root {
  --baseWhiteColor: white;
  --baseWhiteColorSubtle: rgba(255, 255, 255, 0.5);
  --baseBlackColor: #0d2330;
  --baseBlackColorSubtle: rgba(13, 35, 48, 0.2);
  --baseRedColor: #f0404f;
  --baseYellowColor: #eaff2f;
  --baseBlueColor: #63f0fe;
  --basePurpleColor: #6e54f8;
  --basePinkColor: #ee4a98;
  --primaryColor: var(--baseBlackColor);
  --primaryColorSubtle: var(--baseBlackColorSubtle);
  --highlightColor: var(--baseWhiteColor);
  --highlightColorSubtle: var(--baseWhiteColorSubtle); }

#header-crosshairRight, #footer-crosshairLeft, #footer-crosshairRight {
  width: 11px;
  height: 11px;
  position: absolute; }
  #header-crosshairRight:before, #footer-crosshairLeft:before, #footer-crosshairRight:before {
    content: '';
    position: absolute;
    top: 5px;
    right: 5px;
    height: 1px;
    width: 40px;
    background: rgba(13, 35, 48, 0.2);
    background: var(--primaryColorSubtle); }
  #header-crosshairRight:after, #footer-crosshairLeft:after, #footer-crosshairRight:after {
    content: '';
    position: absolute;
    top: 5px;
    right: 5px;
    height: 40px;
    width: 1px;
    background: rgba(13, 35, 48, 0.2);
    background: var(--primaryColorSubtle); }
  #header-crosshairRight .crosshair, #footer-crosshairLeft .crosshair, #footer-crosshairRight .crosshair {
    width: 11px;
    height: 11px; }
    #header-crosshairRight .crosshair:before, #footer-crosshairLeft .crosshair:before, #footer-crosshairRight .crosshair:before {
      content: '';
      position: absolute;
      top: 5px;
      left: 0;
      right: 0;
      height: 1px;
      background: #0d2330;
      background: var(--primaryColor); }
    #header-crosshairRight .crosshair:after, #footer-crosshairLeft .crosshair:after, #footer-crosshairRight .crosshair:after {
      content: '';
      position: absolute;
      top: 0;
      left: 5px;
      bottom: 0;
      width: 1px;
      background: #0d2330;
      background: var(--primaryColor); }

#wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  min-width: 1170px;
  min-height: 720px;
  display: flex;
  justify-content: center;
  align-items: center; }

html, body {
  margin: 0;
  padding: 0;
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility; }

body {
  width: 100vw;
  height: 100vh;
  background: #f0404f;
  background: var(--baseRedColor);
  font-family: 'Lato',sans-serif;
  font-size: 1.5rem;
  line-height: 2.4rem;
  color: white;
  color: var(--highlightColor);
  transition: all 0.25 ease; }

#background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url(../assets/bg-grunge-corner.png) no-repeat bottom left; }
  #background:after {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(../assets/bg-grunge.png) no-repeat 80% 25%; }
  #background-grid {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(../assets/bg-grid.svg) repeat center center;
    background-size: 300px 360px;
    -webkit-mask-image: radial-gradient(ellipse, black 40%, transparent 70%);
    mask-image: radial-gradient(ellipse, black 40%, transparent 70%); }

img {
  border: 0;
  outline: none; }

a {
  text-decoration: none;
  color: #0d2330;
  color: var(--primaryColor); }
  a.button {
    display: block;
    box-sizing: border-box;
    height: 40px;
    padding: 0 20px;
    font-family: 'Nunito',sans-serif;
    font-size: 1.2rem;
    line-height: 40px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(13, 35, 48, 0.2);
    border-color: var(--primaryColorSubtle); }
    a.button.--fitted {
      display: inline-block;
      width: auto; }
    a.button.--highlight {
      color: white;
      color: var(--highlightColor);
      border-color: rgba(255, 255, 255, 0.5);
      border-color: var(--highlightColorSubtle); }

#header {
  position: absolute;
  top: 60px;
  left: 60px;
  right: 60px;
  font-family: 'Nunito',sans-serif;
  font-size: 1.4rem;
  line-height: 1em;
  letter-spacing: 0.2em;
  color: #0d2330;
  color: var(--primaryColor); }
  #header-crosshairRight {
    top: -5px;
    right: -5px; }
    #header-crosshairRight:before, #header-crosshairRight:after {
      display: none; }
  #header-logo {
    position: absolute;
    top: 0;
    left: 0; }
    #header-logo span {
      font-weight: 700; }
    #header-logo:before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: calc(100% + 20px);
      width: 40px;
      height: 1px;
      background: #0d2330;
      background: var(--primaryColor);
      opacity: 0.2; }
    #header-logo:after {
      content: '';
      display: block;
      position: absolute;
      top: calc(100% + 20px);
      left: 0;
      width: 1px;
      height: 40px;
      background: #0d2330;
      background: var(--primaryColor);
      opacity: 0.2; }
  #header-contactButton {
    position: absolute;
    top: 0;
    right: 0; }

#nav {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 60px;
  min-height: 700px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: serif;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1em;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  color: #0d2330;
  color: var(--primaryColor); }
  #nav a {
    position: relative;
    display: block;
    margin: 36px 0;
    cursor: pointer;
    transition: color 0.2s ease; }
    #nav a circle {
      fill: #0d2330;
      fill: var(--primaryColor);
      transition: fill 0.2s ease; }
    #nav a.--isOn, #nav a:hover {
      color: white;
      color: var(--baseWhiteColor); }
      #nav a.--isOn circle, #nav a:hover circle {
        fill: white;
        fill: var(--baseWhiteColor); }
    #nav a:after {
      content: '';
      display: block;
      position: absolute;
      top: calc(100% + 16px);
      left: 50%;
      width: 1px;
      height: 40px;
      transform: translateX(-50%);
      background: rgba(13, 35, 48, 0.2);
      background: var(--primaryColorSubtle);
      pointer-events: none; }
    #nav a:last-child:after {
      content: '';
      display: none; }

#footer {
  position: absolute;
  bottom: 60px;
  left: 60px;
  right: 60px; }
  #footer-crosshairLeft {
    bottom: -5px;
    left: -5px; }
    #footer-crosshairLeft:before {
      right: auto;
      left: 5px; }
    #footer-crosshairLeft:after {
      top: auto;
      bottom: 5px; }
  #footer-crosshairRight {
    bottom: -5px;
    right: -5px; }
    #footer-crosshairRight:after {
      top: auto;
      bottom: 5px; }
  #footer-scroll {
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin: 0 auto;
    transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }
    #footer-scroll:after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      border-width: 1px;
      border-right-style: solid;
      border-bottom-style: solid;
      border-color: #0d2330;
      border-color: var(--primaryColor);
      transform: rotateZ(45deg) translate3d(-25%, -25%, 0);
      pointer-events: none; }
    #footer-scroll:hover {
      transform: translateY(4px); }

#content {
  flex: 0 0 auto;
  position: relative;
  width: 960px;
  height: 720px;
  color: white;
  color: var(--highlightColor); }
  #contentPageInfo {
    position: absolute;
    width: 300px;
    height: 360px;
    top: 0;
    left: 0;
    box-sizing: border-box;
    padding: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-family: 'Fjalla One',sans-serif;
    font-size: 4.8rem;
    line-height: 1em; }
    #contentPageInfo:before {
      content: '';
      position: absolute;
      top: -6px;
      right: 1px;
      bottom: -6px;
      width: 1px;
      background: white;
      background: var(--highlightColor);
      opacity: 0.4; }
    #contentPageInfo:after {
      content: '';
      position: absolute;
      top: 0;
      right: -5px;
      bottom: -1px;
      width: 11px;
      border-width: 1px;
      border-top-style: solid;
      border-bottom-style: solid;
      border-color: white;
      border-color: var(--highlightColor);
      opacity: 0.4; }
    #contentPageInfo-currentPage {
      position: relative;
      text-align: right; }
      #contentPageInfo-currentPage:after {
        content: "/ " attr(data-total);
        position: absolute;
        top: calc(100% + 5px);
        right: 0;
        font-size: 2.0rem;
        line-height: 1em;
        color: rgba(13, 35, 48, 0.2);
        color: var(--primaryColorSubtle); }
  #contentCompany-icon {
    position: absolute;
    width: 430px;
    height: 430px;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    display: flex;
    justify-content: center;
    align-items: center; }
    #contentCompany-icon img {
      width: 100%;
      height: auto;
      max-height: 100%; }
  #contentCompany-info {
    position: absolute;
    top: 359px;
    left: 599px;
    width: 470px; }
    #contentCompany-infoTitle {
      font-family: 'Fjalla One',sans-serif;
      font-size: 7.2rem;
      line-height: 1em;
      margin-bottom: 20px; }
    #contentCompany-info p {
      margin: 0 0 40px; }
