-
Notifications
You must be signed in to change notification settings - Fork 2
/
work_with_us.html
1077 lines (983 loc) · 46.7 KB
/
work_with_us.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
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
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Title -->
<title>About Agency | Front - Responsive Website Template</title>
<!-- Required Meta Tags Always Come First -->
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport">
<!-- Favicon -->
<link href="./favicon.ico" rel="shortcut icon">
<!-- Font -->
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap" rel="stylesheet">
<!-- CSS Implementing Plugins -->
<link href="assets/front_v3_3/vendor/fontawesome/css/all.min.css" rel="stylesheet">
<link href="assets/front_v3_3/vendor/hs-mega-menu/dist/hs-mega-menu.min.css" rel="stylesheet">
<!-- CSS Front Template -->
<link href="assets/front_v3_3/css/theme.min.css" rel="stylesheet">
</head>
<body>
<!-- ========== HEADER ========== -->
<header class="header header-box-shadow-on-scroll header-abs-top header-bg-transparent header-show-hide"
data-hs-header-options='{
"fixMoment": 1000,
"fixEffect": "slide"
}' id="header">
<!-- Search -->
<div class="search-push-top" id="searchPushTop">
<div class="container position-relative">
<div class="search-push-top-content pt-3">
<!-- Close Button -->
<div class="search-push-top-close-btn">
<div class="hs-unfold">
<a class="js-hs-unfold-invoker btn btn-icon btn-xs btn-soft-secondary mt-2 mr-2"
data-hs-unfold-options='{
"target": "#searchPushTop",
"type": "jquery-slide",
"contentSelector": ".search-push-top"
}' href="javascript:;">
<svg height="10" viewBox="0 0 18 18" width="10" xmlns="http://www.w3.org/2000/svg">
<path d="M11.5,9.5l5-5c0.2-0.2,0.2-0.6-0.1-0.9l-1-1c-0.3-0.3-0.7-0.3-0.9-0.1l-5,5l-5-5C4.3,2.3,3.9,2.4,3.6,2.6l-1,1 C2.4,3.9,2.3,4.3,2.5,4.5l5,5l-5,5c-0.2,0.2-0.2,0.6,0.1,0.9l1,1c0.3,0.3,0.7,0.3,0.9,0.1l5-5l5,5c0.2,0.2,0.6,0.2,0.9-0.1l1-1 c0.3-0.3,0.3-0.7,0.1-0.9L11.5,9.5z"
fill="currentColor"/>
</svg>
</a>
</div>
</div>
<!-- End Close Button -->
<!-- Input -->
<form class="input-group">
<input aria-label="Search Front" class="form-control" placeholder="Search Front" type="search">
<div class="input-group-append">
<button class="btn btn-primary" type="button">Search</button>
</div>
</form>
<!-- End Input -->
<!-- Content -->
<div class="row d-none d-md-flex mt-7">
<div class="col-sm-6">
<span class="h5">Quick Links</span>
<div class="row">
<!-- Nav Link -->
<div class="col-6">
<div class="nav nav-sm nav-x-0 flex-column">
<a class="nav-link" href="#">
<i class="fas fa-angle-right mr-1"></i> Search Results List
</a>
<a class="nav-link" href="#">
<i class="fas fa-angle-right mr-1"></i> Search Results Grid
</a>
<a class="nav-link" href="#">
<i class="fas fa-angle-right mr-1"></i> About
</a>
<a class="nav-link" href="#">
<i class="fas fa-angle-right mr-1"></i> Services
</a>
<a class="nav-link" href="#">
<i class="fas fa-angle-right mr-1"></i> Invoice
</a>
</div>
</div>
<!-- End Nav Link -->
<!-- Nav Link -->
<div class="col-6">
<div class="nav nav-sm nav-x-0 flex-column">
<a class="nav-link" href="#">
<i class="fas fa-angle-right mr-1"></i> Profile
</a>
<a class="nav-link" href="#">
<i class="fas fa-angle-right mr-1"></i> User Contacts
</a>
<a class="nav-link" href="#">
<i class="fas fa-angle-right mr-1"></i> Reviews
</a>
<a class="nav-link" href="#">
<i class="fas fa-angle-right mr-1"></i> Settings
</a>
</div>
</div>
<!-- End Nav Link -->
</div>
</div>
<div class="col-sm-6">
<!-- Banner -->
<div class="rounded search-push-top-banner">
<div class="d-flex align-items-center">
<div class="search-push-top-banner-container">
<img alt="Image Description" class="img-fluid search-push-top-banner-img"
src="assets/front_v3_3/img/mockups/img3.png">
<img alt="Image Description" class="img-fluid search-push-top-banner-img"
src="assets/front_v3_3/img/mockups/img2.png">
</div>
<div>
<div class="mb-4">
<span class="h5">Featured Item</span>
<p>Create astonishing web sites and pages.</p>
</div>
<a class="btn btn-xs btn-soft-success transition-3d-hover" href="javascript:;">Apply
Now <i class="fas fa-angle-right fa-sm ml-1"></i></a>
</div>
</div>
</div>
<!-- End Banner -->
</div>
</div>
<!-- End Content -->
</div>
</div>
</div>
<!-- End Search -->
<div class="header-section">
<div class="container" id="logoAndNav">
<!-- Nav -->
<nav class="js-mega-menu navbar navbar-expand-lg">
<!-- Logo -->
<a aria-label="Front" class="navbar-brand" href="./index.html">
<img alt="Logo" src="assets/front_v3_3/svg/logos/logo.svg">
</a>
<!-- End Logo -->
<!-- Responsive Toggle Button -->
<button aria-controls="navBar" aria-expanded="false" aria-label="Toggle navigation"
class="navbar-toggler btn btn-icon btn-sm rounded-circle" data-target="#navBar"
data-toggle="collapse" type="button">
<span class="navbar-toggler-default">
<svg height="14" viewBox="0 0 18 18" width="14" xmlns="http://www.w3.org/2000/svg">
<path d="M17.4,6.2H0.6C0.3,6.2,0,5.9,0,5.5V4.1c0-0.4,0.3-0.7,0.6-0.7h16.9c0.3,0,0.6,0.3,0.6,0.7v1.4C18,5.9,17.7,6.2,17.4,6.2z M17.4,14.1H0.6c-0.3,0-0.6-0.3-0.6-0.7V12c0-0.4,0.3-0.7,0.6-0.7h16.9c0.3,0,0.6,0.3,0.6,0.7v1.4C18,13.7,17.7,14.1,17.4,14.1z"
fill="currentColor"/>
</svg>
</span>
<span class="navbar-toggler-toggled">
<svg height="14" viewBox="0 0 18 18" width="14" xmlns="http://www.w3.org/2000/svg">
<path d="M11.5,9.5l5-5c0.2-0.2,0.2-0.6-0.1-0.9l-1-1c-0.3-0.3-0.7-0.3-0.9-0.1l-5,5l-5-5C4.3,2.3,3.9,2.4,3.6,2.6l-1,1 C2.4,3.9,2.3,4.3,2.5,4.5l5,5l-5,5c-0.2,0.2-0.2,0.6,0.1,0.9l1,1c0.3,0.3,0.7,0.3,0.9,0.1l5-5l5,5c0.2,0.2,0.6,0.2,0.9-0.1l1-1 c0.3-0.3,0.3-0.7,0.1-0.9L11.5,9.5z"
fill="currentColor"/>
</svg>
</span>
</button>
<!-- End Responsive Toggle Button -->
<!-- Navigation -->
<div class="collapse navbar-collapse" id="navBar">
<div class="navbar-body header-abs-top-inner">
<ul class="navbar-nav">
<!-- Home -->
<li class="hs-has-mega-menu navbar-nav-item">
<a aria-expanded="false" aria-haspopup="true" class="hs-mega-menu-invoker nav-link"
href="/index.html"> Home</a>
</li>
<!-- End Home -->
<!-- Courses -->
<li class="hs-has-sub-menu navbar-nav-item">
<a aria-expanded="false" aria-haspopup="true" class="hs-mega-menu-invoker nav-link"
href="/courses.html">Courses</a>
</li>
<!-- End Courses -->
<!-- Projects -->
<li class="hs-has-sub-menu navbar-nav-item">
<a aria-expanded="false" aria-haspopup="true" class="hs-mega-menu-invoker nav-link"
href="/projects.html">Projects</a>
</li>
<!-- End Projects -->
<!-- Newsroom -->
<li class="hs-has-sub-menu navbar-nav-item">
<a aria-expanded="false" aria-haspopup="true" class="hs-mega-menu-invoker nav-link"
href="/newsroom.html">Newsroom</a>
</li>
<!-- End Newsroom -->
<!-- Newsroom -->
<li class="hs-has-sub-menu navbar-nav-item">
<a aria-expanded="false" aria-haspopup="true" class="hs-mega-menu-invoker nav-link"
href="/publications.html">Publications</a>
</li>
<!-- End Newsroom -->
<!-- Work With Us -->
<li class="hs-has-sub-menu navbar-nav-item">
<a aria-expanded="false" aria-haspopup="true" class="hs-mega-menu-invoker nav-link"
href="/work_with_us.html">Work With Us</a>
</li>
<!-- End Work With Us -->
<!-- Work With Us -->
<li class="hs-has-sub-menu navbar-nav-item">
<a aria-expanded="false" aria-haspopup="true" class="hs-mega-menu-invoker nav-link"
href="/contact_us.html">Contact Us</a>
</li>
<!-- End Work With Us -->
</ul>
</div>
</div>
<!-- End Navigation -->
</nav>
<!-- End Nav -->
</div>
</div>
</header>
<!-- ========== END HEADER ========== -->
<!-- ========== MAIN ========== -->
<main id="content" role="main">
<!-- Hero Section -->
<div class="position-relative">
<div class="container space-top-3 space-top-lg-4 space-bottom-md-2 position-relative z-index-2">
<div class="w-md-80 w-lg-60 text-center mx-md-auto mb-9">
<div class="mb-5">
<h1>Work with us</h1>
<p>Work hard with highly motivated team of talented people and great teammates to launch perfectly
crafted products you'll love.</p>
</div>
<a class="btn btn-primary btn-wide transition-3d-hover" href="#openRolesSection">See Job Openings</a>
</div>
<div class="row mx-n1 mx-sm-n2">
<div class="col-4 align-self-end px-1 px-sm-2 mb-2 mb-sm-3">
<div class="ml-md-8">
<img alt="Image Description" class="img-fluid rounded-lg"
src="assets/front_v3_3/img/900x900/img1.jpg">
</div>
</div>
<div class="col-8 px-1 px-sm-2 mb-2 mb-sm-3">
<!-- Video Block -->
<div class="video-player d-none d-md-block rounded-lg" id="youTubeVideoPlayer"
style="background-color: #000;">
<img alt="Image" class="img-fluid video-player-preview rounded-lg"
src="assets/front_v3_3/img/900x450/img14.jpg">
<!-- Play Button -->
<a class="js-inline-video-player video-player-btn video-player-centered"
data-hs-video-player-options='{
"videoId": "0qisGSwZym4",
"parentSelector": "#youTubeVideoPlayer",
"targetSelector": "#youTubeVideoIframe",
"isAutoplay": true,
"classMap": {
"toggle": "video-player-played"
}
}' href="javascript:;">
<span class="video-player-icon">
<i class="fas fa-play"></i>
</span>
</a>
<!-- End Play Button -->
<!-- Video Iframe -->
<div class="embed-responsive embed-responsive-16by9 rounded-lg">
<div id="youTubeVideoIframe"></div>
</div>
<!-- End Video Iframe -->
</div>
<!-- End Video Block -->
<div class="d-md-none">
<img alt="Image Description" class="img-fluid rounded-lg"
src="assets/front_v3_3/img/900x450/img14.jpg">
</div>
</div>
<div class="col-8 px-1 px-sm-2 mb-2 mb-sm-3">
<img alt="Image Description" class="img-fluid rounded-lg"
src="assets/front_v3_3/img/900x450/img13.jpg">
</div>
<div class="col-4 px-1 px-sm-2 mb-2 mb-sm-3">
<div class="mr-md-8">
<img alt="Image Description" class="img-fluid rounded-lg"
src="assets/front_v3_3/img/750x750/img2.jpg">
</div>
</div>
</div>
</div>
<div class="position-absolute top-0 right-0 left-0 w-100 h-100 bg-img-hero mt-n11"
style="background-image: url(assets/front_v3_3/svg/components/abstract-shapes-12.svg);"></div>
<!-- SVG Shape -->
<figure class="position-absolute bottom-0 right-0 left-0 mb-11">
<svg preserveAspectRatio="none" viewBox="0 0 1921 273" x="0px" xmlns="http://www.w3.org/2000/svg" y="0px">
<polygon fill="#fff" points="0,273 1921,273 1921,0 "/>
</svg>
</figure>
<!-- End SVG Shape -->
</div>
<!-- End Hero Section -->
<!-- Features Section -->
<div class="container">
<div class="border-bottom space-2 space-lg-3">
<!-- Title -->
<div class="w-md-80 w-lg-50 text-center mx-md-auto mb-5 mb-md-9">
<span class="d-block small font-weight-bold text-cap mb-2">Company values</span>
<h2>The Front culture</h2>
</div>
<!-- End Title -->
<div class="row">
<div class="col-sm-6 col-md-4 mb-3 mb-sm-7">
<!-- Icon Blocks -->
<div class="media">
<span class="mr-3">—</span>
<div class="media-body">
<h2 class="h4">Hit heavy, stay small</h2>
<p>Tight-knit, dynamic teams work with more agility, communication, and freedom than
large-scale companies.</p>
</div>
</div>
<!-- End Icon Blocks -->
</div>
<div class="col-sm-6 col-md-4 mb-3 mb-sm-7">
<!-- Icon Blocks -->
<div class="media">
<span class="mr-3">—</span>
<div class="media-body">
<h3 class="h4">Ambition by the boatload</h3>
<p>We love people who aim for greatness. They inspire and excite their teammates, raising
the bar for all of us.</p>
</div>
</div>
<!-- End Icon Blocks -->
</div>
<div class="col-sm-6 col-md-4 mb-3 mb-sm-7">
<!-- Icon Blocks -->
<div class="media">
<span class="mr-3">—</span>
<div class="media-body">
<h4>Open communication</h4>
<p>We're big fans of transparency for many reasons, but the abridged version is: it makes
easier.
</p>
</div>
</div>
<!-- End Icon Blocks -->
</div>
<div class="col-sm-6 col-md-4 mb-3 mb-sm-0">
<!-- Icon Blocks -->
<div class="media">
<span class="mr-3">—</span>
<div class="media-body">
<h4>Autonomy and attitude</h4>
<p>We're a team of self-starters who take serious pride in our work – and it shows.</p>
</div>
</div>
<!-- End Icon Blocks -->
</div>
<div class="col-sm-6 col-md-4 mb-3 mb-sm-0">
<!-- Icon Blocks -->
<div class="media">
<span class="mr-3">—</span>
<div class="media-body">
<h4>Support and win</h4>
<p>When we empower others to succeed, we all win. (And we're not talking about participation
trophies.)
</p>
</div>
</div>
<!-- End Icon Blocks -->
</div>
<div class="col-sm-6 col-md-4">
<!-- Icon Blocks -->
<div class="media">
<span class="mr-3">—</span>
<div class="media-body">
<h4>Teamwork makes the dream work</h4>
<p>We work together to bring our passions and expertise to make Teachable the best it can
be.
</p>
</div>
</div>
<!-- End Icon Blocks -->
</div>
</div>
</div>
</div>
<!-- End Features Section -->
<!-- Info Section -->
<div class="container space-2 space-lg-3">
<!-- Title -->
<div class="w-md-80 w-lg-50 text-center mx-md-auto mb-5 mb-md-9">
<span class="d-block small font-weight-bold text-cap mb-2">Our values</span>
<h2>What it's like to work here</h2>
</div>
<!-- End Title -->
<div class="w-md-75 mx-md-auto">
<div class="row">
<div class="col-lg-6">
<p>Front is an independent, profitable organisation creating premium thmes to power the future of
websites. No matter where you look, the world has never needed real media serving real
communities as much as it does today.</p>
<p>Because we're a fully-remote team — we hire people from all over the world!</p>
</div>
<div class="col-lg-6">
<p>Our destiny is in our own hands, because we've been profitable since we started. No shareholders,
no board of directors with outside interests, no old VC guys in the background pulling strings.
We generate revenue from customers
who pay us, so we have unlimited runway to keep building the things we want to build.</p>
<p>The vast majority of our work gets done on Github, with Slack as the main channel for
communication. We do weekly meetings via Zoom which are used to discuss progress and plan what's
coming next.</p>
</div>
</div>
</div>
</div>
<!-- End Info Section -->
<!-- Gallery Section -->
<div class="clearfix mx-3 mx-md-11">
<img alt="Image Description" class="img-fluid rounded-lg" src="assets/front_v3_3/img/1920x800/img2.jpg">
</div>
<!-- End Gallery Section -->
<!-- Jobs Section -->
<div class="container space-2 space-lg-3" id="openRolesSection">
<!-- Title -->
<div class="w-md-80 w-lg-50 text-center mx-md-auto mb-5 mb-md-9">
<span class="d-block small font-weight-bold text-cap mb-2">Open positions</span>
<h2>Current job openings</h2>
</div>
<!-- End Title -->
<!-- Filters -->
<div class="border-bottom pb-5 mb-9">
<div class="row align-items-center">
<div class="col-sm-auto mb-3 mb-sm-0">
<!-- Select -->
<select class="custom-select custom-select-sm">
<option disabled selected>Location</option>
<option value="locationAll">All</option>
<option value="location1">London</option>
<option value="location2">New York</option>
<option value="location6">Singapore</option>
<option value="location3">Beijing</option>
<option value="location4">Hong Kong</option>
<option value="location5">Berlin</option>
<option value="location6">Sydney</option>
<option value="location6">San Francisco</option>
</select>
<!-- End Select -->
</div>
<div class="col-sm text-sm-right">
<span class="text-dark font-weight-bold">19</span> open positions
</div>
</div>
</div>
<!-- End Filters -->
<!-- Title -->
<div class="row justify-content-lg-between align-items-lg-center mt-7 mb-3">
<div class="col-sm-auto">
<h3 class="h4">Technology</h3>
</div>
<div class="col-sm text-sm-right">
<small>6 openings</small>
</div>
</div>
<!-- End Title -->
<!-- Card -->
<a class="card card-frame py-3 px-4 mb-2" href="./page-careers-single.html">
<div class="row align-items-sm-center">
<span class="col-sm-6 text-dark">
Android Engineering
</span>
<span class="col-6 col-sm-3 text-body">
Hong Kong
</span>
<span class="col-6 col-sm-3 text-right">
Apply <i class="fas fa-angle-right fa-sm ml-1"></i>
</span>
</div>
</a>
<!-- End Card -->
<!-- Card -->
<a class="card card-frame py-3 px-4 mb-2" href="./page-careers-single.html">
<div class="row align-items-sm-center">
<span class="col-sm-6 text-dark">
Cloud System Engineer
</span>
<span class="col-6 col-sm-3 text-body">
Sydney
</span>
<span class="col-6 col-sm-3 text-right">
Apply <i class="fas fa-angle-right fa-sm ml-1"></i>
</span>
</div>
</a>
<!-- End Card -->
<!-- Card -->
<a class="card card-frame py-3 px-4 mb-2" href="./page-careers-single.html">
<div class="row align-items-sm-center">
<span class="col-sm-6 text-dark">
Database Administrator
</span>
<span class="col-6 col-sm-3 text-body">
Sydney
</span>
<span class="col-6 col-sm-3 text-right">
Apply <i class="fas fa-angle-right fa-sm ml-1"></i>
</span>
</div>
</a>
<!-- End Card -->
<!-- Card -->
<a class="card card-frame py-3 px-4 mb-2" href="./page-careers-single.html">
<div class="row align-items-sm-center">
<span class="col-sm-6 text-dark">
Engineering Lead
</span>
<span class="col-6 col-sm-3 text-body">
Beijing
</span>
<span class="col-6 col-sm-3 text-right">
Apply <i class="fas fa-angle-right fa-sm ml-1"></i>
</span>
</div>
</a>
<!-- End Card -->
<!-- Card -->
<a class="card card-frame py-3 px-4 mb-2" href="./page-careers-single.html">
<div class="row align-items-sm-center">
<span class="col-sm-6 text-dark">
IT Operations Engineer
</span>
<span class="col-6 col-sm-3 text-body">
San Francisco
</span>
<span class="col-6 col-sm-3 text-right">
Apply <i class="fas fa-angle-right fa-sm ml-1"></i>
</span>
</div>
</a>
<!-- End Card -->
<!-- Card -->
<a class="card card-frame py-3 px-4 mb-2" href="./page-careers-single.html">
<div class="row align-items-sm-center">
<span class="col-sm-6 text-dark">
Senior Analyst, Data Analytics
</span>
<span class="col-6 col-sm-3 text-body">
London
</span>
<span class="col-6 col-sm-3 text-right">
Apply <i class="fas fa-angle-right fa-sm ml-1"></i>
</span>
</div>
</a>
<!-- End Card -->
<!-- Title -->
<div class="row justify-content-lg-between align-items-lg-center mt-7 mb-3">
<div class="col-sm-auto">
<h3 class="h4">Business strategy</h3>
</div>
<div class="col-sm text-sm-right">
<small>2 openings</small>
</div>
</div>
<!-- End Title -->
<!-- Card -->
<a class="card card-frame py-3 px-4 mb-2" href="./page-careers-single.html">
<div class="row align-items-sm-center">
<span class="col-sm-6 text-dark">
Business Strategy Manager
</span>
<span class="col-6 col-sm-3 text-body">
London
</span>
<span class="col-6 col-sm-3 text-right">
Apply <i class="fas fa-angle-right fa-sm ml-1"></i>
</span>
</div>
</a>
<!-- End Card -->
<!-- Card -->
<a class="card card-frame py-3 px-4 mb-2" href="./page-careers-single.html">
<div class="row align-items-sm-center">
<span class="col-sm-6 text-dark">
Business Strategy Senior Associate
</span>
<span class="col-6 col-sm-3 text-body">
London
</span>
<span class="col-6 col-sm-3 text-right">
Apply <i class="fas fa-angle-right fa-sm ml-1"></i>
</span>
</div>
</a>
<!-- End Card -->
<!-- Title -->
<div class="row justify-content-lg-between align-items-lg-center mt-7 mb-3">
<div class="col-sm-auto">
<h3 class="h4">Design</h3>
</div>
<div class="col-sm text-sm-right">
<small>2 openings</small>
</div>
</div>
<!-- End Title -->
<!-- Card -->
<a class="card card-frame py-3 px-4 mb-2" href="./page-careers-single.html">
<div class="row align-items-sm-center">
<span class="col-sm-6 text-dark">
Product Designer
</span>
<span class="col-6 col-sm-3 text-body">
San Francisco
</span>
<span class="col-6 col-sm-3 text-right">
Apply <i class="fas fa-angle-right fa-sm ml-1"></i>
</span>
</div>
</a>
<!-- End Card -->
<!-- Card -->
<a class="card card-frame py-3 px-4 mb-2" href="./page-careers-single.html">
<div class="row align-items-sm-center">
<span class="col-sm-6 text-dark">
Senior UX Researcher
</span>
<span class="col-6 col-sm-3 text-body">
New York
</span>
<span class="col-6 col-sm-3 text-right">
Apply <i class="fas fa-angle-right fa-sm ml-1"></i>
</span>
</div>
</a>
<!-- End Card -->
<!-- Title -->
<div class="row justify-content-lg-between align-items-lg-center mt-7 mb-3">
<div class="col-sm-auto">
<h3 class="h4">Sales</h3>
</div>
<div class="col-sm text-sm-right">
<small>9 openings</small>
</div>
</div>
<!-- End Title -->
<!-- Card -->
<a class="card card-frame py-3 px-4 mb-2" href="./page-careers-single.html">
<div class="row align-items-sm-center">
<span class="col-sm-6 text-dark">
Account Executive - Enterprise
</span>
<span class="col-6 col-sm-3 text-body">
San Francisco
</span>
<span class="col-6 col-sm-3 text-right">
Apply <i class="fas fa-angle-right fa-sm ml-1"></i>
</span>
</div>
</a>
<!-- End Card -->
<!-- Card -->
<a class="card card-frame py-3 px-4 mb-2" href="./page-careers-single.html">
<div class="row align-items-sm-center">
<span class="col-sm-6 text-dark">
Account Executive - Enterprise
</span>
<span class="col-6 col-sm-3 text-body">
New York
</span>
<span class="col-6 col-sm-3 text-right">
Apply <i class="fas fa-angle-right fa-sm ml-1"></i>
</span>
</div>
</a>
<!-- End Card -->
<!-- Card -->
<a class="card card-frame py-3 px-4 mb-2" href="./page-careers-single.html">
<div class="row align-items-sm-center">
<span class="col-sm-6 text-dark">
Account Executive - Growth
</span>
<span class="col-6 col-sm-3 text-body">
Singapore
</span>
<span class="col-6 col-sm-3 text-right">
Apply <i class="fas fa-angle-right fa-sm ml-1"></i>
</span>
</div>
</a>
<!-- End Card -->
<!-- Card -->
<a class="card card-frame py-3 px-4 mb-2" href="./page-careers-single.html">
<div class="row align-items-sm-center">
<span class="col-sm-6 text-dark">
Account Executive - Mid Market
</span>
<span class="col-6 col-sm-3 text-body">
Berlin
</span>
<span class="col-6 col-sm-3 text-right">
Apply <i class="fas fa-angle-right fa-sm ml-1"></i>
</span>
</div>
</a>
<!-- End Card -->
<!-- Card -->
<a class="card card-frame py-3 px-4 mb-2" href="./page-careers-single.html">
<div class="row align-items-sm-center">
<span class="col-sm-6 text-dark">
Sales Manager
</span>
<span class="col-6 col-sm-3 text-body">
Berlin
</span>
<span class="col-6 col-sm-3 text-right">
Apply <i class="fas fa-angle-right fa-sm ml-1"></i>
</span>
</div>
</a>
<!-- End Card -->
<!-- Card -->
<a class="card card-frame py-3 px-4 mb-2" href="./page-careers-single.html">
<div class="row align-items-sm-center">
<span class="col-sm-6 text-dark">
Solutions Consultant
</span>
<span class="col-6 col-sm-3 text-body">
Berlin
</span>
<span class="col-6 col-sm-3 text-right">
Apply <i class="fas fa-angle-right fa-sm ml-1"></i>
</span>
</div>
</a>
<!-- End Card -->
<!-- Card -->
<a class="card card-frame py-3 px-4 mb-2" href="./page-careers-single.html">
<div class="row align-items-sm-center">
<span class="col-sm-6 text-dark">
Business Development Representative
</span>
<span class="col-6 col-sm-3 text-body">
Beijing
</span>
<span class="col-6 col-sm-3 text-right">
Apply <i class="fas fa-angle-right fa-sm ml-1"></i>
</span>
</div>
</a>
<!-- End Card -->
<!-- Card -->
<a class="card card-frame py-3 px-4 mb-2" href="./page-careers-single.html">
<div class="row align-items-sm-center">
<span class="col-sm-6 text-dark">
Manager, Sales Department
</span>
<span class="col-6 col-sm-3 text-body">
Hong Kong
</span>
<span class="col-6 col-sm-3 text-right">
Apply <i class="fas fa-angle-right fa-sm ml-1"></i>
</span>
</div>
</a>
<!-- End Card -->
<!-- Card -->
<a class="card card-frame py-3 px-4 mb-2" href="./page-careers-single.html">
<div class="row align-items-sm-center">
<span class="col-sm-6 text-dark">
Sales Development Representative
</span>
<span class="col-6 col-sm-3 text-body">
London
</span>
<span class="col-6 col-sm-3 text-right">
Apply <i class="fas fa-angle-right fa-sm ml-1"></i>
</span>
</div>
</a>
<!-- End Card -->
<div class="text-center mt-5">
<p>Can't find a position that suits you? <a class="font-weight-bold text-nowrap"
href="page-contacts-agency.html">Contact us <i
class="fas fa-angle-right fa-sm ml-1"></i></a></p>
</div>
</div>
<!-- End Jobs Section -->
</main>
<!-- ========== END MAIN ========== -->
<!-- ========== FOOTER ========== -->
<footer class="bg-dark">
<div class="container">
<div class="space-top-2 space-bottom-1 space-bottom-lg-2">
<div class="row justify-content-lg-between">
<div class="col-lg-3 ml-lg-auto mb-5 mb-lg-0">
<!-- Logo -->
<div class="mb-4">
<a aria-label="Front" href="index.html">
<img alt="Logo" class="brand" src="assets/front_v3_3/svg/logos/logo-white.svg">
</a>
</div>
<!-- End Logo -->
<!-- Nav Link -->
<ul class="nav nav-sm nav-x-0 nav-white flex-column">
<li class="nav-item">
<a class="nav-link media" href="javascript:;">
<span class="media">
<span class="fas fa-location-arrow mt-1 mr-2"></span>
<span class="media-body">
153 Williamson Plaza, Maggieberg
</span>
</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link media" href="tel:1-062-109-9222">
<span class="media">
<span class="fas fa-phone-alt mt-1 mr-2"></span>
<span class="media-body">
+1 (062) 109-9222
</span>
</span>
</a>
</li>
</ul>
<!-- End Nav Link -->
</div>
<div class="col-6 col-md-3 col-lg mb-5 mb-lg-0">
<h5 class="text-white">Company</h5>
<!-- Nav Link -->
<ul class="nav nav-sm nav-x-0 nav-white flex-column">
<li class="nav-item"><a class="nav-link" href="#">About</a></li>
<li class="nav-item"><a class="nav-link" href="#">Careers <span
class="badge badge-primary ml-1">We're hiring</span></a></li>
<li class="nav-item"><a class="nav-link" href="#">Blog</a></li>
<li class="nav-item"><a class="nav-link" href="#">Customers</a></li>
<li class="nav-item"><a class="nav-link" href="#">Hire us</a></li>
</ul>
<!-- End Nav Link -->
</div>
<div class="col-6 col-md-3 col-lg mb-5 mb-lg-0">
<h5 class="text-white">Features</h5>
<!-- Nav Link -->
<ul class="nav nav-sm nav-x-0 nav-white flex-column">
<li class="nav-item"><a class="nav-link" href="#">Press</a></li>
<li class="nav-item"><a class="nav-link" href="#">Release notes</a></li>
<li class="nav-item"><a class="nav-link" href="#">Integrations</a></li>
<li class="nav-item"><a class="nav-link" href="#">Pricing</a></li>
</ul>
<!-- End Nav Link -->
</div>
<div class="col-6 col-md-3 col-lg">
<h5 class="text-white">Documentation</h5>
<!-- Nav Link -->
<ul class="nav nav-sm nav-x-0 nav-white flex-column">
<li class="nav-item"><a class="nav-link" href="#">Support</a></li>
<li class="nav-item"><a class="nav-link" href="#">Docs</a></li>
<li class="nav-item"><a class="nav-link" href="#">Status</a></li>
<li class="nav-item"><a class="nav-link" href="#">API Reference</a></li>
<li class="nav-item"><a class="nav-link" href="#">Tech Requirements</a></li>
</ul>
<!-- End Nav Link -->
</div>
<div class="col-6 col-md-3 col-lg">
<h5 class="text-white">Resources</h5>
<!-- Nav Link -->
<ul class="nav nav-sm nav-x-0 nav-white flex-column">
<li class="nav-item">
<a class="nav-link" href="#">
<span class="media align-items-center">
<i class="fa fa-info-circle mr-2"></i>
<span class="media-body">Help</span>
</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">
<span class="media align-items-center">
<i class="fa fa-user-circle mr-2"></i>
<span class="media-body">Your Account</span>
</span>
</a>
</li>
</ul>
<!-- End Nav Link -->
</div>
</div>
</div>
<hr class="opacity-xs my-0">
<div class="space-1">
<div class="row align-items-md-center mb-7">
<div class="col-md-6 mb-4 mb-md-0">
<!-- Nav Link -->
<ul class="nav nav-sm nav-white nav-x-sm align-items-center">
<li class="nav-item">
<a class="nav-link" href="#">Privacy & Policy</a>
</li>
<li class="nav-item opacity mx-3">/</li>
<li class="nav-item">
<a class="nav-link" href="#">Terms</a>
</li>
<li class="nav-item opacity mx-3">/</li>
<li class="nav-item">
<a class="nav-link" href="#">Site Map</a>
</li>
</ul>
<!-- End Nav Link -->
</div>
<div class="col-md-6 text-md-right">
<ul class="list-inline mb-0">
<!-- Social Networks -->
<li class="list-inline-item">
<a class="btn btn-xs btn-icon btn-soft-light" href="#">
<i class="fab fa-facebook-f"></i>
</a>
</li>
<li class="list-inline-item">
<a class="btn btn-xs btn-icon btn-soft-light" href="#">
<i class="fab fa-google"></i>
</a>
</li>
<li class="list-inline-item">
<a class="btn btn-xs btn-icon btn-soft-light" href="#">
<i class="fab fa-twitter"></i>
</a>
</li>
<li class="list-inline-item">