/* Teaser Box 11
-------------------------------------------------- */

.teaser-box11 {
    position: relative;
}

.teaser-box11 .teaser-title {
    position: absolute;
    left: 17%;
    top: 29%;
    color: #000;
    font-size: 15px;
    text-transform: uppercase;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.teaser-box11 .teaser-title:after {
    content: " ";
    background: #000;
    display: inline-block;
    height: 2px;
    width: 50px;
    height: 2px;
    margin-bottom: 5px;
    margin-left: 95px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.teaser-box11:hover .teaser-title:after {
    background: #fff;
}

.teaser-box11 p {
    position: absolute;
    color: #000;
    left: 17%;
    bottom: 23%;
    font-size: 30px;
    line-height: 1.50;
    font-weight: 600;
    max-width: 75%;
    word-break: break-all;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.teaser-box11:hover .teaser-title,
.teaser-box11:hover p {
    color: #fff;
}

.teaser-box11 .bgc-overlay {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #437df9;
    position: absolute;
    display: block;
    opacity: 0;
    visibility: hidden;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.teaser-box11:hover .bgc-overlay {
    opacity: 0.5;
    visibility: visible;
}

@media (max-width: 1280px) {
    .teaser-box11 .teaser-title {
        left: 13%;
        top: 20%;
    }

    .teaser-box11 p {
        left: 13%;
        bottom: 9%;
        font-size: 25px;
    }
}

@media (max-width: 991px) {
    .teaser-box11 p {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .teaser-box11 .teaser-title {
        top: 15%;
        left: 10%;
    }

    .teaser-box11 p {
        bottom: 20%;
        left: 10%;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .teaser-box11 p {
        bottom: 5%;
        left: 10%;
        font-size: 15px;
    }
}