.contentformwrapper {
    padding-bottom: 85px;
    width: 100%;
    position: relative;
    overflow-y: hidden;
}


.containerthumbnails {
    position: relative;
    width: 100%;
}

.image {
    opacity: 1;
    display: block;
    width: 100%;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
}

.middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}

.containerthumbnails:hover .image {
    opacity: 0.3;
}

.containerthumbnails:hover .middle {
    opacity: 1;
}

.text {
    background-color: #E5131D;
    color: white;
    padding: 16px 32px;
}

.content {
    width: 100%;
    background-color: #FFFFFF;
}