

/* Startbild */


.hero{
    display: none;
}

.hero__img{
    width: 100%;
    height: 100%;
    display: inline;
}


.title__products{
  position: relative;
  top: 10px;
  width: 100%;
  text-align: center;
  font-size: var(--size-md);
}

.title__products:before {
  content: "";
  display: block;
  width: 130px;
  height: 2px;
  position: absolute;
  background: var(--clr-red);
  right: 0px;
  top: 50%;
  max-width: 200px;
 }
 .title__products:after {
  content: "";
  display: block;
  width: 130px;
  height: 2px;
  position: absolute;
  background: var(--clr-red);
  left: 0px;
  top: 50%;
  max-width: 200px;
 }

.hero__title{
 color: var(--clr-light);
 font-size: var(--size-2xl);
 letter-spacing: 0.05em;
 position: absolute;
 width: 90%;
 text-align: center;
 /* font-family: "sacramento"; */
}



/* Reels */




.newspaper{
 display: none;
}

.about{
 justify-content: center;
 align-content: center;
  display: table-column;
  width: 100%;
  /* border: 1px solid var(--clr-green); */
}

.reelinfos{
  font-size: var(--size-base);
  width: 100%;
  padding: 50px 40px;
}

  .reelcontent {
    position: relative;
  }
  
  .reel-video {
    width: 80%;
    max-width: 350px; 
    /* height: auto;  */
    aspect-ratio: 9 / 16; /* Hält das Hochformat */
    border-radius: 10px; 
    display: block;
    margin: 10px auto;
    cursor: pointer;
  }

  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--clr-red);
    color: var(--clr-light);
    border: none;
    border-radius: 35%;
    width: 60px;
    height: 50px;
    font-size: 22px;
    cursor: pointer;
    display: block;
}




/* Slider */



.slider{

  display: none;
}
 .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
  }
  
  section .card .cardimg{
    height: 100%;
    width: 100%;
    border-radius: 50%;
    padding:0.5px;
    
  }
  
  section  .card .cardimg img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 9.5%;
    border: 9px solid var(--clr-light);
    
  }
  
  .card{
    position: relative;
    background: var(--clr-red);
    border-radius: 10%;
    margin: 0;
    box-shadow: 0 px 10px ;
    width: 200px;
  }
  
  .card .card-content{
    padding: 1px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .card .button{
    position: absolute;
    top: 78%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
  }
  
  .card .button button{
   background: transparent;
   backdrop-filter: blur(20px);
    outline: none;
    border: 1px solid var(--clr-light);
    color: var(--clr-light);
    padding: 4px 22px;
    border-radius: 20px;
    font-size: 24px;
    transition: all 0,3s ease;
  }
  
  .button button:hover{
    background-color: var(--clr-light);
    color: var(--clr-red);
    border: 2px solid var(--clr-red);
    cursor: pointer;
  }

  .swiper-pagination {
    position: relative;
    
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    margin: -10px;
    
  }
  
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    opacity: 1;
    color: var(--clr-red);
  }

  .swiper-navtn{
    color: var(--clr-red);
    
  }



 

   
  







   /* XS */

   @media (min-width: 475px) {
    .containerlayout{
      width: 100%;
    }
}
  
  
  
  /* SM */
  
  @media (min-width: 640px) {
  .containerlayout{
    max-width: 640px;
  }
  }
  
  /* MD */
  
  @media (min-width: 768px) {
    .containerlayout{
      max-width: 768px;
    }

    .hero{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
}
.newspaper{
  border-top: 2px solid var(--clr-red);
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding-top: 1%;
  /* border: 1px solid var(--clr-green); */
}
.slider{
    display: flex;

  position: relative;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 40px;
}
 .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
  }
  
  section .card .cardimg{
    height: 100%;
    width: 100%;
    border-radius: 50%;
    padding:0.5px;
    
  }
  
  section  .card .cardimg img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 9.5%;
    border: 9px solid var(--clr-light);
    
  }
  
  .card{
    position: relative;
    background: var(--clr-red);
    border-radius: 10%;
    margin: 0;
    box-shadow: 0 px 10px ;
    width: 200px;
  }
  
  .card .card-content{
    padding: 1px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .card .button{
    position: absolute;
    top: 78%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
  }
  
  .card .button button{
   background: transparent;
   backdrop-filter: blur(20px);
    outline: none;
    border: 1px solid var(--clr-light);
    color: var(--clr-light);
    padding: 4px 22px;
    border-radius: 20px;
    font-size: 24px;
    transition: all 0,3s ease;
  }
  
  .button button:hover{
    background-color: var(--clr-light);
    color: var(--clr-red);
    border: 2px solid var(--clr-red);
    cursor: pointer;
  }

  .swiper-pagination {
    position: relative;
    
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    margin: -10px;
    
  }
  
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    opacity: 1;
    color: var(--clr-red);
  }

  .swiper-navtn{
    color: var(--clr-red);
    
  }



    .hero__title{
      font-size: var(--size-5xl);
     }
     .title__products{
      top: 15px;
      font-size: var(--size-xl);
    }
    .title__products:before {
      width: 660px;
      max-width: 310px;
     }
     .title__products:after {
      width: 660px;
      max-width: 310px;
     }

    
    .reel-video {
      width: 100%;
      max-width: 350px; 
      height: auto; 
      aspect-ratio: 9 / 16; /* Hält das Hochformat */
      border-radius: 10px; 
      display: block;
      margin: 10px auto;
    }
    .about{
       display: flex;
     }
     .reelinfos{
      font-size: var(--size-base);
      width: 100%;
      max-width: 450px;
      padding: 90px 50px;
      margin-right: 150px;
    }
  }
  
  /* LG */
  
  @media (min-width: 1024px) {
    .containerlayout{
      max-width: 1024px;
    }
    .section {
      margin-top: 2rem;
    }
    
    .hero__title{
      font-size: var(--size-6xl);
     }
     .title__products{
      top: 20px;
      font-size: var(--size-2xl);
    }
    .title__products:before {
      width: 660px;
      max-width: 420px;
     }
     .title__products:after {
      width: 660px;
      max-width: 420px;
     }
    
  
  }
  
  /* XL */
  
  @media (min-width: 1280px) {
    .containerlayout{
      max-width: 1280px;
    }
    .section {
      margin-top: 2rem;
    }
    
    .hero__title{
      font-size: var(--size-7xl);
     }
     .title__products{
      font-size: var(--size-2xl);
    }
    .title__products:before {
      width: 660px;
      max-width: 520px;
     }
     .title__products:after {
      width: 660px;
      max-width: 520px;
     }
    
  }
  
  /* 2XL */
  
  
  @media (min-width: 1536px) {
    .containerlayout{
      max-width: 1536px;
    }
    .section {
      margin-top: 3rem;
    }

    .hero__title{
      font-size: var(--size-8xl);
     }
     .title__products{
      top: 25px;
      font-size: var(--size-3xl);
    }
    .title__products:before {
      width: 660px;
      height: 2px;
      max-width: 700px;
     }
     .title__products:after {
      width: 660px;
      height: 2px;
      max-width: 700px;
     }
  } 