html {
  font-size: 16px;
  --nav-width: 250px;
  --content-width: 800px;
  --border: 1px solid var(--oc-gray-5);
  --color-1: var(--oc-cyan-8);
  --color-2: #cb4428;
  --layout-padding: 30px;
  --nav-fontsize: 32px;
}
@media (max-width: 925px) {
  html {
    --nav-fontsize: 28px;
    --nav-width: 190px;
    --layout-padding: 20px;
  }
}
@media (max-width: 825px) {
  html {
    font-size: 15px;
  }
}
@media (max-width: 750px) {
  html {
    --nav-width: 0;
  }
}

body {
  font-family: "Noto Sans", sans-serif;
  padding: 0;
  margin: 0;
  line-height: 1.5;
  color: var(--oc-gray-9);
}

i:not(.fa-solid, .fa-brands),
.commonapp {
  font-weight: 600;
  font-style: normal;
  color: var(--oc-gray-7);
  letter-spacing: -0.5px;
  text-transform: uppercase;
  font-size: 0.9em;
}

.commonapp {
  color: var(--oc-cyan-9);
  font-size: 2.5rem;
  letter-spacing: -1.4px;
}

h1 {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}

a {
  color: var(--color-primary);
  text-decoration-thickness: 1px;
}

main {
  max-width: calc(var(--nav-width) + var(--content-width));
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--nav-width);
  position: relative;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: -20px;
  padding: 2rem 0;
}
.logos > div {
  text-align: center;
  margin: 20px;
  max-width: 200px;
  max-height: 90px;
}
.logos a {
  display: block;
  max-height: 100%;
  max-width: 100%;
}
.logos img {
  display: block;
  max-height: 90px;
  max-width: 100%;
}
@media (max-width: 925px) {
  .logos {
    height: 8vw;
    margin: -10px;
  }
  .logos > div {
    margin: 10px;
  }
}
@media (max-width: 750px) {
  .logos {
    flex-direction: column;
    height: auto;
    align-items: center;
    margin: -20px;
  }
  .logos img {
    max-width: 225px;
    height: auto;
  }
  .logos > div {
    margin: 20px;
  }
}

@media (max-width: 825px) {
  .download {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .download a {
    margin-top: 10px;
    margin-left: 0 !important;
  }
}
.section-inside {
  padding: 20px 20px 35px var(--layout-padding);
  border-left: var(--border);
}
@media (max-width: 750px) {
  .section-inside {
    border-left: 0;
  }
}
.section-inside > *:first-child {
  margin-top: 0;
}
.section-inside > *:last-child {
  margin-bottom: 0;
}

section:not(:first-child) {
  border-top: var(--border);
}

ol.stylized,
ul.stylized {
  padding-top: 1rem;
  list-style-type: none;
  counter-reset: list-counter;
  padding-left: 0;
}

ol.stylized > li,
ul.stylized > li {
  counter-increment: list-counter;
  position: relative;
  margin-bottom: 1.75rem;
  padding-left: 3rem;
}

li:last-child {
  margin-bottom: 0 !important;
}

ol.stylized > li::before,
ul.stylized > li summary::before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 38px;
  text-align: right;
  font-size: 1.75rem;
  line-height: 24px;
}

.highlight {
  /*
  text-decoration: underline;
  text-decoration-color: var(--oc-cyan-6);
  text-decoration-style: solid;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.33em;
  */
  font-weight: bold;
}

li li:not(:last-child) {
  padding-bottom: 10px;
}

section.gray {
  background-color: var(--oc-gray-0);
  border-right: var(--border);
  --color-primary: var(--color-2);
}
@media (max-width: 1080) {
  section.gray {
    border-right: 0;
  }
}

@media (max-width: 1080px) {
  html {
    --content-width: 1000px;
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 750px) {
  header {
    display: none;
  }
}

nav {
  max-width: calc(var(--nav-width) + var(--content-width));
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-end;
  height: 100%;
}
nav ul {
  margin-top: 0;
  padding-top: 29px;
  padding-left: 0;
  width: var(--nav-width);
  box-sizing: border-box;
  padding-right: var(--layout-padding);
  list-style-type: none;
  text-align: right;
  font-size: var(--nav-fontsize);
  text-transform: uppercase;
  letter-spacing: -1px;
  pointer-events: auto;
}
nav a {
  color: var(--oc-gray-9);
  text-decoration: none;
}
nav a:hover,
nav a.active {
  color: var(--active-color);
}

summary {
  list-style: none;
  cursor: pointer;
}

summary::-webkit-details-marker {
  /* Hides marker on Safari */
  display: none;
}

details {
  box-sizing: border-box;
  padding-right: 26px;
}
details summary::after {
  content: "\f054";
  font: var(--fa-font-solid);
  position: absolute;
  right: 0;
  top: 5px;
  transform: rotate(90deg);
}
details[open] summary::after {
  transform: rotate(-90deg);
}

details:hover summary,
details:hover summary i,
details[open] summary,
details[open] summary i {
  color: var(--color-2);
}

.resources {
  display: flex;
  align-items: stretch;
  list-style-type: none;
  margin: -10px;
  padding-left: 0;
  padding-right: 0;
  /*
  li:nth-child(2)
  {
      display: flex;
      align-items: center;
      justify-content: center;
  }
  */
}
.resources > li {
  border: var(--border);
  margin: 10px !important;
  padding: 50px 10px;
  text-align: center;
  flex-grow: 1;
  font-weight: bold;
  line-height: 1.2;
}
.resources > li ul {
  list-style-type: none;
  padding: 0;
  padding-top: 5px;
}
.resources > li ul > li {
  margin: 0;
  padding: 0;
  padding-top: 5px;
}
@media (max-width: 750px) {
  .resources {
    flex-direction: column;
  }
}
.resources a {
  text-decoration: none;
}
.resources a:hover {
  text-decoration: underline;
}
.resources a {
  font-size: 14px;
  font-weight: 400;
}

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