#Home {

    position: relative;
    width: 100%;
    height: 450px;

    background: var(--orange-color);
    /* background-color: #282828; */

    display: flex;

    align-items: center;

}

.logo-viewer {
    z-index: 0;
    position: relative;
    height: 100%;

    /*width: 30%;*/

    display: flex;
    justify-content: center;


}

.logo-viewer .logo {

    position: relative;
    width: 85%;
    min-width: 510px;
    object-fit: contain;
}

.foto-viewer {
    z-index: 1;
    position: relative;
    height: 200%;
    min-width: 826px;
    width: 50%;
    border-radius: 0% 100% 100% 0%;


    clip-path: inset(25% 0px 25%);

    background: var(--orange-color);

    /*background: var(--orange2-color);  /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, var(--orange-color), var(--orange2-color));
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left, var(--orange-color), var(--orange2-color));
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    overflow: hidden;

    display: flex;
    flex-direction: column;


}

.slide-view {
    width: 100%;
    height: 50%;
    align-self: center;
}

.foto-viewer .schnitt {

    height: 25%;
    width: 100%;
    background-color: var(--white-color);

}

.foto-viewer.schnitt2 {
    align-self: flex-end;

}

.slide-view .slide-img {

    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 2s;

}

.slide-view .active {

    opacity: 1;

}

.slider-btn {
    z-index: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 50px;
    color: rgb(256, 256, 256);
    opacity: 0.5;
    text-align: center;

    user-select: none;
    cursor: pointer;

    display: flex;
    align-items: center;

}

.slider-left {

    /* border-right: 1px solid rgb(255, 255, 255); */
    opacity: 0.5;
    padding: 30px;
    left: 0;

}

.slider-right {

    /* border-left: 1px solid rgb(255, 255, 255); */
    opacity: 0.5;
    margin-left: auto;
    padding: 60px;

    right: 0;
}

.slider-btn:hover {
    opacity: 1;
}

@media only screen and (max-width: 1333px) {

    .logo-viewer {
        display: none;
    }

    .foto-viewer {
        z-index: 0;
        height: calc(0px + (100% - 65px));
        min-width: 0px;
        width: 100%;
        border-radius: 0% 0% 0% 0%;
        clip-path: inset(0px 0px 0px);
        margin-top: 65px;
        ;

    }

    .schnitt {
        display: none;
    }

    .logo-viewer {
        display: none;
    }

}

@media only screen and (max-width: 870px) {

    #Home {
        height: auto;
    }

    .foto-viewer {
        z-index: 0;
        height: 255px;
        min-width: 0px;
        width: 100%;
        border-radius: 0% 0% 0% 0%;
        clip-path: inset(0px 0px 0px);
        margin-top: 65px;
        ;

    }

    .schnitt {
        display: none;
    }

    .logo-viewer {
        display: none;
    }

}