
html {
    --primary-color: #cb252b;
    --secondary-color: #2f2e7a;
}


img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}

.gallery-title {
    font-size: 4rem;
    color: var(--secondary-color);
    text-align: center;
    font-weight: 500;
    margin-bottom: 3rem;
}

.filter-button {
    font-size: 18px;
    border-radius: 0px;
    text-align: center;
    color: white;
    margin-bottom: 30px;
    background: var(--secondary-color);

}

.filter-button:hover {
    font-size: 18px;
    border-radius: 0px;
    text-align: center;
    color: #ffffff;
    background-color: var(--primary-color);
}

.filter-button.active {
    background-color: var(--primary-color);
    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;
}