.spotlight img, .image {
    width: 100%;
    margin: 11px 0;
    transition: all 0.7s ease;
    /*margin: -10px 0;*/
    /*clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);*/
    max-height: 250px;
}
.spotlight:hover{
    transform: rotate(3deg);
}
.spotlight::before{
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    background: url(../images/heart-ch.png)no-repeat center #fcb52fa3;
    transition: 600ms all;
    transform: scale(0);
    z-index: 1;
    background-position-x: 43%;
}
.spotlight::after{
    width: 100%;
    height: 100%;
    content: "view";
    position: absolute;
    transition: 600ms all;
    background: transparent;
    z-index: 2;
    color: #fff;
    font-size: 27px;
    left: 0;
    right: 0;
    top: 44%;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    content: "\f06e";
    font-family: "Fontawesome";
    transform: scale(0);
    transition-delay: .2s;
}
.spotlight-group .col-md-3{
    overflow:hidden;
}
.spotlight-group .col-md-3:hover .spotlight::before{
    transform: scale(1);
}
.spotlight-group .col-md-3:hover .spotlight::after{
    transform: scale(1);
}
.image{
    display: inline-block;
    height: 20vw;
    /*max-height: 200px;*/
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.spotlight.image.yellow::before {
    background: rgb(252, 181, 47);
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: color;
}
.spotlight.image.green::before {
    background:#78c150;
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: color;
}
.spotlight.image{
    cursor: pointer;
    background-color: #ebedf0;
}