@font-face {
    font-family: diatype;
    src: url('../fonts/Switzer-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
  }

  @font-face {
    font-family: diatype-rounded;
    src: url('../fonts/Switzer-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
  }


html, body {
    position: relative;
    height: 100%;
    font-size: calc(15px + 0.390625vw);
    line-height: 1.2;

}

body {
margin: 0;
padding: 0;
font-family: diatype;
overflow-x: hidden;
background-color: rgb(202, 201, 201);
color: rgb(68, 67, 67);
}

h1 {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-family: diatype-rounded;
  font-weight: normal;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}

i {
  font-family: diatype-italic, sans-serif; font-style: normal;
}

em {
  font-family: diatype-italic, sans-serif;
  font-style: normal;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
  transition: color 0.2s ease; 
}

a:link, a:visited { 
  text-decoration: none;
  cursor: pointer;
}

a:link:active, a:visited:active { 

}


a:hover {
  animation: blink 1s infinite; /* Apply blinking effect on hover */
}

/* Define the blinking animation */
@keyframes blink {
  0%, 100% {
    color: inherit; /* Original color */
  }
  50% {
    color: red; /* Blink to red */
  }
}


p {
    margin-bottom: 0;
    margin-top: 0;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
    margin: 0;
    }
    
    li {
    list-style: none;
    margin: 0;
    padding: 0;
}

table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

svg {
  margin: 0;
}

.u_line {
  text-decoration: underline;
}


.upper-c {
  text-transform: uppercase;
}

* {box-sizing:border-box}

/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar {
display: none;
}

/* Hide scrollbar for IE, Edge add Firefox */
html {
-ms-overflow-style: none;
scrollbar-width: none; /* Firefox */
}

.hide {
  display: none;
}

main {
  position: relative;
}

.disable-select {
  -webkit-user-select: none;  
  -moz-user-select: none;    
  -ms-user-select: none;      
  user-select: none;
}


/* HEADER ELEMENT*/

.menu {
  display: none;
}

.burger-menu {
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: fixed;
    right: 20px;
    top: 0.2rem;
    z-index: 500;
  }
  
  .burger-menu span {
    display: block;
    width: 30px;
    height: 3px;
    background: #afb0b0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
  }
  
  .burger-menu span:before,
  .burger-menu span:after {
    content: "";
    width: 30px;
    height: 3px;
    background: #afb0b0;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
  }
  
  .burger-menu span:before {
    top: -8px;
    background-color: #afb0b0;
  }
  
  .burger-menu span:after {
    top: 8px;
    background-color: #afb0b0;
  }
  
  
  .burger-menu.open span:before {
    transform: rotate(45deg);
    top: 0;
  }
  
  .burger-menu.open span:after {
    transform: rotate(-45deg);
    top: 0;
  }
  
  .burger-menu:hover span,
  .burger-menu:hover span:before,
  .burger-menu:hover span:after {
    background-color: rgb(68, 67, 67);
  }

  .burger-menu:hover span {
    width: 30px;
  }
  
  .burger-menu.open span {
    background: transparent;
  }


  .menu_table {
    z-index: -4;
    position: fixed;
    height: auto;
    width: auto;
    top: 0;
    right: 0;
    opacity: 0%;
    display: none;
    background-color: rgb(202, 201, 201);
  }

  .openTable{
    z-index: 3;
    opacity: 100%;
    animation: fade-in 0.8s ease-in-out;
    display: inherit;
  }

  .closeTable{
    z-index: -4;
    opacity: 0%;
    animation: fade-out-2 0.8s ease-in-out;
  }


  @keyframes fade-in {
    0% {opacity: 0%;}
    100% {opacity: 80%; }
  }

  @keyframes fade-out-3 {
    0% {opacity: 80%;}
    100% {opacity: 0%; }
  }
  
  @keyframes fade-out {
    0% {opacity: 100%; z-index: 102;}
    99% {opacity: 0%; z-index: 102;}
    100% {z-index: -4;}
  }

  @keyframes fade-out-2 {
    0% {opacity: 60%; z-index: 3;}
    99% {opacity: 0%; z-index: 3;}
    100% {z-index: -4;}
  }


  /* NAVI */




  .navigation {
    position: fixed;
    padding: 20px;
    width: 100vw;
    height: 3rem;
    z-index: 400;
    background-color: rgb(202, 201, 201);
  }


  .logo_container {
    font-size: 1.5rem;
    position: absolute;
    bottom: 12px;
    text-transform: uppercase;
    font-family: diatype-rounded;
  }

  .nav-links {
    position: absolute;
    right: 20px;
    bottom: 20px;
  }

  .nav-links a{
    margin-left: 10px;
  }

  .nav-background {
    width: 100%;
    position: sticky;
    top: 0px;
    z-index: 99;
    transition: height 0.6s;
  }


  /* REEL */

.mute-sound {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 100;
}

.mute-sound img{
width: 2rem;
height: auto;
}

.showreel-container {
  padding-top: 3rem;
  width: 100vw;
  position: relative;
  display: block;
}

.showreel-container video{
  width: 100%;
}


/* SWIPER  film-container */

.swiper-container {
  height: auto;
  max-width: 100vw;
  margin: 0px 0px 2rem 0px;
  background-color: black;
  color: white;
}

.swiper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: absolute;
  padding: 2rem;
  text-align: center;
}

.swiper-slide img {
  width: 100%;
}



.swiper-slide a:hover{
  color:  rgb(122, 104, 104);
}

.slide-info-wrap {
  margin: 5px 0px 5px 0px;
}

.slide-info-wrap span{
  margin-right: 20px;
  width: auto;
}


.swiper-button-prev {
  position: absolute;
  background-color: black;
  height: 50px;
  width: 50px;
  color: white;
  cursor: pointer;
  top: 50%;
  transform: translateY(-72%);
  left: 20px;
  z-index: 10;
  outline: none;
  border-radius: 16px;
  text-align: center;
  display: none;
  opacity: 0%;
  transition: opacity 0.3s ease;
}


.swiper-button-next {
  position: absolute;
  background-color: black;
  height: 50px;
  width: 50px;
  cursor: pointer;
  top: 50%;
  transform: translateY(-72%);
  right: 20px;
  z-index: 10;
  outline: none;
  border-radius: 14px;
  display: none;
  opacity: 80%;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
}

.swiper-button-next :hover{
  opacity: 40%;
  width: 62%;
}

.swiper-button-prev :hover{
  opacity: 40%;
  width: 65%;
}


.swiper-button-next img{
  position: absolute;
  width: 60%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.swiper-button-prev img{
  position: absolute;
  width: 60%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.swiper-button-prev.show,
.swiper-button-next.show {
  display: block;
  opacity: 80%;
}



.auszeichnungen-slide {
  background-color: none;
  width: 35%;
  max-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.auszeichnungen-slide img{
  width: 80%;
}

.filme-slide {
  width: 100%;
  max-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.filme-slide img{
  transition: opacity 0.3s ease;
}


.slide-img-container:hover .titel-hover{
  opacity: 100%;
}

.film-img:hover {
filter: blur(2.2px);
}

.film-img {
  transition: filter 0.8s ease;
}



/* ABOUT SECTION */

.about-wrap {
  position: relative;
  margin: 1rem 20px 1rem 20px ;

}

.about {
  position: relative;
  display: flex; 
  align-items: flex-start; 
}

.about-info {
  width: 65%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 0; 
}

.about-info a{
  text-decoration: underline;
}

.about-info p{
  padding-right: 1rem;
}

.about-info-screenings {
  width: 100%;
  box-sizing: border-box;
}

.about-info-screenings p{
  margin: 0px 0px 1rem 0px;
}

.about-info-screenings a{
  text-decoration: underline;
}





.portrait-wrap {
  width: 35%; 
  box-sizing: border-box;
  bottom: 0px;
}

.portrait-wrap img{
  max-width: 100%; 
  padding-right: 20px;
  right: 0px;
  padding-top: 4px;
}

.about p{
  margin: 0px 0px 1rem 0px;
}


/* FOOTER SECTION */

.footer-leiste {
  position: relative;
  padding: 20px 20px 40px 20px;
}



.impressum-wrap {
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  background-color: rgb(68, 67, 67);
  color: rgb(202, 201, 201);
  z-index: 1001;
  padding: 20px;
  overflow: scroll;
  opacity: 95%;
}

.impressum p{
  margin-bottom: 10px;
}

.impressum a{
  color: white !important;
}

.impressum a:hover{
  color: #afb0b0 !important;
}

#close-imp {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: #afb0b0;
}



/* Projects */

.screenshot-wrap {
  padding-top: 10vh;
  padding-bottom: 140px;
}


.screenshots {
  display: flex;
  justify-content: center; 
  align-items: center;
  width: 100%;
  max-height: auto;
  overflow: hidden;
}

.screenshots img{
  width: 100%;
  height: auto;
}

.films-blur {
  background: linear-gradient(to bottom, rgba(176, 177, 176, 1)10vh, rgba(176, 177, 176, 0));
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 60vh;
}

.film-info-wrap {
  position: relative; 
  top: 70px;
  color: black;
  border-top: black solid 2px;
  padding: 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  list-style: none;
  grid-column-gap: 4rem;
  grid-row-gap: 6rem;
  background: linear-gradient(to bottom, rgba(176, 177, 176, 0.8)90%, rgba(176, 177, 176, 0));
}

.film-info-wrap > :first-child {
  position: relative;
}

.film-info-wrap > :first-child::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -2rem; /* Adjust the gap width as needed */
  width: 2px; /* Adjust the gap width as needed */
  background-color: black; /* Set the color of the gap */
}

.film-credit{
  margin-top: 0;
}

.film-credit p{
  margin-top: 1.2em;
}

.film-preise img{
  position: relative;
  width: 30%;
  margin: 0px 20px 20px 0px;
  float: left;
}


.more-projects {
  float: left;
  bottom: 0px;
  width: 100%;
  text-align: center;
  height: auto;
  padding-top: 150px;
  color: #afb0b0;
}

.weitere {
  position: absolute;
  background-color: rgb(68, 67, 67);
  height: 2.4em;
  width: auto;
  text-align: center;
  padding: 10px;
  border-radius: 12px;
  transform: translateX(-50%);
}

#nachher {
  position: absolute;
  right: 20px;
  background-color: rgb(68, 67, 67);
  height: 2.4em;
  width: auto;
  text-align: center;
  padding: 10px;
  border-radius: 12px;
}

#nachher img{
  width: auto;
  height: 1.2em;
}

#nachher img:hover{
  opacity: 60%;
}


#vorher {
  position: absolute;
  left: 20px;
  background-color: rgb(68, 67, 67);
  height: 2.4em;
  width: auto;
  text-align: center;
  padding: 10px;
  border-radius: 12px;
}


#vorher img{
  width: auto;
  height: 1.2em;
}

#vorher img:hover{
  opacity: 60%;
}
/* Media Querys */



@media screen and (max-width: 999px) {

  .nav-links {
    display: none;
  }

  .menu {
    display: inherit;
  }

  .menu_table {
    position: fixed;
    height: auto;
    width: auto;
    top: 80px;
    right: 20px;
    text-align: right;
    background-color: rgb(202, 201, 201);
    padding: 10px;
    border-radius: 12px;
    line-height: 1.8;
    border: 1px solid rgb(68, 67, 67);
  }

}


@media screen and (max-width: 500px) {

  .logo_container {
    top: 0.5rem;
    font-size: 30px;
    align-items: center;
  }

  .burger-menu {
    width: 40px;
    height: 30px;
    cursor: pointer;
    position: fixed;
    right: 20px;
    top: 0.6rem;
    z-index: 500;
  }
  
  .burger-menu span {
    display: block;
    width: 30px;
    height: 2px;
    background: #afb0b0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
  }
  
  .burger-menu span:before,
  .burger-menu span:after {
    content: "";
    width: 30px;
    height: 2px;
    background: #afb0b0;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
  }

  .slide-info-wrap {
    margin: 5px 0px 0px 0px;
    font-size: 14px;
  }

  .slide-info-wrap span{
    margin-right: 10px;
    width: 20%;
  }


  .filme-slide {
    width: 100%;
  }

  .about {
    display: inline; 
  }

  .about-info {
    width: 100%;
  }
  
  .portrait-wrap {
    width: 100%; 
  }

  .portrait-wrap {
    width: 100%; 
    margin-bottom: 20px;
  }

  .portrait-wrap img{
    max-width: 100%; 
    padding-right: 0px;
    padding-top: 0px;
  }

  .auszeichnungen-slide {
    width: 100%;
    max-height: 50vh;
  }

  .auszeichnungen-slide img{
    position: relative;
    padding-left: 0%;
  }

  .swiper-button-prev {
    transform: translateY(-90%);
    height: 30px;
    width: 30px;
    border-radius: 10px;
  }
  

  
  .swiper-button-next {
    transform: translateY(-80%);
    height: 30px;
    width: 30px;
    border-radius: 10px;
  }


  .film-info-wrap {
    grid-template-columns: 1fr;
    grid-row-gap: 1rem;
  }

  .screenshot-wrap {
    padding-top: 80vh;
  }

  .film-info-wrap > :first-child::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: -2rem; /* Adjust the gap width as needed */
    width: 0px; /* Adjust the gap width as needed */
    background-color: none; /* Set the color of the gap */
  }

  .mute-sound img{
    width: 2rem;
    height: auto;
    }

    .mute-sound {
      position: absolute;
    }

    .titel-hover {
      display: none;
    }
  
}