* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    font-size: 14px;
}

main {
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    perspective: 10px;
}

a {
    text-decoration: none;
}

.dark-mode-color {
    color: black !important;
}

.dark-mode-background {
    background: black !important;
}

.section_main {
    display: flex;
    position: relative;
    width: 75vw;
    min-width: 2000px;
    height: 40vw;
    max-height: 100vh;
    margin: auto;
}

.swiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.imageCopyCover{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    background: transparent !important;
}

.section-title{
    height: auto;
    width: 100%;
    text-transform: uppercase;
    font-size: clamp(2rem, 1.4vw, 3.5rem);
    font-weight: 200;
    color: white;
    letter-spacing: 8px;
}

/*################################## HORIZONTAL ##################################*/
/*################################################################################*/

/* Bildschirmbreite kleiner 3000px UND horizontal */
@media screen and (orientation: landscape) and (max-width: 3000px) {

    .section_main {
        min-width: 1500px;
    }
    
    .section-title {
        font-size: clamp(2rem, 1.4vw, 3.5rem);
    }

}

/* Bildschirmbreite kleiner 2000px UND horizontal */
@media screen and (orientation: landscape) and (max-width: 2000px) {

    .section_main {
        min-width: 1000px;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 1.4vw, 2rem);
    }

}

/* Bildschirmbreite kleiner 1500px UND horizontal */
@media screen and (orientation: landscape) and (max-width: 1500px) {

    .section_main {
        min-width: 800px;
    }

    .section-title {
        font-size: 2vh;
    }
}

/* extended mobile */
/* Bildschirmbreite kleiner 1000px UND horizontal */
@media screen and (orientation: landscape) and (max-width: 1000px) {

    .section_main {
        height: 90%;
        /*<-- Bei Änderung der Höhe - margin-top berücksichtigen */
        max-height: 100vh;
        max-width: 800px;
    }
}

/* mobile */
@media screen and (max-width: 800px) {

    .section_main {
        height: calc(80% - 20%);
        /*<-- Bei Änderung der Höhe - margin-top berücksichtigen */
        margin-top: 20%;
        min-width: 0;
    }
    
    .section-title {
        height: auto;
        width: 100%;
        text-transform: uppercase;
        font-size: clamp(2rem, 1.4vw, 3.5rem);
        font-weight: 200;
        color: white;
        letter-spacing: 8px;
    }
}

/*################################### VERTIKAL ###################################*/
/*################################################################################*/

/* Bildschirmbreite kleiner 3000px UND horizontal */
@media screen and ((orientation: portrait) and (max-width: 3000px)) {

    .section_main {
        width: 80vw;
        max-width: 2000px;
        min-width: 1500px;
    }
}

/* Bildschirmbreite kleiner 2000px UND horizontal */
@media screen and ((orientation: portrait) and (max-width: 2000px)) {

    .section_main {
        width: 80vw;
        max-width: 1500px;
        min-width: 1000px;
    }
}

/* Bildschirmbreite kleiner 1500px UND horizontal */
@media screen and ((orientation: portrait) and (max-width: 1500px)) {

    .section_main {
        width: 80vw;
        max-width: 1000px;
        min-width: 800px;
    }
}

/* Bildschirmbreite kleiner 800px und orientierung egal:*/
/* modbile */
@media screen and (max-width: 800px) and ((orientation: portrait) or (orientation: landscape)) {

    .section_main {
        max-width: none;
        max-height: none;
        min-width: 0;
        width: 90%;
    }

}
