.error { color: Red; }
.landing-form-callout img { height: 400px !important; }
#landing-blue-section .landing-blue-content .landing-blue-buttons a { text-decoration: none; display: block; background: #d01d24; border: 1px solid #af090f; border-radius: 10px; }
#landing-blue-section .landing-blue-content .landing-blue-buttons .icons-wrap .icons-text { min-height: 75px !important; }
#landing-blue-section .landing-blue-content .landing-blue-buttons .icons-wrap .icons-image img { border-radius: 5px; }
#landing-blue-section .blueall { background: #af090f !important; }
button.submit_btn_form { min-width: 200px; background-color: #133f69; min-height: 50px; color: #FFFFFF; border-radius: 10px; }
span.buttonPlus { font-weight: 900; padding-left: 5px; font-size: 18px; }
.page-template-template-wastewater-landing #landing-content-wrapper #landing_right_column { padding: 5px 0 60px 0 !important; }
.three-d-image { margin-top: 30px; }
.page-template-template-wastewater-landing #landing-content-wrapper #full_width_section { padding: 0px 0px 30px 0px !important; }
.landing-form-callout h3 { display: none !important; }
#subpage_left_column h3 { display: none !important; }
div#newsletter_wrapper { display: none !important; }
.submit_btn{
background: #d01d24;
border: none;
color: #fff;
padding: 10px 50px;
border-radius: 5px;
font-size: 20px;
}
Please fill out the short form below to request a virtual coffee meeting with your technical sales manager. During the meeting we will:
1. Review the details of your project.
2. Discuss steps for moving your project forward.
3. Identify any new challenges that PRAB may be able to assist you with.
After we receive your request, PRAB will make arrangements to send you a complimentary cup of coffee.
We look forward to catching up with you!
jQuery(document).ready(function() {
jQuery.validator.addMethod(“phoneUS”, function(phone_number, element) {
phone_number = phone_number.replace(/\s+/g, “”);
return this.optional(element) || phone_number.length > 9 &&
phone_number.match(/^(\+?1-?)?(\([2-9]\d{2}\)|[2-9]\d{2})-?[2-9]\d{2}-?\d{4}$/);
}, “Please enter a valid U.S. or Canadian phone number.
For international inquiries please contact us at this link.“);
$.validator.addMethod(“noSpecialChars”, function(value, element) {
return this.optional(element) || /^[a-z0-9\s]+$/i.test(value);
}, “Company must contain only letters and numbers.”);
// Form Validation
jQuery(‘#inf_form_17afb335a79953e5667d070cc3d10d90’).validate({
ignore: “.ignore”,
rules: {
inf_field_FirstName: { required: true, minlength: 3 },
inf_field_LastName: { required: true, minlength: 3 },
inf_field_Email: { required: true, email: true },
inf_field_Company: { required: true, minlength: 3 },
inf_field_StreetAddress1: { required: true, minlength: 3 },
//inf_field_StreetAddress2: { required: true, minlength: 3 },
inf_field_City: { required: true, minlength: 3 },
inf_field_State: { required: true, minlength: 2 },
inf_field_PostalCode: { required: true, minlength: 3 },
//inf_field_Phone1: { required: true, phoneUS: true },
“hiddenRecaptcha”: {
required: function() {
if(grecaptcha.getResponse() == ”) {
return true;
} else {
return false;
}
}
}
},
messages: {
inf_field_FirstName: { required: “First Name is required.”, minlength: “First Name should be at least 3 characters long.” },
inf_field_LastName: { required: “Last Name is required.”, minlength: “Last Name should be at least 3 characters long.” },
inf_field_Email: { required: “Email is required.”, minlength: “Address should be at least 3 characters long.” },
inf_field_Company: { required: “Company is required.”, minlength: “Company should be at least 3 characters long.” },
inf_field_StreetAddress1: { required: “Address is required.”, minlength: “Address should be at least 3 characters long.” },
inf_field_StreetAddress2: { required: “Address is required.”, minlength: “Address should be at least 3 characters long.” },
inf_field_City: { required: “City is required.”, minlength: “City should be at least 3 characters long.” },
inf_field_State: { required: “State is required.”, minlength: “State should be at least 2 characters long.” },
inf_field_PostalCode: { required: “Zip Code is required.”, minlength: “Zip Code should be at least 3 characters long.” },
inf_field_Phone1: { required: “Phone is required.” },
“hiddenRecaptcha”: { required: “Please validate that you are human.” }
},
submitHandler: function(form) {
form.submit();
}
});
});