.hero-holder{
    min-width: calc(100% + 30px);
    width: calc(100% + 30px);
    max-width: calc(100% + 30px);
    aspect-ratio: 16/11;
    min-height: 450px;
    max-height: min(95dvh, 750px);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
	overflow: hidden;
}
.hero-img{
    width: calc(100% + 60px);
    height: calc(100% + 60px);
    object-position: center;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(80%);
	animation: circleShiftt 12s infinite linear;
}
@keyframes circleShiftt {
  0%   { transform: translate( 10px,   0); }
  25%  { transform: translate(  0,  10px); }
  50%  { transform: translate(-10px,   0); }
  75%  { transform: translate(  0, -10px); }
  100% { transform: translate( 10px,   0); }
}

.hero-content{
    padding: var(--page-padding);
    height: 100%;
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    position: relative;
}
.hero-content h2,
.hero-content h2 p,
.hero-content h2 p mark{
    color: var(--pr);
    font-size: clamp(2rem, 6vw, 4rem);
    text-align: center;
    line-height: 1.2;
    letter-spacing: 1px;
    font-family: 'hero-font';
    margin-top: 42px;
}
.hero-content h2 span{
    color: var(--ac-l);
    font-family: 'hero-font';
}
.hero-content h2 {
	padding: 0 16px;
}


@media(max-width: 500px){
    .hero-holder{
        margin-top: 60px !important;
        min-height: 300px;
    }
    .hero-content h2{
        margin-top: 0;
    }
}



.slide-content-wrapper{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    height: 100%;
}
.slide{
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
	overflow: hidden;
}
.slide.aktiv{
    opacity: 1;
    z-index: 10;
}
.slide-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.slide.aktiv .slide-img{
	animation: moving 5.5s linear;
}

.pfeile{
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: var(--page-padding);
    width: 100%;
    opacity: .8;
    z-index: 10;
    margin-top: 21px;
    height: max-content;
}
.pfeil{
    cursor: pointer;
    width: 70px;
    height: 70px;
    border-radius: 50vh;
    background-color: var(--ac-d);
    display: grid;
    place-items: center;
    transition: transform .2s ease;
    user-select: none;
}
.pfeil:active{
    transform: scale(1.1);
}
.pfeil img{
    width: 70%;
    height: auto;
    object-fit: cover;
    object-position: center;
    filter: brightness(10000%);
}
.pfeil-left{
    left: 1em;
}
.pfeil-right{
    right: 1em;
}

@media(max-width: 1000px){
    .pfeile{
        transform: translate(-50%, 0);
        bottom: 0;
        top: inherit;
    }
}

@media(max-width: 500px){
    .pfeil{
        width: 55px;
        height: 55px;
    }
}


.balken-wrapper{
    display: flex;
    justify-content: flex-start;
    transform: translateY(-5%) scaleX(-1);
    background-image: none;
}
.balken{
    position: relative;
    width: 100%;
    height: 100%;
}
.balken-img{
    min-height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    object-fit: cover;
    object-position: right;
    width: inherit;
}
.slide.aktiv .balken-img{
    animation-name: slider;
    animation-duration: 5s;
    animation-timing-function: linear;
}
.tl{
    z-index: 2;
}

@keyframes slider{
    from{
        width: 0;
    }
    to{
        width: 100%;
    }
}

@keyframes moving {
    from{
        transform: scale(1);
    }
    to{
        transform: scale(1.05);
    }
}
