.sec-port a{
    /*width: 100%;*/
    height: 250px;
}
.sec-port img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}
.sec-port .gallery-title{
    font-size: 36px;
    color: #42B32F;
    text-align: center;
    font-weight: 500;
    margin-bottom: 70px;
}
.sec-port .gallery-title:after {
    content: "";
    position: absolute;
    width: 7.5%;
    left: 46.5%;
    height: 45px;
    border-bottom: 1px solid #5e5e5e;
}
.sec-port .filter-button {
    font-size: 18px;
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
    background-color: #8133bb;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 8px 22px;
    font-family: 'Montserrat';
}
.sec-port .filter-button:hover{
    background-color: #e34575;
  	color:#fff;
}
.sec-port .filter-button.active {
    background-color: #e34575;
    color: white;
}
.sec-port .port-image{
    width: 100%;
}
.sec-port .gallery_product{
    margin-bottom: 30px;
	-webkit-animation-duration: 1s;
            animation-duration: 1s;
            -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
}
.sec-port .block{
    opacity: 0;
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
.sec-port .fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}