-
Notifications
You must be signed in to change notification settings - Fork 0
/
processes.html
81 lines (79 loc) · 5.47 KB
/
processes.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Our Process</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="./style.css">
<link rel="icon" href="Group 19logo.svg" type="image/x-icon">
<link href="https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"/>
</head>
<body>
<nav>
<a href="mailto:[email protected][email protected]&subject=Can%20you%20help"><button id="navBtn" class="montserrat-body">Contact Us</button></a>
<a href="index.html"><img src="Group 19logo.svg"></a>
</nav>
<div class="thanks">
<h1 class="lora-heading">Our Process</h1>
<p class="montserrat-body">We pride ourselves in our intricate and prejuduced implementation and creation process. It has been meliticulusly adapted and tweaked over the years to be the most efficient and effective plan to cut the time it takes in half.</p>
</div>
<main>
<div class="step">
<div class="stepInfo">
<h3 class="lora-heading">1 - Initial Consultation</h3>
<p class="montserrat-body">Every journey begins with a conversation. During our initial consultation, we'll take the time to understand your goals, challenges, and aspirations. Whether you're looking to launch a new product, expand into new markets, or improve organizational efficiency, we're here to listen and learn.</p>
</div>
<img src="step1.svg" id="step1">
</div>
<div class="step">
<img src="step2.svg">
<div class="stepInfo">
<h3 class="lora-heading">2 - Strategic Assessment</h3>
<p class="montserrat-body">Once we have a clear understanding of your objectives, we'll conduct a comprehensive strategic assessment to identify opportunities and challenges. This may involve market research, competitor analysis, and a review of your internal processes and capabilities. By taking a 360-degree view of your organization and its external environment, we'll uncover insights that inform our strategic approach.</p>
</div>
</div>
<div class="step">
<div class="stepInfo">
<h3 class="lora-heading">3 - Customized Solutions</h3>
<p class="montserrat-body">Armed with insights from our strategic assessment, we'll develop customized solutions tailored to your specific needs and circumstances. Whether it's crafting a market entry strategy, designing a leadership development program, or streamlining your operations, our solutions are designed to deliver tangible results and drive sustainable growth.</p>
</div>
<img src="step3.svg">
</div>
<div class="step">
<img src="step4.svg">
<div class="stepInfo">
<h3 class="lora-heading">4 - Implementation and Execution</h3>
<p class="montserrat-body">With a plan in place, it's time to put it into action. Our team of experienced consultants will work closely with you to implement the agreed-upon solutions, providing guidance, support, and expertise every step of the way. Whether it's launching a new marketing campaign, training your team on new processes, or rolling out a technology solution, we'll ensure a smooth and seamless implementation process.</p>
</div>
</div>
<div class="step">
<div class="stepInfo">
<h3 class="lora-heading">5 - Monitoring and Optimization</h3>
<p class="montserrat-body">We believe that success is an ongoing journey, not a destination. That's why we'll continue to monitor the progress of our initiatives and optimize our approach as needed. By tracking key performance indicators and soliciting feedback from stakeholders, we'll ensure that our solutions are delivering the desired outcomes and making a measurable impact on your organization.</p>
</div>
<img src="step5.svg">
</div>
</main>
<div class="process">
<a class="quoteBtn montserrat-body" href="#" onclick="sendMailAndRedirect()">Let's work together</a>
</div>
<footer>
<a href='mailto:“[email protected]?bcc=”[email protected]?subject=Can%20you%20help%20”' target="_blank"><p id="email">[email protected]</p></a>
<p>456 Innovation Drive, Suite 101, Metropolis, NY 12345, +1 (555) 123-4567</p>
<p>Mon-Fri 9:00 AM - 6:00 PM</p>
<p id="copy">Copyright 2024</p>
</footer>
<script>
function sendMailAndRedirect() {
window.location.href = "mailto:[email protected][email protected]&subject=Can%20you%20help";
setTimeout(function() {
window.location.href = 'thanks.html';
}, 1000); // Redirect after 1 second
}
</script>
</body>
</html>