.schaden-text{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 2em;
    width: 100%;
    padding: 5px;
    
}
.schaden-beschreibung > img{
    display: block;
    margin: 1em;
    float: right;
}
.schaden-warum-bild >img{
    max-width: 250px;
}
.schaden-punkte-bild > img{
    max-width: 40%;
}
.schaden-beschreibung{
    display: block;
    
    max-width: 100%;
    width: 100%;
}
@media screen and (max-width:1200px) {
    .schaden-warum-bild >img{
        max-width: 40%;
    }
}
@media screen and (max-width:450px) {
    .schaden-beschreibung > img{
        display: block;
        float:none;
        margin: 1em;
        max-width: 100%;
    }
    .schaden-warum-bild >img{
        max-width: 60%;
    }
    .schaden-punkte-bild > img{
        max-width: 200px;
    }
    .schaden-beschreibung{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: 100%;
        font-size: 16px;
    }
}