.gallery_product img {
    width: 100% !important;
    height: 100%;
    object-fit: cover !important;
    overflow: hidden !important;
    border: 3px solid #ffd452;
}

.gallery {
    margin-bottom: 35px;
}

.gallery-title {
    font-size: 36px;
    color: #42B32F;
    text-align: center;
    font-weight: 500;
    margin-bottom: 70px;
}

.gallery-title:after {
    content: "";
    position: absolute;
    width: 7.5%;
    left: 46.5%;
    height: 45px;
    border-bottom: 1px solid #5e5e5e;
}

.filter-button {
    color: #fff;
    background-color: #c3912e;
    border: 1px solid #c3912e;
    padding: 10px 45px;
    font-size: 12px !important;
    margin: 8px 8px;
    font-family: 'Poppins', sans-serif;
    line-height: 2em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .1em;
    text-decoration: none;
    border-radius: 5px;
}

.filter-button:hover {
    background-color: #FFCE0C;
    border-color: #FFCE0C;
    color: #fff;
}

.filter-button.active {
    background-color: #FFCE0C;
    border-color: #FFCE0C;
    color: white;
}

.port-image {
    width: 100%;
}

.gallery_product {
    margin-bottom: 30px;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.block {
    opacity: 0;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}