This commit is contained in:
Mark 2025-06-30 09:28:10 +01:00
commit 2a04a8f245
5 changed files with 88 additions and 59 deletions

View File

@ -10,27 +10,37 @@ include_once $URlcorrection . "includes/header.php";
include_once $URlcorrection . "includes/banner.php"; include_once $URlcorrection . "includes/banner.php";
include_once $URlcorrection . "includes/nav.php"; include_once $URlcorrection . "includes/nav.php";
// Generate a new CAPTCHA question if not set // Function to generate a new CAPTCHA
if (!isset($_SESSION['captcha'])) { function generateCaptcha()
$_SESSION['captcha'] = [ {
'num1' => rand(1, 10), $num1 = rand(1, 10);
'num2' => rand(1, 10), $num2 = rand(1, 10);
'answer' => $_SESSION['captcha']['num1'] + $_SESSION['captcha']['num2'] $answer = $num1 + $num2;
]; return ['num1' => $num1, 'num2' => $num2, 'answer' => $answer];
} }
// Initialize CAPTCHA for the first load
$captcha = generateCaptcha();
$captcha_question = $captcha['num1'] . " + " . $captcha['num2'] . " = ?";
$captcha_correct_answer = $captcha['answer'];
if ($_SERVER["REQUEST_METHOD"] == "POST") { if ($_SERVER["REQUEST_METHOD"] == "POST") {
$name = trim($_POST['name']); $name = trim($_POST['name']);
$email = trim($_POST['email']); $email = trim($_POST['email']);
$phone = trim($_POST['phone']); $phone = trim($_POST['phone']);
$subject = trim($_POST['subject']); $subject = trim($_POST['subject']);
$message = trim($_POST['message']); $message = trim($_POST['message']);
$captcha_input = isset($_POST['captcha']) ? (int)$_POST['captcha'] : 0; $captcha_input = isset($_POST['captcha_user_input']) ? (int)$_POST['captcha_user_input'] : 0;
$captcha_expected_answer = isset($_POST['captcha_hidden_answer']) ? (int)$_POST['captcha_hidden_answer'] : 0;
if ($captcha_input !== $_SESSION['captcha']['answer']) { if ($captcha_input !== $captcha_expected_answer) {
echo "<div class='alert alert-danger text-center'>Incorrect CAPTCHA answer. Please try again.</div>"; echo "<div class='alert alert-danger text-center'>Incorrect CAPTCHA answer. Please try again.</div>";
// Re-generate CAPTCHA for a new attempt
$captcha = generateCaptcha();
$captcha_question = $captcha['num1'] . " + " . $captcha['num2'] . " = ?";
$captcha_correct_answer = $captcha['answer'];
} else { } else {
$to = "info@warmseal-roofing.co.uk"; $to = "enquiries@warmseal-roofing.co.uk";
$website_name = "Warmseal Roofing contact"; $website_name = "Warmseal Roofing contact";
$from_email = "noreply@" . $_SERVER['HTTP_HOST']; $from_email = "noreply@" . $_SERVER['HTTP_HOST'];
$headers = "From: " . $website_name . " <" . $from_email . ">" . "\r\n" . $headers = "From: " . $website_name . " <" . $from_email . ">" . "\r\n" .
@ -47,19 +57,19 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") {
if (mail($to, 'New Message from ' . $website_name, $body, $headers)) { if (mail($to, 'New Message from ' . $website_name, $body, $headers)) {
echo "<div class='alert alert-success text-center'>Thank you for contacting us. We will get back to you shortly.</div>"; echo "<div class='alert alert-success text-center'>Thank you for contacting us. We will get back to you shortly.</div>";
// Re-generate CAPTCHA after successful submission
$captcha = generateCaptcha();
$captcha_question = $captcha['num1'] . " + " . $captcha['num2'] . " = ?";
$captcha_correct_answer = $captcha['answer'];
} else { } else {
echo "<div class='alert alert-danger text-center'>There was an error sending your message. Please try again.</div>"; echo "<div class='alert alert-danger text-center'>There was an error sending your message. Please try again.</div>";
// Re-generate CAPTCHA for a new attempt if email sending fails
$captcha = generateCaptcha();
$captcha_question = $captcha['num1'] . " + " . $captcha['num2'] . " = ?";
$captcha_correct_answer = $captcha['answer'];
} }
} }
// Generate a new CAPTCHA for the next submission AFTER processing the form
$_SESSION['captcha'] = [
'num1' => rand(1, 10),
'num2' => rand(1, 10),
'answer' => $_SESSION['captcha']['num1'] + $_SESSION['captcha']['num2']
];
} }
?> ?>
<section class="ftco-section bg-light padding-top-100 padding-bottom-100"> <section class="ftco-section bg-light padding-top-100 padding-bottom-100">

View File

@ -36,6 +36,7 @@
<p class="mb-0 d-flex"> <p class="mb-0 d-flex">
<a href="https://www.facebook.com/profile.php?id=61576598612133" target="_blank" class="d-flex align-items-center justify-content-center"><span><i class="fab fa-facebook"></i></span></a> <a href="https://www.facebook.com/profile.php?id=61576598612133" target="_blank" class="d-flex align-items-center justify-content-center"><span><i class="fab fa-facebook"></i></span></a>
<a href="https://www.instagram.com/warmsealroofing" target="_blank" class="d-flex align-items-center justify-content-center"><span><i class="fab fa-instagram"></i></span></a> <a href="https://www.instagram.com/warmsealroofing" target="_blank" class="d-flex align-items-center justify-content-center"><span><i class="fab fa-instagram"></i></span></a>
<a href="tel: 01254492373" target="_blank" class="d-flex align-items-center justify-content-center"><span><i class="fa fa-phone"></i></span></a>
</p> </p>
</div> </div>
</div> </div>

View File

@ -12,6 +12,24 @@ include_once $URLcorrection . "includes/nav.php";
include_once $URLcorrection . "sections/about-us.php"; include_once $URLcorrection . "sections/about-us.php";
include_once $URLcorrection . "sections/counter.php"; include_once $URLcorrection . "sections/counter.php";
include_once $URLcorrection . "sections/services-3.php"; include_once $URLcorrection . "sections/services-3.php";
?>
<section class="padding-bottom-100 padding-top-100 ftco-counter">
<div class="container">
<div class="row">
<div class="col-12 text-center">
<!--<h2 class="text-center text-white">Contact Us!</h2>-->
<a href="tel: 01254492373">
<h2 class="text-white">Call Us Now: 01254492373</h2>
</a>
<p class="text-center text-white padding-bottom-20 padding-top-20">Don't compromise on the most vital part of your home. Contact Warmseal today for a free, no-obligation survey and quotation for your roofing project. Let us provide a durable, beautiful roof that protects your investment for decades to come.</p>
<p><a href="<?= $URLcorection ?>contact" class="cta-btn padding-top-10">Request a Quote</a></p>
</div>
</div>
</div>
</section>
<?php
include_once $URLcorrection . "sections/projects.php"; include_once $URLcorrection . "sections/projects.php";
include_once $URLcorrection . "sections/reviews.php"; include_once $URLcorrection . "sections/reviews.php";
include_once $URLcorrection . "sections/suppliers.php"; include_once $URLcorrection . "sections/suppliers.php";

View File

@ -24,7 +24,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">Expert roof repairs with long-lasting results.</a></h2> <h2>Expert roof repairs with long-lasting results.</h2>
</div> </div>
</div> </div>
</div> </div>
@ -36,7 +36,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">New roof installation with premium materials.</a></h2> <h2>New roof installation with premium materials.</h2>
</div> </div>
</div> </div>
</div> </div>
@ -48,7 +48,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">Emergency roofing services</a></h2> <h2>Emergency roofing services</h2>
</div> </div>
</div> </div>
</div> </div>
@ -60,7 +60,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">Full roof replacements with workmanship guarantee.</a></h2> <h2>Full roof replacements with workmanship guarantee.</h2>
</div> </div>
</div> </div>
</div> </div>
@ -73,7 +73,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">Tiled roof repairs and replacements done right</a></h2> <h2>Tiled roof repairs and replacements done right</h2>
</div> </div>
</div> </div>
</div> </div>
@ -85,7 +85,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">Slating and tiling specialists since 2003.</a></h2> <h2>Slating and tiling specialists since 2003.</h2>
</div> </div>
</div> </div>
</div> </div>
@ -97,7 +97,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">Weatherproofing your home with care.</a></h2> <h2>Weatherproofing your home with care.</h2>
</div> </div>
</div> </div>
</div> </div>
@ -109,7 +109,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">No job too big or small we handle it all</a></h2> <h2>No job too big or small we handle it all</h2>
</div> </div>
</div> </div>
</div> </div>
@ -122,7 +122,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">Quality fascia and soffit installations.</a></h2> <h2>Quality fascia and soffit installations.</h2>
</div> </div>
</div> </div>
</div> </div>
@ -134,7 +134,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">Free roofing inspections with no obligation.</a></h2> <h2>Free roofing inspections with no obligation.</h2>
</div> </div>
</div> </div>
</div> </div>
@ -146,7 +146,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">Trusted by homeowners across the UK</a></h2> <h2>Trusted by homeowners across the UK</h2>
</div> </div>
</div> </div>
</div> </div>
@ -158,7 +158,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">Keeping your roof strong through every season</a></h2> <h2>Keeping your roof strong through every season</h2>
</div> </div>
</div> </div>
</div> </div>
@ -170,7 +170,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">Eco-friendly roofing options available.</a></h2> <h2>Eco-friendly roofing options available.</h2>
</div> </div>
</div> </div>
</div> </div>
@ -182,7 +182,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">Insured, certified, and experienced roofing professionals.</a></h2> <h2>Insured, certified, and experienced roofing professionals.</h2>
</div> </div>
</div> </div>
</div> </div>
@ -194,7 +194,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">Storm damage? Well fix it fast.</a></h2> <h2>Storm damage? Well fix it fast.</h2>
</div> </div>
</div> </div>
</div> </div>
@ -206,7 +206,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">Leadwork services done with precision</a></h2> <h2>Leadwork services done with precision</h2>
</div> </div>
</div> </div>
</div> </div>
@ -218,7 +218,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">Storm damage? Well fix it fast.</a></h2> <h2>Storm damage? Well fix it fast.</h2>
</div> </div>
</div> </div>
</div> </div>
@ -230,7 +230,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">Protect your investment with our roof care.</a></h2> <h2>Protect your investment with our roof care.</h2>
</div> </div>
</div> </div>
</div> </div>
@ -242,7 +242,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">Honest advice, no hidden costs</a></h2> <h2>Honest advice, no hidden costs</h2>
</div> </div>
</div> </div>
</div> </div>
@ -254,7 +254,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">Restoring roofs to their former glory</a></h2> <h2>Restoring roofs to their former glory</h2>
</div> </div>
</div> </div>
</div> </div>
@ -266,7 +266,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">Your local roofing experts, always nearby</a></h2> <h2>Your local roofing experts, always nearby</h2>
</div> </div>
</div> </div>
</div> </div>
@ -278,7 +278,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">Pitched roofing that stands the test of time</a></h2> <h2>Pitched roofing that stands the test of time</h2>
</div> </div>
</div> </div>
</div> </div>
@ -290,7 +290,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">Fixing leaks fast with expert solutions</a></h2> <h2>Fixing leaks fast with expert solutions</h2>
</div> </div>
</div> </div>
</div> </div>
@ -302,7 +302,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">All work backed by full warranties</a></h2> <h2>All work backed by full warranties</h2>
</div> </div>
</div> </div>
</div> </div>
@ -314,7 +314,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">Custom roofing tailored to your property</a></h2> <h2>Custom roofing tailored to your property</h2>
</div> </div>
</div> </div>
</div> </div>
@ -326,7 +326,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">Safe, efficient scaffolding for every project</a></h2> <h2>Safe, efficient scaffolding for every project</h2>
</div> </div>
</div> </div>
</div> </div>
@ -338,7 +338,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">We use only trusted, high-quality materials</a></h2> <h2>We use only trusted, high-quality materials</h2>
</div> </div>
</div> </div>
</div> </div>
@ -350,7 +350,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">Heritage roofing with traditional craftsmanship</a></h2> <h2>Heritage roofing with traditional craftsmanship</h2>
</div> </div>
</div> </div>
</div> </div>
@ -362,7 +362,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">Detailed quotes with clear timelines</a></h2> <h2>Detailed quotes with clear timelines</h2>
</div> </div>
</div> </div>
</div> </div>
@ -374,7 +374,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">A roof you can count on, year after year</a></h2> <h2>A roof you can count on, year after year</h2>
</div> </div>
</div> </div>
</div> </div>
@ -386,7 +386,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">Customer satisfaction is our top priorit</a></h2> <h2>Customer satisfaction is our top priority</h2>
</div> </div>
</div> </div>
</div> </div>
@ -398,7 +398,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">Roofing excellence from start to finish</a></h2> <h2>Roofing excellence from start to finish</h2>
</div> </div>
</div> </div>
</div> </div>
@ -410,7 +410,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">Craftsmanship you can see in every detail</a></h2> <h2>Craftsmanship you can see in every detail</h2>
</div> </div>
</div> </div>
</div> </div>
@ -422,7 +422,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">Your peace of mind starts at the top</a></h2> <h2>Your peace of mind starts at the top</h2>
</div> </div>
</div> </div>
</div> </div>
@ -434,7 +434,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">Proudly raising the standards in roofing</a></h2> <h2>Proudly raising the standards in roofing</h2>
</div> </div>
</div> </div>
</div> </div>
@ -446,7 +446,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">Dependable service from a name you can trust</a></h2> <h2>Dependable service from a name you can trust</h2>
</div> </div>
</div> </div>
</div> </div>
@ -458,7 +458,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">Built on integrity, delivered with care</a></h2> <h2>Built on integrity, delivered with care</h2>
</div> </div>
</div> </div>
</div> </div>
@ -470,7 +470,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">Every job finished to the highest standard</a></h2> <h2>Every job finished to the highest standard</h2>
</div> </div>
</div> </div>
</div> </div>
@ -482,7 +482,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">Attention to detail from start to finish</a></h2> <h2>Attention to detail from start to finish</h2>
</div> </div>
</div> </div>
</div> </div>
@ -494,7 +494,7 @@ include_once $URlcorrection . "includes/nav.php";
</a> </a>
<div class="desc w-100 px-4"> <div class="desc w-100 px-4">
<div class="text w-100 mb-3"> <div class="text w-100 mb-3">
<h2><a href="work-single.html">Where quality meets reliability</a></h2> <h2>Where quality meets reliability</h2>
</div> </div>
</div> </div>
</div> </div>

View File

@ -1,5 +1,5 @@
<section class="ftco-section ftco-no-pb ftco-no-pt padding-top-100 padding-bottom-50"> <section class="ftco-section ftco-no-pb ftco-no-pt padding-top-100 padding-bottom-50">
<div class="container"> <div class="container padding-top-50">
<div class="row justify-content-center pb-5 mb-3"> <div class="row justify-content-center pb-5 mb-3">
<div class="col-md-7 heading-section text-center ftco-animate"> <div class="col-md-7 heading-section text-center ftco-animate">
<span class="subheading">Our</span> <span class="subheading">Our</span>