@charset "utf-8";
/* CSS Document */

.slider_overlay {

}

.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;
}

.carousel{
    margin-bottom: 40px;
    box-shadow: 0 10px 30px #c5a969;
}

.titel{
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    color: #fff;
    margin: 0px;
    text-shadow: 3px 3px 3px #000;
}

.subtitel{
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    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;
}

.carousel {
    position: relative;
    overflow: hidden;
    height: 144px;
}

.slider_content{
    position: absolute;
    top: 0;
    left: 10%;
    z-index: 10;
    height: 144px;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

    .carousel {
        position: relative;
        overflow: hidden;
        height: 200px;
    }

    .slider_content{
        position: absolute;
        left: 10%;
        height: 200px;
    }

}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

    .carousel {
        position: relative;
        overflow: hidden;
        height: 300px;
    }

    .slider_content{
        position: absolute;
        left: 10%;
        height: 300px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {

    .carousel {
        position: relative;
        overflow: hidden;
        height: 300px;
    }

    .slider_content{
        position: absolute;
        left: 10%;
        height: 300px;
    }

}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

    .carousel {
        position: relative;
        overflow: hidden;
        height: 400px;
    }

    .slider_content{
        position: absolute;
        left: 10%;
        height: 400px;
    }

    .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) {

    .carousel {
        position: relative;
        overflow: hidden;
        height: 550px;
    }

    .slider_content{
        position: absolute;
        left: 10%;
        height: 550px;
    }

    .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;
    }
}