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

.html {
  scroll-behavior: smooth; }

.body {
  min-height: 100vh;
  display: flex;
  flex-flow: column;
  justify-content: space-between; }
  .body--overflow-hidden {
    overflow: hidden; }

.no-scroll {
  overflow: hidden; }

.scroll-anchor {
  transform: translateY(-3rem); }

.main {
  margin-inline: auto; }

.unorderedList {
  padding-inline-start: 2rem; }

.contentWrapper {
  max-width: 100vw;
  margin-inline: auto;
  padding: 1.5rem; }
  @media only screen and (min-width: 48rem) {
    .contentWrapper {
      max-width: 48rem; } }
  .contentWrapper--no-Stage {
    padding-block-start: 6rem; }

.swoop-in {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.5s, transform 0.5s; }
  .swoop-in--show {
    transform: translateY(0);
    opacity: 1; }

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "Poppins"; }

.headline {
  margin-block-start: 2rem;
  padding-block-start: 2rem;
  border-top: 1px solid #d9d9d9; }

p,
.paragraph {
  font-family: "Inria Sans";
  font-weight: lighter;
  letter-spacing: -0.05rem;
  margin-block-start: 1rem;
  font-size: 1.2rem; }
  p--highlight,
  .paragraph--highlight {
    font-size: 2rem; }

.bold {
  font-weight: 600; }

.header {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4.5px);
  border-bottom: 2px solid #9b9b9b;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s; }
  .header--show {
    opacity: 1;
    pointer-events: all; }
  .header__wrapper {
    margin-inline: auto;
    padding: 0 1.75rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-width: 90rem;
    height: 100%;
    position: relative; }
    @media only screen and (min-width: 48rem) {
      .header__wrapper {
        padding: 0; } }
  .header__button {
    height: 2rem;
    width: 2rem;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: white; }
    @media only screen and (min-width: 48rem) {
      .header__button {
        display: none; } }
    .header__button--open .header__button-stroke {
      background-color: transparent; }
      .header__button--open .header__button-stroke::before, .header__button--open .header__button-stroke::after {
        scale: 1.4; }
      .header__button--open .header__button-stroke::before {
        rotate: 45deg;
        top: 0; }
      .header__button--open .header__button-stroke::after {
        rotate: -45deg;
        bottom: 0; }
  .header__button-stroke {
    position: relative;
    transition: background-color 0.2s; }
    .header__button-stroke, .header__button-stroke::before, .header__button-stroke::after {
      display: block;
      width: 1rem;
      height: 0.2rem;
      background-color: black;
      border-radius: 0.1rem; }
    .header__button-stroke::before, .header__button-stroke::after {
      content: "";
      right: 0;
      position: absolute; }
    .header__button-stroke::before {
      top: -0.375rem;
      width: 110%;
      transition: top 0.2s, rotate 0.2s, scale 0.2s; }
    .header__button-stroke::after {
      bottom: -0.375rem;
      width: 120%;
      transition: bottom 0.2s, rotate 0.2s, scale 0.2s; }
  .header__menu-wrapper {
    position: absolute;
    background-color: white;
    top: 60px;
    right: 0;
    left: 0;
    width: 100%;
    height: calc(100% - $header-height);
    transform: translateX(100%);
    transition: transform 0.2s; }
    .header__menu-wrapper--open {
      transform: translateX(0); }
    @media only screen and (min-width: 48rem) {
      .header__menu-wrapper {
        position: relative;
        top: 0;
        transform: translateX(0);
        background-color: transparent;
        height: 100%; } }
  .header__backdrop {
    display: none;
    position: fixed;
    top: 3.75rem;
    left: 0;
    right: 0;
    height: calc(100vh - 3.75rem);
    z-index: -1; }
    .header__backdrop--show {
      display: block; }

.menu-list {
  display: none;
  max-width: 64rem;
  margin: 2.5rem auto;
  text-align: center;
  list-style-type: none; }
  .menu-list--open {
    display: block; }
  @media only screen and (min-width: 48rem) {
    .menu-list {
      display: flex;
      margin-inline: auto;
      margin-block: 0;
      height: 100%; } }
  @media only screen and (min-width: 48rem) {
    .menu-list__item {
      width: 100%;
      height: 100%;
      position: relative;
      background: white;
      color: black; }
      .menu-list__item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background-color: #9b9b9b;
        height: 0;
        transition: height 0.2s cubic-bezier(0.77, 0, 0.18, 1); }
      .menu-list__item:hover::before {
        height: 100%; } }
  .menu-list__link {
    color: black;
    display: block;
    padding: 1.25rem 0;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-family: "Raleway"; }
    @media only screen and (min-width: 48rem) {
      .menu-list__link {
        display: flex;
        padding: 0;
        height: 100%;
        justify-content: center;
        align-items: center;
        position: relative;
        transition: color 0.2s;
        text-decoration: none !important; }
        .menu-list__link:hover {
          color: white; } }
    .menu-list__link:hover, .menu-list__link:focus, .menu-list__link:active {
      text-decoration: underline; }

.stage {
  position: relative;
  overflow: hidden;
  height: 100vh;
  min-width: 100vw; }
  .stage::before, .stage::after {
    content: "";
    position: absolute;
    border: 3.75rem solid;
    z-index: 1; }
  .stage::before {
    top: 0;
    left: 0;
    border-color: #373737 transparent transparent #373737; }
  .stage::after {
    bottom: 0;
    right: 0;
    border-color: transparent #373737 #373737 transparent; }
  .stage__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
    filter: blur(5px);
    transform: scale(1.2); }
    @media only screen and (min-width: 35rem) {
      .stage__image {
        aspect-ratio: 21/9; } }
  .stage__slogan {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 6.25rem));
    color: white;
    text-shadow: 1px 1px 1px #373737;
    opacity: 0;
    transition: transform 0.5s, opacity 0.5s;
    width: 80%;
    text-align: center; }
    @media only screen and (min-width: 48rem) {
      .stage__slogan {
        font-size: 3.625rem; } }
    .stage__slogan--show {
      transform: translate(-50%, -50%);
      opacity: 1; }

.footer {
  --background-pattern-space: 2rem;
  background-image: radial-gradient(#9b9b9b 2px, transparent 2px);
  background-color: #373737;
  background-size: var(--background-pattern-space) var(--background-pattern-space);
  width: 100%;
  padding-block: 1.5rem; }
  @media only screen and (min-width: 35rem) {
    .footer__wrapper {
      display: flex; } }
  @media only screen and (min-width: 35rem) {
    .footer__links {
      width: 50%;
      flex-shrink: 0; } }
  .footer__contact {
    color: white; }
    @media only screen and (min-width: 35rem) {
      .footer__contact {
        width: 50%;
        flex-shrink: 0; } }
  .footer__contact-line {
    color: white;
    font-family: "Inria Sans";
    text-decoration: none;
    display: inline-block;
    padding-block: 1.5rem; }

.footer-link {
  color: white;
  font-family: "Inria Sans";
  text-decoration: none;
  display: inline-block;
  padding-block: 1.5rem; }
  .footer-link--consent-button {
    color: white;
    font-family: "Inria Sans";
    font-size: 1rem;
    cursor: pointer;
    background-color: transparent;
    border: none; }

.languageSwitch {
  border: 3px solid #373737;
  background-color: white;
  position: fixed;
  z-index: 99999;
  top: 25vh;
  right: -3px;
  display: flex;
  flex-direction: column;
  text-decoration: none; }
  .languageSwitch__singleButton {
    padding: 1rem;
    text-transform: uppercase;
    font-family: "Raleway";
    font-weight: 800;
    color: #373737; }
    .languageSwitch__singleButton--active {
      background-color: #9b9b9b;
      color: white; }

.cookieConsent {
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75); }
  .cookieConsent__bannerWrapper {
    background-color: white;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center; }
  .cookieConsent__banner {
    max-width: 48rem;
    display: flex;
    gap: 1rem;
    padding-inline: 1.5rem;
    padding-block: 2rem; }
  .cookieConsent__textWrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem; }
  .cookieConsent__headline {
    font-family: "Raleway";
    font-weight: 800;
    margin-top: 0; }
  .cookieConsent__text {
    font-family: "Raleway";
    font-weight: 500;
    margin-top: 0; }
  .cookieConsent__buttonWrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; }
  .cookieConsent__button {
    font-family: "Raleway";
    border: 2px solid black;
    background-color: #373737;
    padding: 0.5rem;
    color: white;
    cursor: pointer; }
    .cookieConsent__button:hover {
      color: black;
      background-color: white; }
    .cookieConsent__button--deny {
      background-color: #9b9b9b;
      color: black; }
      .cookieConsent__button--deny:hover {
        background-color: white; }

.about-us__person-wrapper {
  display: block;
  text-align: center;
  margin-block-start: 1rem; }
.about-us__person-img {
  border-radius: 50%;
  height: 12.5rem;
  width: 12.5rem;
  object-fit: cover; }

.services__list {
  margin-block-start: 1rem; }
.services__label {
  margin-block-start: 0; }
.services__list, .services__sub-list {
  margin-block-start: 1rem;
  padding-inline-start: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style-type: circle; }

.portfolio__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-block-start: 2rem; }
  @media only screen and (min-width: 48rem) {
    .portfolio__wrapper {
      gap: 2rem; } }
.portfolio__entry {
  overflow: hidden;
  position: relative;
  width: 100%;
  box-shadow: 0px 0px 1px black; }
  .portfolio__entry:hover .portfolio__name {
    transform: translateY(0); }
  @media only screen and (min-width: 48rem) {
    .portfolio__entry {
      width: calc(50% - 1rem); } }
.portfolio__name {
  height: 100%;
  border: 1px solid black;
  transform: translateY(-100%);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  font-family: Poppins;
  color: black;
  font-size: 2.5rem;
  font-weight: bold;
  transition: transform 0.2s; }
.portfolio__img {
  width: 100%; }

.contact {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-around;
  margin-block-start: 1rem; }
  .contact__item {
    font-family: "Inria Sans";
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 18.75rem; }
  .contact__col {
    margin-block-start: 0; }
  .contact__icon {
    height: 3.75rem; }
  .contact__label {
    text-transform: uppercase; }
  .contact__link {
    text-decoration: none;
    color: black; }
    .contact__link:hover {
      text-decoration: underline; }
    .contact__link::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0; }

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