-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpage4.html
1098 lines (897 loc) · 62 KB
/
page4.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>
<head>
<!-- Site made with Mobirise Website Builder v4.3.0, https://mobirise.com -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="generator" content="Mobirise v4.3.0, mobirise.com">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="assets/images/icon-talenthub-128x135.png" type="image/x-icon">
<meta name="description" content="Website Maker Description">
<title>Vacancies</title>
<link rel="stylesheet" href="assets/web/assets/mobirise-icons/mobirise-icons.css">
<link rel="stylesheet" href="assets/tether/tether.min.css">
<link rel="stylesheet" href="assets/soundcloud-plugin/style.css">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap-grid.min.css">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap-reboot.min.css">
<link rel="stylesheet" href="assets/socicon/css/styles.css">
<link rel="stylesheet" href="assets/animate.css/animate.min.css">
<link rel="stylesheet" href="assets/dropdown/css/style.css">
<link rel="stylesheet" href="assets/theme/css/style.css">
<link rel="stylesheet" href="assets/mobirise/css/mbr-additional.css" type="text/css">
</head>
<body>
<section class="menu cid-qzsASJ5ak8" once="menu" id="menu1-47" data-rv-view="2330">
<nav class="navbar navbar-expand beta-menu navbar-dropdown align-items-center navbar-fixed-top navbar-toggleable-sm">
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<div class="hamburger">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</button>
<div class="menu-logo">
<div class="navbar-brand">
<span class="navbar-logo">
<img src="assets/images/oie-transparent21-554x153.png" alt="Mobirise" title="" media-simple="true" style="height: 3.8rem;">
</span>
</div>
</div>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav nav-dropdown nav-right" data-app-modern-menu="true"><li class="nav-item">
<a class="nav-link link text-black display-4" href="index.html">
<span class="mbri-home mbr-iconfont mbr-iconfont-btn"></span>
Home</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link link text-black dropdown-toggle display-4" href="https://mobirise.com" data-toggle="dropdown-submenu" aria-expanded="false"><span class="mbri-like mbr-iconfont mbr-iconfont-btn"></span>
About </a><div class="dropdown-menu"><a class="text-black dropdown-item display-4" href="page3.html">Join Us</a><a class="text-black dropdown-item display-4" href="Ca.html">Clients</a><a class="text-black dropdown-item display-4" href="Candidates.html">Candidates</a></div>
</li><li class="nav-item"><a class="nav-link link text-black display-4" href="page4.html">
<span class="mbri-search mbr-iconfont mbr-iconfont-btn"></span>
Vacancies</a></li></ul>
</div>
</nav>
</section>
<section class="engine"><a href="https://mobirise.co/d">web software</a></section><section class="header10 cid-qyYzlyVik0 mbr-fullscreen mbr-parallax-background" id="header10-1u" data-rv-view="2332">
<div class="mbr-overlay" style="opacity: 0.2; background-color: rgb(0, 0, 0);">
</div>
<div class="container">
<div class="media-container-column mbr-white col-lg-8 col-md-10 ml-auto">
<h1 class="mbr-section-title align-right mbr-bold pb-3 mbr-fonts-style display-1">
<br>Create Your<br>Future</h1>
<h3 class="mbr-section-subtitle align-right mbr-light pb-3 mbr-fonts-style display-2">Changing relationships between people and employer</h3>
<p class="mbr-text align-right pb-3 mbr-fonts-style display-5"></p>
<div class="mbr-section-btn align-right"><a class="btn btn-md btn-primary display-4" href="page4.html#toggle2-1z">Search</a>
<a class="btn btn-md btn-white-outline display-4" href="https://talenthub2.typeform.com/to/je1wtv" target="_blank">Request Call back</a></div>
</div>
</div>
<div class="mbr-arrow hidden-sm-down" aria-hidden="true">
<a href="#next">
<i class="mbri-down mbr-iconfont"></i>
</a>
</div>
</section>
<section class="mbr-section content5 cid-qyYA9nAPgr mbr-parallax-background" id="content5-1x" data-rv-view="2335">
<div class="container">
<div class="media-container-row">
<div class="title col-12 col-md-8">
</div>
</div>
</div>
</section>
<section class="mbr-section content4 cid-qyYA3LcKPN" id="content4-1v" data-rv-view="2338">
<div class="container">
<div class="media-container-row">
<div class="title col-12 col-md-8">
<h2 class="align-center pb-3 mbr-fonts-style display-2">
Get to know us</h2>
<h3 class="mbr-section-subtitle align-center mbr-light mbr-fonts-style display-7">We are based in London and Bristol. We have specialist consultants across a range of sectors; always on hand to find your dream position at a company that suits you. </h3>
</div>
</div>
</div>
</section>
<section class="features7 cid-qyYA4zpABi" id="features7-1w" data-rv-view="2340">
<div class="container">
<div class="row justify-content-center">
<div class="card p-3 col-12 col-md-6 col-lg-4">
<div class="media">
<div class="card-img pr-2">
<span class="mbr-iconfont mbri-star" media-simple="true"></span>
</div>
<div class="card-box media-body">
<h4 class="card-title py-3 mbr-fonts-style display-7">
The Best</h4>
<p class="mbr-text mbr-fonts-style display-7">We work with only the
<br><strong>best</strong> companies. We work with Start Ups right the way through to large multinational brands. </p>
</div>
</div>
</div>
<div class="card p-3 col-12 col-md-6 col-lg-4">
<div class="media">
<div class="card-img pr-2">
<span class="mbr-iconfont mbri-edit" media-simple="true"></span>
</div>
<div class="card-box media-body">
<h4 class="card-title py-3 mbr-fonts-style display-7">Interview Coaching </h4>
<p class="mbr-text mbr-fonts-style display-7">We are by your side
<br><strong>every step of the way. </strong> We will work with you to ensure you are fully prepared for interviews. </p>
</div>
</div>
</div>
<div class="card p-3 col-12 col-md-6 col-lg-4">
<div class="media">
<div class="card-img pr-2">
<span class="mbr-iconfont mbri-like" media-simple="true"></span>
</div>
<div class="media-body card-box">
<h4 class="card-title py-3 mbr-fonts-style display-7">
Trust</h4>
<p class="mbr-text mbr-fonts-style display-7">You can trust us
<br><strong>with your future. </strong>We take the time to listen to your ambitions and take the time to work with you. <strong> </strong></p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="mbr-section info2 cid-qyYAt4uurs" id="info2-1y" data-rv-view="2343">
<div class="container">
<div class="row justify-content-center">
<div class="media-container-column col-12 col-lg-3 col-md-4">
<div class="mbr-section-btn align-left py-4"><a class="btn btn-white display-4" href="page4.html#toggle2-1z">
<span class="mbri-preview mbr-iconfont"></span>
Search</a></div>
</div>
<div class="media-container-column title col-12 col-lg-7 col-md-6">
<h2 class="align-right mbr-bold mbr-white pb-3 mbr-fonts-style display-2">
Kick Start Your Career.</h2>
<h3 class="mbr-section-subtitle align-right mbr-light mbr-white mbr-fonts-style display-5">We work with only the
<div><strong>best.</strong></div></h3>
</div>
</div>
</div>
</section>
<section class="toggle2 cid-qyYBaDQqjp" id="toggle2-1z" data-rv-view="2346">
<div class="container">
<div class="media-container-row">
<div class="toggle-content">
<h2 class="mbr-section-title pb-3 align-left mbr-fonts-style display-2"><strong>
Trainee Recruitment Consultant - </strong>EC1</h2>
<div id="bootstrap-toggle" class="toggle-panel accordionStyles tab-content pt-5 mt-2">
<div class="card">
<div class="card-header" role="tab" id="headingOne">
<a role="button" class="collapsed panel-title text-black" data-toggle="collapse" data-parent="#accordion" data-core="" href="#collapse1_42" aria-expanded="false" aria-controls="collapse1">
<h4 class="mbr-fonts-style display-5">
<span class="sign mbr-iconfont mbri-arrow-down inactive"></span> Job Description</h4>
</a>
</div>
<div id="collapse1_42" class="panel-collapse noScroll collapse" role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body p-4">
<p class="mbr-fonts-style panel-text display-7">
Are you a money motivated and driven person? Are you a hard-working person? Are you looking for a career that matches your ambitions? Look no further!<br><br><strong>The day to day:
</strong><br>- Generating business leads through cold calling
<br>- Being proactive on the phone
<br>- Writing job adverts
<br>- Networking/Head-hunting
<br>- Negotiating and closing deals <br></p>
</div>
</div>
</div>
<div class="card">
<div class="card-header" role="tab" id="headingTwo">
<a role="button" class="collapsed panel-title text-black" data-toggle="collapse" data-parent="#accordion" data-core="" href="#collapse2_42" aria-expanded="false" aria-controls="collapse2">
<h4 class="mbr-fonts-style display-5">
<span class="sign mbr-iconfont mbri-arrow-down inactive"></span> The Company</h4>
</a>
</div>
<div id="collapse2_42" class="panel-collapse noScroll collapse" role="tabpanel" aria-labelledby="headingTwo">
<div class="panel-body p-4">
<p class="mbr-fonts-style panel-text display-7">- Based in the heart of the City <br>- Brilliant company reputation
<br>- Sociable and fun environment
<br>- Amazing commission structure
<br>- Well mapped career progression</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header" role="tab" id="headingThree">
<a role="button" class="collapsed panel-title text-black" data-toggle="collapse" data-parent="#accordion" data-core="" href="#collapse3_42" aria-expanded="true" aria-controls="collapse3">
<h4 class="mbr-fonts-style display-5">
<span class="sign mbr-iconfont mbri-arrow-down inactive"></span>The Day to Day</h4>
</a>
</div>
<div id="collapse3_42" class="panel-collapse noScroll collapse" role="tabpanel" aria-labelledby="headingThree">
<div class="panel-body p-4">
<p class="mbr-fonts-style panel-text display-7">- Generating business leads through cold calling
<br>- Being proactive on the phone
<br>- Writing job adverts
<br>- Networking/Head-hunting
<br>- Negotiating and closing deals</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header" role="tab" id="headingThree">
<a role="button" class="collapsed panel-title text-black" data-toggle="collapse" data-parent="#accordion" data-core="" href="#collapse4_42" aria-expanded="false" aria-controls="collapse4">
<h4 class="mbr-fonts-style display-5">
<span class="sign mbr-iconfont mbri-arrow-down inactive"></span> Benefits to you</h4>
</a>
</div>
<div id="collapse4_42" class="panel-collapse noScroll collapse" role="tabpanel" aria-labelledby="headingThree">
<div class="panel-body p-4">
<p class="mbr-fonts-style panel-text display-7">- Amazing commission structure, take home up to 30% of your billings
<br>- Expensed company holidays for top performers
<br>- Luxury items (watches, festivals, days out)
<br>- Company drinks
<br>- Fast career progression</p>
</div>
</div>
</div>
</div>
</div>
<div class="mbr-figure" style="width: 89%;">
<img src="assets/images/mbr-1626x1080.jpg" alt="Mobirise" title="" media-simple="true">
</div>
</div>
</div>
</section>
<section class="mbr-section form1 cid-qyYCXfKiLL" id="form1-20" data-rv-view="2349">
<div class="container">
<div class="row justify-content-center">
<div class="title col-12 col-lg-8">
<h2 class="mbr-section-title align-center pb-3 mbr-fonts-style display-2"><strong>
Apply Below!</strong></h2>
<h3 class="mbr-section-subtitle align-center mbr-light pb-3 mbr-fonts-style display-5">
Send over your contact details and one of our consultants will be in touch to discuss further. </h3>
</div>
</div>
</div>
<div class="container">
<div class="row justify-content-center">
<div class="media-container-column col-lg-8" data-form-type="formoid">
<div data-form-alert="" hidden="">Thanks for filling out the form. One of our consultants will be in touch to chat further. </div>
<form class="mbr-form" action="https://mobirise.com/" method="post" data-form-title="Mobirise Form"><input type="hidden" data-form-email="true" value="fNzz+++YeXOOczY/uUIwQjCXOjYyCKX2S1ZW4vhQ0flnRIPQ0bYKyoAmoACKMTUOz6dKubsCD63xLEeRdI49IYNqS7Bu8PHM/f4vYMALbkl+7EP1oRtpMyFQPYYPUQY2">
<div class="row row-sm-offset">
<div class="col-md-4 multi-horizontal" data-for="name">
<div class="form-group">
<label class="form-control-label mbr-fonts-style display-7" for="name-form1-20">Name</label>
<input type="text" class="form-control" name="name" data-form-field="Name" required="" id="name-form1-20">
</div>
</div>
<div class="col-md-4 multi-horizontal" data-for="email">
<div class="form-group">
<label class="form-control-label mbr-fonts-style display-7" for="email-form1-20">Email</label>
<input type="email" class="form-control" name="email" data-form-field="Email" required="" id="email-form1-20">
</div>
</div>
<div class="col-md-4 multi-horizontal" data-for="phone">
<div class="form-group">
<label class="form-control-label mbr-fonts-style display-7" for="phone-form1-20">Phone</label>
<input type="tel" class="form-control" name="phone" data-form-field="Phone" id="phone-form1-20">
</div>
</div>
</div>
<span class="input-group-btn"><button href="" type="submit" class="btn btn-primary btn-form display-4">Apply Now</button></span>
</form>
</div>
</div>
</div>
</section>
<section class="mbr-section content5 cid-qyYDLbVzaG mbr-parallax-background" id="content5-21" data-rv-view="2352">
<div class="container">
<div class="media-container-row">
<div class="title col-12 col-md-8">
</div>
</div>
</div>
</section>
<section class="toggle2 cid-qzsJuxdSd8" id="toggle2-49" data-rv-view="2355">
<div class="container">
<div class="media-container-row">
<div class="toggle-content">
<h2 class="mbr-section-title pb-3 align-left mbr-fonts-style display-2"><strong>
Customer Experience Associate - </strong>Gloucester, UK</h2>
<div id="bootstrap-toggle" class="toggle-panel accordionStyles tab-content pt-5 mt-2">
<div class="card">
<div class="card-header" role="tab" id="headingOne">
<a role="button" class="collapsed panel-title text-black" data-toggle="collapse" data-parent="#accordion" data-core="" href="#collapse1_28" aria-expanded="false" aria-controls="collapse1">
<h4 class="mbr-fonts-style display-5">
<span class="sign mbr-iconfont mbri-arrow-down inactive"></span> Job Description</h4>
</a>
</div>
<div id="collapse1_28" class="panel-collapse noScroll collapse" role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body p-4">
<p class="mbr-fonts-style panel-text display-7">Key duties
<br>
<br>*Daily usage of a Microsoft package
<br>*Working along with a customer service team,
<br>*Ability to work to the instructions
<br>*Manage incoming emails
<br>*Manage incoming telephone calls
<br>*Ordering office stationery supplies
<br>*Handling customer complaints
<br>*Advising customers on delivery
<br>* developing accounts with existing trade customers</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header" role="tab" id="headingTwo">
<a role="button" class="collapsed panel-title text-black" data-toggle="collapse" data-parent="#accordion" data-core="" href="#collapse2_28" aria-expanded="false" aria-controls="collapse2">
<h4 class="mbr-fonts-style display-5">
<span class="sign mbr-iconfont mbri-arrow-down inactive"></span> The Company</h4>
</a>
</div>
<div id="collapse2_28" class="panel-collapse noScroll collapse" role="tabpanel" aria-labelledby="headingTwo">
<div class="panel-body p-4">
<p class="mbr-fonts-style panel-text display-7"><br>An exciting opportunity has arisen with Our Client who is a global Furniture importer. Due to continued growth and success, they are looking to take on a Customer Service account manager to join in the small experienced customer service team.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header" role="tab" id="headingThree">
<a role="button" class="collapsed panel-title text-black" data-toggle="collapse" data-parent="#accordion" data-core="" href="#collapse3_28" aria-expanded="true" aria-controls="collapse3">
<h4 class="mbr-fonts-style display-5">
<span class="sign mbr-iconfont mbri-arrow-down inactive"></span>Key Skills</h4>
</a>
</div>
<div id="collapse3_28" class="panel-collapse noScroll collapse" role="tabpanel" aria-labelledby="headingThree">
<div class="panel-body p-4">
<p class="mbr-fonts-style panel-text display-7">Key skills
<br>
<br>*Great knowledge of Microsoft office packages
<br>*Great communication skills
<br>*Computer literature
<br>*Strong organisational, administrative and analytical skills
<br>*Excellent IT skills
<br>*Strong Admin background
<br>*Excellent organisational and multitasking abilities
<br>* Accurate and exceptional attention to detail
<br>* Building a relationship with trade customers
<br>* Ability to priorities and multitask
<br>* Good at solving problems and Building product knowledge</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header" role="tab" id="headingThree">
<a role="button" class="collapsed panel-title text-black" data-toggle="collapse" data-parent="#accordion" data-core="" href="#collapse4_28" aria-expanded="false" aria-controls="collapse4">
<h4 class="mbr-fonts-style display-5">
<span class="sign mbr-iconfont mbri-arrow-down inactive"></span> Benefits to you</h4>
</a>
</div>
<div id="collapse4_28" class="panel-collapse noScroll collapse" role="tabpanel" aria-labelledby="headingThree">
<div class="panel-body p-4">
<p class="mbr-fonts-style panel-text display-7">- Great salary<br>- Development and growth <br>- Fast career progression</p>
</div>
</div>
</div>
</div>
</div>
<div class="mbr-figure" style="width: 89%;">
<img src="assets/images/mbr-1438x1080.jpg" alt="Mobirise" title="" media-simple="true">
</div>
</div>
</div>
</section>
<section class="mbr-section form1 cid-qzsJAhkfW7" id="form1-4a" data-rv-view="2358">
<div class="container">
<div class="row justify-content-center">
<div class="title col-12 col-lg-8">
<h2 class="mbr-section-title align-center pb-3 mbr-fonts-style display-2"><strong>
Apply Below!</strong></h2>
<h3 class="mbr-section-subtitle align-center mbr-light pb-3 mbr-fonts-style display-5">
Send over your contact details and one of our consultants will be in touch to discuss further. </h3>
</div>
</div>
</div>
<div class="container">
<div class="row justify-content-center">
<div class="media-container-column col-lg-8" data-form-type="formoid">
<div data-form-alert="" hidden="">Thanks for filling out the form. One of our consultants will be in touch to chat further. </div>
<form class="mbr-form" action="https://mobirise.com/" method="post" data-form-title="Mobirise Form"><input type="hidden" data-form-email="true" value="xK/tjosEL7vPLyl1iGu1iwd2MbKouxXN3KX3rkBxKG4Bg+YVmiAd1fgqtJ1jmELdY2bvXzIlg/XgdKQGLp5Ob43IPszNq2dZ282lkfV2kPw69ikZhVRrXfJYmRuv+nDp">
<div class="row row-sm-offset">
<div class="col-md-4 multi-horizontal" data-for="name">
<div class="form-group">
<label class="form-control-label mbr-fonts-style display-7" for="name-form1-4a">Name</label>
<input type="text" class="form-control" name="name" data-form-field="Name" required="" id="name-form1-4a">
</div>
</div>
<div class="col-md-4 multi-horizontal" data-for="email">
<div class="form-group">
<label class="form-control-label mbr-fonts-style display-7" for="email-form1-4a">Email</label>
<input type="email" class="form-control" name="email" data-form-field="Email" required="" id="email-form1-4a">
</div>
</div>
<div class="col-md-4 multi-horizontal" data-for="phone">
<div class="form-group">
<label class="form-control-label mbr-fonts-style display-7" for="phone-form1-4a">Phone</label>
<input type="tel" class="form-control" name="phone" data-form-field="Phone" id="phone-form1-4a">
</div>
</div>
</div>
<span class="input-group-btn"><button href="" type="submit" class="btn btn-primary btn-form display-4">Apply Now</button></span>
</form>
</div>
</div>
</div>
</section>
<section class="mbr-section content5 cid-qzsJD5Bw2j mbr-parallax-background" id="content5-4b" data-rv-view="2361">
<div class="container">
<div class="media-container-row">
<div class="title col-12 col-md-8">
</div>
</div>
</div>
</section>
<section class="toggle2 cid-qyYDSr7XlD" id="toggle2-22" data-rv-view="2364">
<div class="container">
<div class="media-container-row">
<div class="toggle-content">
<h2 class="mbr-section-title pb-3 align-left mbr-fonts-style display-2"><strong>
Business Development Manager - </strong>SW1 </h2>
<div id="bootstrap-toggle" class="toggle-panel accordionStyles tab-content pt-5 mt-2">
<div class="card">
<div class="card-header" role="tab" id="headingOne">
<a role="button" class="collapsed panel-title text-black" data-toggle="collapse" data-parent="#accordion" data-core="" href="#collapse1_31" aria-expanded="false" aria-controls="collapse1">
<h4 class="mbr-fonts-style display-5">
<span class="sign mbr-iconfont mbri-arrow-down inactive"></span> Job Description</h4>
</a>
</div>
<div id="collapse1_31" class="panel-collapse noScroll collapse" role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body p-4">
<p class="mbr-fonts-style panel-text display-7">The primary role of the Business Development Manager is to sign-up London’s top retailers and generate growth.
<br>
<br>Drive revenue by prospecting, qualifying and closing new businesses <br>
<br>Build, forecast, and manage your own sales pipeline <br>
<br>Communicate effectively and efficiently via phone, email and during in-person meetings <br>
<br>Develop strong relationships with key clients and intelligently sell new product features to these clients in a helpful way <br>
<br>Wear multiple hats: sales strategy, lead generation, sales rep, and account manager <br>
<br>Identify prospect needs, understand business drivers behind requests, and explain the Brisqq value proposition <br></p>
</div>
</div>
</div>
<div class="card">
<div class="card-header" role="tab" id="headingTwo">
<a role="button" class="collapsed panel-title text-black" data-toggle="collapse" data-parent="#accordion" data-core="" href="#collapse2_31" aria-expanded="false" aria-controls="collapse2">
<h4 class="mbr-fonts-style display-5">
<span class="sign mbr-iconfont mbri-arrow-down inactive"></span> The Company</h4>
</a>
</div>
<div id="collapse2_31" class="panel-collapse noScroll collapse" role="tabpanel" aria-labelledby="headingTwo">
<div class="panel-body p-4">
<p class="mbr-fonts-style panel-text display-7">Our client is one of the most talked about tech startups in London
<br>
<br>They have provided local retailers with a logistics-as-a-service solution, enabling retailers to offer same day (or future date) deliveries and returns in 1-hour timeslots (chosen by the shopper). Their technology takes the pain out of delivery for retailers by connecting them with local, crowdsourced, freelancers, providing 100% visibility over deliveries (live tracking).</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header" role="tab" id="headingThree">
<a role="button" class="collapsed panel-title text-black" data-toggle="collapse" data-parent="#accordion" data-core="" href="#collapse3_31" aria-expanded="true" aria-controls="collapse3">
<h4 class="mbr-fonts-style display-5">
<span class="sign mbr-iconfont mbri-arrow-down inactive"></span>Requirements</h4>
</a>
</div>
<div id="collapse3_31" class="panel-collapse noScroll collapse" role="tabpanel" aria-labelledby="headingThree">
<div class="panel-body p-4">
<p class="mbr-fonts-style panel-text display-7">The ideal candidate is a strong B2B sales executive with a proven track record of revenue generation in a software sales environment. <br>
<br>2+ years of relevant B2B sales experience <br>
<br>Previous high volume cold-calling experience preferred, ideally in B2B sales environment <br>
<br>Advanced user of Salesforce <br>
<br>Experience with mass email campaigns <br>
<br>Must be positive, self-motivated individual with a desire to learn <br>
<br>Excellent written skills and highly articulate <br>
<br>Ability to multi-task, prioritize, and manage time effectively <br>
<br>Professional, determined, and results oriented <br></p>
</div>
</div>
</div>
<div class="card">
<div class="card-header" role="tab" id="headingThree">
<a role="button" class="collapsed panel-title text-black" data-toggle="collapse" data-parent="#accordion" data-core="" href="#collapse4_31" aria-expanded="false" aria-controls="collapse4">
<h4 class="mbr-fonts-style display-5">
<span class="sign mbr-iconfont mbri-arrow-down inactive"></span> Benefits to you</h4>
</a>
</div>
<div id="collapse4_31" class="panel-collapse noScroll collapse" role="tabpanel" aria-labelledby="headingThree">
<div class="panel-body p-4">
<p class="mbr-fonts-style panel-text display-7">Very attractive compensation package
<br>
<br>Become one of the early employees of a fast-growing, exciting startup disrupting the logistics landscape</p>
</div>
</div>
</div>
</div>
</div>
<div class="mbr-figure" style="width: 89%;">
<img src="assets/images/mbr-7-1620x1080.jpg" alt="Mobirise" title="" media-simple="true">
</div>
</div>
</div>
</section>
<section class="mbr-section form1 cid-qyYE9Weq4s" id="form1-23" data-rv-view="2367">
<div class="container">
<div class="row justify-content-center">
<div class="title col-12 col-lg-8">
<h2 class="mbr-section-title align-center pb-3 mbr-fonts-style display-2"><strong>
Apply Below!</strong></h2>
<h3 class="mbr-section-subtitle align-center mbr-light pb-3 mbr-fonts-style display-5">
Send over your contact details and one of our consultants will be in touch to discuss further. </h3>
</div>
</div>
</div>
<div class="container">
<div class="row justify-content-center">
<div class="media-container-column col-lg-8" data-form-type="formoid">
<div data-form-alert="" hidden="">Thanks for filling out the form. One of our consultants will be in touch to chat further. </div>
<form class="mbr-form" action="https://mobirise.com/" method="post" data-form-title="Mobirise Form"><input type="hidden" data-form-email="true" value="Dex8BwyH4QUgfUXWlxmjrgTpKb7hunl+5/Sg2X/LG2wbDQDOMd3dkYfOkM/T7YLyXwN8/QSmDhD8/aA2Z2UH9CpEUQ/VnkCrnD0zLFYCMd1w57RMPDyHn1P5COZKxeNm">
<div class="row row-sm-offset">
<div class="col-md-4 multi-horizontal" data-for="name">
<div class="form-group">
<label class="form-control-label mbr-fonts-style display-7" for="name-form1-23">Name</label>
<input type="text" class="form-control" name="name" data-form-field="Name" required="" id="name-form1-23">
</div>
</div>
<div class="col-md-4 multi-horizontal" data-for="email">
<div class="form-group">
<label class="form-control-label mbr-fonts-style display-7" for="email-form1-23">Email</label>
<input type="email" class="form-control" name="email" data-form-field="Email" required="" id="email-form1-23">
</div>
</div>
<div class="col-md-4 multi-horizontal" data-for="phone">
<div class="form-group">
<label class="form-control-label mbr-fonts-style display-7" for="phone-form1-23">Phone</label>
<input type="tel" class="form-control" name="phone" data-form-field="Phone" id="phone-form1-23">
</div>
</div>
</div>
<span class="input-group-btn"><button href="" type="submit" class="btn btn-primary btn-form display-4">Apply Now</button></span>
</form>
</div>
</div>
</div>
</section>
<section class="mbr-section content5 cid-qyYEeKb4x2 mbr-parallax-background" id="content5-25" data-rv-view="2370">
<div class="container">
<div class="media-container-row">
<div class="title col-12 col-md-8">
</div>
</div>
</div>
</section>
<section class="toggle2 cid-qyYLMEVGXs" id="toggle2-26" data-rv-view="2373">
<div class="container">
<div class="media-container-row">
<div class="toggle-content">
<h2 class="mbr-section-title pb-3 align-left mbr-fonts-style display-2"><strong>
Sales & Leasing Consultant - </strong>Cheltenham, UK<br></h2>
<div id="bootstrap-toggle" class="toggle-panel accordionStyles tab-content pt-5 mt-2">
<div class="card">
<div class="card-header" role="tab" id="headingOne">
<a role="button" class="collapsed panel-title text-black" data-toggle="collapse" data-parent="#accordion" data-core="" href="#collapse1_34" aria-expanded="false" aria-controls="collapse1">
<h4 class="mbr-fonts-style display-5">
<span class="sign mbr-iconfont mbri-arrow-down inactive"></span> Job Description</h4>
</a>
</div>
<div id="collapse1_34" class="panel-collapse noScroll collapse" role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body p-4">
<p class="mbr-fonts-style panel-text display-7">Our cheltenham based client are looking for determined, dynamic and financially driven property sales and leasing individuals with a passion for working hard to join our winning team time and enjoy the lifestyle their company has to offer.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header" role="tab" id="headingTwo">
<a role="button" class="collapsed panel-title text-black" data-toggle="collapse" data-parent="#accordion" data-core="" href="#collapse2_34" aria-expanded="false" aria-controls="collapse2">
<h4 class="mbr-fonts-style display-5">
<span class="sign mbr-iconfont mbri-arrow-down inactive"></span> The Company</h4>
</a>
</div>
<div id="collapse2_34" class="panel-collapse noScroll collapse" role="tabpanel" aria-labelledby="headingTwo">
<div class="panel-body p-4">
<p class="mbr-fonts-style panel-text display-7">The company is a British owned and British run establishment. With the three founders being lifelong friends, they have a family like atmosphere with great work ethics and we believe it is paramount to create the best working environment possible, in addition to rewarding individuals for their contribution to the company.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header" role="tab" id="headingThree">
<a role="button" class="collapsed panel-title text-black" data-toggle="collapse" data-parent="#accordion" data-core="" href="#collapse3_34" aria-expanded="true" aria-controls="collapse3">
<h4 class="mbr-fonts-style display-5">
<span class="sign mbr-iconfont mbri-arrow-down inactive"></span>The Day to Day</h4>
</a>
</div>
<div id="collapse3_34" class="panel-collapse noScroll collapse" role="tabpanel" aria-labelledby="headingThree">
<div class="panel-body p-4">
<p class="mbr-fonts-style panel-text display-7">Main Aims:
<br>
<br> To be the first point of contact for all enquiries, demonstrating a knowledge of the current property market and an ability to match applicant needs to suitable properties, both on and off market.
<br> To proactively identify new leads to generate new business for the branch as well as effectively managing the sales cycle from open to close.
<br>
<br>Key Responsibilities:
<br>
<br> Generate new instructions through outbound cold and warming calling.
<br> Matching clients to suitable properties, arranging and conducting viewings.
<br> Negotiating offers between both buyers and landlords
<br> Conduct market appraisals and valuations with the homeowner.
<br> Photographing and preparing properties for advertising</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header" role="tab" id="headingThree">
<a role="button" class="collapsed panel-title text-black" data-toggle="collapse" data-parent="#accordion" data-core="" href="#collapse4_34" aria-expanded="false" aria-controls="collapse4">
<h4 class="mbr-fonts-style display-5">
<span class="sign mbr-iconfont mbri-arrow-down inactive"></span> Benefits to you</h4>
</a>
</div>
<div id="collapse4_34" class="panel-collapse noScroll collapse" role="tabpanel" aria-labelledby="headingThree">
<div class="panel-body p-4">
<p class="mbr-fonts-style panel-text display-7">OTE earnings of <strong>£70,000 to £180,000</strong> per annum plus a range of benefits and incentives. Commission is uncapped with current top consultants earning in excess of <strong>£200,000</strong> per annum.</p>
</div>
</div>
</div>
</div>
</div>
<div class="mbr-figure" style="width: 89%;">
<img src="assets/images/mbr-1613x1080.jpg" alt="Mobirise" title="" media-simple="true">
</div>
</div>
</div>
</section>
<section class="mbr-section form1 cid-qyYLNBW2DR" id="form1-27" data-rv-view="2376">
<div class="container">
<div class="row justify-content-center">
<div class="title col-12 col-lg-8">
<h2 class="mbr-section-title align-center pb-3 mbr-fonts-style display-2"><strong>
Apply Below!</strong></h2>
<h3 class="mbr-section-subtitle align-center mbr-light pb-3 mbr-fonts-style display-5">
Send over your contact details and one of our consultants will be in touch to discuss further. </h3>
</div>
</div>
</div>
<div class="container">
<div class="row justify-content-center">
<div class="media-container-column col-lg-8" data-form-type="formoid">
<div data-form-alert="" hidden="">Thanks for filling out the form. One of our consultants will be in touch to chat further. </div>
<form class="mbr-form" action="https://mobirise.com/" method="post" data-form-title="Mobirise Form"><input type="hidden" data-form-email="true" value="qkTWNbQP3GB5cjrHuvms8SH8ySQRFnH5b/Z4MXdYaMSQuTrYS1ruBV/E/SH12dYdG3yIg0XOGUr85LUCf7f8zE1yYHYBFNdYQxYg3uNv/fSyKelP3uNDeou2jEUWx7Y0">
<div class="row row-sm-offset">
<div class="col-md-4 multi-horizontal" data-for="name">
<div class="form-group">
<label class="form-control-label mbr-fonts-style display-7" for="name-form1-27">Name</label>
<input type="text" class="form-control" name="name" data-form-field="Name" required="" id="name-form1-27">
</div>
</div>
<div class="col-md-4 multi-horizontal" data-for="email">
<div class="form-group">
<label class="form-control-label mbr-fonts-style display-7" for="email-form1-27">Email</label>
<input type="email" class="form-control" name="email" data-form-field="Email" required="" id="email-form1-27">
</div>
</div>
<div class="col-md-4 multi-horizontal" data-for="phone">
<div class="form-group">
<label class="form-control-label mbr-fonts-style display-7" for="phone-form1-27">Phone</label>
<input type="tel" class="form-control" name="phone" data-form-field="Phone" id="phone-form1-27">
</div>
</div>
</div>
<span class="input-group-btn"><button href="" type="submit" class="btn btn-primary btn-form display-4">Apply Now</button></span>
</form>
</div>
</div>
</div>
</section>
<section class="mbr-section content5 cid-qyYLOqwTUc mbr-parallax-background" id="content5-28" data-rv-view="2379">
<div class="container">
<div class="media-container-row">
<div class="title col-12 col-md-8">
</div>
</div>
</div>
</section>
<section class="toggle2 cid-qyYNCAcogK" id="toggle2-29" data-rv-view="2382">
<div class="container">
<div class="media-container-row">
<div class="toggle-content">
<h2 class="mbr-section-title pb-3 align-left mbr-fonts-style display-2"><strong>
Graduate Paralegal</strong><br><strong>- </strong>Bristol BS1</h2>
<div id="bootstrap-toggle" class="toggle-panel accordionStyles tab-content pt-5 mt-2">
<div class="card">
<div class="card-header" role="tab" id="headingOne">
<a role="button" class="collapsed panel-title text-black" data-toggle="collapse" data-parent="#accordion" data-core="" href="#collapse1_37" aria-expanded="false" aria-controls="collapse1">
<h4 class="mbr-fonts-style display-5">
<span class="sign mbr-iconfont mbri-arrow-down inactive"></span> Job Description</h4>
</a>
</div>
<div id="collapse1_37" class="panel-collapse noScroll collapse" role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body p-4">
<p class="mbr-fonts-style panel-text display-7">Law graduate Paralegal - Bristol - Global media brand
<br>
<br>This role is with a global media brand and is reporting directly to the Vice President, Head of Legal UK/EMEA.
<br>
<br>This position is responsible for supporting and advising various business units; facilitating, structuring, negotiating and drafting standard agreements across the business including NDA's, affiliate sales (short form), production, talent, facilities, agency and contractor and marketing; monitoring and assessing aspects of corporate compliance, due diligence and investigations; and, support solicitors on larger transactions and ad hoc projects.
<br></p>
</div>
</div>
</div>
<div class="card">
<div class="card-header" role="tab" id="headingTwo">
<a role="button" class="collapsed panel-title text-black" data-toggle="collapse" data-parent="#accordion" data-core="" href="#collapse2_37" aria-expanded="false" aria-controls="collapse2">
<h4 class="mbr-fonts-style display-5">
<span class="sign mbr-iconfont mbri-arrow-down inactive"></span> The Day to Day</h4>
</a>
</div>
<div id="collapse2_37" class="panel-collapse noScroll collapse" role="tabpanel" aria-labelledby="headingTwo">
<div class="panel-body p-4">
<p class="mbr-fonts-style panel-text display-7"> Support the day-to-day legal affairs of in-house solicitors, assigned business units and territories.
<br>
<br> Managing the drafting of standard agreements in accordance to the instructions of in-house solicitors and respective business units.
<br>
<br> Monitor legal compliance, practices and standards across allocated business groups.
<br>
<br> Support VP Legal and in-house solicitors in large transactions, projects and litigation.
<br>
<br> Develop relationships within the business and proactively represent the legal department in all transactions.
<br>
<br> Liaise with all assigned business units on a regular basis.
<br>
<br> Assist and collaborate with other members of the legal team.
<br>
<br><strong>Experience and Professional Qualifications Required</strong> <br><br> A law degree (minimum 2:1) or graduate diploma in law.
<br>
<br> Legal Practice Course preferred but not a requirement.
<br>
<br> In house experience with an international broadcaster is preferred but not a requirement.
<br>
<br> Proven experience in drafting and interpreting commercial agreements. <br></p>
</div>
</div>
</div>
<div class="card">
<div class="card-header" role="tab" id="headingThree">
<a role="button" class="collapsed panel-title text-black" data-toggle="collapse" data-parent="#accordion" data-core="" href="#collapse3_37" aria-expanded="true" aria-controls="collapse3">
<h4 class="mbr-fonts-style display-5">
<span class="sign mbr-iconfont mbri-arrow-down inactive"></span>Benefits</h4>
</a>
</div>
<div id="collapse3_37" class="panel-collapse noScroll collapse" role="tabpanel" aria-labelledby="headingThree">
<div class="panel-body p-4">
<p class="mbr-fonts-style panel-text display-7">This role is with a global media brand and is reporting directly to the Vice President, Head of Legal UK/EMEA.
<br>
<br>£30K</p>
</div>
</div>
</div>
</div>
</div>
<div class="mbr-figure" style="width: 89%;">
<img src="assets/images/mbr-9-1620x1080.jpg" alt="Mobirise" title="" media-simple="true">
</div>
</div>
</div>
</section>
<section class="mbr-section form1 cid-qyYNDt0FAc" id="form1-2a" data-rv-view="2385">
<div class="container">
<div class="row justify-content-center">
<div class="title col-12 col-lg-8">
<h2 class="mbr-section-title align-center pb-3 mbr-fonts-style display-2"><strong>
Apply Below!</strong></h2>
<h3 class="mbr-section-subtitle align-center mbr-light pb-3 mbr-fonts-style display-5">
Send over your contact details and one of our consultants will be in touch to discuss further. </h3>
</div>
</div>
</div>
<div class="container">
<div class="row justify-content-center">
<div class="media-container-column col-lg-8" data-form-type="formoid">
<div data-form-alert="" hidden="">Thanks for filling out the form. One of our consultants will be in touch to chat further. </div>
<form class="mbr-form" action="https://mobirise.com/" method="post" data-form-title="Mobirise Form"><input type="hidden" data-form-email="true" value="MHWGTAjJIO65eILooYvLsDfX3xKV2clltuBJ9PCq7atqhR7OmCP5Giy4BcA3iXie0WxtnAR4nuOtUkSs6EcQ3lzXj/KvJyIPNXSNAdW5/uDxR7iKkAkeJDxGloshP8iE">
<div class="row row-sm-offset">
<div class="col-md-4 multi-horizontal" data-for="name">
<div class="form-group">
<label class="form-control-label mbr-fonts-style display-7" for="name-form1-2a">Name</label>
<input type="text" class="form-control" name="name" data-form-field="Name" required="" id="name-form1-2a">
</div>
</div>
<div class="col-md-4 multi-horizontal" data-for="email">
<div class="form-group">
<label class="form-control-label mbr-fonts-style display-7" for="email-form1-2a">Email</label>
<input type="email" class="form-control" name="email" data-form-field="Email" required="" id="email-form1-2a">
</div>
</div>
<div class="col-md-4 multi-horizontal" data-for="phone">
<div class="form-group">
<label class="form-control-label mbr-fonts-style display-7" for="phone-form1-2a">Phone</label>
<input type="tel" class="form-control" name="phone" data-form-field="Phone" id="phone-form1-2a">
</div>
</div>
</div>
<span class="input-group-btn"><button href="" type="submit" class="btn btn-primary btn-form display-4">Apply Now</button></span>
</form>
</div>
</div>
</div>
</section>
<section class="mbr-section content5 cid-qyYNEe8xKY mbr-parallax-background" id="content5-2b" data-rv-view="2388">
<div class="container">
<div class="media-container-row">
<div class="title col-12 col-md-8">
</div>
</div>