
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter-VariableFont_opsz,wght.ttf') format('truetype');
}

.underlined{
  text-decoration-thickness: from-font;
}

body{
  background: #fff;
  font-size: 16px;
}

body, h1, h2, h4, h5, h6, p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}



body, p {
  font-family: 'Inter', sans-serif;
  /*font-family: 'Open Sans', sans-serif;*/
 
  font-weight: 300;
  /*line-height: 1.5;*/
  /*margin: 0 auto 1rem auto;*/
   font-size: 1.1rem;
  line-height: 25px;
  letter-spacing: -0.015rem;

}

.project-desc {

  font-weight: 300;
  font-size: 1.2rem;
  line-height: 25px;
}

.project-desc {

  font-weight: 300;
  font-size: 1.2rem;
  line-height: 25px;
}

.text-cast {
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 25px;
}

.navbar-default{
  height: 60px;
}

.navbar-nav > li > a{
  line-height: 30px;
}

.navbar-default .navbar-nav {
  float: right;
}


.navbar-default .navbar-brand, .navbar-default .navbar-nav>li>a, .navbar-default .navbar-text {
  color: rgba(0, 0, 0, .8);
}

.nav .highlighted-nav {
  background: #3095aa;
  color: #fff;
  border-radius: 12px;
  padding: 5px 10px;
}

.nav .highlighted-nav:hover {
  background: #9e3462;
}



@media (max-width: 767px) {
  .navbar-nav {
    padding-bottom: 15px;
  }
}

/*
.navbar-inverse {
  position: fixed !important;
  top: 0;
  z-index: 99999;
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  background: #282828;
  -webkit-transition: .2s all ease;
  -moz-transition: .2s all ease;
  -o-transition: .2s all ease;
  -ms-transition: .2s all ease;
  transition: .2s all ease;
}*/

.videoSectionMobile {
  position: relative;
  padding-bottom: 125%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}
.videoSectionMobile iframe,
.videoSectionMobile object,
.videoSectionMobile embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.buttonsPortofolio
{
	position:relative;

}

.intention-filter-project-inner img,
.category-filter-project-inner img{
  width: 320px;
  height: 174px;
  border-radius: 12px;
}

.intention-filter-project,
.category-filter-project{
  width: 320px;

  border: 0;
  position: relative;
  display: inline-block;
  margin: 10px;
  vertical-align: top;
  /*overflow: hidden;*/
  /* box-shadow: 0 0 10px rgba(0,0,0,0.2); */ 
}

a.category-filter-project-inner, a.intention-filter-project-inner {
  display: inline-grid;
}

.category-filter-title-container{
  height: 70px;
}

a:hover .category-filter-title, a:hover .category-filter-subtitle{
  text-decoration: none;
  color: #000;
}

.category-filter-title, .category-filter-subtitle{
  text-align: left;
  color: #000;
  font-size: 15px;
  line-height: 23px;

}

.category-filter-title{
  color: #000;
}

.category-filter-subtitle{
  color: #919191;
}


.intention-filter-project:hover,
.category-filter-project:hover{
  /* box-shadow: 0 0 12px rgba(0,0,0,0.8); */ 
  cursor: pointer;
}

.intention-filter-overlay{
  opacity: 0;
  background: rgba(0,0,0,0.35);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.1s;
}

.intention-filter-project:hover .intention-filter-overlay{
  opacity: 1;
}

.intention-filter-background{
  xbackground: #2d2d2d;
}

.contact-container {
  display: grid;
  grid-template-columns: auto auto;
  gap: 50px;
  align-items: center;
  justify-content: center;
}

.contact-left {
  display: grid;
  gap: 5px;
  justify-items: end;
  text-align: right;
}

.contact-right {
  display: grid;
  gap: 5px;
  justify-items: start;

}

.contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 50px;   
}

.arrow {
  font-size: 40px;
  opacity: 0;
  animation: slide-in 0.5s forwards;
  transform: rotate(0deg); /* Standard: Pfeil nach rechts */
}

.footer-arrow {
  font-size: 20px;
  opacity: 0;
  animation: slide-in 0.5s forwards;
  transform: rotate(90deg); /* Standard: Pfeil nach unten */
}

.text {
  opacity: 0;
  animation: slide-in 1s forwards;
}

@keyframes slide-in {
  0% { transform: translateX(-30px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.callus {
  font-size: 20px;
  text-decoration: none;
  color: blue;
  font-weight: bold;
}




/* MOBILE VERSION */
@media (max-width: 768px) {
  .contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }
  


  @keyframes slide-in-mobile {
    0% { transform: translateY(-20px) rotate(90deg); opacity: 0; }
    100% { transform: translateY(0) rotate(90deg); opacity: 1; }
  }


  .contact-left, .contact-right {
    display: contents; /* Löst die starre Reihenfolge auf */
  }

  .contact-row:nth-child(1) {
    order: 1; /* "Ruf uns an!" */
  }

  .phone-link {
    order: 2;
  }

  .contact-row:nth-child(2) {
    order: 3; /* "Oder schreibe uns eine Email!" */
  }

  .email-link {
    order: 4;
  }

  .arrow, .email-arrow {

    font-size: 25px;
    animation: slide-in-mobile 0.5s forwards;
  }
}

.contact-button-container{
  padding: 15px 0;
  margin: 0 10px;
}

.contact-button-container .btn{
  font-size:30px;
  font-style:normal;
  color:#fff;
  background-color:#666;
  border:0;
  padding:10px 25px;
  white-space: normal;
}

@media (max-width: 767px){
    .contact-button-container .btn{
        font-size:26px;
    }
}

body{
  padding-top: 60px;
  font-size: 16px;
}

.category-content{
  margin-top: 20px;
  margin-bottom: 20px;
}

.category-header{
  background:#ccc;
  position: relative;
  margin: -2px;
}

.category-header-insert{
  width: auto;
  position: absolute;
  left: 10%;
  bottom: 120px;
  /*background: rgba(0,0,0,0.7);*/
  color: #fff;
}

.category-header-insert .title{
  font-size: 62px;
  font-style: normal;
  font-weight: 600;
  color: #fff;
  line-height: 70px;
  /*text-shadow: 0 0 1px rgb(0 0 0 / 85%);*/
}

.category-header-insert .subtitle{
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  color: #fff;
  text-shadow: 0 0 1px rgb(0 0 0 / 85%);
  line-height: 34px;
}

.category-header video{
  width: 100%;
  position: initial;
  max-height: calc(100vh - 60px);
  object-fit: cover;
  object-position: center;
}

@media (min-width: 768px) {
    .category-header video{
        max-height: calc(100vh - 150px);
    }
}



/* BTS */

.bts-tile-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 1fr;
  grid-gap: 10px;
}

.bts-tile-container .tile {
  position: relative;
  padding-bottom: 75%; /* Makes the div square */
  overflow: hidden;
  background-size: cover;
  background-position: center;
  grid-column: span 2;
  grid-row: span 2;
}

.bts-tile-container .tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 75%;
}

.bts-tile-container .tile.large {
  grid-column: span 3;
  grid-row: span 3;
}


/* Projects scroller */

.fm-project-scroller {
  position: relative;
  width: 100vw;
  overflow: hidden;
  z-index: 1;
  margin: 0;
  padding: 0;
}



.m-scroll-auto {
  display: flex;
  animation: scrollText 40s linear infinite;
  will-change: transform;
  width: max-content; /* Verhindert Springen */
}




@keyframes scrollText {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-75%); /* Stelle sicher, dass es nur 25% scrollt */
  }
}


.m-scroll {
  overflow: hidden;
  height: 100%;
  white-space: nowrap;
  animation-name: scrollText;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 100s;
  /*40s infinite linear*/
  margin: 0;
  /*font-size: 0;*/
  display: flex;
  justify-content: space-between;
  width: fit-content;
  padding: 10px;
}

.m-scroll:hover {
  /*animation-duration: 500s;*/
  animation-play-state: paused;
}



.m-scroll-start-when-visible{
  animation-play-state: paused;
}


.m-scroll-manual{
  animation:none;
  transition-duration: 0.5s;
  transition-property: transform;
}

@media (max-width: 767px) {
  .m-scroll-manual{
    padding: 0;
  }
}

/*custom swiper.js einstellung */

.swiper-container {
	width: 100%;
	max-width: 100%;
	margin: auto;
	overflow: hidden;
}

.swiper-slide img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

.swiper-wrapper {
  transition-timing-function: linear !important;
  will-change: transform; /* Helps with smooth rendering */
}




.scenario-swiper-container {
    width: 800px;
    height: 640px; /* Adjust the container width to suit your design */
    margin: auto;
    background-color: white; /* Set black background */
	align-content: center;
}

.scenario-swiper-wrapper {
    transition-timing-function: ease !important;
    will-change: transform; /* Helps with smooth rendering */
    align-content: center;

}
.scenario-swiper-slide {
    display: flex;
    /*justify-content: space-between; /* Ensure space between images */
    align-items: center;
    align-content: center;

}

.scenario-swiper-slide img {
    max-width: 80%;  /* The inner element can stretch up to the container's width */
    max-height: 100%; /* The inner element can stretch up to the container's height */
    width: auto; /* Let the width adjust naturally based on the aspect ratio */
    height: auto; /* Let the height adjust naturally based on the aspect ratio */
    border-radius: 10px;
  

}

/* Customize the color of the previous button */
.swiper-button-prev {
    color: #000 !important;  /* Change to your preferred color */
    border-radius: 50%; /* Optional: Make it circular (or any shape) */
    padding: 10px; /* Optional: Adjust size */
    font-size: 20px; /* Adjust size of the icon inside the button */
}

/* Customize the hover state of the previous button */
.swiper-button-prev:hover {
    color: #3095aa !important; /* Change to the color you want on hover */
    transform: scale(1.1); /* Optional: Add a scaling effect on hover */
    transition: all 0.3s ease; /* Optional: Smooth transition for hover effects */
}

/* Customize the color of the next button */
.swiper-button-next {

    color: #000 !important;  /* Change to your preferred color */
    border-radius: 50%; /* Optional: Make it circular (or any shape) */
    padding: 10px; /* Optional: Adjust size */
    font-size: 20px; /* Adjust size of the icon inside the button */
}

/* Customize the hover state of the next button */
.swiper-button-next:hover {
    color: #3095aa !important; /* Change to the color you want on hover */
    transform: scale(1.1); /* Optional: Add a scaling effect on hover */
    transition: all 0.3s ease; /* Optional: Smooth transition for hover effects */
}

@media (max-width: 767px){
	 .scenario-swiper-container {
		width: 360px;
		height: 400px;
		/*margin: auto;
		background-color: white; /* Set black background */
	}
	.scenario-swiper-slide img {
    max-width: 100%; 
  

	}
}


.swiper-pagination-bullet {
    color: black; /* Black color for the bullets */
}



.swipe-scroller-container{
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: hidden;
}

.swipe-scroller-container::-webkit-scrollbar{
  display: none;
}

.swipe-scroller-container-clients {
    overflow-x: scroll;
    white-space: nowrap;
    display: flex;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    position: relative;
    user-select: none; /* Verhindert Textauswahl */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.swipe-scroller-container-clients img {
    pointer-events: none; /* Verhindert das Anklicken & Ziehen der Bilder */
}

/* Entfernt Scrollbalken in Chrome/Safari */
.swipe-scroller-container-clients::-webkit-scrollbar {
    display: none;
}

.swipe-scrollerX {
  height: 100%;
  white-space: nowrap;
  animation:none;
  transition-duration: 0.5s;
  transition-property: transform;
  margin: 0;
  display: flex;
  justify-content: space-between;
  width: fit-content;
}

.swipe-scroller {
  height: 100%;
  white-space: nowrap;
  animation: none;
  transition-duration: 0.5s;
  transition-property: transform;
  margin: 0;
  display: flex;
  justify-content: center;
  width: fit-content;
  min-width: 100%;
}

.swipe-scroller-item{
  display: inline-block;
}

.swipe-scroller-center-snap{
  scroll-snap-align: center;
}

.swipe-scroller-end-snap{
  scroll-snap-align: end;
}

.swipe-scroller-start-snap{
  scroll-snap-align: start;
}

@media(min-width: 768px){
  .swipe-scroller-center-nosnap-desktop{
    scroll-snap-align: none;
  }
}

@media (max-width: 767px){
  .swipe-scroller{
    padding: 0;
  }
}


.project-videos-item{
  width: 70vw;
  /*max-width: 1200px;*/
  aspect-ratio: 16 / 9;
}

.project-videos-item:first-child{
  margin-left: 15vw;
}

.project-videos-item:last-child{
  margin-right: 15vw;
}


@media (max-width: 767px){
  .project-videos-item{
    width: 90vw;

  }

  .project-videos-item:first-child{
    margin-left: 5vw;
  }

  .project-videos-item:last-child{
    margin-right: 5vw;
  }
}



.project-videos-item{
  padding: 4px;
}


.project-videos-item iframe{
  width: 100%;
  height: 100%;
}



.round-button{
  border-radius: 50%;
  background: #f8f8f8;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

.round-button:hover, .round-button:active, .round-button:focus{
  color: #3095aa;
}


.fm-project-scroller .item {
  display: inline-block;
  margin: 0 20px 0 0;
  padding: 0;
  color: white;
  width: 320px;
  height: 234px;
  float: left;
}

@media (max-width: 767px) {
  .fm-project-scroller .item{

    height: 200px;
    width: 250px;
  }
}


.fm-project-scroller.projects-scroller-social-media .item{
  height: 533px;
  width: 300px;
}

.fm-project-scroller.projects-alternating .item{
  margin-left: -150px;
}

.fm-project-scroller.projects-alternating .item.upper{
  margin-top: 0;
}

.fm-project-scroller.projects-alternating .item.lower{
  margin-top: 250px;
}

.fm-project-scroller.projects-scroller-social-media .item{
  height: 533px;
}

.fm-project-scroller .item a{
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center 20%;
  border-radius: 12px;
  /* box-shadow: 0 0 8px rgba(50,50,50,0.5); */ 
  margin-left: 20px;
  position: relative;
  transition: box-shadow 0.2s;
}

.fm-project-scroller .item .below-title{
  margin-left: 20px;
  margin-top: 6px;
  width: 300px;
}

.fm-project-scroller .item .below-title .title{
  font-size: 18px;
  color:#000;
  overflow: hidden;
  text-overflow: fade;
}




.fm-project-scroller .item .below-title .subtitle{
  font-size: 16px;
  color: #919191;
}


@media (max-width: 767px) {
  .fm-project-scroller .item .below-title .title{
    font-size: 15px;
  }


  .fm-project-scroller .item .below-title .subtitle{
    font-size: 15px;
  }
}


.fm-project-scroller.with-title-below .item a{
  height: calc(100% - 60px);
}

.fm-project-scroller .item a:hover{
  /* box-shadow: 0 0 10px rgba(50,50,50,0.5); */ 
  transition: box-shadow 0.2s;
  cursor: pointer;
  /*filter: brightness(0.8);*/
}

@media (max-width: 767px) {
  .intention-projects{
    text-align: center;
  }
}

.fm-project-scroller .item, .intention-projects .intention-filter-project a{
  position: relative;
}

.fm-project-scroller .item a::after, .intention-projects .intention-filter-project a::after{
  content: "Jetzt ansehen";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: rgba(0,0,0,0.7);
  opacity: 0;
  color: rgba(255, 255, 255, 0.95);
  line-height: 174px;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 767px) {
  .fm-project-scroller .item a::after, .intention-projects .intention-filter-project a::after{
    line-height: 165px;
    font-size: 24px;
  }
}


.fm-project-scroller .item a:hover::after, .intention-projects .intention-filter-project a:hover::after{
  opacity: 1;
  transition: opacity 0.2s;
}


.scroller-on-dark .fm-project-scroller .item .below-title .title{
    color: #fff;
}



/*
@keyframes scrollText {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

.m-scroll:hover, .m-scroll.paused{
  animation-play-state: paused;
}
*/

/* team table */



.team-table img{
  border-radius: 10%;
}

.team-table .team-item{
  min-height: 420px;
}

/* Startpage carousel */

.fm-carousel video{
  position: inherit;
  width: 100%;
}

.fm-carousel{
  width: 100vw;
  overflow: hidden;
  z-index: 1;
  margin: 0;
  padding: 0;
}

.fm-carousel-scroll {
  overflow: hidden;
  height: 100%;
  white-space: nowrap;
  animation-name: scrollCarousel;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 30s;
  /*40s infinite linear*/
  margin: 0;
  font-size: 0;
  display: flex;
  justify-content: space-between;
  width: fit-content;
  padding: 10px;
  margin-left: -42%;
}

.fm-carousel-scroll:hover{
  animation-play-state: paused;
}

.fm-carousel-scroll:hover .fm-carousel-page{
  animation-play-state: paused;
  filter: brightness(1.1);
  cursor: pointer;
}


.fm-carousel-page{
  display: inline-block;
  position: relative;
}

.fm-carousel-page:nth-child(1){
  animation-name: scrollCarouselFade1;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 30s;
}

.fm-carousel-page:nth-child(2){
  animation-name: scrollCarouselFade2;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 30s;
}

.fm-carousel-page:nth-child(3){
  animation-name: scrollCarouselFade3;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 30s;
}

.fm-carousel-page:nth-child(4){
  animation-name: scrollCarouselFade1;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 30s;
}

.fm-carousel-page:nth-child(5){
  animation-name: scrollCarouselFade2;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 30s;
}

.fm-carousel-page:nth-child(6){
  animation-name: scrollCarouselFade3;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 30s;
}

.fm-carousel-page.video-playing .fm-carousel-caption,
.fm-carousel-page.video-playing .fm-carousel-buttons{
  display: none;
}

.fm-carousel-caption{
  position: absolute;
  top: 20px;
  left:  0;
  width: 100%;
  text-align: center;
}

.fm-carousel-buttons{
  text-align: left;
  position: absolute;
  bottom: 50px;
  left:  10%;
}

.fm-carousel-caption-title{
  font-size: 62px;
  font-style: normal;
  font-weight: 600;
  color: #fff;
  line-height: 70px;
  text-shadow: 0 0 4px rgba(0,0,0,0.3);
}


.fm-carousel-caption-subtitle{
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  color: #fff;
  text-shadow: 0 0 4px rgba(0,0,0,0.3);
}

a.fm-carousel-play-video{
  background: rgba(80,80,80,1);
  border:2px solid #ddd;
  border-radius: 6px;
  padding: 8px 14px;
  color: #ddd;
  text-decoration: none;
  font-size: 20px;
}

a.fm-carousel-play-video:hover{
  background: rgba(80,80,80,0.5);
}

a.fm-carousel-goto-page{
  background: rgba(80,80,80,0.5);
  border:2px solid #ddd;
  border-radius: 6px;
  padding: 8px 14px;
  color: #ddd;
  text-decoration: none;
  font-size: 20px;
  margin-left: 10px;
}

a.fm-carousel-goto-page:hover{
  background: rgba(80,80,80,0);
}


@media (min-width: 768px) {
  .fm-carousel-page {
    width: 750px
  }
}

@media (min-width: 992px) {
  .fm-carousel-page {
    width: 970px
  }
}

@media (min-width: 1200px) {
  .fm-carousel-page {
    width: 1170px
  }
}


@keyframes scrollCarousel {
  0% {
    transform: translateX(-0%);
  }
  32% {
    transform: translateX(-0%);
  }
  34% {
    transform: translateX(-16.5%);
  }
  65% {
    transform: translateX(-16.5%);
  }
  67% {
    transform: translateX(-33%);
  }
  99% {
    transform: translateX(-33%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollCarouselFade1  {
  0% {
    opacity: 0.2;
  }
  32% {
    opacity: 0.2;
  }
  65% {
    opacity: 0.2;
  }
  67% {
    opacity: 1;
  }
  98% {
    opacity: 1;
  }
}

@keyframes scrollCarouselFade2  {
  0% {
    opacity: 1;
  }
  32% {
    opacity: 1;
  }
  34% {
    opacity: 0.2;
  }
  98% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}

@keyframes scrollCarouselFade3  {
  0% {
    opacity: 0.2;
  }
  32% {
      opacity: 0.2;
  }
  34% {
      opacity: 1;
  }
  65% {
    opacity: 1;
  }
  67% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.2;
  }
}


/* rating */

.rating-card{
  width: 400px;
  min-height: 400px;
  background: #f8f8f8;
  /* box-shadow: 0 0 5px rgba(0,0,0,0.3); */ 
  float:left;
  margin: 10px;
  position: relative;
  padding: 15px;
  padding-bottom: 50px;
  border-radius: 12px;
  max-width: calc(100vw - 20px);
}

.rating-card .rating-title{
  margin-top: 0;
}

.rating-name{
  font-weight: bold;
}

.rating-icon{
  float: left;
  margin-right: 8px;
  width: 64px;
  height: 64px;
  margin-top: 8px;
}

.rating-card .rating-text{
  height: 120px;
  white-space: normal;
  text-align: justify;
  hyphens: auto;
}

.stars-rating{
  color:#fdd562;
  margin-top: -3px;
  height: 20px;
  line-height: 20px;
  text-shadow: 0 0 0px rgba(0,0,0,0.4);
}

.rating-card img{
  border-radius: 50%;
}

.rating-card .rating-link{
  text-decoration: none;
  color: #f1f1f1;
  background: #3095aa;
  display: inline-block;
  font-weight: normal;
  font-size: 16px;
  padding: 5px 10px;
  position: absolute;
  bottom: 10px;
  right: 5px;
  margin: 5px 5px 0 auto;
  border-radius: 7px;
}

.rating-card .rating-link:hover{
  background: #9e3462;
}


/* logo slider box */

    .logo-slider-box {
        width: 200px; /* 500 / 2 */
        height: 100px; /* 240 / 2 */
        object-fit: contain;
    }

    .logo-card {
        width: 170px;
        min-height: 100px;
        background: #ffffff;
        float: left;
        margin: 10px;
        position: relative;
        padding: 15px;
        padding-bottom: 50px;
        max-width: calc(100vw - 20px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

/* stuff */

.scroll-up{
  border-radius: 50%;
}

.round-square-box{
    width: 64px;
    padding-left: 24px;
    border-radius: 50%;
}

@media (max-width: 991px){
    .round-square-box{
        margin:auto;
    }
    .footer-contact{
      text-align: left;
    }
}




/* */

h1{
  font-size: 4.5rem;
  font-weight: 600;
  letter-spacing: -1.5px;
  line-height: 1.2;
}


h2{
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -1.3px;
  line-height: 1.2;
}

h3{
  font-size: 2.0rem;
  font-weight: 600;
  letter-spacing: -1.0px;
  line-height: 1.1;
}

h4{
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.7px;
  line-height: 1.0;
}



html{
  /*overflow: hidden;*/
  /*height: 100vh;*/
}

body{
  /*overflow-y: scroll;*/
  /*height: 100vh;*/
  /*scroll-snap-type: y proximity;*/
  /*scrollbar-track-color: transparent;
  scrollbar-width: thin;*/

}

.fm-startpage-category-items{

}

.scroll-snapper-center{
  scroll-snap-align: center;
}


.fm-startpage-category-item{
  position: relative;
  scroll-snap-align: end;
}

.fm-startpage-category-item{
  max-height: calc(86vh - 50px);
  overflow: hidden;
}

.fm-startpage-category-item video{
  position: inherit;
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: calc(100vh - 50px);

  height: auto;
  aspect-ratio: 16 / 9;
  max-height: calc(100vh - 150px);
  display: block;

}




@media (max-width: 767px) {
  .fm-startpage-category-item{
    /*height: calc(100vh - 50px);*/
    height: fit-content;
  }
  .fm-startpage-category-item video{
    /*margin-left: -400px;
    height: 100%;*/
    height: auto;
    aspect-ratio: 4 / 5;
    max-height: calc(100vh - 50px);
    width: 100%;
    object-fit: cover;
    object-position: center;
  }
  h1 {
    font-size: 2.75rem;
  }
  h2 {
    font-size: 2.0rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  
  .text-special {
    font-size: 2.75rem;
   }
}

.more-text {
    display: none;
    margin-top: 10px;
}

.toggle-btn {
    background-color: #3095aa;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 5px;
}

.toggle-btn:hover {
    background-color: #9e3462;
}
.dots {
    display: inline;
}



.header-video-overlay{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, transparent 0%, transparent 50%, #00000099 100%);
}
/*
@media (min-width: 768px) {
  .fm-startpage-category-item .elements-container{
    left: 50%;

    margin-left: -375px;
  }
}
*/

/*
@media (min-width: 992px) {
  .fm-startpage-category-item .elements-container{
    left: 50%;
    margin-left: -485px;
  }

}
@media (min-width: 1200px) {
  .fm-startpage-category-item .elements-container{
    left: 50%;
    margin-left: -585px;
  }
}
*/



.elements-container{
  width:100%;
  position: absolute;
  bottom: 20px;
  height: auto;

  margin: 0 auto;
  left: 0;
}

@media (min-width: 992px) {
  .elements-container {
    max-width: 970px;
    margin-left: -475px;
    left: 50%;
  }
}


@media (min-width: 1200px) {
  .elements-container {
    max-width: 1170px;
    margin-left: -575px;
    left: 50%;
  }
}



.fm-startpage-category{
  width: 100vw;
  overflow: hidden;
  z-index: 1;
  margin: 0;
  padding: 0;
}

.fm-startpage-category-scroll {
  overflow: hidden;
  height: 100%;
  white-space: nowrap;
  animation-name: scrollCarousel;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 30s;
  /*40s infinite linear*/
  margin: 0;
  font-size: 0;
  display: flex;
  justify-content: space-between;
  width: fit-content;
  padding: 10px;
  margin-left: -42%;
}

.fm-startpage-category-scroll:hover{
  animation-play-state: paused;
}

.fm-startpage-category-scroll:hover .fm-startpage-category-page{
  animation-play-state: paused;
  filter: brightness(1.1);
  cursor: pointer;
}


.fm-startpage-category-page{
  display: inline-block;
  position: relative;
}

.fm-startpage-category-page:nth-child(1){
  animation-name: scrollCarouselFade1;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 30s;
}

.fm-startpage-category-page:nth-child(2){
  animation-name: scrollCarouselFade2;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 30s;
}

.fm-startpage-category-page:nth-child(3){
  animation-name: scrollCarouselFade3;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 30s;
}

.fm-startpage-category-page:nth-child(4){
  animation-name: scrollCarouselFade1;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 30s;
}

.fm-startpage-category-page:nth-child(5){
  animation-name: scrollCarouselFade2;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 30s;
}

.fm-startpage-category-page:nth-child(6){
  animation-name: scrollCarouselFade3;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 30s;
}

.fm-startpage-category-page.video-playing .fm-startpage-category-caption,
.fm-startpage-category-page.video-playing .fm-startpage-category-buttons{
  display: none;
}

/*
.fm-startpage-category-caption{
  position: absolute;
  top: 20px;
  left:  0;
  width: 100%;
  text-align: center;
}
 */

.fm-startpage-category-caption{
  bottom: 120px;
  left:  10%;
  /*width: 100%;*/
  text-align: left;
  padding-left: 10px;
}

@media (min-width: 768px) {
    .fm-startpage-category-caption{
        margin-bottom: 10px;
    }
}


.fm-startpage-category-buttons{
  text-align: left;
}

@media (max-width: 767px) {
  .fm-startpage-category-caption{
    left: 5px;
    bottom: 65px;
  }

  .fm-startpage-category-buttons{
    text-align: left;
    width: 100%;
  }
}

@media (max-width: 405px) {
  .fm-startpage-category-caption{
    bottom: 110px;
  }
}

.fm-startpage-category-caption-title{
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -1.3px;
  line-height: 1.2;
  font-style: normal;
  color: #fff;

  /*text-shadow: 0 0 1px rgb(0 0 0 / 85%);*/
}





.fm-startpage-category-caption-subtitle{
  font-weight: 575;
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: -0.8px;
  
  color: #fff;
  margin-top:10px;
  margin-bottom:10px;
  /*text-shadow: 0 0 1px rgb(0 0 0 / 85%);*/
}

@media (max-width: 767px) {
  .fm-startpage-category-caption-title{
    font-size: 2.0rem;
    line-height: 32px;
    letter-spacing: -1px;
  }

  .fm-startpage-category-caption-subtitle{
    margin-top:5px;
    font-size: 1.25rem;
  }
}

a.fm-startpage-category-play-video{
  background: rgba(80,80,80,1);
  border:2px solid #ddd;
  border-radius: 6px;
  padding: 8px 14px;
  color: #ddd;
  text-decoration: none;
  font-size: 20px;
}

a.fm-startpage-category-play-video:hover{
  background: rgba(80,80,80,0.5);
}

a.fm-startpage-category-goto-page{
  background: rgba(80,80,80,0.5);
  border:2px solid #ddd;
  border-radius: 6px;
  padding: 6px 12px;
  color: #ddd;
  text-decoration: none;
  font-size: 20px;
  margin-left: 10px;
  display: inline-block;
  margin-top: 10px;
}

a.fm-startpage-category-goto-page:last-child{
  margin-right: 20px;
}

a.fm-startpage-category-goto-page:hover{
  background: rgba(80,80,80,0);
}



@media (max-width: 767px) {
  a.fm-startpage-category-goto-page{
    font-size: 18px;
    padding: 4px 8px;
    margin-top:8px;
  }
}


@media (min-width: 768px) {
  .fm-startpage-category-page {
    width: 750px
  }
}

@media (min-width: 992px) {
  .fm-startpage-category-page {
    width: 970px
  }
}

@media (min-width: 1200px) {
  .fm-startpage-category-page {
    width: 1170px
  }
}

.social-container img{
  width: 48px;
  height: 48px;
}

.min-height-100{
  min-height: 100px;
}


.min-height-150{
  min-height: 150px;
}


.min-height-200{
  min-height: 200px;
}

.min-height-250{
  min-height: 250px;
}

.min-height-300{
  min-height: 300px;
}
.min-height-350{
  min-height: 350px;
}

.min-height-400{
  min-height: 400px;
}
.min-height-450{
  min-height: 450px;
}

.min-height-500{
  min-height: 100px;
}
.min-height-550{
  min-height: 550px;
}

.min-height-600{
  min-height: 600px;
}


.btn.btn-primary{
  background: #3095aa;
}

.btn.btn-primary:hover{
  background: #9e3462;
}

.type-description{
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
  padding: 20px 00px;
}



.text-footer {
  font-size: 1.0rem;
  text-align: left;
  font-weight: 300;
}

.text-footer-title {
  font-size: 1.0rem;
  text-align: left;
  font-weight: 500;
}

.text-footer-left {
	text-align: left;
	}

.text-special {

  font-weight: 575;
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: -0.8px;
  margin: 0 auto 1rem auto;
  text-align: center;
  

  }

.text-special-center {
 
  font-weight: 575;
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: -0.8px;
  margin: 0 auto 1rem auto;
  text-align: center;
  }
  
  .team-text {
  line-height: 1.2;
  font-size: 0.95rem;
  }
  
  .contents-center  {
 
  align-items: center;
  text-align: center;
  }
  
  .borderino {
  border-radius: 15px;
  }
  
  .text-special-left {
 
  font-weight: 575;
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: -0.8px;
  margin: 0 auto 1rem auto;
  
  text-align: left;
  }

@media (max-width: 767px) {
  .text-special {
    font-size: 1.25rem;
   }
  p {
    font-size: 1.0rem;
    line-height: 22px;
    letter-spacing: -0.02rem;
  }
    .text-footer-left {
  text-align: left;
  }
}

.bg-dark-grey{
  background-color: #262626;
  color: #fff;
}

.bg-light-grey{
  background-color: #f2f2f2;
  color: #000;
}

.navbar-default {
  background-color: #262626;
  color: #fff;
}

.navbar-default .navbar-brand, .navbar-default .navbar-nav>li>a, .navbar-default .navbar-text{
  color: #fff;
}

.navbar-default .navbar-brand:hover, .navbar-default .navbar-nav>li>a:hover, .navbar-default .navbar-text:hover{
  color: #ddd;
}

.aspect-ratio{
  max-width: none;
}

.navbar-default .navbar-toggle{
  border: 0;
}

.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover{
  background-color: #1a1a1a;
}

.navbar-default .navbar-toggle .icon-bar{
  background-color: #fff;
}

@media only screen and (max-width: 991px) {
  .navbar-default .navbar-toggle{
    margin-top: 14px;
    margin-bottom: 14px;
  }
}

.navbar-logo-container{
  display:inline-block;
  overflow: hidden;
  height: 60px;
  padding: 18px;
}

.logo-footer {
	margin-left: -10px;
	margin-bottom: -10px;
	}

@media only screen and (max-width: 991px) {
  .navbar-nav {
    margin-top: 0;
  }
}

.navbar-header{
  padding-left: 12px;
  overflow: hidden;
  height: 60px;
}

@media(min-width: 992px) and (max-width: 1200px){
    .nav > li > a {
        padding: 15px 6px;
    }
}

.navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse{
  max-height: none;
}

.purpose-item {
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.purpose-item:hover .purpose-icon-container i {
  transform: scale(1.2); /* Skalierung des Icons beim Hover über das gesamte Element */
}

.purpose-icon-container {
  font-size: 60px;
  margin: 60px auto 0;
}

.purpose-icon-container i {
  font-size: 40px;
  color: #3095aa;
  transition: transform 0.3s ease-in-out;
}

.icon-expanded {
    color: #9e3462 !important;
}



/* Optional: Nur wenn du zusätzliche Anpassungen brauchst */
.text-content {
  transition: transform 0.7s ease-out, opacity 0.7s ease-out !important; /* Übergangseffekte können hier angepasst werden */
}




h2 {
  line-height: 40px;
}

.category-content{
  hyphens: auto;
}

.fm-cf-label{
  line-height: 64px;
  display:block;
  text-align: left;
}

.contactform #description, .contactform input, .contactform textarea {
  border: none;
  background: #f8f8f8;
  padding: 20px;
  font-weight: 100;
  font-family: inherit;
  width: 49.5%;
  margin: 10px auto;
  outline-color: #3095aa;
  border-radius: 4px;
}

.contactform textarea {
  width: 100%;
}

@media(max-width: 991px){
  .contactform #description, .contactform input, .contactform textarea {
    width: 100%;
  }

}

@media (min-width: 811px) and (max-width: 1080px) {
  /* Anpassungen für iPad 7 im Querformat */

}




.form-radio-picker label{
  background:#f8f8f8;
  border: 2px solid #f8f8f8;
  text-align: center;
  padding: 20px;
  border-radius: 4px;
  cursor: pointer;
}

.form-radio-picker input[type="radio"]:checked+label{
  font-weight: bold;
  border: 2px solid #3095aa;
  background: #3095aa;
}

.form-radio-picker input[type="radio"]{
  display: none;
}

.form-checkbox-picker{
  text-align: center;
}

.form-checkbox-picker label{
  background:#f8f8f8;
  border: 2px solid #f8f8f8;
  text-align: center;
  padding: 20px;
  border-radius: 4px;
  cursor: pointer;
  user-select: none;
  font-weight: 400;
}

.form-checkbox-picker input[type="checkbox"]:checked+label{

  border: 4px solid #3095aa;
  background: #3095aa;
  color: #fff;
}

.form-checkbox-picker input[type="checkbox"]:checked+label::after{
  content: "\e013";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: #fff;
  font-family: 'Glyphicons Halflings';
}

.form-checkbox-picker input[type="checkbox"]{
  display: none;
}

.fm-cf-sendbutton{
  background: #3095aa;
  color: #fff;
  border-radius: 4px;
}

/*
.showreel-video {
  width: 100vw;
  height: calc(100vh - 315px);
  object-fit: cover;
  object-position: center;
  scroll-padding-top: 60px;
}
*/

.showreel-video {
  height: auto;
  aspect-ratio: 4 / 5;
  /*max-height: calc(100vh - 50px);*/
  max-height: calc(90vh - 150px);
  width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}



.showreel-video-container {
  position:relative;
}

.start-video-button{
  cursor: pointer;
}

.project-video-carousel{
  position: relative;
}

.project-video-carousel{
  padding-bottom: 60px;
}

.project-video-carousel-container{
  padding-top: 60px;
}

.project-video-carousel .carousel-inner{
  /*width: calc(100% - 160px);*/
  margin: auto;
}

.project-video-carousel .carousel-control{
  width: 80px;
  background: none;
  color:#fff;
}

.showreel-video-container.video-playing .fm-startpage-category-caption{
  opacity: 0;
  transition: opacity 0.5s;
}


.carousel-indicators li{
  width: 17px;
  height: 17px;
  margin: 2px;
}

.carousel-indicators .active {
  width: 17px;
  height: 17px;
  margin: 2px;
}

.multistep-form{
  position: relative;
  height: calc(100vh - 200px);
}

.multistep-form .form-step{
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 200px);
  opacity: 0;
  z-index: -1;
  position: absolute;
}

.multistep-form .form-step .form-step-content{
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: calc(100% - 50px);
}

.multistep-form .form-step.current{
  opacity: 1;
  z-index: 1;
  transition: opacity 0.5s;
}

.multistep-form .form-step.current .form-step-content{
  top: 0;
  transition: top 0.5s;
}

.multistep-form .form-step-button-container{
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
}

.multistep-form .form-step-heading{
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}


.form-checkbox-picker label {
  background: #f8f8f8;
  border: 4px solid #fff;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  font-weight: 400;
  width: 32.0%;
  height: 200px;
  margin-top: 10px;

  position: relative;
}
#multistep-contactform label.selection-label {
  background-size: cover;
}

#multistep-contactform label.selection-label span{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;

  background: #000000a3;
  color: #fff;
  /*height: 40px;
  line-height: 40px;*/
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding-bottom:7px;
  padding-top: 7px;
}

.progress-bar{
  background-color: #3095aa;
}

.project-sm-videos-container{
  position: relative;
  padding: 0 80px;
}

.project-sm-videos-scroller{
  overflow-x: auto;
  margin: 40px 0 40px 0;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.progress-sm-videos-scroller::-webkit-scrollbar{
    display: none;
}

.project-sm-videos-scrolling{
    white-space: nowrap;
  text-align: center;
    /*display: flex;
    justify-content: space-between;*/
}

.project-sm-videos-scrolling .item{
  margin-left: 90px;
  width: 360px;
  display: inline-block;
}

iframe.vimeo-sm{
  width: 360px;
  height: 640px;
}

@media (max-width: 480px) {
  iframe.vimeo-sm {
    width: 240px;
    height: 427px;
  }

}

.project-sm-videos-container .carousel-control{
  background: none;
  z-index: 10;
  width: 80px;
}

a:focus, a:hover {
  color: #3095aa;
}

.intention-projects a:focus, .intention-projects  a:hover{
  text-decoration: none;
}


.social-media-videos-item{
  margin-left: 20px;
}

.intention-filter-widget{
  max-width: 1720px;
  margin: auto;
}

@media (max-width: 1740px){
  .intention-filter-widget{
    max-width: 1380px;
  }
}

@media (max-width: 1400px){
  .intention-filter-widget{
    max-width: 1040px;
  }
}

.callus{
  background: #f8f8f8;
  color: #000;
  border-radius: 8px;
  padding: 12px 20px;
  cursor: pointer;
  user-select: none;
  font-weight: 500;
  width: 300px;
  display: inline-block;
  text-align: center;
  margin-top: 5px;
}

.callus:hover{
  background: #3095aa;
  color: #fff;
  text-decoration: none;
}


.intention-container {
  justify-content: center;
  } 


.intention-filter-btn{
  background: #f8f8f8;
  color: #000;
  border-radius: 8px;
  padding: 12px 20px;
  cursor: pointer;
  user-select: none;
  font-weight: 500;
  width: 200px;
  display: inline-block;
  text-align: center;
  margin-top: 5px;
}

.intention-filter-btn:hover{
  background: #3095aa;
  color: #fff;
  text-decoration: none;
}

.intention-filter-picker{

  text-align: left;
  padding-left: 10px;
  justify-content: center;
}

.intention-filter-btn.active, .intention-filter-btn:active{
  background: #9e3462;
  color: #fff;
}

.social-icon {
    width: 24px;
    height: 24px;
    /*transition: filter 0.3s ease-in-out;
    filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);*/
}

.social-icon:hover {
    /*filter: invert(41%) sepia(35%) saturate(724%) hue-rotate(153deg) brightness(90%) contrast(97%);*/
}
	
.icon-spacing {
display: inline-block;
width: 3.5em; /* Größe des Icons simulieren */
height: 0em;
}

   .icon-spacing-2 {
	display: inline-block;
	width: 3.69em; /* Größe des Icons simulieren */
	height: 0em;
}

.folge-text {
	margin-left: 3.5em;
}

.category-shortdesc{
  display:none;
  text-align: left;
  margin-top: 10px;
}

.category-shortdesc.active{
  display:block;
}

@media (max-width: 1060px){
  .intention-filter-widget{
    max-width: 700px;
  }
  .intention-filter-btn{
    width: 150px;
  }

}

.film-production-steps{
  width: fit-content;
  margin: auto;
  /*border-image: linear-gradient(180deg, #014AAD, #C76BE5);
  border-image-slice: 1;*/
  border-left-width: 15px;
  border-left-style: solid;
  padding-left: 15px;
}

.film-production-steps .step{
  display: flex;
}


.film-production-steps .step-name, .film-production-steps .step-description{
  border-radius: 12px;
  background: #e7e7e7;
  height: 150px;
  width: 150px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px;
}


.film-production-steps .step:first-child .step-name, .film-production-steps .step:first-child .step-description{
  margin-top: 0;
}

.film-production-steps .step:last-child .step-name, .film-production-steps .step:last-child .step-description{
  margin-bottom: 0;
}

.horizontal-scroll-container .film-production-steps .step:last-child .step-name,
.horizontal-scroll-container .film-production-steps .step:last-child .step-description{
  margin-right: 0;
  margin-bottom: 10px;
}

.horizontal-scroll-container .film-production-steps .step:first-child .step-name,
.horizontal-scroll-container .film-production-steps .step:first-child .step-description{
  margin-left: 0;
  margin-top: 10px;
}

.horizontal-scroll-container .film-production-steps .step  .step-name,
.horizontal-scroll-container .film-production-steps .step .step-description {
  white-space: normal;
}

.film-production-steps .step-description{
  width: 300px;
  font-size: 14px;
  line-height: 1.1;
}

.film-production-steps .step-name.highlighted{
  background: linear-gradient(180deg, #3095aa, #9e3462);
  color: #fff;
}

.horizontal-scroll-container {
  overflow-x: auto;
  margin: 40px 0 40px 0;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  padding: 0 20px;
}

.horizontal-scroll-container .film-production-steps{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: max-content;
  border-left-width: 0;
  /*border-top-width: 15px;
  border-top-style: solid;
  border-image: linear-gradient(90deg, #014AAD, #C76BE5);
  border-image-slice: 1;*/
  padding-left: 0px;
  padding-top: 15px;
}

.horizontal-scroll-container .film-production-steps .step {
  flex-direction: column;
  align-items: center;
}

.horizontal-scroll-container .step-description{
  width: 150px;
  height: 300px;
}



h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
}

@media (min-width: 768px) and (max-width: 991px) {
  .mainmenu{
    margin-left: 0;
  }
}

.zoom-image {
    transition: transform 0.3s ease-in-out; /* Weicher Übergang */
    transform-origin: center center; /* Zoom zentriert auf das Bild */
}

.zoom-image:hover {
    transform: scale(1.1); /* Vergrößert das Bild um 10% bei Hover */
}

 .hidden-animation {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  }

 .visible-animation {
    opacity: 1;
    transform: translateY(0);
  }
  
    .wobble {
    animation: wobble 0.6s ease-in-out;
  }

  @keyframes wobble {
    0% { transform: translateX(0); }
    25% { transform: translateX(-8px) ; }
    50% { transform: translateX(8px) ; }
    75% { transform: translateX(-4px) ; }
    100% { transform: translateX(0) ; }
  }
