:root {
    --primary-color: #2c5aa0;
    --secondary-color: #f8b400;
    --accent-color: #1a3a6c;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a1a;
    --gray-bg: #e9ecef;
    --border-color: #dee2e6;
    --shadow: 0 2px 20px rgba(0,0,0,0.1);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
    --border-radius: 4px;
    --transition: all 0.3s ease;
}



.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
{
    font-size: 18px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;

}
.filter-button:hover
{
    font-size: 18px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    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;
}

