.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-gallery
{
    padding: 100px 30px;
}
.product-gallery h1
{
    font-size: 60px;
    text-transform: uppercase;
    text-align: center;
}
.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;
    display: block;
    letter-spacing: -1px;
}
.work-text span
{
    font-weight: 300;
    margin: 0;
    font-size: 0.8rem;
    display: block;
}
.cta-holder
{
    padding: 50px;
}
@media (max-width: 1000px)
{
    .work .cta
    {
        width: 200px;
    }
    .product-gallery h1
    {
        font-size: 30px;
    }
    .work-wrap
    {
        column-count: 1;
    }
}