
        <!-- Modal -->
        <style>
                .conf_message {

                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    padding: 0px;
                    width: 663px;
                    height: 277px;

                }
                .title-and-close-wrapper {

                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    padding: 0px;

                    background: #E7F9FF;
                    border-radius: 8px 8px 0px 0px;


                    flex: none;
                    order: 0;
                    align-self: stretch;
                    flex-grow: 0;
                }

                .title-and-close {

                    display: flex;
                    flex-direction: row;
                    justify-content: space-between;
                    align-items: center;
                    padding: 12px 24px;
                    gap: 20px;


                    flex: none;
                    order: 0;
                    align-self: stretch;
                    flex-grow: 0;
                }

                .dialog-title {

                    font-family: 'Inter';
                    font-style: normal;
                    font-weight: 700;
                    font-size: 18px;
                    line-height: 130%;
                    color: #101B21;

                    flex: none;
                    order: 0;
                    flex-grow: 0;
                }
                .c-dialog-close {
                    width: 26px;
                    height: 26px;

                    flex: none;
                    order: 1;
                    flex-grow: 0;
                }
                .modal-bottom-half-wrapper {

                    display: flex;
                    flex-direction: column;
                    align-items: flex-end;
                    padding: 24px 36px 36px;
                    gap: 32px;

                    background: #FFFFFF;
                    box-shadow: 0px 4px 30px rgba(112, 139, 163, 0.2);
                    border-radius: 0px 0px 8px 8px;

                    flex: none;
                    order: 1;
                    align-self: stretch;
                    flex-grow: 0;
                }
                .modal-bottom-half {
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    padding: 0px;
                    gap: 32px;

                    flex: none;
                    order: 0;
                    align-self: stretch;
                    flex-grow: 0;
                }
                .modal-message-and-ctas {

                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    padding: 0px;
                    gap: 24px;


                    flex: none;
                    order: 0;
                    align-self: stretch;
                    flex-grow: 0;
                }
                .modal-message {

                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    padding: 0px;
                    gap: 16px;


                    flex: none;
                    order: 0;
                    align-self: stretch;
                    flex-grow: 0;
                }
                .modal-message p {
                    width: 591px;

                    font-family: 'Roboto';
                    font-style: normal;
                    font-weight: 400;
                    font-size: 18px;
                    line-height: 130%;

                    text-align: center;

                    color: #213139;


                    flex: none;
                    order: 0;
                    align-self: stretch;
                    flex-grow: 0;
                }
                .notice-close {
                    cursor: pointer;
                }
                button.notice-close {

                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    padding: 13px 65px;
                    gap: 8px;

                    width: 304px;
                    height: 50px;
                    background: #B42127;

                    font-family: 'Roboto';
                    font-style: normal;
                    font-weight: 700;
                    font-size: 18px;
                    line-height: 130%;

                    display: flex;
                    align-items: center;
                    text-align: center;
                    color: #FFFFFF;
                    border-radius: 4px;


                }
                button.notice-close:focus {
                    background: #B42127;
                    border: 3px solid #213139;
                }
                button.notice-close:hover {
                    background: #980107;
                }

                .modal-message-and-ctas a {

                    font-family: 'Roboto';
                    font-style: normal;
                    font-weight: 700;
                    font-size: 18px;
                    line-height: 130%;

                    text-align: center;
                    text-decoration-line: underline;

                    color: #213139;

                    flex: none;
                    order: 2;
                    align-self: stretch;
                    flex-grow: 0;
                }

                /* Tablet */
                @media screen and (max-width: 900px) {
                    .conf_message  {
                        width: 505px;
                    }
                    .modal-message p {
                        width: 433px;
                        font-size:16px;
                        text-align: left;
                    }
                    button.notice-close {
                        width: 304px;
                    }
                }

                /* Mobile */
                @media screen and (max-width: 600px) {
                    .conf_message  {
                        width: 311px;
                        height: 354px;
                    }
                    .modal-message p {
                        width: 239px;
                        font-size:16px;
                        text-align: left;
                    }
                    .dialog-title {
                        width: 217px;
                    }
                    button.notice-close {
                        width: 239px;
                    }
                }
            </style>

            <style type="text/css">

            .c-dialog {
                position: fixed;
                z-index: 1000;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                display: flex;
                background-color: #fff;
                -webkit-transition: 0.2s;
                transition: 0.2s;
                margin: auto;
            }

            .c-dialog[aria-hidden='true'] {
                visibility: hidden;
                opacity: 0;
            }

            /* Backdrop dialog */
            .c-dialog--backdrop {
                z-index: 999;
                background: rgba(33, 49, 57, 0.6);
                backdrop-filter: blur(8px);
            }


            .c-dialog__inner {
                margin: auto !important; /*  js_composer.min.css competes with this, so !important is needed */
            }


            </style>

            <div class="c-dialog c-dialog--backdrop submit-notice-backdrop submit-notice" style="display: none;" role="dialog" aria-labelledby="dialog-title" aria-modal="true">
                <div class="c-dialog__inner conf_message">
                    <div class="c-dialog-titlebar title-and-close-wrapper">
                        <div class="title-and-close">
                            <div class="submit-dialog-title dialog-title">Customer Care Message</div>
                            <div class="c-dialog-close notice-close">
                                <svg width="26" height="26" viewBox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg">
                                    <path d="M20.3125 5.6875L5.6875 20.3125" stroke="#101B21" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
                                    <path d="M20.3125 20.3125L5.6875 5.6875" stroke="#101B21" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
                                </svg>
                            </div>
                        </div>
                    </div>
                    <div class="modal-bottom-half-wrapper">
                        <div class="modal-bottom-half">
                            <div class="modal-message-and-ctas">
                                <div class="modal-message">
                                    <p></p>
                                </div>
                                <button type="button" id="submit-notice-close" class="submit-notice-close notice-close">Close</button>
                                <a class="homePageLink" href="/">Take me to the homepage</a>
                            </div>
                        </div>
                    </div>
                </div>
            </div>

            <script type="text/javascript" src="https://trailways.com/wp-content/themes/trailways2018/dist/assets/js/dialog-alert.js"></script>

            <script type="text/javascript">
                    function showSubmitNotice(message, showReturnToHomePageLink = true) {
                        if (showReturnToHomePageLink) {
                            jQuery('.submit-notice-backdrop .homePageLink').show();
                        } else {
                            jQuery('.submit-notice-backdrop .homePageLink').hide();
                        }
                        // Showing a blank modal would be embarrassing
                        if (!message) {
                            message = "Thank you for submitting your request.";
                        }
                        jQuery('.submit-notice-backdrop .modal-message p').html(message);
                        jQuery('.submit-notice-backdrop').show();
                        const dialog = new Dialog.default('.submit-notice-backdrop', {
                                closingSelector: '.notice-close',
                                labelledby: 'submit-dialog-title',
                                describedby: 'submit-dialog-desc',
                                isOpen: true
                        });
                    }
            </script>

        <!-- / Modal -->
                <script type="text/javascript">

                window.addEventListener('DOMContentLoaded', function (event) {

                    
        
        
        
        function focusFirstErr() {
            jQuery("#form-errors div:first-child a").focus();
        }



        jQuery('body').on('click', '#fix-form-errors-main', function(e) {


            var code = e.keyCode || e.which;


            e.preventDefault();


                        jQuery("#form-errors div:first-child a").focus();


        });

        document.body.addEventListener( 'keyup', function ( e ) {


            if( e.target.id == 'fix-form-errors-main' ) {

                e.preventDefault();

                const mainErrElem = document.getElementById('fix-form-errors-main');


                if (mainErrElem.classList.contains('focusing')) {
                    mainErrElem.classList.remove('focusing')
                    return;
                }
                jQuery("#form-errors div:first-child a").focus();
            };

        } );






        jQuery('body').on('keypress', '[aria-invalid="true"]', function(e) {



            // get the elem id

            var code = e.keyCode || e.which;




            if (e.key == "Enter" || e.which == 13 || e.keyCode == 13 || code === 13) {
                /*
                e.preventDefault();
                var inputToHandleId = e.target.id;

                var newErrorSelector = '[data-elem-target="' + inputToHandleId + '"]';
                var newSelector = '#' + inputToHandleId;

                jQuery(newSelector).addClass('testing-validation');



                */

                
                

                                /*
                jQuery(newErrorSelector).focus();

                validatingSingle = false;
                return false;
                */

            }
        });

            
            jQuery('body').on('click', 'a.err-msg', function() {


                var elemToFocus = jQuery(this).attr('data-elem-target');
                 console.log("elem to focus is", elemToFocus);

                document.getElementById(elemToFocus).focus();
            });

            var validatingSingle = false;

           var webToCaseValidator = $("#advertise-with-us-form").validate({
                 onkeyup: false,
                 onfocusout: false,
                 focusInvalid: false,
                 onclick: false,



                errorElement: "div",



                errorLabelContainer: $("div.err-list"),
                showErrors: function(errorMap, errorList) {

                    
                    if (validatingSingle) {
                        return;
                    }

                                        jQuery("#advertise-with-us-form input").attr("aria-invalid", false);
                    jQuery("#advertise-with-us-form select").attr("aria-invalid", false);

                    jQuery("#advertise-with-us-form fieldset").removeClass('fieldset-invalid');


                    jQuery("div.err-list").html("");

                                        if (errorList.length === 0) {
                        $("div.error").hide();
                        return;
                    }

                    $("div.error").show();

                                        if (Array.isArray(errorList)) {
                        var errorIdList = [];
                        for (var ai = 0; ai < errorList.length; ai++) {

                            if (errorList[ai].element.id) {

                                var errElem = document.getElementById(errorList[ai].element.id);
                                var errElemID = errorList[ai].element.id;

                                var errorMsg = errElem.title;

                                // Sometimes we need a better error message than what's in the title, so this allows for it
                                if (jQuery(errElem).data('errmsg')) {
                                    errorMsg = jQuery(errElem).data('errmsg');
                                }
                                // for radio butons

                                if (errElem.getAttribute("type") == 'radio' || errElem.getAttribute("type") == 'checkbox' ) {

                                    jQuery(errElem).closest('fieldset').addClass("fieldset-invalid");
                                }

                                if (errElem.getAttribute("type") == 'radio') {

                                    
                                    jQuery(errElem).parent().closest('fieldset').addClass("fieldset-invalid");
                                }



                                errElem.setAttribute('aria-invalid', true);
                                var errorObj = {
                                    id: errElemID,
                                    message: errorMsg,
                                };
                                errorIdList.push(errorObj);
                            }
                        }
                    }


                    for (var errElem = 0; errElem < errorIdList.length; errElem++) {

                            var errorMessageToAppend = errorIdList[errElem].message;
                            var curID = errorIdList[errElem].id;

                                                        var onClickMarkup = 'onClick="document.getElementById(';
                            onClickMarkup += "'" + errorIdList[errElem].id + "'";
                            onClickMarkup += ').focus(); return: false;"';

                            var dataToAppend = "<div><a class='err-msg' tabindex='0' data-elem-target='" + errorIdList[errElem].id +  "' href='javascript:void(0);' role='alert' onclick=''>" + errorMessageToAppend  + "<span class='sr-only'> Press enter or return to fix invalid input</span></a></div>";

                                                        jQuery("div.err-list").append(dataToAppend);


                    }

                        jQuery("#fix-form-errors-main").addClass('focusing');
                        jQuery("#fix-form-errors-main").focus().attr('aria-live', 'polite');


                        // jQuery("#form-errors div:first-child a").focus().attr('aria-live', 'polite');


                },




            });

            
            jQuery.validator.addMethod("phone", function (phone_number, element) {
                   //  console.log("phone number is validating");
                    phone_number = phone_number.replace(/\s+/g, "");
                    return this.optional(element) || phone_number.length > 9 &&

                       phone_number.match(/^[+]?[(]?[0-9]{3}[)]?[-\s.]?[0-9]{3}[-\s.]?[0-9]{4,6}$/);
                }, "Invalid phone number");

                // for phone numbers that can optionally have content
                   jQuery.validator.addMethod("phoneorempty", function (phone_number, element) {

                    if (phone_number == "") {
                        // console.log("phone num was empty");
                        this.optional(element);
                    }

                    phone_number = phone_number.replace(/\s+/g, "");

                    return this.optional(element) || phone_number.length > 9 &&

                       phone_number.match(/^[+]?[(]?[0-9]{3}[)]?[-\s.]?[0-9]{3}[-\s.]?[0-9]{4,6}$/);
                }, "Invalid phone number");

                jQuery.validator.addMethod("customemail",
                    function(value, element) {
                        return /(?:[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+)*|"(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21\x23-\x5b\x5d-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])*")@(?:(?:[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?\.)+[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?|\[(?:(?:(2(5[0-5]|[0-4][0-9])|1[0-9][0-9]|[1-9]?[0-9]))\.){3}(?:(2(5[0-5]|[0-4][0-9])|1[0-9][0-9]|[1-9]?[0-9])|[a-zA-Z0-9-]*[a-zA-Z0-9]:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21-\x5a\x53-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])+)])$/.test(value);
                    },
                    "Sorry, I've enabled very strict email validation"
                );

                jQuery.validator.addMethod("ticket_confirmation_number",
                    function(value, element) {
                        if (/\D/.test(value)) {
                            return false;
                        }
                        if (value.length < 6 || value.length > 8) {
                            return false;
                        }
                        return true;
                    },
                    "Please enter a 6 to 8 digit ticket confirmation number. Must be 6 to 8 digits in length"
                );

                jQuery.validator.addMethod("customradioyesno",
                    function(value, element) {
                        return true;
                    },
                    "Sorry, radio buttons are required"
                );


                 var form = document.getElementById('advertise-with-us-form');
         form.addEventListener('submit', onSubmitForm);

        function onSubmitForm(event){
            event.preventDefault();

                        const formSubmitBtn = document.getElementById('sc-form-submit');
            formSubmitBtn.disabled = true;


            var formValid = $("#advertise-with-us-form").valid();

            if (!formValid) {
                formSubmitBtn.removeAttribute("disabled");
                return;
            }

            var formLog = document.getElementById('form-log');
            var submittingElem = document.getElementById('submitting-row');


            const XHR = new XMLHttpRequest();

            // Bind the FormData object and the form element
            var FD = new FormData( form );
            FD.append('formid', 3);

            submittingElem.setAttribute('role', 'status');
            submittingElem.setAttribute('aria-live', 'polite'); // Shows "Submitting..." status

            // Define what happens on successful data submission
            XHR.addEventListener( "load", function(event) {

                setTimeout(function() {
                    const formSubmitBtn = document.getElementById('sc-form-submit');
                    formSubmitBtn.removeAttribute('disabled');
                }, 1000);


                var resp = event.target.responseText;


                var response = JSON.parse(resp);

                var message = response.message;


              //   console.log('Response', response);
                if ( response.success === true) {
                    form.reset();
                    if (typeof(showSubmitNotice) == "function") {
                        showSubmitNotice("Thank you for submitting your request. Your inquiry has been delivered to our Customer Care Center and will be answered shortly.", true);
                        submittingElem.setAttribute('aria-live', ''); // Hides "Submitting..." status
                    } else {
                        submittingElem.innerHTML = 'Form Submitted';
                        formLog.setAttribute('aria-live', 'polite');
                        formLog.innerHTML = message;
                    }
                } else {
                    if (typeof(showSubmitNotice) == "function") {
                        showSubmitNotice("Sorry, there was a problem.<br/>" + message, false);
                        submittingElem.setAttribute('aria-live', ''); // Hides "Submitting..." status
                    } else {
                        submittingElem.innerHTML = 'Error Submitting Form. Please see below for details.';
                        formLog.setAttribute('aria-live', 'polite');
                        formLog.innerHTML = message;
                    }
                }


            } );

            // Define what happens in case of error
            XHR.addEventListener( "error", function( event ) {
                console.error('Something went wrong');
            } );

            // Set up our request

            var restNonce = '8bb2a80efa';

            XHR.open( "POST", "/wp-json/sc-service/v2/tw_form_handler" );
            XHR.setRequestHeader('X-WP-Nonce', restNonce)
            // The data sent is what the user provided in the form
            XHR.send( FD );
        }

        
                });

        </script>
        {"id":11030,"date":"2018-08-01T14:32:27","date_gmt":"2018-08-01T18:32:27","guid":{"rendered":"http:\/\/dev2.trailwaysny.com\/?page_id=11030"},"modified":"2022-01-03T11:14:37","modified_gmt":"2022-01-03T16:14:37","slug":"advertise-with-us","status":"publish","type":"page","link":"https:\/\/trailways.com\/advertise-with-us\/","title":{"rendered":"Advertise with Us"},"content":{"rendered":"<section class=\"wpb-content-wrapper\"><p>[vc_row][vc_column][vc_column_text]<\/p>\n<h1>Advertise with Trailways<sup style=\"font-size: 16px; top: -14px;\">\u00ae<\/sup><\/h1>\n<p>[\/vc_column_text][\/vc_column][\/vc_row][vc_row][vc_column][vc_single_image image=&#8221;12821&#8243; img_size=&#8221;600&#215;300&#8243; alignment=&#8221;center&#8221;][vc_empty_space][\/vc_column][\/vc_row][vc_row el_class=&#8221;advertise-intro&#8221;][vc_column][vc_column_text]<\/p>\n<h3 style=\"text-align: center;\"><strong>Why advertise with Trailways?<br \/>\n<\/strong><\/h3>\n<h4 style=\"text-align: center;\">We\u2019re a people company. In the bus business.<\/h4>\n<p style=\"text-align: center;\">We\u2019ve been driving you home for nearly a century.<br \/>\nAs an advertising partner, we can drive your message home too.<\/p>\n<p>[\/vc_column_text][vc_empty_space][\/vc_column][\/vc_row][vc_row][vc_column][vc_column_text]Advertising with Trailways offers advertisers and brands an exciting new opportunity to reach countless travelers across the country. We\u2019ve partnered with industry leaders such as Boingo Media, Vector Media, and Clear Channel Outdoor to make your marketing activity as effective as possible no matter where you are in the United States. As an advertising partner with, agencies and brands are able to access to the following marketing opportunities: category exclusivity, rights to use the logos and marks of participating Trailways carriers, rights to conduct consumer activation programs and retail promotions, station signage, branding and exposure, reach specific targeted audiences (men\/women, youth, etc.), connection to various community groups and charitable causes, participate in special events and cross-promotions, and more.<\/p>\n<p>When you partner with Trailways, you partner with brand equity nearly a century in the making. What are you waiting for?<\/p>\n<p>[\/vc_column_text][vc_empty_space height=&#8221;20px&#8221;][\/vc_column][\/vc_row][vc_row][vc_column width=&#8221;1\/4&#8243;][vc_column_text el_class=&#8221;advertise-circle&#8221;]<\/p>\n<p style=\"text-align: center;\">More than 100K monthly WIFI users<\/p>\n<p>[\/vc_column_text][\/vc_column][vc_column width=&#8221;1\/4&#8243;][vc_column_text el_class=&#8221;advertise-circle&#8221;]<\/p>\n<p style=\"text-align: center;\">In excess of 70K hourly impressions<\/p>\n<p>[\/vc_column_text][\/vc_column][vc_column width=&#8221;1\/4&#8243;][vc_column_text el_class=&#8221;advertise-circle&#8221;]<\/p>\n<p style=\"text-align: center;\">Carrying 300K+ passengers monthly<\/p>\n<p>[\/vc_column_text][\/vc_column][vc_column width=&#8221;1\/4&#8243;][vc_column_text el_class=&#8221;advertise-circle&#8221;]<\/p>\n<p style=\"text-align: center;\">Covering 100,000K miles each day<\/p>\n<p>[\/vc_column_text][\/vc_column][\/vc_row][vc_row disable_element=&#8221;yes&#8221;][vc_column el_class=&#8221;advertise-form&#8221;][vc_empty_space height=&#8221;20px&#8221;][gravityform id=&#8221;17&#8243; title=&#8221;false&#8221; description=&#8221;false&#8221; ajax=&#8221;false&#8221;][\/vc_column][\/vc_row][vc_row][vc_column][vc_column_text]\n        <script tyoe=\"text\/javascript\">\n\n        document.addEventListener(\"DOMContentLoaded\", function(event) {\n\n                    var checkBoxPartialSelect1 = 'input[name=\"Advertisement_Interest__c_part\"]';\n        var checkBoxPartialSelectChecked1 = 'input[name=\"Advertisement_Interest__c_part\"]:checked';\n\n        jQuery(checkBoxPartialSelect1).change(function() {\n\n              if(this.checked) {\n                 \/\/ console.log(\"something was checked\");\n              }\n\n              \/\/ loop through the checked version\n\n              \/\/ initialize\n              var checkedItemArray = [];\n\n              jQuery(checkBoxPartialSelectChecked1).each( function( index, element ){\n\n\n                  var curItemVal = jQuery( element).val();\n\n                  \/\/ append the the item to an array\n                  \/\/ checkedItemArray.push('\"' + curItemVal + '\"');\n                  checkedItemArray.push(curItemVal);\n\n              });\n\n             \/\/ console.log(\"checked items are \", checkedItemArray);\n              var allCheckedItems = checkedItemArray.join(';');\n\n             \/\/  console.log(\"all checked items are\", allCheckedItems);\n\n              \/\/ set the value of our checkbox collector to the concatenated values\n              jQuery('#checkbox-colllector-Advertisement_Interest__c').val(allCheckedItems);\n\n          });\n                              var checkBoxPartialSelect2 = 'input[name=\"Country_for_Advertisement__c_part\"]';\n        var checkBoxPartialSelectChecked2 = 'input[name=\"Country_for_Advertisement__c_part\"]:checked';\n\n        jQuery(checkBoxPartialSelect2).change(function() {\n\n              if(this.checked) {\n                 \/\/ console.log(\"something was checked\");\n              }\n\n              \/\/ loop through the checked version\n\n              \/\/ initialize\n              var checkedItemArray = [];\n\n              jQuery(checkBoxPartialSelectChecked2).each( function( index, element ){\n\n\n                  var curItemVal = jQuery( element).val();\n\n                  \/\/ append the the item to an array\n                  \/\/ checkedItemArray.push('\"' + curItemVal + '\"');\n                  checkedItemArray.push(curItemVal);\n\n              });\n\n             \/\/ console.log(\"checked items are \", checkedItemArray);\n              var allCheckedItems = checkedItemArray.join(';');\n\n             \/\/  console.log(\"all checked items are\", allCheckedItems);\n\n              \/\/ set the value of our checkbox collector to the concatenated values\n              jQuery('#checkbox-colllector-Country_for_Advertisement__c').val(allCheckedItems);\n\n          });\n          \n        });\n        <\/script>\n\n            <div class=\"error form-err-cntr\" tabindex=\"-1\" id=\"form-errors\" style=\"display: none;\">\n                <p>Please fix the following form errors<\/p>\n                <div class=\"err-list\">\n\n                <\/div>\n            <\/div>\n\n            <form id=\"advertise-with-us-form\" action=\"#!\" class=\"webtocase\" method=\"POST\">\n\n                <div class=\"webform-row\">\n                    <div>\n                        <label tabindex=\"-1\" id=\"Web_First_Name__c\" for=\"refund_first_name\">First Name: \n        <span class=\"web-to-case-asterisk\"> * <span class=\"sr-only\"> Required<\/span><\/span>\n        <\/label>\n                        <input id=\"refund_first_name\" maxlength=\"40\" minlength=\"3\" name=\"Web_First_Name__c\" title=\"Please enter your first name (at least 3 characters)\" type=\"text\" aria-required=\"true\" aria-labelledby=\"refund_first_name\" required \/><br>\n                    <\/div>\n                    <div>\n                        <label tabindex=\"-1\" for=\"refund_last_name\" id=\"Web_Last_Name__c\">Last Name: \n        <span class=\"web-to-case-asterisk\"> * <span class=\"sr-only\"> Required<\/span><\/span>\n        <\/label>\n                        <input id=\"refund_last_name\" maxlength=\"80\" minlength=\"3\" name=\"Web_Last_Name__c\" title=\"Please enter your last name (at least 3 characters)\" type=\"text\" aria-required=\"true\" aria-labelledby=\"refund_last_name\" required \/><br>\n                    <\/div>\n                <\/div> \n                <label for=\"SuppliedCompany\" id=\"advertise-company-lbl\"  tabindex=\"-1\">Company \n        <span class=\"web-to-case-asterisk\"> * <span class=\"sr-only\"> Required<\/span><\/span>\n        <\/label>\n                <input  id=\"advertise-company\" maxlength=\"40\" minlength=\"2\" name=\"SuppliedCompany\" type=\"text\" title=\"Please enter a company name of more than 2 character\" aria-labelledby=\"advertise-company-lbl\"  required \/><br>\n\n                <div class=\"webform-row\">\n                    <div>\n                        <label for=\"phone\" id=\"refund_primary_phone\"  tabindex=\"-1\">Primary Phone \n        <span class=\"web-to-case-asterisk\"> * <span class=\"sr-only\"> Required<\/span><\/span>\n        <\/label>\n                        <input  id=\"phone\" maxlength=\"40\" name=\"phone\" type=\"tel\" title=\"Please use the following phone number format: 555-555-5555\" class=\"required phone\" aria-labelledby=\"refund_primary_phone\"  required \/>\n                    <\/div>\n                    <div>\n                        <label tabindex=\"-1\" id=\"refund_email\" for=\"email\">Email: \n        <span class=\"web-to-case-asterisk\"> * <span class=\"sr-only\"> Required<\/span><\/span>\n        <\/label>\n                        <input  id=\"email\" maxlength=\"80\" name=\"email\" type=\"email\" class=\"required customemail\" title=\"Please enter a valid email address\" aria-required=\"true\" aria-labelledby=\"refund_email\" required \/>\n                    <\/div>\n                <\/div>\n\n\n\n                <fieldset>\n                <legend>I am interested in: \n        <span class=\"web-to-case-asterisk\"> * <span class=\"sr-only\"> Required<\/span><\/span>\n        <\/legend>\n                <br \/>\n                        <div>\n                            <input type=\"checkbox\" name=\"Advertisement_Interest__c_part\" id=\"vehicle_wraps\" value=\"Vehicle Wraps\" title=\"Please indicate what type of advertisements you're interested in\" aria-labelledby=\"vehicle_wraps_lbl\" aria-required=\"true\" required>\n                            <label for=\"vehicle_wraps\" id=\"vehicle_wraps_lbl\">Vehicle Wraps<\/label>\n                        <\/div>\n                        <div>\n                            <input type=\"checkbox\" name=\"Advertisement_Interest__c_part\" id=\"wifi_advertising\" value=\"Wi-Fi Advertising\" aria-required=\"true\" aria-labelledby=\"wifi_advertising_lbl\" required>\n                            <label for=\"wifi_advertising\" id=\"wifi_advertising_lbl\">Wi-Fi Advertising<\/label>\n                        <\/div>\n                        <div>\n                            <input type=\"checkbox\" name=\"Advertisement_Interest__c_part\" id=\"station_advertising\" value=\"Station Advertising\" aria-required=\"true\" aria-labelledby=\"station_advertising_lbl\" required>\n                            <label for=\"station_advertising\" id=\"station_advertising_lbl\">Station Advertising<\/label>\n                        <\/div>\n                        <div>\n                            <input type=\"checkbox\" name=\"Advertisement_Interest__c_part\" id=\"social_media_partnership\" value=\"Social Media Partnerships\" aria-required=\"true\" aria-labelledby=\"social_media_partnership_lbl\" required>\n                            <label for=\"social_media_partnership\" id=\"social_media_partnership_lbl\">Social Media Partnerships<\/label>\n                        <\/div>\n                        <div>\n                            <input type=\"checkbox\" name=\"Advertisement_Interest__c_part\" id=\"advertise_other\" value=\"Other\" aria-required=\"true\" aria-labelledby=\"advertise_other_lbl\" required>\n                            <label for=\"advertise_other\" id=\"advertise_other_lbl\">Other<\/label>\n                        <\/div>\n\n                        <input type=\"hidden\" id=\"checkbox-colllector-Advertisement_Interest__c\" name=\"Advertisement_Interest__c\" value=\"\" \/>\n                <\/fieldset>\n\n                <p class=\"webform-h\">Trailways United States<\/p>\n\n                <label tabindex=\"-1\" id=\"gen_contact_state\" for=\"State_for_advertisement__c\">Which state would you like to advertise in? \n        <span class=\"web-to-case-asterisk\"> * <span class=\"sr-only\"> Required<\/span><\/span>\n        <\/label>\n                <select  id=\"State_for_advertisement__c\" name=\"State_for_advertisement__c\" data-state=\"usstates\" title=\"Please select the state you'd like to advertise in.\" aria-labelledby=\"gen_contact_state\" required>\n                                    <option value=\"\">--None--<\/option>                <option value=\"Alabama\">Alabama<\/option>        <option value=\"Alaska\">Alaska<\/option>        <option value=\"American Samoa\">American Samoa<\/option>        <option value=\"Arizona\">Arizona<\/option>        <option value=\"Arkansas\">Arkansas<\/option>        <option value=\"California\">California<\/option>        <option value=\"Colorado\">Colorado<\/option>        <option value=\"Connecticut\">Connecticut<\/option>        <option value=\"Delaware\">Delaware<\/option>        <option value=\"District of Columbia\">District of Columbia<\/option>        <option value=\"Florida\">Florida<\/option>        <option value=\"Georgia\">Georgia<\/option>        <option value=\"Guam\">Guam<\/option>        <option value=\"Hawaii\">Hawaii<\/option>        <option value=\"Idaho\">Idaho<\/option>        <option value=\"Illinois\">Illinois<\/option>        <option value=\"Indiana\">Indiana<\/option>        <option value=\"Iowa\">Iowa<\/option>        <option value=\"Kansas\">Kansas<\/option>        <option value=\"Kentucky\">Kentucky<\/option>        <option value=\"Louisiana\">Louisiana<\/option>        <option value=\"Maine\">Maine<\/option>        <option value=\"Maryland\">Maryland<\/option>        <option value=\"Massachusetts\">Massachusetts<\/option>        <option value=\"Michigan\">Michigan<\/option>        <option value=\"Minnesota\">Minnesota<\/option>        <option value=\"Mississippi\">Mississippi<\/option>        <option value=\"Missouri\">Missouri<\/option>        <option value=\"Montana\">Montana<\/option>        <option value=\"Nebraska\">Nebraska<\/option>        <option value=\"Nevada\">Nevada<\/option>        <option value=\"New Hampshire\">New Hampshire<\/option>        <option value=\"New Jersey\">New Jersey<\/option>        <option value=\"New Mexico\">New Mexico<\/option>        <option value=\"New York\">New York<\/option>        <option value=\"North Carolina\">North Carolina<\/option>        <option value=\"North Dakota\">North Dakota<\/option>        <option value=\"Northern Mariana Islands\">Northern Mariana Islands<\/option>        <option value=\"Ohio\">Ohio<\/option>        <option value=\"Oklahoma\">Oklahoma<\/option>        <option value=\"Oregon\">Oregon<\/option>        <option value=\"Pennsylvania\">Pennsylvania<\/option>        <option value=\"Puerto Rico\">Puerto Rico<\/option>        <option value=\"Rhode Island\">Rhode Island<\/option>        <option value=\"South Carolina\">South Carolina<\/option>        <option value=\"South Dakota\">South Dakota<\/option>        <option value=\"Tennessee\">Tennessee<\/option>        <option value=\"Texas\">Texas<\/option>        <option value=\"United States Minor Outlying Islands\">United States Minor Outlying Islands<\/option>        <option value=\"Utah\">Utah<\/option>        <option value=\"Vermont\">Vermont<\/option>        <option value=\"Virgin Islands, U.S.\">Virgin Islands, U.S.<\/option>        <option value=\"Virginia\">Virginia<\/option>        <option value=\"Washington\">Washington<\/option>        <option value=\"West Virginia\">West Virginia<\/option>        <option value=\"Wisconsin\">Wisconsin<\/option>        <option value=\"Wyoming\">Wyoming<\/option>                        <\/select>\n\n                <p class=\"webform-h\">Trailways International<\/p>\n\n                <fieldset>\n                <legend>Which country would you like to advertise in?<\/legend>\n                        <div>\n                            <input type=\"checkbox\" name=\"Country_for_Advertisement__c_part\" id=\"advertise_canada\" value=\"Canada\" title=\"Please indicate which countried you'd like to advertise in.\" aria-labelledby=\"advertise_canada_lbl\" >\n                            <label for=\"advertise_canada\" id=\"advertise_canada_lbl\">Canada<\/label>\n                        <\/div>\n                        <div>\n                            <input type=\"checkbox\" name=\"Country_for_Advertisement__c_part\" id=\"advertise_netherlands\" value=\"The Netherlands\" aria-labelledby=\"advertise_netherlands_lbl\">\n                            <label for=\"advertise_netherlands\" id=\"advertise_netherlands_lbl\">The Netherlands<\/label>\n                        <\/div>\n\n                        <input type=\"hidden\" id=\"checkbox-colllector-Country_for_Advertisement__c\" name=\"Country_for_Advertisement__c\" value=\"\" \/>\n                <\/fieldset>\n\n                 <label tabindex=\"-1\" id=\"tell_us_more_lbl\" for=\"Other_Comments__c\">Tell us more<\/label>\n                 <textarea  id=\"tell_us_more\" maxlength=\"80\" name=\"Other_Comments__c\" type=\"text\"  title=\"Tell us more about your advertising interests\" aria-labelledby=\"tell_us_more_lbl\" rows=\"3\"><\/textarea><br>\n\n\n\n                             <fieldset class=\"agree-terms-fieldset\">\n                <label class=\"inline-web-to-case-lbl\" for=\"Agree_to_privacy_policy_and_terms_of_use__c\" id=\"agree_refund_policy_label\" tabindex=\"-1\">I have read and agree to the <a href=\"https:\/\/trailways.com\/legal\/terms-of-use-privacy-policy\/\" target=\"_blank\">privacy policy and terms of use <span class=\"sr-only\">(privacy link opens in a new tab)<\/span><\/a>.<\/label>\n                <input id=\"Agree_to_privacy_policy_and_terms_of_use__c\" aria-labelledby=\"agree_refund_policy_label\"  title=\"You must agree to the privacy policy to submit this form\" type=\"checkbox\" name=\"Agree_to_privacy_policy_and_terms_of_use__c\" aria-required=\"true\" required>\n            <\/fieldset>\n        \n                \n            <div class=\"flex-row a-c web-form-submit\">\n            <input type=\"submit\" id=\"sc-form-submit\" name=\"submit\"> <div class=\"flex-row a-c\" id=\"submitting-row\"><img decoding=\"async\" src=\"https:\/\/trailways.com\/wp-content\/plugins\/trailways-sc-integration\/assets\/img\/spinner.gif\"  role=\"presentation\" \/> Submitting Form<\/div>\n            <\/div>\n            <p id=\"form-log\" role=\"status\">\n\n            <\/p>\n\n                        <input type=\"hidden\" id=\"web_to_case_nonce\" name=\"web_to_case_nonce\" value=\"52bcedf843\" \/><input type=\"hidden\" name=\"_wp_http_referer\" value=\"\/wp-json\/wp\/v2\/pages\/11030\" \/>\n            <\/form>\n\n\n\n        [\/vc_column_text][\/vc_column][\/vc_row]<\/p>\n<\/section>","protected":false},"excerpt":{"rendered":"<p>[vc_row][vc_column][vc_column_text] Advertise with Trailways\u00ae [\/vc_column_text][\/vc_column][\/vc_row][vc_row][vc_column][vc_single_image image=&#8221;12821&#8243; img_size=&#8221;600&#215;300&#8243; alignment=&#8221;center&#8221;][vc_empty_space][\/vc_column][\/vc_row][vc_row el_class=&#8221;advertise-intro&#8221;][vc_column][vc_column_text] Why advertise with Trailways? We\u2019re a people company. In the bus business. We\u2019ve been driving you home for nearly a century. As an advertising partner, we can drive your message home too. [\/vc_column_text][vc_empty_space][\/vc_column][\/vc_row][vc_row][vc_column][vc_column_text]Advertising with Trailways offers advertisers and brands an exciting new opportunity to reach countless [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"page-templates\/page-full-width.php","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-11030","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Bus and Transit Advertising - Advertise With Trailways<\/title>\n<meta name=\"description\" content=\"Advertising with Trailways offers advertisers and brands an exciting new opportunity to reach countless travelers across the country.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/trailways.com\/advertise-with-us\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Bus and Transit Advertising - Advertise With Trailways\" \/>\n<meta property=\"og:description\" content=\"Advertising with Trailways offers advertisers and brands an exciting new opportunity to reach countless travelers across the country.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/trailways.com\/advertise-with-us\/\" \/>\n<meta property=\"og:site_name\" content=\"Trailways\" \/>\n<meta property=\"article:modified_time\" content=\"2022-01-03T16:14:37+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/trailways.com\\\/advertise-with-us\\\/\",\"url\":\"https:\\\/\\\/trailways.com\\\/advertise-with-us\\\/\",\"name\":\"Bus and Transit Advertising - Advertise With Trailways\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/trailways.com\\\/#website\"},\"datePublished\":\"2018-08-01T18:32:27+00:00\",\"dateModified\":\"2022-01-03T16:14:37+00:00\",\"description\":\"Advertising with Trailways offers advertisers and brands an exciting new opportunity to reach countless travelers across the country.\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/trailways.com\\\/advertise-with-us\\\/\"]}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/trailways.com\\\/#website\",\"url\":\"https:\\\/\\\/trailways.com\\\/\",\"name\":\"Trailways\",\"description\":\"Trailways Bus Service\",\"publisher\":{\"@id\":\"https:\\\/\\\/trailways.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/trailways.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/trailways.com\\\/#organization\",\"name\":\"Trailways\",\"url\":\"https:\\\/\\\/trailways.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/trailways.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/trailways.com\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/Trailways-Logo.png\",\"contentUrl\":\"https:\\\/\\\/trailways.com\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/Trailways-Logo.png\",\"width\":600,\"height\":143,\"caption\":\"Trailways\"},\"image\":{\"@id\":\"https:\\\/\\\/trailways.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Bus and Transit Advertising - Advertise With Trailways","description":"Advertising with Trailways offers advertisers and brands an exciting new opportunity to reach countless travelers across the country.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/trailways.com\/advertise-with-us\/","og_locale":"en_US","og_type":"article","og_title":"Bus and Transit Advertising - Advertise With Trailways","og_description":"Advertising with Trailways offers advertisers and brands an exciting new opportunity to reach countless travelers across the country.","og_url":"https:\/\/trailways.com\/advertise-with-us\/","og_site_name":"Trailways","article_modified_time":"2022-01-03T16:14:37+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/trailways.com\/advertise-with-us\/","url":"https:\/\/trailways.com\/advertise-with-us\/","name":"Bus and Transit Advertising - Advertise With Trailways","isPartOf":{"@id":"https:\/\/trailways.com\/#website"},"datePublished":"2018-08-01T18:32:27+00:00","dateModified":"2022-01-03T16:14:37+00:00","description":"Advertising with Trailways offers advertisers and brands an exciting new opportunity to reach countless travelers across the country.","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/trailways.com\/advertise-with-us\/"]}]},{"@type":"WebSite","@id":"https:\/\/trailways.com\/#website","url":"https:\/\/trailways.com\/","name":"Trailways","description":"Trailways Bus Service","publisher":{"@id":"https:\/\/trailways.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/trailways.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/trailways.com\/#organization","name":"Trailways","url":"https:\/\/trailways.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/trailways.com\/#\/schema\/logo\/image\/","url":"https:\/\/trailways.com\/wp-content\/uploads\/2019\/09\/Trailways-Logo.png","contentUrl":"https:\/\/trailways.com\/wp-content\/uploads\/2019\/09\/Trailways-Logo.png","width":600,"height":143,"caption":"Trailways"},"image":{"@id":"https:\/\/trailways.com\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/trailways.com\/wp-json\/wp\/v2\/pages\/11030","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/trailways.com\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/trailways.com\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/trailways.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/trailways.com\/wp-json\/wp\/v2\/comments?post=11030"}],"version-history":[{"count":0,"href":"https:\/\/trailways.com\/wp-json\/wp\/v2\/pages\/11030\/revisions"}],"wp:attachment":[{"href":"https:\/\/trailways.com\/wp-json\/wp\/v2\/media?parent=11030"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}