.gallery_tags .media-thumb{
  width: 100%;
  height: 270px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size:100%;
}

.gallery_tags .media-hover-info{
	    background: #4CAF50;
    background: -moz-linear-gradient(left, rgba(119,216,255,0.8) 0%, rgba(44,175,226,0.8) 70%);
    background: -webkit-linear-gradient(left, #8BC34A 0%, #8bc34aa1 70%);
    background: linear-gradient(left, rgba(119,216,255,0.8) 0%, rgba(44,175,226,0.8) 70%);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}





.project-section{}
.gallery_tags{}
.gallery_tags .col-md-4{
    padding: 10px;
}

.project-wrap .media-content{}
.media-content img{
    width: 100%;
}

.media-content{
    position: relative;
    overflow: hidden;
}

.media-content:hover .media-hover-info{
    visibility: visible;
    opacity: 1;
    bottom: 0;
}
.media-hover-info h4 a{
    color: #fff;
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 700;
}

.media-hover-info h4{
    color: #fff;
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 700;
}


.media-hover-info p{
    color: #fff;
    display: block;
}
.media-hover-info p,
.media-hover-info h4{
    margin-bottom: 0;
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
    opacity: 0;
}
.media-content:hover .media-hover-info p,
.media-content:hover .media-hover-info h4{
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}
.media-content:hover .media-hover-info p{
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
.media-hover-info .img-popup{
    position: absolute;
    left: calc(50% - 15px);
    bottom: 0;
    width: 30px;
    height: 30px;
    color: #fff;
    font-size: 25px;
    display: block;
    text-align: center;
    line-height: 30px;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    opacity: 0;
}
.media-content:hover .media-hover-info .img-popup{
    bottom: 20px;
    opacity: 1;
}
/*Project Filter*/
.gallery_tags_filter{
    width: 100%;
    margin-bottom: 10px;
}


.gallery_tags_filter li{
    margin-right: 10px;
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    background-color: #f7f7f7;
    border: 1px dashed #ddd;
    padding: 7px 25px;
    border-radius: 0;
    cursor: pointer;
}
.gallery_tags_filter li.active{
    background-color: #aed748;
    color: #fff;
}