/* Teaser box 2
-------------------------------------------------- */

.teaser-box2 {
    position: relative;
    background: #fff;
    padding-bottom: 15px;
    border: 1px solid #e5e5e5;
    padding: 2px;
    margin-right: -1px;
    box-shadow: none;
    transition: all 0.27s ease;
    -webkit-transition: all 0.27s ease;
}

.teaser-box2:hover {
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.07);
}

.teaser-box2 img.teaser-image {
    background: #fff;
    -webkit-transition: .19s ease-in-out;
    -moz-transition: .19s ease-in-out;
    transition: .19s ease-in-out;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
}

.teaser-box2:hover img.teaser-image {
    -webkit-transform: scale(0.94);
    -moz-transform: scale(0.94);
    transform: scale(0.94);
    z-index: 98;
}

.teaser-box2 .teaser-title,
.teaser-box2 .teaser-subtitle {
    position: absolute;
    z-index: 3;
    left: 10px;
    bottom: 25px;
    font-size: 35px;
    line-height: 1;
    letter-spacing: -1px;
    display: inline-block;
    font-weight: bold;
    margin: 0;
    padding: 5px 15px 4px;
    transition: all 0.38s ease;
    -webkit-transition: all 0.38s ease;
    word-wrap: break-word;
    color: #222;
}

.teaser-box2 a:hover .teaser-title {
    color: #437df9;
}

.teaser-box2 .teaser-subtitle {
    bottom: 65px;
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: 0;
    font-weight: 400;
    padding: 1px 15px 6px;
    color: #8e8e8e;
}

.teaser-box2:hover .teaser-subtitle {
    color: #111;
}

.teaser-box2 a {
    display: block;
    position: relative;
}

.teaser-box2 a:before {
    position: absolute;
    left: 0;
    right: 0;
    top: 38%;
    bottom: 0;
    background: linear-gradient(rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 1));
    display: block;
    content: '';
    z-index: 2;
    transition: all 0.38s ease;
    -webkit-transition: all 0.38s ease;
}

.teaser-box2 a:hover:before {
    top: 0;
}

.teaser-box2 a:after {
    content: '\e048';
    line-height: 1;
    position: absolute;
    right: 15px;
    bottom: 40px;
    display: block;
    z-index: 3;
    font-family: "linea-arrows-10" !important;
    font-size: 80px;
    color: #437df9;
    transition: all 0.23s ease;
    -webkit-transition: all 0.23s ease;
}

.teaser-box2:hover a:after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
    .teaser-box2 a:after {
        bottom: auto;
        ;
        top: 20px;
        right: 10px;
        font-size: 60px;
    }

    .teaser-box2 .teaser-title {
        font-size: 27px;
    }

    .teaser-box2 .teaser-subtitle {
        font-size: 13px;
    }
}