.teaser {
    position: relative;
    margin: 15px 0;
    overflow: hidden;
    border-radius: 8px;
    padding: 20px;
    -webkit-transform: translate3d(0, 0, 0);
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
     background-size: cover;
}
@media (min-width: 990px){

    .teaser {
        -webkit-transition: all 0.2s;
        -moz-transition: all 0.2s;
        -ms-transition: all 0.2s;
        -o-transition: all 0.2s;
        transition: all 0.2s;
        -webkit-transform: translate3d(0, 0, 0);
        -webkit-background-size: 100% auto;
        background-size: 100% auto;
    }
    .teaser:hover {
    background-size: 110% auto;
    }
}


.teaser .teaser-bg {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.teaser .teaser-content {
    /* height: 250px; */
    position: relative;
    width: 80%;
}
@media (max-width: 767px){
    .teaser .teaser-content { width: 100%; }
}

.teaser .teaser-content.text-right {
    float: right;
}

.teaser .teaser-content.text-center {
    margin: 0 auto;
}

.teaser .teaser-text {
    line-height: 18px;
}

/* headlines */
.teaser .teaser-first-headline,
.teaser .teaser-main-headline {
    font-family: 'DINWebPro-Bold';
}

.teaser .teaser-first-headline {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 3px;
}
@media (min-width: 990px) {
    .teaser .teaser-first-headline {
        /* padding-top: 20px; */
    }
}

.teaser .teaser-main-headline {
    margin-top: 0;
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 5px;
}
@media (min-width: 990px) {
    .teaser .teaser-main-headline {
        font-size: 33px;
        line-height: 33px;
    }
}
@media (min-width: 1210px) {
    .teaser .teaser-main-headline {
        font-size: 36px;
        line-height: 36px;
    }
}

/* CTA */
.teaser .button-box {
    position: absolute;
    /* bottom: 20px; */
    left: 0;
    right: 0;
    white-space: nowrap;
}

.teaser .buttonline {
    margin-bottom: 0;
}

@media (min-width: 990px) and (max-width: 1209px) {
    .teaser .buttonline { margin-top: 5px; }
    .teaser .teaser-text + .button-box .buttonblock .buttonline { margin-top: 0; }
}

.teaser .button-box .btn {
    margin-right: 6px;
}

.teaser .button-box .btn:last-child {
    margin-right: 0;
}


/* TEASER-HOVER
 ========================================= */
@media (min-width: 990px) {

    .teaser:hover .teaser-content.text-left .teaser-main-headline {
        padding-left: 10px;
    }

    .teaser:hover .teaser-content.text-right .teaser-main-headline {
        padding-right: 10px;
    }
}

/* VERTICAL CENTERED TEASER-CONTENT */
.vertical-centered {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%) translate3d(0, 0, 0);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 160px !important;
}
.teaser .teaser-content.vertical-centered .button-box {
    position: relative;
}

/* TEASER HAS OVERLAY */
.teaser.has-overlay:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: none;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10;
    -webkit-transition: background 0.2s;
    -moz-transition: background 0.2s;
    -ms-transition: background 0.2s;
    -o-transition: background 0.2s;
    transition: background 0.2s;
}

.teaser.has-overlay:hover:before {
    background: rgba(0, 0, 0, 0);
}

.teaser.has-overlay .teaser-content {
    z-index: 20;
}

/* RESPONSIVE STUFF */
@media (max-width: 767px) {

    .teaser {
        height: 220px;
    
        /* height: auto; */
}

    .teaser-first-headline {
        display: none;
    }
}

@media (min-width: 767px) {
    .teaser {
        height: 224px;
    }
}

@media (min-width: 990px) {

    .teaser {
        height: 230px;
    }

    .teaser .teaser-content {
        width: 70%;
    }
}

@media (min-width: 1210px) {

    .teaser {
        height: 280px;
    }

    .teaser .teaser-content {
        width: 80%;
    }
}
















