/* // Start Variables */

:root{
    --primaryColor: #07362d;
    --textColor: #ffffff;
    --secondaryColor: #db9a19;
    --mainFont:  'Montserrat', sans-serif;
    --subFont:  'Work Sans', sans-serif;
}

/* // End Variables */

.gallery-title
{
    font-size: 38px;
    color: var(--secondaryColor);
    text-align: center;
    font-weight: 600;
    margin-bottom: 70px;
    font-family: var(--mainFont);
}

.filter-button
{
    font-size: 16px;
    border: 1px solid var(--secondaryColor);
    border-radius: 5px;
    text-align: center;
    color: var(--secondaryColor);
    margin: 0px 8px;
    font-family: var(--subFont);
    box-shadow: none !important;

}
.filter-button:hover
{
    font-size: 16px;
    border: 1px solid var(--secondaryColor);
    border-radius: 4px;
    text-align: center;
    color: #ffffff;
    background-color: var(--secondaryColor);
    transition: all 0.4s ease;

}
.btn-default:active .filter-button:active
{
    background-color: var(--secondaryColor);
    color: white;
}

.port-image
{
    width: 100%;
}

.gallery_product
{
    margin-bottom: 30px;
    width: 100%;
    height: 300px;
}

.gallery_product img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
