.button-loader {
    width:22.5px;
    height:20px;
    background:
    linear-gradient(#0000 calc(1*100%/6),#fff 0 calc(3*100%/6),#0000 0),
    linear-gradient(#0000 calc(2*100%/6),#fff 0 calc(4*100%/6),#0000 0),
    linear-gradient(#0000 calc(3*100%/6),#fff 0 calc(5*100%/6),#0000 0);
    background-size:5px 400%;
    background-repeat: no-repeat;
    animation:matrix 1s infinite linear;
    display: block;
}
@keyframes matrix {
    0% {background-position: 0% 100%, 50% 100%, 100% 100% }
    100% {background-position: 0% 0%, 50% 0%, 100% 0% }
}

.product-loader {
    width:22.5px;
    height:20px;
    background:
    linear-gradient(#0000 calc(1*100%/6),#fff 0 calc(3*100%/6),#0000 0),
    linear-gradient(#0000 calc(2*100%/6),#fff 0 calc(4*100%/6),#0000 0),
    linear-gradient(#0000 calc(3*100%/6),#fff 0 calc(5*100%/6),#0000 0);
    background-size:5px 400%;
    background-repeat: no-repeat;
    animation:matrix 1s infinite linear;
    display: block;
}
    
.product-gallery .text-content
{
    height: 30vh;
    transition: opacity 0.3s ease;
}

.product-gallery
{
    padding: 100px 30px;
}
.product-gallery h1
{
    font-size: 40px;
    text-transform: uppercase;
    text-align: left;
    font-weight: 800;
}
.product-gallery h2
{
    font-size: 30px;
    font-weight: 500;
    text-align: left;

}
.work
{
    font-family: 'inter', sans-serif;
}
.work p
{
    font-weight: 300;
    font-size: 14px;
    color: var(--secondary-color);
    width: 50%;
    margin: auto;
    text-align: center;
}
.work .cta
{
    display: flex;
    justify-content: center;
    margin: auto;
    width: 300px;
}
.work-wrap
{
    padding: 20px 0;
    column-count: 3;
    gap: 30px;
}
.work-box
{
    /* padding: 20px; */
    /* border: 0.5px solid #ddd; */
    margin: 0 0 30px 0;
    page-break-inside: avoid;
    border-radius: 20px;
    transition: 0.3s;
}
.work-wrap img
{
    width: 100%;
    border-radius: 10px;
}
.work-box:hover
{
    scale: 1.01 !important;
}

.work-text
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 0;
    color: var(--secondary-color);
}
.work-text h4
{
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.1;
    display: block;
    letter-spacing: -1px;
}
.work-text span
{
    display: block;
}
.work-text div
{
    text-align: right;
}
.work-text div a, .work-text h4 a
{
    font-weight: 300;
    margin: 0;
    font-size: 0.8rem;
    text-transform: capitalize;
    letter-spacing: 0;
    color: var(--secondary-color);
    line-height: 1;
}
.work-text div a
{
    display: block;
}
.cta-holder
{
    padding: 50px;
}


.filters
{
    padding: 30px 0 0;
}
.filters span
{
    font-size: 2rem;
}
.filter-wrap
{
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
}
.filter-group
{
    width: 25%;
}
.filter-group label
{
    font-size: 1rem;
    display: block;
    font-weight: 500;
}


@media (max-width: 1000px)
{
    .work .cta
    {
        width: 200px;
    }
    .product-gallery h1
    {
        font-size: 30px;
    }
    .work-wrap
    {
        column-count: 1;
    }
    .filter-wrap
    {
        flex-wrap: wrap;
        gap: 10px;
    }
    .filter-group
    {
        width: calc(50% - 10px);
    }
}   
@media (max-width: 500px)
{
    .filter-group
    {
        width: 100%;
    }
    .text-content h1
    {
        font-size: 24px;
    }
    .text-content h2
    {
        font-size: 18px;
    }
}

