@charset "UTF-8";
/* figtree-300 - 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: "Figtree";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/figtree-v4-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* figtree-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: "Figtree";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/figtree-v4-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* figtree-500 - 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: "Figtree";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/figtree-v4-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* figtree-600 - 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: "Figtree";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/figtree-v4-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* figtree-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: "Figtree";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/figtree-v4-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* figtree-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: "Figtree";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/figtree-v4-latin-800.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* figtree-900 - 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: "Figtree";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/figtree-v4-latin-900.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Figtree", sans-serif;
}

:root {
  --color-bg: rgba(240,240,240,1);
  --color-grey: rgba(100,100,100,1);
  --color-grey-light: rgba(150,150,150,1);
  --color-grey-extra-light: rgba(200,200,200,1);
  --color-red: rgba(206,1,31,1);
}

@keyframes scrollDown {
  0% {
    top: 10px;
    opacity: 0;
  }
  15% {
    top: 10px;
    opacity: 1;
  }
  30% {
    top: 10px;
    opacity: 1;
  }
  45% {
    top: 20px;
    opacity: 1;
  }
  100% {
    top: 20px;
    opacity: 0;
  }
}
@media (min-width: 1200px) {
  body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: var(--color-bg);
  }
  body .active {
    color: var(--color-red);
    pointer-events: none;
  }
  body section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
  }
  body section.active {
    opacity: 1;
    transform: translateY(0px);
    pointer-events: all;
  }
  body .section__nav {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 0;
    opacity: 1;
    margin-top: 40px;
    padding: 0vw 12vw;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    max-width: 1920px;
  }
  body .section__nav .logo svg {
    width: 160px;
  }
  body .section__nav .navlinks {
    display: flex;
    flex-direction: column;
  }
  body .section__nav .navlinks .link {
    height: 25px;
    width: 100%;
    align-items: center;
    color: var(--color-grey-light);
    text-decoration: none;
    display: flex;
    justify-content: end;
  }
  body .section__nav .navlinks .link .mask {
    position: relative;
    padding: 0;
    height: 0.8rem;
    /*  Remove overflow to see how it works　:) */
    overflow: hidden;
  }
  body .section__nav .navlinks .link .mask .link-container {
    transition: transform 0.25s ease;
  }
  body .section__nav .navlinks .link .mask .link-container .title {
    display: block;
    /*  Set same font-size and line height  */
    font-size: 0.8rem;
    line-height: 0.8rem;
    letter-spacing: 0.1rem;
    font-weight: 500;
    transition: transform 0.25s ease;
  }
  body .section__nav .navlinks .link .mask .link-container .title .link-title1 {
    transform-origin: right center;
  }
  body .section__nav .navlinks .link .mask .link-container .title .link-title2 {
    transform-origin: left center;
  }
  body .section__nav .navlinks .link:hover .link-container {
    transform: translateY(-0.8rem);
    color: var(--color-grey);
  }
  body .section__nav .navlinks .link.active {
    color: var(--color-red);
  }
  body .section__home {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1920px;
  }
  body .section__home .logo__container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  body .section__home .logo__container .logo__image {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  body .section__home .logo__container .logo__image svg {
    width: 225px;
    margin-right: 50px;
  }
  body .section__home .logo__container .logo__text {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  body .section__home .logo__container .logo__text h1 {
    font-size: 90px;
    color: var(--color-grey);
    letter-spacing: -8px;
    margin-bottom: -15px;
  }
  body .section__home .logo__container .logo__text h2 {
    font-size: 60px;
    color: var(--color-grey);
    margin-bottom: -5px;
  }
  body .section__home .logo__container .logo__text p {
    font-size: 40px;
    color: var(--color-grey);
  }
  body .section__home img {
    width: 550px;
  }
  body .section__kontakt {
    position: absolute;
    display: flex;
    opacity: 0;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    max-width: 1920px;
  }
  body .section__kontakt h1 {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 0.1rem;
    color: var(--color-grey);
    margin-bottom: 90px;
    align-self: flex-start;
  }
  body .section__kontakt .kontakt__container {
    display: flex;
    flex-direction: row;
    gap: 105px;
  }
  body .section__kontakt .kontakt__content h2 {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.1rem;
    color: var(--color-grey);
  }
  body .section__kontakt .kontakt__content svg {
    fill: var(--color-grey);
    margin-top: 40px;
    margin-bottom: 40px;
  }
  body .section__kontakt .kontakt__content p {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
    color: var(--color-grey);
  }
  body .section__kontakt .kontakt__content a {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
    color: var(--color-grey);
    cursor: pointer;
  }
  body .section__footer {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    bottom: 0;
    opacity: 1;
    margin-bottom: 40px;
    padding: 0vw 12vw;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    max-width: 1920px;
  }
  body .section__footer .scroll__down {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  body .section__footer .scroll__mouse {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 38px;
    border: 1px solid var(--color-grey-light);
    border-radius: 12px;
  }
  body .section__footer .scroll__wheel {
    position: absolute;
    top: 18px;
    left: 9px;
    width: 4px;
    height: 4px;
    background-color: var(--color-grey-light);
    border-radius: 50%;
    animation: scrollDown 2.5s infinite;
  }
  body .section__footer .footer__legal {
    display: flex;
    flex-direction: column;
  }
  body .section__footer .footer__legal .link {
    height: 25px;
    align-items: center;
    color: var(--color-grey-light);
    text-decoration: none;
    display: flex;
  }
  body .section__footer .footer__legal .link .mask {
    position: relative;
    padding: 0;
    height: 0.8rem;
    /*  Remove overflow to see how it works　:) */
    overflow: hidden;
  }
  body .section__footer .footer__legal .link .mask .link-container {
    transition: transform 0.25s ease;
  }
  body .section__footer .footer__legal .link .mask .link-container .title {
    display: block;
    /*  Set same font-size and line height  */
    font-size: 0.8rem;
    line-height: 0.8rem;
    letter-spacing: 0.1rem;
    font-weight: 500;
    transition: transform 0.25s ease;
  }
  body .section__footer .footer__legal .link .mask .link-container .title .link-title1 {
    transform-origin: right center;
  }
  body .section__footer .footer__legal .link .mask .link-container .title .link-title2 {
    transform-origin: left center;
  }
  body .section__footer .footer__legal .link:hover .link-container {
    transform: translateY(-0.8rem);
    color: var(--color-grey);
  }
  body .section__footer .footer__copyright {
    display: flex;
    flex-direction: column;
  }
  body .section__footer .footer__copyright p {
    font-size: 0.8rem;
    line-height: 25px;
    font-weight: 400;
    text-align: end;
    color: var(--color-grey-extra-light);
  }
}
@media (max-width: 1199px) and (min-width: 601px) {
  body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: var(--color-bg);
  }
  body .active {
    color: var(--color-red);
    pointer-events: none;
  }
  body section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
  }
  body section.active {
    opacity: 1;
    transform: translateY(0px);
    pointer-events: all;
  }
  body .section__nav {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 0;
    opacity: 1;
    margin-top: 40px;
    padding: 0vw 8vw;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    max-width: 1920px;
  }
  body .section__nav .logo svg {
    width: 160px;
  }
  body .section__nav .navlinks {
    display: flex;
    flex-direction: column;
  }
  body .section__nav .navlinks .link {
    height: 25px;
    width: 100%;
    align-items: center;
    color: var(--color-grey-light);
    text-decoration: none;
    display: flex;
    justify-content: end;
  }
  body .section__nav .navlinks .link .mask {
    position: relative;
    padding: 0;
    height: 0.8rem;
    /*  Remove overflow to see how it works　:) */
    overflow: hidden;
  }
  body .section__nav .navlinks .link .mask .link-container {
    transition: transform 0.25s ease;
  }
  body .section__nav .navlinks .link .mask .link-container .title {
    display: block;
    /*  Set same font-size and line height  */
    font-size: 0.8rem;
    line-height: 0.8rem;
    letter-spacing: 0.1rem;
    font-weight: 500;
    transition: transform 0.25s ease;
  }
  body .section__nav .navlinks .link .mask .link-container .title .link-title1 {
    transform-origin: right center;
  }
  body .section__nav .navlinks .link .mask .link-container .title .link-title2 {
    transform-origin: left center;
  }
  body .section__nav .navlinks .link:hover .link-container {
    transform: translateY(-0.8rem);
    color: var(--color-grey);
  }
  body .section__nav .navlinks .link.active {
    color: var(--color-red);
  }
  body .section__home {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1920px;
  }
  body .section__home .logo__container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  body .section__home .logo__container .logo__image {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  body .section__home .logo__container .logo__image svg {
    width: 120px;
    margin-right: 25px;
  }
  body .section__home .logo__container .logo__text {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  body .section__home .logo__container .logo__text h1 {
    font-size: 60px;
    color: var(--color-grey);
    letter-spacing: -8px;
    margin-bottom: -15px;
  }
  body .section__home .logo__container .logo__text h2 {
    font-size: 30px;
    color: var(--color-grey);
    margin-bottom: -5px;
  }
  body .section__home .logo__container .logo__text p {
    font-size: 20px;
    color: var(--color-grey);
  }
  body .section__home img {
    width: 300px;
  }
  body .section__kontakt {
    position: absolute;
    display: flex;
    opacity: 0;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    max-width: 1920px;
  }
  body .section__kontakt h1 {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 0.1rem;
    color: var(--color-grey);
    margin-bottom: 60px;
    align-self: flex-start;
  }
  body .section__kontakt .kontakt__container {
    display: flex;
    flex-direction: row;
    gap: 30px;
  }
  body .section__kontakt .kontakt__content h2 {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.1rem;
    color: var(--color-grey);
  }
  body .section__kontakt .kontakt__content svg {
    fill: var(--color-grey);
    margin-top: 20px;
    margin-bottom: 20px;
  }
  body .section__kontakt .kontakt__content p {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
    color: var(--color-grey);
  }
  body .section__kontakt .kontakt__content a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
    color: var(--color-grey);
    cursor: pointer;
  }
  body .section__footer {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    bottom: 0;
    opacity: 1;
    margin-bottom: 40px;
    padding: 0vw 8vw;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    max-width: 1920px;
  }
  body .section__footer .scroll__down {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  body .section__footer .scroll__mouse {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 38px;
    border: 1px solid var(--color-grey-light);
    border-radius: 12px;
  }
  body .section__footer .scroll__wheel {
    position: absolute;
    top: 18px;
    left: 9px;
    width: 4px;
    height: 4px;
    background-color: var(--color-grey-light);
    border-radius: 50%;
    animation: scrollDown 2.5s infinite;
  }
  body .section__footer .footer__legal {
    display: flex;
    flex-direction: column;
  }
  body .section__footer .footer__legal .link {
    height: 25px;
    align-items: center;
    color: var(--color-grey-light);
    text-decoration: none;
    display: flex;
  }
  body .section__footer .footer__legal .link .mask {
    position: relative;
    padding: 0;
    height: 0.8rem;
    /*  Remove overflow to see how it works　:) */
    overflow: hidden;
  }
  body .section__footer .footer__legal .link .mask .link-container {
    transition: transform 0.25s ease;
  }
  body .section__footer .footer__legal .link .mask .link-container .title {
    display: block;
    /*  Set same font-size and line height  */
    font-size: 0.8rem;
    line-height: 0.8rem;
    letter-spacing: 0.1rem;
    font-weight: 500;
    transition: transform 0.25s ease;
  }
  body .section__footer .footer__legal .link .mask .link-container .title .link-title1 {
    transform-origin: right center;
  }
  body .section__footer .footer__legal .link .mask .link-container .title .link-title2 {
    transform-origin: left center;
  }
  body .section__footer .footer__legal .link:hover .link-container {
    transform: translateY(-0.8rem);
    color: var(--color-grey);
  }
  body .section__footer .footer__copyright {
    display: flex;
    flex-direction: column;
  }
  body .section__footer .footer__copyright p {
    font-size: 0.8rem;
    line-height: 25px;
    font-weight: 400;
    text-align: end;
    color: var(--color-grey-extra-light);
  }
}
@media (max-width: 600px) {
  body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: var(--color-bg);
  }
  body .active {
    color: var(--color-red);
    pointer-events: none;
  }
  body section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
  }
  body section.active {
    opacity: 1;
    transform: translateY(0px);
    pointer-events: all;
  }
  body .section__nav {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 0;
    opacity: 1;
    margin-top: 25px;
    padding: 0vw 8vw;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    max-width: 1920px;
  }
  body .section__nav .logo svg {
    width: 140px;
  }
  body .section__nav .navlinks {
    display: flex;
    flex-direction: column;
  }
  body .section__nav .navlinks .link {
    height: 20px;
    width: 100%;
    align-items: center;
    color: var(--color-grey-light);
    text-decoration: none;
    display: flex;
    justify-content: end;
  }
  body .section__nav .navlinks .link .mask {
    position: relative;
    padding: 0;
    height: 0.8rem;
    /*  Remove overflow to see how it works　:) */
    overflow: hidden;
  }
  body .section__nav .navlinks .link .mask .link-container {
    transition: transform 0.25s ease;
  }
  body .section__nav .navlinks .link .mask .link-container .title {
    display: block;
    /*  Set same font-size and line height  */
    font-size: 0.8rem;
    line-height: 0.8rem;
    letter-spacing: 0.1rem;
    font-weight: 500;
    transition: transform 0.25s ease;
  }
  body .section__nav .navlinks .link .mask .link-container .title .link-title1 {
    transform-origin: right center;
  }
  body .section__nav .navlinks .link .mask .link-container .title .link-title2 {
    transform-origin: left center;
  }
  body .section__nav .navlinks .link:hover .link-container {
    transform: translateY(-0.8rem);
    color: var(--color-grey);
  }
  body .section__nav .navlinks .link.active {
    color: var(--color-red);
  }
  body .section__home {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    width: 100%;
    max-width: 1920px;
  }
  body .section__home .logo__container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
  }
  body .section__home .logo__container .logo__image {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  body .section__home .logo__container .logo__image svg {
    width: 90px;
    margin-right: 8px;
  }
  body .section__home .logo__container .logo__text {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  body .section__home .logo__container .logo__text h1 {
    font-size: 40px;
    color: var(--color-grey);
    letter-spacing: -4px;
    margin-bottom: -8px;
  }
  body .section__home .logo__container .logo__text h2 {
    font-size: 22px;
    color: var(--color-grey);
    margin-bottom: -2px;
  }
  body .section__home .logo__container .logo__text p {
    font-size: 17px;
    color: var(--color-grey);
  }
  body .section__home img {
    width: 250px;
    margin-bottom: 30px;
  }
  body .section__kontakt {
    position: absolute;
    display: flex;
    opacity: 0;
    justify-content: space-between;
    flex-direction: column;
    max-width: 1920px;
  }
  body .section__kontakt h1 {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.1rem;
    color: var(--color-grey);
    margin-bottom: 40px;
    align-self: flex-start;
  }
  body .section__kontakt .kontakt__container {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  body .section__kontakt .kontakt__content h2 {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.1rem;
    color: var(--color-grey);
  }
  body .section__kontakt .kontakt__content svg {
    fill: var(--color-grey);
    margin-top: 10px;
    margin-bottom: 10px;
  }
  body .section__kontakt .kontakt__content p {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
    color: var(--color-grey);
  }
  body .section__kontakt .kontakt__content a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
    color: var(--color-grey);
    cursor: pointer;
  }
  body .section__footer {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    bottom: 0;
    opacity: 1;
    margin-bottom: 25px;
    padding: 0vw 8vw;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    max-width: 1920px;
  }
  body .section__footer .scroll__down {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
  }
  body .section__footer .scroll__mouse {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 38px;
    border: 1px solid var(--color-grey-light);
    border-radius: 5px;
  }
  body .section__footer .scroll__wheel {
    position: absolute;
    top: 18px;
    left: 9px;
    width: 4px;
    height: 4px;
    background-color: var(--color-grey-light);
    border-radius: 50%;
    animation: scrollDown 2.5s infinite;
  }
  body .section__footer .footer__legal {
    display: flex;
    flex-direction: row;
    gap: 20px;
  }
  body .section__footer .footer__legal .link {
    height: 30px;
    align-items: center;
    color: var(--color-grey-light);
    text-decoration: none;
    display: flex;
  }
  body .section__footer .footer__legal .link .mask {
    position: relative;
    padding: 0;
    height: 0.8rem;
    /*  Remove overflow to see how it works　:) */
    overflow: hidden;
  }
  body .section__footer .footer__legal .link .mask .link-container {
    transition: transform 0.25s ease;
  }
  body .section__footer .footer__legal .link .mask .link-container .title {
    display: block;
    /*  Set same font-size and line height  */
    font-size: 0.8rem;
    line-height: 0.8rem;
    letter-spacing: 0.1rem;
    font-weight: 500;
    transition: transform 0.25s ease;
  }
  body .section__footer .footer__legal .link .mask .link-container .title .link-title1 {
    transform-origin: right center;
  }
  body .section__footer .footer__legal .link .mask .link-container .title .link-title2 {
    transform-origin: left center;
  }
  body .section__footer .footer__legal .link:hover .link-container {
    transform: translateY(-0.8rem);
    color: var(--color-grey);
  }
  body .section__footer .footer__copyright {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  body .section__footer .footer__copyright p {
    font-size: 0.7rem;
    line-height: 15px;
    font-weight: 400;
    text-align: end;
    color: var(--color-grey-extra-light);
  }
}/*# sourceMappingURL=main.css.map */