
.hero-section {
    overflow: hidden;
    width: 100%;
    height: 780px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 5rem;
}

.hero-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg,rgba(31, 41, 62, 0.92) 40%, rgba(217, 217, 217, 0) 100%);
    height: 100%;
}

.frame-type-mask-hero .frame-container {
    max-width: 1320px;
    width: 100%;

}


/* Dein Text-Content */
.hero-content {
    position: relative;
    width: 100%;
    color: white;
    margin-top: 3rem;
    z-index: 1;

}

.hero-text {
    font-weight: 600;
}

@media (min-width: 992px) {
    .frame-type-mask-hero .hero-content{
        width: 65%;
        margin-top: 3rem;
    }
    .hero-text {
        margin-top: 2rem;
    }
}

@media (max-width: 990px) {
    .hero-section {
        height: 100vh;
    }
    .frame-type-mask-hero .frame-container{
        width: 100%;
        padding: 0 1em;
    }
    
}

.hero-overlay::after {
    content: '';
    background: url(/fileadmin/user_upload/angle-cropped.svg);
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    width: 475px;
    right: 0;
    opacity: .3;
}



