/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
:root {
  --primaryColor: #bb1450;
  --backgroundColor: #fff;
  --textColor: #000;
  --altTextColor: rgb(255, 255, 255);
  --textColor-1: #333;
  --textColor-2: rgb(78, 78, 78);
  --textColor-3: rgb(156, 156, 156);
  --cardBackgroundColor: #fff;
  --bg-1: #fff0fb;
  --bg-2: #dff5ff;
  --buttonTextColor: #fff;
  --footerColor: #333;
  --footerText: #fff;
  --color-moon: #000;
  --color-sun: rgb(255, 221, 0);
  --color-green: #00bd19;
}

.dark {
  --primaryColor: rgb(255, 221, 0);
  --backgroundColor: rgb(34, 34, 34);
  --textColor: #fff;
  --altTextColor: #000;
  --textColor-1: rgb(230, 230, 230);
  --textColor-2: rgb(207, 207, 207);
  --textColor-3: rgb(139, 130, 0);
  --cardBackgroundColor: #2f3136;
  --bg-1: #000428;
  --bg-2: #002d55;
  --buttonTextColor: #000;
  --footerColor: #333;
  --footerText: #fff;
}

@-webkit-keyframes moveInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10rem);
            transform: translateX(-10rem);
  }
  80% {
    -webkit-transform: translateX(1rem);
            transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@keyframes moveInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10rem);
            transform: translateX(-10rem);
  }
  80% {
    -webkit-transform: translateX(1rem);
            transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@-webkit-keyframes moveInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10rem);
            transform: translateX(10rem);
  }
  80% {
    -webkit-transform: translateX(-1rem);
            transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10rem);
            transform: translateX(10rem);
  }
  80% {
    -webkit-transform: translateX(-1rem);
            transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@-webkit-keyframes moveInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3rem);
            transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3rem);
            transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
html ul {
  list-style: none;
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}

body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

header, main {
  background-image: -webkit-gradient(linear, left top, right top, from(var(--bg-1)), to(var(--bg-2)));
  background-image: linear-gradient(to right, var(--bg-1) 0%, var(--bg-2) 100%);
}

.container {
  margin-inline: auto;
  max-width: 114rem;
}
@media only screen and (max-width: 75em) {
  .container {
    max-width: 95rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .container {
    max-width: 70rem;
  }
}

::-moz-selection {
  background-color: var(--primaryColor);
  color: var(--altTextColor);
}

::selection {
  background-color: var(--primaryColor);
  color: var(--altTextColor);
}

/* atkinson-hyperlegible-regular - latin */
@font-face {
  font-family: "Atkinson Hyperlegible";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/atkinson-hyperlegible-v9-latin-regular.eot");
  /* IE9 Compat Modes */
  src: local(""), url("/assets/fonts/atkinson-hyperlegible-v9-latin-regular.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/atkinson-hyperlegible-v9-latin-regular.woff2") format("woff2"), url("/assets/fonts/atkinson-hyperlegible-v9-latin-regular.woff") format("woff"), url("/assets/fonts/atkinson-hyperlegible-v9-latin-regular.ttf") format("truetype"), url("/assets/fonts/atkinson-hyperlegible-v9-latin-regular.svg#AtkinsonHyperlegible") format("svg");
  /* Legacy iOS */
  font-display: swap;
}
/* atkinson-hyperlegible-italic - latin */
@font-face {
  font-family: "Atkinson Hyperlegible";
  font-style: italic;
  font-weight: 400;
  src: url("/assets/fonts/atkinson-hyperlegible-v9-latin-italic.eot");
  /* IE9 Compat Modes */
  src: local(""), url("/assets/fonts/atkinson-hyperlegible-v9-latin-italic.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/atkinson-hyperlegible-v9-latin-italic.woff2") format("woff2"), url("/assets/fonts/atkinson-hyperlegible-v9-latin-italic.woff") format("woff"), url("/assets/fonts/atkinson-hyperlegible-v9-latin-italic.ttf") format("truetype"), url("/assets/fonts/atkinson-hyperlegible-v9-latin-italic.svg#AtkinsonHyperlegible") format("svg");
  /* Legacy iOS */
  font-display: swap;
}
/* atkinson-hyperlegible-700 - latin */
@font-face {
  font-family: "Atkinson Hyperlegible";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/fonts/atkinson-hyperlegible-v9-latin-700.eot");
  /* IE9 Compat Modes */
  src: local(""), url("/assets/fonts/atkinson-hyperlegible-v9-latin-700.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/atkinson-hyperlegible-v9-latin-700.woff2") format("woff2"), url("/assets/fonts/atkinson-hyperlegible-v9-latin-700.woff") format("woff"), url("/assets/fonts/atkinson-hyperlegible-v9-latin-700.ttf") format("truetype"), url("/assets/fonts/atkinson-hyperlegible-v9-latin-700.svg#AtkinsonHyperlegible") format("svg");
  /* Legacy iOS */
  font-display: swap;
}
/* atkinson-hyperlegible-700italic - latin */
@font-face {
  font-family: "Atkinson Hyperlegible";
  font-style: italic;
  font-weight: 700;
  src: url("/assets/fonts/atkinson-hyperlegible-v9-latin-700italic.eot");
  /* IE9 Compat Modes */
  src: local(""), url("/assets/fonts/atkinson-hyperlegible-v9-latin-700italic.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/atkinson-hyperlegible-v9-latin-700italic.woff2") format("woff2"), url("/assets/fonts/atkinson-hyperlegible-v9-latin-700italic.woff") format("woff"), url("/assets/fonts/atkinson-hyperlegible-v9-latin-700italic.ttf") format("truetype"), url("/assets/fonts/atkinson-hyperlegible-v9-latin-700italic.svg#AtkinsonHyperlegible") format("svg");
  /* Legacy iOS */
  font-display: swap;
}
@font-face {
  font-family: "NetNotulen";
  src: url("/assets/fonts/Net-Notulen.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonticons/google-font-icons.woff2") format("woff2");
  font-display: swap;
}
.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Atkinson Hyperlegible", sans-serif, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: var(--textColor);
}

.heading-primary, .heading-secondary, .heading-tertiary {
  font-family: "NetNotulen", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--textColor);
}

.heading-primary {
  font-size: 6rem;
}

.heading-secondary {
  font-size: 4rem;
}

.heading-tertiary {
  font-size: 2.5rem;
}

.paragraph {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
}

.u-center-text {
  text-align: center !important;
}

.u-margin-bottom-small {
  margin-bottom: 1.5rem !important;
}

.u-margin-bottom-medium {
  margin-bottom: 4rem !important;
}
@media only screen and (max-width: 56.25em) {
  .u-margin-bottom-medium {
    margin-bottom: 3rem !important;
  }
}

.u-margin-bottom-big {
  margin-bottom: 8rem !important;
}
@media only screen and (max-width: 56.25em) {
  .u-margin-bottom-big {
    margin-bottom: 5rem !important;
  }
}

.u-margin-top-big {
  margin-top: 8rem !important;
}

.u-margin-top-huge {
  margin-top: 10rem !important;
}

.btn, .btn:link, .btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.5rem 4rem;
  display: inline-block;
  border-radius: 10rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: relative;
  font-size: 1.6rem;
  font-size: 1.4rem;
  letter-spacing: 0.15rem;
  cursor: pointer;
  -webkit-box-shadow: 0 4px 6px hsla(0deg, 0%, 0%, 0.2);
          box-shadow: 0 4px 6px hsla(0deg, 0%, 0%, 0.2);
}
.btn:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 10px 24px hsla(0deg, 0%, 0%, 0.2);
          box-shadow: 0 10px 24px hsla(0deg, 0%, 0%, 0.2);
}
.btn:hover::after {
  -webkit-transform: scaleX(1.4) scaleY(1.6);
          transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}
.btn:active, .btn:focus {
  outline: none;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 5px 15px hsla(0deg, 0%, 0%, 0.2);
          box-shadow: 0 5px 15px hsla(0deg, 0%, 0%, 0.2);
}
.btn--primary {
  color: var(--buttonTextColor);
  background-color: var(--primaryColor);
}
.btn--secondary {
  background-color: var(--primaryColor);
  color: var(--buttonTextColor);
  border: 2px solid var(--primaryColor);
}

footer {
  background-color: var(--footerColor);
}

.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__top > * {
  margin: 5rem 0;
  width: 35%;
}
@media only screen and (max-width: 75em) {
  .footer__top > * {
    width: 50%;
  }
}
@media only screen and (max-width: 56.25em) {
  .footer__top > * {
    width: 70%;
    margin: 2.5rem 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .footer__top > * {
    width: 90%;
  }
}
@media only screen and (max-width: 56.25em) {
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}
.footer__logo {
  height: 7rem;
}
@media only screen and (max-width: 56.25em) {
  .footer__logo {
    margin-top: 2rem;
  }
}
.footer__disclaimer-text {
  font-size: 1.4rem;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  color: var(--footerText) !important;
}
.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid var(--textColor-2);
}
.footer__bottom > * {
  width: 35%;
  padding: 2rem 0;
}
@media only screen and (max-width: 75em) {
  .footer__bottom > * {
    width: 50%;
  }
}
@media only screen and (max-width: 56.25em) {
  .footer__bottom > * {
    width: 70%;
    padding: 2rem 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .footer__bottom > * {
    width: 90%;
  }
}
@media only screen and (max-width: 56.25em) {
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}
.footer__copyright {
  font-size: 1.5rem;
  text-align: left;
  color: var(--footerText) !important;
}
@media only screen and (max-width: 56.25em) {
  .footer__copyright {
    text-align: center;
  }
}
.footer__policies {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5rem;
  font-size: 1.5rem;
  text-align: right;
}
@media only screen and (max-width: 37.5em) {
  .footer__policies {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}
.footer__link {
  text-decoration: none;
  cursor: pointer;
  color: var(--footerText) !important;
}

.row {
  max-width: 114rem;
  margin: 0 auto;
}
.row:not(:last-child) {
  margin-bottom: 8rem;
}
@media only screen and (max-width: 56.25em) {
  .row:not(:last-child) {
    margin-bottom: 6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .row {
    max-width: 50rem;
    padding: 0 3rem;
  }
}
.row::after {
  content: "";
  display: table;
  clear: both;
}
.row [class^=col-] {
  float: left;
}
.row [class^=col-]:not(:last-child) {
  margin-right: 6rem;
}
@media only screen and (max-width: 56.25em) {
  .row [class^=col-]:not(:last-child) {
    margin-right: 0;
    margin-bottom: 6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .row [class^=col-] {
    width: 100% !important;
  }
}
.row .col-1-of-2 {
  width: calc((100% - 6rem) / 2);
}
.row .col-1-of-3 {
  width: calc((100% - 2 * 6rem) / 3);
}
.row .col-2-of-3 {
  width: calc(2 * ((100% - 2 * 6rem) / 3) + 6rem);
}
.row .col-1-of-4 {
  width: calc((100% - 3 * 6rem) / 4);
}
.row .col-2-of-4 {
  width: calc(2 * ((100% - 3 * 6rem) / 4) + 6rem);
}
.row .col-3-of-4 {
  width: calc(3 * ((100% - 3 * 6rem) / 4) + 2 * 6rem);
}

header {
  height: 10vh;
}
@media only screen and (max-width: 37.5em) {
  header {
    height: auto;
  }
}

nav,
.navbar {
  height: 100%;
}

.navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 37.5em) {
  .navbar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}
.navbar__brand-logoLight, .navbar__brand-logoDark {
  display: none;
  height: 5rem;
  margin-top: 2rem;
}
[data-theme=light] .navbar__brand-logoDark {
  display: inline;
}
[data-theme=dark] .navbar__brand-logoLight {
  display: inline;
}
.navbar__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.5rem;
  font-weight: 700;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8rem;
}
@media only screen and (max-width: 37.5em) {
  .navbar__items {
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin: 1rem 0;
  }
}
.navbar__links {
  color: var(--textColor);
}
.navbar__links:not(:hover) {
  text-decoration: none;
}
.navbar__links:hover {
  text-underline-offset: 0.5rem;
  color: var(--primaryColor);
  -webkit-text-decoration-color: var(--textColor);
          text-decoration-color: var(--textColor);
}
.navbar__mode {
  background: none;
  border: none;
  position: relative;
  cursor: pointer;
}
.navbar__mode > * {
  height: 2rem;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -70%);
          transform: translate(-50%, -70%);
}
.navbar__mode-moon {
  color: var(--color-moon);
}
.navbar__mode-sun {
  color: var(--color-sun);
}

body.dark .navbar__mode-moon {
  vertical-align: middle;
  color: var(--color-moon);
  -webkit-transform: translate(-50%, 3rem);
          transform: translate(-50%, 3rem);
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
body.dark .navbar__mode-sun {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
}

body:not(.dark) .navbar__mode-moon {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
}
body:not(.dark) .navbar__mode-sun {
  color: var(--color-sun);
  -webkit-transform: translate(-50%, -3rem);
          transform: translate(-50%, -3rem);
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media only screen and (max-width: 37.5em) {
  .container {
    padding: 0 2rem;
  }
}
.container h1, .container h2, .container p {
  color: var(--textColor);
}
.container h1 {
  padding: 2rem 0;
  font-size: 5rem !important;
  font-weight: 700;
}
.container h2 {
  padding-top: 3rem;
  font-size: 3rem !important;
  font-weight: 700;
}
.container p {
  font-size: 1.6rem !important;
  font-weight: 400;
  padding-bottom: 2rem;
}
.container p a {
  color: var(--primaryColor);
}