-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1334 lines (1300 loc) · 66.3 KB
/
index.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="zxx" class="no-js">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="keywords" content="Branding Stately Remodeling Renovation" />
<meta name="description" content="Stately is a Unique Brand Marketing Company" />
<meta name="author" content="Stately" />
<title>Stately Group</title>
<!-- Site title here -->
<link rel='stylesheet' href='css/bootstrap.4.1.1.min.css' media='all' />
<!-- bootstrap css-->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:500,700,800%7CWork+Sans:400,500,700"
media="all">
<!-- Font Family added here -->
<link rel='stylesheet' href='css/style.css' media='all' />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css" media="all">
<!-- main css-->
<link rel="icon" href="logo.png" type="image/png">
<!--Favicon icon-->
<!---Slick (Carousel)-->
<link rel="stylesheet" type="text/css" href="slick/slick.css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<!--<script async src="https://www.googletagmanager.com/gtag/js?id=UA-123021824-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-123021824-1');
</script>-->
<script>
var visibleApproachItems = ['#Discuss'];
var ShowProcess = function(idToShow){
for(i = 0; i < visibleApproachItems.length; i++){
$(visibleApproachItems[i]).addClass("hidden");
}
idToShow = '#' + idToShow;
$(idToShow).removeClass("hidden");
visibleApproachItems.push(idToShow);
}
</script>
</head>
<body class="image-template">
<div class="preloader">
<div class="loader-slice"></div>
</div>
<!-- Preloader -->
<!-- main top header start -->
<header id="masthead" class="site-header align-items-center d-flex">
<div class="container">
<!-- row start -->
<div class="row align-items-center">
<div class="col h-100">
<!--column start-->
<div class="site-logo">
<!-- main-log -->
<a href="index.html" class="custom-logo-link" rel="home">
<img class="light-logo" src="images/stately_logo.png" alt="Stately Logo" style="margin-left:-40px;" /><!-- light-logo-->
<span class="custom-logo dark-logo">STATELY</span><!-- Dark-logo-->
<!--<img src="images/logo-dark.png" alt="Analogue" class="custom-logo dark-logo"/>-->
<!-- Logo -->
<!--Stately-->
</a>
</div>
<!-- main-log-end -->
</div>
<!--column end-->
<!--<div class="col h-100">
<!--column start-->
<!--<a href="#contact" class="float-right animate_btn redirect-btn dark-btn">CONTACT US</a>
</div>-->
<!--column-end -->
</div>
<!-- row end -->
</div>
</header>
<!-- main top header End -->
<section id="banner" class="homepage-hero">
<main class="s-home s-home--particles">
<div id="particles-js" class="home-particles"></div>
<div class="gradient-overlay"></div>
<div class="home-content">
<div class="banner-wrapper ">
<div class="container">
<!--column start-->
<div class="row ">
<!-- row start -->
<div class="col-lg-12">
<div class="banner-inner">
<div class="banner-text burger">
<h1 class="text-rotator">We create </h1>
<h1 class="text-rotator"><span class="rotate">Brand Identities., Purpose., Strategies. ,Exhibition
Stands., Restaurants., Residential Spaces., Retail Spaces.</span></h1>
<!--<p>We create and build strong brands through design driven, human-centric projects.</p>-->
<a href="#first-section" class="circle-icon bottom redirect-btn">
<img width="50" src="images/arrow-down.svg" alt="arrow-down"><!-- Arrow down -->
</a>
</div>
</div>
</main>
</div>
<!-- banner text here -->
</div>
<!--column-end -->
</div>
<!-- /row -->
</div>
<!-- /container -->
</div>
<!-- /banner-wrapper -->
</section>
<!-- /banner -->
<nav id="fixed-nav" class="site-menu ">
<div class="container">
<div class="row w-100">
<!-- row start -->
<div class="col-md-12">
<!-- column start-->
<a href="javascript:;" class="site-menu-trigger"><span></span></a><!-- Responsive Toggle -->
<div id="primary-menu" class="menu">
<ul class="nav menu ">
<!-- menu list -->
<li class=""><a class="nav-link" href="#services">Services</a></li>
<li class=""><a class="nav-link" href="#portfolio">Portfolio</a></li>
<li class=""><a class="nav-link" href="#about">About</a></li>
<li class=""><a class="nav-link" href="#approach">Approach</a></li>
<li class=""><a class="nav-link" href="#clients">Clients</a></li>
<!--<li class=""><a class="nav-link" href="#stories">Blog</a></li>-->
<li class=""><a class="nav-link" href="#contact">Contact Us</a></li>
</ul>
</div>
</div>
<!-- /col -->
</div>
<!-- /row -->
</div>
<!-- /container -->
</nav>
<!-- /site-menu -->
<main class='ps-main-content' id='first-section'>
<!-- main start -->
<section id="services" class="ps-section burger border-bottom">
<div class="container">
<div class="row">
<!-- row start -->
<div class="col-lg-4">
<div class="page-head mb-5">
<span class="page-caption">Services</span>
<h2 class="mt-3">We create modern user experience</h2>
<p>Stately was founded on the premise that having a purpose gives you power. In a world of possibility, it is
not what you say or sell, but what you stand for and at Stately,
we advise and guide brand development, strategy and continuation through a purpose-driven mindset.</p>
</div>
</div>
<!--/col-->
<div class="col-lg-8 service-list">
<div class="row">
<!-- row start -->
<div class="col-sm-6 service-item" data-showing="false" id="service-ux">
<div class="card">
<div class="card-content">
<div class="row">
<div class="card-icon col-md-4">
<img src="images/services/WuX_Web UX.png" class="img-fluid" alt="service"><!-- service-icon -->
</div>
<h3 class="title mt-3 col-md-8" style="margin-top: -60px!important; margin-left: 110px;">Web User Experience </h3>
<!-- card-heading -->
<div class="post ">
<p>We craft the experience and ensure that the project is brand driven and human-centric.</p>
</div>
</div>
</div>
</div>
<!--/card-->
</div>
<!--/col-->
<div class="col-sm-6 service-item " data-showing="false" id="service-brand">
<div class="card">
<div class="card-content">
<div class="row">
<div class="card-icon col-md-4">
<img src="images/services/Brand Identity.png" class="img-fluid" alt="service"><!-- service-icon -->
</div>
<h3 class="title mt-3 col-md-8" style="margin-top: -60px!important; margin-left: 110px;"> Brand Identity </h3>
<!-- card-heading -->
<div class="post ">
<p>We find what motivates your clients at their deepest emotional level and create brand
stories that inspire, motivate, educate and entertain.</p>
</div>
</div>
</div>
</div>
<!--/card-->
</div>
<!--/col-->
<div class="col-sm-6 service-item " data-showing="false" id="service-exhibition">
<div class="card">
<div class="card-content">
<div class="row">
<div class="card-icon col-md-4">
<img src="images/services/Exhibition Stands.png" class="img-fluid" alt="service"><!-- service-icon -->
</div>
<h3 class="title mt-3 col-md-8" style="margin-top: -60px!important; margin-left: 110px;"> Exhibition </h3>
<!-- card-heading -->
<div class="post ">
<p>We create a cohesive message between your brand message and this essential touchpoint, to
increase brand awareness and perception.</p>
</div>
</div>
</div>
</div>
<!--/card-->
</div>
<!--/col-->
<div class="col-sm-6 service-item " data-showing="false" id="service-retail">
<div class="card">
<div class="card-content">
<div class="row">
<div class="card-icon col-md-4">
<img src="images/services/Copywriting.png" class="img-fluid" alt="service"><!-- service-icon -->
</div>
<h3 class="title mt-3 col-md-8" style="margin-top: -60px!important; margin-left: 110px;"> Copywriting </h3>
<!-- card-heading -->
<div class="post ">
<p>Where purpose and personality come together, we create a verbal identity that conveys the
essence of who you are and who you aspire to be.</p>
</div>
</div>
</div>
</div>
<!--/card-->
</div>
<!--/col-->
<div class="col-sm-6 service-item " data-showing="false" id="service-restaurants">
<div class="card">
<div class="card-content">
<div class="row">
<div class="card-icon col-md-4">
<img src="images/services/Videography.png" class="img-fluid" alt="service"><!-- service-icon -->
</div>
<h3 class="title mt-3 col-md-8" style="margin-top: -60px!important; margin-left: 110px;"> Videography </h3>
<!-- card-heading -->
<div class="post ">
<p>We use human-centric footage to capture the attention of your audience and steer their
perception.</p>
</div>
</div>
</div>
</div>
<!--/card-->
</div>
<!--/col-->
<div class="col-sm-6 service-item " data-showing="false" id="service-residential">
<div class="card">
<div class="card-content">
<div class="row">
<div class="card-icon col-md-4">
<img src="images/services/Hospitality_UI_UX_Design_copy_10.png" class="img-fluid" alt="service"><!-- service-icon -->
</div>
<h3 class="title mt-3 col-md-8" style="margin-top: -60px!important; margin-left: 110px;"> Hospitality Design </h3>
<!-- card-heading -->
<div class="post ">
<p>Our designers merge form and function to create a memorable and sensory living, shopping or dining experience.</p>
</div>
</div>
</div>
</div>
<!--/card-->
</div>
<!--/col-->
</div>
<!--/row-->
<!-- <div id="service-info" class="row" style="display: none; cursor: pointer;" data-showing="false">
<div id="service-info-inner">
<div class="row">
<div class="col-md-11" id="service-info-content">
<div class="row">
<div class="col-md-2"></div>
<div id="service-info-post" class="col-md-10">
</div>
</div>
</div>
</div>
</div>
</div> -->
<!--/row-->
</div>
<!--/col-8-->
</div>
<!--/row-->
</div>
<!--/container-->
</section>
<!-- /services -->
<!-- Insert portfolio here -->
<section id="portfolio" class="ps-section burger border-bottom">
<div class="container">
<div class="row flex-item-stretch">
<!-- row start -->
<div class="col-lg-4">
<div class="page-head mb-5">
<span class="page-caption">Portfolio</span>
<h2 class="mt-3">We make things you'll love</h2>
<p>We create and build strong brands through design driven, human-centric projects. Our team is made out
of interior architects, illustrators,
content writers, strategists, developers and dreamers here to bring your brand to life.</p>
<span class="portfolio_tabs_toogle d-md-none" data-active="all"></span>
<ul class="portfolio-tabs clearfix">
<li class="filter active" data-filter="*"> All </li>
<li class="filter" data-filter=".exhs">Exhibition Stands</li>
<!--<li class="filter" data-filter=".ux-ui-design">UX/UI Design</li>-->
<!--<li class="filter" data-filter=".pubh">Public Hospitality</li>-->
<li class="filter" data-filter=".bi">Brand Identity</li>
<li class="filter" data-filter=".web">Web Development</li>
</ul>
</div>
</div>
<!--/col-4-->
<div class="col-lg-8">
<div class="portfolio-list align-items-center d-flex flex-wrap">
<div class="portfolio-item item col-md-4 col-sm-6 exhs ">
<div class="portfolio-inner">
<div class="portfolio_img" style="background-image: url('images/Portfolio/Thumbs/Project 1 Thumb.png');"></div>
<div class="portfolio-content d-flex justify-content-center align-items-center">
<span class="port-title">Main Hospitality</span>
<span class="port-project-title">Puma Energy ‘Main Hospitality Stand ’ – Kyalami Motoring Show 2018</span>
<a href="#portfolioModal" class="link-item port-link" data-toggle="modal"></a>
<img src="images/Portfolio/Thumbs/Project 1 Thumb.png" class="port_logo d-none" alt="Starbucks">
<div class="portfolio_images d-none">
<img src="images/Portfolio/Project_1_Puma_Energy_1.jpg">
<img src="images/Portfolio/Project_1_Puma_Energy_2.jpg">
<img src="images/Portfolio/Project_1_Puma_Energy_3.jpg">
<img src="images/Portfolio/Project_1_Puma_Energy_4.jpg">
</div>
</div>
<div class="d-none port_tag">Exhibition Stands</div><!-- portfolio tag -->
<div class="d-none port_content">
<p>Puma Energy is a newer entry to the South African market. Through this stand they wanted to
increase their recall and recognition with a long-term aim of becoming top-of-mind when thinking
about fuel services. </p>
<ul>
<li>Custom Stand</li>
<li>6x22 </li>
<li>Realistic look and feel of a petrol station</li>
<li>Aimed at recall and recognition for the brand</li>
<li>Easy walkthrough and touch points with the public</li>
<li>Seating and shop inside - ‘OK Express’</li>
</ul>
</div>
</div>
</div>
<!--/portfolio-item-->
<div class="portfolio-item item col-md-4 col-sm-6 exhs ">
<div class="portfolio-inner">
<div class="portfolio_img" style="background-image: url('images/Portfolio/Thumbs/Project 2 Thumb.png');"></div>
<div class="portfolio-content d-flex justify-content-center align-items-center">
<span class="port-title">Public Hospitality</span>
<span class="port-project-title">Puma Energy ‘Public Hospitality Stand’ – Kyalami Motoring Show
2018</span>
<a href="#portfolioModal" class="link-item port-link" data-toggle="modal"></a>
<img src="images/Portfolio/Thumbs/Project 2 Thumb.png" class="port_logo d-none" alt="Starbucks">
<div class="portfolio_images d-none">
<img src="images/Portfolio/Project-2.jpg">
<img src="images/Portfolio/Project 2 Puma Energy.jpg">
<img src="images/Portfolio/Project_2_Puma_Energy_1.jpg">
</div>
</div>
<div class="d-none port_tag">Exhibition Stands </div><!-- portfolio tag -->
<div class="d-none port_content">
<p>Puma Energy – with the same aim in mind as the main hospitality stand yet with this stand they
wanted to attract both families as well as clients. The track was there to attract kids and
families whilst the truck part was used for VIP business clients who were aiming at finding
strategic partnerships. </p>
<ul>
<li>Custom Stand & rebranded rig</li>
<li>Realistic track feel - Kyalami Motoring Show</li>
<li>VIP Area</li>
<li>Unique User Experience</li>
<li>Family orientated</li>
<li>Casual seating deck with a view of the slick-track</li>
</ul>
</div>
</div>
</div>
<!--/portfolio-item-->
<div class="portfolio-item item col-md-4 col-sm-6 exhs ">
<div class="portfolio-inner">
<div class="portfolio_img" style="background-image: url('images/Portfolio/Thumbs/Project 3 Thumb.png');"></div>
<div class="portfolio-content d-flex justify-content-center align-items-center">
<span class="port-title">Game On</span>
<span class="port-project-title">Game On EduTech</span>
<a href="#portfolioModal" class="link-item port-link" data-toggle="modal"></a>
<img src="images/Portfolio/Thumbs/Project 3 Thumb.png" class="port_logo d-none" alt="Starbucks">
<div class="portfolio_images d-none">
<img src="images/Portfolio/Project-1.jpg">
<img src="images/Portfolio/Project_3_Acer_Game_On.jpg">
</div>
</div>
<div class="d-none port_tag">Exhibition Stands</div><!-- portfolio tag -->
<div class="d-none port_content">
<p>Acer & Microsoft showcased their educational products on the EduTech 2018 exhibition where all
the big and small names were present doing their part to increase interest with education
technology. This was done by using the game Minecraft to entice their audience. </p>
<ul>
<li>Custom Stand</li>
<li>6x4</li>
<li>Virtual Reality gaming space</li>
<li>Expo orientated - EduTech</li>
<li>Branding – immediate brand recognition with purpose ‘Acer for Education’</li>
<li>Multiple contact points to capture the public</li>
<li>Computers available for demonstrations</li>
</ul>
</div>
</div>
</div>
<!--/portfolio-item-->
<div class="portfolio-item item col-md-4 col-sm-6 bi ">
<div class="portfolio-inner">
<div class="portfolio_img" style="background-image: url('images/Portfolio/Thumbs/Project 4 Thumb.png');"></div>
<div class="portfolio-content d-flex justify-content-center align-items-center">
<span class="port-title">TBD </span>
<span class="port-project-title">The Blonde Dude – Identity Development</span>
<a href="#portfolioModal" class="link-item port-link" data-toggle="modal"></a>
<img src="images/Portfolio/Thumbs/Project 4 Thumb.png" class="port_logo d-none" alt="Starbucks">
<div class="portfolio_images d-none">
<img src="images/Portfolio/Project_4_The_Blonde_Dude.jpg">
<img src="images/Portfolio/Project_4_The_Blonde_Dude_1.jpg">
<img src="images/Portfolio/Project_4_The_Blonde_Dude_2.jpg">
<img src="images/Portfolio/Project_4_The_Blonde_Dude_3.jpg">
</div>
</div>
<div class="d-none port_tag">Brand Identity</div><!-- portfolio tag -->
<div class="d-none port_content">
<p>The Blonde Dude identity showcases a diverse brand capable of capturing anything on film. This
videographer’s brand is directly derived from his own personality, making it that much more
memorable. </p>
<ul>
<li>Rectangular logo allowing for simple location placement</li>
<li>Uni-tone colouring for light/dark/colourful images or footage with a distinct gold-yellow hue</li>
<li>Minimalistic and font orientated</li>
<li>Videography includes sensory experience of sight and sound, complementing the brand
through-and-through</li>
</ul>
</div>
</div>
</div>
<!--/portfolio-item-->
<div class="portfolio-item item col-md-4 col-sm-6 bi web ">
<div class="portfolio-inner">
<div class="portfolio_img" style="background-image: url('images/Portfolio/Project 5 Thumb.png');"></div>
<div class="portfolio-content d-flex justify-content-center align-items-center">
<span class="port-title">ITWF</span>
<span class="port-project-title">IT Without Frontiers</span>
<a href="#portfolioModal" class="link-item port-link" data-toggle="modal"></a>
<img src="images/Portfolio/Thumbs/Project 5 Thumb.png" class="port_logo d-none" alt="Starbucks">
<div class="portfolio_images d-none">
<img src="images/Portfolio/Project_5_ITWF_1.png">
<img src="images/Portfolio/Project 5 ITWF.jpg">
<img src="images/Portfolio/ITWF.jpg">
<img src="images/Portfolio/ITWF 1.jpg">
<img src="images/Portfolio/ITWF 2.jpg">
</div>
</div>
<div class="d-none port_tag">Brand Identity | Web Development </div><!-- portfolio tag -->
<div class="d-none port_content">
<p>IT Without Frontiers is the thought platform for Belgium Campus ITVersity, South Africa’s
single-faculty University specialising solely in the ICT studies. They produce just over 8% of
the country’s ICT graduates yearly. The purpose is to start conversions at the top-level and
engage with interested stakeholders looking to sponsor students all whilst generating student
leads through subscriptions to the platform – targeting through generated content.</p>
<ul>
<li>Naming encouraging innovation across the globe but implementing solutions locally - Adopting
the ‘GloCol’ outlook</li>
<li>Clean and font based identity with animations for immediate recognition and recall</li>
<li>Minimalistic with a modern look and feel</li>
<li>Clear messaging and defined tone-of-voice</li>
</ul>
</div>
</div>
</div>
<!--/portfolio-item-->
<div class="portfolio-item item col-md-4 col-sm-6 exhs ">
<div class="portfolio-inner">
<div class="portfolio_img" style="background-image: url('images/Portfolio/Project 6 Thumb.png');"></div>
<div class="portfolio-content d-flex justify-content-center align-items-center">
<span class="port-title">Purco</span>
<span class="port-project-title">Acer for Education</span>
<a href="#portfolioModal" class="link-item port-link" data-toggle="modal"></a>
<img src="images/Portfolio/Project 6 Thumb.png" class="port_logo d-none" alt="Starbucks">
<div class="portfolio_images d-none">
<img src="images/Portfolio/Project 6 Acer.jpg">
<img src="images/Portfolio/Project_6_Acer_1.jpg">
<img src="images/Portfolio/Project_6_Acer_2.jpg">
<img src="images/Portfolio/Project_6_Acer_3.jpg">
</div>
</div>
<div class="d-none port_tag">Exhibition Stands</div><!-- portfolio tag -->
<div class="d-none port_content">
<p> Acer showcased their educational products in the 2018 Purco SA expo. They used an open custom
stand with various touch points, together with VR gaming to attract the public. This was done by
using the game Minecraft to entice their audience. </p>
<ul>
<li>Custom Stand</li>
<li>4x3</li>
<li>Virtual Reality gaming space</li>
<li>Expo orientated - EduTech</li>
<li>Branding – immediate brand recognition with purpose ‘Acer for Education’</li>
<li>Multiple contact points to capture the public</li>
<li>Computers available for demonstrations</li>
</ul>
</div>
</div>
</div>
<!--/portfolio-item-->
<div class="portfolio-item item col-md-4 col-sm-6 exhs ">
<div class="portfolio-inner">
<div class="portfolio_img" style="background-image: url('images/Portfolio/Thumbs/Project_7_Thumb_Ruvasa_2018_1.png');"></div>
<div class="portfolio-content d-flex justify-content-center align-items-center">
<span class="port-title">Ruvasa 2018</span>
<span class="port-project-title">Zoetis ‘Ruvasa 2018’</span>
<a href="#portfolioModal" class="link-item port-link" data-toggle="modal"></a>
<img src="images/Portfolio/Thumbs/Project_7_Thumb_Ruvasa_2018_1.png" class="port_logo d-none" alt="Starbucks">
<div class="portfolio_images d-none">
<img src="images/Portfolio/Project_7_Zoetis_1.png">
<img src="images/Portfolio/Project_7_Zoetis_2.png">
<img src="images/Portfolio/Project_7_Zoetis_Ruvasa_2018.png">
</div>
</div>
<div class="d-none port_tag">Exhibition Stands</div><!-- portfolio tag -->
<div class="d-none port_content">
<p>NAMPO is a yearly exhibition showcase for all things farming. Zoetis is a global animal health company dedicated
to supporting customers and their businesses in ever better ways. Building on 60 years of experience, they deliver
quality medicines and vaccines. Their excellence was showcased during the 2018 Ruvasa exhibition. </p>
<ul>
<li>Custom Stand, L Shape</li>
<li>9,3</li>
<li>Animal health orientated, as per brand</li>
<li>Multiple contact points to capture the public</li>
<li>Ipads available for data capture</li>
</ul>
</div>
</div>
</div>
<!--/portfolio-item-->
<div class="portfolio-item item col-md-4 col-sm-6 exhs ">
<div class="portfolio-inner">
<div class="portfolio_img" style="background-image: url('images/Portfolio/Thumbs/Project_8_Thumb_Ruvasa_2018.png');"></div>
<div class="portfolio-content d-flex justify-content-center align-items-center">
<span class="port-title">NAMPO 2018</span>
<span class="port-project-title">Zoetis 'NAMPO 2018'</span>
<a href="#portfolioModal" class="link-item port-link" data-toggle="modal"></a>
<img src="images/Portfolio/Thumbs/Project_8_Thumb_Ruvasa_2018.png" class="port_logo d-none" alt="Starbucks">
<div class="portfolio_images d-none">
<img src="images/Portfolio/Project_7_Zoetis_NAMPO_2018.png">
<img src="images/Portfolio/Project_7_Zoetis_NAMPO_2018_1.png">
<img src="images/Portfolio/Project_7_Zoetis_NAMPO_2018_2.png">
</div>
</div>
<div class="d-none port_tag">Exhibition Stands</div><!-- portfolio tag -->
<div class="d-none port_content">
<p>NAMPO is a yearly exhibition showcase for all things farming. This stand exhibits Zoetis at its greatest. They are
leading global animal health company dedicated to supporting customers and their businesses in ever better ways.
Building on 60 years of experience, they deliver quality medicines and vaccines. Their excellence was showcased
during the 2018 NAMPO Farming Expo.</p>
<ul>
<li>Custom Stand</li>
<li>14x4</li>
<li>Animal health orientated, as per brand</li>
<li>Multiple contact points to capture the public</li>
<li>Meeting area for formal discussions</li>
</ul>
</div>
</div>
</div>
<!--/portfolio-item-->
</div>
<!--/portfolio-list-->
</div>
<!--/col-8-->
</div>
<!-- /row -->
</div>
<!-- /container -->
<!-- Portfolio Modal HTML -->
<div class="modal port_modal" id="portfolioModal" role="dialog" data-type="portfolio">
<a href="javascript:;" class="dismiss-item1 modal_close_btn" data-dismiss="modal" aria-label="Close"></a>
<div class="row align-items-stretch port-popup slideshow flex-column flex-sm-row">
<!-- row start -->
<div class="col-lg-6 p-0">
<div class="d-flex f justify-content-stretch h-100">
<div class="content flex-column justify-content-center d-flex ">
<div class="w-100">
<img class="d-inline" src="images/no-image.png" id="port_modal_logo" alt="Starbucks">
<div class="btn-next-image btn btn-sm float-right d-none d-lg-inline" value="Next Image" onclick="RotatePortfolioCarousel();">
<a class="carousel-icon-button-portfolio bottom redirect-btn">
<img width="50" src="images/arrow-right.svg" alt="arrow-down"><!-- Arrow down -->
</a>
</div>
</div>
<h3 class="mt-3 text-capitalize">Starbucks</h3>
<small class="text-muted">UX/UI Design</small>
<div class="mt-3" id="port-content">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut
labore et dolore magna aliqua.</p>
<ul>
<li>Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi
ut aliquid ex ea commodi consequatur.</li>
<li>Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</li>
<li>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia
consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-lg-6 p-0 portfolio-carousel-container">
<div class="ml-3 portfolio-carousel"></div>
</div>
</div>
</div>
<!-- Portfolio Modal HTML END-->
</section>
<!-- /Protfolio-->
<!-- Don't forget menu item -->
<section id="about" class="ps-section burger border-bottom">
<div class="container">
<div class="row">
<!-- row start -->
<div class="col-lg-4">
<div class="page-head mb-5">
<span class="page-caption">About</span>
<h2 class="mt-3">We are Human-Centric and Small Business Savvy</h2>
<p>As a purpose-driven agency of young millennials, we endeavour to contribute to the economy by
developing our clients through long-term relationships, working collaboratively as we grow together. We
understand the challenges start-ups, SMEs and new businesses face and how to communicate, effectively,
their brand story to the “new economy”.</p>
</div>
</div>
<!--/col-4-->
<div class="col-lg-8 team-list">
<div class="row">
<!-- row start -->
<div class="col-lg-4 col-sm-4 mb5 our-team">
<div class="team-inner">
<!--<ul class="social">
<!-- team socials
<li><a href="javascript:;"><i class="fa fa-twitter"></i></a></li>
<li><a href="https://www.linkedin.com/in/carlaanneorr/"><i class="fa fa-linkedin"></i></a></li>
</ul>-->
<div class="team_img">
<img class="pull-image-up" src="images/team/Carla-1.JPG" alt="Carla Orr" /><!-- member image -->
</div>
<div class="team-content text-center">
<h3 class="title">Carla Orr</h3>
<span>Head Of Interior</span>
<!--<a href="#expert_modal" class="team_modal_link link-item" data-toggle="modal"></a>-->
<aside class="d-none">
<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia
consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>
</aside>
</div>
</div>
</div>
<!--/team item-->
<div class="col-lg-4 col-sm-4 mb5 our-team">
<div class="team-inner">
<!--<ul class="social">
<!-- team socials
<li><a href="javascript:;"><i class="fa fa-twitter"></i></a></li>
<li><a href="https://www.linkedin.com/in/lebotladi/"><i class="fa fa-linkedin"></i></a></li>
</ul>-->
<div class="team_img">
<img class="pull-image-up" src="images/team/Lebo-1.JPG" alt="Lebo Tladi" /><!-- member image -->
</div>
<div class="team-content text-center">
<h3 class="title">Lebo Tladi</h3>
<span>Head Of Graphic</span>
<!--<a href="#expert_modal" class="team_modal_link link-item" data-toggle="modal"></a>-->
<aside class="d-none">
<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia
consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>
</aside>
</div>
</div>
</div>
<!--/team item-->
<div class="col-lg-4 col-sm-4 mb5 our-team">
<div class="team-inner">
<!--<ul class="social">
<!-- team socials
<li><a href="javascript:;"><i class="fa fa-twitter"></i></a></li>
<li><a href="https://www.linkedin.com/in/michelrombouts/"><i class="fa fa-linkedin"></i></a></li>
</ul>-->
<div class="team_img">
<img class="pull-image-up" src="images/team/Michel-1.JPG" alt="Michel Rombouts" /><!-- member image -->
</div>
<div class="team-content text-center">
<h3 class="title">Michel Rombouts</h3>
<span>UI/UX & Brand Stategist</span>
<!--<a href="#expert_modal" class="team_modal_link link-item" data-toggle="modal">
<!-- <i class="fa fa-angle-double-right" aria-hidden="true"></i> -->
<!--</a>-->
<aside class="d-none">
<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia
consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>
</aside>
</div>
</div>
</div>
<!--/team item-->
<!-- <div class="col-lg-4 col-sm-4 mb5 our-team">
<div class="team-inner">
<ul class="social">
team socials
<li><a href="javascript:;"><i class="fa fa-twitter"></i></a></li>
<li><a href="https://www.linkedin.com/in/lisatiranti/"><i class="fa fa-linkedin"></i></a></li>
</ul>-->
<!-- <div class="team_img">
<img src="images/LisaTiranti.webp" alt="Lisa Tiranti" />member image -->
<!-- </div>
<div class="team-content text-center">
<h3 class="title">Lisa Tiranti</h3>
<span>Content Specialist</span>
<a href="#expert_modal" class="team_modal_link link-item" data-toggle="modal">
<i class="fa fa-angle-double-right" aria-hidden="true"></i> -->
<!--</a>-->
<!-- <aside class="d-none">
<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>
</aside>
</div> -->
<!-- </div>
</div> -->
<!--/team item-->
<div class="col-lg-4 col-sm-4 mb5 our-team">
<div class="team-inner">
<!--<ul class="social">
<!-- team socials
<li><a href="javascript:;"><i class="fa fa-twitter"></i></a></li>
<li><a href="javascript:;"><i class="fa fa-linkedin"></i></a></li>
</ul>-->
<div class="team_img">
<img class="pull-image-up" src="images/team/Darren-1.JPG" alt="Darren" /><!-- member image -->
</div>
<div class="team-content text-center">
<h3 class="title">Darren Ellis</h3>
<span>Videographer</span>
<!--<a href="#expert_modal" class="team_modal_link link-item" data-toggle="modal"></a>-->
<aside class="d-none">
<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia
consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>
</aside>
</div>
</div>
</div>
<!--/team item-->
<div class="col-lg-4 col-sm-4 mb5 our-team">
<div class="team-inner">
<!--<ul class="social">
<!-- team socials
<li><a href="javascript:;"><i class="fa fa-twitter"></i></a></li>
<li><a href="https://www.linkedin.com/in/russell-goodison-231a63159/"><i class="fa fa-linkedin"></i></a></li>
</ul>-->
<div class="team_img">
<img class="pull-image-up" src="images/team/Russell-1.JPG" alt="Russell Goodison" /><!-- member image -->
</div>
<div class="team-content text-center">
<h3 class="title">Russell Goodison</h3>
<span>Developer</span>
<!--<a href="#expert_modal" class="team_modal_link link-item" data-toggle="modal"></a>-->
<aside class="d-none">
<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia
consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>
</aside>
</div>
</div>
</div>
<!--/team item-->
<div class="col-lg-4 col-sm-4 mb5 our-team">
<div class="team-inner">
<!--<ul class="social">-->
<!-- team socials -->
<!--<li><a href="javascript:;"><i class="fa fa-twitter"></i></a></li>-->
<!--<li><a href="https://www.linkedin.com/in/russell-goodison-231a63159/"><i class="fa fa-linkedin"></i></a></li>-->
<!--</ul>-->
<div class="team_img">
<img src="images/team/Richie-1.JPG" alt="Richie" /><!-- member image -->
</div>
<div class="team-content text-center">
<h3 class="title">Richie</h3>
<span>Motivational Expert</span>
<!--<a href="#expert_modal" class="team_modal_link link-item" data-toggle="modal"></a>-->
<aside class="d-none">
<p>Richie helps to give the team members the creativity and energy needed to create the best
solutions for all their clients. Time and time again. He is more than just a pupper. He
inspires us all to be the best possible.</p>
</aside>
</div>
</div>
</div>
<!--/team item-->
</div>
<!--/row-->
</div>
<!--/col-8-->
</div>
<!--/row-->
</div>
<!--/container-->
<!--TEAM Modal -->
<div class="modal fade" id="expert_modal" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content border-0">
<div class="modal-header my-profile-header d-none d-sm-block">
<button type="button" class="team_close modal_close_btn" data-dismiss="modal" aria-label="Close"></button>
</div>
<a href="javascript:;" class="flat_close_btn d-sm-none d-block dismiss-item1 modal_close_btn" data-dismiss="modal"
aria-label="Close"></a>
<div class="my-profile-text ">
<div class="team-profile d-flex flex-sm-row flex-column align-items-end">
<div class="my-image-profile ">
<img id="team_img" class="align-self-end d-flex w-100" src="images/no-image.png" alt="team-member" />
</div>
<div class="float-left membar_designation">
<h3 class="m-0">Put member name</h3>
<span></span>
<ul class="team_modal_social social list-unstyled mb-0 "></ul>
</div>
<div class="clearfix"></div>
</div>
<aside></aside>
</div>
</div>
</div>BC
</div>
<!-- Modal HTML -->
</section>
<!-- /About-->
<!---Approach-->
<section id="approach" class="ps-section burger border-bottom">
<div class="container d-block d-sm-none">
<!-- Shown only on small/mobile devices -->
<div class="row">
<div class="col-lg-4">
<div class="page-head mb-5">
<span class="page-caption">Our Approach</span>
<h2 class="mt-3">We make things you'll love</h2>
<p>Stately was founded on the premise that having a purpose gives you power. In a world of possibility,
it is not what you say or sell, but what you stand for and at Stately, we advise and guide brand
development, strategy and continuation through a purpose-driven mindset.</p>
</div>
</div>
<div class="col-sm our-app">
<div class="card" id="ours">
<div class="card-content">
<h2>1. Research</h2>
</div>
</div>
</div>
<div class="col-sm our-app">
<div class="card" id="ours">
<div class="card-content">
<h2>2. Brainstorming</h2>
</div>
</div>
<div class="row ">
<div class="col-sm our-app" style="line-height: 1;">
<div class="card" id="ours">
<div class="card-content">
<h2>3. Concept Designs</h2>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm our-app">
<div class="card" id="ours">
<div class="card-content">
<h2>4. Incubation</h2>
</div>
</div>
<div class="card" id="ours">
<div class="card-content">
<h2>5. Evaluation</h2>
</div>
</div>
</div>
</div>
</div>
<div class="container d-none d-sm-block">
<!-- Only hidden on small/mobile devices -->
<div class="row">
<div class="col-4">
<div class="page-head mb-5">
<span class="page-caption">Our Approach</span>
<h2 class="mt-3">We make things you'll love</h2>
<p>Stately was founded on the premise that having a purpose gives you power. In a world of possibility,
it is not what you say or sell, but what you stand for and at Stately, we advise and guide brand
development, strategy and continuation through a purpose-driven mindset.</p>
</div>
</div>
<div class="col" style="margin-left: 50px;">
<div class="row">
<div class="col-6 our-app">
<div class="card" id="ours">
<div class="card-content">
<h2>1. Research</h2>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-6 our-app">
<div class="card" id="ours">
<div class="card-content">
<h2>2. Brainstorming</h2>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-6 our-app">
<div class="card" id="ours">
<div class="card-content">
<h2>3. Concept Designs</h2>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-6 our-app">
<div class="card" id="ours">
<div class="card-content">
<h2>4. Incubation</h2>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-6 our-app">
<div class="card" id="ours">
<div class="card-content">
<h2>5. Evaluation</h2>
</div>
</div>
</div>
</div>
</div>
</div>
<!--/col-4-->
<!-- /row -->
<!-- /container -->
<!-- Portfolio Modal HTML -->
<!-- Portfolio Modal HTML END-->
</section>
<!--Approach-->
<!-- /Protfolio-->
<!-- /Gallery-->
<script>
// var RotateCarousel = function(){
// // $('.carousel').slick({
// // autoplay: true,
// // autoplaySpeed: 2000,
// // slidesToScroll: 4
// // });
// };
function RotateCarousel() {
$('#top-carousel').slick('slickPrev');
$('#bottom-carousel').slick('slickNext');
}
</script>
<section id="clients" class="ps-section burger border-bottom">
<div class="container">
<div class="row">
<!-- row start -->
<div class="col-lg-4">
<div class="page-head mb-5">
<span class="page-caption">Clients</span>
<h2 class="mt-3">We work with brands passionate about staying in touch with their consumers.</h2>