Multi-step Form body { font-family: Arial, sans-serif; background-color: #0E538F; /* background-image: url(https://patriotrooter.com/wp-content/uploads/2024/10/PngItem.png); */ background-position: center center; background-repeat: no-repeat; background-size: contain; margin: 0; padding: 0; } .step { background-color: white; box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); border: 2px solid black; border-radius: 8px; width: 400px; text-align: center; padding: 20px; text-align: center; margin: 100px auto; transition: opacity 0.3s ease-in-out; } .step-btn { display: flex; flex-direction: row; justify-content: space-between; } .logo { padding: 2rem 0rem; } .logo img { width: 250px; height: auto; } .step p { font-size: 1.4rem; margin: 20px 0; color: #333; } .btn { border: 2px solid #ddd; padding: 10px 20px; margin: 10px; cursor: pointer; color: #000000; border-radius: 5px; font-size: 1.2rem; width: 200px; } #yesBtn { border-color: #6fa8dc; background-color: white; transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out; } #yesBtn:hover { background-color: #6fa8dc; color: white; } #noBtn { border-color: #ffd966; background-color: white; transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out; } #noBtn:hover { background-color: #ffd966; color: white; } .step-btn-exp { display: flex; flex-direction: column; align-items: center; } .review-btn { border: 1px solid; padding: 10px 20px; margin: 10px; cursor: pointer; border-radius: 5px; font-size: 1.2rem; width: 100%; } #googleBtn { color: #000000; border-color: #e06666; transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out; } #googleBtn:hover { background-color: #e06666; color: white; } #facebookBtn { color: #000000; border-color: #6fa8dc; transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out; } button#facebookBtn a { color: #000000; text-decoration: unset; } #facebookBtn:hover { background-color: #6fa8dc; color: white; } #facebookBtn:hover a { color: white; text-decoration: unset; } img.google-image { width: 100%; } #stepFeedback p { font-size: 17px; line-height: 1.5rem; } .frm_required { display: none; } .frm_form_field { padding: 10px 0px; } #field_9jv0r12 { width: 100%; padding: 12px; } .frm_button_submit { padding: 13px 20px; color: #fff; border: unset; border-radius: 10px; font-size: 14px; background-color: #0d6efd; width: 100%; } .frm_button_submit:hover { background-color: #0b5ed7; } @media screen and (max-width: 480px) { .logo img { width: 100%; height: auto; } .step { width: auto; margin: 100px 10px; } p { font-size: 1.1rem; } .step-btn { display: flex; flex-direction: column; align-items: center; } .btn { font-size: 1.1rem; width: 100%; } }

Did Patriot Plumbing & Rooter meet your expectations?

Tell us about your experience on

Google Guaranteed Section Image

Did you specifically find us in the Google Guaranteed section pictured above?

Help us be a better company.
We would appreciate your feedback to guide us on improving.

// Handle the "Yes" button click document.getElementById('yesBtn').addEventListener('click', function() { document.getElementById('step1').style.display = 'none'; document.getElementById('step2').style.display = 'block'; }); // Handle the "No" button click document.getElementById('noBtn').addEventListener('click', function() { document.getElementById('step1').style.display = 'none'; document.getElementById('stepFeedback').style.display = 'block'; }); // Redirect to Google review page and show Google Guaranteed section document.getElementById('googleBtn').addEventListener('click', function() { document.getElementById('step2').style.display = 'none'; document.getElementById('step3').style.display = 'block'; }); // // Handle the "Yes" or "No" Google Guaranteed Section buttons // document.getElementById('yesGoogleBtn').addEventListener('click', function() { // alert('Thanks for confirming you found us through Google Guaranteed!'); // // Add any other logic for this button click // }); // document.getElementById('noGoogleBtn').addEventListener('click', function() { // alert('Thanks for your feedback!'); // // Add any other logic for this button click // }); function openFacebook(url) { window.open(url, '_blank'); } function openGoogleLsa(url) { window.open(url, '_blank'); } function openGoogle(url) { window.location.href = url; }