/* Teaser Box 16
-------------------------------------------------- */
.teaser-box16 {
    position: relative;
    margin-bottom: 16px;
    border-radius: 10px;
    transition: margin 0.25s ease;
    -webkit-transition: margin 0.25s ease;
}

.teaser-box16:before {
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    position: absolute;
    border: 8px solid transparent;
    transition: margin 0.3s ease;
    -webkit-transition: margin 0.3s ease;
}

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

.teaser-box16 img {
    width: 100%;
    transition: all .27s ease-in-out;
    -webkit-transition: all .27s ease-in-out;
    border-radius: 10px;
}

.teaser-box16:hover img {
    opacity: 0;
}

.teaser-box16:hover .tb16-content {
    background-color: #fff;
    border-radius: 10px;
}

.teaser-box16:hover {
    box-shadow: 15px 15px 40px 10px #02030345;
}

.tb16-content h4 {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 15%;
    color: #fff;
    transition: all 0.3s ease;
    font-size: 26px;
}

.teaser-box16:hover .tb16-content h4 {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 55%;
    color: #000;
    transition: all 0.3s ease;
}

.tb16-content h5 {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 10%;
    color: #fff;
    transition: all 0.3s ease;
}

.teaser-box16:hover .tb16-content h5 {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 48%;
    color: #000;
    transition: all 0.3s ease;
}

.teaser-box16 a {
    text-align: center;
    display: none;
    padding: 0px;
    position: absolute;
    background-color: #43e05f;
    color: #fff !important;
    border-radius: 50px;
    bottom: 10%;
    width: 60%;
    transition: all 0.3s ease;
}

.teaser-box16:hover a {
    text-align: center;
    display: inline-block;
    padding: 13px 0px;
    position: absolute;
    color: #fff !important;
    width: 66%;
    border-radius: 50px;
    bottom: 30%;
    left: 50%;
    transform: translate(-50%, 0);
}

.tb16-content a:hover {
    background-color: #444;
    transition: all 0.3s ease;
}