nav {
  z-index: 2;
  background-color: var(--darkblue);
  width: 100%;
  height: 8rem;
  font-size: 2rem;
  position: fixed;
  top: 0;
  left: 0;
}

nav .nav-container {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 8rem;
  display: flex;
  position: relative;
}

nav .burger {
  color: var(--almostwhite);
  cursor: pointer;
  z-index: 4;
  background: none;
  border: none;
  font-size: 4rem;
  position: absolute;
  right: clamp(2rem, 3vw, 4rem);
  transform: translateY(-5%);
}

nav .burger-icon {
  color: var(--almostwhite);
  z-index: 5;
  width: clamp(6rem, 8vw, 12rem);
  height: auto;
  padding-top: 2rem;
}

nav .company {
  text-align: center;
  margin: 0;
}

nav .link {
  color: var(--almostwhite);
  margin: clamp(2rem, 8vh, 12rem) 0;
  font-size: clamp(4rem, 10vw, 30rem);
  text-decoration: none;
}

body.menu-open {
  height: 100vh;
  overflow: hidden;
  padding-top: 0 !important;
}

.menu {
  background: var(--darkblue);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding: 0;
  list-style: none;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(-1rem);
}

.menu.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-transition-layer {
  background: var(--lightblue);
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
}

.menu.no-transition {
  transition: none !important;
}

.transition-shape {
  z-index: 10;
  pointer-events: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

.transition-shape path {
  transition: fill .3s;
}

.chevron-button {
  background: var(--darkblue);
  border: clamp(.3rem, 1vw, 2.2rem) solid var(--almostwhite);
  cursor: pointer;
  width: clamp(20rem, 50vw, 110rem);
  height: clamp(6rem, 20vw, 40rem);
  color: var(--lightblue);
  box-shadow: 0 0 0 0 var(--almostwhite);
  border-radius: clamp(.2rem, 4vw, 8rem);
  justify-content: center;
  align-items: center;
  margin: 4rem;
  padding: 1rem 2rem;
  transition: box-shadow .8s, transform .3s, background .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.chevron-button:hover {
  box-shadow: 2rem 2rem 0 0 var(--almostgrey);
  background: var(--darkblue);
}

@media (width <= 1024px) {
  .chevron-button:hover {
    box-shadow: 1.5rem 1.5rem 0 0 var(--almostgrey);
  }
}

@media (width <= 768px) {
  .chevron-button:hover {
    box-shadow: 1rem 1rem 0 0 var(--almostgrey);
  }
}

@media (width <= 576px) {
  .chevron-button:hover {
    box-shadow: .5rem .5rem 0 0 var(--almostgrey);
  }
}

.chevron-button:not(:hover) {
  transition-delay: .1s;
}

.chevron-button:hover .button-text {
  color: var(--yellow);
  transition: all .5s ease-in-out;
  transform: scaleX(1.02);
}

.collab-text {
  z-index: 1;
  font-family: compressa-micro;
  font-size: 6rem;
  position: relative;
}

.button-text {
  font-variation-settings: "wght" 1500, "wdth" 80, "ital" 0;
  text-transform: uppercase;
  z-index: 1;
  font-family: compressa-micro;
  font-size: clamp(3.5rem, 9vw, 25rem);
  transition: all .5s ease-in-out;
  position: relative;
}

.button-text:hover {
  transition: all .2s ease-in-out;
}

.char {
  will-change: transform;
  transition: transform .3s;
  display: inline-block;
}

.char:hover {
  transition: transform .5s ease-in-out;
  transform: scaleY(1)scaleX(.8);
}

.char.animate {
  animation: 2s cubic-bezier(.25, 1.5, .5, 1) forwards squishy-bounce;
}

@keyframes squishy-bounce {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scaleY(1)scaleX(.8);
  }
}

.text-wrapper {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
}

.chevron-svg {
  width: 100%;
  height: 100%;
  fill: var(--darkblue2);
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}

.chevron-button:hover .chevron-svg {
  opacity: 1;
}

.chevron-track {
  animation: 1s linear infinite paused slide-chevron;
}

.chevron-track.active {
  animation-play-state: running;
}

.chevron-button:hover .chevron-track {
  animation: 1s linear infinite slide-chevron;
}

@keyframes slide-chevron {
  0% {
    transform: translateX(-4rem);
  }

  100% {
    transform: translateX(0);
  }
}

footer {
  z-index: 0;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 5rem;
  padding: 2rem;
  text-decoration: none;
  display: flex;
  position: relative;
}

.link-social a {
  padding: 1rem;
  display: flex;
}

li svg {
  width: 3rem;
  height: auto;
  color: var(--almostwhite);
  display: block;
}

.behance {
  padding-top: .6rem;
}

.instagram {
  padding-top: -3rem;
}

.linkedin svg {
  display: block;
  transform: translateY(-.3rem);
}

.footer-socials ul {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 10rem 2rem 2rem;
  display: flex;
}

.footer-socials ul li {
  list-style: none;
  display: flex;
}

.footer-socials ul .link-social {
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer-socials ul .link-social a {
  padding: .5rem;
  display: flex;
}

.footer-socials ul .link-social a svg {
  width: 2.5rem;
  height: auto;
  color: var(--almostwhite);
  transition: transform .2s;
  display: block;
}

.menu-socials ul {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem 2rem 8rem;
  display: flex;
}

.menu-socials ul li {
  list-style: none;
  display: flex;
}

.menu-socials ul .link-social {
  justify-content: center;
  align-items: center;
  display: flex;
}

.menu-socials ul .link-social a {
  padding: .5rem;
  display: flex;
}

.menu-socials ul .link-social a svg {
  width: 2.5rem;
  height: auto;
  color: var(--almostwhite);
  transition: transform .2s;
  display: block;
}

.menu-socials ul li {
  opacity: .6;
}

section.about {
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  display: flex;
}

.about-wrapper {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: clamp(2rem, 4vw, 8rem);
  display: flex;
}

.about-me {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: relative;
}

.about-image-wrapper {
  justify-content: center;
  width: 100%;
  max-width: 400px;
  height: 100%;
  padding-bottom: 7.5rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.about-image {
  object-fit: cover;
  border: .1rem solid #fff;
  border-radius: 10%;
  width: 100%;
  height: 100%;
  display: block;
}

.about-text-wrapper {
  flex-direction: column;
  justify-content: center;
  margin: auto;
  display: flex;
  position: relative;
}

.about-title {
  color: #fff;
  padding-bottom: 4rem;
  font-family: compressa-micro;
  font-size: clamp(4rem, 4vw, 8rem);
}

.about-subtitle {
  color: #fff;
  margin: .5rem 0;
  font-family: compressa-micro;
  font-size: clamp(2rem, 2vw, 5rem);
}

.about-description {
  font-variation-settings: "wght" 300, "wdth" 100, "ital" 1;
  color: #fff;
  margin: 0;
  font-family: compressa-micro;
  font-size: clamp(1.9rem, 3vw, 5rem);
  line-height: 1.5;
}

@media (width <= 600px) {
  section.about {
    height: auto;
    padding: 2rem;
  }

  .about-title {
    text-align: center;
  }

  .about-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .about-image-wrapper {
    padding-bottom: 4rem;
  }

  .about-text-wrapper {
    gap: 2rem;
    margin-left: 0;
  }

  .about-description {
    text-align: left;
  }
}

.nav .link, .footer-link a {
  opacity: 1;
  transition: opacity .8s ease-in-out;
}

.nav.hovering .link:not(:hover), .footer-socials.hovering .link-social:not(:hover), .menu-socials.hovering .link-social:not(:hover) {
  opacity: .3;
  transition: opacity .3s ease-out;
}

.nav .link:hover, .footer-socials .footer-link a:hover, .menu-socials .link-social:hover {
  opacity: 1;
  transition: opacity .2s ease-in;
}

.tooltip-section {
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
  position: relative;
}

.tooltip-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 90rem;
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
}

.tooltip {
  display: inline-block;
  position: relative;
}

.tooltip__trigger {
  z-index: 2;
  cursor: pointer;
  position: relative;
}

.tooltip__base {
  opacity: 0;
  pointer-events: none;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 200px;
  margin-left: -150px;
  display: flex;
  position: absolute;
  bottom: 0%;
  left: 50%;
}

.tooltip__shape {
  width: 100%;
  height: 100%;
  fill: var(--darkblue3);
  position: absolute;
  top: 0;
  left: 0;
}

.tooltip__content {
  text-align: center;
  opacity: 0;
  width: 80%;
  color: var(--yellow);
  justify-content: center;
  padding: 1em 1em 1.8em;
  font-size: 3em;
  display: flex;
  position: relative;
}

.tooltip__trigger-text {
  color: var(--darkblue3);
  font-family: compressa-micro;
  font-size: 1rem;
}

.hero {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50vh;
  display: flex;
  position: relative;
}

.welcome-wrapper {
  width: 100%;
  transform-style: preserve-3d;
  overflow: visible;
}

.welcome {
  transform-origin: 0;
  text-transform: uppercase;
  font-size: clamp(4rem, 10vw, 20rem);
  display: block;
}

section.home {
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.po-title-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: auto;
  max-width: 90rem;
  margin: 0 auto;
  display: flex;
  position: relative;
}

#po-title, .po-a {
  text-transform: uppercase;
  text-align: center;
  -webkit-user-select: none;
  user-select: none;
  place-content: center;
  align-items: center;
  margin: 0;
  font-family: compressa-micro;
  font-size: 8rem;
  font-weight: 100;
  display: flex;
}

.po-qualifier-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

#po-qualifier {
  text-transform: capitalize;
  letter-spacing: 1rem;
  pointer-events: none;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: roboto-flex;
  font-size: clamp(4rem, 10vw, 30rem);
  font-weight: 500;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.word {
  justify-content: center;
  width: 100%;
  display: flex;
  position: absolute;
}

.letter {
  transform-origin: 50% 50% 2.5rem;
  transform-style: preserve-3d;
  opacity: 0;
  display: inline-block;
  position: relative;
  transform: rotateX(-90deg);
}

.letter.in {
  opacity: 1;
  transition: all .5s cubic-bezier(.175, .885, .32, 1.275);
  transform: rotateX(0)translateY(0);
}

.letter.out {
  opacity: 0;
  transition: all .3s cubic-bezier(.55, .055, .675, .19);
  transform: translateY(20rem)rotateX(90deg);
}

.letter.behind {
  transition: all .3s cubic-bezier(.55, .055, .675, .19);
  transform: translateY(-8rem)translateZ(-2rem);
}

@media (width <= 600px) {
  section.home {
    margin-bottom: 5rem;
    padding-top: 12rem;
  }

  #po-qualifier {
    letter-spacing: .5rem;
    font-size: clamp(3rem, 10vw, 20rem);
  }

  .po-qualifier-wrapper {
    margin-bottom: 15rem;
  }
}

.overlay {
  z-index: 999;
  width: 100vw;
  height: 100vh;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.overlay .bar {
  background: var(--darkblue2);
  width: 10vw;
  height: 105vh;
  top: 0;
  left: 0;
}

.counter {
  z-index: 1000;
  color: #faebd7;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding: 10rem 5rem;
  font-family: compressa-micro;
  font-size: 20vw;
  display: flex;
  position: fixed;
}

@media (width <= 600px) {
  .counter {
    justify-content: center;
    align-items: center;
    font-size: 30vw;
  }
}

section#projects {
  width: 100%;
  scroll-margin-top: 8rem;
  display: flex;
}

.projects-wrapper {
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.projects-section-title {
  text-transform: uppercase;
  font-variation-settings: "wght" 300, "wdth" 100, "ital" 1;
  margin-bottom: 3rem;
  font-family: Compressa-micro;
  font-size: clamp(5rem, 5vw, 10rem);
  display: flex;
}

ul#accordion {
  flex-flow: row;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: auto;
  padding-inline-start: 0;
  transition: width .65s cubic-bezier(.37, .07, .02, 1.01) 80ms, min-height .65s cubic-bezier(.37, .07, .02, 1.01) 80ms;
  display: flex;
  overflow: hidden;
}

.projects-respo-wrapper {
  white-space: nowrap;
  width: 100%;
  max-width: 150ch;
}

.accordion-inner {
  box-sizing: border-box;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.accordion-content {
  flex-direction: column;
  place-content: center;
  align-items: flex-start;
  width: 100%;
  margin: 0 auto;
  padding-inline: clamp(3rem, 5vw, 10rem);
  display: flex;
}

.role-title-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

ul#accordion li.accordion-item {
  background-color: #ffffff0d;
  flex-direction: column;
  flex: auto;
  align-self: stretch;
  align-items: center;
  width: 100%;
  height: clamp(100rem, 140vh, 300rem);
  padding-top: 2rem;
  transition: width .65s cubic-bezier(.37, .07, .02, 1.01) 80ms, max-height .65s cubic-bezier(.37, .07, .02, 1.01) 80ms;
  display: flex;
  position: relative;
  overflow: hidden;
}

ul#accordion li:nth-child(2n) {
  background-color: #0000;
}

ul.accordion.project-all-description-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.projects-title, .role, .projects-context, .projects-stack, .heading4-respo, .projects-respo-item, .projects-respo {
  opacity: 0;
  font-family: Compressa-micro;
  transition: font-size .5s, opacity .5s, transform .6s, font-variation-settings .65s cubic-bezier(.37, .07, .02, 1.01) 80ms;
}

.projects-date {
  text-align: center;
  font-variation-settings: "wght" 300, "wdth" 5, "ital" 1;
  text-rendering: optimizeSpeed;
  letter-spacing: .05em;
  font-family: Compressa-micro;
  font-size: clamp(2rem, 2vw, 5rem);
  line-height: 1.2em;
  transition: font-size .5s, opacity .5s, transform .6s, font-variation-settings .65s cubic-bezier(.37, .07, .02, 1.01) 80ms;
}

.projects-respo {
  font-variation-settings: "wght" 150, "wdth" 150, "ital" 1;
  text-rendering: optimizeSpeed;
  letter-spacing: .05em;
  padding-bottom: .2rem;
  padding-left: 2rem;
  font-family: Compressa-micro;
  font-size: clamp(2rem, 2vw, 3rem);
}

.projects-respo-item {
  font-variation-settings: "wght" 150, "wdth" 150, "ital" 1;
  white-space: normal;
  max-width: 250ch;
  padding-left: 5rem;
  font-size: clamp(2rem, 2vw, 3rem);
  line-height: 6rem;
}

.projects-respo-item:before {
  content: "◆";
  padding-left: 2rem;
  font-size: clamp(1rem, 1.5vw, 2rem);
  position: absolute;
  top: 0;
  left: 0;
}

.projects-title, .role {
  font-variation-settings: "wght" 800, "wdth" 100, "ital" 1;
  text-rendering: optimizeSpeed;
  letter-spacing: .05em;
  font-size: 1vw;
  line-height: 1.2em;
}

.projects-context, .projects-stack {
  font-variation-settings: "wght" 300, "wdth" 100, "ital" 1;
  text-rendering: optimizeSpeed;
  letter-spacing: .05em;
  font-size: 1vw;
  line-height: 1.2em;
}

.heading4-respo {
  font-variation-settings: "wght" 500, "wdth" 100, "ital" 1;
  text-rendering: optimizeSpeed;
  letter-spacing: .05em;
  pointer-events: none;
  margin: 0;
  padding-top: 2rem;
  padding-left: 2rem;
  font-size: 2vw;
}

ul#accordion li:hover .accordion-content, ul#accordion li:hover .projects-context, ul#accordion li:hover .projects-respo, ul#accordion li:hover .projects-title, ul#accordion li:hover .heading4-respo, ul#accordion li:hover .projects-respo-item, ul#accordion li:hover .role, ul#accordion li:hover .projects-stack {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

ul#accordion li:hover .projects-title {
  text-align: center;
  padding-bottom: clamp(4rem, 5vw, 8rem);
  font-size: 2vw;
}

ul#accordion li:hover .projects-context {
  font-size: 1vw;
}

ul#accordion li:hover .role {
  text-align: center;
  font-size: 3vw;
  transition: font-size .5s, opacity .5s, transform .6s;
}

ul#accordion li:hover .heading4-respo {
  font-size: 2vw;
  transition: font-size .5s, opacity .5s, transform .6s;
}

ul#accordion li:hover {
  pointer-events: auto;
  cursor: default;
  width: 600%;
}

ul#accordion li.accordion-item:hover .projects-date {
  font-variation-settings: "wght" 800, "wdth" 1, "ital" 1;
  opacity: 1;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 8vw;
}

.project-list {
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  display: grid;
}

@media (width <= 600px) {
  .accordion-content {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    width: 100vw !important;
  }

  .projects-date {
    font-size: 5rem !important;
  }

  li.accordion-item .accordion-content {
    max-height: 0;
    transition: max-height .4s;
    overflow: hidden;
  }

  li.accordion-item.open .accordion-content {
    pointer-events: auto;
    padding-bottom: 5rem;
    max-height: none !important;
  }

  ul#accordion {
    min-height: auto;
    overflow: visible;
    flex-flow: column !important;
    align-items: stretch !important;
  }

  ul#accordion li {
    line-height: 4rem;
  }

  .projects-respo-item {
    line-height: 3rem;
  }

  ul#accordion li.accordion-item {
    pointer-events: auto;
    width: 100% !important;
    height: auto !important;
  }

  ul#accordion li:hover {
    cursor: default;
    width: 100% !important;
  }

  .role {
    padding-top: 3rem;
    padding-bottom: 1rem;
    overflow: visible;
  }

  ul#accordion li.open .projects-title, ul#accordion li.open .projects-context, ul#accordion li.open .projects-respo, ul#accordion li.open .projects-respo-item, ul#accordion li.open .heading4-respo {
    opacity: 1;
    pointer-events: auto;
    line-height: 3rem;
    font-size: 1.6rem !important;
  }

  ul#accordion li.open .role {
    opacity: 1;
    pointer-events: auto;
    font-size: 2rem !important;
  }

  ul#accordion li.open .projects-title {
    padding-bottom: 1rem !important;
  }

  ul#accordion li.open .accordion-inner {
    box-sizing: border-box;
    width: 100% !important;
  }
}

html.safari .projects-date {
  transition: transform .6s;
  transform: scale(1);
}

html.safari li:hover .projects-date {
  transform: scale(1.3);
}

*, :before, :after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

:root {
  --grid-width: 1728px;
  --columns: 12;
  --gutter: 2.4rem;
  --margin: 9rem;
  --columns-width: calc((var(--grid-width)  - 2 * var(--margin)  - 11 * var(--gutter)) / 12);
  --border-radius: 10rem;
  --almostwhite: #fff1f1;
  --almostgrey: #d9d9d9;
  --beige: #ffcdb2;
  --green: #ffb4a2;
  --pink: #e5989b;
  --brownred: #b5828c;
  --darkblue: #001c2c;
  --darkblue2: #316682;
  --othergreen: #598659;
  --othergrey: #a1a1a1;
  --yellow: #ffb300;
  --chevrons: #ffefbc;
  --lightgreen: #37e7a6;
  --lightblue: #90e0ef;
  --darkgreen: #0077b6;
  --darkblue3: #1a2532;
  --purple: #803386;
}

@font-face {
  font-family: GoboldRegular;
  src: url("gobold-regular.ef1e26fc.otf") format("truetype");
}

@font-face {
  font-family: Oswald-light;
  src: url("oswald-light.e33a911c.ttf") format("truetype");
}

@font-face {
  font-family: Oswald-xlight;
  src: url("oswald-xlight.33f30e01.ttf") format("truetype");
}

@font-face {
  font-family: roboto-flex;
  src: url("roboto-flex.766aa3c9.ttf") format("truetype");
}

@font-face {
  font-family: compressa-micro;
  src: url("Compressa-micro.bf19ea45.ttf") format("truetype");
}

h1 {
  margin: 0;
  font-family: compressa-micro;
  font-size: 7rem;
  line-height: 1em;
}

h2 {
  letter-spacing: .05em;
  margin: 0;
  font-family: compressa-micro;
  font-size: 6rem;
}

h3 {
  letter-spacing: .05em;
  color: var(--almostwhite);
  margin: 0;
  font-family: compressa-micro;
  font-size: 5rem;
  font-weight: bolder;
}

h3, h1, a.color, span {
  display: inline-block;
  position: relative;
}

h3 span.random-letter, h1 span.random-letter, a.color span.random-letter, span span.random-letter {
  cursor: default;
  transition: color .3s;
  display: inline;
}

p {
  color: #fff;
  font-family: compressa-micro;
  font-size: 3rem;
}

html, body {
  background: var(--darkblue);
  color: #fff;
  width: 100%;
  margin: 0;
  padding: 6rem 0 0;
  scroll-padding-top: 8rem;
  font-family: compressa-micro;
  font-size: 62.5%;
  overflow-x: hidden;
}

.link {
  color: var(--almostwhite);
  opacity: 1;
  font-family: compressa-micro;
  text-decoration: none;
  transition: all .3s ease-in-out;
}

section {
  width: 100%;
  scroll-margin-top: 8rem;
  display: flex;
  position: relative;
}

section.sticky {
  position: sticky;
}

section.full-screen {
  z-index: 1;
  height: 100vh;
  margin-top: 3rem;
  top: 0;
}

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  left: -9999px;
}

.about-wrapper {
  width: 100%;
  max-width: 80%;
  margin: 0;
  padding: 0;
  display: flex;
}

section.contact {
  flex-direction: column;
  place-content: center;
  align-items: center;
  display: flex;
}
/*# sourceMappingURL=FKCS.ecd7b586.css.map */
