@font-face {
  font-display: swap;
  font-family: Inter Tight;
  font-style: normal;
  font-weight: 400;
  src: url("inter-tight-v7-latin-regular.eaed4928.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: Inter Tight;
  font-style: normal;
  font-weight: 600;
  src: url("inter-tight-v7-latin-600.37a3fd14.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: Inter Tight;
  font-style: normal;
  font-weight: 700;
  src: url("inter-tight-v7-latin-700.cff2321c.woff2") format("woff2");
}

body {
  --body-background: #fff;
  --header-background: #fff;
  --carousel-background: #fefefe;
  --footer-background: #f4f4f4;
  --nav-bottom-devide: #d9d9d9;
  --accent: oklch(55.96% .0635 43.87);
  --text-color: oklch(25.13% .0635 43.87);
  --text-color-alpha: oklch(25.13% .0635 43.87 / .75);
  --box-shadow-layered-default: 0px 0px .6px #00000006, .1px .1px 1.6px #00000008, .2px .2px 3.2px #0000000a, .4px .4px 6.6px #0000000c, 1px 1px 18px #00000012;
  --box-shadow-layered-smooth: 0px .6px 2.7px #00000005, 0px 1.8px 5.1px #00000006, 0px 4.2px 8.5px #00000008, 0px 14px 25px #00000012;
}

body.dark-theme {
  --body-background: #1f2937;
  --header-background: #273445;
  --carousel-background: #1a222e;
  --footer-background: #141b24;
  --nav-bottom-devide: #fafafa40;
  --text-color: oklch(95.81% 0 0);
  --text-color-alpha: oklch(95.81% 0 0 / .9);
  --accent: oklch(75.49% .1256 260.62);
  --box-shadow-layered-default: 0px 0px .6px #00000012, .1px .1px 1.6px #00000015, .2px .2px 3.2px #00000017, .4px .4px 6.6px #00000019, 1px 1px 18px #00000017;
  --box-shadow-layered-smooth: 0px .6px 2.7px #0001, 0px 1.8px 5.1px #00000015, 0px 4.2px 8.5px #00000015, 0px 14px 25px #00000017;
}

@media (prefers-color-scheme: dark) {
  body {
    --body-background: #1f2937;
    --header-background: #273445;
    --carousel-background: #1a222e;
    --footer-background: #141b24;
    --nav-bottom-devide: #fafafa40;
    --text-color: oklch(95.81% 0 0);
    --text-color-alpha: oklch(95.81% 0 0 / .9);
    --accent: oklch(75.49% .1256 260.62);
    --box-shadow-layered-default: 0px 0px .6px #00000012, .1px .1px 1.6px #00000015, .2px .2px 3.2px #00000017, .4px .4px 6.6px #00000019, 1px 1px 18px #00000017;
    --box-shadow-layered-smooth: 0px .6px 2.7px #0001, 0px 1.8px 5.1px #00000015, 0px 4.2px 8.5px #00000015, 0px 14px 25px #00000017;
  }

  body.light-theme {
    --body-background: #fff;
    --header-background: #fff;
    --carousel-background: #fefefe;
    --footer-background: #f4f4f4;
    --nav-bottom-devide: #d9d9d9;
    --accent: oklch(55.96% .0635 43.87);
    --text-color: oklch(25.13% .0635 43.87);
    --text-color-alpha: oklch(25.13% .0635 43.87 / .75);
    --box-shadow-layered-default: 0px 0px .6px #00000006, .1px .1px 1.6px #00000008, .2px .2px 3.2px #0000000a, .4px .4px 6.6px #0000000c, 1px 1px 18px #00000012;
    --box-shadow-layered-smooth: 0px .6px 2.7px #00000005, 0px 1.8px 5.1px #00000006, 0px 4.2px 8.5px #00000008, 0px 14px 25px #00000012;
  }
}

html, input, textarea, select {
  font-size: 16px;
}

@media (width >= 640px) {
  html, input, textarea, select {
    font-size: 18px;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}

body {
  background: var(--body-background);
  color: var(--text-color);
  letter-spacing: .03em;
  margin: 0;
  font-family: Inter Tight, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  transition: color .25s cubic-bezier(.5, .19, .69, 1);
}

.container {
  box-sizing: border-box;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.section {
  -webkit-padding-start: 30px;
  padding-block: 4em 2em;
  padding-inline-start: 30px;
}

.section-heading {
  -webkit-padding-after: .5em;
  margin-top: 0;
  padding-block-end: .5em;
  position: relative;
}

.section-heading:after {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(15%, var(--text-color-alpha)), color-stop(75%, transparent));
  background-image: linear-gradient(90deg, var(--text-color-alpha) 15%, transparent 75%);
  content: "";
  background-repeat: repeat;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: -30px;
  right: 0;
}

.section-intro {
  min-height: 3.0625rem;
}

.hiddenarea {
  display: none;
}

h1 {
  margin: 0;
  font-size: 1em;
  line-height: 1em;
}

h2 {
  color: var(--accent);
  margin: 32px 0 24px;
  font-size: 1.8em;
  font-weight: 600;
  line-height: 1.2em;
}

h3 {
  color: var(--text-color);
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
}

.carousel-item h3, h4 {
  margin: 18px 0 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
}

::-moz-focus-inner {
  border: 0;
}

strong {
  font-weight: bold;
}

.header:after, .main:after {
  clear: both;
  content: "";
  display: table;
}

p {
  margin: 0 0 1em;
  line-height: 1.5em;
}

a {
  color: var(--text-color);
  transition: color .25s cubic-bezier(.5, .19, .69, 1);
  outline: none !important;
}

a:target {
  -webkit-padding-start: 100px;
  padding-inline-start: 100px;
}

a:focus, a:hover {
  color: var(--accent);
  text-decoration: none;
}

input, textarea {
  outline: none;
  transition: all .2s cubic-bezier(.5, .19, .69, 1);
}

button:focus {
  outline: none;
}

iframe {
  padding: 0;
  width: 100% !important;
  max-width: 100% !important;
}

img, picture {
  max-width: 100%;
  height: auto;
}

.scroll-up .nav-list li a {
  background-position: 100% 100%;
}

.scroll-up .nav-list li a.current {
  background: linear-gradient(to left, var(--text-color) 99.99%, transparent);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 100% 2px;
}

.ie11 .logo--signet {
  display: none;
}

@media (width >= 800px) {
  html {
    scroll-padding-top: 60px;
  }

  .logo, .section {
    padding-inline-start: 60px;
  }
}

@media (width <= 800px) {
  .header {
    padding: 20px 0 12px;
  }

  .header .container {
    flex-direction: column;
  }

  .header .nav {
    margin-left: 0;
  }

  .header .nav a.current {
    background: none;
  }

  .header .nav-list-trigger-holder {
    display: block;
  }

  .header .nav-list {
    padding: 0;
    transition: padding 2s ease-in-out;
  }

  .header.nav-open .nav {
    display: block;
  }

  .header.nav-open .nav-list {
    padding: 10px 0;
  }

  .site-logo {
    padding: 0 0 16px;
  }

  .vito--ani-signet {
    max-width: 100px;
  }

  .vito--types {
    max-width: 192px;
  }

  .site-claim h2 {
    font-size: 16px;
  }

  .site-claim .spacer {
    width: 3px;
    display: inline-block;
  }

  .header .nav-list li, .footer .nav-list li {
    border-bottom: 1px solid var(--nav-bottom-devide);
    margin: 0;
    padding: 3px 0;
    display: block;
  }

  .header .nav-list li:last-child, .footer .nav-list li:last-child {
    border-bottom: none;
  }

  .header .nav-list a, .footer .nav-list a {
    text-decoration: none;
  }

  .scroll-up .nav-list li a.current {
    background: none;
  }
}

@media (width <= 480px) {
  .site-logo {
    padding: 0 0 20px;
  }

  .logo--signet, .logo--type {
    display: block;
  }

  .vito--types {
    margin: 6px 0 0;
  }

  .site-claim h2 {
    font-size: 18px;
  }

  .site-claim--part {
    display: block;
  }

  .projects--navigation {
    top: 10px;
  }

  iframe.piwik {
    min-height: 600px;
  }

  .form--submit {
    text-align: center;
  }
}

.header {
  background-color: var(--header-background);
  box-shadow: var(--box-shadow-layered-default);
  text-align: right;
  z-index: 1001;
  padding: 1.25em 0;
  font-size: 16px;
  position: sticky;
  top: 0;
}

.header .container {
  text-align: left;
  align-items: center;
  display: flex;
}

.logo {
  float: left;
  text-align: left;
  flex: 1;
  max-width: 160px;
  max-height: 37px;
  margin-left: -7px;
}

.logo svg {
  width: 140px;
  height: 26px;
}

.logo path, .logo rect {
  transition: color .1s ease-out;
  fill: var(--accent) !important;
}

@media (width >= 640px) {
  .logo {
    max-width: 200px;
    max-height: 46px;
    margin-left: -8px;
  }

  .logo svg {
    width: 180px;
    height: 33px;
  }
}

.footer {
  background-color: var(--footer-background);
  text-align: center;
  margin-top: 64px;
  padding: 32px 0;
  font-size: 16px;
}

.copyright {
  margin: 9px 0 6px;
}

.nav {
  flex-direction: column;
  margin-left: auto;
  display: none;
}

.nav-list {
  letter-spacing: .03em;
  text-transform: uppercase;
  margin: 0;
  padding: 9px 0 0;
  font-weight: 700;
  list-style: none;
}

.nav-list-trigger {
  cursor: pointer;
  width: 60px;
  height: 45px;
  margin: auto;
  transition: all .5s ease-in-out;
  position: relative;
  transform: rotate(0);
}

.nav-list-trigger-holder {
  transform-origin: 100% 0;
  z-index: 2;
  display: none;
  position: absolute;
  top: 24px;
  right: 20px;
  transform: scale(.5);
}

.nav-list-trigger span {
  background: var(--text-color);
  opacity: 1;
  width: 50%;
  height: 8px;
  transition: all .25s ease-in-out;
  display: block;
  position: absolute;
  transform: rotate(0);
}

.nav-list-trigger span:nth-child(2n) {
  border-radius: 0 9px 9px 0;
  width: 51%;
  left: 49%;
}

.nav-list-trigger span:nth-child(odd) {
  border-radius: 9px 0 0 9px;
  left: 0;
}

.nav-list-trigger span:first-child, .nav-list-trigger span:nth-child(2) {
  top: 0;
}

.nav-list-trigger span:nth-child(3), .nav-list-trigger span:nth-child(4) {
  top: 18px;
}

.nav-list-trigger span:nth-child(5), .nav-list-trigger span:nth-child(6) {
  top: 36px;
}

.nav-list-trigger.open span {
  background-color: var(--accent);
}

.nav-list-trigger.open span:first-child, .nav-list-trigger.open span:nth-child(6) {
  transform: rotate(45deg);
}

.nav-list-trigger.open span:nth-child(2), .nav-list-trigger.open span:nth-child(5) {
  transform: rotate(-45deg);
}

.nav-list-trigger.open span:first-child {
  top: 7px;
  left: 5px;
}

.nav-list-trigger.open span:nth-child(2) {
  top: 7px;
  left: calc(50% - 5px);
}

.nav-list-trigger.open span:nth-child(3) {
  opacity: 0;
  left: -50%;
}

.nav-list-trigger.open span:nth-child(4) {
  opacity: 0;
  left: 100%;
}

.nav-list-trigger.open span:nth-child(5) {
  top: 29px;
  left: 5px;
}

.nav-list-trigger.open span:nth-child(6) {
  top: 29px;
  left: calc(50% - 5px);
}

.nav-list li {
  display: inline-block;
}

.nav-list li a {
  background: linear-gradient(to right, var(--accent-color) 99.99%, transparent);
  color: var(--text-color);
  background-position: 0 100%;
  background-size: 0% 2px;
  margin: 0 1em;
  padding: 0 .15em;
  text-decoration: none;
  transition: background .15s ease-in-out;
  display: block;
}

.nav-list li a:focus, .nav-list li a:hover {
  color: var(--accent);
}

.nav-list li a.current {
  background: linear-gradient(to right, var(--text-color) 99.99%, transparent);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 2px;
}

.button-theme-toggle {
  cursor: pointer;
  width: 1em;
  height: 1em;
  display: inline-block;
}

.button-theme-toggle-holder {
  text-align: center;
}

.button-theme-toggle svg {
  fill-rule: evenodd;
  clip-rule: evenodd;
  stroke-linejoin: round;
  stroke-miterlimit: 2;
}

.button-theme-toggle path {
  fill: var(--text-color);
  transition: fill .35s ease-in-out;
}

@media (width >= 800px) {
  .button-theme-toggle-holder {
    -webkit-padding-before: 12px;
    margin-left: 1em;
    padding-block-start: 12px;
  }

  .nav {
    flex-direction: row;
    display: flex;
  }
}

.carousel {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  justify-content: center;
  align-items: center;
  display: flex;
}

.carousel-wrapper {
  margin-left: -30px;
  position: relative;
}

.carousel-holder {
  background-color: var(--carousel-background);
  -webkit-box-shadow: var(--box-shadow-layered-default);
  box-shadow: var(--box-shadow-layered-default);
  box-sizing: border-box;
  margin: 1em 30px;
  position: relative;
  overflow: hidden;
}

.carousel-holder * {
  box-sizing: border-box;
}

.carousel-item {
  opacity: 0;
  z-index: 100;
  width: 100%;
  margin: auto;
  transition: transform .5s ease-in-out, opacity .5s ease-in, z-index .25s ease-out;
  position: absolute;
  top: 0;
  overflow: hidden;
}

.carousel-item.initial, .carousel-item.active {
  opacity: 1;
  z-index: 900;
  position: relative;
}

.carousel-item.prev, .carousel-item.next {
  z-index: 800;
}

.carousel-item.prev {
  transform: translateX(-100%);
}

.carousel-item.next {
  transform: translateX(100%);
}

.carousel-item-text {
  padding-inline: 2em;
}

.carousel-item h3 {
  color: var(--accent);
  margin-block-end: 12px;
  font-weight: 700;
}

.carousel-item p:last-cheild {
  margin-block-end: 12px;
}

.carousel-item img {
  border-bottom: 1px solid #0000001a;
}

.carousel-button-next, .carousel-button-prev {
  cursor: pointer;
  z-index: 1001;
  z-index: 1000;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-button-next svg, .carousel-button-prev svg {
  clip-rule: evenodd;
  fill-rule: evenodd;
  stroke-miterlimit: 2;
  stroke-linejoin: round;
}

.carousel-button-next path, .carousel-button-prev path {
  fill: var(--text-color-alpha);
  transition: fill .35s ease-in-out;
}

.carousel-button-next:focus path, .carousel-button-next:hover path, .carousel-button-prev:focus path, .carousel-button-prev:hover path {
  fill: var(--accent);
}

.carousel-button-next {
  right: -15px;
}

.carousel-button-prev {
  left: -15px;
}

.carousel-button-prev svg {
  transform: rotate(180deg);
}

@media (width >= 800px) {
  .carousel-wrapper {
    margin-left: -60px;
  }

  .carousel-holder {
    margin-inline: 60px;
  }

  .carousel-item-heading, .carousel-item-content {
    display: block;
  }

  .carousel-button-next, .carousel-button-prev {
    width: 48px;
    height: 48px;
  }

  .carousel-button-next {
    right: -8px;
  }

  .carousel-button-prev {
    left: -8px;
  }
}

iframe.piwik {
  border: none;
  width: 100%;
  min-height: 320px;
  overflow: auto;
}

.vito-map {
  width: 100%;
  height: 70vh;
  margin: 32px 0 16px;
}

.map-route-links {
  font-size: .75em;
}

.typewriter {
  -webkit-margin-after: 0;
  margin-block-end: 0;
  font-size: 1.75rem;
}

.typewriter-action, .typewriter-prolog {
  hyphens: auto;
}

.typewriter-action:after {
  background-color: var(--accent);
  content: "";
  align-self: flex-end;
  width: 2px;
  height: 1.25em;
  margin: 0 0 -.25em 4px;
  animation: .6s linear infinite alternate blink;
  display: inline-block;
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  60% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.cookie-notice-wrapper {
  background-color: var(--header-background);
  -webkit-box-shadow: var(--box-shadow-layered-default);
  box-shadow: var(--box-shadow-layered-default);
  opacity: 0;
  text-align: center;
  z-index: 1000;
  width: calc(90% - 2em);
  max-width: 100%;
  margin: auto;
  padding: 1em;
  transition: all .3s ease-out;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 150%);
}

.cookie-notice-wrapper.notify {
  opacity: 1;
  transform: translate(-50%);
}

.cookie-notice-heading {
  -webkit-margin-after: 1em;
  margin-block-end: 1em;
  font-weight: 700;
}

.cookie-notice-button {
  border: 2px solid var(--accent);
  -webkit-box-shadow: var(--box-shadow-layered-smooth);
  box-shadow: var(--box-shadow-layered-smooth);
  color: var(--accent);
  cursor: pointer;
  -webkit-transition: color .25s cubic-bezier(.5, .19, .69, 1);
  margin-inline: .25em;
  padding: .25em .75em;
  font-weight: 700;
  text-decoration: none;
  transition: all .25s cubic-bezier(.5, .19, .69, 1);
}

.cookie-notice-button:focus, .cookie-notice-button:hover {
  background-color: var(--footer-background);
  color: var(--accent);
}

@media (width >= 640px) {
  .cookie-notice-wrapper {
    max-width: 400px;
  }
}
/*# sourceMappingURL=index.css.map */
