*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.GridSlideContainer {
    min-height: 200px;
    display: grid;
    place-items: center;
    overflow-x: hidden;
}

.ImageGallery3D {
    position: relative;
    height: 200px;
    width: 300px;
    transform-style: preserve-3d;
    animation: animate 30s linear infinite;
}

@keyframes animate {
    0%{transform: perspective(1500px) rotateY(0deg);}
    0%{transform: perspective(1500px) rotateY(-360deg);}
}

.ImageGallery3D div {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transform-style: preserve-3d;
    transform-origin: center;
    transform: rotateY(calc(var(--v) * 45deg)) translateZ(375px);
}

.ImageGallery3D div img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.ImageGallery2DSlider {
    display: grid;
    height: 200px;
    margin: auto;
    position: relative;
    width: 90%;
    place-items: center;
    overflow: hidden;
}

.SlideTrack2DSlider {
    display: flex;
    align-items: center;
    width: calc(200px * var(--picCount));
    animation: var(--rollDir) var(--cycleTime) linear infinite;
}

@keyframes rollRight {
    0%{transform: translateX(0);}
    100%{transform: translateX(calc(var(--direction) * (var(--picCount) / 2)));}
}

@keyframes rollLeft {
    100%{transform: translateX(0);}
    0%{transform: translateX(calc(var(--direction) * (var(--picCount) / 2)));}
}

.GalleryImage2D {
    display: flex;
    align-items: center;
    padding: 10px;
    perspective: 100px;
    width: 200px;
    height: 150px;    
}

.GalleryImage2D img {
    width: 100%;
}

.GalleryImage2D_Vertical {
    display: flex;
    align-items: center;
    padding: 10px;
    perspective: 100px;
    width: 150px;
    height: 200px;    
}

.GalleryImage2D_Vertical img {
    height: 100%;
}

#logoSlider {
    --picCount: 50;
    --direction: -200px;
    --rollDir: rollRight;
    --cycleTime: 35s;
}

#visitenkartenSlider {
    --picCount: 22;
    --direction: -200px;
    --rollDir: rollLeft;
    --cycleTime: 15s;
}

#corporateSlider {
    --picCount: 16;
    --direction: -200px;
    --rollDir: rollRight;
    --cycleTime: 15s;
}

#grafikenSlider {
    --picCount: 22;
    --direction: -150px;
    --rollDir: rollLeft;
    --cycleTime: 15s;
}

#paintingSlider {
    --picCount: 22;
    --direction: -200px;
    --rollDir: rollLeft;
    --cycleTime: 20s;
}

#paintingHkSlider {
    --picCount: 28;
    --direction: -150px;
    --rollDir: rollLeft;
    --cycleTime: 19s;
}

.Slider {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    align-content: center;
    height: 600px;
}

.SliderPicHorizontal, .SliderPicVertical {
    position: absolute;
    overflow: hidden;
}
.SliderPicHorizontal {
    width: 600px;
}
.SliderPicVertical {
    width: 450px;
}

.SliderButton {
    position: absolute;
    background: transparent;
    border: none;
    z-index: 2;
    cursor: pointer;
}

.Slider:hover .SliderButton {
    width: 55px;
    height: 48px;
}

.SliderPic, .SlideLeft img, .SlideRight img{
    width: 100%;
    height: auto;
}

.SlideLeft, .SlideRight {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 0;
    width: 15%;
    height: 100%;
    background: rgba(255, 255, 255, 0);
    cursor: pointer;
    transition: background 0.3s;
    z-index: 2;
}
.SlideLeft img, .SlideRight img {
    opacity: 0;
    transition: opacity 0.3s;
    max-width: 36px;
}

.SlideLeft {
    left: 0;
}

.SlideRight {
    right: 0;
}

.SlideLeft:hover, .SlideRight:hover {
    background: rgba(255, 255, 255, 0.5);
}

.SlideLeft:hover img, .SlideRight:hover img {
    opacity: 1;
}

#mobileSlider {
    display: none;
}

#nonMobileSlider {
    display: flex;
}

.ReviewArea {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    position: relative;
}
.ReviewContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFF;
    margin:30px;
    padding:15px;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}
.ReviewSlideIn {
    transform: translateX(0);
    opacity: 1;
}
.ReviewSlideOut {
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 0.5s ease, opacity 0.5s ease;
}
.ReviewStars {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #005920;
}
.ReviewQuote, .ReviewQuote a {
    font-family: 'WorkSans', sans-serif;
    font-size: 1.1rem;
    font-weight: normal;
    font-style: italic;
    overflow-wrap: break-word;
    word-break: break-word;
    color: #7F7F7F;
}
.ReviewQuote {
    border-top: 2px solid #005920;
    border-bottom: 2px solid #005920;
    padding-top: 5px;
    padding-bottom: 5px;
}
.ReviewQuote a {
    text-decoration: none;
}
.ReviewAuthor {
    font-family: 'Montserrat', sans-serif;
    font-weight: normal;
    font-size: 1.3rem;
    overflow-wrap: break-word;
    word-break: break-word;
    color: #000000;
}

@media screen and (max-width: 1000px)
{
    #mobileSlider {
        display: flex;
    }

    #nonMobileSlider {
        display: none;
    }

    .Slider {
        height: 380px;
    }
    .SliderPicHorizontal {
        width: 380px;
    }
    .SliderPicVertical {
        width: 280px;
    }
    .SlideLeft, .SlideRight {
        width: 20%;
    }

    .ReviewArea {
        flex-direction: column;
    }
    .ReviewAuthor {
        font-size: 1.2rem;
    }
    .ReviewContainer {
        transform: translateY(100%);
    }
    .ReviewSlideIn {
        transform: translateY(0);
    }
    .ReviewSlideOut {
        transform: translateY(-100%);
    }
}
