@charset "utf-8";
/* CSS Document */

.containerslider {
    overflow: hidden;
    .slider {
        animation: slidein 30s linear infinite;
        white-space: nowrap;
        .logosslide {
            width: 100%;
            display: inline-block;
            margin: 0px 0;
            .fab {
                width: calc(100% / 10);
                animation: fade-in 0.5s
                cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
            }
        }
    }
}

@keyframes slidein {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


.slider_overlay {
    /*
    background: rgba(184, 13, 45, 0.85);
    clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
    position: absolute;
    width: 25%;
    height: 101%;
    z-index: 1;

     */
}

.carousel-control-next, .carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: .5;
    transition: opacity .15s ease;
}

.titel{
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    color: #fff;
    margin: 0px;
    text-shadow: 3px 3px 3px #000;
}

.subtitel{
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    color: #fff;
    margin: 0px;
    text-shadow: 3px 3px 3px #000;
}

.but{
    background: #fff;
    padding: 10px 40px;
    border-radius: 15px;
    border:none;
    box-shadow: 3px 3px 3px #000;
    margin-top: 10px;
}

.carouselhome {
    position: relative;
    height: 165px;
    margin-bottom: 40px;
    overflow: inherit ;
    z-index: 0;
}

.carousel {
    position: relative;
    height: 165px;
    margin-bottom: 40px;
    overflow: hidden ;
    z-index: 0;
    border-bottom: solid 10px #ef7b00;
}

.slider_content{
    position: absolute;
    top: 0;
    left: 10%;
    z-index: 10;
    height: 200px;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

    .carousel {
        position: relative;
        height: 200px;
        z-index: 0;
    }

    .slider_content{
        height: 200px;
    }

}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

    .carouselhome {
        position: relative;
        height: 300px;
    }

    .carousel {
        position: relative;
        height: 300px;
    }

    .slider_content{
        height: 300px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {

    .carouselhome {
        position: relative;
        height: 400px;
    }

    .carousel {
        position: relative;
        height: 300px;
    }

    .slider_content{
        height: 300px;
    }

}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

    .carouselhome {
        position: relative;
        height: 500px;
    }

    .carousel {
        position: relative;
        height: 300px;
    }

    .slider_content{
        height: 300px;
    }

    .titel{
        font-family: 'Oswald', sans-serif;
        font-size: 50px;
        color: #fff;
    }

    .subtitel{
        font-family: 'Oswald', sans-serif;
        font-size: 30px;
        color: #fff;
    }

    .but{
        background: #fff;
        padding: 10px 40px;
        border-radius: 15px;
        border:none;
    }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {

    .carouselhome, .carouselhome .slider_content {
        height: 600px;
    }

    .carousel {
        position: relative;
        height: 400px;
    }

    .slider_content{
        height: 400px;
    }

    .titel{
        font-family: 'Oswald', sans-serif;
        font-size: 60px;
        color: #fff;
    }

    .subtitel{
        font-family: 'Oswald', sans-serif;
        font-size: 40px;
        color: #fff;
    }

    .but{
        background: #fff;
        padding: 10px 40px;
        border-radius: 15px;
        border:none;
    }
}