:root {
  --black: black;
  --body-text: #d1d1d1;
  --red: red;
  --mid-grey: #444;
  --transparent: #fff0;
  --api-blue: #4cb4e7;
  --api-blue-dark: #1c7ab5;
  --max-width: 90%;
  --dark-grey: #1d1d1d;
  --white: white;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  background-color: var(--black);
  color: var(--body-text);
  font-family: Red Hat Text, sans-serif;
  font-size: 1.125rem;
  line-height: 1.8;
}

h1 {
  color: var(--red);
  text-align: center;
  margin-top: 0;
  margin-bottom: 1.25rem;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
}

h2 {
  border-bottom: .125rem solid var(--mid-grey);
  color: var(--red);
  margin-top: 0;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  font-size: 2rem;
  font-weight: 700;
}

p {
  margin-bottom: 2.5rem;
}

a {
  color: var(--body-text);
  font-weight: 700;
  text-decoration: underline;
  transition: color .2s;
}

a:hover {
  color: var(--red);
  text-decoration: none;
}

img {
  width: 100%;
  max-width: 100%;
  display: inline-block;
}

.wrapper--page {
  background-color: var(--transparent);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100svh;
  padding-top: 8rem;
  padding-bottom: 8rem;
  display: flex;
}

.img--logo {
  width: 16rem;
  margin-bottom: 3rem;
}

.img--logo.api {
  width: 8rem;
  margin-bottom: 0;
}

.button--api {
  background-color: var(--api-blue);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: .5rem;
  width: 20rem;
  max-width: 90%;
  margin-top: 4rem;
  padding: 1rem 1.5rem;
  font-size: 1.75rem;
  font-weight: 300;
  transition: background-color .35s;
}

.button--api:hover {
  background-color: var(--api-blue-dark);
}

.text--tagline {
  font-size: 1.75rem;
  font-weight: 300;
}

.wrapper--hero {
  max-width: var(--max-width);
  text-align: center;
  margin-bottom: 8rem;
  display: block;
}

.wrapper--main {
  max-width: var(--max-width);
  border-bottom: .125rem solid var(--dark-grey);
  width: 65rem;
  margin-bottom: 8rem;
  padding-bottom: 4rem;
}

.container--highlight {
  border: .125rem solid var(--mid-grey);
  background-color: var(--dark-grey);
  border-radius: .5rem;
  padding: .5rem 1.5rem;
}

.grid--3col {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.wrapper--card {
  border: .125rem solid var(--mid-grey);
  background-color: var(--dark-grey);
  border-radius: .5rem;
  padding: 1rem;
}

.text--product {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 300;
}

.text--product.dl {
  text-align: left;
  font-weight: 700;
  line-height: 1.4;
}

.image--card {
  margin-bottom: 1rem;
}

.wrapper--download {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border: .125rem solid var(--mid-grey);
  background-color: var(--dark-grey);
  border-radius: .5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem;
  display: flex;
}

.container--left {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.icon--dl {
  width: 4rem;
  height: 4rem;
  margin-right: 1rem;
}

.button {
  background-color: var(--mid-grey);
  border-radius: .5rem;
  padding: .5rem 1.5rem;
  transition: background-color .2s;
}

.button:hover {
  background-color: var(--red);
}

.text--sm {
  font-size: .8755rem;
  font-weight: 300;
}

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

.wrapper--nav {
  background-color: #000000d9;
  border: 1px solid #00000080;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 5rem;
  line-height: 1;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.wrapper--navmenu {
  justify-content: space-between;
  align-items: center;
  width: 65rem;
  max-width: 90%;
  display: flex;
}

.link--nav {
  color: var(--body-text);
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 1rem 0;
  transition: color .2s;
}

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

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

@media screen and (max-width: 991px) {
  p, .img--logo {
    margin-bottom: 2rem;
  }

  .text--product {
    line-height: 1.3;
  }

  .wrapper--nav {
    justify-content: flex-end;
    align-items: center;
  }

  .wrapper--navmenu {
    background-color: var(--black);
    width: 100%;
    max-width: 100%;
    height: 100svh;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .link--nav {
    text-align: center;
    font-size: 1.5rem;
  }

  .nav--hamburger {
    padding: 1.5rem;
  }

  .nav--hamburger.w--open {
    background-color: var(--transparent);
  }
}

@media screen and (max-width: 767px) {
  .grid--3col {
    display: block;
  }

  .wrapper--card {
    margin-bottom: 2rem;
  }

  .wrapper--download {
    display: block;
  }

  .container--left {
    margin-bottom: 1rem;
  }
}

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

  h2 {
    text-align: center;
  }

  p {
    font-size: 1rem;
  }

  .wrapper--page {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .button--api {
    font-size: 1.5rem;
  }

  .text--tagline {
    line-height: 1.4;
  }

  .wrapper--hero {
    margin-bottom: 4rem;
  }

  .text--product.dl {
    text-align: center;
    line-height: 1.5;
  }

  .wrapper--download {
    text-align: center;
  }

  .container--left {
    flex-flow: column;
    display: block;
  }

  .icon--dl {
    width: 2rem;
    height: 2rem;
    margin-bottom: 1rem;
    margin-right: 0;
  }

  .text--sm {
    text-align: center;
  }
}


