.photo-header {
    margin-bottom: 60px;
    margin-top: -60px;  /* = general .row padding */
    position: relative;
    z-index: 1;
}

.photo-header .photo-header-slides .owl-dots {
    display: none;
}
.photo-header .photo-header-slides .slide {
    position: relative;
    z-index: 7;
}
.photo-header .photo-header-slides .slide .image {
    position: relative;
}
.photo-header .photo-header-slides .slide .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.photo-header .photo-header-slides .slide .slide-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 33px;
    width: 100%;
    z-index: 7;
}
.photo-header .photo-header-slides .slide .slide-content .titel {
    font-size: 3.4em;
    color: #fff;
    font-family: "Bitter";
    font-weight: normal;
    filter: drop-shadow(0px 0px 50px rgba(0,0,0,0.3));
    line-height: 1;
    font-family: 'sensei';

    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}
.photo-header .photo-header-slides .slide .slide-content .subtitel {
    color: #fff;
    font-size: 1.4em;
    font-family: "Bitter";
    filter: drop-shadow(0px 0px 10px #000);
}
.photo-header,
.photo-header .photo-header-slides,
.photo-header .photo-header-slides .slide,
.photo-header .photo-header-slides .slide .image {
    height: 500px;
}
.photo-header .photo-header-slides .slide .image:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: 1;
    pointer-events: none;
    background-image: url('/images/raster.png');
}

/* progress bar slides */
.slide-progress-holder {
    width: 90%;
    transform: translateX(-50%);
    max-width: 1200px;  
    position: relative;
    z-index: 3;
    position: absolute;
    left: 50%;
    top: 50px;
    max-width: 100px;
    background: rgba(0, 0, 0, 0.2);
}
.slide-progress {
    width: 0;
    max-width: 100%;
    height: 5px;
    background: var(--accents);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-radius: 5px;
}


@media screen and (max-width: 1100px) {

    .photo-header {
        margin-top: -30px; /* = general .row padding */
    }
    .photo-header,
    .photo-header .photo-header-slides,
    .photo-header .photo-header-slides .slide,
    .photo-header .photo-header-slides .slide .image {
        height: 33vh;
        min-height: 300px;
    }
    .photo-header .photo-header-slides .slide .slide-content {
        row-gap: 20px;
    }
    .photo-header .photo-header-slides .slide .slide-content .titel {
        font-size: 2em;
        max-width: 70%;
    }
    .photo-header .photo-header-slides .slide .slide-content .subtitel {
        font-size: 1em;
    }


}