h1 {
  font-size: 2.65rem;
}

body, html {
  height: 100%;
}

body {
  padding: 0;
  margin: 0;
  background: #002b47;
}

.wrapper {
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#content {
  flex-grow: 1;
}

section#main, nav, label[for=main_menu] {
  -moz-transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

#main {
  padding: 0.5rem 1rem 0.5rem 1rem;
}

.logo {
  margin: 0;
}

.holder {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.row {
  display: flex;
  align-content: center;
  align-items: flex-start;
  justify-content: center;
}
@media (max-width: 767px) {
  .row {
    flex-flow: column;
  }
}

img {
  max-width: 100%;
  height: auto;
}

.img-cent {
  display: block;
  margin: 0 auto;
}

body {
  font-family: "Lato", "helvetica neue", helvetica, arial, sans-serif;
  color: #656565;
}

.logo {
  display: block;
  font-size: 1.5em;
  font-weight: bold;
}

h1, h2, h3 {
  font-family: "Titillium Web", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}

.nm {
  margin: 0;
}

.np-t {
  padding-top: 0;
}

.np-b {
  padding-bottom: 0;
}

.high {
  font-size: 1.1rem;
  line-height: 1.7;
}

.hamburger {
  padding: 0 0;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}

.hamburger-box {
  width: 1.5rem;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 1.5rem;
  height: 4px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -10px;
}
.hamburger-inner::after {
  bottom: -10px;
}

.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.logo {
  letter-spacing: 0.25rem;
  color: #fff;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
}
.logo span {
  color: #5fa4ff;
}

header, nav {
  background-color: #001f32;
}

header {
  border-bottom: 1px solid #335E6F;
}
header span.logo {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}

label[for=main_menu] {
  display: block;
  font-weight: 700;
  text-align: center;
  position: fixed;
  z-index: 500;
  top: 0.65rem;
}

input[name=main_menu] {
  display: none;
}

/** Main Input */
input[name=main_menu] {
  display: none;
}

/** Mobile Menu */
input[name=main_menu]:checked ~ nav {
  margin: 0;
}
input[name=main_menu]:checked ~ nav li:nth-child(2) {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
input[name=main_menu]:checked ~ nav li a {
  color: #fff;
  padding: 0.9em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/** Burger Animation */
input[name=main_menu]:checked ~ label .hamburger .hamburger-inner {
  -moz-transform: translate3d(0, 10px, 0) rotate(135deg);
  -o-transform: translate3d(0, 10px, 0) rotate(135deg);
  -ms-transform: translate3d(0, 10px, 0) rotate(135deg);
  -webkit-transform: translate3d(0, 10px, 0) rotate(135deg);
  transform: translate3d(0, 10px, 0) rotate(135deg);
  -moz-transition-delay: 0.075s;
  -o-transition-delay: 0.075s;
  -webkit-transition-delay: 0.075s;
  transition-delay: 0.075s;
}
input[name=main_menu]:checked ~ label .hamburger .hamburger-inner::before {
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  opacity: 0;
}
input[name=main_menu]:checked ~ label .hamburger .hamburger-inner::after {
  -moz-transform: translate3d(0, -20px, 0) rotate(-270deg);
  -o-transform: translate3d(0, -20px, 0) rotate(-270deg);
  -ms-transform: translate3d(0, -20px, 0) rotate(-270deg);
  -webkit-transform: translate3d(0, -20px, 0) rotate(-270deg);
  transform: translate3d(0, -20px, 0) rotate(-270deg);
  -moz-transition-delay: 0.075s;
  -o-transition-delay: 0.075s;
  -webkit-transition-delay: 0.075s;
  transition-delay: 0.075s;
}

@media (max-width: 767px) {
  nav {
    position: fixed;
    top: 0;
    width: 18rem;
    height: 100%;
    margin: 0;
    -moz-transition: all 0.2s cubic-bezier(0.17, 0.67, 0.44, 0.58);
    -o-transition: all 0.2s cubic-bezier(0.17, 0.67, 0.44, 0.58);
    -webkit-transition: all 0.2s cubic-bezier(0.17, 0.67, 0.44, 0.58);
    transition: all 0.2s cubic-bezier(0.17, 0.67, 0.44, 0.58);
  }
}
@media (min-width: 767px) {
  header span.logo {
    display: none;
  }

  nav {
    box-shadow: none;
    position: relative;
    margin: 0;
    width: auto;
    height: auto;
    padding: 0.5rem 0.5rem 0.5rem 0.5rem;
  }
  nav ul {
    width: auto;
    height: auto;
  }
  nav ul li {
    display: inline-block;
  }
  nav ul li a {
    left: inherit;
    border-bottom: none medium;
    padding: 0.5rem 0.85rem 0.5rem 0.85rem;
  }

  label[for=main_menu] {
    display: none;
  }
}
input[name=main_menu]:checked ~ nav {
  margin: 0;
}

input[name=main_menu]:checked ~ label .hamburger .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s;
}
input[name=main_menu]:checked ~ label .hamburger .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
input[name=main_menu]:checked ~ label .hamburger .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

input[name=main_menu]:checked ~ section {
  -moz-transform: translate3d(18rem, 0, 0);
  -o-transform: translate3d(18rem, 0, 0);
  -ms-transform: translate3d(18rem, 0, 0);
  -webkit-transform: translate3d(18rem, 0, 0);
  transform: translate3d(18rem, 0, 0);
}

.right_menu input[name=main_menu]:checked ~ section {
  -moz-transform: translate3d(-18rem, 0, 0);
  -o-transform: translate3d(-18rem, 0, 0);
  -ms-transform: translate3d(-18rem, 0, 0);
  -webkit-transform: translate3d(-18rem, 0, 0);
  transform: translate3d(-18rem, 0, 0);
}
.right_menu input[name=main_menu] ~ label[for=main_menu] {
  right: 0.5rem;
}
@media (max-width: 767px) {
  .right_menu nav li a {
    right: -100%;
    -moz-transition: right 0.2s cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: right 0.2s cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-transition: right 0.2s cubic-bezier(0.23, 1, 0.32, 1);
    transition: right 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .right_menu nav {
    right: 0;
    margin-right: -18.8rem;
    width: 18rem;
  }
  .right_menu nav .logo {
    width: 100%;
    text-align: right;
    padding-right: 2.35rem;
  }
  .right_menu nav .logo a {
    right: inherit;
    text-align: center !important;
    padding: 0;
  }
  .right_menu nav li {
    display: block;
    width: 18rem;
    text-align: center;
  }
  .right_menu nav li a {
    text-align: center !important;
    border: none !important;
  }
  .right_menu input[name=main_menu]:checked ~ nav li a {
    right: 0;
  }
  .right_menu input[name=main_menu]:checked ~ nav li a {
    right: 0;
    text-align: right;
    padding-right: 2.35rem;
  }
}

nav {
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.5);
}
nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  nav ul {
    width: 18rem;
    flex-flow: column;
  }
}
nav li {
  margin: 0;
}
nav li.logo {
  margin-right: auto;
}
@media (max-width: 767px) {
  nav li:nth-child(1) a {
    -moz-transition-delay: 0.13s;
    -o-transition-delay: 0.13s;
    -webkit-transition-delay: 0.13s;
    transition-delay: 0.13s;
  }
  nav li:nth-child(2) a {
    -moz-transition-delay: 0.21s;
    -o-transition-delay: 0.21s;
    -webkit-transition-delay: 0.21s;
    transition-delay: 0.21s;
  }
  nav li:nth-child(3) a {
    -moz-transition-delay: 0.29s;
    -o-transition-delay: 0.29s;
    -webkit-transition-delay: 0.29s;
    transition-delay: 0.29s;
  }
  nav li:nth-child(4) a {
    -moz-transition-delay: 0.37s;
    -o-transition-delay: 0.37s;
    -webkit-transition-delay: 0.37s;
    transition-delay: 0.37s;
  }
  nav li:nth-child(5) a {
    -moz-transition-delay: 0.45s;
    -o-transition-delay: 0.45s;
    -webkit-transition-delay: 0.45s;
    transition-delay: 0.45s;
  }
  nav li:nth-child(6) a {
    -moz-transition-delay: 0.53s;
    -o-transition-delay: 0.53s;
    -webkit-transition-delay: 0.53s;
    transition-delay: 0.53s;
  }
  nav li:nth-child(7) a {
    -moz-transition-delay: 0.61s;
    -o-transition-delay: 0.61s;
    -webkit-transition-delay: 0.61s;
    transition-delay: 0.61s;
  }
  nav li:nth-child(8) a {
    -moz-transition-delay: 0.69s;
    -o-transition-delay: 0.69s;
    -webkit-transition-delay: 0.69s;
    transition-delay: 0.69s;
  }
  nav li:nth-child(9) a {
    -moz-transition-delay: 0.77s;
    -o-transition-delay: 0.77s;
    -webkit-transition-delay: 0.77s;
    transition-delay: 0.77s;
  }
  nav li:nth-child(10) a {
    -moz-transition-delay: 0.85s;
    -o-transition-delay: 0.85s;
    -webkit-transition-delay: 0.85s;
    transition-delay: 0.85s;
  }
  nav li:nth-child(11) a {
    -moz-transition-delay: 0.93s;
    -o-transition-delay: 0.93s;
    -webkit-transition-delay: 0.93s;
    transition-delay: 0.93s;
  }
  nav li:nth-child(12) a {
    -moz-transition-delay: 1.01s;
    -o-transition-delay: 1.01s;
    -webkit-transition-delay: 1.01s;
    transition-delay: 1.01s;
  }
}
nav li a {
  color: #fff;
  position: relative;
  display: block;
  outline: none;
  text-decoration: none;
  transition: color 0.15s;
}
nav li a:hover {
  color: #5fa4ff;
}

.section {
  max-width: 1200px;
  margin: 1rem auto;
  box-shadow: 0 0.5rem 1rem -0.125rem rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.02);
  border-radius: 0.25rem;
  padding: 2rem;
  border: 1px solid rgba(212, 212, 212, 0.65);
}

#about {
  color: #fff;
  padding: 2rem 0;
}
#about a {
  color: #53a4ff;
  text-decoration: none;
}
#about ol {
  list-style: none;
}
#about ol li {
  position: relative;
  counter-increment: about;
}
#about ol li::before {
  content: counter(about);
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  position: absolute;
  --size: 23px;
  left: calc(-1 * var(--size) - 10px);
  line-height: var(--size);
  width: var(--size);
  height: var(--size);
  top: 4px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  text-align: center;
  box-shadow: 1px 1px 0 #5c5757;
}

#welcome {
  text-align: center;
  padding: 9.55rem 0.5rem;
  background-image: url(../img/bg2.jpg);
  background-size: cover;
  background-position: 0 77%;
}
#welcome.subpage {
  padding: 3rem 0;
}
@media (max-width: 767px) {
  #welcome {
    height: calc(100vh - 22rem);
  }
  #welcome.subpage {
    height: 10.5rem;
  }
  #welcome h1 {
    line-height: 1.2;
  }
}
#welcome h1 {
  text-shadow: 0 0 5px #0c253a;
  margin: 0 0 3.5rem;
  color: #fff;
}

#partners {
  background-color: #E8E8E4;
}
#partners .holder {
  padding-bottom: 3rem;
}
@media (max-width: 767px) {
  #partners .holder {
    padding-bottom: 0.5rem;
  }
}
#partners h2 {
  padding: 2rem 0 1rem;
}
@media (max-width: 767px) {
  #partners h2 {
    text-align: center;
    padding: 1rem 0.5rem;
    margin: 0;
  }
}
#partners .partners_list {
  display: flex;
  flex-flow: row;
  align-items: stretch;
  justify-content: space-around;
  align-content: center;
}
@media (max-width: 767px) {
  #partners .partners_list {
    flex-flow: column;
  }
}
#partners .partners_list a {
  margin: 0 0.5rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  align-content: center;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  border-radius: 0.25rem;
  overflow: hidden;
  padding: 1rem;
  transition: all 0.35s ease;
}
@media (max-width: 767px) {
  #partners .partners_list a {
    margin: 0.25rem;
  }
}
#partners .partners_list a img {
  max-width: 100%;
}
@media (max-width: 767px) {
  #partners .partners_list a img {
    max-width: 80%;
    max-height: 8rem;
    display: block;
    margin: 0 auto;
  }
}
#partners .partners_list a:hover {
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.25);
}

#methodology {
  color: #fff;
  padding: 2rem 1rem 3rem;
}
@media (max-width: 767px) {
  #methodology {
    padding: 0 0 2rem;
  }
}
#methodology .row {
  align-items: center;
}
#methodology h2 {
  font-size: 2.3rem;
  margin: 0;
}
@media (max-width: 767px) {
  #methodology h2 {
    text-align: center;
    padding: 1rem 0.5rem;
    margin: 0;
  }
}
#methodology h3 {
  text-transform: uppercase;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  #methodology h3 {
    text-align: center;
    padding: 0 0.5rem;
    margin: 0;
  }
}
#methodology .first_graph {
  width: 100%;
  min-width: 25rem;
  max-width: 100%;
}
@media (max-width: 767px) {
  #methodology .first_graph {
    min-width: inherit;
    margin-bottom: 2rem;
    margin-top: 1.5rem;
  }
}
#methodology .sec_graph {
  max-width: 40rem;
  margin: 0 auto;
  display: block;
}
#methodology p {
  font-size: 1.1rem;
  line-height: 1.6;
}
#methodology ol {
  font-size: 1.1rem;
  line-height: 1.6;
  padding-inline-start: 20px;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  #methodology ol {
    margin: 1rem 0.5rem 1rem 1rem;
  }
}
#methodology ol li {
  margin-bottom: 1rem;
}
#methodology ol b {
  color: #fdfdc4;
}

#samples {
  color: #fff;
}
#samples table {
  width: 100%;
  margin-bottom: 2rem;
}
#samples table td, #samples table th {
  text-align: left;
  color: #d7d7d7;
}
#samples table thead th {
  border-top: none;
  border-bottom: none !important;
  color: #fff;
  font-size: 0.875rem;
  text-transform: uppercase;
  vertical-align: top;
  background-color: rgba(0, 0, 0, 0.35);
  padding: 0.875rem 0.5rem;
}
#samples table thead th span {
  display: block;
  text-transform: none;
  font-weight: normal;
  font-size: 0.75rem;
}
#samples table tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.15);
}
#samples table tbody tr:nth-of-type(even) {
  background-color: rgba(255, 255, 255, 0.15);
}
#samples table tbody td {
  padding: 0.875rem 0.5rem;
  transition: all 0.15s cubic-bezier(0.075, 0.82, 0.165, 1);
  cursor: pointer;
}
#samples table tbody tr:hover td {
  color: #ded387;
  background-color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 767px) {
  #samples table thead {
    display: none;
  }
  #samples table tr {
    display: block;
  }
  #samples table tr td {
    border: none;
    position: relative;
    text-align: right;
    display: flex;
    justify-content: space-between;
    padding: 0.35rem 0.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.8);
  }
  #samples table tr td .img {
    width: 50%;
    display: block;
    margin: 0 auto;
  }
  #samples table td:nth-of-type(1):before {
    content: "ID";
    font-weight: bold;
    color: #fff;
  }
  #samples table td:nth-of-type(2):before {
    content: "Epoch";
    font-weight: bold;
    color: #fff;
  }
  #samples table td:nth-of-type(3):before {
    content: "Semi-major Axis";
    font-weight: bold;
    color: #fff;
  }
  #samples table td:nth-of-type(4):before {
    content: "Inclination";
    font-weight: bold;
    color: #fff;
  }
  #samples table td:nth-of-type(5):before {
    content: "Eccentricity";
    font-weight: bold;
    color: #fff;
  }
  #samples table td:nth-of-type(6):before {
    content: "Argument of Periapsis";
    font-weight: bold;
    color: #fff;
  }
  #samples table td:nth-of-type(7):before {
    content: "Right Ascension of Ascending Node";
    font-weight: bold;
    color: #fff;
  }
}

.img {
  width: 2.5rem;
  border: 5px solid #fff;
  border-radius: 0.25rem;
  cursor: pointer;
}
.img.img-b {
  border-width: 10px;
}

#footer {
  background-color: #001f32;
  color: #fff;
}
#footer .footer {
  display: flex;
  align-content: center;
  align-items: center;
  padding: 1.5rem;
  justify-content: space-between;
}
@media (max-width: 767px) {
  #footer .footer {
    flex-flow: column;
  }
}
#footer .footer .title {
  font-weight: bold;
}
#footer .footer ul {
  display: flex;
  list-style: none;
  margin: 0;
}
@media (max-width: 767px) {
  #footer .footer ul {
    align-content: center;
    align-items: center;
    padding: 0;
  }
}
#footer .footer ul a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-left: 1.5rem;
}
@media (max-width: 767px) {
  #footer .footer ul a {
    margin: 0.85rem 0.5rem 0.5rem;
  }
}

.btn {
  border: 2px solid #fff;
  -webkit-border-radius: 0.3em;
  border-radius: 0.3em;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  padding: 0.8rem 1rem;
  cursor: pointer;
  color: white;
  background-color: transparent;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
  outline: none;
  background-position: center;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  text-decoration: none;
}
.btn:hover {
  background: rgba(19, 92, 205, 0.8) radial-gradient(circle, transparent 1%, rgba(19, 92, 205, 0.8) 1%) center/15000% !important;
  box-shadow: none medium;
}
.btn:active {
  background-color: rgba(51, 51, 51, 0);
  background-size: 100%;
  -moz-transition: all 0s;
  -o-transition: all 0s;
  -webkit-transition: all 0s;
  transition: all 0s;
}
.btn.btn-main {
  text-transform: uppercase;
  background-color: rgba(19, 92, 205, 0.3);
  padding: 0.8rem 1.5rem;
}

/*# sourceMappingURL=style.css.map */
