BUILT BY ATHLETES FOR ATHLETES Introducing the bag that works as hard as you - the Momentum Pro Backpack. Constructed with durable and weather-resistant materials, it can bear the brunt of any conditions, shielding your gear from wind, water, and the gym floor. Streamlined and office-ready, its minimalist design ensures that all your work life and gym gear are expertly kept together. Plus, with an internal laptop sleeve and external weight belt loop, you'll never lack storage space.
const accordionItems = [ { label: 'PRODUCT FEATURES', content: `Made with water-Repellent Fabric Two 10” wide dedicated Velcro spaces to customize with patches* Weight belt loop securely wraps through both the front and back of the bag making for easy transport Adjustable, padded shoulder straps for a personalized, comfortable feel Large Primary compartment with two internal netting compartments for organization Large secondary compartment to accomodate items such as shoes and a change of clothes Felt-lined front zipper pocket to keep your valuables scratch-free Padded top handle Two quick access front pockets for smaller items Side zippered mesh pocket for small items Side elastic mesh pocket for bottle storage Carry straps with integrated anchor loops to store a yoga mat or a gym towel *PATCHES NOT INCLUDED*
`, }, { label: 'DIMENSIONS', content: `Bag Dimensions : 12" W x 19.5" H x 11" D Laptop Pocket Dimensions : 11" W x 14" H Weight Belt Opening : 5" Outside Pocket (Top) : 10" W x 5" H Outside Pocket (Bottom) : 10" W x 10" H Felt Pocket : 8" W x 6" H Volume : 32L Weight : 2 lbs / 32 ouncesMaterials : 600d polyester with rubber coating
`, }, { label: 'WHY WE MADE IT', content: `Everyday carry to work, photoshoot and/or a long weekend Personal item carry-on `, }, ] const createAccordion = () => { let accordionContainer = document.querySelector('section#accordion') let accordionWrapper = document.createElement('div') accordionWrapper.classList.add('accordion-wrapper') accordionContainer.appendChild(accordionWrapper) accordionItems.forEach((item) => { let accordionItem = document.createElement('div') accordionItem.classList.add('accordion-item') accordionItem.innerHTML = ` ${item.label}
` accordionWrapper.appendChild(accordionItem) }) } const toggleAccordion = (el) => { const accordionItem = el.parentElement accordionItem.classList.contains('is-open') ? accordionItem.classList.remove('is-open') : accordionItem.classList.add('is-open') } createAccordion()