/* Teaser box 6
-------------------------------------------------- */

.teaser-box6 {
    position: relative;
    margin: 6px;
    background: #000;
}

.teaser-box6:before {
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    position: absolute;
    border: 6px solid transparent;
    z-index: 3;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
}

.teaser-box6:hover:before {
    margin: -3px;
    border-color: #437df9;
}

.teaser-box6 .teaser-title,
.teaser-box6 .teaser-subtitle {
    text-transform: uppercase;
    display: table;
    margin-top: 0;
    transition: all .18s ease;
    -webkit-transition: all .18s ease;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.teaser-box6 a {
    display: block;
    z-index: 4;
    background: #000;
    border: none !important;
}

.teaser-box6 img {
    transition: all .27s ease-in-out;
    -webkit-transition: all .27s ease-in-out;
    opacity: 0.8;
}

.teaser-box6 .teaser-subtitle {
    z-index: 5;
    opacity: 0;
    margin: 0;
    margin-top: 20px;
    font-weight: 600;
    font-size: 12px;
    white-space: nowrap;
    padding: 12px 16px 9px;
    letter-spacing: 1px;
    color: #fff;
    background-color: #437df9;
    transition: all .18s ease;
    -webkit-transition: all .18s ease;
}

.teaser-box6 .teaser-subtitle:after {
    font-family: "linea-arrows-10";
    content: "\e04b";
    margin-left: 2px;
    font-size: 13px;
    display: inline;
    float: right;
}

.teaser-box6:hover .teaser-title {
    margin-top: -25px;
}

.teaser-box6:hover .teaser-subtitle {
    opacity: 1;
}

.teaser-box6:hover .teaser-subtitle:hover {
    background-color: #101010;
}

.teaser-box6:hover img {
    filter: blur(3px);
    -webkit-filter: blur(3px);
}

.nav .teaser-box6 a,
.nav .teaser-box6 img {
    padding: 0;
    margin: 0;
    border: none !important;
}