<style>
.erm-full-event-notice{background:#fef3cd;border-left:4px solid #d4a017;color:#664d03;padding:14px 18px;margin:15px 0 0;border-radius:4px;font-size:14px;line-height:1.5;box-sizing:border-box;display:none;grid-column:1/-1;width:100%}
.erm-full-event-notice a{color:#48577d;font-weight:600;text-decoration:underline}
.erm-full-event-notice a:hover{color:#2c3a56}
#gform_submit_button_48.erm-submit-disabled{opacity:.5;cursor:not-allowed}
</style>
<script>
(function(){
    var fullEvents=["6.20.26ATVYOUTH","6.27.26ATVYOUTH","APRIL15SR","APRIL16SR"];
    var waitlistUrl="https:\/\/alaskasaferiders.org\/event-waitlist\/";
    var fid=48;
    var bound=false;

    var msg='<strong>This event is currently full.</strong><br><a href="'+waitlistUrl+'">Join the waitlist</a> and we\'ll notify you when a seat opens up.';

    function makeNotice(cls){
        var d=document.createElement('div');
        d.className='erm-full-event-notice '+cls;
        d.innerHTML=msg;
        return d;
    }

    function check(){
        var sel=document.getElementById('input_'+fid+'_6');
        if(!sel)return;
        var val=sel.value||'';
        var key=val.split('|')[0];
        var wrap=document.getElementById('gform_wrapper_'+fid);
        if(!wrap)return;
        var fieldNotice=wrap.querySelector('.erm-full-notice-field');
        var footerNotice=wrap.querySelector('.erm-full-notice-footer');
        var btn=document.getElementById('gform_submit_button_'+fid);
        var isFull=key&&fullEvents.indexOf(key)!==-1;
        if(isFull){
            if(!fieldNotice){
                fieldNotice=makeNotice('erm-full-notice-field');
                var gfield=document.getElementById('field_'+fid+'_6');
                if(gfield)gfield.parentNode.insertBefore(fieldNotice,gfield.nextSibling);
            }
            if(!footerNotice){
                footerNotice=makeNotice('erm-full-notice-footer');
                var footer=wrap.querySelector('.gform_footer,.gform_page_footer');
                if(footer)footer.parentNode.insertBefore(footerNotice,footer);
                else wrap.appendChild(footerNotice);
            }
            fieldNotice.style.display='block';
            footerNotice.style.display='block';
            if(btn){btn.disabled=true;btn.classList.add('erm-submit-disabled');}
        }else{
            if(fieldNotice)fieldNotice.style.display='none';
            if(footerNotice)footerNotice.style.display='none';
            if(btn){btn.disabled=false;btn.classList.remove('erm-submit-disabled');}
        }
    }

    function init(){
        var sel=document.getElementById('input_'+fid+'_6');
        if(!sel){
            setTimeout(init,200);
            return;
        }
        if(bound)return;
        bound=true;
        sel.addEventListener('change',check);
        check();
    }

    // Start polling after DOM is ready (form HTML comes after this script)
    if(document.readyState==='loading'){
        document.addEventListener('DOMContentLoaded',init);
    }else{
        init();
    }
})();
</script>
<style>
/* Ensure Payment Element iframe has enough height for all fields (card + country/zip) */
#gform_48 .ginput_stripe_creditcard .StripeElement--payment-element,
#gform_48 .ginput_stripe_creditcard .StripeElement--payment-element iframe{min-height:320px!important}
#gform_48 .ginput_stripe_creditcard .ginput_full{overflow:visible!important}
#gform_48 .ginput_container_creditcard{overflow:visible!important}
</style>
<script>
/* Stripe Payment Element fixes for Form 48:
   1. Debounce elements.update() — prevents cascading API calls on field changes
   2. Intercept Payment Element creation to disable Google Pay / Apple Pay wallets
   3. Delete gf_stripe_token cookie to prevent Link persistent authentication */
(function(){
    var fid=48;

    /* Delete the gf_stripe_token cookie so Link doesn't auto-authenticate */
    document.cookie='gf_stripe_token=;expires=Thu, 01 Jan 1970 00:00:00 GMT;path=/';

    var patched=false;
    function patchStripe(){
        if(patched)return;
        if(typeof GFStripeObj==='undefined'||!GFStripeObj.stripePaymentHandlers)return;
        var handler=GFStripeObj.stripePaymentHandlers[fid];
        if(!handler)return;

        patched=true;

        /* Debounce updatePaymentAmount (750ms) */
        if(handler.updatePaymentAmount){
            var orig=handler.updatePaymentAmount.bind(handler);
            var timer=null;
            handler.updatePaymentAmount=function(amt){
                clearTimeout(timer);
                timer=setTimeout(function(){orig(amt);},750);
            };
        }
    }
    /* Poll until handler exists */
    var tries=0;
    var iv=setInterval(function(){
        patchStripe();
        if(patched||++tries>60)clearInterval(iv);
    },500);

    /* Intercept Stripe Elements create() to add wallets:never option */
    function interceptElementsCreate(){
        if(typeof Stripe==='undefined')return false;
        var origStripe=Stripe;
        /* Only wrap once */
        if(origStripe._ermWrapped)return true;
        window.Stripe=function(){
            var instance=origStripe.apply(this,arguments);
            var origElements=instance.elements.bind(instance);
            instance.elements=function(opts){
                var el=origElements(opts);
                var origCreate=el.create.bind(el);
                el.create=function(type,createOpts){
                    if(type==='payment'){
                        createOpts=createOpts||{};
                        createOpts.wallets={googlePay:'never',applePay:'never'};
                    }
                    return origCreate(type,createOpts);
                };
                return el;
            };
            return instance;
        };
        /* Copy static properties */
        for(var k in origStripe){if(origStripe.hasOwnProperty(k))window.Stripe[k]=origStripe[k];}
        window.Stripe._ermWrapped=true;
        return true;
    }
    /* Try immediately, then poll if Stripe.js hasn't loaded yet */
    if(!interceptElementsCreate()){
        var si=setInterval(function(){
            if(interceptElementsCreate())clearInterval(si);
        },200);
        setTimeout(function(){clearInterval(si);},10000);
    }
})();
</script>
<script>
/* Payment-required flag: set Field 11 to "1" when total > 0, "0" otherwise.
   Replaces WPCode snippet 27326 which used MutationObserver and caused an infinite loop.
   Uses GF gform_product_total filter at priority 52 — after coupons (50) and Stripe (51) —
   so the total already reflects any coupon discounts. Shows/hides Field 9 directly. */
(function(){
    var fid=48,flagId=11,last=null;
    function setFlag(total){
        var v=total>0?'1':'0';
        if(v===last)return;
        last=v;
        var el=document.getElementById('input_'+fid+'_'+flagId);
        if(el)el.value=v;
        /* Show/hide Field 9 (payment) directly — avoids gf_apply_rules timing issues */
        var f9=document.getElementById('field_'+fid+'_9');
        if(f9){
            if(v==='1'){
                f9.style.display='';
                f9.classList.remove('gf_hidden');
            }else{
                f9.style.display='none';
                f9.classList.add('gf_hidden');
            }
        }
    }
    function tryHook(){
        if(typeof gform!=='undefined'&&gform.addFilter){
            gform.addFilter('gform_product_total',function(total,formId){
                if(parseInt(formId,10)===fid)setFlag(total);
                return total;
            },52);
            return true;
        }
        return false;
    }
    if(!tryHook()){
        var t=setInterval(function(){if(tryHook())clearInterval(t);},200);
        setTimeout(function(){clearInterval(t);},15000);
    }
    /* Also handle initial page state after GF renders */
    document.addEventListener('gform_post_render',function(e){
        if(!e.detail||parseInt(e.detail.formId,10)!==fid)return;
        if(typeof gformCalculateTotalPrice==='function')gformCalculateTotalPrice(fid);
    });
})();
</script><style type="text/css">body #gform_wrapper_48 .gform_footer .gform_button,body #gform_wrapper_48 .gform_page_footer .gform_button,body #gform_wrapper_48 .gform_page_footer .gform_previous_button,body #gform_wrapper_48 .gform_page_footer .gform_next_button,body #gform_wrapper_48 .gfield#field_submit .gform-button{border-style: solid;font-weight: normal; font-weight: bold; height:25px;color:#ffffff;background-color:#2e5eaf;font-size:15px;width:150px;border-width:2px;border-color:#2e5eaf;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;}body #gform_wrapper_48 .gform_footer .gform_button:hover,body #gform_wrapper_48 .gform_page_footer .gform_button:hover,body #gform_wrapper_48 .gform_page_footer .gform_previous_button:hover,body #gform_wrapper_48 .gform_page_footer .gform_next_button:hover,body #gform_wrapper_48 .gfield#field_submit .gform-button:hover {background-color:#ffffff;color:#2e5eaf;border-style: solid;border-style: solid;}body #gform_wrapper_48 .gform_footer button.mdc-button:hover {background-color:#ffffff;color:#2e5eaf;}body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=text]:not(.gform-text-input-reset),body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=email],body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=tel],body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=url],body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=password],body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=number]{border-width:1px;border-color:#424242;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width:100%;}body #gform_wrapper_48 .gform_body .gform_fields .gfield textarea {border-width:1px;border-color:#424242;border-style: solid;border-radius: 10px;-web-border-radius: 10px;-moz-border-radius: 10px;}body #gform_wrapper_48 .gform_body .gform_fields .gfield .gfield_label {font-weight: normal; font-weight: bold; color:#0a0a0a;}/* Styling for Tablets */@media only screen and ( max-width: 800px ) and ( min-width:481px ) {body #gform_wrapper_48 .gform_footer .gform_button,body #gform_wrapper_48 .gform_page_footer .gform_button,body #gform_wrapper_48 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_48 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_48 .gfield#field_submit .gform-button {border-style: solid;width:150px;height:25px;}body #gform_wrapper_48 .gform_footer button.mdc-button {width:150px;height:25px;}}/* Styling for phones */@media only screen and ( max-width: 480px ) {body #gform_wrapper_48 .gform_footer .gform_button,body #gform_wrapper_48 .gform_page_footer .gform_button,body #gform_wrapper_48 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_48 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_48 .gfield#field_submit .gform-button{border-style: solid;width:150px;height:25px;}body #gform_wrapper_48 .gform_footer button.mdc-button{width:150px;height:25px;}}/*Option to add custom CSS */</style><style type="text/css">body #gform_wrapper_48 .gform_footer .gform_button,body #gform_wrapper_48 .gform_page_footer .gform_button,body #gform_wrapper_48 .gform_page_footer .gform_previous_button,body #gform_wrapper_48 .gform_page_footer .gform_next_button,body #gform_wrapper_48 .gfield#field_submit .gform-button{border-style: solid;font-weight: normal; font-weight: bold; height:25px;color:#ffffff;background-color:#2e5eaf;font-size:15px;width:150px;border-width:2px;border-color:#2e5eaf;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;}body #gform_wrapper_48 .gform_footer .gform_button:hover,body #gform_wrapper_48 .gform_page_footer .gform_button:hover,body #gform_wrapper_48 .gform_page_footer .gform_previous_button:hover,body #gform_wrapper_48 .gform_page_footer .gform_next_button:hover,body #gform_wrapper_48 .gfield#field_submit .gform-button:hover {background-color:#ffffff;color:#2e5eaf;border-style: solid;border-style: solid;}body #gform_wrapper_48 .gform_footer button.mdc-button:hover {background-color:#ffffff;color:#2e5eaf;}body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=text]:not(.gform-text-input-reset),body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=email],body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=tel],body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=url],body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=password],body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=number]{border-width:1px;border-color:#424242;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width:100%;}body #gform_wrapper_48 .gform_body .gform_fields .gfield textarea {border-width:1px;border-color:#424242;border-style: solid;border-radius: 10px;-web-border-radius: 10px;-moz-border-radius: 10px;}body #gform_wrapper_48 .gform_body .gform_fields .gfield .gfield_label {font-weight: normal; font-weight: bold; color:#0a0a0a;}/* Styling for Tablets */@media only screen and ( max-width: 800px ) and ( min-width:481px ) {body #gform_wrapper_48 .gform_footer .gform_button,body #gform_wrapper_48 .gform_page_footer .gform_button,body #gform_wrapper_48 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_48 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_48 .gfield#field_submit .gform-button {border-style: solid;width:150px;height:25px;}body #gform_wrapper_48 .gform_footer button.mdc-button {width:150px;height:25px;}}/* Styling for phones */@media only screen and ( max-width: 480px ) {body #gform_wrapper_48 .gform_footer .gform_button,body #gform_wrapper_48 .gform_page_footer .gform_button,body #gform_wrapper_48 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_48 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_48 .gfield#field_submit .gform-button{border-style: solid;width:150px;height:25px;}body #gform_wrapper_48 .gform_footer button.mdc-button{width:150px;height:25px;}}/*Option to add custom CSS */</style><style type="text/css">body #gform_wrapper_48 .gform_footer .gform_button,body #gform_wrapper_48 .gform_page_footer .gform_button,body #gform_wrapper_48 .gform_page_footer .gform_previous_button,body #gform_wrapper_48 .gform_page_footer .gform_next_button,body #gform_wrapper_48 .gfield#field_submit .gform-button{border-style: solid;font-weight: normal; font-weight: bold; height:25px;color:#ffffff;background-color:#2e5eaf;font-size:15px;width:150px;border-width:2px;border-color:#2e5eaf;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;}body #gform_wrapper_48 .gform_footer .gform_button:hover,body #gform_wrapper_48 .gform_page_footer .gform_button:hover,body #gform_wrapper_48 .gform_page_footer .gform_previous_button:hover,body #gform_wrapper_48 .gform_page_footer .gform_next_button:hover,body #gform_wrapper_48 .gfield#field_submit .gform-button:hover {background-color:#ffffff;color:#2e5eaf;border-style: solid;border-style: solid;}body #gform_wrapper_48 .gform_footer button.mdc-button:hover {background-color:#ffffff;color:#2e5eaf;}body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=text]:not(.gform-text-input-reset),body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=email],body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=tel],body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=url],body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=password],body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=number]{border-width:1px;border-color:#424242;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width:100%;}body #gform_wrapper_48 .gform_body .gform_fields .gfield textarea {border-width:1px;border-color:#424242;border-style: solid;border-radius: 10px;-web-border-radius: 10px;-moz-border-radius: 10px;}body #gform_wrapper_48 .gform_body .gform_fields .gfield .gfield_label {font-weight: normal; font-weight: bold; color:#0a0a0a;}/* Styling for Tablets */@media only screen and ( max-width: 800px ) and ( min-width:481px ) {body #gform_wrapper_48 .gform_footer .gform_button,body #gform_wrapper_48 .gform_page_footer .gform_button,body #gform_wrapper_48 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_48 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_48 .gfield#field_submit .gform-button {border-style: solid;width:150px;height:25px;}body #gform_wrapper_48 .gform_footer button.mdc-button {width:150px;height:25px;}}/* Styling for phones */@media only screen and ( max-width: 480px ) {body #gform_wrapper_48 .gform_footer .gform_button,body #gform_wrapper_48 .gform_page_footer .gform_button,body #gform_wrapper_48 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_48 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_48 .gfield#field_submit .gform-button{border-style: solid;width:150px;height:25px;}body #gform_wrapper_48 .gform_footer button.mdc-button{width:150px;height:25px;}}/*Option to add custom CSS */</style><style type="text/css">body #gform_wrapper_48 .gform_footer .gform_button,body #gform_wrapper_48 .gform_page_footer .gform_button,body #gform_wrapper_48 .gform_page_footer .gform_previous_button,body #gform_wrapper_48 .gform_page_footer .gform_next_button,body #gform_wrapper_48 .gfield#field_submit .gform-button{border-style: solid;font-weight: normal; font-weight: bold; height:25px;color:#ffffff;background-color:#2e5eaf;font-size:15px;width:150px;border-width:2px;border-color:#2e5eaf;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;}body #gform_wrapper_48 .gform_footer .gform_button:hover,body #gform_wrapper_48 .gform_page_footer .gform_button:hover,body #gform_wrapper_48 .gform_page_footer .gform_previous_button:hover,body #gform_wrapper_48 .gform_page_footer .gform_next_button:hover,body #gform_wrapper_48 .gfield#field_submit .gform-button:hover {background-color:#ffffff;color:#2e5eaf;border-style: solid;border-style: solid;}body #gform_wrapper_48 .gform_footer button.mdc-button:hover {background-color:#ffffff;color:#2e5eaf;}body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=text]:not(.gform-text-input-reset),body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=email],body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=tel],body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=url],body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=password],body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=number]{border-width:1px;border-color:#424242;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width:100%;}body #gform_wrapper_48 .gform_body .gform_fields .gfield textarea {border-width:1px;border-color:#424242;border-style: solid;border-radius: 10px;-web-border-radius: 10px;-moz-border-radius: 10px;}body #gform_wrapper_48 .gform_body .gform_fields .gfield .gfield_label {font-weight: normal; font-weight: bold; color:#0a0a0a;}/* Styling for Tablets */@media only screen and ( max-width: 800px ) and ( min-width:481px ) {body #gform_wrapper_48 .gform_footer .gform_button,body #gform_wrapper_48 .gform_page_footer .gform_button,body #gform_wrapper_48 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_48 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_48 .gfield#field_submit .gform-button {border-style: solid;width:150px;height:25px;}body #gform_wrapper_48 .gform_footer button.mdc-button {width:150px;height:25px;}}/* Styling for phones */@media only screen and ( max-width: 480px ) {body #gform_wrapper_48 .gform_footer .gform_button,body #gform_wrapper_48 .gform_page_footer .gform_button,body #gform_wrapper_48 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_48 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_48 .gfield#field_submit .gform-button{border-style: solid;width:150px;height:25px;}body #gform_wrapper_48 .gform_footer button.mdc-button{width:150px;height:25px;}}/*Option to add custom CSS */</style><style type="text/css">body #gform_wrapper_48 .gform_footer .gform_button,body #gform_wrapper_48 .gform_page_footer .gform_button,body #gform_wrapper_48 .gform_page_footer .gform_previous_button,body #gform_wrapper_48 .gform_page_footer .gform_next_button,body #gform_wrapper_48 .gfield#field_submit .gform-button{border-style: solid;font-weight: normal; font-weight: bold; height:25px;color:#ffffff;background-color:#2e5eaf;font-size:15px;width:150px;border-width:2px;border-color:#2e5eaf;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;}body #gform_wrapper_48 .gform_footer .gform_button:hover,body #gform_wrapper_48 .gform_page_footer .gform_button:hover,body #gform_wrapper_48 .gform_page_footer .gform_previous_button:hover,body #gform_wrapper_48 .gform_page_footer .gform_next_button:hover,body #gform_wrapper_48 .gfield#field_submit .gform-button:hover {background-color:#ffffff;color:#2e5eaf;border-style: solid;border-style: solid;}body #gform_wrapper_48 .gform_footer button.mdc-button:hover {background-color:#ffffff;color:#2e5eaf;}body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=text]:not(.gform-text-input-reset),body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=email],body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=tel],body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=url],body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=password],body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=number]{border-width:1px;border-color:#424242;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width:100%;}body #gform_wrapper_48 .gform_body .gform_fields .gfield textarea {border-width:1px;border-color:#424242;border-style: solid;border-radius: 10px;-web-border-radius: 10px;-moz-border-radius: 10px;}body #gform_wrapper_48 .gform_body .gform_fields .gfield .gfield_label {font-weight: normal; font-weight: bold; color:#0a0a0a;}/* Styling for Tablets */@media only screen and ( max-width: 800px ) and ( min-width:481px ) {body #gform_wrapper_48 .gform_footer .gform_button,body #gform_wrapper_48 .gform_page_footer .gform_button,body #gform_wrapper_48 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_48 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_48 .gfield#field_submit .gform-button {border-style: solid;width:150px;height:25px;}body #gform_wrapper_48 .gform_footer button.mdc-button {width:150px;height:25px;}}/* Styling for phones */@media only screen and ( max-width: 480px ) {body #gform_wrapper_48 .gform_footer .gform_button,body #gform_wrapper_48 .gform_page_footer .gform_button,body #gform_wrapper_48 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_48 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_48 .gfield#field_submit .gform-button{border-style: solid;width:150px;height:25px;}body #gform_wrapper_48 .gform_footer button.mdc-button{width:150px;height:25px;}}/*Option to add custom CSS */</style><style type="text/css">body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gfield#field_submit .gform-button{border-style: solid;height:45px;color:#ffffff;background-color:#48577d;font-size:20px;width:200px;border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;}body #gform_wrapper_7 .gform_footer .gform_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_previous_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_next_button:hover,body #gform_wrapper_7 .gfield#field_submit .gform-button:hover {background-color:#ffffff;color:#48577d;border-style: solid;border-style: solid;}body #gform_wrapper_7 .gform_footer button.mdc-button:hover {background-color:#ffffff;color:#48577d;}body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=text]:not(.gform-text-input-reset),body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=email],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=tel],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=url],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=password],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=number]{border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width:100%;}body #gform_wrapper_7 .gform_body .gform_fields .gfield textarea {border-width:2px;border-color:#48577d;border-style: solid;border-radius: 10px;-web-border-radius: 10px;-moz-border-radius: 10px;}body #gform_wrapper_7 .gform_body .gform_fields .gfield select {border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width: 100%;}body #gform_wrapper_7 .gform_body .gform_fields .gfield .gfield_label {color:#000000;}body #gform_wrapper_7 .gform_body .gform_fields .gfield .gfield_description {color:#000000;}/* Styling for Tablets */@media only screen and ( max-width: 800px ) and ( min-width:481px ) {body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gfield#field_submit .gform-button {border-style: solid;width:200px;height:45px;font-size:20px;}body #gform_wrapper_7 .gform_footer button.mdc-button {width:200px;height:45px;font-size:20px;}}/* Styling for phones */@media only screen and ( max-width: 480px ) {body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gfield#field_submit .gform-button{border-style: solid;width:200px;height:45px;font-size:20px;}body #gform_wrapper_7 .gform_footer button.mdc-button{width:200px;height:45px;font-size:20px;}}/*Option to add custom CSS */</style><style type="text/css">body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gfield#field_submit .gform-button{border-style: solid;height:45px;color:#ffffff;background-color:#48577d;font-size:20px;width:200px;border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;}body #gform_wrapper_7 .gform_footer .gform_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_previous_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_next_button:hover,body #gform_wrapper_7 .gfield#field_submit .gform-button:hover {background-color:#ffffff;color:#48577d;border-style: solid;border-style: solid;}body #gform_wrapper_7 .gform_footer button.mdc-button:hover {background-color:#ffffff;color:#48577d;}body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=text]:not(.gform-text-input-reset),body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=email],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=tel],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=url],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=password],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=number]{border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width:100%;}body #gform_wrapper_7 .gform_body .gform_fields .gfield textarea {border-width:2px;border-color:#48577d;border-style: solid;border-radius: 10px;-web-border-radius: 10px;-moz-border-radius: 10px;}body #gform_wrapper_7 .gform_body .gform_fields .gfield select {border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width: 100%;}body #gform_wrapper_7 .gform_body .gform_fields .gfield .gfield_label {color:#000000;}body #gform_wrapper_7 .gform_body .gform_fields .gfield .gfield_description {color:#000000;}/* Styling for Tablets */@media only screen and ( max-width: 800px ) and ( min-width:481px ) {body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gfield#field_submit .gform-button {border-style: solid;width:200px;height:45px;font-size:20px;}body #gform_wrapper_7 .gform_footer button.mdc-button {width:200px;height:45px;font-size:20px;}}/* Styling for phones */@media only screen and ( max-width: 480px ) {body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gfield#field_submit .gform-button{border-style: solid;width:200px;height:45px;font-size:20px;}body #gform_wrapper_7 .gform_footer button.mdc-button{width:200px;height:45px;font-size:20px;}}/*Option to add custom CSS */</style><style type="text/css">body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gfield#field_submit .gform-button{border-style: solid;height:45px;color:#ffffff;background-color:#48577d;font-size:20px;width:200px;border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;}body #gform_wrapper_7 .gform_footer .gform_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_previous_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_next_button:hover,body #gform_wrapper_7 .gfield#field_submit .gform-button:hover {background-color:#ffffff;color:#48577d;border-style: solid;border-style: solid;}body #gform_wrapper_7 .gform_footer button.mdc-button:hover {background-color:#ffffff;color:#48577d;}body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=text]:not(.gform-text-input-reset),body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=email],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=tel],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=url],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=password],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=number]{border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width:100%;}body #gform_wrapper_7 .gform_body .gform_fields .gfield textarea {border-width:2px;border-color:#48577d;border-style: solid;border-radius: 10px;-web-border-radius: 10px;-moz-border-radius: 10px;}body #gform_wrapper_7 .gform_body .gform_fields .gfield select {border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width: 100%;}body #gform_wrapper_7 .gform_body .gform_fields .gfield .gfield_label {color:#000000;}body #gform_wrapper_7 .gform_body .gform_fields .gfield .gfield_description {color:#000000;}/* Styling for Tablets */@media only screen and ( max-width: 800px ) and ( min-width:481px ) {body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gfield#field_submit .gform-button {border-style: solid;width:200px;height:45px;font-size:20px;}body #gform_wrapper_7 .gform_footer button.mdc-button {width:200px;height:45px;font-size:20px;}}/* Styling for phones */@media only screen and ( max-width: 480px ) {body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gfield#field_submit .gform-button{border-style: solid;width:200px;height:45px;font-size:20px;}body #gform_wrapper_7 .gform_footer button.mdc-button{width:200px;height:45px;font-size:20px;}}/*Option to add custom CSS */</style><style type="text/css">body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gfield#field_submit .gform-button{border-style: solid;height:45px;color:#ffffff;background-color:#48577d;font-size:20px;width:200px;border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;}body #gform_wrapper_7 .gform_footer .gform_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_previous_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_next_button:hover,body #gform_wrapper_7 .gfield#field_submit .gform-button:hover {background-color:#ffffff;color:#48577d;border-style: solid;border-style: solid;}body #gform_wrapper_7 .gform_footer button.mdc-button:hover {background-color:#ffffff;color:#48577d;}body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=text]:not(.gform-text-input-reset),body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=email],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=tel],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=url],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=password],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=number]{border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width:100%;}body #gform_wrapper_7 .gform_body .gform_fields .gfield textarea {border-width:2px;border-color:#48577d;border-style: solid;border-radius: 10px;-web-border-radius: 10px;-moz-border-radius: 10px;}body #gform_wrapper_7 .gform_body .gform_fields .gfield select {border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width: 100%;}body #gform_wrapper_7 .gform_body .gform_fields .gfield .gfield_label {color:#000000;}body #gform_wrapper_7 .gform_body .gform_fields .gfield .gfield_description {color:#000000;}/* Styling for Tablets */@media only screen and ( max-width: 800px ) and ( min-width:481px ) {body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gfield#field_submit .gform-button {border-style: solid;width:200px;height:45px;font-size:20px;}body #gform_wrapper_7 .gform_footer button.mdc-button {width:200px;height:45px;font-size:20px;}}/* Styling for phones */@media only screen and ( max-width: 480px ) {body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gfield#field_submit .gform-button{border-style: solid;width:200px;height:45px;font-size:20px;}body #gform_wrapper_7 .gform_footer button.mdc-button{width:200px;height:45px;font-size:20px;}}/*Option to add custom CSS */</style><style type="text/css">body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gfield#field_submit .gform-button{border-style: solid;height:45px;color:#ffffff;background-color:#48577d;font-size:20px;width:200px;border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;}body #gform_wrapper_7 .gform_footer .gform_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_previous_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_next_button:hover,body #gform_wrapper_7 .gfield#field_submit .gform-button:hover {background-color:#ffffff;color:#48577d;border-style: solid;border-style: solid;}body #gform_wrapper_7 .gform_footer button.mdc-button:hover {background-color:#ffffff;color:#48577d;}body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=text]:not(.gform-text-input-reset),body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=email],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=tel],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=url],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=password],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=number]{border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width:100%;}body #gform_wrapper_7 .gform_body .gform_fields .gfield textarea {border-width:2px;border-color:#48577d;border-style: solid;border-radius: 10px;-web-border-radius: 10px;-moz-border-radius: 10px;}body #gform_wrapper_7 .gform_body .gform_fields .gfield select {border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width: 100%;}body #gform_wrapper_7 .gform_body .gform_fields .gfield .gfield_label {color:#000000;}body #gform_wrapper_7 .gform_body .gform_fields .gfield .gfield_description {color:#000000;}/* Styling for Tablets */@media only screen and ( max-width: 800px ) and ( min-width:481px ) {body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gfield#field_submit .gform-button {border-style: solid;width:200px;height:45px;font-size:20px;}body #gform_wrapper_7 .gform_footer button.mdc-button {width:200px;height:45px;font-size:20px;}}/* Styling for phones */@media only screen and ( max-width: 480px ) {body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gfield#field_submit .gform-button{border-style: solid;width:200px;height:45px;font-size:20px;}body #gform_wrapper_7 .gform_footer button.mdc-button{width:200px;height:45px;font-size:20px;}}/*Option to add custom CSS */</style><style type="text/css">body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gfield#field_submit .gform-button{border-style: solid;height:45px;color:#ffffff;background-color:#48577d;font-size:20px;width:200px;border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;}body #gform_wrapper_7 .gform_footer .gform_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_previous_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_next_button:hover,body #gform_wrapper_7 .gfield#field_submit .gform-button:hover {background-color:#ffffff;color:#48577d;border-style: solid;border-style: solid;}body #gform_wrapper_7 .gform_footer button.mdc-button:hover {background-color:#ffffff;color:#48577d;}body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=text]:not(.gform-text-input-reset),body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=email],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=tel],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=url],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=password],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=number]{border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width:100%;}body #gform_wrapper_7 .gform_body .gform_fields .gfield textarea {border-width:2px;border-color:#48577d;border-style: solid;border-radius: 10px;-web-border-radius: 10px;-moz-border-radius: 10px;}body #gform_wrapper_7 .gform_body .gform_fields .gfield select {border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width: 100%;}body #gform_wrapper_7 .gform_body .gform_fields .gfield .gfield_label {color:#000000;}body #gform_wrapper_7 .gform_body .gform_fields .gfield .gfield_description {color:#000000;}/* Styling for Tablets */@media only screen and ( max-width: 800px ) and ( min-width:481px ) {body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gfield#field_submit .gform-button {border-style: solid;width:200px;height:45px;font-size:20px;}body #gform_wrapper_7 .gform_footer button.mdc-button {width:200px;height:45px;font-size:20px;}}/* Styling for phones */@media only screen and ( max-width: 480px ) {body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gfield#field_submit .gform-button{border-style: solid;width:200px;height:45px;font-size:20px;}body #gform_wrapper_7 .gform_footer button.mdc-button{width:200px;height:45px;font-size:20px;}}/*Option to add custom CSS */</style><style type="text/css">body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gfield#field_submit .gform-button{border-style: solid;height:45px;color:#ffffff;background-color:#48577d;font-size:20px;width:200px;border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;}body #gform_wrapper_7 .gform_footer .gform_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_previous_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_next_button:hover,body #gform_wrapper_7 .gfield#field_submit .gform-button:hover {background-color:#ffffff;color:#48577d;border-style: solid;border-style: solid;}body #gform_wrapper_7 .gform_footer button.mdc-button:hover {background-color:#ffffff;color:#48577d;}body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=text]:not(.gform-text-input-reset),body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=email],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=tel],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=url],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=password],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=number]{border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width:100%;}body #gform_wrapper_7 .gform_body .gform_fields .gfield textarea {border-width:2px;border-color:#48577d;border-style: solid;border-radius: 10px;-web-border-radius: 10px;-moz-border-radius: 10px;}body #gform_wrapper_7 .gform_body .gform_fields .gfield select {border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width: 100%;}body #gform_wrapper_7 .gform_body .gform_fields .gfield .gfield_label {color:#000000;}body #gform_wrapper_7 .gform_body .gform_fields .gfield .gfield_description {color:#000000;}/* Styling for Tablets */@media only screen and ( max-width: 800px ) and ( min-width:481px ) {body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gfield#field_submit .gform-button {border-style: solid;width:200px;height:45px;font-size:20px;}body #gform_wrapper_7 .gform_footer button.mdc-button {width:200px;height:45px;font-size:20px;}}/* Styling for phones */@media only screen and ( max-width: 480px ) {body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gfield#field_submit .gform-button{border-style: solid;width:200px;height:45px;font-size:20px;}body #gform_wrapper_7 .gform_footer button.mdc-button{width:200px;height:45px;font-size:20px;}}/*Option to add custom CSS */</style>BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//Alaska Safe Riders - ECPv6.16.3//NONSGML v1.0//EN
CALSCALE:GREGORIAN
METHOD:PUBLISH
X-WR-CALNAME:Alaska Safe Riders
X-ORIGINAL-URL:https://alaskasaferiders.org
X-WR-CALDESC:Events for Alaska Safe Riders
REFRESH-INTERVAL;VALUE=DURATION:PT1H
X-Robots-Tag:noindex
X-PUBLISHED-TTL:PT1H
BEGIN:VTIMEZONE
TZID:America/Anchorage
BEGIN:DAYLIGHT
TZOFFSETFROM:-0900
TZOFFSETTO:-0800
TZNAME:AKDT
DTSTART:20240310T110000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0800
TZOFFSETTO:-0900
TZNAME:AKST
DTSTART:20241103T100000
END:STANDARD
BEGIN:DAYLIGHT
TZOFFSETFROM:-0900
TZOFFSETTO:-0800
TZNAME:AKDT
DTSTART:20250309T110000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0800
TZOFFSETTO:-0900
TZNAME:AKST
DTSTART:20251102T100000
END:STANDARD
BEGIN:DAYLIGHT
TZOFFSETFROM:-0900
TZOFFSETTO:-0800
TZNAME:AKDT
DTSTART:20260308T110000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0800
TZOFFSETTO:-0900
TZNAME:AKST
DTSTART:20261101T100000
END:STANDARD
BEGIN:DAYLIGHT
TZOFFSETFROM:-0900
TZOFFSETTO:-0800
TZNAME:AKDT
DTSTART:20270314T110000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0800
TZOFFSETTO:-0900
TZNAME:AKST
DTSTART:20271107T100000
END:STANDARD
END:VTIMEZONE
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20260418T150000
DTEND;TZID=America/Anchorage:20260418T160000
DTSTAMP:20260614T002350
CREATED:20251010T234422Z
LAST-MODIFIED:20251212T210849Z
UID:10000107-1776524400-1776528000@alaskasaferiders.org
SUMMARY:emPOWDERed End of Season S'moregesboard - Valdez
DESCRIPTION:emPOWDERed End of Season S’moregesboard🔥\n📅 Saturday\, April 18th\, 2026🕒 3:00 PM📍 Valdez\, Alaska – Mountain Man Hillclimbs (Thompson Pass) \nJoin us at the emPOWDERed End of Season S’moregesboard during the Valdez Mountain Man Hillclimbs for a fun and casual meet-up celebrating the end of another epic riding season! \nWe’re inviting riders of all ages\, genders\, and skill levels to gather between the Alaska Safe Riders and Artwork by Sierra Winter booths for an afternoon of community\, connection\, and sweet treats. \nCome hang by the fire\, roast a few s’mores\, snag some fun door prizes\, and share stories from your season. It’s the perfect chance to meet new friends\, reconnect with familiar faces\, and wrap up the season with the emPOWDERed crew! \nStay tuned for more details as we get closer — we’ll have more s’more activities to come! 🍫🔥 \nBecome a Member of Alaska Safe Riders\nSupport safer\, more enjoyable riding across Alaska and enjoy member perks: \n✨ ASR Basic — $25/yr: Members-only training events; networking; merch offers; automatic prize entries👨‍👩‍👧‍👦 ASR Family — $50/yr: Up to 6 family members; networking with riders & champions; merch offers; prize entries🏫 ASR Schools — $100/yr: School recognition; priority reservations for school trainings; special school offers🏢 ASR Business — $500+/yr: Business recognition; industry networking; visibility at events/workshops; website/newsletter recognition \n👉 Start your journey to safer riding today—join Alaska Safe Riders
URL:https://alaskasaferiders.org/event/empowdered-end-of-season-smoregesboard-valdez/
LOCATION:Thompson Pass\, Mile 27.5 Richardson Highway\, Valdez\, AK\, 99686\, United States
CATEGORIES:Community Expo
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2025/10/Alaska-Safe-Riders-Event-Flyer-ABSW-2025-7.png
ORGANIZER;CN="Sierra Winter":MAILTO:sierrawintersmith@outlook.com
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20260417T160000
DTEND;TZID=America/Anchorage:20260417T170000
DTSTAMP:20260614T002350
CREATED:20260312T221552Z
LAST-MODIFIED:20260312T221552Z
UID:10000139-1776441600-1776445200@alaskasaferiders.org
SUMMARY:Alaska Safe Riders & Soul Rides Beacon Bash
DESCRIPTION:Valdez Mountain Man Hillclimb | Thompson Pass\nThink you can find a buried rider in time? \nJoin Alaska Safe Riders and Soul Rides for the Beacon Bash\, a fun\, fast-paced avalanche rescue challenge designed to test your backcountry skills and reinforce the importance of practicing with your rescue gear. \nParticipants can bring their avalanche rescue kit (beacon\, probe\, and shovel) and take a shot at the challenge with a $5 donation to Alaska Safe Riders\, a 501(c)(3) nonprofit dedicated to expanding avalanche education and motorized backcountry safety across Alaska. \nHere’s the twist:You’ll have 10 minutes — roughly the critical rescue window for avalanche burials — to locate and recover the buried beacon using your gear and your skills. It’s a race against the clock and a reminder that practice saves lives. \nTentative Time:📅 April 17th⏰ Around 4 PM \nNote: The exact timing may shift depending on weather conditions and the Valdez Mountain Man Hillclimb schedule.Please listen for announcements from the race crew or swing by the Alaska Safe Riders\, Soul Rides\, or The Sierra Winter Way booths for the latest updates. \nAlong the way\, participants will also have chances to win door prizes generously donated by: \n\nAlaska Safe Riders\nThe Sierra Winter Way\nAlaska Mining & Diving Supply\nAlaska Motorized Equipment\nAwaken Productions\n\nWhether you’re sharpening your rescue skills or just looking for a fun challenge with friends\, the Beacon Bash is a great way to practice like it matters. \nBecause it does. \nNote: Alaska Safe Riders membership and event registration are NOT required to participate. However\, becoming a member helps us grow avalanche education and backcountry safety programs across Alaska\, and pre-registering helps us communicate directly with you if the event time or date needs to change. \n✨ ASR Basic — $25/yr: Members-only training events; networking; merch offers; automatic prize entries👨‍👩‍👧‍👦 ASR Family — $50/yr: Up to 6 family members; networking with riders & champions; merch offers; prize entries🏫 ASR Schools — $100/yr: School recognition; priority reservations for school trainings; special school offers🏢 ASR Business — $500+/yr: Business recognition; industry networking; visibility at events/workshops; website/newsletter recognition \n👉 Start your journey to safer riding today—join Alaska Safe Riders! \n\n\n                \n                        \n                            Event Master Sign Up\n                             \n                        \n                        URLThis field is for validation purposes and should be left unchanged.Name(Required)\n                            \n                            \n                                                    \n                                                    First\n                                                \n                            \n                            \n                                                    \n                                                    Last\n                                                \n                            \n                        Please enter the participant’s full legal name as it should appear on event records and confirmations.Email(Required)\n                                \n                                    \n                                    Enter Email\n                                \n                                \n                                    \n                                    Confirm Email\n                                \n                                \n                            Enter a valid email address. Event confirmations\, receipts\, gear lists\, and meetup instructions will be sent to this address (If Applicable).Phone(Required)Provide a mobile phone number so we can contact you with important event updates\, schedule changes\, or safety notifications.This field is hidden when viewing the formEvent Tracking KeyEvent Selection(Required)— Please select an event —6.6.26 ATV Summer Safety Riding Clinic6.13.26 ATV Summer Safety Riding Clinic6.20.26 ATV Summer Safety Riding Clinic6.27.26  ATV Summer Safety Riding ClinicSelect the event you are registering for. Please make sure the correct event name is selected before continuing.Member Promo Code ASR Member Discount:\nAlaska Safe Riders members receive a 10% discount on event registrations.\nIf you are already a member\, enter your discount code and click Apply. You can find your promo code on the membership dashboard.\nNot a member yet? Sign up here. Memberships start at $25 per year\, and in many cases the event discount will save you more than the cost of membership.\nThis field is hidden when viewing the formPayment Required Conditional (Admin only)Consent(Required) I agree to receive SMS notifications for transaction confirmations\, reminders\, and promotional offers. Standard messaging rates may apply.By checking this box\, you consent to receive text messages related to your registration\, including payment confirmations\, event reminders\, and important event-related updates.\nEmergency Contact Name(Required)\n                            \n                            \n                                                    \n                                                    First\n                                                \n                            \n                            \n                                                    \n                                                    Last\n                                                \n                            \n                        Emergency Contact Phone Number(Required)Sled InformationParticipants are responsible for providing their own snowmachine and transportation.Do you have any allergies or medical conditions we should know about for your safety?Snowmachine Information(Required)Year\, Make (Ski-Doo\, Polaris\, Arctic Cat\, Yamaha\, etc.)\, and Model and track length. Example 2025 Polaris Khaos Boost Matryx Slash 155Is your snowmachine in good working condition?(Required)\n			\n					\n					Yes\n			\n			\n					\n					No\n			\n			\n					\n					Other\n			If you are unsure\, please select other and describe your concerns. Describe any mechanical issues you are aware of.(Required)Example: the check engine light comes on at 3000 RPM but otherwise runs well throughout the day. Are you comfortable unloading/loading your snowmachine?(Required)\n			\n					\n					Yes\n			\n			\n					\n					No\n			\n			\n					\n					Need Assistance\n			\n			\n					\n					Other\n			Riding ExperienceHelp us understand your current riding experience and the skills you hope to build through our clinics.How long have you been riding snowmachines?(Required)\n			\n					\n					Never\n			\n			\n					\n					A Few Times\n			\n			\n					\n					1-2 Seasons\n			\n			\n					\n					3+ Seasons\n			How would you describe your current skill level?(Required)\n			\n					\n					True Beginner - You are brand new to snowmachines. You may have never ridden or only ridden once or twice. Still learning basic controls\, throttle/brake feel\, balance\, and how the machine responds on snow.\n			\n			\n					\n					Beginner - You are comfortable operating a sled at slow to moderate speeds on groomed trails. You can start\, stop\, and turn with confidence but are still developing body positioning\, throttle control\, and understanding terrain.\n			\n			\n					\n					Advanced Beginner - You ride groomed and ungroomed terrain with growing confidence. You’re beginning to explore off-trail riding\, sidehilling basics\, climbing small features\, and navigating variable snow. Still refining balance\, technique\, and recovery skills.\n			\n			\n					\n					Intermediate - You ride on- and off-trail regularly and can manage varied terrain\, deeper snow\, and moderate sidehills. You understand line choice\, machine control\, and terrain hazards. Ready to work on advanced techniques\, efficiency\, and riding bigger features.\n			\n			\n					\n					Other\n			What type of terrain have you ridden?(Required)\n								\n								Trails\n							\n								\n								Meadows\n							\n								\n								Low-Angle Powder\n							\n								\n								Steeper Terrain\n							\n								\n								High Alpine/Mountains\n							\n								\n								Rivers\n							\n								\n								Glaciers\n							Select all that apply. What are you hoping to improve on during the clinic?(Required)\n								\n								Throttle Control\n							\n								\n								Body Positioning\n							\n								\n								Countersteering\n							Select all that apply. What makes you nervous or unsure when riding?Do you have any injuries or physical limitations we should know about?Your GoalsHelp us understand how we can help you improve your skills in the riding and backcountry industry. What do you hope to gain from this clinic?(Required)What would you define as success from this clinic?(Required)Is there anything else we should know about you?(Required)Gear & PreparednessWe are proud to partner with Alaska Safe Riders to bring these clinics to women in the industry and safety is key! What avalanche gear do you currently have?(Required)\n								\n								Beacon\n							\n								\n								Probe\n							\n								\n								Shovel\n							\n								\n								Snow Saw\n							\n								\n								Airbag Backpage\n							\n								\n								Avy Lung\n							\n								\n								Inclinometer\n							\n								\n								Snow Thermometer/Crystal Card\n							\n								\n								On The Snow Avalanche Training\n							\n								\n								Online Avalanche Training\n							Do you feel confident using your avalanche gear?(Required)\n			\n					\n					Yes\n			\n			\n					\n					No\n			\n			\n					\n					I think so\n			\n			\n					\n					I need assistance\n			Do you have appropriate cold-weather riding gear?(Required)\n			\n					\n					Yes\n			\n			\n					\n					No\n			\n			\n					\n					I think so\n			\n			\n					\n					I need assistance\n			Payment InformationTotal Amount Due\n							\n						This amount reflects the event price and any applicable member discounts. The total will update automatically once your discount code is applied.Billing Address(Required)    \n                    \n                         \n                                        \n                                        Street Address\n                                    \n                                        \n                                        Address Line 2\n                                    \n                                    \n                                    City\n                                 \n                                        AlabamaAlaskaAmerican SamoaArizonaArkansasCaliforniaColoradoConnecticutDelawareDistrict of ColumbiaFloridaGeorgiaGuamHawaiiIdahoIllinoisIndianaIowaKansasKentuckyLouisianaMaineMarylandMassachusettsMichiganMinnesotaMississippiMissouriMontanaNebraskaNevadaNew HampshireNew JerseyNew MexicoNew YorkNorth CarolinaNorth DakotaNorthern Mariana IslandsOhioOklahomaOregonPennsylvaniaPuerto RicoRhode IslandSouth CarolinaSouth DakotaTennesseeTexasUtahU.S. Virgin IslandsVermontVirginiaWashingtonWest VirginiaWisconsinWyomingArmed Forces AmericasArmed Forces EuropeArmed Forces Pacific\n                                        State\n                                      \n                                    \n                                    ZIP Code\n                                \n                    \n                Enter the billing address associated with your payment method. This information is required for payment processing and fraud prevention.Payment Method(Required)\n			Complete your payment using our secure checkout. All transactions are encrypted and processed safely.\n           Save & Continue
URL:https://alaskasaferiders.org/event/alaska-safe-riders-soul-rides-beacon-bash/
LOCATION:Thompson Pass\, Mile 27.5 Richardson Highway\, Valdez\, AK\, 99686\, United States
CATEGORIES:Community Expo
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2026/03/Beacon-Bash.png
ORGANIZER;CN="Sierra Winter":MAILTO:sierrawintersmith@outlook.com
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20260416T090000
DTEND;TZID=America/Anchorage:20260416T170000
DTSTAMP:20260614T002350
CREATED:20260312T214949Z
LAST-MODIFIED:20260330T211952Z
UID:10000140-1776330000-1776358800@alaskasaferiders.org
SUMMARY:April 16th - Soul Rides Motorized Avalanche Skills Training
DESCRIPTION:Thompson Pass\, Alaska | April 16 | 14+ with guardian participation\nStaging Location: Will be communicated April 13 after scouting is complete.\n$100 per rider + Alaska Safe Riders Membership\nThis course normally costs $440 USD\, but we are offering this heavily subsidized training to the Alaska riding community. \nJoin Alaska Safe Riders and Soul Rides for a Motorized Avalanche Skills Training (MAST) 1 course designed specifically for snowmobilers and snow bikers who ride in avalanche terrain.\nThis course provides the foundational knowledge and field skills needed to safely explore the motorized backcountry while understanding avalanche hazards and rescue techniques.\nClass size is limited to 16 riders. \n\nSpecial Opportunity for Avalanche Instructors\nIf you are a certified avalanche instructor and would like to shadow this course for additional motorized-focused training\, we are offering that opportunity free of charge.\nPlease email sierrawintersmith@outlook.com to start that conversation. \n\nWhy Take MAST 1+?\nLearning to drive teaches you the rules of the road. Similarly\, MAST 1 gives snowmobilers and snow bike riders the foundational skills needed to navigate the backcountry safely.\nYou wouldn’t hit the highway without understanding stop signs or safe passing zones. In the same way\, venturing into avalanche terrain can be dangerous without understanding how snow\, slope\, and weather interact.\nMAST 1 is taught by industry-leading avalanche professionals who guide riders step-by-step to ensure each concept is understood before applying it in the field. \n\nWho Should Attend\nMAST 1 is designed for snowmobile and snow bike riders who: \n\nAre new to motorized backcountry travel\nWant to build a strong avalanche safety foundation\nWant confidence in identifying hazards before riding\n\nIf you or your group already have some backcountry experience but haven’t refreshed your avalanche skills recently\, consider upgrading to MAST 1+\, which includes additional field time for deeper skill reinforcement. \n\nWhat You’ll Learn\nDuring this training\, riders will absorb and apply critical avalanche safety knowledge\, including how to: \nAvalanche Terrain Recognition\n\nIdentify avalanche terrain\nUnderstand slab avalanche mechanics\nRecognize slope angles and terrain traps\n\nSnowpack & Weather Awareness\n\nUnderstand how changing weather affects snowpack stability\nRecognize warning signs of unstable conditions\n\nAvalanche Rescue Skills\n\nUse avalanche rescue gear effectively\nDevelop a motorized companion rescue plan\n\nSafer Riding Practices\n\nCommunicate effectively within riding groups\nPractice riding etiquette that reduces risk for yourself and others\n\nThese skills ensure every rider leaves prepared to make informed and safer decisions in avalanche terrain. \n\nCancellation Policy\nDue to the limited number of seats available:\nCancellations made after April 1st are non-refundable.\nYour registration fee will instead be reinvested into future Alaska Safe Riders safety programs and education opportunities. \n\nRequired Online Coursework\nParticipants must complete Soul Rides Intro to Motorized Avalanche Training before the field course.\nOnce registered\, you will receive a promo code to complete the online coursework for free prior to the on-snow training. \n\nRequired Gear\n\nReliable snowmachine or snowbike\nAvalanche beacon\nProbe\nShovel\nLayered riding gear for changing conditions\nExtra warm gear\nLunch / food for the day\nPlenty of water\n\nRecommended Gear\n\nRadio\nAvy Bag\n\n\nCommunity Commitment\nWe encourage riders who complete this training to consider supporting Alaska Safe Riders next season by hosting a backcountry ride or community ride event. \nThese rides help:\nGrow Alaska Safe Riders membership\nBuild stronger connections in the riding community\nContinue spreading avalanche education across Alaska \nDetails can be discussed later — we simply ask riders to consider helping us keep the safety culture growing.\n \n⚠️ Alaska Safe Riders membership is required to participate.\nWe can’t wait to shred with you all and spend an unforgettable weekend riding\, learning\, and connecting in the mountains. 🏔️✨ \n✨ ASR Basic — $25/yr: Members-only training events; networking; merch offers; automatic prize entries👨‍👩‍👧‍👦 ASR Family — $50/yr: Up to 6 family members; networking with riders & champions; merch offers; prize entries🏫 ASR Schools — $100/yr: School recognition; priority reservations for school trainings; special school offers🏢 ASR Business — $500+/yr: Business recognition; industry networking; visibility at events/workshops; website/newsletter recognition \n👉 Start your journey to safer riding today—join Alaska Safe Riders! \nThank You to Our Event Sponsors & Supporters\nThis program would not be possible without the support of our partners who believe in growing avalanche education in Alaska’s riding community. \nSpecial thanks to: \n\nAlaska Motorsports & Equipment\nAlaska Mining & Diving Supply\nTeam CC Ski-Doo\nDelta Leasing\nThe Sierra Winter Way\nUptrack Alliance\nSoul Rides\nAlaska Safe Riders leadership\n\nYour support helps bring real motorized avalanche education to Alaska riders and continues building a stronger culture of safety in the backcountry. \n\n\n                \n                        \n                            Event Master Sign Up\n                             \n                        \n                        NameThis field is for validation purposes and should be left unchanged.Name(Required)\n                            \n                            \n                                                    \n                                                    First\n                                                \n                            \n                            \n                                                    \n                                                    Last\n                                                \n                            \n                        Please enter the participant’s full legal name as it should appear on event records and confirmations.Email(Required)\n                                \n                                    \n                                    Enter Email\n                                \n                                \n                                    \n                                    Confirm Email\n                                \n                                \n                            Enter a valid email address. Event confirmations\, receipts\, gear lists\, and meetup instructions will be sent to this address (If Applicable).Phone(Required)Provide a mobile phone number so we can contact you with important event updates\, schedule changes\, or safety notifications.This field is hidden when viewing the formEvent Tracking KeyEvent Selection(Required)— Please select an event —6.6.26 ATV Summer Safety Riding Clinic6.13.26 ATV Summer Safety Riding Clinic6.20.26 ATV Summer Safety Riding Clinic6.27.26  ATV Summer Safety Riding ClinicSelect the event you are registering for. Please make sure the correct event name is selected before continuing.Member Promo Code ASR Member Discount:\nAlaska Safe Riders members receive a 10% discount on event registrations.\nIf you are already a member\, enter your discount code and click Apply. You can find your promo code on the membership dashboard.\nNot a member yet? Sign up here. Memberships start at $25 per year\, and in many cases the event discount will save you more than the cost of membership.\nThis field is hidden when viewing the formPayment Required Conditional (Admin only)Consent(Required) I agree to receive SMS notifications for transaction confirmations\, reminders\, and promotional offers. Standard messaging rates may apply.By checking this box\, you consent to receive text messages related to your registration\, including payment confirmations\, event reminders\, and important event-related updates.\nEmergency Contact Name(Required)\n                            \n                            \n                                                    \n                                                    First\n                                                \n                            \n                            \n                                                    \n                                                    Last\n                                                \n                            \n                        Emergency Contact Phone Number(Required)Sled InformationParticipants are responsible for providing their own snowmachine and transportation.Do you have any allergies or medical conditions we should know about for your safety?Snowmachine Information(Required)Year\, Make (Ski-Doo\, Polaris\, Arctic Cat\, Yamaha\, etc.)\, and Model and track length. Example 2025 Polaris Khaos Boost Matryx Slash 155Is your snowmachine in good working condition?(Required)\n			\n					\n					Yes\n			\n			\n					\n					No\n			\n			\n					\n					Other\n			If you are unsure\, please select other and describe your concerns. Describe any mechanical issues you are aware of.(Required)Example: the check engine light comes on at 3000 RPM but otherwise runs well throughout the day. Are you comfortable unloading/loading your snowmachine?(Required)\n			\n					\n					Yes\n			\n			\n					\n					No\n			\n			\n					\n					Need Assistance\n			\n			\n					\n					Other\n			Riding ExperienceHelp us understand your current riding experience and the skills you hope to build through our clinics.How long have you been riding snowmachines?(Required)\n			\n					\n					Never\n			\n			\n					\n					A Few Times\n			\n			\n					\n					1-2 Seasons\n			\n			\n					\n					3+ Seasons\n			How would you describe your current skill level?(Required)\n			\n					\n					True Beginner - You are brand new to snowmachines. You may have never ridden or only ridden once or twice. Still learning basic controls\, throttle/brake feel\, balance\, and how the machine responds on snow.\n			\n			\n					\n					Beginner - You are comfortable operating a sled at slow to moderate speeds on groomed trails. You can start\, stop\, and turn with confidence but are still developing body positioning\, throttle control\, and understanding terrain.\n			\n			\n					\n					Advanced Beginner - You ride groomed and ungroomed terrain with growing confidence. You’re beginning to explore off-trail riding\, sidehilling basics\, climbing small features\, and navigating variable snow. Still refining balance\, technique\, and recovery skills.\n			\n			\n					\n					Intermediate - You ride on- and off-trail regularly and can manage varied terrain\, deeper snow\, and moderate sidehills. You understand line choice\, machine control\, and terrain hazards. Ready to work on advanced techniques\, efficiency\, and riding bigger features.\n			\n			\n					\n					Other\n			What type of terrain have you ridden?(Required)\n								\n								Trails\n							\n								\n								Meadows\n							\n								\n								Low-Angle Powder\n							\n								\n								Steeper Terrain\n							\n								\n								High Alpine/Mountains\n							\n								\n								Rivers\n							\n								\n								Glaciers\n							Select all that apply. What are you hoping to improve on during the clinic?(Required)\n								\n								Throttle Control\n							\n								\n								Body Positioning\n							\n								\n								Countersteering\n							Select all that apply. What makes you nervous or unsure when riding?Do you have any injuries or physical limitations we should know about?Your GoalsHelp us understand how we can help you improve your skills in the riding and backcountry industry. What do you hope to gain from this clinic?(Required)What would you define as success from this clinic?(Required)Is there anything else we should know about you?(Required)Gear & PreparednessWe are proud to partner with Alaska Safe Riders to bring these clinics to women in the industry and safety is key! What avalanche gear do you currently have?(Required)\n								\n								Beacon\n							\n								\n								Probe\n							\n								\n								Shovel\n							\n								\n								Snow Saw\n							\n								\n								Airbag Backpage\n							\n								\n								Avy Lung\n							\n								\n								Inclinometer\n							\n								\n								Snow Thermometer/Crystal Card\n							\n								\n								On The Snow Avalanche Training\n							\n								\n								Online Avalanche Training\n							Do you feel confident using your avalanche gear?(Required)\n			\n					\n					Yes\n			\n			\n					\n					No\n			\n			\n					\n					I think so\n			\n			\n					\n					I need assistance\n			Do you have appropriate cold-weather riding gear?(Required)\n			\n					\n					Yes\n			\n			\n					\n					No\n			\n			\n					\n					I think so\n			\n			\n					\n					I need assistance\n			Payment InformationTotal Amount Due\n							\n						This amount reflects the event price and any applicable member discounts. The total will update automatically once your discount code is applied.Billing Address(Required)    \n                    \n                         \n                                        \n                                        Street Address\n                                    \n                                        \n                                        Address Line 2\n                                    \n                                    \n                                    City\n                                 \n                                        AlabamaAlaskaAmerican SamoaArizonaArkansasCaliforniaColoradoConnecticutDelawareDistrict of ColumbiaFloridaGeorgiaGuamHawaiiIdahoIllinoisIndianaIowaKansasKentuckyLouisianaMaineMarylandMassachusettsMichiganMinnesotaMississippiMissouriMontanaNebraskaNevadaNew HampshireNew JerseyNew MexicoNew YorkNorth CarolinaNorth DakotaNorthern Mariana IslandsOhioOklahomaOregonPennsylvaniaPuerto RicoRhode IslandSouth CarolinaSouth DakotaTennesseeTexasUtahU.S. Virgin IslandsVermontVirginiaWashingtonWest VirginiaWisconsinWyomingArmed Forces AmericasArmed Forces EuropeArmed Forces Pacific\n                                        State\n                                      \n                                    \n                                    ZIP Code\n                                \n                    \n                Enter the billing address associated with your payment method. This information is required for payment processing and fraud prevention.Payment Method(Required)\n			Complete your payment using our secure checkout. All transactions are encrypted and processed safely.\n           Save & Continue
URL:https://alaskasaferiders.org/event/soul-rides-motorized-avalanche-skills-training-mast-1-2/
LOCATION:Thompson Pass\, Mile 27.5 Richardson Highway\, Valdez\, AK\, 99686\, United States
CATEGORIES:Field Class
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2026/03/MAST1-Event-Promotion-1-1.png
ORGANIZER;CN="Sierra Winter":MAILTO:sierrawintersmith@outlook.com
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20260415T090000
DTEND;TZID=America/Anchorage:20260415T170000
DTSTAMP:20260614T002350
CREATED:20260330T202455Z
LAST-MODIFIED:20260330T211821Z
UID:10000143-1776243600-1776272400@alaskasaferiders.org
SUMMARY:April 15th - Soul Rides Motorized Avalanche Skills Training
DESCRIPTION:Thompson Pass\, Alaska | April 15 | 14+ with guardian participation\nStaging Location: Will be communicated April 13 after scouting is complete.\n$100 per rider + Alaska Safe Riders Membership\nThis course normally costs $440 USD\, but we are offering this heavily subsidized training to the Alaska riding community. \nJoin Alaska Safe Riders and Soul Rides for a Motorized Avalanche Skills Training (MAST) 1 course designed specifically for snowmobilers and snow bikers who ride in avalanche terrain.\nThis course provides the foundational knowledge and field skills needed to safely explore the motorized backcountry while understanding avalanche hazards and rescue techniques.\nClass size is limited to 16 riders. \n\nSpecial Opportunity for Avalanche Instructors\nIf you are a certified avalanche instructor and would like to shadow this course for additional motorized-focused training\, we are offering that opportunity free of charge.\nPlease email sierrawintersmith@outlook.com to start that conversation. \n\nWhy Take MAST 1+?\nLearning to drive teaches you the rules of the road. Similarly\, MAST 1 gives snowmobilers and snow bike riders the foundational skills needed to navigate the backcountry safely.\nYou wouldn’t hit the highway without understanding stop signs or safe passing zones. In the same way\, venturing into avalanche terrain can be dangerous without understanding how snow\, slope\, and weather interact.\nMAST 1 is taught by industry-leading avalanche professionals who guide riders step-by-step to ensure each concept is understood before applying it in the field. \n\nWho Should Attend\nMAST 1 is designed for snowmobile and snow bike riders who: \n\nAre new to motorized backcountry travel\nWant to build a strong avalanche safety foundation\nWant confidence in identifying hazards before riding\n\nIf you or your group already have some backcountry experience but haven’t refreshed your avalanche skills recently\, consider upgrading to MAST 1+\, which includes additional field time for deeper skill reinforcement. \n\nWhat You’ll Learn\nDuring this training\, riders will absorb and apply critical avalanche safety knowledge\, including how to: \nAvalanche Terrain Recognition\n\nIdentify avalanche terrain\nUnderstand slab avalanche mechanics\nRecognize slope angles and terrain traps\n\nSnowpack & Weather Awareness\n\nUnderstand how changing weather affects snowpack stability\nRecognize warning signs of unstable conditions\n\nAvalanche Rescue Skills\n\nUse avalanche rescue gear effectively\nDevelop a motorized companion rescue plan\n\nSafer Riding Practices\n\nCommunicate effectively within riding groups\nPractice riding etiquette that reduces risk for yourself and others\n\nThese skills ensure every rider leaves prepared to make informed and safer decisions in avalanche terrain. \n\nCancellation Policy\nDue to the limited number of seats available:\nCancellations made after April 1st are non-refundable.\nYour registration fee will instead be reinvested into future Alaska Safe Riders safety programs and education opportunities. \n\nRequired Online Coursework\nParticipants must complete Soul Rides Intro to Motorized Avalanche Training before the field course.\nOnce registered\, you will receive a promo code to complete the online coursework for free prior to the on-snow training. \n\nRequired Gear\n\nReliable snowmachine or snowbike\nAvalanche beacon\nProbe\nShovel\nLayered riding gear for changing conditions\nExtra warm gear\nLunch / food for the day\nPlenty of water\n\nRecommended Gear\n\nRadio\nAvy Bag\n\n\nCommunity Commitment\nWe encourage riders who complete this training to consider supporting Alaska Safe Riders next season by hosting a backcountry ride or community ride event. \nThese rides help:\nGrow Alaska Safe Riders membership\nBuild stronger connections in the riding community\nContinue spreading avalanche education across Alaska \nDetails can be discussed later — we simply ask riders to consider helping us keep the safety culture growing.\n \n⚠️ Alaska Safe Riders membership is required to participate.\nWe can’t wait to shred with you all and spend an unforgettable weekend riding\, learning\, and connecting in the mountains. 🏔️✨ \n✨ ASR Basic — $25/yr: Members-only training events; networking; merch offers; automatic prize entries👨‍👩‍👧‍👦 ASR Family — $50/yr: Up to 6 family members; networking with riders & champions; merch offers; prize entries🏫 ASR Schools — $100/yr: School recognition; priority reservations for school trainings; special school offers🏢 ASR Business — $500+/yr: Business recognition; industry networking; visibility at events/workshops; website/newsletter recognition \n👉 Start your journey to safer riding today—join Alaska Safe Riders! \nThank You to Our Event Sponsors & Supporters\nThis program would not be possible without the support of our partners who believe in growing avalanche education in Alaska’s riding community. \nSpecial thanks to: \n\nAlaska Motorsports & Equipment\nAlaska Mining & Diving Supply\nTeam CC Ski-Doo\nDelta Leasing\nThe Sierra Winter Way\nUptrack Alliance\nSoul Rides\nAlaska Safe Riders leadership\n\nYour support helps bring real motorized avalanche education to Alaska riders and continues building a stronger culture of safety in the backcountry. \n\n\n                \n                        \n                            Event Master Sign Up\n                             \n                        \n                        NameThis field is for validation purposes and should be left unchanged.Name(Required)\n                            \n                            \n                                                    \n                                                    First\n                                                \n                            \n                            \n                                                    \n                                                    Last\n                                                \n                            \n                        Please enter the participant’s full legal name as it should appear on event records and confirmations.Email(Required)\n                                \n                                    \n                                    Enter Email\n                                \n                                \n                                    \n                                    Confirm Email\n                                \n                                \n                            Enter a valid email address. Event confirmations\, receipts\, gear lists\, and meetup instructions will be sent to this address (If Applicable).Phone(Required)Provide a mobile phone number so we can contact you with important event updates\, schedule changes\, or safety notifications.This field is hidden when viewing the formEvent Tracking KeyEvent Selection(Required)— Please select an event —6.6.26 ATV Summer Safety Riding Clinic6.13.26 ATV Summer Safety Riding Clinic6.20.26 ATV Summer Safety Riding Clinic6.27.26  ATV Summer Safety Riding ClinicSelect the event you are registering for. Please make sure the correct event name is selected before continuing.Member Promo Code ASR Member Discount:\nAlaska Safe Riders members receive a 10% discount on event registrations.\nIf you are already a member\, enter your discount code and click Apply. You can find your promo code on the membership dashboard.\nNot a member yet? Sign up here. Memberships start at $25 per year\, and in many cases the event discount will save you more than the cost of membership.\nThis field is hidden when viewing the formPayment Required Conditional (Admin only)Consent(Required) I agree to receive SMS notifications for transaction confirmations\, reminders\, and promotional offers. Standard messaging rates may apply.By checking this box\, you consent to receive text messages related to your registration\, including payment confirmations\, event reminders\, and important event-related updates.\nEmergency Contact Name(Required)\n                            \n                            \n                                                    \n                                                    First\n                                                \n                            \n                            \n                                                    \n                                                    Last\n                                                \n                            \n                        Emergency Contact Phone Number(Required)Sled InformationParticipants are responsible for providing their own snowmachine and transportation.Do you have any allergies or medical conditions we should know about for your safety?Snowmachine Information(Required)Year\, Make (Ski-Doo\, Polaris\, Arctic Cat\, Yamaha\, etc.)\, and Model and track length. Example 2025 Polaris Khaos Boost Matryx Slash 155Is your snowmachine in good working condition?(Required)\n			\n					\n					Yes\n			\n			\n					\n					No\n			\n			\n					\n					Other\n			If you are unsure\, please select other and describe your concerns. Describe any mechanical issues you are aware of.(Required)Example: the check engine light comes on at 3000 RPM but otherwise runs well throughout the day. Are you comfortable unloading/loading your snowmachine?(Required)\n			\n					\n					Yes\n			\n			\n					\n					No\n			\n			\n					\n					Need Assistance\n			\n			\n					\n					Other\n			Riding ExperienceHelp us understand your current riding experience and the skills you hope to build through our clinics.How long have you been riding snowmachines?(Required)\n			\n					\n					Never\n			\n			\n					\n					A Few Times\n			\n			\n					\n					1-2 Seasons\n			\n			\n					\n					3+ Seasons\n			How would you describe your current skill level?(Required)\n			\n					\n					True Beginner - You are brand new to snowmachines. You may have never ridden or only ridden once or twice. Still learning basic controls\, throttle/brake feel\, balance\, and how the machine responds on snow.\n			\n			\n					\n					Beginner - You are comfortable operating a sled at slow to moderate speeds on groomed trails. You can start\, stop\, and turn with confidence but are still developing body positioning\, throttle control\, and understanding terrain.\n			\n			\n					\n					Advanced Beginner - You ride groomed and ungroomed terrain with growing confidence. You’re beginning to explore off-trail riding\, sidehilling basics\, climbing small features\, and navigating variable snow. Still refining balance\, technique\, and recovery skills.\n			\n			\n					\n					Intermediate - You ride on- and off-trail regularly and can manage varied terrain\, deeper snow\, and moderate sidehills. You understand line choice\, machine control\, and terrain hazards. Ready to work on advanced techniques\, efficiency\, and riding bigger features.\n			\n			\n					\n					Other\n			What type of terrain have you ridden?(Required)\n								\n								Trails\n							\n								\n								Meadows\n							\n								\n								Low-Angle Powder\n							\n								\n								Steeper Terrain\n							\n								\n								High Alpine/Mountains\n							\n								\n								Rivers\n							\n								\n								Glaciers\n							Select all that apply. What are you hoping to improve on during the clinic?(Required)\n								\n								Throttle Control\n							\n								\n								Body Positioning\n							\n								\n								Countersteering\n							Select all that apply. What makes you nervous or unsure when riding?Do you have any injuries or physical limitations we should know about?Your GoalsHelp us understand how we can help you improve your skills in the riding and backcountry industry. What do you hope to gain from this clinic?(Required)What would you define as success from this clinic?(Required)Is there anything else we should know about you?(Required)Gear & PreparednessWe are proud to partner with Alaska Safe Riders to bring these clinics to women in the industry and safety is key! What avalanche gear do you currently have?(Required)\n								\n								Beacon\n							\n								\n								Probe\n							\n								\n								Shovel\n							\n								\n								Snow Saw\n							\n								\n								Airbag Backpage\n							\n								\n								Avy Lung\n							\n								\n								Inclinometer\n							\n								\n								Snow Thermometer/Crystal Card\n							\n								\n								On The Snow Avalanche Training\n							\n								\n								Online Avalanche Training\n							Do you feel confident using your avalanche gear?(Required)\n			\n					\n					Yes\n			\n			\n					\n					No\n			\n			\n					\n					I think so\n			\n			\n					\n					I need assistance\n			Do you have appropriate cold-weather riding gear?(Required)\n			\n					\n					Yes\n			\n			\n					\n					No\n			\n			\n					\n					I think so\n			\n			\n					\n					I need assistance\n			Payment InformationTotal Amount Due\n							\n						This amount reflects the event price and any applicable member discounts. The total will update automatically once your discount code is applied.Billing Address(Required)    \n                    \n                         \n                                        \n                                        Street Address\n                                    \n                                        \n                                        Address Line 2\n                                    \n                                    \n                                    City\n                                 \n                                        AlabamaAlaskaAmerican SamoaArizonaArkansasCaliforniaColoradoConnecticutDelawareDistrict of ColumbiaFloridaGeorgiaGuamHawaiiIdahoIllinoisIndianaIowaKansasKentuckyLouisianaMaineMarylandMassachusettsMichiganMinnesotaMississippiMissouriMontanaNebraskaNevadaNew HampshireNew JerseyNew MexicoNew YorkNorth CarolinaNorth DakotaNorthern Mariana IslandsOhioOklahomaOregonPennsylvaniaPuerto RicoRhode IslandSouth CarolinaSouth DakotaTennesseeTexasUtahU.S. Virgin IslandsVermontVirginiaWashingtonWest VirginiaWisconsinWyomingArmed Forces AmericasArmed Forces EuropeArmed Forces Pacific\n                                        State\n                                      \n                                    \n                                    ZIP Code\n                                \n                    \n                Enter the billing address associated with your payment method. This information is required for payment processing and fraud prevention.Payment Method(Required)\n			Complete your payment using our secure checkout. All transactions are encrypted and processed safely.\n           Save & Continue
URL:https://alaskasaferiders.org/event/soul-rides-motorized-avalanche-skills-training-april-15th/
LOCATION:Thompson Pass\, Mile 27.5 Richardson Highway\, Valdez\, AK\, 99686\, United States
CATEGORIES:Field Class
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2026/03/MAST1-Event-Promotion-1-1.png
ORGANIZER;CN="Sierra Winter":MAILTO:sierrawintersmith@outlook.com
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20260414T090000
DTEND;TZID=America/Anchorage:20260414T170000
DTSTAMP:20260614T002350
CREATED:20260330T202554Z
LAST-MODIFIED:20260330T211755Z
UID:10000144-1776157200-1776186000@alaskasaferiders.org
SUMMARY:April 14th - Soul Rides Motorized Avalanche Skills Training
DESCRIPTION:Thompson Pass\, Alaska | April 14 | 14+ with guardian participation\nStaging Location: Will be communicated April 13 after scouting is complete.\n$100 per rider + Alaska Safe Riders Membership\nThis course normally costs $440 USD\, but we are offering this heavily subsidized training to the Alaska riding community. \nJoin Alaska Safe Riders and Soul Rides for a Motorized Avalanche Skills Training (MAST) 1 course designed specifically for snowmobilers and snow bikers who ride in avalanche terrain.\nThis course provides the foundational knowledge and field skills needed to safely explore the motorized backcountry while understanding avalanche hazards and rescue techniques.\nClass size is limited to 16 riders. \n\nSpecial Opportunity for Avalanche Instructors\nIf you are a certified avalanche instructor and would like to shadow this course for additional motorized-focused training\, we are offering that opportunity free of charge.\nPlease email sierrawintersmith@outlook.com to start that conversation. \n\nWhy Take MAST 1+?\nLearning to drive teaches you the rules of the road. Similarly\, MAST 1 gives snowmobilers and snow bike riders the foundational skills needed to navigate the backcountry safely.\nYou wouldn’t hit the highway without understanding stop signs or safe passing zones. In the same way\, venturing into avalanche terrain can be dangerous without understanding how snow\, slope\, and weather interact.\nMAST 1 is taught by industry-leading avalanche professionals who guide riders step-by-step to ensure each concept is understood before applying it in the field. \n\nWho Should Attend\nMAST 1 is designed for snowmobile and snow bike riders who: \n\nAre new to motorized backcountry travel\nWant to build a strong avalanche safety foundation\nWant confidence in identifying hazards before riding\n\nIf you or your group already have some backcountry experience but haven’t refreshed your avalanche skills recently\, consider upgrading to MAST 1+\, which includes additional field time for deeper skill reinforcement. \n\nWhat You’ll Learn\nDuring this training\, riders will absorb and apply critical avalanche safety knowledge\, including how to: \nAvalanche Terrain Recognition\n\nIdentify avalanche terrain\nUnderstand slab avalanche mechanics\nRecognize slope angles and terrain traps\n\nSnowpack & Weather Awareness\n\nUnderstand how changing weather affects snowpack stability\nRecognize warning signs of unstable conditions\n\nAvalanche Rescue Skills\n\nUse avalanche rescue gear effectively\nDevelop a motorized companion rescue plan\n\nSafer Riding Practices\n\nCommunicate effectively within riding groups\nPractice riding etiquette that reduces risk for yourself and others\n\nThese skills ensure every rider leaves prepared to make informed and safer decisions in avalanche terrain. \n\nCancellation Policy\nDue to the limited number of seats available:\nCancellations made after April 1st are non-refundable.\nYour registration fee will instead be reinvested into future Alaska Safe Riders safety programs and education opportunities. \n\nRequired Online Coursework\nParticipants must complete Soul Rides Intro to Motorized Avalanche Training before the field course.\nOnce registered\, you will receive a promo code to complete the online coursework for free prior to the on-snow training. \n\nRequired Gear\n\nReliable snowmachine or snowbike\nAvalanche beacon\nProbe\nShovel\nLayered riding gear for changing conditions\nExtra warm gear\nLunch / food for the day\nPlenty of water\n\nRecommended Gear\n\nRadio\nAvy Bag\n\n\nCommunity Commitment\nWe encourage riders who complete this training to consider supporting Alaska Safe Riders next season by hosting a backcountry ride or community ride event. \nThese rides help:\nGrow Alaska Safe Riders membership\nBuild stronger connections in the riding community\nContinue spreading avalanche education across Alaska \nDetails can be discussed later — we simply ask riders to consider helping us keep the safety culture growing.\n \n⚠️ Alaska Safe Riders membership is required to participate.\nWe can’t wait to shred with you all and spend an unforgettable weekend riding\, learning\, and connecting in the mountains. 🏔️✨ \n✨ ASR Basic — $25/yr: Members-only training events; networking; merch offers; automatic prize entries👨‍👩‍👧‍👦 ASR Family — $50/yr: Up to 6 family members; networking with riders & champions; merch offers; prize entries🏫 ASR Schools — $100/yr: School recognition; priority reservations for school trainings; special school offers🏢 ASR Business — $500+/yr: Business recognition; industry networking; visibility at events/workshops; website/newsletter recognition \n👉 Start your journey to safer riding today—join Alaska Safe Riders! \nThank You to Our Event Sponsors & Supporters\nThis program would not be possible without the support of our partners who believe in growing avalanche education in Alaska’s riding community. \nSpecial thanks to: \n\nAlaska Motorsports & Equipment\nAlaska Mining & Diving Supply\nTeam CC Ski-Doo\nDelta Leasing\nThe Sierra Winter Way\nUptrack Alliance\nSoul Rides\nAlaska Safe Riders leadership\n\nYour support helps bring real motorized avalanche education to Alaska riders and continues building a stronger culture of safety in the backcountry. \n\n\n                \n                        \n                            Event Master Sign Up\n                             \n                        \n                        URLThis field is for validation purposes and should be left unchanged.Name(Required)\n                            \n                            \n                                                    \n                                                    First\n                                                \n                            \n                            \n                                                    \n                                                    Last\n                                                \n                            \n                        Please enter the participant’s full legal name as it should appear on event records and confirmations.Email(Required)\n                                \n                                    \n                                    Enter Email\n                                \n                                \n                                    \n                                    Confirm Email\n                                \n                                \n                            Enter a valid email address. Event confirmations\, receipts\, gear lists\, and meetup instructions will be sent to this address (If Applicable).Phone(Required)Provide a mobile phone number so we can contact you with important event updates\, schedule changes\, or safety notifications.This field is hidden when viewing the formEvent Tracking KeyEvent Selection(Required)— Please select an event —6.6.26 ATV Summer Safety Riding Clinic6.13.26 ATV Summer Safety Riding Clinic6.20.26 ATV Summer Safety Riding Clinic6.27.26  ATV Summer Safety Riding ClinicSelect the event you are registering for. Please make sure the correct event name is selected before continuing.Member Promo Code ASR Member Discount:\nAlaska Safe Riders members receive a 10% discount on event registrations.\nIf you are already a member\, enter your discount code and click Apply. You can find your promo code on the membership dashboard.\nNot a member yet? Sign up here. Memberships start at $25 per year\, and in many cases the event discount will save you more than the cost of membership.\nThis field is hidden when viewing the formPayment Required Conditional (Admin only)Consent(Required) I agree to receive SMS notifications for transaction confirmations\, reminders\, and promotional offers. Standard messaging rates may apply.By checking this box\, you consent to receive text messages related to your registration\, including payment confirmations\, event reminders\, and important event-related updates.\nEmergency Contact Name(Required)\n                            \n                            \n                                                    \n                                                    First\n                                                \n                            \n                            \n                                                    \n                                                    Last\n                                                \n                            \n                        Emergency Contact Phone Number(Required)Sled InformationParticipants are responsible for providing their own snowmachine and transportation.Do you have any allergies or medical conditions we should know about for your safety?Snowmachine Information(Required)Year\, Make (Ski-Doo\, Polaris\, Arctic Cat\, Yamaha\, etc.)\, and Model and track length. Example 2025 Polaris Khaos Boost Matryx Slash 155Is your snowmachine in good working condition?(Required)\n			\n					\n					Yes\n			\n			\n					\n					No\n			\n			\n					\n					Other\n			If you are unsure\, please select other and describe your concerns. Describe any mechanical issues you are aware of.(Required)Example: the check engine light comes on at 3000 RPM but otherwise runs well throughout the day. Are you comfortable unloading/loading your snowmachine?(Required)\n			\n					\n					Yes\n			\n			\n					\n					No\n			\n			\n					\n					Need Assistance\n			\n			\n					\n					Other\n			Riding ExperienceHelp us understand your current riding experience and the skills you hope to build through our clinics.How long have you been riding snowmachines?(Required)\n			\n					\n					Never\n			\n			\n					\n					A Few Times\n			\n			\n					\n					1-2 Seasons\n			\n			\n					\n					3+ Seasons\n			How would you describe your current skill level?(Required)\n			\n					\n					True Beginner - You are brand new to snowmachines. You may have never ridden or only ridden once or twice. Still learning basic controls\, throttle/brake feel\, balance\, and how the machine responds on snow.\n			\n			\n					\n					Beginner - You are comfortable operating a sled at slow to moderate speeds on groomed trails. You can start\, stop\, and turn with confidence but are still developing body positioning\, throttle control\, and understanding terrain.\n			\n			\n					\n					Advanced Beginner - You ride groomed and ungroomed terrain with growing confidence. You’re beginning to explore off-trail riding\, sidehilling basics\, climbing small features\, and navigating variable snow. Still refining balance\, technique\, and recovery skills.\n			\n			\n					\n					Intermediate - You ride on- and off-trail regularly and can manage varied terrain\, deeper snow\, and moderate sidehills. You understand line choice\, machine control\, and terrain hazards. Ready to work on advanced techniques\, efficiency\, and riding bigger features.\n			\n			\n					\n					Other\n			What type of terrain have you ridden?(Required)\n								\n								Trails\n							\n								\n								Meadows\n							\n								\n								Low-Angle Powder\n							\n								\n								Steeper Terrain\n							\n								\n								High Alpine/Mountains\n							\n								\n								Rivers\n							\n								\n								Glaciers\n							Select all that apply. What are you hoping to improve on during the clinic?(Required)\n								\n								Throttle Control\n							\n								\n								Body Positioning\n							\n								\n								Countersteering\n							Select all that apply. What makes you nervous or unsure when riding?Do you have any injuries or physical limitations we should know about?Your GoalsHelp us understand how we can help you improve your skills in the riding and backcountry industry. What do you hope to gain from this clinic?(Required)What would you define as success from this clinic?(Required)Is there anything else we should know about you?(Required)Gear & PreparednessWe are proud to partner with Alaska Safe Riders to bring these clinics to women in the industry and safety is key! What avalanche gear do you currently have?(Required)\n								\n								Beacon\n							\n								\n								Probe\n							\n								\n								Shovel\n							\n								\n								Snow Saw\n							\n								\n								Airbag Backpage\n							\n								\n								Avy Lung\n							\n								\n								Inclinometer\n							\n								\n								Snow Thermometer/Crystal Card\n							\n								\n								On The Snow Avalanche Training\n							\n								\n								Online Avalanche Training\n							Do you feel confident using your avalanche gear?(Required)\n			\n					\n					Yes\n			\n			\n					\n					No\n			\n			\n					\n					I think so\n			\n			\n					\n					I need assistance\n			Do you have appropriate cold-weather riding gear?(Required)\n			\n					\n					Yes\n			\n			\n					\n					No\n			\n			\n					\n					I think so\n			\n			\n					\n					I need assistance\n			Payment InformationTotal Amount Due\n							\n						This amount reflects the event price and any applicable member discounts. The total will update automatically once your discount code is applied.Billing Address(Required)    \n                    \n                         \n                                        \n                                        Street Address\n                                    \n                                        \n                                        Address Line 2\n                                    \n                                    \n                                    City\n                                 \n                                        AlabamaAlaskaAmerican SamoaArizonaArkansasCaliforniaColoradoConnecticutDelawareDistrict of ColumbiaFloridaGeorgiaGuamHawaiiIdahoIllinoisIndianaIowaKansasKentuckyLouisianaMaineMarylandMassachusettsMichiganMinnesotaMississippiMissouriMontanaNebraskaNevadaNew HampshireNew JerseyNew MexicoNew YorkNorth CarolinaNorth DakotaNorthern Mariana IslandsOhioOklahomaOregonPennsylvaniaPuerto RicoRhode IslandSouth CarolinaSouth DakotaTennesseeTexasUtahU.S. Virgin IslandsVermontVirginiaWashingtonWest VirginiaWisconsinWyomingArmed Forces AmericasArmed Forces EuropeArmed Forces Pacific\n                                        State\n                                      \n                                    \n                                    ZIP Code\n                                \n                    \n                Enter the billing address associated with your payment method. This information is required for payment processing and fraud prevention.Payment Method(Required)\n			Complete your payment using our secure checkout. All transactions are encrypted and processed safely.\n           Save & Continue
URL:https://alaskasaferiders.org/event/april-14th-soul-rides-motorized-avalanche-skills-training/
LOCATION:Thompson Pass\, Mile 27.5 Richardson Highway\, Valdez\, AK\, 99686\, United States
CATEGORIES:Field Class
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2026/03/MAST1-Event-Promotion-1-1.png
ORGANIZER;CN="Sierra Winter":MAILTO:sierrawintersmith@outlook.com
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20260314T090000
DTEND;TZID=America/Anchorage:20260314T170000
DTSTAMP:20260614T002350
CREATED:20251011T002355Z
LAST-MODIFIED:20260302T215452Z
UID:10000105-1773478800-1773507600@alaskasaferiders.org
SUMMARY:emPOWDERed Ladies Backcountry Ride - Mountain Riders
DESCRIPTION:emPOWDERed Ladies Backcountry Ride\n📍 Eureka Lodge📅 March 14\, 2026👩‍🦰🏔️ Rider Limit: 24 \nJoin Alaska Safe Riders for an empowering\, ladies-only backcountry snowmobile ride focused on mountain rider skills\, confidence-building\, and community. This event blends skill development with a laid-back\, supportive group ride—meeting you where you’re at and offering guidance along the way. Space is limited to 24 riders to ensure a high-quality\, personalized experience. \nMany riders will arrive in Eureka on Friday\, March 13\, and we invite you to join us for relaxed\, informal pre-ride conversations in the lodge that evening. This is a great opportunity to connect with fellow riders\, meet your coaches\, and get stoked for the day ahead. \nSaturday Schedule – March 148:00–9:00 AM: Breakfast at the lodge9:45 AM: Mountain riders meet in the bar area with riding gear mostly on and packs ready for a mandatory pack checkAvalanche gear and radios are requiredBeacons will be checked prior to riding10:00 AM: All sleds warmed up and ready in the back parking lotFinal head count before departure\nIf you’re interested in riding but don’t have all required safety gear (radio\, beacon\, probe\, shovel)\, please let us know—we do have a limited number of extras available. \nRiders will head out with their coaches\, Angie\, Kirsten\, Tia and Sierra\, and work on a variety of mountain riding skills throughout the day. The two groups will plan to meet up for a backcountry lunch break at 1:00 PM (make sure to pack a snack)\, then head back out for a few more hours of riding\, with the day wrapping up around 5:00 PM. \nFor those staying the evening\, join us for a group dinner at 6:00 PM\, where we’ll be giving away awesome prizes from our sponsors\, sharing stories from the ride\, and—most importantly—continuing to grow our shred community. \nLodging InformationEureka Lodge: Limited availability\, 10% off for Alaska Safe Riders members\, RV hookups and camper spots availableGunsight Mountain Lodge – 10% off for ASR membersAlternative options: Long Rifle Lodge and Sheep Mountain Lodge\nThank You to Our SponsorsA special thank you to our primary sponsors for making this event possible: Alaska Mining and Diving Supply\, Uptrack Alliance\, Artwork by Sierra Winter\, Oxbow\, Awaken Productions\, and Rally AK. Your support helps us create safe\, empowering\, and community-driven riding opportunities for women in the mountains.\n⚠️ Alaska Safe Riders membership is required to participate.We can’t wait to shred with you all and spend an unforgettable weekend riding\, learning\, and connecting in the mountains. 🏔️✨ \n✨ ASR Basic — $25/yr: Members-only training events; networking; merch offers; automatic prize entries👨‍👩‍👧‍👦 ASR Family — $50/yr: Up to 6 family members; networking with riders & champions; merch offers; prize entries🏫 ASR Schools — $100/yr: School recognition; priority reservations for school trainings; special school offers🏢 ASR Business — $500+/yr: Business recognition; industry networking; visibility at events/workshops; website/newsletter recognition \n👉 Start your journey to safer riding today—join Alaska Safe Riders! \n\n                \n                        \n                             \n                        \n                        InstagramThis field is for validation purposes and should be left unchanged.Name(Required)\n                            \n                            \n                                                    \n                                                    First\n                                                \n                            \n                            \n                                                    \n                                                    Last\n                                                \n                            \n                        Please enter the participant’s full legal name as it should appear on event records and confirmations.Email(Required)\n                                \n                                    \n                                    Enter Email\n                                \n                                \n                                    \n                                    Confirm Email\n                                \n                                \n                            Enter a valid email address. Event confirmations\, receipts\, gear lists\, and meetup instructions will be sent to this address (If Applicable).Phone(Required)Provide a mobile phone number so we can contact you with important event updates\, schedule changes\, or safety notifications.This field is hidden when viewing the formEvent Tracking KeyEvent Selection(Required)— Please select an event —6.6.26 ATV Summer Safety Riding Clinic6.13.26 ATV Summer Safety Riding Clinic6.20.26 ATV Summer Safety Riding Clinic6.27.26  ATV Summer Safety Riding ClinicSelect the event you are registering for. Please make sure the correct event name is selected before continuing.Member Promo Code ASR Member Discount:\nAlaska Safe Riders members receive a 10% discount on event registrations.\nIf you are already a member\, enter your discount code and click Apply. You can find your promo code on the membership dashboard.\nNot a member yet? Sign up here. Memberships start at $25 per year\, and in many cases the event discount will save you more than the cost of membership.\nThis field is hidden when viewing the formPayment Required Conditional (Admin only)Consent(Required) I agree to receive SMS notifications for transaction confirmations\, reminders\, and promotional offers. Standard messaging rates may apply.By checking this box\, you consent to receive text messages related to your registration\, including payment confirmations\, event reminders\, and important event-related updates.\nEmergency Contact Name(Required)\n                            \n                            \n                                                    \n                                                    First\n                                                \n                            \n                            \n                                                    \n                                                    Last\n                                                \n                            \n                        Emergency Contact Phone Number(Required)Sled InformationParticipants are responsible for providing their own snowmachine and transportation.Do you have any allergies or medical conditions we should know about for your safety?Snowmachine Information(Required)Year\, Make (Ski-Doo\, Polaris\, Arctic Cat\, Yamaha\, etc.)\, and Model and track length. Example 2025 Polaris Khaos Boost Matryx Slash 155Is your snowmachine in good working condition?(Required)\n			\n					\n					Yes\n			\n			\n					\n					No\n			\n			\n					\n					Other\n			If you are unsure\, please select other and describe your concerns. Describe any mechanical issues you are aware of.(Required)Example: the check engine light comes on at 3000 RPM but otherwise runs well throughout the day. Are you comfortable unloading/loading your snowmachine?(Required)\n			\n					\n					Yes\n			\n			\n					\n					No\n			\n			\n					\n					Need Assistance\n			\n			\n					\n					Other\n			Riding ExperienceHelp us understand your current riding experience and the skills you hope to build through our clinics.How long have you been riding snowmachines?(Required)\n			\n					\n					Never\n			\n			\n					\n					A Few Times\n			\n			\n					\n					1-2 Seasons\n			\n			\n					\n					3+ Seasons\n			How would you describe your current skill level?(Required)\n			\n					\n					True Beginner - You are brand new to snowmachines. You may have never ridden or only ridden once or twice. Still learning basic controls\, throttle/brake feel\, balance\, and how the machine responds on snow.\n			\n			\n					\n					Beginner - You are comfortable operating a sled at slow to moderate speeds on groomed trails. You can start\, stop\, and turn with confidence but are still developing body positioning\, throttle control\, and understanding terrain.\n			\n			\n					\n					Advanced Beginner - You ride groomed and ungroomed terrain with growing confidence. You’re beginning to explore off-trail riding\, sidehilling basics\, climbing small features\, and navigating variable snow. Still refining balance\, technique\, and recovery skills.\n			\n			\n					\n					Intermediate - You ride on- and off-trail regularly and can manage varied terrain\, deeper snow\, and moderate sidehills. You understand line choice\, machine control\, and terrain hazards. Ready to work on advanced techniques\, efficiency\, and riding bigger features.\n			\n			\n					\n					Other\n			What type of terrain have you ridden?(Required)\n								\n								Trails\n							\n								\n								Meadows\n							\n								\n								Low-Angle Powder\n							\n								\n								Steeper Terrain\n							\n								\n								High Alpine/Mountains\n							\n								\n								Rivers\n							\n								\n								Glaciers\n							Select all that apply. What are you hoping to improve on during the clinic?(Required)\n								\n								Throttle Control\n							\n								\n								Body Positioning\n							\n								\n								Countersteering\n							Select all that apply. What makes you nervous or unsure when riding?Do you have any injuries or physical limitations we should know about?Your GoalsHelp us understand how we can help you improve your skills in the riding and backcountry industry. What do you hope to gain from this clinic?(Required)What would you define as success from this clinic?(Required)Is there anything else we should know about you?(Required)Gear & PreparednessWe are proud to partner with Alaska Safe Riders to bring these clinics to women in the industry and safety is key! What avalanche gear do you currently have?(Required)\n								\n								Beacon\n							\n								\n								Probe\n							\n								\n								Shovel\n							\n								\n								Snow Saw\n							\n								\n								Airbag Backpage\n							\n								\n								Avy Lung\n							\n								\n								Inclinometer\n							\n								\n								Snow Thermometer/Crystal Card\n							\n								\n								On The Snow Avalanche Training\n							\n								\n								Online Avalanche Training\n							Do you feel confident using your avalanche gear?(Required)\n			\n					\n					Yes\n			\n			\n					\n					No\n			\n			\n					\n					I think so\n			\n			\n					\n					I need assistance\n			Do you have appropriate cold-weather riding gear?(Required)\n			\n					\n					Yes\n			\n			\n					\n					No\n			\n			\n					\n					I think so\n			\n			\n					\n					I need assistance\n			Payment InformationTotal Amount Due\n							\n						This amount reflects the event price and any applicable member discounts. The total will update automatically once your discount code is applied.Billing Address(Required)    \n                    \n                         \n                                        \n                                        Street Address\n                                    \n                                        \n                                        Address Line 2\n                                    \n                                    \n                                    City\n                                 \n                                        AlabamaAlaskaAmerican SamoaArizonaArkansasCaliforniaColoradoConnecticutDelawareDistrict of ColumbiaFloridaGeorgiaGuamHawaiiIdahoIllinoisIndianaIowaKansasKentuckyLouisianaMaineMarylandMassachusettsMichiganMinnesotaMississippiMissouriMontanaNebraskaNevadaNew HampshireNew JerseyNew MexicoNew YorkNorth CarolinaNorth DakotaNorthern Mariana IslandsOhioOklahomaOregonPennsylvaniaPuerto RicoRhode IslandSouth CarolinaSouth DakotaTennesseeTexasUtahU.S. Virgin IslandsVermontVirginiaWashingtonWest VirginiaWisconsinWyomingArmed Forces AmericasArmed Forces EuropeArmed Forces Pacific\n                                        State\n                                      \n                                    \n                                    ZIP Code\n                                \n                    \n                Enter the billing address associated with your payment method. This information is required for payment processing and fraud prevention.Payment Method(Required)\n			Complete your payment using our secure checkout. All transactions are encrypted and processed safely.\n           Save & Continue\n            \n            \n            \n            \n            \n            \n                             \n            \n            \n            \n            \n            \n            \n            \n        \n                        \n                        \n		                \n		                \n \n 
URL:https://alaskasaferiders.org/event/empowderedmountainriders/
LOCATION:Eureka Lodge\, Alaska\, Mile 128 Glenn Hwy.\, Glennallen\, AK\, 99588\, United States
CATEGORIES:Field Class
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2025/10/emPOWDERed-March-14th.png
ORGANIZER;CN="Sierra Winter":MAILTO:sierrawintersmith@outlook.com
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20251204T173000
DTEND;TZID=America/Anchorage:20251204T200000
DTSTAMP:20260614T002350
CREATED:20251203T221717Z
LAST-MODIFIED:20251212T214949Z
UID:10000115-1764869400-1764878400@alaskasaferiders.org
SUMMARY:zz - Peninsula Powersports Ladies Night: Maintenance Clinic
DESCRIPTION:Peninsula Powersports Ladies Night: Women’s Sled Fit & Maintenance BasicsAlaska Safe Riders is proud to be invited as a guest — and Sierra Winter will be representing us on the Peninsula TOMORROW NIGHT! \nThis free\, hands-on clinic is designed to help women gain practical confidence in snowmobile maintenance\, whether you’re brand new to sleds or looking to level up your skills before winter riding kicks into full swing. \nJoin Peninsula Powersports and an incredible lineup of local partners — emPOWDERed Women’s Sled Group\, Victory Lane Graphics\, Caribou Hills Cabin Hoppers\, and Sierra with Artwork by Sierra Winter — for an empowering\, educational\, community-driven night. \n❄️ What You’ll Learn ❄️ \n\n\nBelt Basics: How to change your belt and check it for wear \n\n\nSpark Plug 101: What they do\, what to look for\, and how to swap them \n\n\nTrack Tension Overview: How proper tension affects handling\, safety\, and ride quality \n\n\nThe night will wrap up with an open Q&A\, giving you the chance to ask questions directly to the pros at Peninsula Powersports. And yes… there will be door prizes! \nWhether you’re gearing up for your first season or your fifteenth\, this event is about building knowledge\, community\, and confidence. \nCome learn\, connect\, and get ready for a strong and safe winter season. \nBecome a Member of Alaska Safe Riders\nSupport safer\, more enjoyable riding across Alaska and enjoy member perks:\n✨ ASR Basic — $25/yr: Members-only training events; networking; merch offers; automatic prize entries👨‍👩‍👧‍👦 ASR Family — $50/yr: Up to 6 family members; networking with riders & champions; merch offers; prize entries🏫 ASR Schools — $100/yr: School recognition; priority reservations for school trainings; special school offers🏢 ASR Business — $500+/yr: Business recognition; industry networking; visibility at events/workshops; website/newsletter recognition \n👉 Start your journey to safer riding today—join Alaska Safe Riders! \n\n                \n                        \n                            Membership form\n                            Alaska Safe Riders Membership Form \n                        \n        \n        	Step 1 of 2 - Member Information\n        	 \n            \n                0%\n            \n                        \n					PhoneThis field is for validation purposes and should be left unchanged.This field is hidden when viewing the formPayment confirmed?\n								\n								Debra\n							This field is hidden when viewing the formPayment Confirmation Date\n                            \n                            MM slash DD slash YYYY\n                        \n                        This field is hidden when viewing the formPayment Confirmation Notes\nTell us a bit about yourself so we can set up your membership.\n Email for Membership(Required)\n                            \n                        Ticket & Membership information will be sent to this email.Name for Membership(Required)\n                            \n                            \n                                                    \n                                                    First\n                                                \n                            \n                            \n                                                    \n                                                    Last\n                                                \n                            \n                        Phone Number(Required)I agree to receive SMS notifications for transaction confirmations\, reminders\, and promotional offers. Standard messaging rates may apply.(Required)\n								\n								I agree to receive SMS notifications.\n							\n                    \n                    \n                          \n                    \n                \n                \n                    \n                        \nReview your selection and complete your payment securely.\n Which ASR Membership would you like to purchase?(Required)ASR Basic - $25.00ASR Family - $50.00ASR Schools - $100.00ASR Business - $500.00ASR Business - $1\,000.00ASR Business - $2\,500.00ASR Business - $5\,000.00ASR Business - $10\,000.00Would you like to automatically renew your ASR membership?\n			\n					\n					Yes\n			\n			\n					\n					No\n			If "Yes" is selected\, you will be billed again for your ASR membership after 1 year. Would you like to make an additional donation to Alaska Safe Riders?\n			\n					\n					Yes\, I would like to make a donation.\n			\n			\n					\n					No\, I would not like to make a donation.\n			This donation will be processed alongside your membership fee.Donation Amount:(Required)\n					\n				Total amount charged\n							\n						Are you paying for this at an Alaska Safe Riders event? (Offline Payment)(Required)\n			\n					\n					No\n			\n			\n					\n					Yes\n			If you are making an offline payment\, you will receive a receipt email that you will need to show to an Alaska Safe Riders Representative to complete your offline payment.Alternate Payment Method (Offline Payment)(Required)\n								\n								Credit Card\n							\n								\n								Cash\n							\n								\n								Check\n							This is the payment method you will be using when you meet an Alaska Safe Riders Representative to complete your offline payment.Credit CardConfiguration Required: To use the Square field\, please configure your Square Settings.Please enter your Billing Address:(Required)    \n                    \n                         \n                                        \n                                        Street Address\n                                    \n                                        \n                                        Address Line 2\n                                    \n                                    \n                                    City\n                                 \n                                        AlabamaAlaskaAmerican SamoaArizonaArkansasCaliforniaColoradoConnecticutDelawareDistrict of ColumbiaFloridaGeorgiaGuamHawaiiIdahoIllinoisIndianaIowaKansasKentuckyLouisianaMaineMarylandMassachusettsMichiganMinnesotaMississippiMissouriMontanaNebraskaNevadaNew HampshireNew JerseyNew MexicoNew YorkNorth CarolinaNorth DakotaNorthern Mariana IslandsOhioOklahomaOregonPennsylvaniaPuerto RicoRhode IslandSouth CarolinaSouth DakotaTennesseeTexasUtahU.S. Virgin IslandsVermontVirginiaWashingtonWest VirginiaWisconsinWyomingArmed Forces AmericasArmed Forces EuropeArmed Forces Pacific\n                                        State\n                                      \n                                    \n                                    ZIP Code\n                                \n                    \n                Required to complete purchase.Annual Subscription(Required)\n								\n								I agree to renew my Alaska Safe Riders Membership annually
URL:https://alaskasaferiders.org/event/peninsula-powersports-ladies-night-maintenance-clinic/
LOCATION:Peninsula Powersports\, 37677 Kenai Spur Hwy\, Soldotna\, 99669\, United States
CATEGORIES:Workshop
ATTACH;FMTTYPE=image/jpeg:https://alaskasaferiders.org/wp-content/uploads/2025/12/593610042_10229645705159125_3479263636331655710_n.jpg
ORGANIZER;CN="Sierra Winter":MAILTO:sierrawintersmith@outlook.com
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20251120T190000
DTEND;TZID=America/Anchorage:20251120T220000
DTSTAMP:20260614T002350
CREATED:20251028T000048Z
LAST-MODIFIED:20251212T214706Z
UID:10000111-1763665200-1763676000@alaskasaferiders.org
SUMMARY:zz - Valdez Snowmachine Club – ‘26 Season Kickoff Event
DESCRIPTION:Valdez Snowmachine Club – ‘26 Season Kickoff EventThursday\, November 20 • 7 PM • Valdez Civic & Convention Center \nIt’s time to start thinking about snow! ❄️ The Valdez Snowmachine Club is kicking off the 2026 season with an evening of food\, fun\, and winter stoke at the Civic Center. \nThis year’s event brings together an awesome lineup of local riders\, artists\, and safety advocates — including Artwork by Sierra Winter\, Eagle River Polaris Arctic Cat\, Valdez Avalanche Center\, and Alaska Safe Riders. \n🎨 Sierra Winter will be on site talking sled wraps\, custom art\, and wild design ideas that bring your ride to life.🏔️ Eagle River Polaris Arctic Cat will have brand-new Arctic Cat 200s available for purchase.🧭 Valdez Avalanche Center will be on hand to discuss avalanche safety and membership opportunities to support your local forecasters.🦺 Alaska Safe Riders\, with Zac James and Sierra Winter\, will host a booth dedicated to safe riding practices\, upcoming clinics around the state\, and the first look at dates for our 2026 Thompson Pass event. \n🍝 Plus — enjoy a free spaghetti feed for all attendees! \nCome join us at the Valdez Civic & Convention Center on Thursday\, November 20th at 7 PM.Let’s celebrate another season of snow\, adventure\, and safe riding together! \n\nBecome a Member of Alaska Safe Riders \nSupport safer\, more enjoyable riding across Alaska and enjoy member perks: \n✨ ASR Basic — $25/yr: Members-only training events; networking; merch offers; automatic prize entries👨‍👩‍👧‍👦 ASR Family — $50/yr: Up to 6 family members; networking with riders & champions; merch offers; prize entries🏫 ASR Schools — $100/yr: School recognition; priority reservations for school trainings; special school offers🏢 ASR Business — $500+/yr: Business recognition; industry networking; visibility at events/workshops; website/newsletter recognition \n👉 Start your journey to safer riding today — join Alaska Safe Riders! \n  \n\n                \n                        \n                            Membership form\n                            Alaska Safe Riders Membership Form \n                        \n        \n        	Step 1 of 2 - Member Information\n        	 \n            \n                0%\n            \n                        \n					LinkedInThis field is for validation purposes and should be left unchanged.This field is hidden when viewing the formPayment confirmed?\n								\n								Debra\n							This field is hidden when viewing the formPayment Confirmation Date\n                            \n                            MM slash DD slash YYYY\n                        \n                        This field is hidden when viewing the formPayment Confirmation Notes\nTell us a bit about yourself so we can set up your membership.\n Email for Membership(Required)\n                            \n                        Ticket & Membership information will be sent to this email.Name for Membership(Required)\n                            \n                            \n                                                    \n                                                    First\n                                                \n                            \n                            \n                                                    \n                                                    Last\n                                                \n                            \n                        Phone Number(Required)I agree to receive SMS notifications for transaction confirmations\, reminders\, and promotional offers. Standard messaging rates may apply.(Required)\n								\n								I agree to receive SMS notifications.\n							\n                    \n                    \n                          \n                    \n                \n                \n                    \n                        \nReview your selection and complete your payment securely.\n Which ASR Membership would you like to purchase?(Required)ASR Basic - $25.00ASR Family - $50.00ASR Schools - $100.00ASR Business - $500.00ASR Business - $1\,000.00ASR Business - $2\,500.00ASR Business - $5\,000.00ASR Business - $10\,000.00Would you like to automatically renew your ASR membership?\n			\n					\n					Yes\n			\n			\n					\n					No\n			If "Yes" is selected\, you will be billed again for your ASR membership after 1 year. Would you like to make an additional donation to Alaska Safe Riders?\n			\n					\n					Yes\, I would like to make a donation.\n			\n			\n					\n					No\, I would not like to make a donation.\n			This donation will be processed alongside your membership fee.Donation Amount:(Required)\n					\n				Total amount charged\n							\n						Are you paying for this at an Alaska Safe Riders event? (Offline Payment)(Required)\n			\n					\n					No\n			\n			\n					\n					Yes\n			If you are making an offline payment\, you will receive a receipt email that you will need to show to an Alaska Safe Riders Representative to complete your offline payment.Alternate Payment Method (Offline Payment)(Required)\n								\n								Credit Card\n							\n								\n								Cash\n							\n								\n								Check\n							This is the payment method you will be using when you meet an Alaska Safe Riders Representative to complete your offline payment.Credit CardConfiguration Required: To use the Square field\, please configure your Square Settings.Please enter your Billing Address:(Required)    \n                    \n                         \n                                        \n                                        Street Address\n                                    \n                                        \n                                        Address Line 2\n                                    \n                                    \n                                    City\n                                 \n                                        AlabamaAlaskaAmerican SamoaArizonaArkansasCaliforniaColoradoConnecticutDelawareDistrict of ColumbiaFloridaGeorgiaGuamHawaiiIdahoIllinoisIndianaIowaKansasKentuckyLouisianaMaineMarylandMassachusettsMichiganMinnesotaMississippiMissouriMontanaNebraskaNevadaNew HampshireNew JerseyNew MexicoNew YorkNorth CarolinaNorth DakotaNorthern Mariana IslandsOhioOklahomaOregonPennsylvaniaPuerto RicoRhode IslandSouth CarolinaSouth DakotaTennesseeTexasUtahU.S. Virgin IslandsVermontVirginiaWashingtonWest VirginiaWisconsinWyomingArmed Forces AmericasArmed Forces EuropeArmed Forces Pacific\n                                        State\n                                      \n                                    \n                                    ZIP Code\n                                \n                    \n                Required to complete purchase.Annual Subscription(Required)\n								\n								I agree to renew my Alaska Safe Riders Membership annually
URL:https://alaskasaferiders.org/event/valdez-snowmachine-club-26-season-kickoff-event/
LOCATION:Valdez Civic & Convention Center\, 314 Clifton Dr\, Valdez\, AK\, 99686\, United States
CATEGORIES:Community Expo
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2025/10/Alaska-Safe-Riders-Event-Flyer-ABSW-2025-1-5.png
ORGANIZER;CN="Sierra Winter":MAILTO:sierrawintersmith@outlook.com
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20251115T160000
DTEND;TZID=America/Anchorage:20251115T200000
DTSTAMP:20260614T002350
CREATED:20251010T233853Z
LAST-MODIFIED:20251212T214552Z
UID:10000108-1763222400-1763236800@alaskasaferiders.org
SUMMARY:zz - Awakening of Winter 6 - Delta Powersports Fairbanks
DESCRIPTION:About the event\n\n\n\nAwakening of Winter 6 – Delta Powersports (Fairbanks\, AK)\n📅 Saturday\, November 15th\, 2025\n🕓4:00 PM – 8:00 PM || Film starts at 5:35 PM \nBrought to you by Awaken Productions and Artwork by Sierra Winter. Join Alaska’s shred community for an evening of food\, drinks\, door prizes\, and more. Sponsors\, special guests\, and additional details to be announced. \n\n\n\n\n\n\n\n\n\n Get your tickets now and save: https://www.eventbrite.com/e/awaken-of-winter-6-delta-powersports-tickets-1755222871859?aff=ebdsoporgprofile \nCome to the Awakening of Winter event wearing Awaken Swag and get a bonus door prize ticket! Shop now: www.artworkbysierrawinter.com/awakenak \n Do you have a sled wrapped The Sierra Winter Way? Bring it to the event to display it for a door prize ticket! Email sierrawintersmith@outlook.com ASAP to secure your sled spot. \nExclusive In-Store Specials at Delta Powersports:\nDon’t miss out on Delta Powersports’ event-day deals happening only during the Awakening of Winter 6 event hours! While you browse art\, gear up for winter\, and connect with fellow riders\, you can also take advantage of special discounts and promotions throughout the store. It’s the perfect time to snag that new sled gear or upgrade your equipment before the season kicks off — but these offers are available only during the event\, so be sure to shop while you’re here! \n \nKick Off the Weekend with Knowledge & Confidence:\nStart the Awakening of Winter weekend early at Delta Powersports on Friday\, November 14th\, for a special emPOWDERed maintenance clinic (learn more) followed by an avalanche safety seminar (learn more) hosted by Alaska Safe Riders and led by the expert himself\, Mike Duffy. This hands-on evening is the perfect opportunity to sharpen your sled maintenance skills and learn essential avalanche awareness before the snow flies. Whether you’re a seasoned rider or just getting started\, this pre-event clinic sets the tone for a safe and epic winter ahead! \n\n\n\nBecome a Member of Alaska Safe Riders\nSupport safer\, more enjoyable riding across Alaska and enjoy member perks: \n✨ ASR Basic — $25/yr: Members-only training events; networking; merch offers; automatic prize entries👨‍👩‍👧‍👦 ASR Family — $50/yr: Up to 6 family members; networking with riders & champions; merch offers; prize entries🏫 ASR Schools — $100/yr: School recognition; priority reservations for school trainings; special school offers🏢 ASR Business — $500+/yr: Business recognition; industry networking; visibility at events/workshops; website/newsletter recognition \n👉 Start your journey to safer riding today—join Alaska Safe Riders! \n\n                \n                        \n                            Membership form\n                            Alaska Safe Riders Membership Form \n                        \n        \n        	Step 1 of 2 - Member Information\n        	 \n            \n                0%\n            \n                        \n					X/TwitterThis field is for validation purposes and should be left unchanged.This field is hidden when viewing the formPayment confirmed?\n								\n								Debra\n							This field is hidden when viewing the formPayment Confirmation Date\n                            \n                            MM slash DD slash YYYY\n                        \n                        This field is hidden when viewing the formPayment Confirmation Notes\nTell us a bit about yourself so we can set up your membership.\n Email for Membership(Required)\n                            \n                        Ticket & Membership information will be sent to this email.Name for Membership(Required)\n                            \n                            \n                                                    \n                                                    First\n                                                \n                            \n                            \n                                                    \n                                                    Last\n                                                \n                            \n                        Phone Number(Required)I agree to receive SMS notifications for transaction confirmations\, reminders\, and promotional offers. Standard messaging rates may apply.(Required)\n								\n								I agree to receive SMS notifications.\n							\n                    \n                    \n                          \n                    \n                \n                \n                    \n                        \nReview your selection and complete your payment securely.\n Which ASR Membership would you like to purchase?(Required)ASR Basic - $25.00ASR Family - $50.00ASR Schools - $100.00ASR Business - $500.00ASR Business - $1\,000.00ASR Business - $2\,500.00ASR Business - $5\,000.00ASR Business - $10\,000.00Would you like to automatically renew your ASR membership?\n			\n					\n					Yes\n			\n			\n					\n					No\n			If "Yes" is selected\, you will be billed again for your ASR membership after 1 year. Would you like to make an additional donation to Alaska Safe Riders?\n			\n					\n					Yes\, I would like to make a donation.\n			\n			\n					\n					No\, I would not like to make a donation.\n			This donation will be processed alongside your membership fee.Donation Amount:(Required)\n					\n				Total amount charged\n							\n						Are you paying for this at an Alaska Safe Riders event? (Offline Payment)(Required)\n			\n					\n					No\n			\n			\n					\n					Yes\n			If you are making an offline payment\, you will receive a receipt email that you will need to show to an Alaska Safe Riders Representative to complete your offline payment.Alternate Payment Method (Offline Payment)(Required)\n								\n								Credit Card\n							\n								\n								Cash\n							\n								\n								Check\n							This is the payment method you will be using when you meet an Alaska Safe Riders Representative to complete your offline payment.Credit CardConfiguration Required: To use the Square field\, please configure your Square Settings.Please enter your Billing Address:(Required)    \n                    \n                         \n                                        \n                                        Street Address\n                                    \n                                        \n                                        Address Line 2\n                                    \n                                    \n                                    City\n                                 \n                                        AlabamaAlaskaAmerican SamoaArizonaArkansasCaliforniaColoradoConnecticutDelawareDistrict of ColumbiaFloridaGeorgiaGuamHawaiiIdahoIllinoisIndianaIowaKansasKentuckyLouisianaMaineMarylandMassachusettsMichiganMinnesotaMississippiMissouriMontanaNebraskaNevadaNew HampshireNew JerseyNew MexicoNew YorkNorth CarolinaNorth DakotaNorthern Mariana IslandsOhioOklahomaOregonPennsylvaniaPuerto RicoRhode IslandSouth CarolinaSouth DakotaTennesseeTexasUtahU.S. Virgin IslandsVermontVirginiaWashingtonWest VirginiaWisconsinWyomingArmed Forces AmericasArmed Forces EuropeArmed Forces Pacific\n                                        State\n                                      \n                                    \n                                    ZIP Code\n                                \n                    \n                Required to complete purchase.Annual Subscription(Required)\n								\n								I agree to renew my Alaska Safe Riders Membership annually
URL:https://alaskasaferiders.org/event/awakening-of-winter-6-delta-powersports-fairbanks/
LOCATION:Delta Powersports Fairbanks\, 1450 Karen Way\, Fairbanks\, 99709\, United States
CATEGORIES:Community Expo,School Training
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2025/10/Awakening-of-Winter-6-Delta-Powersports-1.png
ORGANIZER;CN="Sierra Winter":MAILTO:sierrawintersmith@outlook.com
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20251114T160000
DTEND;TZID=America/Anchorage:20251115T180000
DTSTAMP:20260614T002350
CREATED:20251010T233608Z
LAST-MODIFIED:20251212T214435Z
UID:10000097-1763136000-1763229600@alaskasaferiders.org
SUMMARY:zz - emPOWDERed Maintenance Clinic at Delta Powersports Fairbanks
DESCRIPTION:emPOWDERed Ski-Doo & Polaris Maintenance ClinicHosted by Delta Powersports Fairbanks📅 Friday\, November 14 | 4–6 PM🛠️ Free Entry | Open to All RidersDetails coming soon! \nGet your sled ready for winter and join emPOWDERed and Sierra Winter for an evening of hands-on learning\, community\, and pre-season prep at Delta Powersports Fairbanks. \nWhile most emPOWDERed riding clinics are women-only\, our maintenance clinics are open to everyone — because safe\, confident riders start with well-maintained machines. Learn essential skills like: \nChanging and maintaining belts\nAdjusting track tension\nReplacing spark plugs\nPre-season and pre-ride checklists \nStick around afterward for Alaska Safe Riders’ Avalanche Awareness Training (6–8 PM) featuring Ski-Doo’s Mike Duffy\, and take your safety knowledge to the next level. \n🎁 Door prizes\, good vibes\, and winter readiness — don’t miss it!Full details and registration info coming soon! \n\nWhat is emPOWDERed?\nemPOWDERed is a community-driven movement created to empower riders—through education\, clinics\, and connection—to build confidence on and off the snow.\nLearn more at artworkbysierrawinter.com/empowdered\n👉 Please note: An Alaska Safe Riders (ASR) membership is required to attend emPOWDERed rides. \nBecome a Member of Alaska Safe Riders\nSupport safer\, more enjoyable riding across Alaska and enjoy member perks:\n✨ ASR Basic — $25/yr: Members-only training events; networking; merch offers; automatic prize entries👨‍👩‍👧‍👦 ASR Family — $50/yr: Up to 6 family members; networking with riders & champions; merch offers; prize entries🏫 ASR Schools — $100/yr: School recognition; priority reservations for school trainings; special school offers🏢 ASR Business — $500+/yr: Business recognition; industry networking; visibility at events/workshops; website/newsletter recognition \n👉 Start your journey to safer riding today—join Alaska Safe Riders! \n\n                \n                        \n                            Membership form\n                            Alaska Safe Riders Membership Form \n                        \n        \n        	Step 1 of 2 - Member Information\n        	 \n            \n                0%\n            \n                        \n					PhoneThis field is for validation purposes and should be left unchanged.This field is hidden when viewing the formPayment confirmed?\n								\n								Debra\n							This field is hidden when viewing the formPayment Confirmation Date\n                            \n                            MM slash DD slash YYYY\n                        \n                        This field is hidden when viewing the formPayment Confirmation Notes\nTell us a bit about yourself so we can set up your membership.\n Email for Membership(Required)\n                            \n                        Ticket & Membership information will be sent to this email.Name for Membership(Required)\n                            \n                            \n                                                    \n                                                    First\n                                                \n                            \n                            \n                                                    \n                                                    Last\n                                                \n                            \n                        Phone Number(Required)I agree to receive SMS notifications for transaction confirmations\, reminders\, and promotional offers. Standard messaging rates may apply.(Required)\n								\n								I agree to receive SMS notifications.\n							\n                    \n                    \n                          \n                    \n                \n                \n                    \n                        \nReview your selection and complete your payment securely.\n Which ASR Membership would you like to purchase?(Required)ASR Basic - $25.00ASR Family - $50.00ASR Schools - $100.00ASR Business - $500.00ASR Business - $1\,000.00ASR Business - $2\,500.00ASR Business - $5\,000.00ASR Business - $10\,000.00Would you like to automatically renew your ASR membership?\n			\n					\n					Yes\n			\n			\n					\n					No\n			If "Yes" is selected\, you will be billed again for your ASR membership after 1 year. Would you like to make an additional donation to Alaska Safe Riders?\n			\n					\n					Yes\, I would like to make a donation.\n			\n			\n					\n					No\, I would not like to make a donation.\n			This donation will be processed alongside your membership fee.Donation Amount:(Required)\n					\n				Total amount charged\n							\n						Are you paying for this at an Alaska Safe Riders event? (Offline Payment)(Required)\n			\n					\n					No\n			\n			\n					\n					Yes\n			If you are making an offline payment\, you will receive a receipt email that you will need to show to an Alaska Safe Riders Representative to complete your offline payment.Alternate Payment Method (Offline Payment)(Required)\n								\n								Credit Card\n							\n								\n								Cash\n							\n								\n								Check\n							This is the payment method you will be using when you meet an Alaska Safe Riders Representative to complete your offline payment.Credit CardConfiguration Required: To use the Square field\, please configure your Square Settings.Please enter your Billing Address:(Required)    \n                    \n                         \n                                        \n                                        Street Address\n                                    \n                                        \n                                        Address Line 2\n                                    \n                                    \n                                    City\n                                 \n                                        AlabamaAlaskaAmerican SamoaArizonaArkansasCaliforniaColoradoConnecticutDelawareDistrict of ColumbiaFloridaGeorgiaGuamHawaiiIdahoIllinoisIndianaIowaKansasKentuckyLouisianaMaineMarylandMassachusettsMichiganMinnesotaMississippiMissouriMontanaNebraskaNevadaNew HampshireNew JerseyNew MexicoNew YorkNorth CarolinaNorth DakotaNorthern Mariana IslandsOhioOklahomaOregonPennsylvaniaPuerto RicoRhode IslandSouth CarolinaSouth DakotaTennesseeTexasUtahU.S. Virgin IslandsVermontVirginiaWashingtonWest VirginiaWisconsinWyomingArmed Forces AmericasArmed Forces EuropeArmed Forces Pacific\n                                        State\n                                      \n                                    \n                                    ZIP Code\n                                \n                    \n                Required to complete purchase.Annual Subscription(Required)\n								\n								I agree to renew my Alaska Safe Riders Membership annually
URL:https://alaskasaferiders.org/event/empowdered-maintenance-clinic-at-delta-powersports-fairbanks/
LOCATION:Delta Powersports Fairbanks\, 1450 Karen Way\, Fairbanks\, 99709\, United States
CATEGORIES:Workshop
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2025/10/emPOWDERed-Maintenance-Clinic-Delta-11142025.png
ORGANIZER;CN="Sierra Winter":MAILTO:sierrawintersmith@outlook.com
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20251112T180000
DTEND;TZID=America/Anchorage:20251113T200000
DTSTAMP:20260614T002350
CREATED:20251010T234242Z
LAST-MODIFIED:20251212T205339Z
UID:10000109-1762970400-1763064000@alaskasaferiders.org
SUMMARY:zz - emPOWDERed Maintenance Clinic at HPAK Wasilla
DESCRIPTION:Save the Date!emPOWDERed Polaris Maintenance Clinic – Wasilla📅 Wednesday\, November 12 | 6–8 PM📍 Hatcher Pass Polaris\, Wasilla🛠️ Free Entry | Polaris Maintenance Focused \nJoin emPOWDERed and Sierra Winter for a Polaris-Specific Maintenance Clinic hosted by Hatcher Pass Polaris. \nThis free\, hands-on evening is designed to help you prep your sled for the upcoming season and gain confidence in basic maintenance and machine care. Whether you’re new to sleds or just brushing up before winter\, this session will help you ride safer and smarter — because confident riders start with reliable machines. \nWe’re thrilled to announce special guest instructors Shane Barber and Shana Lapham\, Team #39 in this year’s Iron Dog Race\, will be leading the clinic! They’ll guide participants through essential maintenance skills\, including: \n\n\nHow to change your belt and inspect it for wear \n\n\nTrack tension overview and how it affects your ride \n\n\nSpark plug review and replacement \n\n\nPre-season and pre-ride checklists \n\n\nYou’ll also have ample time for Q&A\, giving you the chance to ask questions and learn directly from two of Alaska’s top endurance racers. \n🎁 Door prizes\, good vibes\, and pre-season stoke — don’t miss it!Stay tuned for full event details and registration info. \n\nWhat is emPOWDERed?\nemPOWDERed is a community-driven movement created to empower riders—through education\, clinics\, and connection—to build confidence on and off the snow.\nLearn more at artworkbysierrawinter.com/empowdered\n👉 Please note: An Alaska Safe Riders (ASR) membership is required to attend emPOWDERed rides. \nBecome a Member of Alaska Safe Riders\nSupport safer\, more enjoyable riding across Alaska and enjoy member perks:\n✨ ASR Basic — $25/yr: Members-only training events; networking; merch offers; automatic prize entries👨‍👩‍👧‍👦 ASR Family — $50/yr: Up to 6 family members; networking with riders & champions; merch offers; prize entries🏫 ASR Schools — $100/yr: School recognition; priority reservations for school trainings; special school offers🏢 ASR Business — $500+/yr: Business recognition; industry networking; visibility at events/workshops; website/newsletter recognition \n👉 Start your journey to safer riding today—join Alaska Safe Riders! \n\n                \n                        \n                            Membership form\n                            Alaska Safe Riders Membership Form \n                        \n        \n        	Step 1 of 2 - Member Information\n        	 \n            \n                0%\n            \n                        \n					InstagramThis field is for validation purposes and should be left unchanged.This field is hidden when viewing the formPayment confirmed?\n								\n								Debra\n							This field is hidden when viewing the formPayment Confirmation Date\n                            \n                            MM slash DD slash YYYY\n                        \n                        This field is hidden when viewing the formPayment Confirmation Notes\nTell us a bit about yourself so we can set up your membership.\n Email for Membership(Required)\n                            \n                        Ticket & Membership information will be sent to this email.Name for Membership(Required)\n                            \n                            \n                                                    \n                                                    First\n                                                \n                            \n                            \n                                                    \n                                                    Last\n                                                \n                            \n                        Phone Number(Required)I agree to receive SMS notifications for transaction confirmations\, reminders\, and promotional offers. Standard messaging rates may apply.(Required)\n								\n								I agree to receive SMS notifications.\n							\n                    \n                    \n                          \n                    \n                \n                \n                    \n                        \nReview your selection and complete your payment securely.\n Which ASR Membership would you like to purchase?(Required)ASR Basic - $25.00ASR Family - $50.00ASR Schools - $100.00ASR Business - $500.00ASR Business - $1\,000.00ASR Business - $2\,500.00ASR Business - $5\,000.00ASR Business - $10\,000.00Would you like to automatically renew your ASR membership?\n			\n					\n					Yes\n			\n			\n					\n					No\n			If "Yes" is selected\, you will be billed again for your ASR membership after 1 year. Would you like to make an additional donation to Alaska Safe Riders?\n			\n					\n					Yes\, I would like to make a donation.\n			\n			\n					\n					No\, I would not like to make a donation.\n			This donation will be processed alongside your membership fee.Donation Amount:(Required)\n					\n				Total amount charged\n							\n						Are you paying for this at an Alaska Safe Riders event? (Offline Payment)(Required)\n			\n					\n					No\n			\n			\n					\n					Yes\n			If you are making an offline payment\, you will receive a receipt email that you will need to show to an Alaska Safe Riders Representative to complete your offline payment.Alternate Payment Method (Offline Payment)(Required)\n								\n								Credit Card\n							\n								\n								Cash\n							\n								\n								Check\n							This is the payment method you will be using when you meet an Alaska Safe Riders Representative to complete your offline payment.Credit CardConfiguration Required: To use the Square field\, please configure your Square Settings.Please enter your Billing Address:(Required)    \n                    \n                         \n                                        \n                                        Street Address\n                                    \n                                        \n                                        Address Line 2\n                                    \n                                    \n                                    City\n                                 \n                                        AlabamaAlaskaAmerican SamoaArizonaArkansasCaliforniaColoradoConnecticutDelawareDistrict of ColumbiaFloridaGeorgiaGuamHawaiiIdahoIllinoisIndianaIowaKansasKentuckyLouisianaMaineMarylandMassachusettsMichiganMinnesotaMississippiMissouriMontanaNebraskaNevadaNew HampshireNew JerseyNew MexicoNew YorkNorth CarolinaNorth DakotaNorthern Mariana IslandsOhioOklahomaOregonPennsylvaniaPuerto RicoRhode IslandSouth CarolinaSouth DakotaTennesseeTexasUtahU.S. Virgin IslandsVermontVirginiaWashingtonWest VirginiaWisconsinWyomingArmed Forces AmericasArmed Forces EuropeArmed Forces Pacific\n                                        State\n                                      \n                                    \n                                    ZIP Code\n                                \n                    \n                Required to complete purchase.Annual Subscription(Required)\n								\n								I agree to renew my Alaska Safe Riders Membership annually
URL:https://alaskasaferiders.org/event/empowdered-maintenance-clinic-at-hpak-wasilla/
LOCATION:Hatcher Pass Polaris\, 5953 E Blue Lupine Drive\, Palmer\, AK\, 99654\, United States
CATEGORIES:Workshop
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2025/10/emPOWDERed-Maintenance-Clinic-HPAK-11122025-1.png
ORGANIZER;CN="Sierra Winter":MAILTO:sierrawintersmith@outlook.com
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20251108T160000
DTEND;TZID=America/Anchorage:20251108T210000
DTSTAMP:20260614T002350
CREATED:20250929T213133Z
LAST-MODIFIED:20251212T205127Z
UID:10000090-1762617600-1762635600@alaskasaferiders.org
SUMMARY:zz - Awakening of Winter 6 - Hilltop Ski Area
DESCRIPTION:Awakening of Winter 6 – Film Premiere📅 Saturday\, November 8\, 2025📍 Hilltop Ski Area\, Anchorage🕓 Doors open 4:00 PM | 🎥 Film at 5:35 PM \nAlaska Safe Riders is proud to be part of Awakening of Winter 6\, brought to you by Awaken Productions and Artwork by Sierra Winter. Join Alaska’s shred community for an epic evening featuring the highly anticipated film premiere\, food\, drinks\, door prizes\, and more. \n🎟️ Tickets available now: Eventbrite Link \n  \nBecome a Member of Alaska Safe Riders\nSupport safer\, more enjoyable riding across Alaska and enjoy member perks: \n✨ ASR Basic — $25/yr: Members-only training events; networking; merch offers; automatic prize entries👨‍👩‍👧‍👦 ASR Family — $50/yr: Up to 6 family members; networking with riders & champions; merch offers; prize entries🏫 ASR Schools — $100/yr: School recognition; priority reservations for school trainings; special school offers🏢 ASR Business — $500+/yr: Business recognition; industry networking; visibility at events/workshops; website/newsletter recognition \n👉 Start your journey to safer riding today—join Alaska Safe Riders! \n\n                \n                        \n                            Membership form\n                            Alaska Safe Riders Membership Form \n                        \n        \n        	Step 1 of 2 - Member Information\n        	 \n            \n                0%\n            \n                        \n					URLThis field is for validation purposes and should be left unchanged.This field is hidden when viewing the formPayment confirmed?\n								\n								Debra\n							This field is hidden when viewing the formPayment Confirmation Date\n                            \n                            MM slash DD slash YYYY\n                        \n                        This field is hidden when viewing the formPayment Confirmation Notes\nTell us a bit about yourself so we can set up your membership.\n Email for Membership(Required)\n                            \n                        Ticket & Membership information will be sent to this email.Name for Membership(Required)\n                            \n                            \n                                                    \n                                                    First\n                                                \n                            \n                            \n                                                    \n                                                    Last\n                                                \n                            \n                        Phone Number(Required)I agree to receive SMS notifications for transaction confirmations\, reminders\, and promotional offers. Standard messaging rates may apply.(Required)\n								\n								I agree to receive SMS notifications.\n							\n                    \n                    \n                          \n                    \n                \n                \n                    \n                        \nReview your selection and complete your payment securely.\n Which ASR Membership would you like to purchase?(Required)ASR Basic - $25.00ASR Family - $50.00ASR Schools - $100.00ASR Business - $500.00ASR Business - $1\,000.00ASR Business - $2\,500.00ASR Business - $5\,000.00ASR Business - $10\,000.00Would you like to automatically renew your ASR membership?\n			\n					\n					Yes\n			\n			\n					\n					No\n			If "Yes" is selected\, you will be billed again for your ASR membership after 1 year. Would you like to make an additional donation to Alaska Safe Riders?\n			\n					\n					Yes\, I would like to make a donation.\n			\n			\n					\n					No\, I would not like to make a donation.\n			This donation will be processed alongside your membership fee.Donation Amount:(Required)\n					\n				Total amount charged\n							\n						Are you paying for this at an Alaska Safe Riders event? (Offline Payment)(Required)\n			\n					\n					No\n			\n			\n					\n					Yes\n			If you are making an offline payment\, you will receive a receipt email that you will need to show to an Alaska Safe Riders Representative to complete your offline payment.Alternate Payment Method (Offline Payment)(Required)\n								\n								Credit Card\n							\n								\n								Cash\n							\n								\n								Check\n							This is the payment method you will be using when you meet an Alaska Safe Riders Representative to complete your offline payment.Credit CardConfiguration Required: To use the Square field\, please configure your Square Settings.Please enter your Billing Address:(Required)    \n                    \n                         \n                                        \n                                        Street Address\n                                    \n                                        \n                                        Address Line 2\n                                    \n                                    \n                                    City\n                                 \n                                        AlabamaAlaskaAmerican SamoaArizonaArkansasCaliforniaColoradoConnecticutDelawareDistrict of ColumbiaFloridaGeorgiaGuamHawaiiIdahoIllinoisIndianaIowaKansasKentuckyLouisianaMaineMarylandMassachusettsMichiganMinnesotaMississippiMissouriMontanaNebraskaNevadaNew HampshireNew JerseyNew MexicoNew YorkNorth CarolinaNorth DakotaNorthern Mariana IslandsOhioOklahomaOregonPennsylvaniaPuerto RicoRhode IslandSouth CarolinaSouth DakotaTennesseeTexasUtahU.S. Virgin IslandsVermontVirginiaWashingtonWest VirginiaWisconsinWyomingArmed Forces AmericasArmed Forces EuropeArmed Forces Pacific\n                                        State\n                                      \n                                    \n                                    ZIP Code\n                                \n                    \n                Required to complete purchase.Annual Subscription(Required)\n								\n								I agree to renew my Alaska Safe Riders Membership annually
URL:https://alaskasaferiders.org/event/awakening-of-winter-6-hilltop-ski-area/
LOCATION:Hilltop Ski Area\, 7015 Abbott Road\, Anchorage\, AK\, 99507\, United States
CATEGORIES:Community Expo,School Training
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2025/09/Awakening-of-Winter-6-ABSW-2025.png
ORGANIZER;CN="Sierra Winter":MAILTO:sierrawintersmith@outlook.com
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20251022T180000
DTEND;TZID=America/Anchorage:20251022T200000
DTSTAMP:20260614T002350
CREATED:20250929T213705Z
LAST-MODIFIED:20251212T204702Z
UID:10000092-1761156000-1761163200@alaskasaferiders.org
SUMMARY:zz - emPOWDERed Maintenance Clinic at Team CC Skidoo Wasilla
DESCRIPTION:emPOWDERed Maintenance Clinic at Team CC Skidoo Wasilla\nJoin emPOWDERed at Team CC Skidoo for a hands-on evening designed to get riders ready for the season!\nLearn directly from instructors Trever Nickerson and Scott Franz with two units on display for practice.\nThis free clinic is open to all riders—whether you’re new to Skidoo & Lynx or just want to brush up on your preseason prep.\n \nWhat to Expect\nMeet & Greet: Kick off the evening with pizza (via Bearpaw River Brewery) and beverages provided by Team CC.\nPreseason & Pre-Ride Checklist Review\nHands-On Learning: \nChanging belts \nTrack tension & adjustments \n Chaincase tension & adjustments \n Spark plug checks \nQ&A Session + Door Prizes from Team CC\, emPOWDERed\, and Sierra Winter\nConnect with vendors Sierra Winter and Alaska Safe Riders \nFREE to the public – come learn\, eat\, and gear up for the season! \nWhat is emPOWDERed?\nemPOWDERed is a community-driven movement created to empower riders—through education\, clinics\, and connection—to build confidence on and off the snow.\nLearn more at artworkbysierrawinter.com/empowdered\n👉 Please note: An Alaska Safe Riders (ASR) membership is required to attend emPOWDERed rides. \nBecome a Member of Alaska Safe Riders\nSupport safer\, more enjoyable riding across Alaska and enjoy member perks:\n✨ ASR Basic — $25/yr: Members-only training events; networking; merch offers; automatic prize entries👨‍👩‍👧‍👦 ASR Family — $50/yr: Up to 6 family members; networking with riders & champions; merch offers; prize entries🏫 ASR Schools — $100/yr: School recognition; priority reservations for school trainings; special school offers🏢 ASR Business — $500+/yr: Business recognition; industry networking; visibility at events/workshops; website/newsletter recognition \n👉 Start your journey to safer riding today—join Alaska Safe Riders! \n\n                \n                        \n                            Membership form\n                            Alaska Safe Riders Membership Form \n                        \n        \n        	Step 1 of 2 - Member Information\n        	 \n            \n                0%\n            \n                        \n					PhoneThis field is for validation purposes and should be left unchanged.This field is hidden when viewing the formPayment confirmed?\n								\n								Debra\n							This field is hidden when viewing the formPayment Confirmation Date\n                            \n                            MM slash DD slash YYYY\n                        \n                        This field is hidden when viewing the formPayment Confirmation Notes\nTell us a bit about yourself so we can set up your membership.\n Email for Membership(Required)\n                            \n                        Ticket & Membership information will be sent to this email.Name for Membership(Required)\n                            \n                            \n                                                    \n                                                    First\n                                                \n                            \n                            \n                                                    \n                                                    Last\n                                                \n                            \n                        Phone Number(Required)I agree to receive SMS notifications for transaction confirmations\, reminders\, and promotional offers. Standard messaging rates may apply.(Required)\n								\n								I agree to receive SMS notifications.\n							\n                    \n                    \n                          \n                    \n                \n                \n                    \n                        \nReview your selection and complete your payment securely.\n Which ASR Membership would you like to purchase?(Required)ASR Basic - $25.00ASR Family - $50.00ASR Schools - $100.00ASR Business - $500.00ASR Business - $1\,000.00ASR Business - $2\,500.00ASR Business - $5\,000.00ASR Business - $10\,000.00Would you like to automatically renew your ASR membership?\n			\n					\n					Yes\n			\n			\n					\n					No\n			If "Yes" is selected\, you will be billed again for your ASR membership after 1 year. Would you like to make an additional donation to Alaska Safe Riders?\n			\n					\n					Yes\, I would like to make a donation.\n			\n			\n					\n					No\, I would not like to make a donation.\n			This donation will be processed alongside your membership fee.Donation Amount:(Required)\n					\n				Total amount charged\n							\n						Are you paying for this at an Alaska Safe Riders event? (Offline Payment)(Required)\n			\n					\n					No\n			\n			\n					\n					Yes\n			If you are making an offline payment\, you will receive a receipt email that you will need to show to an Alaska Safe Riders Representative to complete your offline payment.Alternate Payment Method (Offline Payment)(Required)\n								\n								Credit Card\n							\n								\n								Cash\n							\n								\n								Check\n							This is the payment method you will be using when you meet an Alaska Safe Riders Representative to complete your offline payment.Credit CardConfiguration Required: To use the Square field\, please configure your Square Settings.Please enter your Billing Address:(Required)    \n                    \n                         \n                                        \n                                        Street Address\n                                    \n                                        \n                                        Address Line 2\n                                    \n                                    \n                                    City\n                                 \n                                        AlabamaAlaskaAmerican SamoaArizonaArkansasCaliforniaColoradoConnecticutDelawareDistrict of ColumbiaFloridaGeorgiaGuamHawaiiIdahoIllinoisIndianaIowaKansasKentuckyLouisianaMaineMarylandMassachusettsMichiganMinnesotaMississippiMissouriMontanaNebraskaNevadaNew HampshireNew JerseyNew MexicoNew YorkNorth CarolinaNorth DakotaNorthern Mariana IslandsOhioOklahomaOregonPennsylvaniaPuerto RicoRhode IslandSouth CarolinaSouth DakotaTennesseeTexasUtahU.S. Virgin IslandsVermontVirginiaWashingtonWest VirginiaWisconsinWyomingArmed Forces AmericasArmed Forces EuropeArmed Forces Pacific\n                                        State\n                                      \n                                    \n                                    ZIP Code\n                                \n                    \n                Required to complete purchase.Annual Subscription(Required)\n								\n								I agree to renew my Alaska Safe Riders Membership annually
URL:https://alaskasaferiders.org/event/new-rider-skidoo-lynx-maintenance-clinic-empowdered-team-cc/
LOCATION:Team CC Skidoo Wasilla\, 491 S Willow St\, Wasilla\, AK\, 99654\, United States
CATEGORIES:Members only special event,Workshop
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2025/09/Maintenance-Clinic-Team-CC-Skidoo-October-22.png
ORGANIZER;CN="Sierra Winter":MAILTO:sierrawintersmith@outlook.com
END:VEVENT
END:VCALENDAR