



.movie-1{
 background-image: url(/thumb/Filmposter/Bradack.jpg);
}

.movie-2{
 background-image: url(/thumb/Filmposter/Filmposter_Ballon.png);
}
.movie-3{
 background-image: url(/thumb/Filmposter/Der_Sammler.jpg);
}
.movie-4{
 background-image: url(/thumb/Filmposter/LP_Cover.jpg);
}
.movie-5{
 background-image: url(/thumb/Filmposter/Yidaki.jpg);
}
.movie-6{
 background-image: url(/thumb/Filmposter/HELLOWEEN.jpg);
}
.movie-7{
 background-image: url(/thumb/Filmposter/Ritter_1.jpg);
}
.movie-8{
 background-image: url(/thumb/Filmposter/Ritter_2.jpg);
}
.movie-9{
 background-image: url(/thumb/Filmposter/Die_Schnueffler.jpg);
}
.movie-10{
 background-image: url(/thumb/Filmposter/Die_Lagune.jpg);
}

.intro{
  display: flex;
  justify-content: center;
}
.wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
 text-align: center;
  width:80vw;
  margin-bottom: 10px;
  padding-bottom: 50px;
  padding-top: 50px;
  
}
.wrapper h1{
  font-weight: 500;
  margin: 20px;
  font-size: 1.6em;
}
.wrapper h2{
  margin-top: 20px;
  
  font-size: 2.3em;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 500;
}



 @media(max-width: 710px){
.wrapper h1{
  font-size: 1.2em;
}
  }  
  @media(max-width: 710px){
.wrapper h2{
  font-size: 1.5em;
  line-height: 1.5em;
}
  }  
  
.gridsec{
  padding-bottom: 20px;
}

.grid-container{
  border-bottom: none;
  margin-right: 80px;
 }
  



/*SLIDER Section*/

.presentslider{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
  justify-content: center;
  margin-right: 50px;
  padding-top: 100px;
  padding-left: 80px;
  padding-bottom: 100px;
}


@media(max-width:600px){
  .presentslider{
   margin-bottom: 0px;
}
}


.medientext{
  border-bottom: 2px solid rgb(124, 68, 0);
  margin-top: 0px;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
 
  
}
#meditex2{
  display: flex;
  flex-direction: row;
  height: 150px;
   flex-direction: column;
   justify-content: center;
   flex-wrap: wrap;
   border: none;
}
.icon-div{
  display: flex;
 align-items: center;
  flex-wrap: nowrap;
  margin-left: 0px;
  
}
.icon-div img{
  width: 50px;
  height: 50px;
  margin: 10px;
}

.container {
 width: 100%;
}
.describer{
  padding: 20px;
  background-color: rgba(255, 178, 69, 0.253);
  height: max-content;
  border-radius: 5px;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.568);
}

.describer h2{
  margin: 0;
  font-weight: 400;
  font-size: 1.5em;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-style: oblique;
  color: #373737;
}
.describer h1{
  margin: 0;
  margin-bottom: 15px;
  margin-top: 20px;
  font-weight: 400;
  font-size: 1.2em;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-style: oblique;
  color: #373737;
}


.slider-wrapper {
  position: relative;
}
.slider-wrapper .slide-button {
  position: absolute;
  top: 50%;
  outline: none;
  border: none;
  height: 50px;
  width: 50px;
  z-index: 5;
  color: #fff;
  display: flex;
  cursor: pointer;
  font-size: 2.2rem;
  background: #000;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: translateY(-50%);
}
.slider-wrapper .slide-button:hover {
  background: #404040;
}
.slider-wrapper .slide-button#prev-slide {
  left: -25px;
  display: none;
}
.slider-wrapper .slide-button#next-slide {
  right: -25px;
}
.slider-wrapper .image-list {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 18px;
  font-size: 0;
  list-style: none;
  margin-bottom: 30px;
  overflow-x: auto;
  scrollbar-width: none;
}


.slider-wrapper .image-list::-webkit-scrollbar {
  display: none;
}
.slider-wrapper .image-list .image-item {
  max-width: 325px;
  height: 100%;
  object-fit: contain;

}
.container .slider-scrollbar {
  height: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}
.slider-scrollbar .scrollbar-track {
  background: #ccc;
  width: 100%;
  height: 2px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  position: relative;

}
.slider-scrollbar:hover .scrollbar-track {
  height: 4px;
}
.slider-scrollbar .scrollbar-thumb {
  position: absolute;
  background: #000;
  top: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  cursor: grab;
  border-radius: inherit;
}
.slider-scrollbar .scrollbar-thumb:active {
  cursor: grabbing;
  height: 8px;
  top: -2px;
}
.slider-scrollbar .scrollbar-thumb::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  bottom: -10px;
}
/* Styles for mobile and tablets */
@media only screen and (max-width: 1023px) {
  .slider-wrapper .slide-button {
    display: none !important;
  }
  .slider-wrapper .image-list {
    gap: 10px;
    margin-bottom: 15px;
    scroll-snap-type: x mandatory;
  }
  .slider-wrapper .image-list .image-item {
    width: 280px;
    height: 380px;
  }
  .slider-scrollbar .scrollbar-thumb {
    width: 20%;
  }
}
  .cta-button{
  position: relative;
  padding: 1rem 2rem;
  font-size: 2rem;
  font-weight: 600;
  color: white;
  background: none;
  border: 2px solid rgb(215, 75, 19);
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 30px;
   box-shadow: 2px 2px 4px rgba(48, 27, 2, 0.404); 
  color: rgb(46, 21, 3);
}
.cta-button:hover{
  cursor: pointer;
  background-color: rgb(215, 75, 19);
  color: whitesmoke;

}
@media(max-width: 600px){
  .cta-button{
    font-size: 1em;
    padding: 2px;
  }
}
.liquid {
  background: linear-gradient(rgb(215, 75, 19) 0 0) no-repeat calc(200% - var(--p, 0%))
    100% / 200% var(--p, 0.2em);
  transition: 0.2s var(--t, 0s),
    background-position 0.3s calc(0.3s - var(--t, 0s));
}

.liquid:hover {
  --p: 100%;
  --t: 0.3s;
  color: #fff;
}
.welcome{
  background-image: url(/thumb/LandingP/HG_Filmposter.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  height: 500px;
  overflow-x: hidden;
}
.headline{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  line-height: 65px;
  height: 300px;
  padding-bottom: 0px;
  padding-top: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  justify-content: center;

  flex-wrap: nowrap;
  width: 100%;
}

.headline #best0{
  color: rgba(255, 153, 0, 0.863);
   text-shadow: 3px 4px #000000b6;
   font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif Georgia, 'Times New Roman', Times, serif;
font-size: 4em;
}
@media (max-width: 600px){
.headline #best0{
  font-size: 2em;
}
}
