@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
  transform: translateY(50px);
}

.fadeInLeft {
  animation-name: fadeInLeft;
  transform: translateX(50px);
}

.fadeInRight {
  animation-name: fadeInRight;
  transform: translateX(-50px);
}

.fadeIn {
  animation-name: fadeIn;
}

.fadeOut {
  animation-name: fadeOut;
}

.animate {
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  will-change: transform, opacity;
  opacity: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #1d1d1f;
  overflow-x: hidden;
  height: 100.1%;
}

html,
body {
  margin: 0;
  padding: 0;
}

header {
  z-index: 2000;
  position: fixed;
  top: 0px;
  right: 0px;
  left: 0px;
  height: 95px;
  background-color: rgba(29, 29, 31, 0.8);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  will-change: background-color;
  border-bottom: 1px solid #333333;
}
header.opened {
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
}
header.opened #burger {
  transform: rotate(-45deg);
}
header.opened #burger::before {
  transform: rotate(-90deg);
}
header.opened #burger::after {
  transform: translateY(-15px);
}
header.opened nav ul#nav-links-wrapper {
  opacity: 1;
  pointer-events: all;
}
header #burger {
  position: absolute;
  top: 16px;
  right: 8rem;
  background-color: transparent;
  width: 60px;
  height: 60px;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  will-change: transform;
}
header #burger::before, header #burger::after {
  content: "";
  position: absolute;
  background-color: #f9eb1d;
  height: 4px;
  width: 50px;
  left: 5px;
  transform-origin: center;
  transition: transform 0.3s ease;
  will-change: transform;
}
header #burger::before {
  top: 20px;
}
header #burger::after {
  bottom: 20px;
}
header nav {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  height: 100%;
  max-width: 1920px;
  margin: 0px auto;
}
header nav ul {
  padding: 0px;
  margin: 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 12.5rem;
}
header nav ul#nav-links-wrapper {
  padding-left: 0px;
  padding-right: 12.5rem;
  justify-content: flex-end;
  gap: 40px;
}
header nav ul#nav-links-wrapper a {
  text-decoration: none;
  font-size: 17px;
  white-space: nowrap;
}
header nav ul li {
  list-style: none;
}
header nav ul li img {
  max-height: 35px;
  width: auto;
  transition: opacity 0.3s ease;
  will-change: opacity;
}
header nav ul li img#mila-motions-logo-small {
  opacity: 0;
  position: absolute;
  left: 0px;
}
header nav ul li img#mila-motions-logo {
  opacity: 1;
}

.modal-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  inset: 0 0;
  position: relative;
  position: fixed;
  z-index: 2020;
  width: 100%;
  height: 100%;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.75);
}
.modal-wrapper .modal {
  position: relative;
  background-color: #f9eb1d;
  transform-origin: center;
  transition: transform 0.3s ease;
  will-change: transform;
  padding: 32px 25px;
  max-width: 550px;
  border-radius: 48px;
  border-top-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.modal-wrapper .modal .close {
  position: absolute;
  padding: 32px;
  right: -50px;
  top: -50px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.modal-wrapper .modal .close:hover {
  opacity: 0.75;
}
.modal-wrapper .modal .close::before, .modal-wrapper .modal .close::after {
  content: "";
  position: absolute;
  background-color: #f9eb1d;
  height: 4px;
  width: 25px;
  transform-origin: center;
  transition: transform 0.3s ease;
  will-change: transform;
}
.modal-wrapper .modal .close::before {
  transform: rotate(45deg);
}
.modal-wrapper .modal .close::after {
  transform: rotate(-45deg);
}
.modal-wrapper .modal > * {
  color: #0c0c0c;
}
.modal-wrapper .modal > p {
  margin-bottom: 0px;
}

main .background-container {
  position: absolute;
  top: 0px;
  right: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
main .background-container .mobile-hero-image {
  height: 100%;
  width: 100%;
  background-size: cover;
  display: none;
}
main .background-container .parallax {
  will-change: transform;
}
main .spacer {
  pointer-events: none;
}
main .spacer.spacer-25 {
  height: 25vh;
}
main .spacer.spacer-50 {
  height: 50vh;
}
main section {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  scroll-margin: 100px;
}
main section.margin-bottom-medium {
  margin-bottom: 150px;
}
main section.margin-bottom-small {
  margin-bottom: 75px;
}
main .section-grid {
  z-index: 1010;
  position: relative;
  display: grid;
  width: 100%;
}
main .section-grid:not(.section-full-width) {
  padding-left: 12.5rem;
  padding-right: 12.5rem;
}
main .section-grid .grid-item {
  overflow: hidden;
}
main .section-grid.section-start {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 0px 20px;
  grid-template-areas: "intro-text hero-video";
  height: 100vh;
}
main .section-grid.section-start .grid-item__intro-text {
  grid-area: intro-text;
  align-self: center;
  animation-delay: 0.5s;
}
main .section-grid.section-start .grid-item__intro-text .text-wrapper h1 {
  line-height: 1.15;
  padding-top: 20px;
}
main .section-grid.section-start .grid-item__intro-text .text-wrapper h1 span {
  font-size: inherit;
  font-weight: 500;
}
main .section-grid.section-start .grid-item__hero-video {
  grid-area: hero-video;
  align-self: center;
  overflow: visible;
  position: relative;
}
main .section-grid.section-start .hero-video-wrapper {
  position: relative;
}
main .section-grid.section-start .yellow-layer {
  position: absolute;
  z-index: -1;
  top: 16px;
  right: -16px;
  width: 100%;
  height: 100%;
  background-color: #f9eb1d;
}
main .section-grid.section-partner {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 0px 0px;
  grid-template-areas: "partner";
}
main .section-grid.section-partner .grid-item__partner {
  align-self: center;
  justify-items: center;
  grid-area: partner;
}
main .section-grid.section-partner .grid-item__partner h3 {
  text-align: center;
  margin-bottom: 50px;
}
main .section-grid.section-partner .grid-item__partner #partner-swiper {
  padding: 16px 60px;
}
main .section-grid.section-partner .grid-item__partner #partner-swiper .swiper-wrapper {
  align-items: center;
}
main .section-grid.section-partner .grid-item__partner #partner-swiper .swiper-wrapper .swiper-slide {
  text-align: center;
  width: auto;
}
main .section-grid.section-partner .grid-item__partner #partner-swiper .swiper-wrapper .swiper-slide img {
  width: auto;
  max-height: 100px;
}
main .section-grid.section-advantages {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr 1fr;
  gap: 50px 50px;
  grid-template-areas: "headline headline" "target workflow" "content personal" "cta cta";
}
main .section-grid.section-advantages::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: 0px;
  right: 0px;
  height: 400px;
  background: linear-gradient(180deg, rgba(12, 12, 12, 0) 0%, #0c0c0c 100%);
  z-index: -1;
}
main .section-grid.section-advantages .grid-item.grid-item__headline {
  grid-area: headline;
}
main .section-grid.section-advantages .grid-item.grid-item__target {
  grid-area: target;
}
main .section-grid.section-advantages .grid-item.grid-item__target.card img {
  right: -32px;
  width: 50%;
}
main .section-grid.section-advantages .grid-item.grid-item__workflow {
  grid-area: workflow;
  animation-delay: 0.4s;
}
main .section-grid.section-advantages .grid-item.grid-item__content {
  grid-area: content;
}
main .section-grid.section-advantages .grid-item.grid-item__personal {
  grid-area: personal;
  animation-delay: 0.4s;
}
main .section-grid.section-advantages .grid-item.grid-item__cta {
  grid-area: cta;
}
main .section-grid.section-advantages .grid-item.card {
  overflow: visible;
  display: flex;
  align-items: flex-end;
  position: relative;
  padding: 64px 25px 16px;
}
main .section-grid.section-advantages .grid-item.card .text-wrapper {
  max-width: 55%;
}
main .section-grid.section-advantages .grid-item.card img {
  position: absolute;
  right: 16px;
  bottom: 16px;
  top: 16px;
  width: 40%;
}
main .section-grid.section-comments {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 0px 0px;
  grid-template-areas: "comments";
  background-image: url(../../img/mila-background-pattern.webp);
  padding-top: 75px;
  padding-bottom: 75px;
}
main .section-grid.section-comments .grid-item__comments {
  grid-area: "comments";
}
main .section-grid.section-comments .grid-item__comments h2 {
  text-align: center;
}
main .section-grid.section-comments .grid-item__comments #comment-swiper {
  padding: 16px 80px;
}
main .section-grid.section-comments .grid-item__comments #comment-swiper .author {
  text-align: right;
  padding-right: 10px;
  font-size: 15px;
  padding-top: 10px;
}
main .section-grid.section-comments .grid-item__comments #comment-swiper .author .company {
  font-size: 15px;
  font-weight: 700;
}
main .section-grid.section-behind-the-scenes, main .section-grid.section-job-swiper {
  grid-template-columns: 1fr 2fr;
  grid-template-rows: 1fr;
  gap: 0px 0px;
  grid-template-areas: "text swiper";
}
main .section-grid.section-behind-the-scenes .grid-item.grid-item__text, main .section-grid.section-job-swiper .grid-item.grid-item__text {
  grid-area: text;
  background-color: #f9eb1d;
  display: flex;
  align-items: flex-start;
  flex-flow: column;
  justify-content: center;
  padding: 50px;
}
main .section-grid.section-behind-the-scenes .grid-item.grid-item__text h3,
main .section-grid.section-behind-the-scenes .grid-item.grid-item__text p, main .section-grid.section-job-swiper .grid-item.grid-item__text h3,
main .section-grid.section-job-swiper .grid-item.grid-item__text p {
  color: #0c0c0c;
}
main .section-grid.section-behind-the-scenes .grid-item.grid-item__swiper, main .section-grid.section-job-swiper .grid-item.grid-item__swiper {
  grid-area: swiper;
}
main .section-grid.section-behind-the-scenes .grid-item.grid-item__swiper .fullWidth-swiper .swiper-wrapper .swiper-slide, main .section-grid.section-job-swiper .grid-item.grid-item__swiper .fullWidth-swiper .swiper-wrapper .swiper-slide {
  height: 500px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
main .section-grid.section-contact {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f9eb1d;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 25px 50px;
  grid-template-areas: "headline headline" "philipp marek" "contact contact" "form form";
}
main .section-grid.section-contact h2,
main .section-grid.section-contact h3,
main .section-grid.section-contact h4,
main .section-grid.section-contact li,
main .section-grid.section-contact p,
main .section-grid.section-contact a {
  color: #222222;
}
main .section-grid.section-contact .grid-item__headline {
  grid-area: headline;
}
main .section-grid.section-contact .grid-item__philipp {
  grid-area: philipp;
}
main .section-grid.section-contact .grid-item__marek {
  grid-area: marek;
}
main .section-grid.section-contact .grid-item__contact {
  grid-area: contact;
}
main .section-grid.section-contact .grid-item__form {
  grid-area: form;
}
main .section-grid.section-contact .grid-item__form #contactForm {
  max-width: 600px;
  margin: 1rem auto 0px auto;
}
main .section-grid.section-contact .grid-item__form #contactForm .btn {
  animation-name: none;
}
main .section-grid.section-contact .contact-data {
  display: flex;
  align-items: flex-start;
}
main .section-grid.section-contact .contact-data img {
  flex: 1;
  flex-grow: 0;
  width: 100%;
  max-width: 250px;
}
main .section-grid.section-contact .contact-data .text-wrapper {
  flex: 1;
}
main .section-grid.section-contact .contact-data .text-wrapper ul {
  list-style-type: none;
  padding-left: 20px;
  padding-bottom: 0.5rem;
  margin: 0px;
}
main .section-grid.section-contact .contact-data .text-wrapper ul h4 {
  margin-bottom: 0.25rem;
}
main .section-grid#section-footer {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url(../../img/mila-background-pattern.webp);
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 50px;
  grid-template-areas: "contact imprint social-media" "copyright copyright mm-logo";
}
main .section-grid#section-footer .grid-item.grid-item__contact {
  grid-area: contact;
}
main .section-grid#section-footer .grid-item.grid-item__imprint {
  grid-area: imprint;
}
main .section-grid#section-footer .grid-item.grid-item__social-media {
  grid-area: social-media;
}
main .section-grid#section-footer .grid-item.grid-item__copyright {
  grid-area: copyright;
  align-self: self-end;
}
main .section-grid#section-footer .grid-item.grid-item__mm-logo {
  grid-area: mm-logo;
}
main .section-grid#section-footer .grid-item h4 {
  margin-bottom: 0.4rem;
}
main .section-grid#section-footer .grid-item ul {
  list-style-type: none;
  padding-left: 0px;
  margin: 0;
}
main .section-grid#section-footer .grid-item ul li {
  margin: 0.4rem 0px;
}
main .section-grid#section-footer .grid-item ul li a {
  font-size: inherit;
}
main .section-grid#section-footer .grid-item img {
  max-width: 250px;
}
main .section-flex {
  z-index: 1010;
  position: relative;
  display: flex;
  flex-flow: column;
}
main .section-flex:not(.section-full-width) {
  padding-left: 12.5rem;
  padding-right: 12.5rem;
}
main .section-flex.section-references {
  background-color: #0c0c0c;
  padding-top: 75px;
  padding-bottom: 75px;
  overflow: hidden;
}
main .section-flex.section-references .flex-item.video-highlight-wrapper {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin: 25px 0px;
}
main .section-flex.section-references .flex-item.video-highlight-wrapper:nth-child(even) {
  flex-flow: row;
}
main .section-flex.section-references .flex-item.video-highlight-wrapper:nth-child(even) .text-wrapper {
  top: 2rem;
  left: -2rem;
  transform-origin: top left;
}
main .section-flex.section-references .flex-item.video-highlight-wrapper:nth-child(odd) {
  flex-flow: row-reverse;
}
main .section-flex.section-references .flex-item.video-highlight-wrapper:nth-child(odd) .text-wrapper {
  text-align: right;
  top: 2rem;
  right: -2rem;
  transform-origin: top right;
}
main .section-flex.section-references .flex-item.video-highlight-wrapper .video-wrapper {
  flex: 1;
  aspect-ratio: 16/9;
  max-width: 50vw;
}
main .section-flex.section-references .flex-item.video-highlight-wrapper .text-wrapper {
  flex: 1;
  position: relative;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
  max-width: 25%;
}
main .section-flex.section-references .flex-item.video-highlight-wrapper .text-wrapper p {
  font-size: 250%;
  margin: 0px;
  color: #f9eb1d;
}
main .section-flex.section-references .flex-item.video-highlight-wrapper .text-wrapper h3 {
  font-size: 250%;
  line-height: 1.1;
}
main .section-flex.section-references .flex-item.flex-item__cta {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}
main .section-flex.section-all-references {
  position: relative;
  background-color: #0c0c0c;
}
main .section-flex.section-all-references .background-container {
  display: flex;
  z-index: -1;
  opacity: 0.2;
}
main .section-flex.section-all-references .background-container .background-item {
  flex: 1;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
main .section-flex.section-all-references .text-wrapper {
  position: relative;
  overflow: hidden;
  --offset: 20vw;
  --move-initial: calc(-25% + var(--offset));
  --move-final: calc(-50% + var(--offset));
}
main .section-flex.section-all-references .text-wrapper.marquee {
  max-width: 100%;
}
main .section-flex.section-all-references .text-wrapper ul {
  margin-bottom: 50px;
  padding: 0px;
  list-style-type: none;
  width: fit-content;
  display: flex;
  position: relative;
  transform: translate3d(var(--move-initial), 0, 0);
}
main .section-flex.section-all-references .text-wrapper ul.marquee-left {
  animation: marqueeLeft 80s linear infinite;
}
main .section-flex.section-all-references .text-wrapper ul.marquee-right {
  animation: marqueeRight 80s linear infinite;
}
main .section-flex.section-all-references .text-wrapper ul li {
  display: inline-block;
  white-space: nowrap;
}
main .section-flex.section-all-references .text-wrapper ul li span {
  font-size: 5rem;
  font-weight: 700;
  font-style: italic;
  padding: 0px 2rem;
  opacity: 0.3;
  text-transform: uppercase;
}
@keyframes marqueeLeft {
  0% {
    transform: translate3d(var(--move-initial), 0, 0);
  }
  100% {
    transform: translate3d(var(--move-final), 0, 0);
  }
}
@keyframes marqueeRight {
  0% {
    transform: translate3d(var(--move-final), 0, 0);
  }
  100% {
    transform: translate3d(var(--move-initial), 0, 0);
  }
}
main .section-flex.section-masterplan {
  background-color: #1d1d1f;
  background-size: cover;
  background-position-x: 65%;
  background-position-y: center;
  padding-top: 75px;
  padding-bottom: 150px;
  background-image: url(../../img/masterplan_background.webp);
}
main .section-flex.section-masterplan .flex-item {
  margin-bottom: 40px;
}
main .section-flex.section-masterplan .flex-item h3 {
  white-space: nowrap;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
main .section-flex.section-masterplan .flex-item h3 .list-number {
  font-size: inherit;
  font-weight: inherit;
  display: inline-block;
  width: 50px;
  color: #f9eb1d;
}
main .section-flex.section-masterplan .flex-item p {
  padding-left: 50px;
}
main .section-flex.section-login, main .section-flex.section-download {
  height: 100vh;
  align-items: center;
  justify-content: center;
}
main .section-flex.section-login .form-wrapper, main .section-flex.section-download .form-wrapper {
  text-align: center;
  padding: 12.5rem;
}
main .section-flex.section-login .form-wrapper form, main .section-flex.section-download .form-wrapper form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  margin-top: 50px;
}
main .section-flex.section-login .form-wrapper form input[type=password], main .section-flex.section-download .form-wrapper form input[type=password] {
  border: none;
  padding: 8px;
  color: #0c0c0c;
}
main .section-flex.section-login .form-wrapper form .btn, main .section-flex.section-download .form-wrapper form .btn {
  margin-top: 30px;
}
main .section-flex.section-login .download-wrapper, main .section-flex.section-download .download-wrapper {
  padding: 16px;
  text-align: left;
  width: 100%;
}
main .section-flex.section-login .download-wrapper:not(:last-of-type), main .section-flex.section-download .download-wrapper:not(:last-of-type) {
  border-bottom: 1px solid #777777;
}

.text-wrapper {
  max-width: 750px;
}
.text-wrapper.text-center {
  text-align: center;
  margin: 0px auto;
  max-width: 900px;
}

.image-wrapper {
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
}
.image-wrapper.image-square {
  aspect-ratio: 1/1;
}

.btn-wrapper {
  padding: 10px 16px;
}

main.basic-layout {
  background-image: url(../../img/mila-background-pattern.webp);
}
main.basic-layout .section-basic {
  padding-top: 150px;
  z-index: 1010;
  position: relative;
}
main.basic-layout .section-basic:not(.section-full-width) {
  padding-left: 12.5rem;
  padding-right: 12.5rem;
}
main.basic-layout #section-footer {
  background-image: none;
  background-color: #0c0c0c;
}

img {
  max-width: 100%;
  width: 100%;
}

@font-face {
  font-family: "Geomanist";
  font-style: normal;
  src: url("../font/Geomanist-Medium-Webfont/geomanist-medium-webfont.woff2") format("woff2"), url("../font/Geomanist-Medium-Webfont/geomanist-medium-webfont.woff") format("woff"), url("../font/Geomanist-Medium-Webfont/geomanist-medium-webfont.eot") format("eot");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Geomanist";
  font-style: normal;
  src: url("../font/Geomanist-Light-Webfont/geomanist-light-webfont.woff2") format("woff2"), url("../font/Geomanist-Light-Webfont/geomanist-light-webfont.woff") format("woff"), url("../font/Geomanist-Light-Webfont/geomanist-light-webfont.eot") format("eot");
  font-weight: 500;
  font-display: swap;
}
* {
  font-size: 20px;
  color: #fff;
  font-family: "Geomanist", Arial, Helvetica, sans-serif;
  letter-spacing: 0.5px;
  box-sizing: border-box;
  font-weight: 500;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  margin: 0 0 1.5rem 0;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 2.5rem;
  margin-top: 0px;
}

h3 {
  font-size: 1.75rem;
  line-height: 1.2;
  margin: 0 0 0.5rem 0;
}
h3 + p {
  margin-top: 0px;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 12px;
  margin: 0 0 0.25rem 0;
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

a:hover {
  color: #f9eb1d;
}

p {
  line-height: 1.7;
}
p.pre-headline {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 0px;
}
p.p-smaller {
  font-size: 17px;
  line-height: 1.5;
}

.text-centered-divider {
  margin: 1.5rem auto 0;
  text-align: center;
}

.btn {
  background-color: #f9eb1d;
  color: #333333;
  border: 2px solid transparent;
  border-radius: 6px;
  border-top-left-radius: 0px;
  border-bottom-right-radius: 0px;
  padding: 6px 12px;
  font-weight: 700;
  display: inline-block;
  transition: all 0.2s ease;
  will-change: background-color, border;
  text-decoration: none;
  cursor: pointer;
  animation-name: heartBeat;
  animation-duration: 2.6s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  transform: scale(0.95);
}
@keyframes heartBeat {
  0% {
    transform: scale(0.95);
  }
  7% {
    transform: scale(1);
  }
  14% {
    transform: scale(0.95);
  }
  21% {
    transform: scale(1);
  }
  35% {
    transform: scale(0.95);
  }
}
.btn.btn-light {
  background-color: transparent;
  border: 2px solid #f9eb1d;
  color: #f9eb1d;
}
.btn.btn-light:hover {
  color: #333333;
  background-color: #f9eb1d;
}
.btn.btn-inverted {
  background-color: transparent;
  border: 2px solid #333333;
  color: #333333;
}
.btn.btn-inverted:hover {
  color: #f9eb1d;
  background-color: #333333;
  border: 2px solid #333333;
}
.btn:hover {
  color: #f9eb1d;
  background-color: transparent;
  border: 2px solid #f9eb1d;
  animation-play-state: paused;
}

label {
  font-size: 20px;
  color: #333333;
  margin-bottom: 8px;
  display: inline-block;
}

form input, form textarea {
  border: 2px solid #333333;
  color: #333333;
  border-radius: 6px;
  background-color: #fff;
  padding: 10px 16px;
  font-weight: 700;
  width: 100%;
  margin-bottom: 1rem;
}
form input:focus-visible, form textarea:focus-visible {
  outline: 2px solid #187ccc;
  outline-offset: 2px;
}

textarea {
  resize: vertical;
}

#scrollTop {
  position: fixed;
  bottom: 0px;
  left: 0px;
  opacity: 0;
  transition: opacity 0.3s ease;
  will-change: opacity;
  background-image: url(../../img/icons/Scroll-Up-Arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 35%;
  width: 100px;
  height: 100px;
  z-index: 1020;
  cursor: pointer;
}
#scrollTop.show {
  opacity: 0.75;
}
#scrollTop.show:hover {
  opacity: 1;
}

.video-wrapper {
  overflow: hidden;
  position: relative;
}
.video-wrapper.ratio-16-9 {
  aspect-ratio: 16/9;
}
.video-wrapper iframe {
  width: 100%;
  height: 100%;
}

.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  transition: opacity 0.3s ease;
  will-change: opacity;
  background-image: url(../../img/icons/Scroll-Up-Arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 65%;
  width: 50px;
  height: 50px;
  opacity: 0.75;
}
.swiper .swiper-button-prev::after,
.swiper .swiper-button-next::after {
  content: "" !important;
}
.swiper .swiper-button-prev:hover,
.swiper .swiper-button-next:hover {
  opacity: 1;
}
.swiper .swiper-button-prev {
  transform: rotate(-90deg);
}
.swiper .swiper-button-next {
  transform: rotate(90deg);
}

.card {
  border: 10px solid #f9eb1d;
  border-radius: 48px;
  border-top-left-radius: 0px;
  border-bottom-right-radius: 0px;
  padding: 16px 25px 16px;
}
.card.card-background {
  background-color: #f9eb1d;
}
.card.card-background .text-wrapper > * {
  color: #222222;
}
.card.card-background .text-wrapper p {
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0);
}
.card .text-wrapper {
  position: relative;
  z-index: 2;
}
.card .text-wrapper > * {
  color: #fff;
}
.card .text-wrapper p {
  margin: 0px;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.9);
}

@media screen and (max-width: 1550px) {
  header {
    padding: 0.5rem 8rem;
  }
  header nav ul {
    padding: 0px;
  }
  header nav ul:first-of-type {
    align-items: flex-start;
  }
  header nav ul:first-of-type #mila-motions-logo {
    margin-top: 18px;
  }
  header nav ul#nav-links-wrapper {
    flex-flow: column;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 0;
    pointer-events: none;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0px;
  }
  header nav ul#nav-links-wrapper a {
    font-size: 20px;
  }
  header #burger {
    opacity: 1;
    pointer-events: all;
  }

  main .section-grid:not(.section-full-width),
main .section-flex:not(.section-full-width),
main .section-basic:not(.section-full-width),
main.basic-layout .section-grid:not(.section-full-width),
main.basic-layout .section-flex:not(.section-full-width),
main.basic-layout .section-basic:not(.section-full-width) {
    padding-left: 8rem;
    padding-right: 8rem;
  }
  main .section-grid.section-start,
main.basic-layout .section-grid.section-start {
    padding-top: 150px;
    padding-bottom: 8rem;
    margin-bottom: 75px;
    height: auto;
    row-gap: 50px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "intro-text" "hero-video";
  }
  main .section-grid.section-start .grid-item__intro-text .text-wrapper,
main.basic-layout .section-grid.section-start .grid-item__intro-text .text-wrapper {
    max-width: 100%;
  }
  main .section-grid.section-start .grid-item__intro-text .text-wrapper p:last-of-type,
main.basic-layout .section-grid.section-start .grid-item__intro-text .text-wrapper p:last-of-type {
    max-width: 75%;
  }
  main .section-flex.section-references .flex-item.video-highlight-wrapper:nth-child(even) .text-wrapper,
main.basic-layout .section-flex.section-references .flex-item.video-highlight-wrapper:nth-child(even) .text-wrapper {
    top: -4rem;
    max-width: 40%;
  }
  main .section-flex.section-references .flex-item.video-highlight-wrapper:nth-child(odd) .text-wrapper,
main.basic-layout .section-flex.section-references .flex-item.video-highlight-wrapper:nth-child(odd) .text-wrapper {
    top: -4rem;
    max-width: 40%;
  }
}
@media screen and (max-width: 1350px) {
  main .section-grid.section-advantages,
main.basic-layout .section-grid.section-advantages {
    row-gap: 32px;
  }
  main .section-grid.section-advantages .grid-item.card,
main.basic-layout .section-grid.section-advantages .grid-item.card {
    padding: 32px;
  }
  main .section-grid.section-advantages .grid-item.card img,
main.basic-layout .section-grid.section-advantages .grid-item.card img {
    display: none;
  }
  main .section-grid.section-advantages .grid-item.card .text-wrapper,
main.basic-layout .section-grid.section-advantages .grid-item.card .text-wrapper {
    max-width: 100%;
  }
  main .section-grid.section-contact .contact-data,
main.basic-layout .section-grid.section-contact .contact-data {
    flex-flow: column;
  }
  main .section-grid.section-contact .contact-data .text-wrapper ul,
main.basic-layout .section-grid.section-contact .contact-data .text-wrapper ul {
    padding-left: 0px;
    padding-bottom: 0rem;
    padding-top: 0.5rem;
  }
}
@media screen and (max-width: 1000px) {
  .btn {
    animation-name: none;
  }

  header {
    padding: 0.5rem 4rem;
  }
  header #burger {
    right: 4rem;
  }

  main .background-container .mobile-hero-image,
main.basic-layout .background-container .mobile-hero-image {
    display: block;
    background-position-x: 10%;
  }
  main .background-container .desktop-hero-image,
main.basic-layout .background-container .desktop-hero-image {
    display: none;
  }
  main .section-grid:not(.section-full-width),
main .section-flex:not(.section-full-width),
main .section-basic:not(.section-full-width),
main.basic-layout .section-grid:not(.section-full-width),
main.basic-layout .section-flex:not(.section-full-width),
main.basic-layout .section-basic:not(.section-full-width) {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  main .section-grid.margin-bottom-small,
main.basic-layout .section-grid.margin-bottom-small {
    margin-bottom: 25px;
  }
  main .section-grid.margin-bottom-medium,
main.basic-layout .section-grid.margin-bottom-medium {
    margin-bottom: 50px;
  }
  main .section-grid.section-start,
main.basic-layout .section-grid.section-start {
    padding-top: 100px;
  }
  main .section-grid.section-start .grid-item__intro-text .text-wrapper h1,
main.basic-layout .section-grid.section-start .grid-item__intro-text .text-wrapper h1 {
    font-size: 3rem;
  }
  main .section-grid.section-partner .grid-item__partner #partner-swiper .swiper-wrapper .swiper-slide img,
main.basic-layout .section-grid.section-partner .grid-item__partner #partner-swiper .swiper-wrapper .swiper-slide img {
    max-height: 50px;
  }
  main .section-grid.section-advantages,
main.basic-layout .section-grid.section-advantages {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 50px 50px;
    grid-template-areas: "headline" "target" "workflow" "personal" "content" "cta";
  }
  main .section-grid.section-advantages .grid-item.card img,
main.basic-layout .section-grid.section-advantages .grid-item.card img {
    top: 16px !important;
    right: 16px !important;
    bottom: 16px !important;
    height: 95%;
    width: 50% !important;
  }
  main .section-grid.section-behind-the-scenes, main .section-grid.section-job-swiper,
main.basic-layout .section-grid.section-behind-the-scenes,
main.basic-layout .section-grid.section-job-swiper {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 0px 0px;
    grid-template-areas: "text" "swiper";
  }
  main .section-flex.section-references .flex-item.video-highlight-wrapper,
main.basic-layout .section-flex.section-references .flex-item.video-highlight-wrapper {
    margin: 25px 0px;
  }
  main .section-flex.section-references .flex-item.video-highlight-wrapper .video-wrapper,
main.basic-layout .section-flex.section-references .flex-item.video-highlight-wrapper .video-wrapper {
    max-width: 100%;
  }
  main .section-flex.section-references .flex-item.video-highlight-wrapper .text-wrapper,
main.basic-layout .section-flex.section-references .flex-item.video-highlight-wrapper .text-wrapper {
    transform: none !important;
  }
  main .section-flex.section-references .flex-item.video-highlight-wrapper .text-wrapper p,
main .section-flex.section-references .flex-item.video-highlight-wrapper .text-wrapper h3,
main.basic-layout .section-flex.section-references .flex-item.video-highlight-wrapper .text-wrapper p,
main.basic-layout .section-flex.section-references .flex-item.video-highlight-wrapper .text-wrapper h3 {
    font-size: 100%;
  }
  main .section-flex.section-references .flex-item.video-highlight-wrapper:nth-child(even),
main.basic-layout .section-flex.section-references .flex-item.video-highlight-wrapper:nth-child(even) {
    align-items: flex-start;
  }
  main .section-flex.section-references .flex-item.video-highlight-wrapper:nth-child(even) .text-wrapper,
main.basic-layout .section-flex.section-references .flex-item.video-highlight-wrapper:nth-child(even) .text-wrapper {
    top: 20px;
    left: 20px;
    max-width: 40%;
  }
  main .section-flex.section-references .flex-item.video-highlight-wrapper:nth-child(odd),
main.basic-layout .section-flex.section-references .flex-item.video-highlight-wrapper:nth-child(odd) {
    align-items: flex-start;
  }
  main .section-flex.section-references .flex-item.video-highlight-wrapper:nth-child(odd) .text-wrapper,
main.basic-layout .section-flex.section-references .flex-item.video-highlight-wrapper:nth-child(odd) .text-wrapper {
    top: 20px;
    right: 20px;
    max-width: 40%;
  }
}
@media screen and (max-width: 750px) {
  header {
    padding: 0.5rem 1rem;
  }
  header #burger {
    right: 1rem;
  }

  main section.section-grid:not(.section-full-width), main section.section-flex:not(.section-full-width),
main.basic-layout section.section-grid:not(.section-full-width),
main.basic-layout section.section-flex:not(.section-full-width) {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 2rem;
  }
  main section.section-grid:not(.section-full-width).section-grid.section-start .grid-item__intro-text .text-wrapper p.pre-headline, main section.section-flex:not(.section-full-width).section-grid.section-start .grid-item__intro-text .text-wrapper p.pre-headline,
main.basic-layout section.section-grid:not(.section-full-width).section-grid.section-start .grid-item__intro-text .text-wrapper p.pre-headline,
main.basic-layout section.section-flex:not(.section-full-width).section-grid.section-start .grid-item__intro-text .text-wrapper p.pre-headline {
    font-size: 1rem;
  }
  main section.section-grid:not(.section-full-width).section-grid.section-start .grid-item__intro-text .text-wrapper p:last-of-type, main section.section-flex:not(.section-full-width).section-grid.section-start .grid-item__intro-text .text-wrapper p:last-of-type,
main.basic-layout section.section-grid:not(.section-full-width).section-grid.section-start .grid-item__intro-text .text-wrapper p:last-of-type,
main.basic-layout section.section-flex:not(.section-full-width).section-grid.section-start .grid-item__intro-text .text-wrapper p:last-of-type {
    max-width: 100%;
  }
  main section.section-grid:not(.section-full-width).section-grid.section-start .grid-item__intro-text .text-wrapper h1, main section.section-flex:not(.section-full-width).section-grid.section-start .grid-item__intro-text .text-wrapper h1,
main.basic-layout section.section-grid:not(.section-full-width).section-grid.section-start .grid-item__intro-text .text-wrapper h1,
main.basic-layout section.section-flex:not(.section-full-width).section-grid.section-start .grid-item__intro-text .text-wrapper h1 {
    padding-top: 0px;
    font-size: 2.35rem;
  }
  main section.section-grid.section-comments,
main.basic-layout section.section-grid.section-comments {
    padding-bottom: 25px;
  }
  main section.section-grid.section-comments .grid-item__comments #comment-swiper,
main.basic-layout section.section-grid.section-comments .grid-item__comments #comment-swiper {
    padding: 0px 1rem 60px;
  }
  main section.section-grid.section-comments .grid-item__comments #comment-swiper .text-wrapper p,
main.basic-layout section.section-grid.section-comments .grid-item__comments #comment-swiper .text-wrapper p {
    font-size: 17px;
  }
  main section.section-grid.section-comments .grid-item__comments #comment-swiper .swiper-button-next,
main section.section-grid.section-comments .grid-item__comments #comment-swiper .swiper-button-prev,
main.basic-layout section.section-grid.section-comments .grid-item__comments #comment-swiper .swiper-button-next,
main.basic-layout section.section-grid.section-comments .grid-item__comments #comment-swiper .swiper-button-prev {
    top: initial;
    bottom: 0px;
  }
  main section.section-flex.section-references .flex-item.video-highlight-wrapper,
main.basic-layout section.section-flex.section-references .flex-item.video-highlight-wrapper {
    margin: 20px 0px;
  }
  main section.section-flex.section-references .flex-item.video-highlight-wrapper .video-wrapper,
main.basic-layout section.section-flex.section-references .flex-item.video-highlight-wrapper .video-wrapper {
    margin-top: 90px;
  }
  main section.section-flex.section-references .flex-item.video-highlight-wrapper .text-wrapper,
main.basic-layout section.section-flex.section-references .flex-item.video-highlight-wrapper .text-wrapper {
    position: absolute;
  }
  main section.section-flex.section-references .flex-item.video-highlight-wrapper:nth-child(even) .text-wrapper,
main.basic-layout section.section-flex.section-references .flex-item.video-highlight-wrapper:nth-child(even) .text-wrapper {
    top: 10px;
    left: 10px;
    max-width: 100%;
  }
  main section.section-flex.section-references .flex-item.video-highlight-wrapper:nth-child(odd) .text-wrapper,
main.basic-layout section.section-flex.section-references .flex-item.video-highlight-wrapper:nth-child(odd) .text-wrapper {
    top: 0px;
    right: 10px;
    max-width: 100%;
  }
  main section.section-flex.section-masterplan,
main.basic-layout section.section-flex.section-masterplan {
    background-position-x: 55%;
  }
  main section.section-flex.section-masterplan .flex-item,
main.basic-layout section.section-flex.section-masterplan .flex-item {
    margin-bottom: 1rem;
  }
  main section.section-flex.section-masterplan .flex-item h3,
main.basic-layout section.section-flex.section-masterplan .flex-item h3 {
    margin-bottom: 0px;
  }

  footer .section-grid#section-footer {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 50px;
    grid-template-areas: "contact" "imprint" "social-media" "copyright" "mm-logo";
  }
}
@media screen and (max-width: 600px) {
  header {
    height: 70px;
    padding: 0.5rem 1rem;
  }
  header nav ul:first-of-type #mila-motions-logo {
    margin-top: 10px;
    width: 160px;
  }
  header #burger {
    top: 3px;
    right: 10px;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.15rem;
  }

  p.pre-headline {
    max-width: 90%;
    white-space: pre-wrap;
  }

  main section.section-grid:not(.section-full-width).section-grid.section-advantages .grid-item.card, main section.section-flex:not(.section-full-width).section-grid.section-advantages .grid-item.card,
main.basic-layout section.section-grid:not(.section-full-width).section-grid.section-advantages .grid-item.card,
main.basic-layout section.section-flex:not(.section-full-width).section-grid.section-advantages .grid-item.card {
    border-width: 5px;
    padding: 20px;
  }
  main section.margin-bottom-medium,
main.basic-layout section.margin-bottom-medium {
    margin-bottom: 50px;
  }
  main section.section-grid .grid-item__philipp,
main.basic-layout section.section-grid .grid-item__philipp {
    margin-bottom: 40px;
  }
  main section.section-grid .card,
main.basic-layout section.section-grid .card {
    border-width: 5px;
    padding: 20px;
  }
  main section.section-grid.section-behind-the-scenes .grid-item.grid-item__text, main section.section-grid.section-job-swiper .grid-item.grid-item__text,
main.basic-layout section.section-grid.section-behind-the-scenes .grid-item.grid-item__text,
main.basic-layout section.section-grid.section-job-swiper .grid-item.grid-item__text {
    padding: 20px 1rem;
  }
  main section.section-grid.section-behind-the-scenes .grid-item.grid-item__swiper .fullWidth-swiper .swiper-wrapper .swiper-slide, main section.section-grid.section-job-swiper .grid-item.grid-item__swiper .fullWidth-swiper .swiper-wrapper .swiper-slide,
main.basic-layout section.section-grid.section-behind-the-scenes .grid-item.grid-item__swiper .fullWidth-swiper .swiper-wrapper .swiper-slide,
main.basic-layout section.section-grid.section-job-swiper .grid-item.grid-item__swiper .fullWidth-swiper .swiper-wrapper .swiper-slide {
    height: 300px;
  }
  main section.section-grid.section-contact,
main.basic-layout section.section-grid.section-contact {
    grid-template-columns: 1fr;
    grid-template-areas: "headline" "philipp" "marek" "contact" "form";
  }
  main section.section-grid.section-contact .contact-data,
main.basic-layout section.section-grid.section-contact .contact-data {
    align-items: center;
  }
}