/**
 * Fonts
 */
/* dm-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/dm-sans-v11-latin-regular.eot"); /* IE9 Compat Modes */
  src: url("../fonts/dm-sans-v11-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/dm-sans-v11-latin-regular.woff2") format("woff2"), url("../fonts/dm-sans-v11-latin-regular.woff") format("woff"), url("../fonts/dm-sans-v11-latin-regular.ttf") format("truetype"), url("../fonts/dm-sans-v11-latin-regular.svg#DMSans") format("svg"); /* Legacy iOS */
}
/* dm-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/dm-sans-v11-latin-700.eot"); /* IE9 Compat Modes */
  src: url("../fonts/dm-sans-v11-latin-700.eot?#iefix") format("embedded-opentype"), url("../fonts/dm-sans-v11-latin-700.woff2") format("woff2"), url("../fonts/dm-sans-v11-latin-700.woff") format("woff"), url("../fonts/dm-sans-v11-latin-700.ttf") format("truetype"), url("../fonts/dm-sans-v11-latin-700.svg#DMSans") format("svg"); /* Legacy iOS */
}
/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/inter-v12-latin-regular.eot"); /* IE9 Compat Modes */
  src: url("../fonts/inter-v12-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/inter-v12-latin-regular.woff2") format("woff2"), url("../fonts/inter-v12-latin-regular.woff") format("woff"), url("../fonts/inter-v12-latin-regular.ttf") format("truetype"), url("../fonts/inter-v12-latin-regular.svg#Inter") format("svg"); /* Legacy iOS */
}
/* inter-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/inter-v12-latin-800.eot"); /* IE9 Compat Modes */
  src: url("../fonts/inter-v12-latin-800.eot?#iefix") format("embedded-opentype"), url("../fonts/inter-v12-latin-800.woff2") format("woff2"), url("../fonts/inter-v12-latin-800.woff") format("woff"), url("../fonts/inter-v12-latin-800.ttf") format("truetype"), url("../fonts/inter-v12-latin-800.svg#Inter") format("svg"); /* Legacy iOS */
}
/**
 * Variables
 */
:root {
  --color-dark-primary: #23252b;
  --color-dark-primary-rgb: 35, 37, 43;
  --color-black-light: #2e3036;
  --color-black-dark: #161519;
  --color-light-primary: #efe8dc;
  --color-grey-light: #f2f2f2;
  --color-grey-dark: #60606b;
}

:root {
  --font-default: "Inter", sans-serif;
  --font-headline: "DM Sans", sans-serif;
}

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
}

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

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
} /*16px*/
body {
  font-family: var(--font-default);
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-grey-light);
  background-color: var(--color-dark-primary);
  animation: fadeInPage ease 2s;
  animation-iteration-count: 1;
}

@keyframes fadeInPage {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
p {
  margin: 0;
  font-size: 0.8rem;
}
@media (min-width: 800px) {
  p {
    margin: 1rem 1rem 1rem 0;
    font-size: 1rem;
  }
}
@media (min-width: 1000px) {
  p {
    font-size: 1vw;
  }
}

a {
  color: var(--color-light-primary);
  transition: color 0.25s ease-out;
}
a:hover {
  color: var(--color-grey-light);
  text-decoration: none;
  transition: color 0.25s ease-out;
}

.link {
  text-decoration: none;
  position: relative;
  color: var(--color-light-primary);
}
.link::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--color-light-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.link:hover::before {
  transform: scaleX(1);
}

hr,
.divider {
  padding: 0;
  border: none;
  text-align: center;
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
  border-top: 1px solid var(--color-grey-dark);
  width: 100%;
}

.container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
}
.container__column {
  flex-direction: column;
  justify-content: center;
}

.row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  z-index: 1;
  padding: 1rem;
  width: 100%;
  flex-direction: column;
}
@media (min-width: 800px) {
  .row {
    padding: 4rem 0;
    width: 90vw;
  }
}
@media (min-width: 600px) {
  .row--wide {
    width: 100%;
    padding: 0;
  }
}

.flex-sm,
.flex-lg {
  flex-basis: 100%;
  margin-bottom: var(--grid-margin-bottom);
  border: 2px double lightblue;
  height: auto;
}

@media (min-width: 600px) {
  .flex-sm {
    flex: 1;
  }
}
@media (min-width: 1000px) {
  .flex-lg {
    flex: 1;
  }
}
.center {
  display: flex;
  justify-content: center;
}

.v-center {
  display: flex;
  align-items: center;
}

.right {
  display: flex;
  justify-content: right;
}

.left {
  display: flex;
  justify-content: left;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-headline);
  color: var(--color-light-primary);
  font-weight: 400;
  line-height: 1;
  word-break: break-word;
}

h1 {
  font-size: 3.052rem;
  margin: 3rem 0;
}
@media (min-width: 800px) {
  h1 {
    font-size: 7.5vw;
    text-align: right;
  }
}

h2 {
  font-size: 1.7rem;
}
@media (min-width: 600px) {
  h2 {
    font-size: 2.441rem;
  }
}

h3 {
  font-size: 2.5rem;
  margin-top: 3rem;
}

h4 {
  font-size: 1.2rem;
  color: var(--color-grey-light);
}
@media (min-width: 800px) {
  h4 {
    font-size: 1.563rem;
  }
}
@media (min-width: 1000px) {
  h4 {
    font-size: 1.6vw;
  }
}

h5 {
  font-size: 1.5rem;
  color: var(--color-grey-light);
}
@media (min-width: 1000px) {
  h5 {
    font-size: 1.3vw;
  }
}

small,
.text_small {
  font-size: 0.8rem;
}

/**
 * Variables
 */
header {
  width: 100%;
  padding: 1rem;
  position: absolute;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (min-width: 800px) {
  header {
    padding: 2rem;
  }
}

.avatar {
  z-index: 9999;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.5rem;
  min-height: 5.75rem;
}
@media (min-width: 600px) {
  .avatar {
    flex-direction: row;
  }
}
.avatar__pic {
  position: relative;
  display: block;
  width: 5.75rem;
  height: 5.75rem;
}
.avatar__pic .avatar__hand-hello {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  font-size: 3rem;
  top: 2.8rem;
  left: -1.2rem;
  transition: all 0.2s ease-in-out;
  animation: hand-waving 0.5s infinite ease-in-out;
}
.avatar__pic img {
  width: 5.75rem;
  height: 5.75rem;
  border-radius: 10rem;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.2s ease-in-out;
}
.avatar__title {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.avatar__title h3,
.avatar__title h4 {
  margin: 0;
  color: var(--color-grey-light);
}
.avatar:hover .avatar__pic .avatar__hand-hello {
  opacity: 1;
}
.avatar:hover img {
  transform: scale(1.25);
  -webkit-box-shadow: 0px 0px 21px 8px rgba(0, 0, 0, 0.52);
  box-shadow: 0px 0px 13px 8px rgba(0, 0, 0, 0.3);
}

@keyframes hand-waving {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(20deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.navigation {
  position: fixed;
  z-index: 9999;
  right: 3vw;
  bottom: 2vh;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
  height: fit-content;
}
@media (min-width: 800px) {
  .navigation {
    top: 2vh;
    gap: 1rem;
  }
}
.navigation__checkbox {
  display: none;
  flex: 1;
}
.navigation__button {
  background-color: var(--color-black-light);
  width: 4rem;
  height: 4rem;
  top: 6rem;
  right: 6rem;
  border-radius: 50%;
  z-index: 2000;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
  flex: 1;
  order: 2;
}
@media (min-width: 600px) {
  .navigation__button {
    width: 5.75rem;
    height: 5.75rem;
  }
}
.navigation__nav {
  align-self: flex-start;
  margin-top: 1rem;
  display: none;
  flex-direction: row;
  gap: 1rem;
  background-color: var(--color-black-light);
  padding: 0rem 1rem;
  border-radius: 3rem;
  opacity: 0;
  flex: 1;
}
@media (min-width: 600px) {
  .navigation__nav {
    margin-top: 1.7rem;
    gap: 2rem;
    padding: 0rem 2rem;
  }
}
@media (min-width: 800px) {
  .navigation__nav a {
    font-size: 1.5rem;
  }
}
.navigation__checkbox:checked ~ .navigation__nav {
  opacity: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.navigation__icon {
  position: relative;
  margin-top: 2rem;
}
@media (min-width: 600px) {
  .navigation__icon {
    margin-top: 2.8rem;
  }
}
.navigation__icon, .navigation__icon::before, .navigation__icon::after {
  width: 2rem;
  height: 5px;
  border-radius: 3rem;
  background-color: var(--color-light-primary);
  display: inline-block;
}
@media (min-width: 600px) {
  .navigation__icon, .navigation__icon::before, .navigation__icon::after {
    width: 3rem;
  }
}
.navigation__icon::before, .navigation__icon::after {
  content: "";
  position: absolute;
  left: 0;
  transition: all 0.2s;
}
.navigation__icon::before {
  top: -0.8rem;
}
.navigation__icon::after {
  top: 0.8rem;
}
.navigation__button:hover .navigation__icon::before {
  top: -1rem;
}
.navigation__button:hover .navigation__icon::after {
  top: 1rem;
}
.navigation__checkbox:checked + .navigation__button .navigation__icon {
  background-color: transparent;
}
.navigation__checkbox:checked + .navigation__button .navigation__icon::before {
  top: 0;
  transform: rotate(135deg);
}
.navigation__checkbox:checked + .navigation__button .navigation__icon::after {
  top: 0;
  transform: rotate(-135deg);
}

.hero::before {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 150vw;
  opacity: 0.2;
  background-image: url("/assets/img/bg_animation.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 0 10.62rem;
}
@media (min-width: 600px) {
  .hero::before {
    position: absolute;
    opacity: 0.1;
    width: 100%;
    height: 100%;
    background-size: 50vw;
    background-position: 3vw center;
    transform: rotate(0deg);
  }
}
@media (min-width: 800px) {
  .hero {
    height: 100vh;
    align-items: flex-end;
  }
}
.hero .row {
  flex-direction: column;
  padding-bottom: 7vh;
  padding-top: 20vh;
}
@media (min-width: 600px) {
  .hero .row {
    padding-top: 0vh;
  }
}
@media (min-width: 800px) {
  .hero .row {
    justify-content: flex-end;
    align-items: flex-end;
  }
}
.hero .row h1 {
  font-size: 2.8rem;
  margin-top: 16rem;
}
@media (min-width: 600px) {
  .hero .row h1 {
    font-size: 7.5vw;
    margin-top: 0;
  }
}
@media (min-width: 800px) {
  .hero .row h1 {
    text-align: right;
  }
}
.hero .row h1 br {
  display: none;
}
@media (min-width: 1000px) {
  .hero .row h1 br {
    display: inline;
  }
}
.hero__summary {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  width: 100%;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 800px) {
  .hero__summary {
    width: 80vw;
    flex-direction: row;
  }
}
@media (min-width: 1000px) {
  .hero__summary {
    width: 55vw;
  }
}
.hero__summary p {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-self: stretch;
  flex: 1;
  text-align: left;
}
.hero__summary .hero__divider {
  border-top: 0px;
}
@media (min-width: 800px) {
  .hero__summary .hero__divider {
    border-top: 1px;
  }
}

#skills h3 {
  margin-bottom: 0;
}

.card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7rem, 1fr));
  grid-auto-flow: row;
  grid-auto-rows: 1fr;
  column-gap: 2vw;
  row-gap: 2vw;
  padding: 2rem 0;
}
.card__tile {
  grid-column: auto/span 2;
  grid-row: auto/span 5;
  display: grid;
  grid-template-rows: 1fr 4fr;
  row-gap: 1rem;
  background-color: var(--color-black-light);
  padding: 2rem 1.5rem;
}
.card__tile--darker {
  background-color: var(--color-black-dark);
}
.card__tile h4 {
  grid-row: 1/1;
  margin: 0;
}

.pill-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-end;
  gap: 0.4rem;
}
@media (min-width: 800px) {
  .pill-container {
    gap: 0.8rem;
  }
}

.pill {
  font-size: 0.7rem;
  padding: 4px 9px;
  color: var(--color-light-primary);
  border: 1px solid var(--color-light-primary);
  border-radius: 100rem;
  width: auto;
  word-wrap: none;
  white-space: nowrap;
  align-self: flex-end;
}
.pill--pure {
  border: none;
}
@media (min-width: 800px) {
  .pill {
    font-size: 0.9rem;
    padding: 10px 15px;
  }
}

.pill.pill__uxresearch::after {
  content: "UX Research";
}

.pill.pill__prototyping::after {
  content: "Prototyping";
}

.pill.pill__wireframing::after {
  content: "Wireframing";
}

.pill.pill__userflows::after {
  content: "User Flows";
}

.pill.pill__userstories::after {
  content: "User Stories";
}

.pill.pill__abtesting::after {
  content: "AB Testing";
}

.pill.pill__artdirection::after {
  content: "Art Direction";
}

.pill.pill__designsysteme::after {
  content: "Design Systeme";
}

.pill.pill__atomic::after {
  content: "Atomic";
}

.pill.pill__designthinking::after {
  content: "Design Thinking";
}

.pill.pill__appdesign::after {
  content: "App Design";
}

.pill.pill__datavisualisation::after {
  content: "Data Visualisation";
}

.pill.pill__html::after {
  content: "HTML";
}

.pill.pill__css::after {
  content: "CSS";
}

.pill.pill__js::after {
  content: "JS";
}

.pill.pill__react::after {
  content: "React";
}

.pill.pill__git::after {
  content: "GIT";
}

.pill.pill__tailwind::after {
  content: "Tailwind";
}

.pill.pill__storybook::after {
  content: "Storybook";
}

.pill.pill__bootstrap::after {
  content: "Bootstrap";
}

.pill.pill__figma::after {
  content: "Figma";
}

.pill.pill__sketch::after {
  content: "Sketch";
}

.pill.pill__adobecc::after {
  content: "Adobe CC";
}

.pill.pill__vscode::after {
  content: "VS Code";
}

.pill.pill__miro::after {
  content: "Miro";
}

.pill.pill__zeplin::after {
  content: "Zeplin";
}

.pill.pill__invision::after {
  content: "Invision";
}

#portfolio .row {
  padding-top: 0;
}
@media (min-width: 800px) {
  #portfolio h3 {
    font-size: 4.25rem;
    line-height: 1;
    margin-bottom: 0;
  }
}
#portfolio h3 br {
  display: none;
}
@media (min-width: 1000px) {
  #portfolio h3 br {
    display: inline;
  }
}

.project {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 1vh 0;
}
@media (min-width: 800px) {
  .project {
    flex-direction: row;
    padding: 3vh 0;
  }
  .project:nth-of-type(even) {
    flex-direction: row-reverse;
  }
}
.project__showcase {
  width: calc(100vw - 2rem);
}
@media (min-width: 1000px) {
  .project__showcase {
    flex: 2;
  }
}
.project__showcase img {
  width: 100%;
}
@media (min-width: 1000px) {
  .project__showcase img {
    border-radius: 0;
  }
}
.project__description {
  width: 90vw;
  padding: 1rem 5vw;
  box-sizing: border-box;
}
@media (min-width: 1000px) {
  .project__description {
    width: 100vw;
    padding: 0 2vw 0 2vw;
    flex: 1;
  }
}
.project__description h4,
.project__description h5 {
  margin: 0 0 0.5rem 0;
}
.project__description p {
  margin-bottom: 2rem;
}

.vita {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7rem, 1fr));
  column-gap: 3vw;
}
.vita p {
  margin: 0;
}
.vita h3 {
  grid-column: 1/-1;
  grid-row: auto/span 2;
  margin: 1rem 0 3rem 0;
}
@media (min-width: 800px) {
  .vita h3 {
    grid-column: auto/span 2;
  }
}
.vita .project-list {
  grid-column: auto/span 6;
  grid-row: auto/span 1;
}
.vita .project-entry {
  display: grid;
  column-gap: 2rem;
  padding: 0 1rem;
  margin-bottom: 1rem;
  grid-template-columns: 1.5fr 0.5fr 3fr;
  grid-template-rows: repeat(2, min-content);
}
.vita .project-entry::before {
  content: "";
  grid-column: 1/-1;
  grid-row: 1/2;
  border-top: 1px solid var(--color-grey-dark);
}
.vita .project-entry > * {
  padding: 1rem 0 0 0;
}
.vita .project-entry .title {
  grid-column: 1/-1;
  grid-row: 1/2;
}
.vita .project-entry .title h4 {
  margin: 0;
  line-height: 1;
}
.vita .project-entry .category {
  grid-column: 1/-1;
  grid-row: 2/3;
  padding-top: 0;
}
.vita .project-entry .period {
  grid-column: 1/-1;
  grid-row: 3/4;
}
.vita .project-entry .operation {
  grid-column: 1/-1;
  grid-row: 4/5;
}
@media (min-width: 800px) {
  .vita .project-entry > * {
    padding: 1rem 0;
  }
  .vita .project-entry::before {
    content: "";
    grid-column: 2/4;
  }
  .vita .project-entry .title {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .vita .project-entry .title h4 {
    margin: 0;
    line-height: 1;
  }
  .vita .project-entry .category {
    grid-column: 1/2;
    grid-row: 2/3;
    padding-top: 0;
  }
  .vita .project-entry .period {
    grid-column: 2/3;
    grid-row: 1/3;
  }
  .vita .project-entry .operation {
    grid-column: 3/4;
    grid-row: 1/3;
  }
}

footer {
  min-height: 100%;
  background: url("/assets/img/me.jpeg") rgba(35, 37, 43, 0.8) center center;
  background-size: cover;
  background-blend-mode: multiply;
  position: relative;
  display: block;
}
@media (min-width: 800px) {
  footer .contact-area {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 50vh;
  }
}
@media (min-width: 800px) and (min-width: 1000px) {
  footer .contact-area {
    height: 70vh;
  }
}
footer h2 {
  font-size: 3rem;
}
footer nav {
  align-self: flex-end;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  flex-direction: row;
  row-gap: 2rem;
  column-gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 600px) {
  footer nav {
    justify-content: flex-end;
    align-items: flex-end;
    margin-top: 0;
  }
}
footer nav a {
  font-size: 0.7rem;
  color: var(--color-grey-dark);
}

.contact {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.contact a {
  color: var(--color-light-primary);
  font-size: 1.4rem;
  line-height: 2.6rem;
  font-weight: 700;
}

#disclaimer h1 {
  margin: 13rem 0 3rem 0;
  text-align: left;
}
#disclaimer a .navigation__button {
  top: 0;
  right: 0;
}
#disclaimer a .home__icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  height: 90%;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#disclaimer a .home__icon svg {
  fill: var(--color-light-primary);
  width: 2.3rem;
  height: 2.3rem;
}
@media (min-width: 600px) {
  #disclaimer a .home__icon svg {
    width: 3.3rem;
    height: 3.3rem;
  }
}
#disclaimer a:hover svg {
  fill: var(--color-grey-dark);
  transition: all ease-in-out 0.25s;
}

/*# sourceMappingURL=main.css.map */
