:root {
  --link-hover: #e5e5e5;
  --font-family: nimbus-sans-extended, sans-serif;
  --paragraph-dark: #545454;
}

body {
  color: #000;
  font-family: Inter;
  font-size: 18px;
  line-height: 1.2em;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Opensauceone;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.2em;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Opensauceone;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.2em;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Opensauceone;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.2em;
}

h4 {
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Opensauceone;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1em;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Opensauceone;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

p {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5em;
}

a {
  color: #000;
  border-bottom: 1px solid #000;
  text-decoration: none;
  transition: all .2s ease-in-out;
}

a:hover {
  opacity: .7;
}

.section-hero {
  color: #fff;
  background-image: linear-gradient(230deg, #9c0000, #770a06 67%);
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100vh;
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.nav {
  color: #fff;
  background-color: #ddd0;
  flex-direction: row;
  align-items: center;
  width: 100%;
  display: flex;
  position: static;
  inset: 0% 0% auto;
}

.container {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3rem;
  padding-right: 3rem;
  display: flex;
}

.container.container-nav {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1920px;
  display: flex;
}

.container.container-l {
  max-width: 1920px;
}

.nav-brand {
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-bottom-style: none;
  max-width: 2.6rem;
  font-size: 1.2em;
  font-weight: 500;
}

.nav-menu-button {
  padding: 0;
}

.nav-menu {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  display: flex;
}

.nav-link {
  color: #fff;
  cursor: pointer;
  border-bottom-style: none;
  padding: 0;
  font-family: nimbus-sans, sans-serif;
  font-size: 1em;
  font-weight: 300;
  line-height: 1.2em;
}

.nav-link:hover {
  opacity: 1;
  color: var(--link-hover);
}

.nav-link.w--current {
  color: #fff;
  font-family: nimbus-sans, sans-serif;
}

.nav-link.w--current:hover {
  color: var(--link-hover);
}

.title-wrapper {
  z-index: 10;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  max-width: 600px;
  display: flex;
  position: relative;
}

.hero-button-group {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  align-items: center;
  display: flex;
}

.button-secondary {
  color: #fff;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  text-decoration: none;
  transition: all .15s linear;
  display: flex;
}

.button-secondary:hover {
  color: #000;
  background-color: #fff;
  box-shadow: 0 1px 50px #ffffff1a;
}

.hero-overlay-shadow {
  z-index: 1;
  opacity: .75;
  background-image: linear-gradient(#0000, #0006);
  height: 100%;
  position: absolute;
  inset: 0%;
}

.hero-overlay-stars {
  z-index: 1;
  opacity: .1;
  background-image: url('../images/hero-stars.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  position: absolute;
  inset: 0%;
}

.hero-overlay-clouds {
  z-index: 1;
  opacity: .05;
  background-image: url('../images/hero-clouds.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.hero-overlay-moon {
  z-index: 1;
  opacity: .1;
  background-image: url('../images/hero-1-moon-v3.png');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  inset: 0%;
}

.hero-overlay-star-1 {
  z-index: 1;
  opacity: .15;
  color: #fff;
  background-image: url('../images/star-50.png');
  background-position: -20px -30px;
  background-repeat: no-repeat;
  background-size: auto;
  position: absolute;
  inset: 0%;
}

.hero-overlay-star-2 {
  opacity: .1;
  background-image: url('../images/star-40.png');
  background-position: 30% 130%;
  background-repeat: no-repeat;
  background-size: auto;
  position: absolute;
  inset: 0%;
}

.grid-item {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  text-align: left;
  flex-direction: column;
  display: flex;
}

.grid-item.grid-item-center {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.night-sky {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  color: #fff;
  background-image: linear-gradient(#273a7180, #273a7180), url('../images/hero-stars.png'), linear-gradient(#273a71, #273a71);
  background-position: 0 0, 50%, 0 0;
  background-repeat: repeat, no-repeat, repeat;
  background-size: auto, cover, auto;
  background-attachment: scroll, fixed, scroll;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 35rem;
  display: flex;
  position: relative;
  box-shadow: 0 16px 50px #273a711a;
}

.title-center {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 45ch;
  display: flex;
}

.sub-header-dark {
  opacity: .5;
  color: #222;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 1em;
  font-weight: 700;
}

.subheader-clip {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(230deg, #96506f, #273a71 67%);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 400;
}

.grid-card-image {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin-bottom: 0;
}

.grid-item-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  text-align: left;
  justify-content: space-between;
  display: flex;
}

.grid-item-wrapper:where(.w-variant-91a167c1-42a9-7403-8b3b-32d37a187cee) {
  flex-flow: row-reverse;
}

.grid-item-image-wrapper {
  width: 100%;
}

.grid-item-content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-flow: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.grid-card-image-wrapper {
  object-fit: fill;
  height: 250px;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.grid-card-content {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  background-color: #fff;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem;
  display: flex;
}

.grid-card {
  cursor: pointer;
  background-color: #fff;
  border: 1px #fff;
  transition: all .15s ease-in;
  box-shadow: 0 15px 50px #00000005;
}

.grid-card:hover {
  border-style: none;
  border-color: #d1d1d1;
  box-shadow: 0 20px 50px #0000001a;
}

.grid-card-image-overlay {
  opacity: 1;
  background-image: url('../images/hero-stars.png'), linear-gradient(26deg, #273a7180 49%, #96506f80);
  background-position: 50%, 0 0;
  background-size: auto, auto;
  display: none;
  position: absolute;
  inset: 0%;
}

.title {
  grid-column-gap: 1.75rem;
  grid-row-gap: 1.75rem;
  text-align: left;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 30rem;
  display: flex;
}

.s-header {
  color: #fff;
  background-color: #222;
  padding-top: 50px;
  padding-bottom: 50px;
}

.s-body {
  padding-top: 50px;
  padding-bottom: 50px;
}

.hero-link {
  color: #fff;
  border-bottom-color: #fff;
}

.hero-content {
  justify-content: space-between;
  display: flex;
}

.hero-icon-group {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: row;
  display: flex;
}

.social-icon {
  border-bottom-style: none;
}

.subheader-text {
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: .9em;
  font-weight: 600;
}

.hero-overlay-particles {
  position: absolute;
  inset: 0%;
}

.icon-l {
  max-width: 2rem;
}

.top-bar {
  z-index: 99;
  color: #fff;
  background-color: #000;
  justify-content: center;
  align-items: center;
  min-height: 2rem;
  font-size: .85rem;
  font-weight: 500;
  display: flex;
  position: relative;
}

.top-bar-link {
  color: #fff;
  border-bottom-color: #fff;
}

.links-overlay {
  z-index: 999;
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  pointer-events: none;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  padding-bottom: 2rem;
  padding-right: 2rem;
  display: flex;
  position: fixed;
  inset: 0%;
}

.links-overlay-link {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  pointer-events: auto;
  color: #000;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: .25rem;
  justify-content: center;
  align-items: center;
  min-width: 13rem;
  padding: .75rem;
  font-size: .9rem;
  font-weight: 500;
  display: flex;
}

.links-overlay-link-text-outer-wrapper {
  overflow: hidden;
}

.links-overlay-link-text-inner-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  align-items: center;
  position: relative;
}

.links-overlay-link-text.links-overlay-link-text-absolute {
  position: absolute;
}

.display-l {
  font-family: var(--font-family);
  text-transform: uppercase;
  font-size: 4rem;
  font-weight: 300;
  line-height: 1.1em;
}

.body {
  font-family: nimbus-sans, sans-serif;
  font-weight: 300;
}

.title-content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.display-link {
  border-bottom-style: none;
  font-weight: 500;
}

.grid-card-content-content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.logotype {
  font-family: var(--font-family);
  letter-spacing: 6px;
  font-size: 6rem;
  font-weight: 300;
}

.heading {
  font-family: var(--font-family);
  font-weight: 300;
}

@media screen and (max-width: 991px) {
  h2 {
    font-size: 1.75em;
  }

  h3 {
    font-size: 1.5em;
  }

  .section-hero {
    padding-top: 2rem;
  }

  .container {
    grid-column-gap: 6rem;
    grid-row-gap: 6rem;
    max-width: 100%;
  }

  .nav-brand {
    padding-left: 0;
  }

  .nav-menu-button {
    z-index: 11;
    padding: 0;
  }

  .nav-menu-button.w--open {
    z-index: 10;
    background-color: #c8c8c800;
  }

  .nav-menu {
    z-index: 100;
  }

  .title-wrapper {
    z-index: 5;
    align-items: flex-start;
    max-width: 100%;
  }

  .hero-button-group {
    flex-direction: row;
    justify-content: flex-start;
  }

  .night-sky {
    min-height: 400px;
  }

  .title-center {
    max-width: 45ch;
  }

  .grid-item-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-direction: column;
  }

  .grid-card {
    margin-bottom: 0;
  }

  .hero-content {
    flex-direction: column;
  }

  .hero-icon-group {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-wrap: nowrap;
  }

  .subheader-text {
    font-size: 1rem;
  }

  .icon-l {
    max-width: 2rem;
  }

  .top-bar, .links-overlay {
    display: none;
  }

  .display-l {
    font-size: 3rem;
  }

  .logotype {
    font-size: 4.8rem;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.5em;
  }

  .container {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .nav-menu {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .nav-link {
    font-size: .9em;
  }

  .night-sky {
    min-height: 300px;
    padding: 75px 50px;
  }

  .title-center {
    text-align: left;
    align-items: flex-start;
  }

  .grid-item-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-direction: column;
    display: flex;
  }

  .grid-item-image-wrapper, .grid-item-content {
    width: 100%;
    max-width: 100%;
  }

  .display-l {
    font-size: 2.5rem;
  }

  .logotype {
    font-size: 3rem;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 2rem;
  }

  .section-hero {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }

  .container {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .nav-brand {
    max-width: 2rem;
  }

  .nav-menu {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    width: 100vw;
  }

  .title-wrapper {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .hero-button-group {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .button-secondary {
    width: 100%;
  }

  .grid-item {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .night-sky {
    color: #fff;
    padding: 50px 25px;
  }

  .grid-item-wrapper {
    margin-bottom: 75px;
  }

  .grid-card-content {
    padding: 1.5rem;
  }

  .title {
    font-size: 1.5em;
  }

  .display-l {
    font-size: 1.7rem;
  }

  .body {
    font-weight: 300;
  }

  .logotype {
    font-size: 1.8rem;
  }

  .text-span {
    font-weight: 400;
  }
}


