@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Space+Mono:wght@400;700&family=Space+Grotesk:wght@300..700&display=swap");
:root {
  --heading-font: "Bricolage Grotesque", sans-serif;
  --subheading-font: "Space Mono", monospace;
  --body-font: "Space Grotesk", sans-serif;
  --main-dark: #0a0a0a;
  --main-mid: #131313;
  --main-light: #1c1c1c;
  --accent: #c8f51d;
  --white: #ffffff;
  --grey: #9a9a9a;
  --border: #2a2a2a;
  --container-width: 1180px;
  --nav-height: 0;
}

* {
  box-sizing: border-box;
}

/* width */
::-webkit-scrollbar {
  width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
  background: unset;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--accent);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--white);
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--body-font);
  color: var(--white);
  background-color: var(--main-dark);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 1920px;
  margin: auto;
}

h1,
h2,
h3,
h4 {
  font-family: var(--heading-font);
  font-weight: 800;
  margin-block-start: 0;
  margin-block-end: 0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

p {
  color: var(--grey);
  font-weight: 300;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

ol {
  list-style: none;
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  max-width: 420px;
  background: var(--main-mid);
  border: 1px solid var(--border);
  padding: 1.5rem;
  z-index: 500;
  display: none;
}
.cookie-banner.is-visible {
  display: block;
}
.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.cookie-banner p {
  font-size: 9pt;
  margin: 0;
  line-height: 1.6;
}
.cookie-banner p span {
  color: var(--accent);
  cursor: pointer;
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
}
.cookie-banner__actions .button {
  flex: 1;
  padding: 0.7rem 1rem;
  font-size: 9pt;
}
@media (max-width: 500px) {
  .cookie-banner {
    left: 1rem;
    right: 1rem;
    max-width: 100%;
    bottom: 1rem;
  }
}

.button {
  display: inline-block;
  font-family: var(--subheading-font);
  text-transform: uppercase;
  font-size: 11pt;
  font-weight: 700;
  padding: 1rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: 0.3s ease;
  border: 1px solid transparent;
  border-radius: 7px;
}
@media (max-width: 500px) {
  .button {
    font-size: 10pt;
    padding: 0.9rem 1.5rem;
  }
}
.button--primary {
  background-color: var(--accent);
  color: var(--main-dark);
}
.button--primary:hover {
  opacity: 85%;
}
.button--secondary {
  background-color: transparent;
  border-color: var(--border);
  color: var(--white);
}
.button--secondary:hover {
  border-color: var(--white);
}
.button--outline {
  background-color: transparent;
  border-color: var(--accent);
  color: var(--accent);
}
.button--outline:hover {
  background-color: var(--accent);
  color: var(--main-dark);
}

.mobile-cta {
  display: none;
}
@media (max-width: 800px) {
  .mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent);
    color: var(--main-dark);
    font-family: var(--subheading-font);
    font-size: 10pt;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1.1rem;
    z-index: 300;
    cursor: pointer;
  }
}

.back-to-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1rem;
  border: none;
  color: var(--white);
  background: unset;
  border-radius: 100%;
  font-size: 18pt;
  cursor: pointer;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.back-to-top:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 500px) {
  .back-to-top {
    right: 1rem;
    width: 44px;
    height: 44px;
    font-size: 15pt;
    bottom: 9rem;
  }
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  padding: 1.5rem;
  overflow-y: auto;
}
@media (max-width: 500px) {
  .modal-overlay {
    padding: 1rem;
  }
}

.modal {
  background: var(--main-mid);
  color: var(--white);
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  border: 1px solid var(--border);
  max-height: 90vh;
  overflow-y: auto;
}
.modal__subheader {
  font-family: var(--subheading-font);
  font-size: 9pt;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1rem;
  width: 100%;
}
@media (max-width: 600px) {
  .modal {
    margin: 2.5rem auto;
    padding: 1.75rem 1.5rem;
  }
}
@media (max-width: 400px) {
  .modal {
    padding: 1.5rem 1.25rem;
  }
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}
.modal__close:hover {
  color: var(--grey);
}

.modal__body:empty,
.modal__form-wrap:empty {
  display: none;
}

.modal-contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.modal-contact-form__alt-contact {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 9pt;
  color: var(--grey);
}
.modal-contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.modal-contact-form__field label {
  font-size: 8pt;
  font-family: var(--subheading-font);
  text-transform: uppercase;
  color: var(--grey);
  letter-spacing: 0.05em;
}
.modal-contact-form__field input,
.modal-contact-form__field textarea {
  background: var(--main-light);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 0.6rem;
  font-family: var(--body-font);
  font-size: 16px;
  width: 100%;
  resize: none;
}
.modal-contact-form__field input:focus,
.modal-contact-form__field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.modal-contact-form__field input::-moz-placeholder, .modal-contact-form__field textarea::-moz-placeholder {
  color: var(--grey);
}
.modal-contact-form__field input::placeholder,
.modal-contact-form__field textarea::placeholder {
  color: var(--grey);
}
.modal-contact-form__radio-group {
  display: flex;
  gap: 1rem;
}
.modal-contact-form__radio {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 10pt;
  color: var(--white);
  cursor: pointer;
  font-family: var(--body-font);
  text-transform: none;
  letter-spacing: 0;
}
.modal-contact-form__radio input[type=radio] {
  width: auto;
  accent-color: var(--accent);
}
.modal-contact-form__submit-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.modal-contact-form__submit-row .button {
  width: 100%;
  padding: 0.85rem;
  font-size: 10pt;
}
@media (max-width: 400px) {
  .modal-contact-form__submit-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

.home {
  max-width: 1920px;
  margin: auto;
}
.home__header {
  position: relative;
  z-index: 100;
}
.home__header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  padding: 2rem;
  top: 0;
  position: fixed;
  background: var(--main-dark);
  width: 100%;
  max-width: 1920px;
}
@media (max-width: 800px) {
  .home__header-nav {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem;
  }
}
@media (max-width: 500px) {
  .home__header-nav {
    padding: 1.25rem;
  }
}
.home__header-nav__logo {
  font-family: var(--heading-font);
  font-size: 18pt;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
}
@media (max-width: 500px) {
  .home__header-nav__logo {
    font-size: 15pt;
  }
}
.home__header-nav__logo span {
  color: var(--accent);
}
@media (max-width: 800px) {
  .home__header-nav__links {
    order: 3;
    width: 100%;
  }
}
.home__header-nav__links ul {
  display: flex;
  gap: 2rem;
}
@media (max-width: 800px) {
  .home__header-nav__links ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}
.home__header-nav__links ul li {
  font-family: var(--subheading-font);
  font-size: 9pt;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.home__header-nav__links ul li > a {
  transition: 0.4s ease;
}
.home__header-nav__links ul li > a:hover {
  color: var(--grey);
}
.home__header-nav__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 500px) {
  .home__header-nav__cta {
    gap: 0.6rem;
  }
}
.home__header-nav__cta-whatsapp {
  font-family: var(--subheading-font);
  font-size: 9pt;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 0.6rem 1rem;
  border-radius: 7px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  transition: 0.4s ease;
}
.home__header-nav__cta-whatsapp span {
  padding-right: 5px;
}
.home__header-nav__cta-whatsapp:hover {
  border: 1px solid var(--accent);
}
@media (max-width: 500px) {
  .home__header-nav__cta-whatsapp {
    font-size: 8pt;
    padding: 0.5rem 0.8rem;
  }
}
.home__header-nav__cta-whatsapp span {
  color: var(--accent);
}
.home__header-nav__cta-book {
  background-color: var(--accent);
  color: var(--main-dark);
  font-family: var(--subheading-font);
  font-size: 9pt;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.6rem 1.2rem;
  border-radius: 7px;
  cursor: pointer;
}
@media (max-width: 500px) {
  .home__header-nav__cta-book {
    font-size: 8pt;
    padding: 0.5rem 0.9rem;
  }
}
.home__header-nav__cta-book:hover {
  opacity: 85%;
}
.home__hero {
  display: grid;
  grid-template-columns: 1fr 350px;
  align-items: center;
  max-width: var(--container-width);
  margin: auto;
  padding: 2rem;
  padding-top: calc(var(--nav-height) + 2rem);
  gap: 2rem;
}
@media (max-width: 900px) {
  .home__hero {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    padding-top: calc(var(--nav-height) + 1.5rem);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.home__hero-content__eyebrow h2 {
  font-family: var(--subheading-font);
  font-size: 9pt;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1rem;
  font-family: 300;
}
.home__hero-content__title {
  font-size: 42pt;
  line-height: 1.05;
  color: var(--white);
}
.home__hero-content__title i {
  font-style: normal;
  color: var(--accent);
  display: block;
}
@media (max-width: 900px) {
  .home__hero-content__title {
    font-size: 34pt;
  }
}
@media (max-width: 600px) {
  .home__hero-content__title {
    font-size: 28pt;
  }
}
@media (max-width: 400px) {
  .home__hero-content__title {
    font-size: 24pt;
  }
}
.home__hero-content__tagline {
  font-family: var(--body-font);
  font-size: 11pt;
  margin-top: 1rem;
}
@media (max-width: 500px) {
  .home__hero-content__tagline {
    font-size: 10pt;
  }
}
.home__hero-content__cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 900px) {
  .home__hero-content__cta {
    justify-content: center;
  }
}
@media (max-width: 500px) {
  .home__hero-content__cta {
    flex-direction: column;
  }
  .home__hero-content__cta .button {
    width: 100%;
  }
}
.home__hero-media {
  position: relative;
  width: 350px;
  height: 350px;
  border-radius: 100%;
  overflow: hidden;
}
@media (max-width: 900px) {
  .home__hero-media {
    margin: auto;
  }
}
@media (max-width: 500px) {
  .home__hero-media {
    display: none;
  }
}
.home__hero-media video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home__faq {
  max-width: var(--container-width);
  margin: auto;
  padding: 3rem 2rem;
}
@media (max-width: 700px) {
  .home__faq {
    padding: 2.5rem 1.5rem;
  }
}
@media (max-width: 500px) {
  .home__faq {
    padding: 2rem 1.25rem;
  }
}
.home__faq-header {
  margin-bottom: 2rem;
}
.home__faq-header__eyebrow {
  font-family: var(--subheading-font);
  font-size: 9pt;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1rem;
}
.home__faq-header__title {
  font-size: 26pt;
  color: var(--white);
}
@media (max-width: 600px) {
  .home__faq-header__title {
    font-size: 20pt;
  }
}
.home__faq-list__item {
  border-bottom: 1px solid var(--border);
}
.home__faq-list__item:first-of-type {
  border-top: 1px solid var(--border);
}
.home__faq-list__item-trigger {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  text-align: left;
  padding: 1.5rem 0;
  cursor: pointer;
  font-family: var(--heading-font);
  font-size: 12pt;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
@media (max-width: 500px) {
  .home__faq-list__item-trigger {
    font-size: 10.5pt;
    padding: 1.25rem 0;
    gap: 1rem;
  }
}
.home__faq-list__item-trigger:hover {
  color: var(--accent);
}
.home__faq-list__item-trigger-number {
  font-family: var(--subheading-font);
  font-size: 8pt;
  color: var(--accent);
  flex-shrink: 0;
  font-weight: 400;
}
.home__faq-list__item-trigger-icon {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 16pt;
  color: var(--grey);
  transition: transform 0.3s ease;
  line-height: 1;
}
.home__faq-list__item-body {
  display: none;
  padding: 0 0 1.5rem 0;
  padding-left: calc(8pt + 1.5rem);
}
@media (max-width: 500px) {
  .home__faq-list__item-body {
    padding-left: calc(8pt + 1rem);
  }
}
.home__faq-list__item-body p {
  font-size: 10pt;
  margin: 0;
}
.home__faq-list__item.is-open .home__faq-list__item-trigger-icon {
  transform: rotate(45deg);
  color: var(--accent);
}
.home__faq-list__item.is-open .home__faq-list__item-body {
  display: block;
}
.home__marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .home__marquee {
    padding: 1rem 0;
  }
}
.home__marquee-track {
  display: inline-flex;
  gap: 1rem;
  animation: marquee 25s linear infinite;
}
@media (max-width: 600px) {
  .home__marquee-track {
    gap: 0.75rem;
  }
}
.home__marquee-track span {
  font-family: var(--heading-font);
  font-size: 20pt;
  text-transform: uppercase;
  color: var(--grey);
  font-weight: 700;
}
@media (max-width: 600px) {
  .home__marquee-track span {
    font-size: 13pt;
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-25%);
  }
}
.home__feature-video {
  max-width: var(--container-width);
  margin: 3rem auto;
  padding: 0 2rem;
}
@media (max-width: 600px) {
  .home__feature-video {
    margin: 2rem auto;
    padding: 0 1.25rem;
  }
}
.home__feature-video video {
  width: 100%;
  display: block;
  border-radius: 4px;
}
.home__usp {
  max-width: var(--container-width);
  margin: auto;
  padding: 3rem 2rem;
}
@media (max-width: 700px) {
  .home__usp {
    padding: 2.5rem 1.5rem;
  }
}
@media (max-width: 500px) {
  .home__usp {
    padding: 2rem 1.25rem;
  }
}
.home__usp-title {
  font-size: 26pt;
  color: var(--white);
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 600px) {
  .home__usp-title {
    font-size: 20pt;
  }
}
.home__usp-list__item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.home__usp-list__item:last-of-type {
  border-bottom: none;
}
@media (max-width: 500px) {
  .home__usp-list__item {
    padding: 1.25rem 0;
    gap: 0.75rem;
  }
}
.home__usp-list__item-arrow {
  color: var(--accent);
  font-size: 14pt;
  flex-shrink: 0;
}
.home__usp-list__item-content h3 {
  font-size: 13pt;
  text-transform: none;
  color: var(--white);
  margin-bottom: 0.4rem;
}
@media (max-width: 500px) {
  .home__usp-list__item-content h3 {
    font-size: 11.5pt;
  }
}
.home__usp-list__item-content p {
  font-size: 10pt;
  margin: 0;
}
.home__usp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.home__usp-tags__item {
  font-family: var(--subheading-font);
  font-size: 9pt;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
}
@media (max-width: 500px) {
  .home__usp-tags__item {
    font-size: 8pt;
    padding: 0.5rem 1rem;
  }
}
.home__usp-tags__item--active {
  background-color: var(--accent);
  color: var(--main-dark);
  border-color: var(--accent);
}
.home__skills {
  max-width: var(--container-width);
  margin: auto;
  padding: 3rem 2rem;
}
@media (max-width: 700px) {
  .home__skills {
    padding: 2.5rem 1.5rem;
  }
}
@media (max-width: 500px) {
  .home__skills {
    padding: 2rem 1.25rem;
  }
}
.home__skills-header {
  max-width: 640px;
  margin-bottom: 2.5rem;
}
.home__skills-header__eyebrow {
  font-family: var(--subheading-font);
  font-size: 9pt;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1rem;
}
.home__skills-header__title {
  font-size: 26pt;
  color: var(--white);
  margin-bottom: 1rem;
}
@media (max-width: 600px) {
  .home__skills-header__title {
    font-size: 20pt;
  }
}
.home__skills-header__blurb {
  font-size: 10pt;
  margin: 0;
}
.home__skills-plates {
  display: flex;
  align-items: center;
  gap: 3rem;
  background-color: var(--main-mid);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 700px) {
  .home__skills-plates {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }
}
.home__skills-plates__viz {
  display: flex;
  gap: 1.25rem;
  flex-shrink: 0;
}
.home__skills-plates__viz-plate {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 100%;
  border: 2px solid var(--accent);
  animation: plate-spin 3s linear infinite;
}
.home__skills-plates__viz-plate::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: var(--accent);
  transform: translateX(-50%);
}
.home__skills-plates__viz-plate:nth-child(2) {
  animation-duration: 3.6s;
}
.home__skills-plates__viz-plate--idle {
  border-style: dashed;
  border-color: var(--border);
  animation: none;
}
.home__skills-plates__viz-plate--idle::before {
  background-color: var(--grey);
}
.home__skills-plates__quote {
  font-family: var(--heading-font);
  font-size: 15pt;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  line-height: 1.4;
  color: var(--white);
  margin: 0;
}
@media (max-width: 600px) {
  .home__skills-plates__quote {
    font-size: 13pt;
  }
}
.home__skills-plates__quote i {
  font-style: normal;
  color: var(--accent);
}
.home__skills-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (max-width: 700px) {
  .home__skills-steps {
    grid-template-columns: 1fr;
  }
}
.home__skills-steps__item {
  background-color: var(--main-mid);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
}
@media (max-width: 500px) {
  .home__skills-steps__item {
    padding: 1.5rem 1.25rem;
  }
}
.home__skills-steps__item-number {
  font-family: var(--subheading-font);
  font-size: 9pt;
  color: var(--accent);
  display: block;
  margin-bottom: 1.25rem;
}
.home__skills-steps__item h3 {
  font-size: 13pt;
  text-transform: none;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.home__skills-steps__item-lead {
  font-size: 10pt;
  font-weight: 400;
  color: var(--white);
  margin: 0 0 0.75rem 0;
}
.home__skills-steps__item p {
  font-size: 9.5pt;
  margin: 0;
}
.home__skills-steps__item-body {
  display: none;
}
.home__skills-steps__item-toggle {
  background: none;
  border: none;
  padding: 0;
  margin-top: 1rem;
  cursor: pointer;
  font-family: var(--subheading-font);
  font-size: 9pt;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
}
.home__skills-steps__item-toggle-less {
  display: none;
}
.home__skills-steps__item.is-open .home__skills-steps__item-body {
  display: block;
}
.home__skills-steps__item.is-open .home__skills-steps__item-toggle-more {
  display: none;
}
.home__skills-steps__item.is-open .home__skills-steps__item-toggle-less {
  display: inline;
}
.home__skills-fit {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  margin-bottom: 3.5rem;
}
.home__skills-fit__label {
  font-family: var(--subheading-font);
  font-size: 9pt;
  text-transform: uppercase;
  color: var(--grey);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1.5rem;
}
.home__skills-fit__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 700px) {
  .home__skills-fit__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.home__skills-fit__grid-item span {
  font-family: var(--subheading-font);
  font-size: 9pt;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}
.home__skills-fit__grid-item p {
  font-size: 10pt;
  margin: 0;
}
.home__skills-more__title {
  font-size: 26pt;
  color: var(--white);
  margin-bottom: 1.5rem;
}
@media (max-width: 600px) {
  .home__skills-more__title {
    font-size: 20pt;
  }
}
.home__skills-more__list-item {
  border-bottom: 1px solid var(--border);
}
.home__skills-more__list-item:first-of-type {
  border-top: 1px solid var(--border);
}
.home__skills-more__list-item-trigger {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  text-align: left;
  padding: 1.5rem 0;
  cursor: pointer;
}
@media (max-width: 700px) {
  .home__skills-more__list-item-trigger {
    gap: 1rem;
  }
}
.home__skills-more__list-item-trigger:hover .home__skills-more__list-item-trigger-title {
  color: var(--accent);
}
.home__skills-more__list-item-trigger-title {
  font-family: var(--heading-font);
  font-size: 12pt;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  flex: 0 0 40%;
  transition: 0.3s ease;
}
@media (max-width: 700px) {
  .home__skills-more__list-item-trigger-title {
    flex: 1;
  }
}
@media (max-width: 500px) {
  .home__skills-more__list-item-trigger-title {
    font-size: 10.5pt;
  }
}
.home__skills-more__list-item-trigger-summary {
  font-family: var(--body-font);
  font-weight: 300;
  font-size: 10pt;
  color: var(--grey);
  flex: 1;
}
@media (max-width: 700px) {
  .home__skills-more__list-item-trigger-summary {
    display: none;
  }
}
.home__skills-more__list-item-trigger-icon {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 16pt;
  color: var(--grey);
  line-height: 1;
  transition: transform 0.3s ease;
}
.home__skills-more__list-item-body {
  display: none;
  padding: 0 0 1.5rem 0;
}
.home__skills-more__list-item-body p {
  font-size: 10pt;
  margin: 0;
  max-width: 720px;
}
.home__skills-more__list-item.is-open .home__skills-more__list-item-trigger-icon {
  transform: rotate(45deg);
  color: var(--accent);
}
.home__skills-more__list-item.is-open .home__skills-more__list-item-body {
  display: block;
}
@keyframes plate-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.home__promise {
  max-width: var(--container-width);
  margin: auto;
  padding: 3rem 2rem;
}
@media (max-width: 700px) {
  .home__promise {
    padding: 2.5rem 1.5rem;
  }
}
@media (max-width: 500px) {
  .home__promise {
    padding: 2rem 1.25rem;
  }
}
.home__promise-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
}
.home__promise-header__eyebrow {
  font-family: var(--subheading-font);
  font-size: 9pt;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1rem;
  width: 100%;
}
.home__promise-header__blurb {
  max-width: 350px;
  margin-left: auto;
  text-align: right;
  font-size: 10pt;
}
@media (max-width: 700px) {
  .home__promise-header__blurb {
    text-align: left;
    margin-left: 0;
    max-width: 100%;
  }
}
.home__promise-header__title {
  font-size: 28pt;
  color: var(--white);
  line-height: 1.1;
}
@media (max-width: 600px) {
  .home__promise-header__title {
    font-size: 22pt;
  }
}
.home__promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 700px) {
  .home__promise-grid {
    grid-template-columns: 1fr;
  }
}
.home__promise-grid__item {
  background-color: var(--main-mid);
  border: 1px solid var(--border);
  padding: 1.5rem;
  transition: 0.4s ease;
  border-radius: 8px;
}
@media (max-width: 500px) {
  .home__promise-grid__item {
    padding: 1.25rem;
  }
}
.home__promise-grid__item:hover .home__promise-grid__item-arrow {
  transform: translateX(5px);
}
.home__promise-grid__item-arrow {
  color: var(--accent);
  font-size: 12pt;
  display: block;
  margin-bottom: 1rem;
  transition: 0.4s ease;
}
.home__promise-grid__item h3 {
  font-size: 12pt;
  text-transform: none;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.home__promise-grid__item p {
  font-size: 9pt;
  margin: 0;
}
.home__promise-parents {
  background-color: var(--main-mid);
  border: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  border-radius: 8px;
  margin-top: 1.5rem;
}
@media (max-width: 500px) {
  .home__promise-parents {
    padding: 1.5rem 1.25rem;
  }
}
.home__promise-parents p {
  font-size: 10pt;
  max-width: 500px;
  margin: 0 auto 1.5rem auto;
}
.home__promise-parents p strong {
  color: var(--white);
}
.home__promise-parents p a {
  color: var(--accent);
  text-decoration: underline;
}
.home__areas {
  max-width: var(--container-width);
  margin: auto;
  padding: 3rem 2rem;
}
@media (max-width: 700px) {
  .home__areas {
    padding: 2.5rem 1.5rem;
  }
}
@media (max-width: 500px) {
  .home__areas {
    padding: 2rem 1.25rem;
  }
}
.home__areas-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.home__areas-header__eyebrow {
  font-family: var(--subheading-font);
  font-size: 9pt;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1rem;
  width: 100%;
}
.home__areas-header__title {
  font-size: 26pt;
  color: var(--white);
}
@media (max-width: 600px) {
  .home__areas-header__title {
    font-size: 20pt;
  }
}
.home__areas-header__blurb {
  max-width: 300px;
  text-align: right;
  font-size: 10pt;
}
.home__areas-header__blurb span {
  font-weight: 600;
}
.home__areas-header__blurb a {
  color: var(--accent);
  text-decoration: underline;
}
@media (max-width: 700px) {
  .home__areas-header__blurb {
    text-align: left;
    max-width: 100%;
  }
}
.home__areas-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem 2rem;
}
@media (max-width: 700px) {
  .home__areas-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 450px) {
  .home__areas-list {
    grid-template-columns: 1fr;
  }
}
.home__areas-list li {
  font-size: 10pt;
  color: var(--grey);
  padding: 0.4rem 0;
}
.home__pricing {
  max-width: var(--container-width);
  margin: auto;
  padding: 3rem 2rem;
}
@media (max-width: 700px) {
  .home__pricing {
    padding: 2.5rem 1.5rem;
  }
}
@media (max-width: 500px) {
  .home__pricing {
    padding: 2rem 1.25rem;
  }
}
.home__pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.home__pricing-header__eyebrow {
  font-family: var(--subheading-font);
  font-size: 9pt;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1rem;
  width: 100%;
}
.home__pricing-header__title {
  font-size: 26pt;
  color: var(--white);
  line-height: 1.15;
}
@media (max-width: 600px) {
  .home__pricing-header__title {
    font-size: 20pt;
  }
}
.home__pricing-header__blurb {
  font-size: 10pt;
  text-align: right;
}
@media (max-width: 700px) {
  .home__pricing-header__blurb {
    text-align: left;
  }
}
.home__pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 800px) {
  .home__pricing-grid {
    grid-template-columns: 1fr;
  }
}
.home__pricing-grid__item {
  position: relative;
  background-color: var(--main-mid);
  border: 1px solid var(--border);
  padding: 2rem;
}
@media (max-width: 500px) {
  .home__pricing-grid__item {
    padding: 1.5rem;
  }
}
.home__pricing-grid__item:last-of-type .home__pricing-grid__item-price {
  font-size: 23pt;
}
.home__pricing-grid__item h3 {
  font-size: 12pt;
  text-transform: none;
  color: var(--grey);
  font-weight: 400;
}
.home__pricing-grid__item-price {
  font-family: var(--heading-font);
  font-size: 32pt;
  color: var(--white);
  margin: 0.5rem 0;
  font-weight: 600;
}
@media (max-width: 500px) {
  .home__pricing-grid__item-price {
    font-size: 26pt;
  }
}
.home__pricing-grid__item-price span {
  font-size: 12pt;
  color: var(--grey);
}
.home__pricing-grid__item p {
  font-size: 9pt;
  margin-bottom: 1.5rem;
}
.home__pricing-grid__item .button {
  width: 100%;
}
.home__pricing-grid__item--popular {
  border-color: var(--accent);
}
.home__pricing-grid__item--popular .home__pricing-grid__item-price {
  color: var(--accent);
}
.home__pricing-grid__item-badge {
  position: absolute;
  top: -12px;
  left: 2rem;
  background-color: var(--accent);
  color: var(--main-dark);
  font-family: var(--subheading-font);
  font-size: 8pt;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}
@media (max-width: 500px) {
  .home__pricing-grid__item-badge {
    left: 1.5rem;
  }
}
.home__cta {
  position: relative;
  margin-top: 3rem;
  padding: 0 2rem;
}
@media (max-width: 700px) {
  .home__cta {
    margin-top: 2rem;
    padding: 0 1.5rem;
  }
}
@media (max-width: 500px) {
  .home__cta {
    padding: 0 1.25rem;
  }
}
.home__cta picture {
  display: block;
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 4px;
}
@media (max-width: 700px) {
  .home__cta picture {
    height: 280px;
  }
}
@media (max-width: 500px) {
  .home__cta picture {
    height: 240px;
  }
}
.home__cta picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 60%;
}
.home__cta-content {
  max-width: var(--container-width);
  margin: auto;
  position: absolute;
  inset: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem;
}
@media (max-width: 700px) {
  .home__cta-content {
    inset: 0 1.5rem;
    gap: 1.5rem;
  }
}
@media (max-width: 500px) {
  .home__cta-content {
    inset: 0 1.25rem;
  }
}
.home__cta-content h2 {
  font-size: 32pt;
  color: var(--white);
}
@media (max-width: 600px) {
  .home__cta-content h2 {
    font-size: 22pt;
  }
}
@media (max-width: 400px) {
  .home__cta-content h2 {
    font-size: 18pt;
  }
}
@media (max-width: 500px) {
  .home__cta-content .button {
    width: 100%;
  }
}
.home__videos {
  max-width: var(--container-width);
  margin: auto;
  padding: 3rem 2rem;
}
@media (max-width: 700px) {
  .home__videos {
    padding: 2.5rem 1.5rem;
  }
}
@media (max-width: 500px) {
  .home__videos {
    padding: 2rem 1.25rem;
  }
}
.home__videos-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.home__videos-header__eyebrow {
  font-family: var(--subheading-font);
  font-size: 9pt;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1rem;
  width: 100%;
}
.home__videos-header__title {
  font-size: 24pt;
  color: var(--white);
}
@media (max-width: 600px) {
  .home__videos-header__title {
    font-size: 19pt;
  }
}
.home__videos-header__subscribe {
  font-family: var(--subheading-font);
  font-size: 9pt;
  text-transform: uppercase;
  color: #ff3b3b;
  border: 1px solid var(--border);
  padding: 0.6rem 1rem;
}
.home__videos-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 1.5rem;
}
@media (max-width: 800px) {
  .home__videos-grid {
    grid-template-columns: 1fr;
  }
}
.home__videos-grid__feature-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: var(--main-light);
  border-radius: 4px;
  cursor: pointer;
}
.home__videos-grid__feature-info {
  margin-top: 1rem;
}
.home__videos-grid__feature-info h3 {
  font-size: 13pt;
  text-transform: none;
  color: var(--white);
}
.home__videos-grid__feature-info p {
  font-size: 10pt;
  margin: 0.3rem 0 0 0;
}
.home__videos-grid__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.home__videos-grid__list li {
  display: flex;
  gap: 1rem;
}
.home__videos-grid__list-thumb {
  width: 110px;
  height: 70px;
  flex-shrink: 0;
  background-color: var(--main-light);
  border-radius: 4px;
  cursor: pointer;
}
@media (max-width: 400px) {
  .home__videos-grid__list-thumb {
    width: 90px;
    height: 58px;
  }
}
.home__videos-grid__list-info h4 {
  font-size: 10pt;
  text-transform: none;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.home__videos-grid__list-info span {
  font-size: 9pt;
  color: var(--grey);
}
.home__videos-seeall {
  display: block;
  text-align: center;
  margin-top: 2rem;
  font-family: var(--subheading-font);
  font-size: 9pt;
  text-transform: uppercase;
  color: var(--accent);
}
.home__footer {
  border-top: 1px solid var(--border);
}
.home__footer-content {
  max-width: var(--container-width);
  margin: auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 700px) {
  .home__footer-content {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem;
  }
}
@media (max-width: 500px) {
  .home__footer-content {
    padding: 2rem 1.25rem;
  }
}
.home__footer-content__brand-logo {
  font-family: var(--heading-font);
  font-size: 16pt;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
}
.home__footer-content__brand-logo span {
  color: var(--accent);
}
.home__footer-content__brand p {
  font-size: 9pt;
  margin-top: 0.8rem;
  max-width: 250px;
}
@media (max-width: 700px) {
  .home__footer-content__brand p {
    max-width: 100%;
  }
}
.home__footer-content__lessons-label, .home__footer-content__contact-label {
  font-family: var(--subheading-font);
  font-size: 8pt;
  text-transform: uppercase;
  color: var(--grey);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1rem;
}
.home__footer-content__lessons ul, .home__footer-content__contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.home__footer-content__lessons ul li, .home__footer-content__contact ul li {
  font-size: 10pt;
  cursor: pointer;
  transition: 0.4s;
}
.home__footer-content__lessons ul li:hover, .home__footer-content__contact ul li:hover {
  color: var(--grey);
}
.home__footer-content__contact ul li:first-of-type a {
  color: var(--accent);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.home__footer-content__contact ul li:first-of-type a svg {
  margin-right: 5px;
}
.home__footer-bottom {
  border-top: 1px solid var(--border);
}
.home__footer-bottom p {
  max-width: var(--container-width);
  margin: auto;
  padding: 1.5rem 2rem;
  font-size: 9pt;
}
@media (max-width: 700px) {
  .home__footer-bottom p {
    padding: 1.25rem 1.5rem;
  }
}
@media (max-width: 500px) {
  .home__footer-bottom p {
    padding: 1.25rem;
    font-size: 8pt;
    line-height: 1.8;
    padding-bottom: 5rem;
  }
}
.home__footer-bottom p span {
  cursor: pointer;
}

.chat-bubble {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  z-index: 200;
}
@media (max-width: 500px) {
  .chat-bubble {
    bottom: 4.5rem;
    right: 1rem;
  }
}
.chat-bubble__icon {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: var(--accent);
  color: var(--main-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18pt;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}
.chat-bubble__icon:hover {
  opacity: 85%;
}
@media (max-width: 400px) {
  .chat-bubble__icon {
    width: 44px;
    height: 44px;
    font-size: 15pt;
  }
}
.chat-bubble__box {
  display: none;
  background: var(--main-mid);
  border: 1px solid var(--border);
  width: 300px;
  padding: 1.5rem;
  flex-direction: column;
  gap: 1rem;
}
.chat-bubble__box.is-open {
  display: flex;
}
@media (max-width: 500px) {
  .chat-bubble__box {
    width: calc(100vw - 2rem);
  }
}
.chat-bubble__box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-bubble__box-header span {
  font-family: var(--subheading-font);
  font-size: 8pt;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.chat-bubble__box-close {
  background: none;
  border: none;
  color: var(--grey);
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}
.chat-bubble__box-close:hover {
  color: var(--white);
}
.chat-bubble__call {
  width: 100%;
  text-align: center;
  padding: 0.85rem;
  font-size: 10pt;
}
.chat-bubble__divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--grey);
  font-size: 8pt;
  font-family: var(--subheading-font);
  text-transform: uppercase;
}
.chat-bubble__divider::before, .chat-bubble__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.chat-bubble__form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.chat-bubble__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.chat-bubble__field label {
  font-size: 8pt;
  font-family: var(--subheading-font);
  text-transform: uppercase;
  color: var(--grey);
  letter-spacing: 0.05em;
}
.chat-bubble__field input,
.chat-bubble__field textarea {
  background: var(--main-light);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 0.6rem;
  font-family: var(--body-font);
  font-size: 10pt;
  width: 100%;
  resize: none;
  font-size: 16px;
}
.chat-bubble__field input:focus,
.chat-bubble__field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.chat-bubble__field input::-moz-placeholder, .chat-bubble__field textarea::-moz-placeholder {
  color: var(--grey);
}
.chat-bubble__field input::placeholder,
.chat-bubble__field textarea::placeholder {
  color: var(--grey);
}
.chat-bubble__radio-group {
  display: flex;
  gap: 1rem;
}
.chat-bubble__radio {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 10pt;
  color: var(--white);
  cursor: pointer;
  font-family: var(--body-font);
  text-transform: none;
  letter-spacing: 0;
}
.chat-bubble__radio input[type=radio] {
  width: auto;
  accent-color: var(--accent);
}
.chat-bubble__submit {
  width: 100%;
  padding: 0.85rem;
  font-size: 10pt;
}
.chat-bubble__status {
  font-size: 9pt;
  text-align: center;
  margin: 0;
}
.chat-bubble__status--success {
  color: var(--accent);
}
.chat-bubble__status--error {
  color: #ff3b3b;
}
.chat-bubble__trigger {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (max-width: 500px) {
  .chat-bubble__trigger .chat-bubble__prompt {
    display: none;
  }
}
.chat-bubble__prompt {
  background-color: var(--main-mid);
  border: 1px solid var(--border);
  font-size: 9pt;
  padding: 0.8rem 1.2rem;
  border-radius: 100px;
  color: var(--grey);
  cursor: pointer;
}
.chat-bubble__prompt-cta {
  color: var(--accent);
  font-weight: 700;
}

.error-404 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  padding-top: calc(var(--nav-height) + 2rem);
  overflow: hidden;
}
.error-404__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--heading-font);
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: clamp(220px, 42vw, 560px);
  line-height: 1;
  color: #101010;
  white-space: nowrap;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 1;
}
.error-404__inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.error-404__eyebrow {
  font-family: var(--subheading-font);
  font-size: 9pt;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 1.75rem;
}
.error-404__title {
  font-size: 52pt;
  line-height: 0.98;
  color: var(--white);
  margin: 0;
}
.error-404__title i {
  font-style: normal;
  color: var(--accent);
}
@media (max-width: 700px) {
  .error-404__title {
    font-size: 38pt;
  }
}
@media (max-width: 500px) {
  .error-404__title {
    font-size: 30pt;
  }
}
.error-404__road {
  width: min(420px, 80vw);
  height: 6px;
  margin: 2.5rem 0;
  border-radius: 99px;
  background-image: linear-gradient(90deg, var(--accent) 0 44px, transparent 44px 80px);
  background-size: 80px 100%;
  background-repeat: repeat-x;
  animation: road-dash 0.9s linear infinite;
}
.error-404__blurb {
  font-size: 12pt;
  color: var(--grey);
  line-height: 1.6;
  max-width: 460px;
  margin: 0 0 2.5rem 0;
}
@media (max-width: 500px) {
  .error-404__blurb {
    font-size: 11pt;
  }
}
.error-404__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.error-404__cta .button {
  white-space: nowrap;
}
@media (max-width: 500px) {
  .error-404__cta {
    flex-direction: column;
    width: 100%;
  }
  .error-404__cta .button {
    width: 100%;
  }
}
.error-404__link {
  font-size: 10pt;
  color: var(--grey);
  margin-top: 2rem;
  text-decoration: none;
}
.error-404__link:hover {
  color: var(--accent);
}

@keyframes road-dash {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -80px 0;
  }
}/*# sourceMappingURL=style.css.map */