@font-face {
  font-family: "RobotoCondensed";
  src: url("fonts/RobotoCondensed-Medium.ttf");
}

@font-face {
  font-family: "Inter";
  src: url("fonts/InterDisplay-Regular.woff2");
  font-weight: normal;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/InterDisplay-Italic.woff2");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/InterDisplay-Medium.woff2");
  font-weight: 500;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/InterDisplay-SemiBold.woff2");
  font-weight: bold;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/InterDisplay-SemiBoldItalic.woff2");
  font-weight: bold;
  font-style: italic;
}

:root {
  --selic-white: #fafbfc;
  --selic-black: #050505;
  --selic-yellow: #F6E830;
  --selic-red: #e62e2e;
  --selic-violet: #6E4AE8;
  --selic-green: #88e645;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  color: var(--selic-black);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
  /* scrollbar-width: thin;
  scrollbar-color: #fff #000; */
}

/* width 
::-webkit-scrollbar {
  width: 0.3em;
  height: 1em;
}*/

/* Track 
::-webkit-scrollbar-track {
  background: var(--selic-black);
}*/

/* Handle 
::-webkit-scrollbar-thumb {
  background: #999;
}*/

/* Handle on hover 
::-webkit-scrollbar-thumb:hover {
  background: #999;
}*/

h1 {
  font-family: 'RobotoCondensed';
  font-size: 2rem;
  font-weight: normal;
  line-height: 1;
  color: var(--selic-black);
  text-transform: uppercase;
  /* letter-spacing: 1px; */
}

h2 {
  font-family: 'RobotoCondensed';
  color: var(--selic-black);
  font-size: 3rem;
  line-height: 1.1;
  font-weight: normal;
  text-transform: uppercase;
  max-width: 800px;
}

h2 a {
  font-size: inherit;
}

h2 i {
  font-size: inherit;
  color: inherit;
}

h3 {
  color: var(--selic-black);
  font-size: 1.5rem;
  line-height: 1.1;
  font-weight: bold;
}

h4 {
  color: var(--selic-black);
  font-size: 1.3rem;
  line-height: 1.1;
  font-weight: normal;
}

h5 {
  color: var(--selic-black);
  font-size: 1rem;
  font-weight: bold;
  max-width: 650px;
}

p {
  color: var(--selic-black);
  line-height: 1.5;
}

.title {
  font-size: 0.8rem;
  font-style: italic;
  max-width: 100%;
  color: var(--selic-black);
}

.caption {
  max-width: 100%;
  text-align: left;
  font-size: 0.8rem;
  font-style: italic;
}

a:link {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: var(--selic-black);
  transition: .5s ease;
}

a:hover {
  text-decoration: underline;
}

a:visited {
  color: var(--selic-black);
}

body {
  background: var(--selic-white);
}

nav {
  position: fixed;
  width: 100%;
  height: 5em;
  top: 0;
  background-color: transparent;
  transition: transform .5s ease-in-out;
  z-index: 50;
}

#nav-home {
  filter: invert();
}

#nav-impressum img,
#nav-impressum a {
  filter: invert();
}

nav.hide-on-scroll {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

nav img {
  height: 3em;
  cursor: pointer;
}

.nav-container {
  height: 0;
}

button {
  cursor: pointer;
  border: none;
  background-color: transparent;
  height: fit-content;
  width: auto;
}

.logo {
  margin: 1em 0 0 1em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo a:hover {
  text-decoration: none;
}

.logo-text {
  display: none;
}

.openMenu {
  position: absolute;
  top: 1em;
  right: 1em;
  transition: transform .5s ease;
}

.mainMenu {
  height: calc(100dvh - 4em);
  width: 100%;
  top: 0;
  left: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  overflow: hidden;
  z-index: 50;
}

.mainMenu a {
  font-size: 3rem;
  line-height: 2;
  text-underline-offset: 12px;
  text-decoration-thickness: 3px;
}

nav a:link {
  color: var(--selic-black);
  text-decoration: none;
  transition: text-decoration .5s;
}

nav a:hover {
  color: var(--selic-black);
  text-decoration: underline;
  text-underline-offset: 12px;
  text-decoration-thickness: 3px;
}

nav a:visited {
  color: var(--selic-black);
}

nav a:visited:hover {
  color: var(--selic-black);
  text-decoration: underline;
}

#active {
  text-decoration: underline;
  text-underline-offset: 12px;
  text-decoration-thickness: 3px;
}

.banner {
  width: 100%;
  position: relative;
  overflow-x: hidden;
  margin-top: 5em;
}

.banner img {
  width: 100%;
  object-fit: cover;
  display: block;
}

main {
  padding: 0 1em 0;
  display: block;
  width: 100%;
}

.back {
  font-weight: bold;
  font-size: 0.8rem;
  margin: 6em 0 2em 0;
}

.underline {
  color: inherit;
  font-size: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}

.button-wrapper {
  display: flex;
  justify-content: space-between;
}

.language {
  /* width: fit-content;
  border: 1px solid var(--selic-black);
  padding: 1em; */
  font-size: 0.85rem;
  /* margin: 0 0 2em 2em; */
  color: #c8c8c8;
}

.language-switch {
  font-size: inherit;
  font-weight: bold;
  color: inherit;
  border: 2px solid #c8c8c8;
  border-radius: 6em;
  padding: 1em;
}

.language-switch.active {
  /* background-color: var(--selic-black); */
  color: var(--selic-black);
  border: 2px solid var(--selic-black);
  /* text-decoration: underline;
  text-underline-offset: 5px; */
}

#more {
  font-size: 0.8rem;
  font-weight: bold;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  /* border: solid var(--selic-black) 2px; */
  /* border-radius: 2em; */
  /* padding: 1em; */
  cursor: pointer;
}

.english,
.german {
  display: none;
}

.english.active,
.german.active {
  display: block;
}

.lang-hidden {
  display: none;
}

.lang-visible {
  display: block;
}

.filter-container {
  display: block;
  padding: 2em 0 2em 0;
}

.filter-button {
  color: var(--selic-black);
  font-size: 0.8rem;
  font-weight: bold;
  border: var(--selic-black) solid;
  /* border-radius: 2em; */
  padding: 0.5em 1em;
  margin: 0 0.5em 0.5em 0;
}

.filter-button.active {
  border: var(--selic-violet) solid;
  color: var(--selic-violet);
}

#project-counter {
  margin-top: 1em;
  font-size: 0.8rem;
  font-weight: bold;
}

.awards {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  overflow: hidden;
  margin-top: 1em;
  gap: 1em;
}

img.awards-label {
  height: 4em;
  width: auto;
}

.line {
  background-color: #333;
  height: 0.5px;
  width: 100%;
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.grid a {
  text-decoration: none;
}

.cell-1 {
  padding-bottom: 1em;
}

/* .highlight .gallery {
  overflow: hidden;
  filter: brightness(0.6) blur(3px);
  transform: scale(1.1);
  transition: 1s ease;
}

.highlight .text-box {
  opacity: 1;
  transition: opacity 1s ease;
} */

.project {
  aspect-ratio: 1;
  float: left;
  position: relative;
  overflow: hidden;
  background-color: var(--selic-violet);
}

.project img.gallery {
  display: block;
  width: 100%;
  height: auto;
}

.project .text-box {
  display: block;
  position: absolute;
  width: 20em;
  left: 20%;
  top: 90%;
  transform: translate(-20%, -90%);
  text-align: left;
  /* background-color: var(--selic-white); */
  padding: 1em;
  opacity: 0;
  transition: opacity 1s ease;
}

.project:hover .text-box {
  opacity: 1;
}

.project-title {
  font-family: 'RobotoCondensed';
  text-transform: uppercase;
  color: var(--selic-white);
  font-size: 1.5rem;
  line-height: 1.5;
}

.project-subtitle {
  color: var(--selic-white);
  font-size: 1rem;
}

.project .gallery {
  transition: 1s ease;
}

.project:hover .gallery {
  opacity: 0.5;
  filter: brightness(0.7) blur(5px);
  transform: scale(1.05);
  transition: .5s ease;
}

.project-info {
  margin-bottom: 4em;
  text-align: left;
}

.accordion {
  padding: 1em;
  border: solid 1px var(--selic-black);
}

.contentBox {
  position: relative;
}

.label {
  font-size: 1rem;
  font-weight: bold;
  position: relative;
  cursor: pointer;
}

/* .label:hover {
  border: solid 1px #000;
} */

.label::before {
  content: url(assets/expand_more_FILL0_wght400_GRAD0_opsz48.svg);
  width: 1rem;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.contentBox.active .label::before {
  content: url(assets/expand_less_FILL0_wght400_GRAD0_opsz48.svg);
  width: 1rem;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.content {
  position: relative;
  height: 0;
  overflow: hidden;
  overflow-y: auto;
}

.content ul {
  font-size: inherit;
  font-weight: bold;
  padding-bottom: 1em;
}

.content ul li {
  font-size: inherit;
  font-weight: normal;
  margin-left: 1.5em;
  padding-bottom: 0.5em;
}

.contentBox.active .content {
  padding-top: 2em;
  line-height: 1.5;
  height: fit-content;
}

.references-wrapper {
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0 1em 3em 1em;
}

.references-wrapper a {
  font-size: inherit;
  font-weight: inherit;
  line-height: 2;
  text-underline-offset: 0.2em;
}

.thumbnail {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  transition: .5s ease;
}

.thumbnail:hover {
  filter: brightness(0.7);
  cursor: zoom-in;
}

/* Modal (hidden by default) */
.previewModal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 1rem;
  box-sizing: border-box;
}

.slide-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.slide-img {
  width: 100%;
  max-height: 80dvh;
  object-fit: contain;
  display: block;
}

.slide-img:hover {
  cursor: default;
  filter: none;
}

#closePreview {
  position: absolute;
  top: 24px;
  right: 1em;
  color: #F6E830;
}

#closePreview img {
  height: 24px;
  cursor: pointer;
}

.slides {
  display: none;
}

.cursor {
  cursor: pointer;
}

.prev,
.next {
  height: 24px;
  width: 24px;
  position: absolute;
  top: 70%;
  transform: translateY(-70%);
  z-index: 1000;
  cursor: pointer;
  margin: 0 1em 0 1em;
  color: var(--selic-yellow);
  user-select: none;
  -webkit-user-select: none;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

.numbertext {
  color: var(--selic-yellow);
  font-size: 0.8rem;
  margin-left: 1em;
}

.slideshow-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em;
  margin-top: 1em;
  flex-shrink: 0;
  max-width: 90vw;
}

.slideshow-column {
  flex: 0 0 auto;
  width: 2em;
}

.slideshow-column img {
  width: 100%;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity .5s ease;
}

.slideshow-column img.active,
.slideshow-column img:hover {
  opacity: 1;
}

.slideshow-row:after {
  content: "";
  display: table;
  clear: both;
}

/* 10 columns side by side */
.slideshow-column {
  float: left;
  width: 10%;
}

.demo {
  opacity: 0.5;
}

#previewImage {
  -webkit-animation-name: zoom;
  -webkit-animation-duration: .5s;
  animation-name: zoom;
  animation-duration: .5s;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0.5)
  }

  to {
    -webkit-transform: scale(1)
  }
}

@keyframes zoom {
  from {
    transform: scale(0.5)
  }

  to {
    transform: scale(1)
  }
}

video {
  display: flex;
  justify-content: center;
}

.contact {
  font-size: 3rem;
  color: var(--selic-black);
  border: solid 2px var(--selic-black);
  /* border-radius: 60px; */
  width: fit-content;
  margin-top: 30px;
  padding: 0px 24px 6px 24px;
  transition-duration: .5s;
}

.contact:hover {
  border: solid 2px var(--selic-black);
  background-color: var(--selic-black);
  color: var(--selic-white);
  cursor: pointer;
}

video {
  display: flex;
  justify-content: center;
}

.background-video {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  user-select: none;
  pointer-events: none;
  /* filter:
    brightness(0.5);
    grayscale(1);
    display: none; */
}

.background-video video {
  height: 100dvh;
}

.background-video iframe {
  height: 100dvh;
}

.responsive-video {
  position: relative;
  width: 100%;
  height: auto;
  padding-bottom: 56.25%;
  background-color: #000;
}

.responsive-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.responsive-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#playPauseBtn {
  position: absolute;
  right: 1em;
  top: 6em;
  font-size: 1rem;
  padding: 0.11em;
  color: var(--selic-white);
  font-weight: bold;
  /* border: var(--selic-white) solid; */
  opacity: 50%;
  cursor: pointer;
  z-index: 49;
}

.quote {
  /* font-family: 'RobotoCondensed'; */
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.15;
  /* text-transform: uppercase; */
  position: absolute;
  left: 50%;
  top: 35%;
  transform: translate(-50%);
  text-align: center;
  color: var(--selic-white);
  opacity: 1;
  /* mix-blend-mode: difference;
  filter: invert(); */
  width: 90vw;
}

#work-button {
  position: absolute;
  left: 50%;
  top: 65%;
  transform: translate(-50%);
  font-size: 1.3rem;
  color: var(--selic-white);
  font-weight: bold;
  /* text-transform: uppercase; */
  border: var(--selic-white) solid;
  /* border-radius: 3em; */
  padding: 0.5em 1em;
}

.explanation {
  position: absolute;
  left: 50%;
  top: 85%;
  transform: translate(-50%, -15%);
}

.explanation p {
  color: var(--selic-white);
  opacity: 0.8;
  font-size: 0.8em;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}

.about-background {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: -120px;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 70%;
}

.background-image {
  position: absolute;
  display: none;
}

.background-image img {
  width: auto;
  max-width: 100%;
  height: auto;
}

#kukaKR800 {
  display: block;
  top: 0;
  right: -40%;
  width: 500px;
}

#kukaKR500 {
  display: block;
  top: 15%;
  left: -20%;
  width: 300px;
}

.ideology {
  position: relative;
  z-index: 10;
  margin-bottom: 6em;
}

.statement {
  font-family: 'RobotoCondensed';
  font-size: 3rem;
  font-weight: normal;
  line-height: 1;
  color: var(--selic-black);
  text-transform: uppercase;
  /* letter-spacing: 1px; */
  text-align: center;
  margin: 3em 0 1.5em;
}

.elaboration p {
  padding: 0 1em 0 1em;
  margin-bottom: 2em;
}

#center {
  text-align: left;
  padding-top: 4em;
}

.mission {
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  margin: 4em 0em;
  padding: 0 1em 0 1em;
}

.awards-section {
  margin-bottom: 6em;
}

.marquee-wrapper {
  /* background-color: var(--selic-violet); */
  margin-bottom: 4em;
  padding: 1em 0 1em 0;
  border-block: 2px solid var(--selic-black);
}

.marquee-text {
  overflow: clip;
}

.marquee-text-track {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: max-content;
  animation: scroll 10s linear infinite;
}

.marquee-text-track h2 {
  color: var(--selic-black);
}

#swipe {
  font-size: 0.8rem;
  font-weight: bold;
  text-align: center;
  padding: 1em;
}

@keyframes scroll {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(calc(-100vw - 1rem));
  }
}

.carousel {
  display: flex;
  overflow-x: scroll;
  /* gap: 1em; */
}

.carousel a {
  background-color: var(--selic-violet);
}

.carousel img {
  display: block;
  height: auto;
  width: 20em;
  transition: .5s ease;
}

.carousel a:hover img {
  opacity: 50%;
}

.team {
  margin-bottom: 6em;
}

.row {
  padding: 0 1em 0 1em;
  display: block;
  text-align: center;
}

.column {
  /* text-align: center; */
  margin-bottom: 4em;
}

.bio-header {
  margin-top: 2em;
}

.bio-subheader {
  margin-bottom: 2em;
}

.bio {
  text-align: left;
}

.portrait {
  border-radius: 50%;
  width: 300px;
  height: 300px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--selic-violet);
  background-blend-mode: overlay;
  filter: brightness(130%) saturate(55%) contrast(110%);
}

#mario {
  background-image: url(images/Mario_Selic_sw.jpg);
  background-size: contain;
}

#tino {
  background-image: url(images/202208_TinoSelic_bw.jpg);
  background-size: contain;
}

.image-copyright {
  font-size: 0.8rem;
  text-align: center;
  max-width: 100%;
  margin-top: 2em;
}

.impressum {
  margin-top: 8em;
  color: var(--selic-black);
}

.impressum p,
b,
a,
h1,
h2,
h3 {
  color: inherit;
}

#backToTop {
  padding: 2em 0 2em 0;
  text-align: center;
}

#backToTop a {
  font-size: 0.8rem;
  font-weight: bold;
  line-height: 2;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}

footer {
  width: 100%;
  padding: 3em;
  background-color: var(--selic-violet);
  color: var(--selic-white);
  font-size: 0.8rem;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  text-align: left;
}

.address-section span {
  color: var(--selic-white);
  font-size: 0.8rem;
  line-height: 1;
}

.address-section span b,
a {
  color: inherit;
  font-size: inherit;
}

.navigation-section {
  padding-bottom: 2em;
}

.footer-nav-list {
  list-style-type: none;
}

.footer-nav-list li a {
  color: var(--selic-white);
  font-size: 0.8rem;
  font-weight: bold;
  line-height: 2;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}

.copyright-section {
  color: inherit;
  font-size: 0.8rem;
  line-height: 1.5;
  text-align: center;
}

.footer-home {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--selic-black);
  color: var(--selic-white);
}

@media only screen and (min-width: 796px) {
  button.logo span.logo-text {
    display: inline-block;
    padding-left: 0.5em;
    font-size: 1.6rem;
    font-weight: bold;
    /* letter-spacing: 0.1rem;
    text-transform: uppercase; */
  }

  .banner {
    margin-top: 0;
  }

  img.awards-label {
    height: 5em;
  }

  .grid {
    display: grid;
    grid-gap: 1em;
    height: fit-content;
  }

  .project-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .image-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .line {
    height: 1px;
  }

  .prev,
  .next {
    top: 50%;
    transform: translateY(-50%);
  }

  .slide-container {
    width: 100%;
  }

  .numbertext {
    margin-left: 0;
  }

  .slide-img {
    width: auto;
    max-width: 70vw;
    max-height: 70dvh;
  }

  .row::after {
    content: "";
    display: table;
    clear: both;
  }

  p {
    max-width: 650px;
  }

  .about-background {
    top: -220px;
  }

  .background-image {
    display: block;
    /* border: 1px dashed var(--selic-violet); */
  }

  #kukaKR800 {
    top: 0;
    right: -30%;
    width: 900px;
  }

  #kukaKR500 {
    top: 13%;
    left: -13%;
    width: 700px;
  }

  #roboticKitchen {
    top: 31%;
    right: -20%;
    width: 500px;
  }

  #siegmundSchweisszelle {
    top: 90%;
    right: 5%;
    max-width: 400px;
    transform: scaleX(-1);
  }

  .ideology {
    margin: 0 5vw 8em 5vw;
  }

  .statement {
    margin: 5em 0 3em;
  }

  .elaboration p {
    font-size: 1.2rem;
    max-width: 40vw;
    margin-bottom: 5em;
  }

  #right {
    margin-left: 45vw;
  }

  .mission {
    font-size: 2.2rem;
    margin: 3em 0;
  }

  #center {
    text-align: left;
    padding-top: 6em;
    max-width: 50vw;
  }

  .awards-section {
    margin-bottom: 8em;
  }

  .team {
    margin-bottom: 8em;
  }

  .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 5em;
  }

  .column {
    margin-bottom: 0;
  }

  /* footer {
    padding: 3em;
  } */

  .address-section {
    padding: 0;
  }
}

@media only screen and (min-width: 1280px) {
  a:hover {
    color: var(--selic-violet);
  }

  a:visited:hover {
    color: var(--selic-violet);
  }

  .filter-button:hover {
    border: var(--selic-violet) solid;
    color: var(--selic-violet);
  }

  .project-info {
    padding: 0 6em 0 6em;
  }

  .back {
    margin: 10em 0 4em 0;
  }

  .back:hover {
    color: var(--selic-violet);
  }

  .language-switch:hover {
    font-weight: bold;
    color: var(--selic-violet);
    border: 2px solid var(--selic-violet);
  }

  .prev:hover,
  .next:hover {
    color: var(--selic-yellow);
    opacity: 0.7;
    text-decoration: none;
  }

  .active,
  .demo:hover {
    opacity: 1;
  }

  #closePreview:hover {
    opacity: 0.7;
  }

  .quote {
    font-size: 2.5rem;
    top: 25%;
  }

  #work-button {
    font-size: 2rem;
    top: 65%;
  }

  #work-button:hover {
    border: var(--selic-violet) solid;
    color: var(--selic-violet);
  }

  #more:hover {
    color: var(--selic-violet);
    border-color: var(--selic-violet);
  }

  .grid {
    display: grid;
    grid-gap: 1em;
    height: fit-content;
    grid-template-columns: 1fr 1fr;
  }

  .cell-3 {
    grid-column: 2;
  }

  .grid.project-text {
    display: grid;
    grid-gap: 1em;
    height: fit-content;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 6em;
  }

  .cell-3 {
    grid-column: 2;
  }

  .project-gallery {
    grid-template-columns: 1fr 1fr 1fr;
  }

  img.awards-label {
    height: 6em;
  }

  .background-video {
    width: 100%;
  }

  .background-video video {
    width: 100%;
    height: auto;
  }

  .about-background {
    top: -220px;
  }

  #kukaKR800 {
    top: 0.2%;
    right: -5%;
  }

  #kukaKR500 {
    top: 13%;
    left: -2%;
    width: 800px;
  }

  #roboticKitchen {
    top: 26%;
    right: 10%;
    width: 500px;
  }

  #siegmundSchweisszelle {
    top: 4200px;
    right: 150px;
    max-width: 600px;
  }

  .ideology {
    margin: 0 10vw 12em 10vw;
  }

  .elaboration p {
    padding: 0;
    max-width: 30vw;
  }

  #right {
    margin-left: 50vw;
  }

  #center {
    margin: auto;
    text-align: left;
    max-width: none;
    width: 400px;
    padding-top: 6em;
  }

  .mission {
    margin: 3em 5em;
  }

  .awards-section {
    margin-bottom: 12em;
  }

  .marquee-text-track {
    animation: scroll 30s linear infinite;
  }

  .row {
    padding: 0 10vw 0 10vw;
  }

  .team {
    margin-bottom: 12em;
  }

  .references-wrapper {
    padding-left: 10vw;
  }

  .impressum {
    padding: 0 10vw 0 10vw;
  }

  #backToTop {
    padding: 4em 0 4em 0;
  }

  #about-footer {
    padding: 3em 10vw;
  }

  .footer-nav-list li a:hover {
    color: var(--selic-white);
  }
}

@media only screen and (min-width: 1920px) {}

@media only screen and (min-width: 2560px) {}

@media only screen and (min-width: 3840px) {}