.has-fade {
  visibility: hidden;
  height: 0%;
}

@keyframes fade-in {
  from {
    visibility: hidden;
    height: 0%;
  }
  1% {
    visibility: visible;
    height: 0%;
  }
  to {
    visibility: visible;
    height: 100%;
  }
}
.fade-in {
  animation: fade-in 200ms ease-in forwards;
}

@keyframes fade-out {
  from {
    visibility: visible;
    height: 100%;
  }
  99% {
    visibility: visible;
    height: 99%;
  }
  to {
    visibility: hidden;
    height: 0%;
  }
}
.fade-out {
  animation: fade-out 200ms ease-in forwards;
}

:root {
  font-family: "Public-Sans", sans-serif;
}

html {
  min-height: 100%;
  font-size: 100%;
  box-sizing: border-box;
  background-color: hsl(0deg, 0%, 0%);
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  font-size: 1.125rem;
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.3;
  overflow-x: hidden;
}
body.noscroll {
  overflow: hidden;
}

a,
a:visited,
a:hover {
  text-decoration: none;
}

h1,
h2,
h3 {
  margin-top: 0;
}

pre {
  font-size: 0.8rem;
}

#wrapper {
  max-width: 1440px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  background-color: hsl(0deg, 0%, 100%);
}

.body {
  clear: both;
  padding-bottom: 210px;
}
@media (max-width: 63.9375em) {
  .body {
    padding-bottom: 546px;
  }
}

.container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (max-width: 63.9375em) {
  .container {
    padding: 0 3px;
  }
}

.literal {
  font-family: "Courier New", Courier, monospace;
}

.center {
  text-align: center;
}

.lttext {
  color: hsl(0deg, 0%, 100%);
}

.flex {
  display: flex;
}
.flex-jc-sb {
  justify-content: space-between;
}
.flex-jc-c {
  justify-content: center;
}
.flex-ai-c {
  align-items: center;
}
.flex-ai-end {
  align-items: flex-end;
}
.flex-column {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.flex-wrap {
  flex-wrap: wrap;
}

header {
  background: linear-gradient(to bottom right, hsl(240deg, 100%, 25%), hsl(240deg, 100%, 50%));
}

.header {
  z-index: 3;
}
.header.open .header__toggle > span:first-child {
  transform: rotate(45deg);
}
.header.open .header__toggle > span:nth-child(2) {
  opacity: 0;
}
.header.open .header__toggle > span:last-child {
  transform: rotate(-45deg);
}
.header nav {
  position: relative;
  padding-top: 1.0625rem;
  padding-bottom: 1.0625rem;
}
@media (max-width: 63.9375em) {
  .header nav {
    padding: 5px;
  }
}
.header__logo {
  display: block;
  width: 8rem;
  height: 4rem;
}
.header__logo img {
  width: 100%;
  height: 100%;
}
.header__toggle {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translatey(-50%);
}
.header__toggle > span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: hsl(0deg, 0%, 100%);
  transition: all 300ms ease-in-out;
  transform-origin: 3px 1px;
}
.header__toggle > span:not(:last-child) {
  margin-bottom: 5px;
}
.header__menu__link {
  position: relative;
  color: hsl(0deg, 0%, 100%);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  background-color: hsl(240deg, 100%, 50%);
  border: 2px solid hsl(0deg, 0%, 100%);
  padding: 2px 22px;
  border-radius: 999px;
}
.header__menu__link a:not(:last-child) {
  margin-right: 32px;
}
.header__menu__link a::before {
  content: "";
  display: block;
  position: absolute;
  height: 5px;
  left: 0;
  right: 0;
  bottom: -31px;
  opacity: 0;
  transition: opacity 300ms ease-in-out;
}
.header__menu__link:hover {
  transition: color 300ms ease-in-out;
  background-color: hsl(240deg, 100%, 76%);
  color: hsl(0deg, 0%, 0%);
}
.header__menu__link:hover::before {
  opacity: 1;
}

@media (max-width: 63.9375em) {
  .hide-for-mobile {
    display: none;
  }
}

@media (min-width: 64em) {
  .hide-for-desktop {
    display: none;
  }
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.footer {
  background: linear-gradient(to bottom right, hsl(240deg, 100%, 25%), hsl(240deg, 100%, 50%));
  color: hsl(0deg, 0%, 100%);
  text-align: center;
}

.hero {
  z-index: -1;
  background-color: hsl(240deg, 100%, 25%);
  color: hsl(0deg, 0%, 100%);
}
@media (min-width: 64em) {
  .hero {
    display: flex;
  }
}
.hero__image {
  position: relative;
  content: "";
  background-image: url("../images/website/hero.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  min-height: 24rem;
  flex: 1 1 auto;
  order: 2;
}
.hero__text {
  margin: 0.5rem;
  border-radius: 5px;
  background-color: hsla(0deg, 0%, 100%, 0.25);
  text-align: center;
  flex: 1;
  order: 1;
  padding: 1rem;
}
@media (max-width: 63.9375em) {
  .hero__text {
    margin: 0;
    border-radius: 0;
  }
}
.hero__text h1 {
  font-weight: 400;
  font-size: 2.31rem;
  text-align: center;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero__text p {
  line-height: 1.5;
}

main {
  overflow-x: hidden;
  padding-bottom: 150px;
}

.columns {
  padding: 5px;
  columns: 3;
}
@media (max-width: 87.4375em) {
  .columns {
    columns: 2;
  }
}
@media (max-width: 63.9375em) {
  .columns {
    columns: 1;
  }
}
.columns ul {
  margin: 0 auto;
}

.extras {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}
@media (min-width: 64em) {
  .extras {
    flex-direction: row;
  }
}
.extras__card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 0.25fr 1fr 2fr;
  grid-template-areas: "header" "desc" "image";
  background-color: hsl(240deg, 50%, 25%);
  overflow: hidden;
}
@media (min-width: 40em) {
  .extras__card {
    border-radius: 10px;
    width: 20rem;
  }
}
.extras__card__header {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  background-color: hsl(0deg, 0%, 0%);
  grid-area: header;
}
.extras__card__header a {
  color: hsl(0deg, 0%, 100%);
}
.extras__card__header a:hover {
  color: hsl(0deg, 0%, 50%);
}
.extras__card__description {
  grid-area: desc;
  color: hsl(0deg, 0%, 100%);
}
.extras__card__description p {
  margin: 0;
  padding: 10px;
}
.extras__card__image {
  grid-area: image;
  padding-top: 4px;
  justify-self: center;
  align-self: center;
}

#adverts {
  width: 100%;
  max-width: 1440px;
}

.adsbygoogle {
  margin: 0 auto;
}

@media (min-width: 64em) {
  .manual {
    display: grid;
    grid-template-columns: 250px 1fr;
    grid-template-areas: "manual-menu manual-content";
  }
}
.manual__menu {
  grid-area: manual-menu;
  text-transform: uppercase;
}
.manual__menu h1 {
  font-size: 1.5rem;
  text-align: center;
  margin: 0;
  padding: 0;
  text-decoration: underline;
}
.manual__menu__main {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.manual__menu__main a {
  background-color: hsl(240deg, 100%, 25%);
  border-radius: 0 999px 999px 0;
  color: hsl(0deg, 0%, 100%);
  font-weight: bold;
  padding: 5px;
}
.manual__menu__main a:hover {
  background-color: hsl(0deg, 0%, 0%);
}
.manual__menu__sub {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 2px 0;
}
.manual__menu__sub a {
  background-color: hsl(240deg, 100%, 50%);
  border-radius: 0 999px 999px 0;
  color: hsl(0deg, 0%, 100%);
  font-weight: bold;
  margin-left: 5px;
  padding: 5px;
  font-size: 0.75rem;
}
.manual__menu__sub a:hover {
  background-color: hsl(0deg, 0%, 0%);
}
.manual__content {
  grid-area: manual-content;
}
.manual .figgroup {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
@media (max-width: 87.4375em) {
  .manual .figgroup {
    flex-direction: column;
  }
}
.manual figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 10px;
  margin: 0;
}
.manual figure img {
  max-width: 606px;
}
@media (max-width: 87.4375em) {
  .manual figure img {
    max-width: 100%;
  }
}
.manual figcaption {
  padding: 8px !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  font-style: oblique !important;
  text-align: center !important;
}

.footnote {
  display: grid;
  grid-template-columns: 1fr 11fr;
  grid-template-rows: auto;
}
.footnote-num {
  font-weight: bold;
  grid-column: 1/2;
}
.footnote-desc {
  grid-column: 2/3;
}

.mobile__menu {
  padding: 5px;
  width: 95%;
  margin: 0 auto;
}
.mobile__menu__main {
  border-top: 1px solid black;
}
.mobile__menu__main__item {
  display: block;
  text-align: center;
  padding: 2px;
  border: 1px solid black;
  border-top: none;
}
.mobile__menu__manual {
  border-top: 1px solid black;
}
.mobile__menu__manual__item {
  display: block;
  padding: 2px;
  border: 1px solid black;
  border-top: none;
}
.mobile__menu__manual__sub__item {
  display: block;
  padding: 2px;
  padding-left: 20px;
  font-size: 12px;
  border: 1px solid black;
  border-bottom: none;
}
.mobile__menu h1 {
  font-size: 1.125rem;
  text-align: center;
  margin: 0;
}
.mobile__menu h2 {
  font-size: 14px;
  padding-left: 2px;
  margin: 0;
  border-left: 1px solid black;
  border-right: 1px solid black;
}

.collapsed {
  height: 0;
  visibility: hidden;
}

table {
  max-width: 100%;
}
@media (max-width: 87.4375em) {
  table {
    font-size: 0.75rem;
  }
}
table thead {
  background-color: hsl(240deg, 50%, 25%);
  color: hsl(0deg, 0%, 100%);
}
table th {
  background-color: hsl(240deg, 50%, 25%);
  color: hsl(0deg, 0%, 100%);
  padding: 6px;
}
table td {
  padding: 5px;
  text-align: left;
  min-width: 75px;
}
table tbody > tr:nth-child(2n) {
  background-color: hsl(240deg, 95%, 75%);
}
table .bgblue {
  background-color: hsl(240deg, 95%, 75%);
}
table .bold {
  font-weight: bold;
}
table .ltrl {
  font-family: "Courier New", Courier, monospace;
}
table .cntr {
  text-align: center;
}
table .vtop {
  vertical-align: top;
}

.table {
  display: flex;
  justify-content: space-evenly;
  align-content: center;
  flex-wrap: wrap;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (max-width: 63.9375em) {
  .table {
    padding: 0 3px;
  }
}

.list-none {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.definition-list dt {
  color: hsl(240deg, 100%, 50%);
  font-weight: 900;
}/*# sourceMappingURL=site.css.map */