-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
465 lines (426 loc) · 25.3 KB
/
Copy pathabout.html
File metadata and controls
465 lines (426 loc) · 25.3 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Learnn</title>
<link rel="icon" href="./assets/imgs/logo1.png" type="image">
<link rel="stylesheet" href="./assets/css/all.min.css">
<link rel="stylesheet" href="./assets/css/bootstrap.css" type="text/css">
<link rel="stylesheet" href="./assets/css/about.css" type="text/css">
<link rel="stylesheet" href="./assets/css/flickity-docs.css" type="text/css">
<link rel="stylesheet" href="./assets/css/owl.carousel.min.css" type="text/css">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
</head>
<body>
<!-- Header Start -->
<section>
<div class="row container">
<!-- Nav Bar -->
<div class="col-md-12">
<header class="header">
<a href="index.html" class="header__logo"><img src="./assets/imgs/logo.png" alt="logo"
width="114spx"></a>
<ion-icon name="menu-outline" class="header__toggle" id="nav-toggle"></ion-icon>
<nav class="nav" id="nav-menu">
<div class="nav__content bd-grid">
<ion-icon name="close-outline" class="nav__close" id="nav-close"></ion-icon>
<div class="nav__perfil">
<a href="index.html" class=""><img src="./assets/imgs/logo.png" alt="logo"
width="114spx"></a>
</div>
<!-- <div class="col-md-1"></div> -->
<div class="nav__menu">
<ul class="nav__list">
<li class="nav__item">
<div class="sec-center">
<input class="dropdown" type="checkbox" id="dropdown" name="dropdown" />
<label class="for-dropdown" for="dropdown">Products
<i class="fa-solid fa-chevron-down" style="margin-left: 10px;"></i>
</label>
<div class="section-dropdown">
<a href="industry.html">Industries</i></a>
<a href="feature.html">Features</i></a>
<a href="benefits.html">Benifits</i></a>
</div>
</div>
</li>
<!-- <li class="nav__item"><a href="#" class="nav__link active">Products</a></li> -->
<li class="nav__item"><a href="pricing.html" class="nav__link">Pricing</a></li>
<li class="nav__item"><a href="partners.html" class="nav__link">partners</a></li>
<li class="nav__item">
<div class="sec-center2">
<input class="dropdown2" type="checkbox" id="dropdown2" name="dropdown2" />
<label class="for-dropdown2" for="dropdown2">Company
<i class="fa-solid fa-chevron-down" style="margin-left: 10px;"></i>
</label>
<div class="section-dropdown2">
<a href="about.html">About </a>
<a href="blog.html">Blogs</a>
<a href="casestudy.html">Case Studies</a>
<a href="contact.html">Contact</a>
</div>
</div>
</li>
</ul>
</div>
<!-- <div class="col-md-1"></div> -->
<div class="nav__buttons">
<a href="#" type="button" class="btn btn1 btn-light btn-outline-primary btn-sm">Get
Demo</a>
<button type="button"
class="btn btn2 btn-primary btn-outline-light btn-sm">Login</button>
</div>
</div>
</nav>
</header>
</div>
<!-- Nav Bar End -->
</div>
</section>
<!-- Header End -->
<!-- Main -->
<div class="container about" id="about">
<!-- Hero Section -->
<section id="about_hero" class="d-flex align-items-center mt-5 background">
<div class="container mt-5" id="div1">
<div class="container row" id="div2">
<div class="col-md-1 col-12"></div>
<div class=" col-md-3 col-12" id="itm1">
<img class="img-fluid" src="./assets/imgs/robot.png" alt="logo">
</div>
<div class="col-md-7 col-sm-12 col-12 itm2 text-white">
<h1 class=" text-wrap">
<img class="img-fluid" src="./assets/imgs/heading.png" width="82px" alt="">
</h1>
<p class="text-wrap my-3">
Brian, Sam, and Jacob founded RedRoute while undergrads through Cornell’s eLab incubator
program. After two years
building a college-centric transportation app, we pivoted and started anew. We had become
familiar with the challenges
of customer service, and saw the modern voice era beginning to take shape through products
like Alexa. At the
intersection of the two, we thought, was a tremendous opportunity.
</p>
<p class="text-wrap my-3">
Our goal was always to build a great company fast. To solve a big problem in a simple way.
To create a culture where
people are excited to come to work every day. This is still our mission today.
</p>
<p class="text-wrap my-3">
Ultimately, everybody has had a poor experience calling customer
service. But rarely is it the fault of the team on the other side, they truly face an
impossible puzzle. Now, with the arrival of voice technology, the game has changed. In 5-10
years, great customer service will be the norm. RedRoute makes achieving it easy for brands.
</p>
</div>
</div>
</div>
</section>
<!-- Hero Section End -->
<!-- Section 1 -->
<section>
<div class="d-flex justify-content-center justify-content-lg-around my-5" id="section1">
<div class="row r1" style="margin: 5rem 0;">
<div class="col-md-1"></div>
<div class="col-md-10 col-sm-12 col-12 main3itm">
<h1>
<img class="img-fluid" src="./assets/imgs/our_history.png" alt="">
</h1>
</div>
<div class="col-md-1"></div>
</div>
</div>
</section>
<!-- Section 1 End -->
<!-- Section 2 -->
<section>
<div class="justify-content-lg-around" id="section2">
<div class="row r2">
<div class="col-md-3"></div>
<div class="d-flex justify-content-center col-md-6 col-sm-12 col-12 main3itm">
<h1>
<img class="img-fluid" src="./assets/imgs/what-we-care-about.png" alt="">
</h1>
</div>
<div class="col-md-3"></div>
</div>
<div class="justify-content-lg-around" id="all_container2">
<div class="row r2 container d-flex justify-content-around mx-auto mt-3 cardContent">
<div class=" col-12 col-md-4 col-lg-4 d-flex justify-content-md-end justify-content-sm-center">
<div class="card c2 text-dark mt-5">
<div class=" card-body text-center mt-3" id="cardBody" style=" padding: 10px;">
<div class="card-text2 text-center text-white d-flex justify-content-center">
<p>Make an Impact</p>
</div>
<div class="text-white content2">
<p class="text-wrap card-text box-content text-center">
Be an owner and a solution-finder, catapult us to and beyond our goals
</p>
</div>
</div>
</div>
</div>
<div class=" col-12 col-md-4 col-lg-4 d-flex justify-content-md-end justify-content-sm-center">
<div class="card c2 text-dark mt-5">
<div class=" card-body text-center mt-3" id="cardBody" style=" padding: 10px;">
<div class="card-text2 text-center text-white d-flex justify-content-center">
<p>Make an Impact</p>
</div>
<div class="text-white content2">
<p class="text-wrap card-text box-content text-center">
Be an owner and a solution-finder, catapult us to and beyond our goals
</p>
</div>
</div>
</div>
</div>
<div class=" col-12 col-md-4 col-lg-4 d-flex justify-content-md-end justify-content-sm-center">
<div class="card c2 text-dark mt-5">
<div class=" card-body text-center mt-3" id="cardBody" style=" padding: 10px;">
<div class="card-text2 text-center text-white d-flex justify-content-center">
<p>Make an Impact</p>
</div>
<div class="text-white content2">
<p class="text-wrap card-text box-content text-center">
Be an owner and a solution-finder, catapult us to and beyond our goals
</p>
</div>
</div>
</div>
</div>
</div>
<div class="sec2_button row my-5">
<div class="col-md-4"></div>
<div class="col-md-4 out_btn1">
<button type="button"
class="btn btn1 btn-primary btn-outline-light btn-sm d-flex justify-content-center">
<Span>
join our team
</Span>
</button>
</div>
<div class="col-md-4"></div>
</div>
</div>
</div>
</section>
<!-- Section 2 End -->
<!-- Section 3 -->
<section>
<div class="justify-content-lg-around" id="section3">
<div class="row">
<div class="col-md-2"></div>
<div class="col-md-8 col-sm-12 col-12 main3itm d-flex justify-content-center">
<h1>
<img class="img-fluid" src="./assets/imgs/what-we’re-Seeing-Saying-and-Thinking..png"
alt="">
</h1>
</div>
<div class="col-md-2"></div>
</div>
<div class="justify-content-lg-around" id="all_container3">
<div class="row r3 container d-flex justify-content-around mx-auto mt-3 cardContent">
<div class=" col-12 col-md-3 col-lg-3 d-flex justify-content-md-end justify-content-center">
<div class="card c3 text-dark mt-5">
<div class=" card-body mt-3" id="cardBody3">
<div class="card-text3 text-center text-white d-flex justify-content-start">
<img class="img1" src="./assets/imgs/Rectangle24.png" alt="">
<img class="img2" src="./assets/imgs/Vector.png" alt="">
</div>
<div class="text-white mt-2 cardtext3">
<h6 class="text-wrap card-title fw-bold">
Generous
<br>
Time Off
</h6>
<p class="text-wrap card-text box-content">
We observe all 10 federal
holidays and have two additional company-wide holidays: a 2-week Winter
Shutdown and half-week
Summer Shutdown. On top of that, you’ll have at least 10 days of PTO.
</p>
</div>
</div>
</div>
</div>
<div class=" col-12 col-md-3 col-lg-3 d-flex justify-content-md-end justify-content-center">
<div class="card c3 text-dark mt-5">
<div class=" card-body mt-3" id="cardBody3">
<div class="card-text3 text-center text-white d-flex justify-content-start">
<img class="img1" src="./assets/imgs/Rectangle25.png" alt="">
<img class="img2" src="./assets/imgs/Vector1.png" alt="">
</div>
<div class="text-white mt-2 cardtext3">
<h6 class="text-wrap card-title fw-bold">
Social
<br>
Events
</h6>
<p class="text-wrap card-text box-content">
Even though we’ve moved to a remote
setup, we still love hanging out with our colleagues! We have at least two
social
events per month: trivia competitions, team lunches, holiday celebrations,
Olympic games, and more.
</p>
</div>
</div>
</div>
</div>
<div class=" col-12 col-md-3 col-lg-3 d-flex justify-content-md-end justify-content-center">
<div class="card c3 text-dark mt-5">
<div class=" card-body mt-3" id="cardBody3">
<div class="card-text3 text-center text-white d-flex justify-content-start">
<img class="img1" src="./assets/imgs/Rectangle26.png" alt="">
<img class="img2" src="./assets/imgs/Vector2.png" alt="">
</div>
<div class="text-white mt-2 cardtext3">
<h6 class="text-wrap card-title fw-bold">
We'll Take Care
<br>
Of You
</h6>
<p class="text-wrap card-text box-content">
We offer competitive compensation and equity for every employee, as well as
401k, health, dental, and vision plans.
</p>
</div>
</div>
</div>
</div>
<div class=" col-12 col-md-3 col-lg-3 d-flex justify-content-md-end justify-content-center">
<div class="card c3 text-dark mt-5">
<div class=" card-body mt-3" id="cardBody3">
<div class="card-text3 text-center text-white d-flex justify-content-start">
<img class="img1" src="./assets/imgs/Rectangle27.png" alt="">
<img class="img2" src="./assets/imgs/Vector3.png" alt="">
</div>
<div class="text-white mt-2 cardtext3">
<h6 class="text-wrap card-title fw-bold">
Flexible Working Arrangements
</h6>
<p class="text-wrap card-text box-content">
We hire people all over the world with the ability to work remotely. If the
home office isn’t your jam, we’ll cover your
coworking space. Need to take an afternoon workout break or want to code
from the beach? You do you.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="sec3_button row my-5">
<div class="col-md-4"></div>
<div class="col-md-4 out_btn2">
<button type="button"
class="btn btn2 btn-primary btn-outline-light btn-sm d-flex justify-content-center">
<Span>
join our team
</Span>
</button>
</div>
<div class="col-md-4"></div>
</div>
</div>
</section>
<!-- Section 3 End -->
</div>
<!-- Main End -->
<!-- Footer -->
<div class="mt-5">
<footer class="text-center text-lg-start text-white" id="footer">
<div class="container p-4 pb-0">
<section id="footer_main" class="d-flex align-items-center mt-5 background">
<div class="container mt-5" id="f_div1">
<div class=" row" id="div2">
<div class="col-md-1 col-12"></div>
<div class="col-md-6 col-sm-12 col-12 itm1">
<h1 class=" text-wrap" style="font-size: 2.5rem;font-family: Poppins , Ariel ">
<img class="img-fluid"
src="./assets/imgs/Start-Automating-Your-Calls-For-free-now.png" alt="">
</h1>
<form action="">
<div class="form-group position-relative">
<i class="fa fa-envelope icon position-absolute text-light"></i>
<input class="form-control input-lg rounded-1" id="email" name="email"
type="text" placeholder="Email" required="">
</div>
<div class="hero_button">
<button type="button" class="btn btn3 btn-primary btn-outline-light btn-sm">
<Span>
Start your free trail
</Span>
</button>
</div>
</form>
<p class="text-wrap my-3"
style=" font-size: 12px; color:white; line-height: 100%; font-weight:400; font-family: Poppins , ariel;">
Or schedule a demo with sales
</p>
<p>
--------------------------------------------
</p>
<h1 class=" text-wrap my-2"
style="font-family: Poppins , Ariel; font-weight: 700; font-size: 16px; line-height: 100%;">
Site Map
</h1>
<p class="list-unstyled color-white" id="link-ftr"
style="font-weight: 100; font-family: Poppins , arial;">
<strong>
<a class="nav-link active" href="index.html">Home</a>
<a class="nav-link" href="benefits.html">Benifits</a>
<a class="nav-link" href="feature.html">Features</a>
<a class="nav-link" href="industry.html">Industries</a>
<a class="nav-link" href="pricing.html">Pricing</a>
<a class="nav-link" href="partners.html">Partners</a>
<a class="nav-link" href="about.html">About Us</a>
<a class="nav-link" href="blog.html">Blogs</a>
<a class="nav-link" href="contact.html">Contact Us</a>
<a class="nav-link" href="casestudy.html">Case Studies</a>
</strong>
</p>
</div>
<div class=" col-md-4 col-12 item2">
<img class="img-fluid" src="./assets/imgs/robot2.png" alt="logo">
</div>
</div>
</div>
</section>
</div>
<div class="text-center p-3"
style="background-color: black; font-weight: 400; font-size: 12px; line-height: 100%;">
PTCL Training Center, IT Park, Peshawar Pakistan | info@techbot.com | <a class="text-white"
href="#">Terms
of Service</a> |
<a class="text-white" href=" #">Cookie Policy</a> | © Copyright 2022 techbot, Inc.
<a class=" text-white" href="#"></a>
</div>
</footer>
</div>
<!-- Footer End -->
<body>
</body>
<script src="./assets/js/main.js"></script>
<script src="./assets/js/all.min.js"></script>
<script src="./assets/js/bootstrap.js"></script>
<script src="./assets/js/jQuery.js"></script>
<script src="./assets/js/flickity-docs.min.js"></script>
<script src="./assets/js/carousel.js"></script>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script src="https://unpkg.com/ionicons@5.1.2/dist/ionicons.js"></script>
<script>
$(function () {
$(window).on("scroll", function () {
if ($(window).scrollTop() > 50) {
$(".header").addClass("header_scrol");
} else {
$(".header").removeClass("header_scrol");
}
});
});
</script>
</html>