SYDNEY · MELBOURNE · AUSTRALIA-WIDE
Video production for brands
that move fast.
CLIENTS — ALDI · Bunnings · Chargrill Charlies · Movember
↓ Scroll for work
Selected work
Recent projects.
32 PROJECTS · MIXED FORMATS
CLICK ANY TILE TO WATCH
Allbrandssocialinfluencerstills
/* Filter buttons */
.filter-btn {
background: transparent;
border: none;
color: rgba(255,255,255,0.6);
padding: 14px 20px 14px 0;
margin-right: 20px;
font-family: 'JetBrains Mono', monospace;
font-size: 0.75rem;
cursor: pointer;
transition: color 0.3s;
letter-spacing: 0.05em;
text-transform: uppercase;
position: relative;
font-weight: 500;
display: inline-block;
text-decoration: none;
}
.filter-btn::after {
content: '';
position: absolute;
left: 0;
bottom: -1px;
width: 0;
height: 2px;
background: #6cc3f5;
transition: width 0.3s ease;
}
.filter-btn:hover {
color: #ffffff;
}
.filter-btn.active {
color: #6cc3f5;
}
.filter-btn.active::after {
width: calc(100% - 20px);
}