/*= effect-2 css =*/
.effect-2 {
    max-height: 302px;
    min-height: 302px;
    overflow: hidden;
}

.effect-2 h3 {
    padding-top: 7px;
    line-height: 33px;
}

.effect-2 .new-image {
    height: 212px;
    overflow: hidden;
    width: 100%;
    transition: 0.4s;
    display: inline-block;
    float: none;
    vertical-align: middle;
}

.effect-2 .card-info {
    transition: 0.4s;
    background: #078380;
    height: 350px;
    position: relative;
}

.effect-2 .card-info::before {
    content: " ";
    width: 0px;
    height: 0px;
    border-style: solid;
    border-color: transparent transparent #078380 transparent;
    border-width: 10px;
    position: absolute;
    top: -20px;
    right: 10px;
}

.effect-2 .new-image img {
    width: 100%;
    vertical-align: bottom;
}

.effect-2:hover .new-image {
    height: 81px;
    transition: 0.4s;
}

/*= effect-2 css end =*/