.home-right {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    /* NICHT HIDDEN*/
    /*overflow: hidden;*/
}



.background-home {
    background-image: url("../img/homeback.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 100vh;
}


.background-layer {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity:0.3;
}

.background-layer-darken {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 50%;
}

.welcome {
    position: absolute;
    z-index: 2;
    bottom: 180px;
    margin-left: 50%;
    transform: translateX(-50%);
    max-width:90%;
}

.brush-bottom-right {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 120%;
}

.map {
    position: absolute;
    top: -100px;
    border: 0;
    bottom: -100px;
    left: 0px;
    right: -40px;
    height: calc(100% + 200px);
    width: calc(100% + 80px);

}
/* Alles größer als 992px ist gleich col-MD    */
/* das bedeutet diese Regel wird angewendet bei col-xs und col-sm */
@media (max-width: 992px) {
    .home-right {
        left:0;
        height: 40vh;
        overflow: hidden;
    }

    .offer {
        z-index: 1 !important;
        bottom: 20px !important;
        max-width: 300px;
    }
    .welcome {
        position: absolute;
        bottom: 20px;
    }
    .background-layer-darken {
        background-color: #B460A2;
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        width: 100%;
    }


}