@media (orientation: landscape){

    .embla__container {
        width: calc(100%);
        position: relative;
        height: calc(100% - var(--marge));
        display: block;
        scrollbar-width: none;
        overflow-y: scroll;
    }
        .embla__slide{
            display: contents;
        }

        .imageWrapper{
            display:contents;
        }

    
}



@media (orientation:portrait){

    .emblaa{
        overflow: visible;
        width: var(100vw - var(--marge));
    }

    .embla {
        overflow: visible;
        width: var(100vw - var(--marge));
        }


    .embla__container {
        display: flex;
        width: unset;
    }

    .embla__slide {
        flex: 0 0 auto ;
        min-width: 0;
        margin-right: var(--marge);
    }


}