/*

color(display-p3 0.2667 0.4471 0.7686) dunkelblau #4472C4
color(display-p3 0.0588 0.5765 0.9922) hellblau #0F93FD
dunkelgrau #191919

*/


/* ---- Titel ---- */

/* Phone (0px - 575px) */


/* Tablets (576px - 991px) */

@media screen and (min-width: 576px) {}


/* Desktops (992px+) */

@media screen and (min-width: 992px) {}

/* --------- */





/* ---- General Stuff ---- */

/* Phone (0px - 575px) */

@font-face {
  font-family: 'Ofelia Text';
  src: url('../3-fonts/OfeliaText-Light.woff2') format('woff2'),
    url('../3-fonts/OfeliaText-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Ofelia Text';
  src: url('../3-fonts/OfeliaText-Regular.woff2') format('woff2'),
    url('../3-fonts/OfeliaText-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Ofelia Text';
  src: url('../3-fonts/OfeliaText-Medium.woff2') format('woff2'),
    url('../3-fonts/OfeliaText-Regular.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Ofelia Text';
  src: url('../3-fonts/OfeliaText-Semibold.woff2') format('woff2'),
    url('../3-fonts/OfeliaText-Semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Ofelia Text';
  src: url('../3-fonts/OfeliaText-Bold.woff2') format('woff2'),
    url('../3-fonts/OfeliaText-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

html {
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: color(display-p3 0.0588 0.5765 0.9922) #f2f2f2;
  transition: scrollbar-color 0.8s ease;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Ofelia Text', sans-serif;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
  overflow-y: hidden;
}

.page-loading {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: all 1s ease;
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background-color: #f2f2f2;
}

body::-webkit-scrollbar-thumb {
  background-color: color(display-p3 0.0588 0.5765 0.9922);
}

.scrollbar-color-changed::-webkit-scrollbar-track {
  background-color: #191919;
}

/* --------- */


/* ----- Common Stuff ----- */

/* Phone (0px - 575px) */

.headline {
  font-size: 20px;
  font-weight: 700;
  color: color(display-p3 0.0588 0.5765 0.9922);
  text-align: center;
  line-height: 29px;
  padding: 50px 0px;
}

p {
  margin: 0;
  padding: 0;
  line-height: 22px;
}

a {
  text-decoration: none;
}

span {
  color: #191919;
  font-weight: 700;
}

.large-button-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Tablets (576px - 991px) */

@media screen and (min-width: 576px) {}


/* Desktops (992px+) */

@media screen and (min-width: 992px) {
  .headline {
    font-size: 25px;
  }

  #large-button {
    display: inline-block;
    max-width: 970px;
    margin: 0px 60px;
  }

  #large-button::before,
  #large-button::after {
    width: 100%;
    max-width: 970px;
  }
}

/* --------- */


/* ---- Navbar ---- */

/* Phone (0px - 575px) */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: #f2f2f2;
  display: flex;
  z-index: 999;
  align-items: center;
  flex-direction: column;
  transition: top 0.8s ease;
}

.nav-background {
  width: 100%;
  height: 67px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.light-up {
  width: 100%;
  background-color: color(display-p3 0.0588 0.5765 0.9922);
  box-shadow: 0px 0px 10px 0px rgba(15, 147, 253, 0.5);
  height: 3px;
}

.home {
  margin-left: 5px;
  font-size: 20px;
  font-weight: 300;
  padding: 15px;
  border-radius: 5px;
  position: relative;
  z-index: 2;
  color: #191919;
}

.home:hover {
  background-color: #fff;
  color: color(display-p3 0.0588 0.5765 0.9922);
  font-weight: 500;
  cursor: pointer;
}

#small-active-link {
  font-weight: 500;
  color: color(display-p3 0.0588 0.5765 0.9922);
}

.burger-menu {
  width: 0vw;
  height: 100vh;
  background-color: #f2f2f2;
  position: fixed;
  top: 0;
  display: flex;
  justify-content: start;
  align-items: start;
  overflow-y: scroll;
  overflow-x: hidden;
  z-index: 998;
  transition: width 0.5s ease;
}

.burger-menu ul {
  list-style: none;
  width: 100%;
  padding: 0;
  margin: 0px;
  margin-top: 70px;
  flex-direction: column;
  display: flex;
  justify-content: center;
}

.burger-menu ul li {
  padding: 40px 20px;
  width: 100%;
  border-bottom: 1px solid #ababab;
  cursor: pointer;
}

.burger-menu ul li a {
  font-size: 18px;
  font-weight: 300;
  color: #707070;
  white-space: nowrap;
}

.burger-menu ul li:hover a {
  font-weight: 500;
  color: color(display-p3 0.0588 0.5765 0.9922);
}

.burger-menu ul li:hover {
  background-color: #fff;
}

#movie-burger {
  border: none;
  margin: 40px 10vw;
  padding: 30px;
  border-radius: 10px;
  background: linear-gradient(to bottom right, color(display-p3 0.0588 0.5765 0.9922), color(display-p3 0.2667 0.4471 0.7686));
  align-self: left;
  width: 80vw;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 20px 5px rgba(31, 147, 253, 0.5);
  transition: scale 0.3s ease;
}

#movie-burger img {
  height: 25px;
}

#movie-burger a {
  display: flex;
  justify-content: center;
  align-items: center;
}

#movie-burger:hover {
  scale: 1.05;
}

.small-size-nav {
  width: 100%;
  height: 67px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.full-size-nav {
  display: none;
}

/* Burger Animation */

.burger {
  display: flex;
  width: 57px;
  height: 57px;
  margin: 5px;
  padding: 15px 10px 15px 10px;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  border-radius: 5px;
}

.burger:hover {
  background-color: #fff;
}

.burger:hover .line {
  stroke: color(display-p3 0.0588 0.5765 0.9922);
}

.menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 0;
}

.line {
  fill: none;
  stroke: #191919;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}

.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}

.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}


/* Tablets (576px - 991px) */

@media screen and (min-width: 576px) {}


/* Desktops (992px+) */

@media screen and (min-width: 992px) {
  .navbar {
    height: 70px;
  }

  .nav-background {
    height: 67px;
  }

  .small-size-nav {
    display: none;
  }

  .full-size-nav {
    width: 100%;
    max-width: 1440px;
    /* 1340px = 70% der Seite bei einer Auflösung von 1920px Breite */
    height: 67px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 0px auto;
  }

  .full-size-nav-links {
    display: flex;
    flex-direction: row;
    align-items: end;
    margin-left: 25px;
  }

  .full-size-link {
    padding: 15px 20px;
    margin: 5px;
    text-decoration: none;
    box-shadow: none;
    border: none;
    font-size: 16px;
    color: #191919;
    line-height: 20px;
  }

  .full-size-link:hover {
    color: color(display-p3 0.0588 0.5765 0.9922);
    background-color: #fff;
    border-radius: 10px;
  }

  #active-link {
    font-size: 20px;
    color: color(display-p3 0.0588 0.5765 0.9922);
    font-weight: 500;
    line-height: 20px;
  }

  .full-size-movie-voice {
    margin-right: 50px;
    padding: 15px 50px;
    background: linear-gradient(to bottom right, color(display-p3 0.2667 0.4471 0.7686), color(display-p3 0.0588 0.5765 0.9922));
    border-radius: 5px;
    box-shadow: 0px 0px 20px 5px rgba(31, 147, 253, 0.5);
    transition: box-shadow 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .full-size-movie-voice:hover {
    box-shadow: 0px 0px 30px 5px rgba(31, 147, 253, 0.8);
  }

  .full-size-movie-voice img {
    height: 18px;

  }
}

/* --------- */


/* ---- Button  ---- */

/* Button Background */

.button-container {
  display: flex;
  justify-content: center;
  align-items: start;
  position: relative;
  margin-top: auto;
}

.button-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.below {
  position: relative;
  z-index: 0;
}

.flex-item-above {
  width: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.flex-item-below {
  position: absolute;
  z-index: 1;
}

.background-shape {
  background-color: #F2F2F2;
  width: 100%;
  height: 120px;
}

#wave-small {
  position: relative;
  bottom: 80px;
}


/* Button Styling */

#main-button {
  display: none;
}

.cool-button {
  position: relative;
  display: inline-block;
  width: calc(100% - 60px);
  height: 60px;
  margin: 50px 20px;
  border: none;
  padding: 0;
  background-color: #191919;
  border-radius: 5px;
  color: white;
  font-size: 20px;
  font-weight: 700;
  transition: transform 0.3s ease,
    background-color 0.3s ease,
    border 0.3s ease;
}

.cool-button::before,
.cool-button::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 60px;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.cool-button::before {
  background-color: color(display-p3 0.2667 0.4471 0.7686);
  top: -10px;
  right: -10px;
  transform: translate(0, 0);
  z-index: -2;
}

.cool-button::after {
  background-color: color(display-p3 0.0588 0.5765 0.9922);
  top: 10px;
  right: 10px;
  transform: translate(0, 0);
  z-index: -1;
}


/* Button Hover */

.cool-button:hover {
  cursor: pointer;
}

.cool-button:hover::before {
  transform: translate(-10px, 10px);
}

.cool-button:hover::after {
  transform: translate(10px, -10px);
}

/* --------- */


/* ---- Imprint ---- */

/* Phone (0px - 575px) */

.imprint {
  padding: 70px 20px 50px 20px;
  min-height: 100vh;
}

.imprint-text {
  max-width: 1340px;
  margin: 0px auto;
  font-size: 15px;
  font-weight: 300;
  line-height: 22px;
}

.imprint-text strong {
  font-weight: 500;
}

.imprint-text a {
  color: color(display-p3 0.0588 0.5765 0.9922);
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

/* Tablets (576px - 991px) */

@media screen and (min-width: 576px) {}


/* Desktops (992px+) */

@media screen and (min-width: 992px) {
  .imprint {
    padding: 70px 50px 50px 50px;
  }

  .imprint-text {
    font-size: 16.5px;
    line-height: 25px;
  }
}

/* --------- */


/* ---- Footer ---- */

/* Phone (0px - 575px) */

.footer {
  position: relative;
  z-index: 2;
}

.footer-links {
  background-color: #191919;
  padding: 50px;
  text-align: center;
}

.quick-links,
.misc-links {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}

.quick-links a {
  color: color(display-p3 0.0588 0.5765 0.9922);
  font-size: 15px;
  font-weight: 300;
  line-height: 22px;
  padding: 10px;
  position: relative;
  text-decoration: none;
}

.quick-links a:visited,
.quick-links a:active {
  color: color(display-p3 0.0588 0.5765 0.9922);
}

.quick-links a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: color(display-p3 0.0588 0.5765 0.9922);
  transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

.quick-links a:hover::before {
  width: 100%;
  left: 50%;
}

.misc-links {
  padding-top: 20px;
}

.misc-links a {
  color: #f2f2f2;
  font-size: 15px;
  font-weight: 300;
  line-height: 22px;
  padding: 10px;
  position: relative;
  text-decoration: none;
}

.misc-links a:visited,
.misc-links a:active {
  color: #f2f2f2;
}

.misc-links a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background-color: #f2f2f2;
  transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

.misc-links a:hover::before {
  width: 100%;
  left: 50%;
}

.footer-links p a {
  transition: scale 0.3s ease;
}

.footer-links p a:hover {
  text-decoration: dashed;
}

.footer-info {
  background-color: #f2f2f2;
  padding: 25px 0px;
}

.footer-info p {
  color: #666666;
  font-size: 12px;
  font-weight: 300;
  text-align: center;
  line-height: 14px;
}

.footer-info-container {
  width: 100%;
  max-width: 1440px;
  padding: 0px 50px;
  margin: 0px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#footer-love {
  margin-bottom: 10px;
}


/* Tablets (576px - 991px) */

@media screen and (min-width: 576px) {}


/* Desktops (992px+) */

@media screen and (min-width: 992px) {
  .footer-info-container {
    justify-content: space-between;
    flex-direction: row;
  }

  #footer-love {
    margin-bottom: 0;
  }
}

/* --------- */