/* ENTIRE SITE CSS */
* {
  box-sizing: border-box;
}
html {
  width: 100vw;
  height: 100vh;
}
body {
  margin: 0px;
  margin-top: 50px;
  font-family: 'Work Sans', sans-serif;
  font-weight: lighter;
  font-size: 16px;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

body::before, body::after {
  content: "";
  display: block;
  position: fixed;
  top: 0px;
  width: 100px;
  height: 100vh;
}
body::before {left: calc(50vw - 600px); transform: translateX(-100%); background: linear-gradient(-90deg, #4442, #0000);}
body::after {left: calc(50vw + 600px); background: linear-gradient(90deg, #4442, #0000);}

a {
  color: #1cb6f1;
  text-decoration: none;
}
b {
  font-weight: bold;
}
.noselect {
  -webkit-user-select: none;
  -ms-user-select: none
  user-select: none;
}

/* NAVIGATION MENU */
nav {
  position: relative;
  margin-left: 10px;
  font-size: 20px;
}
nav ul, #mobilebar {
  display: inline-block;
  list-style: none;
  background: #011688;
  padding: 0px 10px;
  margin: 0px;
  border-radius: 2px;
  position: relative;
  z-index: 2;
  height: 64px;
}
nav li {
  display: inline-flex;
  height: 64px;
  align-items: center;
  margin-right: 20px;
}
nav a {
  text-decoration: none;
  color: white;
  transition: color .2s;
}
nav a:hover {
  color: #e45305;
}
nav a.current {
  color: #e45305;
  //color: #ff6d33;
  font-weight: bold;
}
nav a::after {
  content: "";
  width: 5px;
  height: calc(100% - 20px);
  top: 10px;
  margin-left: 10px;
  position: absolute;
  background: #e45305;
  border-radius: 1px;
  display: inline-block;
}
nav li:last-child {margin-right: 5px;}
nav li:last-child a::after {display: none;}
#homelink_desktop {
  height: 64px;
  padding: 10px;
  float: left;
}
#homelink_mobile {display: none;}
#hamburger_icon {
  display: none;
  color: #e45305;
  cursor: pointer;
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 50px;
}
#hamburger_icon:active {
  text-shadow: 0 0 5px #011688;
}
#mobilebar {
  display: none;
  text-align: right;
  background: none;
  color: white;
}
#nav_logo {
  position: absolute;
  left: 5vw;
  top: 0px;
  height: 40px;
}
#mobile_checkbox:checked ~ ul {
  display: block;
}

/* FOOTER */
footer p {
  padding: 20px;
  font-size: .8em;
  float: left;
}
footer a {
  color: black;
}
footer img {
  width: 100%;
  max-width: 1200px;
}
#footer_logo {
  float: right;
  width: 20%;
  margin: 20px;
}

/* MEDIA QUERIES */
.mobile {display: none;}
@media (max-width: 767px) {
  .desktop {display: none;}
  .mobile {display: block;}

  footer p {float: none;}
  #footer_logo {display: none;}
}
/*@media (max-width: 889px) {*/
@media (max-width: 1080px) {
  body {
    margin-top: 30px;
  }
  #homelink_desktop {display: none;}
  #homelink_mobile, #hamburger_icon {display: block;}
  #mobilebar {display: block;}
  nav ul {
    display: none;
    position: absolute;
    right: 20px;
    top: 100%;
    padding: 0px 10px;
    border-bottom-left-radius: 3px;
    height: auto;
  }
  nav li {
    display: block;
    margin: 10px 0px;
    height: auto;
  }
  nav a::after {
    display: none;
  }
}