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

html,
body {
  margin: 0;
  padding: 0;
  background: white;
  position: relative;
}
@media (prefers-color-scheme: dark) {
  html,
body {
    background: #2b2233;
  }
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: #5B69E6;
  transition: color 0.3s ease-in-out;
}
a:hover, a:focus {
  color: #4959E4;
}
@media (prefers-color-scheme: dark) {
  a {
    color: #FFCB6B;
  }
  a:hover, a:focus {
    color: #FFDFA3;
  }
}

*:focus {
  outline: 2px dotted #2b2233;
  outline-offset: 4px;
}
@media (prefers-color-scheme: dark) {
  *:focus {
    outline: 2px dotted #fff;
  }
}

.loading-icon {
  background-image: url("../images/loading-lightmode.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  width: 150px;
  height: 150px;
  display: block;
  margin-top: -2rem;
  margin-bottom: -1rem;
  margin-left: auto;
  margin-right: auto;
}

@font-face {
  font-family: "nutmeg";
  src: url("../fonts/nutmeg-book.woff2") format("woff2"), url("../fonts/nutmeg-book.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "nutmeg";
  src: url("../fonts/nutmeg-book-italic.woff2") format("woff2"), url("../fonts/nutmeg-book-italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "nutmeg";
  src: url("../fonts/nutmeg-bold.woff2") format("woff2"), url("../fonts/utmeg-bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "nutmeg";
  src: url("../fonts/nutmeg-bold-italic.woff2") format("woff2"), url("../fonts/nutmeg-bold-italic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
}
html {
  font-size: 100%;
}

body {
  font-family: "nutmeg", verdana, arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #2b2233;
}
@media (min-width: 768px) {
  body {
    font-size: 1.125rem;
  }
}
@media (min-width: 1500px) {
  body {
    font-size: 1.375rem;
  }
}
@media (prefers-color-scheme: dark) {
  body {
    color: #dfdce0;
  }
}

h1, h2, h3, h4, h5, h6 {
  color: #1F1924;
}
@media (prefers-color-scheme: dark) {
  h1, h2, h3, h4, h5, h6 {
    color: #fff;
  }
}

h1 {
  font-size: 2.75rem;
  line-height: 1.3;
}
@media (min-width: 768px) {
  h1 {
    font-size: 4.5rem;
  }
}

h2 {
  font-size: 2rem;
  line-height: 2.5rem;
  margin-bottom: 1.25rem;
  margin-top: 2rem;
}
@media (min-width: 480px) {
  h2 {
    font-size: 2.25rem;
    line-height: 2.75rem;
  }
}
@media (min-width: 768px) {
  h2 {
    font-size: 2.75rem;
    line-height: 3.375rem;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
  }
}
@media (min-width: 1500px) {
  h2 {
    font-size: 3.25rem;
    line-height: 3.875rem;
    margin-top: 4rem;
  }
}
.section h2:first-child {
  margin-top: 0;
}

h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 1500px) {
  h3 {
    font-size: 2rem;
  }
}

p {
  margin-top: 0;
}
p + p {
  margin-top: 1rem;
}

.label {
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
}
@media (min-width: 1500px) {
  .label {
    font-size: 1rem;
  }
}

ul.clean-list,
ol.clean-list {
  list-style-type: none;
  padding-left: 0;
}

.tag {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.5rem;
}

.tag__icon {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background: #5B69E6;
  position: absolute;
  top: -5px;
  left: 0;
}
.tag__icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 60%;
}

.tag__label {
  margin-bottom: 0;
}

.ux::before {
  background-image: url("../images/icons/icon-ux.png");
}
.svg .ux::before {
  background-image: url("../images/icons/icon-ux.svg");
}

.ui {
  background: #FFCB6B;
}
.ui::before {
  background-image: url("../images/icons/icon-ui.png");
}
.svg .ui::before {
  background-image: url("../images/icons/icon-ui.svg");
}

.illustration {
  background: #4dbabe;
}
.illustration::before {
  background-image: url("../images/icons/icon-illustration.png");
}
.svg .illustration::before {
  background-image: url("../images/icons/icon-illustration.svg");
}

.frontend {
  background: #4dbabe;
}
.frontend::before {
  background-image: url("../images/icons/icon-frontend.png");
}
.svg .frontend::before {
  background-image: url("../images/icons/icon-frontend.svg");
}

.research {
  background: #5B69E6;
}
.research::before {
  background-image: url("../images/icons/icon-research.png");
}
.svg .research::before {
  background-image: url("../images/icons/icon-research.svg");
}

.accessibility {
  background: #FFCB6B;
}
.accessibility::before {
  background-image: url("../images/icons/icon-accessibility.png");
}
.svg .accessibility::before {
  background-image: url("../images/icons/icon-accessibility.svg");
}

.slick-arrow {
  width: 44px;
  height: 44px;
  border: 2px solid #2b2233;
  border-radius: 8px;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  z-index: 99;
}
.slick-arrow.slick-prev {
  left: -4px;
}
.slick-arrow.slick-next {
  right: -4px;
}
.slick-arrow .slick-prev-icon,
.slick-arrow .slick-next-icon {
  display: block;
}
.slick-arrow .slick-prev-icon::before, .slick-arrow .slick-prev-icon::after,
.slick-arrow .slick-next-icon::before,
.slick-arrow .slick-next-icon::after {
  content: "";
  height: 2px;
  width: 1rem;
  background: #2b2233;
  display: block;
  position: absolute;
  border-radius: 1px;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.3s ease-in-out;
}
.slick-arrow .slick-prev-icon::before,
.slick-arrow .slick-next-icon::before {
  transform: rotate(45deg);
}
.slick-arrow .slick-prev-icon::after,
.slick-arrow .slick-next-icon::after {
  transform: rotate(-45deg);
}
.slick-arrow .slick-prev-icon::before {
  top: 24px;
}
.slick-arrow .slick-prev-icon::after {
  top: 14px;
}
.slick-arrow .slick-next-icon::before {
  top: 14px;
}
.slick-arrow .slick-next-icon::after {
  top: 24px;
}
.slick-arrow.slick-disabled {
  opacity: 0;
}
.slick-arrow.slick-disabled .slick-prev-icon::before, .slick-arrow.slick-disabled .slick-prev-icon::after,
.slick-arrow.slick-disabled .slick-next-icon::before,
.slick-arrow.slick-disabled .slick-next-icon::after {
  background: #6e627a;
}
.slick-arrow:hover, .slick-arrow:focus {
  background: #2b2233;
}
.slick-arrow:hover .slick-prev-icon::before, .slick-arrow:hover .slick-prev-icon::after,
.slick-arrow:hover .slick-next-icon::before,
.slick-arrow:hover .slick-next-icon::after, .slick-arrow:focus .slick-prev-icon::before, .slick-arrow:focus .slick-prev-icon::after,
.slick-arrow:focus .slick-next-icon::before,
.slick-arrow:focus .slick-next-icon::after {
  background: #fff;
}
@media (prefers-color-scheme: dark) {
  .slick-arrow {
    background: #5B69E6;
  }
  .slick-arrow .slick-prev-icon::before, .slick-arrow .slick-prev-icon::after,
.slick-arrow .slick-next-icon::before,
.slick-arrow .slick-next-icon::after {
    background: #fff;
  }
}

.slick-sr-only {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

input,
textarea {
  font-family: "nutmeg", verdana, arial, sans-serif;
  font-size: 1.125rem;
  transition: all 0.3s ease-in-out;
}
.submitted input,
.submitted textarea {
  opacity: 0;
}
input:hover, input:focus,
textarea:hover,
textarea:focus {
  border-color: #5B69E6;
}
@media (prefers-color-scheme: dark) {
  input,
textarea {
    color: #fff;
  }
  input:hover, input:focus,
textarea:hover,
textarea:focus {
    border-color: #FFCB6B;
  }
}

.field__input {
  border: 2px solid #2b2233;
  background: #fff;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  width: 100%;
}
@media (prefers-color-scheme: dark) {
  .field__input {
    background: #1F1924;
  }
}
.field__input.button {
  width: auto;
}

textarea {
  min-height: 200px;
}

.field {
  position: relative;
  margin-bottom: 1rem;
}
.field .field__label {
  position: absolute;
  top: 10px;
  left: 18px;
}
.field .field__input {
  padding-top: 2rem;
  padding-bottom: 0.75rem;
}
@media (min-width: 1500px) {
  .field .field__input {
    padding-top: 2.25rem;
  }
}

.field,
.button {
  transition: opacity 0.3s ease-in-out;
}

input[type=submit] {
  border: 0;
  border-radius: 32px;
  background: #5B69E6;
  color: #fff;
  cursor: pointer;
  padding: 1rem 2rem;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}
input[type=submit]:hover, input[type=submit]:focus {
  background: #4959E4;
}

#not-loaded {
  border: 2px solid #1F1924;
  border-radius: 16px;
  padding: 2rem;
}
#not-loaded h3 {
  margin-top: 0;
}
#not-loaded p {
  margin-bottom: 0;
}
@media (prefers-color-scheme: dark) {
  #not-loaded {
    background: #1F1924;
  }
}

.contact-form {
  position: relative;
}
.contact-form::before {
  background-image: url("../images/loading-lightmode.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  width: 150px;
  height: 150px;
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
  z-index: -1;
}
.loading .contact-form .field,
.loading .contact-form .button {
  opacity: 0.25;
}
.loading .contact-form::before {
  opacity: 1;
  z-index: 3;
}

#success {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid #4dbabe;
  padding: 2rem;
  background: #fff;
  border-radius: 16px;
}
#success::before {
  content: "";
  background-color: #4dbabe;
  background-image: url("../images/check.png");
  background-size: 48px auto;
  background-position: center;
  background-repeat: no-repeat;
  width: 96px;
  height: 96px;
  border-radius: 48px;
  margin: 0 auto 1rem;
}
@media (prefers-color-scheme: dark) {
  #success {
    background: #2b2233;
  }
}

.show-nav {
  overflow: hidden;
}

.logo {
  background-image: url("../images/logo-darkmode.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  display: block;
  width: 102px;
  height: 54px;
  text-indent: -9999px;
  flex-shrink: 0;
}
.svg .logo {
  background-image: url("../images/logo-darkmode.svg");
}
@media (min-width: 1200px) {
  .logo {
    width: 120px;
    height: 64px;
    background-image: url("../images/logo-lightmode.png");
  }
  .svg .logo {
    background-image: url("../images/logo-lightmode.svg");
  }
}
@media (prefers-color-scheme: dark) {
  .logo {
    background-image: url("../images/logo-darkmode.png");
  }
  .svg .logo {
    background-image: url("../images/logo-darkmode.svg");
  }
}

.menu-link {
  color: #fff;
  display: inline-block;
  font-size: 1.5rem;
  position: relative;
  text-decoration: none;
}
.menu-link::before {
  content: "";
  border-radius: 4px;
  height: 6px;
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  right: 0;
  margin: auto;
  background: #5B69E6;
  max-width: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
@media (prefers-color-scheme: dark) {
  .menu-link::before {
    background: #FFCB6B;
  }
}
.menu-link.active::before, .menu-link:hover::before, .menu-link:focus::before {
  max-width: 100%;
  opacity: 1;
}
.menu-link:hover, .menu-link:focus {
  color: #5B69E6;
}
@media (prefers-color-scheme: dark) {
  .menu-link:hover, .menu-link:focus {
    color: #FFCB6B;
  }
}
.menu-link.active {
  font-weight: bold;
}
.nav-down .menu-link {
  color: #2b2233;
}
@media (min-width: 375px) {
  .menu-link {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .menu-link {
    font-size: 1.5rem;
    color: #2b2233;
    display: block;
  }
  .menu-link::before {
    width: 8px;
    max-width: 100%;
    height: auto;
    max-height: 0;
    left: -2rem;
    right: auto;
    top: 0;
    bottom: 0;
  }
  .menu-link.active::before, .menu-link:hover::before, .menu-link:focus::before {
    max-height: 100%;
  }
}
@media (min-width: 1200px) and (prefers-color-scheme: dark) {
  .menu-link {
    color: #fff;
  }
}

.toggle {
  background: transparent;
  border: 0;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  cursor: pointer;
  font-family: "nutmeg", verdana, arial, sans-serif;
  width: 54px;
  height: 54px;
  padding-top: 0.5rem;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.toggle .bar {
  background: #fff;
  display: block;
  margin: 0 auto;
  width: 2rem;
  height: 2px;
  border-radius: 1px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.toggle .bar + .bar {
  margin-top: 0.5rem;
}
.nav-down .toggle .bar {
  background: #2b2233;
}
.toggle .toggle__text {
  display: block;
  font-weight: normal;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}
.toggle:hover, .toggle:focus {
  color: #5B69E6;
}
.toggle:hover .bar, .toggle:focus .bar {
  background: #5B69E6;
}
@media (prefers-color-scheme: dark) {
  .toggle:hover, .toggle:focus {
    color: #FFCB6B;
  }
  .toggle:hover .bar, .toggle:focus .bar {
    background: #FFCB6B;
  }
}
.toggle[aria-expanded=true] {
  background: #5B69E6;
  color: #fff;
}
.toggle[aria-expanded=true] .bar {
  background: #fff;
  width: 1.8rem;
}
.toggle[aria-expanded=true] .bar.top {
  transform: rotate(45deg);
  top: 0.3rem;
}
.toggle[aria-expanded=true] .bar.bottom {
  transform: rotate(-45deg);
  top: -0.3rem;
}
.toggle[aria-expanded=true]::before {
  width: 0;
}
@media (min-width: 375px) {
  .toggle {
    display: none;
  }
}

.menu {
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
  background: #2b2233;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  position: relative;
}
.show-nav .menu {
  height: calc(100vh - 5.4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.show-nav .menu::before {
  content: "";
  height: 6px;
  background: #5B69E6;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.show-nav .menu .menu-links,
.show-nav .menu .resume {
  margin-top: auto;
}
@media (min-width: 375px) {
  .menu {
    height: 54px;
    background: transparent;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .show-nav .menu {
    height: 54px;
    justify-content: flex-end;
    flex-direction: row;
  }
  .show-nav .menu::before {
    display: none;
  }
  .show-nav .menu .menu-links,
.show-nav .menu .resume {
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .menu {
    overflow: visible;
    align-items: flex-start;
  }
}

.header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 375px) {
  .header {
    flex-wrap: nowrap;
  }
}
@media (min-width: 1200px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
  }
}

.navigation {
  background-color: #3c3347;
  transition: background-color 0.3s ease-in-out;
}
.scrolled .navigation {
  background-color: rgba(60, 51, 71, 0.95);
}
.navigation .menu {
  text-align: center;
}
.navigation .menu .spacer {
  display: none;
}
.navigation .menu ul {
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
}
.navigation .menu ul li {
  margin: 4rem 0;
}
.navigation .resume {
  font-size: 0.875rem;
  color: #fff;
}
.navigation .resume a {
  color: #FFCB6B;
}
.navigation .resume a:hover, .navigation .resume a:focus {
  color: #FFDFA3;
}
@media (min-width: 375px) and (max-width: 599px) {
  .navigation .resume {
    display: none;
  }
}
@media (min-width: 1200px) {
  .navigation .resume {
    color: #2b2233;
  }
  .navigation .resume a {
    color: #5B69E6;
    margin-left: 4px;
  }
  .navigation .resume a:hover, .navigation .resume a:focus {
    color: #4959E4;
  }
}
@media (min-width: 1200px) and (prefers-color-scheme: dark) {
  .navigation .resume {
    color: #fff;
  }
  .navigation .resume a {
    color: #FFCB6B;
  }
  .navigation .resume a:hover, .navigation .resume a:focus {
    color: #FFDFA3;
  }
}
@media (min-width: 960px) {
  .homepage .navigation {
    background-color: transparent;
  }
  .homepage.scrolled .navigation {
    background-color: rgba(60, 51, 71, 0.95);
  }
}
@media (min-width: 375px) and (max-width: 1199px) {
  .navigation .menu ul {
    text-align: right;
  }
  .navigation .menu ul li {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 1rem;
  }
}
@media (min-width: 600px) and (max-width: 1199px) {
  .navigation .menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .navigation .menu .menu-links {
    flex-grow: 2;
  }
  .navigation .menu ul {
    text-align: center;
  }
  .navigation .menu ul li {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .navigation .menu .resume {
    max-width: 102px;
    text-align: right;
    padding-top: 0.6rem;
    line-height: 1.2;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .navigation .menu ul li {
    margin-left: 2rem;
    margin-right: 2rem;
  }
}
@media (min-width: 1200px) {
  .navigation {
    flex-direction: column;
    background-color: transparent;
  }
  .scrolled .navigation, .homepage.scrolled .navigation {
    background-color: transparent;
  }
  .navigation .menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
  .navigation .menu .menu-links {
    margin-top: auto;
    margin-bottom: auto;
  }
  .navigation .menu ul {
    text-align: left;
  }
  .navigation .menu ul li {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .navigation .resume {
    height: 54px;
    margin-bottom: 0;
    display: flex;
    align-items: flex-end;
  }
}

footer {
  display: none;
  padding: 2rem 1rem;
  background: #1F1924;
  color: #fff;
}
footer p {
  margin-bottom: 0;
}
footer a {
  color: #FFCB6B;
}
footer a:hover, footer a:focus {
  color: #FFDFA3;
}
@media (min-width: 480px) {
  footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 375px) and (max-width: 599px) {
  footer {
    display: block;
  }
}
.homepage footer {
  position: absolute;
  z-index: 4;
  background: transparent;
  left: 0;
  bottom: 0;
  padding-bottom: 0;
}

html,
body {
  width: 100%;
}

body {
  overflow-x: hidden;
}

.navigation {
  padding: 1rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.main {
  padding-left: 1rem;
  padding-right: 1rem;
}

.section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.section.home {
  padding-top: 0;
}

@media (min-width: 480px) {
  .navigation {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .main {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1200px) {
  .navigation {
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 4rem;
    width: 25%;
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    bottom: 0;
  }

  .main {
    padding-top: 0;
    padding-bottom: 4rem;
    padding-right: 4rem;
    width: 75%;
    margin-left: auto;
    margin-right: 0;
  }

  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .section.home {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (min-width: 1500px) {
  .navigation {
    padding-top: 6rem;
    padding-bottom: 6rem;
    padding-left: 6rem;
  }

  .main {
    padding-bottom: 6rem;
    padding-right: 6rem;
  }

  .section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .section.home {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.project--teaser .project__wrapper {
  background: #fff;
  border: 2px solid #2b2233;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  top: 0;
  transition: all 0.3s ease-in-out;
}
@media (prefers-color-scheme: dark) {
  .project--teaser .project__wrapper {
    background: #1F1924;
  }
}
.project--teaser .project__wrapper:hover, .project--teaser .project__wrapper:focus-within {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  top: -0.5rem;
}
.project--teaser .project__details {
  padding: 2rem;
}
.project--teaser .project__title {
  margin-top: -0.25rem;
  margin-bottom: 0;
}
.project--teaser .project__tagline {
  margin-bottom: 0;
}
.project--teaser .project__link {
  color: #2b2233;
  text-decoration: none;
}
.project--teaser .project__link::before {
  content: "";
  border-radius: 4px;
  height: 6px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: #5B69E6;
  max-width: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
@media (prefers-color-scheme: dark) {
  .project--teaser .project__link::before {
    background: #FFCB6B;
  }
}
.project--teaser .project__link.active::before, .project--teaser .project__link:hover::before, .project--teaser .project__link:focus::before {
  max-width: 100%;
  opacity: 1;
}
@media (prefers-color-scheme: dark) {
  .project--teaser .project__link {
    color: #fff;
  }
}
.project--teaser .project__link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.project--full .project__hero {
  padding-top: 5.3rem;
}
.project--full .project__intro {
  padding-top: 2rem;
}
.project--full .project__intro h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .project--full .project__intro h1 {
    font-size: 3.5rem;
  }
}
.project--full .project__intro p {
  font-size: 1.125rem;
}
.project--full .project__intro p::after {
  content: "";
  width: 6rem;
  height: 6px;
  border-radius: 3px;
  background: #5B69E6;
  display: block;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}
.project--full .project__details {
  margin-top: 2rem;
}
.project--full .project__details dt {
  margin-top: 1rem;
}
.project--full .project__details dd {
  margin-left: 0;
}
.project--full .project__image {
  position: relative;
}
.project--full .project__image::before {
  content: "";
  position: absolute;
  left: -2rem;
  right: -2rem;
  bottom: 0;
  top: 10%;
  background: #5B69E6;
  z-index: 1;
}
.project--full .project__image .project-hero-mask {
  position: absolute;
  left: -2rem;
  right: -2rem;
  bottom: 0;
  z-index: 2;
}
.project--full .project__image .project-hero-mask-2 {
  position: absolute;
  left: -2rem;
  right: -2rem;
  top: 9%;
  z-index: 2;
  transform: rotate(180deg);
}
.project--full .project__image img {
  position: relative;
  z-index: 3;
}
.project--full .project__image .project-hero-mask-fill {
  fill: white;
}
@media (prefers-color-scheme: dark) {
  .project--full .project__image .project-hero-mask-fill {
    fill: #2b2233;
  }
}
.project--full .project__image.computer::before {
  content: "";
  top: 2px;
}
.project--full .project__image.computer .project-hero-mask {
  width: calc(100% + 4rem);
  height: 50%;
}
.project--full .project__image.computer .project-hero-mask-2 {
  top: 0;
  width: calc(100% + 4rem);
  height: 50%;
}
.project--full .project__navigation {
  padding-top: 0;
}
.project--full .project__navigation ul {
  margin: 0;
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
}
.project--full .project__body p,
.project--full .project__body h2,
.project--full .project__body h3,
.project--full .project__body ul {
  max-width: 768px;
}
.project--full .project__navigation ul,
.project--full .project__body {
  position: relative;
}
.project--full .project__navigation ul::before,
.project--full .project__body::before {
  content: "";
  height: 0;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border-top: 1px dashed #e3e3e8;
}
@media (prefers-color-scheme: dark) {
  .project--full .project__navigation ul::before,
.project--full .project__body::before {
    opacity: 0.25;
  }
}
@media (min-width: 768px) {
  .project--full .project__hero {
    display: flex;
    justify-content: space-between;
  }
  .project--full .project__intro p {
    font-size: 1.5rem;
  }
  .project--full .project__image {
    flex-shrink: 0;
  }
  .project--full .project__image .project-hero-mask-2 {
    display: none;
  }
  .project--full .project__image::before,
.project--full .project__image .project-hero-mask {
    left: 0;
    bottom: auto;
    top: 0;
  }
  .project--full .project__image.phone {
    width: 360px;
  }
  .project--full .project__image.phone::before,
.project--full .project__image.phone .project-hero-mask {
    height: 50%;
  }
  .project--full .project__image.computer {
    width: 400px;
  }
  .project--full .project__image.computer img {
    width: 520px;
    max-width: 520px;
  }
  .project--full .project__image.computer::before,
.project--full .project__image.computer .project-hero-mask {
    height: 60%;
    top: 0;
  }
  .project--full .project__image.computer .project-hero-mask {
    width: auto;
  }
}
@media (min-width: 1200px) {
  .project--full .project__hero {
    padding-top: 2rem;
  }
  .project--full .project__intro {
    padding-top: 0;
  }
  .project--full .project__intro h1 {
    margin-top: 0.5rem;
  }
  .project--full .project__navigation {
    padding-bottom: 0;
  }
  .project--full .project__image::before,
.project--full .project__image .project-hero-mask {
    right: -4rem;
    top: -2rem;
    height: 60%;
  }
  .project--full .project__image.computer::before,
.project--full .project__image.computer .project-hero-mask {
    top: -2rem;
    height: 75%;
  }
}
@media (min-width: 1500px) {
  .project--full .project__hero {
    padding-top: 4rem;
  }
  .project--full .project__image::before,
.project--full .project__image .project-hero-mask {
    right: -6rem;
    top: -4rem;
  }
}
.project--full.rsa .project__intro p::after,
.project--full.rsa .project__image::before {
  background: #B3C431;
}
.project--full.fleetwood .project__intro p::after,
.project--full.fleetwood .project__image::before {
  background: #187387;
}
.project--full.movetrac .project__intro p::after,
.project--full.movetrac .project__image::before {
  background: #ffa800;
}
.project--full.styledots .project__intro p::after,
.project--full.styledots .project__image::before {
  background: #C94090;
}
.project--full.crcna .project__intro p::after,
.project--full.crcna .project__image::before {
  background: #187B73;
}
.project--full.kilwins .project__intro p::after,
.project--full.kilwins .project__image::before {
  background: #8A2B2B;
}

.project-image {
  margin-top: 4rem;
  margin-bottom: 4rem;
  max-width: 984px;
  margin-left: auto;
}
.project-image img {
  border-radius: 16px;
  border: 2px solid #1F1924;
}
.project-image div + div {
  margin-top: 1rem;
}
@media (min-width: 375px) {
  .project-image.images--2 {
    display: flex;
    justify-content: space-between;
  }
  .project-image.images--2 div + div {
    margin-top: 0;
  }
  .project-image.images--2 div {
    width: 50%;
  }
  .project-image.images--2 div:first-child {
    padding-right: 1rem;
  }
  .project-image.images--2 div:last-child {
    padding-left: 1rem;
  }
  .project-image.images--2.uneven-right div:first-child {
    width: 33.33%;
  }
  .project-image.images--2.uneven-right div:last-child {
    width: 66.67%;
  }
}
@media (min-width: 768px) {
  .project-image.images--2 div:first-child {
    padding-right: 2rem;
  }
  .project-image.images--2 div:last-child {
    padding-left: 2rem;
  }
  .project-image.images--3 {
    display: flex;
    justify-content: space-between;
  }
  .project-image.images--3 div + div {
    margin-top: 0;
  }
  .project-image.images--3 div {
    width: 33.33%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .project-image.images--3 div:first-child {
    padding-right: 2rem;
    padding-left: 0;
  }
  .project-image.images--3 div:last-child {
    padding-left: 2rem;
    padding-right: 0;
  }
}

.map {
  list-style-type: none;
  padding-left: 0;
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.map li {
  border: 2px solid #1F1924;
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
  position: relative;
  font-weight: bold;
  font-size: 1rem;
}
.map li + li {
  margin-top: 2rem;
}
.map li:last-child::before {
  display: none;
}
.map li .arrow {
  height: 2rem;
  width: 2px;
  background: #1F1924;
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  margin: auto;
  margin-bottom: 2px;
}
.map li .arrow::before, .map li .arrow::after {
  content: "";
  width: 2px;
  height: 16px;
  border-radius: 1px;
  background: #1F1924;
  position: absolute;
  bottom: -2px;
  margin: auto;
}
.map li .arrow::before {
  transform: rotate(45deg);
  left: 5px;
}
.map li .arrow::after {
  transform: rotate(-45deg);
  right: 5px;
}
@media (min-width: 768px) {
  .map {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1rem;
    margin-right: -1rem;
    margin-top: 2rem;
  }
  .map li {
    width: calc(50% - 2rem);
    margin-top: 2rem;
    margin-left: 1rem;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .map li:nth-child(even)::after {
    content: "";
    width: 2rem;
    height: 2px;
    background: #1F1924;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    margin: auto;
    margin-right: 2px;
  }
  .map li:last-child::after {
    display: none;
  }
  .map li .arrow {
    left: -2rem;
    right: auto;
    height: 2px;
    width: 2rem;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: -2px;
  }
  .map li .arrow::before {
    right: 5px;
    left: auto;
    top: 10px;
  }
  .map li .arrow::after {
    right: 5px;
    top: -13px;
  }
}
@media (min-width: 960px) {
  .map li {
    width: calc(25% - 2rem);
  }
}
@media (prefers-color-scheme: dark) {
  .map li {
    background: #1F1924;
  }
}

@media (min-width: 768px) {
  .home {
    margin-bottom: 4rem;
  }
}

.about {
  position: relative;
}
.about .intro {
  text-align: center;
  margin-bottom: 2rem;
}
.about .graphic {
  width: 303px;
  height: 303px;
  margin-left: auto;
  margin-right: auto;
}
.about .skills {
  transform: scale(0.75);
  transform-origin: top left;
}
.about .tags {
  max-width: 303px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 600px) {
  .about .section__content {
    position: relative;
  }
  .about .graphic {
    position: absolute;
    bottom: -5%;
    right: -1rem;
    margin: auto;
  }
  .about .tags {
    width: 50%;
    max-width: 100%;
    margin-left: 0;
  }
}
@media (min-width: 768px) {
  .about .section__content {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }
  .about .intro {
    text-align: center;
  }
  .about .graphic {
    right: 0;
  }
}
@media (min-width: 960px) {
  .about .section__content {
    position: relative;
    max-width: 100%;
  }
  .about .intro {
    width: 50%;
    text-align: left;
  }
  .about .graphic {
    bottom: 2%;
    right: -4rem;
    width: 454px;
    height: 454px;
  }
  .about .skills {
    transform: scale(1.125);
  }
  .about .tags {
    width: 50%;
  }
  .about .tags::after {
    content: "";
    display: block;
    clear: both;
  }
  .about .tags li {
    width: 50%;
    float: left;
  }
  .about .tags li:nth-child(odd) {
    clear: left;
  }
}
@media (min-width: 1200px) and (max-width: 1339px) {
  .about .intro {
    width: 100%;
  }
  .about .intro h2 {
    max-width: 670px;
  }
  .about .intro p {
    width: 50%;
  }
  .about .graphic {
    right: -2rem;
    bottom: 2%;
    width: 404px;
    height: 404px;
  }
  .about .skills {
    transform: scale(1);
  }
}
@media (min-width: 1340px) {
  .about .graphic {
    right: -6rem;
    width: 504px;
    height: 504px;
  }
  .about .skills {
    transform: scale(1.25);
  }
}
@media (min-width: 1500px) {
  .about .graphic {
    right: 0;
  }
}

.projects {
  margin: -1rem;
}
.projects .project {
  padding: 1rem;
}
@media (min-width: 1200px) {
  .projects {
    margin-right: -2rem;
  }
}

.contact {
  position: relative;
  padding-bottom: 0;
}
.contact .section__content::after {
  content: "";
  display: block;
  clear: both;
}
.contact .contact-form {
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .contact .intro {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .contact .contact-form,
.contact .graphic {
    width: 50%;
    float: left;
  }
  .contact .contact-form {
    padding-right: 1rem;
  }
  .contact .graphic {
    padding-left: 1rem;
  }
}
@media (min-width: 960px) {
  .contact .intro {
    width: 50%;
    max-width: 100%;
    text-align: left;
    margin-bottom: 0;
    margin-left: 0;
  }
  .contact .contact-form {
    float: none;
  }
  .contact .graphic {
    position: absolute;
    right: 0;
    bottom: 0;
    margin: auto;
    width: auto;
    float: none;
  }
}

.skills {
  position: relative;
  width: 404px;
  height: 404px;
}

.skill {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
}
.skill::before {
  content: "";
  background: #fff;
  width: 16px;
  height: 16px;
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

@media (prefers-color-scheme: dark) {
  .orbit-path {
    opacity: 0.25;
  }
}

.orbit-1-fill {
  stroke: #5B69E6;
  stroke-dasharray: 1155 1256;
}

.skill-1 {
  width: 415px;
  height: 415px;
  left: -10px;
  right: -10px;
  transform: rotate(330deg);
}
.skill-1::before {
  background: #5B69E6;
}

.orbit-2-fill {
  stroke: #8994e0;
  stroke-dasharray: 871 1162;
}

.skill-2 {
  width: 375px;
  height: 375px;
  transform: rotate(270deg);
}
.skill-2::before {
  background: #4dbabe;
}

.orbit-3-fill {
  stroke: #7aa0e2;
  stroke-dasharray: 534 1068;
}

.skill-3 {
  width: 336px;
  height: 336px;
  transform: rotate(180deg);
}
.skill-3::before {
  background: #FFCB6B;
}

.orbit-4-fill {
  stroke: #70ade5;
  stroke-dasharray: 847 973;
}

.skill-4 {
  width: 295px;
  height: 295px;
  transform: rotate(315deg);
}
.skill-4::before {
  background: #FFCB6B;
}

.orbit-5-fill {
  stroke: #6ebadb;
  stroke-dasharray: 290 879;
}

.skill-5 {
  width: 255px;
  height: 255px;
  transform: rotate(120deg);
}
.skill-5::before {
  background: #4dbabe;
}

.orbit-6-fill {
  stroke: #72c8ce;
  stroke-dasharray: 510 785;
}

.skill-6 {
  width: 215px;
  height: 215px;
  transform: rotate(235deg);
}
.skill-6::before {
  background: #5B69E6;
}

.helmet {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 180px;
  height: 160px;
  margin: auto;
}

.home {
  position: static;
  min-height: 0;
}

.hero-mask {
  position: absolute;
  width: 100%;
  height: 50%;
  bottom: 0;
}

.hero-mask-fill {
  fill: #fff;
}
@media (prefers-color-scheme: dark) {
  .hero-mask-fill {
    fill: #2b2233;
  }
}

.hero {
  position: relative;
  height: 103vh;
  min-height: 700px;
  margin-right: -2rem;
  margin-left: -2rem;
  background-color: #3c3347;
  background-image: url("../images/hero/hero-bg-nomask.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.star-large {
  background-image: url("../images/hero/hero-star-large.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 36px;
  height: 36px;
}

.star-small {
  background-image: url("../images/hero/hero-star-small.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 18px;
  height: 18px;
}

.animation {
  position: absolute;
  left: 0;
  right: 50px;
  margin: auto;
  width: 250px;
  bottom: 15%;
  top: 35%;
  z-index: 2;
  min-height: 480px;
}
.animation .planet {
  background-image: url("../images/hero/hero-planet.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 86px;
  height: 86px;
  position: absolute;
  left: 72%;
  top: -10%;
}
.animation .stars {
  position: absolute;
  top: -12%;
  right: -11%;
  width: 105px;
  height: 105px;
}
.animation .stars .star-1 {
  position: absolute;
  top: 20%;
  left: -40%;
}
.animation .stars .star-2 {
  position: absolute;
  top: 0;
  left: -10%;
}
.animation .stars .star-3 {
  position: absolute;
  top: 80%;
  right: -20%;
}
.animation .shadow {
  width: 160px;
  height: 100px;
  background: #6e627a;
  transform: scaleY(0.25);
  position: absolute;
  top: 100%;
  left: 11%;
  right: 0;
  margin: auto;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.25;
  display: none;
}
@media (prefers-color-scheme: dark) {
  .animation .shadow {
    background: black;
  }
}

.astronaut .body {
  background-image: url("../images/hero/hero-astronaut.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: relative;
  z-index: 2;
  width: 250px;
  height: 445px;
}
.astronaut .arm {
  background-image: url("../images/hero/hero-arm.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 155px;
  height: 68px;
  position: absolute;
  left: 47%;
  top: 17%;
  transform: rotate(0);
}

.planets {
  position: absolute;
  z-index: 2;
  display: none;
  bottom: 6%;
  left: 1%;
}
.planets .planet-2 {
  background-image: url("../images/hero/hero-planet-2.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 155px;
  height: 155px;
}
.planets .planet-3 {
  background-image: url("../images/hero/hero-planet-3.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 109px;
  height: 109px;
  position: absolute;
  bottom: -10%;
  left: 70%;
}
.planets .planet-4 {
  background-image: url("../images/hero/hero-planet-4.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 70px;
  height: 70px;
  position: absolute;
  bottom: -10%;
  left: 40%;
}
.planets .stars {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.planets .stars .star {
  position: absolute;
}
.planets .stars .star-1 {
  left: 90%;
  top: -11%;
}
.planets .stars .star-2 {
  left: 97%;
  top: -33%;
}
.planets .stars .star-3 {
  left: 67%;
  top: -30%;
}
@media (min-width: 960px) {
  .planets .stars .star-2 {
    left: 105%;
    top: 20%;
  }
  .planets .stars .star-3 {
    left: 117%;
    top: auto;
  }
}

.headline {
  text-transform: lowercase;
  position: absolute;
  top: 110px;
  left: 0;
  right: 0;
  text-align: center;
}
.headline h1 {
  color: #6e627a;
  margin: 0;
  font-size: 1.25rem;
  font-size: clamp(1rem, 5vw, 1.5rem);
  line-height: 1.1;
}
.headline span.highlight {
  color: #fff;
  display: block;
  font-size: 5rem;
  font-size: clamp(4rem, 20vw, 6.125rem);
  position: relative;
  top: -0.75rem;
}

@media (min-width: 375px) {
  .animation {
    bottom: 12%;
  }
}
@media (min-width: 480px) {
  .animation {
    width: 290px;
    bottom: 0;
    top: 38%;
  }
  .animation .planet {
    width: 104px;
    height: 104px;
  }
  .animation .stars {
    width: 120px;
    height: 120px;
  }

  .astronaut .body {
    width: 290px;
    height: 516px;
  }
  .astronaut .arm {
    width: 181px;
    height: 80px;
  }
}
@media (min-width: 600px) {
  .animation {
    right: auto;
    bottom: 10%;
    top: 25%;
  }
  .animation .shadow {
    display: block;
  }

  .headline {
    left: auto;
    right: 2rem;
    text-align: right;
  }
  .headline h1 {
    font-size: 2.5rem;
    font-size: clamp(2.5rem, 6vw, 4rem);
  }
  .headline span {
    display: block;
  }
  .headline span.highlight {
    font-size: 2.5rem;
    font-size: clamp(2.5rem, 6vw, 4rem);
    position: static;
  }
}
@media (min-width: 768px) {
  .hero-mask {
    height: 75%;
  }

  .animation {
    left: 20%;
    bottom: 12%;
    top: 20%;
  }

  .planets {
    display: block;
  }
}
@media (min-width: 960px) {
  .hero-mask {
    height: 90%;
  }

  .animation {
    left: 25%;
    bottom: 17%;
    top: 20%;
  }

  .planets {
    bottom: 8%;
    left: 6%;
  }

  .headline {
    top: 7rem;
  }
  .headline h1 {
    font-size: 2.75rem;
    font-size: clamp(2.75rem, 5vw, 5rem);
  }
  .headline span.highlight {
    font-size: 2.75rem;
    font-size: clamp(2.75rem, 5vw, 5rem);
  }
}
@media (min-width: 1200px) {
  .hero {
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .hero-mask {
    height: 100%;
  }

  .animation {
    left: 20%;
    bottom: 15%;
    min-height: 480px;
  }

  .planets {
    left: 1%;
    bottom: 12%;
  }

  .headline {
    top: 3rem;
    right: 4rem;
  }
  .headline h1 {
    font-size: 4rem;
    font-size: clamp(4rem, 5vw, 7rem);
  }
  .headline span.highlight {
    font-size: 4rem;
    font-size: clamp(4rem, 5vw, 7rem);
  }
}
@media (min-width: 1500px) {
  .hero {
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .animation {
    width: 340px;
    min-height: 570px;
  }
  .animation .planet {
    width: 134px;
    height: 134px;
  }
  .animation .stars {
    width: 130px;
    height: 160px;
  }

  .astronaut .body {
    width: 340px;
    height: 604px;
  }
  .astronaut .arm {
    width: 211px;
    height: 93px;
  }

  .planets .planet-2 {
    width: 205px;
    height: 205px;
  }
  .planets .planet-3 {
    width: 139px;
    height: 139px;
  }
  .planets .planet-4 {
    width: 96px;
    height: 96px;
  }
}
.graphic.footer {
  padding-top: 8rem;
  position: relative;
  z-index: 1;
}
.graphic.footer .astronaut {
  position: relative;
  width: 296px;
  margin-left: auto;
  margin-right: 0;
}
.graphic.footer .astronaut .screen {
  position: absolute;
  top: 76px;
  left: 31px;
  width: 70px;
  height: 33px;
  overflow: hidden;
}
.graphic.footer .astronaut .screen::before {
  content: "";
  position: absolute;
  top: -8px;
  width: 70px;
  height: 50px;
  background-image: url("../images/footer/footer-phone-screen-full-lightmode.png");
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
}
.svg .graphic.footer .astronaut .screen::before {
  background-image: url("../images/footer/footer-phone-screen-full-lightmode.svg");
}
@media (prefers-color-scheme: dark) {
  .graphic.footer .astronaut .screen::before {
    background-image: url("../images/footer/footer-phone-screen-full.png");
  }
  .svg .graphic.footer .astronaut .screen::before {
    background-image: url("../images/footer/footer-phone-screen-full.svg");
  }
}
.graphic.footer .astronaut .body {
  background-image: url("../images/footer/footer-astronaut.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: relative;
  z-index: 2;
  width: 296px;
  height: 530px;
}
.svg .graphic.footer .astronaut .body {
  background-image: url("../images/footer/footer-astronaut.svg");
}
.graphic.footer .bg {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 50vw;
  height: 100vh;
  min-width: 600px;
  background-image: url("../images/footer/footer-bg.png");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 100% auto;
}
.svg .graphic.footer .bg {
  background-image: url("../images/footer/footer-bg.svg");
}
.graphic.footer .planets {
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 296px;
  margin-left: auto;
  margin-right: 0;
}
.graphic.footer .planets .planet-2 {
  position: absolute;
  top: 20%;
  left: -55%;
}
.graphic.footer .planets .planet-3 {
  position: absolute;
  top: 5%;
  left: 5%;
  bottom: auto;
  margin: auto;
}
.graphic.footer .planets .planet-4 {
  position: absolute;
  top: 15%;
  right: -15%;
  left: auto;
}
.graphic.footer .planets .stars .star-1 {
  top: 20%;
  left: -3%;
}
.graphic.footer .planets .stars .star-2 {
  top: 18%;
  left: -10%;
}
.graphic.footer .planets .stars .star-3 {
  top: 5%;
  left: 43%;
}
.graphic.footer .planets .stars .star-4 {
  top: 11%;
  left: 53%;
}
@media (min-width: 600px) and (max-width: 767px) {
  .graphic.footer {
    margin-top: -4rem;
  }
}
@media (min-width: 960px) {
  .graphic.footer {
    position: absolute;
  }
}
@media (min-width: 1200px) {
  .graphic.footer .bg {
    bottom: -4rem;
    right: -4rem;
  }
}

/* Hero animation */
@keyframes float-in {
  0% {
    transform: translateY(50%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(10px);
  }
}
@keyframes float-opposite {
  0%, 100% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes shadow {
  0%, 100% {
    opacity: 0.25;
    transform: scaleY(0.2) scaleX(0.75);
  }
  50% {
    opacity: 0.35;
    transform: scaleY(0.25) scaleX(1);
  }
}
@keyframes throw {
  0% {
    top: 22%;
    transform: rotate(25deg);
  }
  70% {
    top: 16%;
    transform: rotate(-5deg);
  }
  100% {
    top: 17%;
    transform: rotate(0);
  }
}
@keyframes planet {
  0% {
    left: 75%;
    top: 15%;
  }
  75% {
    left: 72%;
    top: -13%;
  }
  100% {
    left: 72%;
    top: -10%;
  }
}
@keyframes pop-in {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-25deg);
  }
  70% {
    opacity: 1;
    transform: scale(1.125) rotate(5deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}
@keyframes twinkle {
  0%, 50% {
    opacity: 1;
    transform: scale(1);
  }
  25% {
    opacity: 0.85;
    transform: scale(0.85);
  }
}
/* Skills animation */
@keyframes orbit-1-fill {
  to {
    stroke-dasharray: 1155 1256;
  }
}
@keyframes orbit-1-rotate {
  from {
    transform: rotate(-30deg);
  }
  to {
    transform: rotate(330deg);
  }
}
@keyframes orbit-2-fill {
  to {
    stroke-dasharray: 871 1162;
  }
}
@keyframes orbit-2-rotate {
  from {
    transform: rotate(-90deg);
  }
  to {
    transform: rotate(270deg);
  }
}
@keyframes orbit-3-fill {
  to {
    stroke-dasharray: 534 1068;
  }
}
@keyframes orbit-3-rotate {
  from {
    transform: rotate(-180deg);
  }
  to {
    transform: rotate(180deg);
  }
}
@keyframes orbit-4-fill {
  to {
    stroke-dasharray: 847 973;
  }
}
@keyframes orbit-4-rotate {
  from {
    transform: rotate(-45deg);
  }
  to {
    transform: rotate(315deg);
  }
}
@keyframes orbit-5-fill {
  to {
    stroke-dasharray: 290 879;
  }
}
@keyframes orbit-5-rotate {
  from {
    transform: rotate(-240deg);
  }
  to {
    transform: rotate(120deg);
  }
}
@keyframes orbit-6-fill {
  to {
    stroke-dasharray: 510 785;
  }
}
@keyframes orbit-6-rotate {
  from {
    transform: rotate(-125deg);
  }
  to {
    transform: rotate(235deg);
  }
}
@keyframes orbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .animation {
    animation: float-in 1s ease-in-out 0.5s;
    opacity: 0;
  }
  .animation.animate-end {
    transform: translateY(0);
    opacity: 1;
  }
  .animation .arm {
    animation: throw 1s ease-in-out 1s;
    top: 22%;
    transform: rotate(25deg);
  }
  .animation .arm.animate-end {
    top: 17%;
    transform: rotate(0);
  }
  .animation .planet {
    animation: planet 1s ease-in-out 1s;
    left: 75%;
    top: 15%;
  }
  .animation .planet.animate-end {
    left: 72%;
    top: -10%;
  }

  .shadow {
    animation: shadow 2s ease-in-out infinite;
  }

  .astronaut {
    animation: float 2s ease-in-out infinite;
  }

  .screen::before {
    animation: float-opposite 2s ease-in-out infinite;
  }

  .star {
    animation: pop-in 0.5s ease-in-out 1.5s;
    opacity: 0;
    transform: scale(0);
  }
  .star.star-2 {
    animation-delay: 1.75s;
  }
  .star.star-3 {
    animation-delay: 2s;
  }
  .star.animate-end {
    animation: twinkle 3s ease-in-out infinite;
    opacity: 1;
    transform: scale(1);
  }
  .star.animate-end.star-3 {
    animation-delay: 0.5s;
  }
  .star.animate-end.star-2 {
    animation-delay: 1.5s;
  }

  .planets .planet {
    animation: pop-in 1s ease-in-out 0.75s;
    opacity: 0;
    transform: scale(0);
  }
  .planets .planet.planet-3 {
    animation-delay: 1s;
  }
  .planets .planet.planet-4 {
    animation-delay: 1.25s;
  }
  .planets .planet.animate-end {
    opacity: 1;
    transform: scale(1);
  }

  /* Skills animation */
  .skill-1 {
    animation: orbit-1-rotate 20s infinite linear;
    /* 1 */
  }

  .skill-2 {
    animation: orbit-2-rotate 19s infinite linear;
    /* 1 */
  }

  .skill-3 {
    animation: orbit-3-rotate 18s infinite linear;
    /* 1 */
  }

  .skill-4 {
    animation: orbit-4-rotate 17s infinite linear;
    /* 1 */
  }

  .skill-5 {
    animation: orbit-5-rotate 16s infinite linear;
    /* 1 */
  }

  .skill-6 {
    animation: orbit-6-rotate 15s infinite linear;
    /* 1 */
  }

  .about .graphic {
    animation: pop-in 1s ease-in-out;
  }

  #success {
    animation: pop-in 1s ease-in-out;
  }
}
