-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1043 lines (898 loc) · 39.9 KB
/
index.html
File metadata and controls
1043 lines (898 loc) · 39.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
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>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
<title>Breathing life to brands | Chrysels Group</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="chrysels group, branding company dubai, signage, digital printing, event branding, chrysels digital, chrysels signboards industries, chrysels decor llc, vinyl, flag printing"
name="keywords">
<meta content="Chrysels Group is a leading visual merchandising solution provider in the middle-east. We specialise in digital advertising, branding, printing, signages, digital branding, flag printing and much more. Irrespective of what your product or message is, we bring your ideas to life through our extensive list of services."
name="description">
<meta content=#1b345e name=theme-color>
<meta content=#1b345e name=msapplication-navbutton-color>
<meta content=#1b345e name=apple-mobile-web-app-status-bar-style>
<meta content="www.mebinjohnson.com" name="author">
<META CONTENT="ISO 3166-2:AE" NAME="geo.region">
<!-- Facebook Opengraph integration: https://developers.facebook.com/docs/sharing/opengraph -->
<meta content="Chrysels Group | Breathing Life to Brands" property="og:title">
<meta content="https://chrysels.com/img/fa-og-image.jpg" property="og:image">
<meta content="https://chrysels.com" property="og:url">
<meta content="website" property="og:type">
<meta content="Chrysels Group" property="og:site_name">
<meta content="Chrysels Group is a leading visual merchandising solution provider in the middle-east. We specialise in digital advertising, branding, printing, signages, digital branding, flag printing and much more. Irrespective of what your product or message is, we bring your ideas to life through our extensive list of services."
property="og:description">
<!-- Twitter Cards integration: https://dev.twitter.com/cards/ -->
<meta content="summary" name="twitter:card">
<meta content="https://chrysels.com" name="twitter:site">
<meta content="Chrysels Group | Breathing Life to Brands" name="twitter:title">
<meta content="Chrysels Group is a leading visual merchandising solution provider in the middle-east. We specialise in digital advertising, branding, printing, signages, digital branding, flag printing and much more. Irrespective of what your product or message is, we bring your ideas to life through our extensive list of services."
name="twitter:description">
<meta content="https://chrysels.com/img/fa-og-image.jpg" name="twitter:image">
<!-- JSON-LD markup generated by Google Structured Data Markup Helper. -->
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "LocalBusiness",
"name": "Chrysels Group",
"image": "https://chrysels.com/img/logos/group-logo.svg",
"telephone": "+971 4 330 6805",
"email": "marketing@chryselsdigital.com",
"url": "https://chrysels.com",
"priceRange": "$$$",
"openingHours": "Su,Mo,Tu,We,Th,Sa 09:00-18:00",
"sameAs": [
"https://twitter.com/chryselsdigital",
"https://www.facebook.com/ChryselsDigital",
"https://www.instagram.com/chryselsgroup/?hl=en",
"https://www.linkedin.com/company/chrysels-digital-advertising-llc"
],
"address": {
"@type": "PostalAddress",
"streetAddress": "17B Street",
"addressLocality": "Al Quoz Industrial Area 2",
"addressCountry": "United Arab Emirates",
"postalCode": "231920"
}
}
</script>
<!-- Google Tag Manager -->
<script>(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({
'gtm.start':
new Date().getTime(), event: 'gtm.js'
});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-MX5ZLWS');</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-148832995-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-148832995-1');
</script>
<!-- End Google Tag Manager -->
<!-- Favicon -->
<link href="./favicon.ico" rel="icon">
<!-- Bootstrap CSS File -->
<link href="./lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Libraries CSS Files -->
<link href="./lib/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="./lib/animate/animate.min.css" rel="stylesheet">
<link href="./lib/ionicons/css/ionicons.min.css" rel="stylesheet">
<link href="./lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="./lib/lightbox/css/lightbox.min.css" rel="stylesheet">
<!-- Main Stylesheet File -->
<link href="./css/style.css" rel="stylesheet">
<link href="./css/nav-style.css" rel="stylesheet">
</head>
<body>
<!--Start of Tawk.to Script-->
<script type="text/javascript">
var Tawk_API = Tawk_API || {}, Tawk_LoadStart = new Date();
(function () {
var s1 = document.createElement("script"), s0 = document.getElementsByTagName("script")[0];
s1.async = true;
s1.src = 'https://embed.tawk.to/5d871d549f6b7a4457e2f1a1/default';
s1.charset = 'UTF-8';
s1.setAttribute('crossorigin', '*');
s0.parentNode.insertBefore(s1, s0);
})();
</script>
<!--End of Tawk.to Script-->
<!-- Google Tag Manager (noscript) -->
<noscript>
<iframe height="0"
src="https://www.googletagmanager.com/ns.html?id=GTM-MX5ZLWS" style="display:none;visibility:hidden"
width="0"></iframe>
</noscript>
<!-- End Google Tag Manager (noscript) -->
<header id="header">
<nav id="main-nav">
<div class="row">
<div class="container nav-menu-container">
<div class="logo">
<a href="./"><img alt="Chrysels Group" height="50px" src="./img/logos/group-logo.svg"></a>
</div>
<div class="logo-mobile">
<a href="./"><img alt="Chrysels Group" height="35px" src="./img/logos/logo.svg"></a>
</div>
<!-- <div class="responsive"><i class="fa fa-navicon" data-icon="m"></i></div>-->
<button aria-controls="navbarSupportedContent22" aria-expanded="false" aria-label="Toggle navigation"
class="navbar-toggler responsive"
data-target="#navbarSupportedContent22" data-toggle="collapse" type="button">
<div class="animated-icon"><span></span><span></span><span></span></div>
</button>
<ul class="nav nav-menu list-unstyled">
<li class="menu-has-children nav-item"><a>About</a>
<ul>
<li><a href="#about">Who We Are</a></li>
<li><a href="#vision">Mission & Vision</a></li>
<li><a href="#history">History</a></li>
<li><a href="./day-at-chrysels.html">A Day at Chrysels</a></li>
</ul>
</li>
<li class="nav-item"><a class="smoothScroll" href="#business">Business</a></li>
<li class="nav-item"><a class="smoothScroll" href="#services">Services</a></li>
<li class="nav-item"><a class="smoothScroll" href="#portfolio">Portfolio</a></li>
<li class="nav-item"><a class="smoothScroll" href="contact.html">Contact</a></li>
</ul>
</div>
</div>
</nav>
</header>
<!-- End section navbar -->
<!--==========================
Intro Section
============================-->
<section id="intro">
<div class="intro-container">
<div class="carousel slide" data-ride="carousel" id="introCarousel">
<a class="hero-brand" href="./" title="Home"><img alt="Chrysels Group"
class="intro-logo-banner-float"
height="80px"
src="./img/logos/group-logo-white.svg"></a>
<ol class="carousel-indicators"></ol>
<div class="carousel-inner" role="listbox">
<div class="carousel-item active" data-interval="5000">
<div class="carousel-background"><img alt="Group Cover" src="./img/intro-carousel/cover3.jpg"></div>
<div class="carousel-container">
<div class="carousel-content">
<h2>Breathing Life to Brands.</h2>
<p>Irrespective of what your product or message is, we bring your ideas to life through
brand displays that are eye catching.
We study your brand image to create notable solution that not only identify with your
brand guidelines but also reflect the territorial aesthetics.</p>
<a class="btn-get-started scrollto" href="#featured-services">Know More</a>
</div>
</div>
</div>
<div class="carousel-item" data-interval="8000">
<div class="carousel-background"><img alt="Signage Cover" src="img/intro-carousel/cover2.jpg"></div>
<div class="carousel-container">
<div class="carousel-content">
<h2>In-house Signage Manufacturing</h2>
<p>Our in-house manufacturing plant assures us the flexibility to create any, style, shape
or size of signages. Our team designs, engineers, and manufacture signages that meet
the diverse requirements of our customers. From interior to exterior, we do it all and
we do it in-house. </p>
<a class="btn-get-started scrollto" href="#featured-services">Know More</a>
</div>
</div>
</div>
<div class="carousel-item" data-interval="5000">
<div class="carousel-background"><img alt="Digital Cover" src="img/intro-carousel/cover1.jpg"></div>
<div class="carousel-container">
<div class="carousel-content">
<h2>Large Format Digital Printing</h2>
<p>We are one of the few solution providers for digital, indoor and outdoor printing,
specialising in flag printing and POS fabrication.
</p>
<a class="btn-get-started scrollto" href="#featured-services">Know More</a>
</div>
</div>
</div>
</div>
<a class="carousel-control-prev" data-slide="prev" href="#introCarousel" role="button">
<span aria-hidden="true" class="carousel-control-prev-icon ion-chevron-left"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" data-slide="next" href="#introCarousel" role="button">
<span aria-hidden="true" class="carousel-control-next-icon ion-chevron-right"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</section><!-- #intro -->
<!--==========================
Featured Services Section
============================-->
<section id="featured-services">
<div class="container">
<div class="row">
<div class="col-lg-3 box box-bg-red">
<i class="fa fa-print"></i>
<h4 class="title"><a href="https://www.chryselsdigital.com/digital-printing.php">Digital Printing</a></h4>
<p class="description">We work with the world’s most prestigious luxury brands is testimony to our
quality, consistency and speed of service when it comes to producing premier quality digital
printing solutions. </p>
</div>
<div class="col-lg-3 box box-bg">
<i class="fa fa-flag-o"></i>
<h4 class="title"><a href="https://www.chryselsdigital.com/flags.php">Textile/Flag Printing</a></h4>
<p class="description">Our area of expertise! State-of-the-art printing process with all kinds of flags
with custom designs brings out the strong vibrant colours that catch the eye.</p>
</div>
<div class="col-lg-3 box box-bg-red">
<i class="fa fa-lightbulb-o"></i>
<h4 class="title"><a href="https://chryselssigns.com/services/external-signs/">Internal/External Signage</a></h4>
<p class="description">Illuminated signage has been transformed and re-defined into a creative product.
Combining the latest technology and manufacturing techniques to produce a leading industrial
product.</p>
</div>
<div class="col-lg-3 box box-bg">
<i class="fa fa-window-maximize"></i>
<h4 class="title"><a href="https://www.chryselsdigital.com/kiosk.php">Window Displays/ Kiosks</a></h4>
<p class="description">Making sure customers reach out to you solely depends on how you advertise your
store. Our creative professionals make the impossible possible by creating a visual feast for
them. </p>
</div>
</div>
</div>
</section><!-- #featured-services -->
<main id="main">
<!--==========================
About Us Section
============================-->
<section id="abt" class="">
<section id="about">
<div class="container">
<div class="row about-container">
<div class="col-lg-6 content order-lg-1 order-2">
<h2 class="title">Who we are</h2>
<h2 class="title2">Who we are</h2>
<p>
Chrysels Group has come a long way to become a leading visual merchandising company in the
Gulf.
Irrespective of what your product or message is, we bring your ideas to life through brand
displays that are eye catching. We are one of the few solution providers for digital, indoor
and
outdoor printing, specialising in flag printing and POS fabrication.
</p>
<!-- <div class="icon-box wow fadeInUp">-->
<!-- <div class="icon"><i class="fa fa-shopping-bag"></i></div>-->
<!-- <h4 class="title"><a href="">Eiusmod Tempor</a></h4>-->
<!-- <p class="description">Et harum quidem rerum facilis est et expedita distinctio. Nam libero-->
<!-- tempore, cum soluta nobis est eligendi</p>-->
<!-- </div>-->
<!-- <div class="icon-box wow fadeInUp" data-wow-delay="0.2s">-->
<!-- <div class="icon"><i class="fa fa-photo"></i></div>-->
<!-- <h4 class="title"><a href="">Magni Dolores</a></h4>-->
<!-- <p class="description">Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia-->
<!-- deserunt mollit anim id est laborum</p>-->
<!-- </div>-->
<!-- <div class="icon-box wow fadeInUp" data-wow-delay="0.4s">-->
<!-- <div class="icon"><i class="fa fa-bar-chart"></i></div>-->
<!-- <h4 class="title"><a href="">Dolor Sitema</a></h4>-->
<!-- <p class="description">Minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip-->
<!-- ex ea commodo consequat tarad limino ata</p>-->
<!-- </div>-->
</div>
<div class="col-lg-6 background order-lg-2 order-1 wow fadeInRight"></div>
</div>
</div>
</section><!-- #about -->
<section id="vision">
<div class="container">
<header class="section-header">
<h3>Our Mission & Vision</h3>
<p></p>
</header>
<div class="row about-cols">
<div class="col-md-6 wow fadeInUp">
<div class="about-col">
<div class="img">
<img alt="Mission" class="img-fluid" src="img/about-mission.jpg">
<div class="icon"><i class="ion-ios-speedometer-outline"></i></div>
</div>
<h2 class="title"><a>Our Mission</a></h2>
<p>
To provide quality brand visibility solutions and exceed the expectations of our
customers
with extra-ordinary emphasis on creation of values along with reliable services thereby
ensuring complete customer satisfaction.
</p>
</div>
</div>
<div class="col-md-6 wow fadeInUp" data-wow-delay="0.2s">
<div class="about-col">
<div class="img">
<img alt="Vision" class="img-fluid" src="img/about-vision.jpg">
<div class="icon"><i class="ion-ios-eye-outline"></i></div>
</div>
<h2 class="title"><a>Our Vision</a></h2>
<p>
Our Goal is to professionally initiate prospective leadership skills and conveniently
administrate cost effective benefits to meet our customers needs.
</p>
</div>
</div>
</div>
</div>
</section><!-- #about -->
<!--==========================
About Us Section
============================-->
<section id="history">
<div class="container">
<div class="row about-container">
<div class="div-img-bg">
<div class="col-lg-6 background order-lg-2 order-1 wow fadeInRight"></div>
</div>
<div class="col-lg-6 content order-lg-1 order-2">
<h2 class="title">Our Beginning</h2>
<h2 class="title2">Our Beginning</h2>
<p>
We constituted in the year 2007, since then Chrysels has been enhancing and growing in
becoming
one of the leading Visual Merchandising Company in the Middle East providing solutions to
high-valued clients.
</p>
<!-- <div class="icon-box wow fadeInUp">-->
<!-- <div class="icon"><i class="fa fa-clock-o"></i></div>-->
<!-- <h4 class="title"><a href="">12+ Years in Business</a></h4>-->
<!-- <p class="description">Et harum quidem rerum facilis est et expedita distinctio. Nam libero-->
<!-- tempore, cum soluta nobis est eligendi</p>-->
<!-- </div>-->
<!-- <div class="icon-box wow fadeInUp" data-wow-delay="0.2s">-->
<!-- <div class="icon"><i class="fa fa-photo"></i></div>-->
<!-- <h4 class="title"><a href="">Magni Dolores</a></h4>-->
<!-- <p class="description">Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia-->
<!-- deserunt mollit anim id est laborum</p>-->
<!-- </div>-->
<!-- <div class="icon-box wow fadeInUp" data-wow-delay="0.4s">-->
<!-- <div class="icon"><i class="fa fa-bar-chart"></i></div>-->
<!-- <h4 class="title"><a href="">Dolor Sitema</a></h4>-->
<!-- <p class="description">Minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip-->
<!-- ex ea commodo consequat tarad limino ata</p>-->
<!-- </div>-->
</div>
</div>
</div>
</section><!-- #about -->
</section>
<!--==========================
Our Businesses Section
============================-->
<section class="section-white" id="business">
<div class="container">
<header class="section-header wow fadeInUp">
<h3>Our Businesses</h3>
<p>All our divisions have been working together to make sure that our clients get only the best services
and the best quality products which ultimately are giving value to their investments. </p>
</header>
<div class="row">
<div class="col-lg-4 col-md-6 box wow bounceInUp" data-wow-duration="1.4s">
<a href="https://www.chryselsdigital.com">
<a class="icon" href="https://www.chryselsdigital.com"><img class="business-logo"
alt="Chrysels Digital Advertising LLC"
src="./img/logos/cda-logo.svg"></a>
</a>
<p class="description">CDA has come a long way to become a
leading digital solutions provider in the Gulf.
Irrespective of what your product or message is, we bring your ideas to life through brand
displays that are eye catching.</p>
<a class="" href="https://www.chryselsdigital.com">chryselsdigital.com</a>
</div>
<div class="col-lg-4 col-md-6 box wow bounceInUp" data-wow-duration="1.4s">
<a class="icon" href="https://www.chryselssigns.com"><img class="business-logo" alt="Chrysels Sign Board Industries LLC"
src="./img/logos/csa-logo.svg"></a>
<p class="description">A complete in house signage solutions
provider offering diverse solutions in Signage requirements.
We are managed by, a team of highly experienced Signage Professionals who have been in this
industry for more than last 15 years.</p>
<a class="" href="https://www.chryselssigns.com">chryselsigns.com</a>
</div>
<div class="col-lg-4 col-md-6 box wow bounceInUp" data-wow-duration="1.4s">
<a class="icon"><img class="business-logo" alt="Chrysels Decor LLC" src="./img/logos/decor-logo.svg"></a>
<p class="description">A part of Chrysels Group which deals in Acrylic works,
Styrofoam works, metal fabrication, wood fabrication, display stands, exhibition stands, POS,
display units, event production and all kinds of joinery works.</p>
<a class="" href="https://www.chryselsdigital.com">chryselsdecor.com</a>
</div>
</div>
</div>
</section>
</section>
<!-- #businesses -->
<!--==========================
Call To Action Section
============================-->
<section class="wow fadeIn" id="call-to-action">
<div class="container text-center">
<h3>Visual Branding Required?</h3>
<p> Have you got any queries? We are here to help with all visual merchandising needs.
</p>
<a class="cta-btn" href="tel:+97143306805">Call Us Now</a>
</div>
</section><!-- #call-to-action -->
<!--==========================
Services Section
============================-->
<section id="services">
<div class="container">
<header class="section-header wow fadeInUp">
<h3>Services</h3>
<p>We have a versatile catalogue of advanced solutions to meet every requirement. Looking for a
product or installation method you don’t see here? Don’t hesitate to ask us.</p>
</header>
<div class="row">
<div class="col-lg-4 col-md-6 box wow bounceInUp" data-wow-duration="1.4s">
<div class="icon"><i class="ion-ios-analytics-outline"></i></div>
<h4 class="title"><a href="">Estimation</a></h4>
<p class="description">Voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi
sint
occaecati cupiditate non provident</p>
</div>
<div class="col-lg-4 col-md-6 box wow bounceInUp" data-wow-duration="1.4s">
<div class="icon"><i class="ion-ios-settings"></i></div>
<h4 class="title"><a href="">Engineering</a></h4>
<p class="description">Minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
commodo
consequat tarad limino ata</p>
</div>
<div class="col-lg-4 col-md-6 box wow bounceInUp" data-wow-duration="1.4s">
<div class="icon"><i class="ion-ios-paper-outline"></i></div>
<h4 class="title"><a href="">Permit Acqusition</a></h4>
<p class="description">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore
eu
fugiat nulla pariatur</p>
</div>
<div class="col-lg-4 col-md-6 box wow bounceInUp" data-wow-delay="0.1s" data-wow-duration="1.4s">
<div class="icon"><i class="ion-ios-speedometer-outline"></i></div>
<h4 class="title"><a href="">Site Surveying</a></h4>
<p class="description">Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia
deserunt
mollit anim id est laborum</p>
</div>
<div class="col-lg-4 col-md-6 box wow bounceInUp" data-wow-delay="0.1s" data-wow-duration="1.4s">
<div class="icon"><i class="ion-ios-barcode-outline"></i></div>
<h4 class="title"><a href="">Project Management</a></h4>
<p class="description">At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis
praesentium
voluptatum deleniti atque</p>
</div>
<div class="col-lg-4 col-md-6 box wow bounceInUp" data-wow-delay="0.1s" data-wow-duration="1.4s">
<div class="icon"><i class="ion-ios-people-outline"></i></div>
<h4 class="title"><a href="">Installation</a></h4>
<p class="description">Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore,
cum
soluta nobis est eligendi</p>
</div>
</div>
</div>
</section><!-- #services -->
<!--==========================
Facts Section
============================-->
<section class="wow fadeIn" id="facts">
<div class="container">
<div class="section-header">
<h3>Facts</h3>
<p>With over a decade of experience, we have proven to become true pioneers in design, fabrication and
installation for diverse sectors. We continue to serve our valued customers for many more years to
come.
</p>
<div class="row counters">
<div class="col-lg-3 col-6 text-center">
<span data-toggle="counter-up">500</span><span class="plus">+</span>
<p>Happy Customers</p>
</div>
<div class="col-lg-3 col-6 text-center">
<span data-toggle="counter-up">100</span><span class="plus">K</span>
<p>Projects</p>
</div>
<div class="col-lg-3 col-6 text-center">
<span data-toggle="counter-up">12</span><span class="plus">+</span>
<p>Years Of Experience</p>
</div>
<div class="col-lg-3 col-6 text-center">
<span data-toggle="counter-up">185</span>
<p>Professionals</p>
</div>
</div>
<div class="facts-img">
<img alt="Facts" class="img-fluid" src="img/facts-image.png">
</div>
</div>
</div>
</section><!-- #facts -->
<!--==========================
Portfolio Section
============================-->
<section class="section-bg" id="portfolio">
<div class="container">
<header class="section-header">
<h3 class="section-title">Our Portfolio</h3>
</header>
<div class="row">
<div class="col-lg-12">
<ul id="portfolio-flters">
<li class="filter-active" data-filter="*">All</li>
<li data-filter=".filter-cda">Chrysels Digital</li>
<li data-filter=".filter-csb">Chrysels SignBoard</li>
<li data-filter=".filter-cdec">Chrysels Decor</li>
</ul>
</div>
</div>
<div class="row portfolio-container">
<div class="col-lg-4 col-md-6 portfolio-item filter-cda wow fadeInUp">
<div class="portfolio-wrap">
<figure>
<img alt="CDA1" class="img-fluid" src="img/portfolio/CDA/1.jpg">
<a class="link-preview" data-lightbox="portfolio" data-title="Vehicle Branding"
href="img/portfolio/CDA/1.jpg"
title="Preview"><i class="ion ion-eye"></i></a>
</figure>
<div class="portfolio-info">
<h4><a>Vehicle Branding</a></h4>
<p>Chrysels Digital</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-cdec wow fadeInUp" data-wow-delay="0.1s">
<div class="portfolio-wrap">
<figure>
<img alt="Cdec1" class="img-fluid" src="img/portfolio/Cdec/1.jpg">
<a class="link-preview" data-lightbox="portfolio" data-title="Roof Dec"
href="img/portfolio/Cdec/1.jpg"
title="Preview"><i class="ion ion-eye"></i></a>
</figure>
<div class="portfolio-info">
<h4><a>Roof Dec</a></h4>
<p>Chrysels Decor</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-cda wow fadeInUp" data-wow-delay="0.2s">
<div class="portfolio-wrap">
<figure>
<img alt="CDA2" class="img-fluid" src="img/portfolio/CDA/2.jpg">
<a class="link-preview" data-lightbox="portfolio" data-title="Event Branding"
href="img/portfolio/CDA/2.jpg"
title="Preview"><i class="ion ion-eye"></i></a>
</figure>
<div class="portfolio-info">
<h4><a>Event Branding</a></h4>
<p>Chrysels Digital</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-csb wow fadeInUp">
<div class="portfolio-wrap">
<figure>
<img alt="CSB1" class="img-fluid" src="img/portfolio/CSB/1.jpg">
<a class="link-preview" data-lightbox="portfolio" data-title="MAUI Acrylic Work"
href="img/portfolio/CSB/1.jpg"
title="Preview"><i class="ion ion-eye"></i></a>
</figure>
<div class="portfolio-info">
<h4><a>MAUI Acrylic Work</a></h4>
<p>Chrysels SignBoard</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-cdec wow fadeInUp" data-wow-delay="0.1s">
<div class="portfolio-wrap">
<figure>
<img alt="Cdec2" class="img-fluid" src="img/portfolio/Cdec/2.jpg">
<a class="link-preview" data-lightbox="portfolio" data-title="MOISHI Stall"
href="img/portfolio/Cdec/2.jpg"
title="Preview"><i class="ion ion-eye"></i></a>
</figure>
<div class="portfolio-info">
<h4><a>MOISHI Stall</a></h4>
<p>Chrysels Decor</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-cda wow fadeInUp" data-wow-delay="0.2s">
<div class="portfolio-wrap">
<figure>
<img alt="CDA3" class="img-fluid" src="img/portfolio/CDA/3.jpg">
<a class="link-preview" data-lightbox="portfolio" data-title="Reebok"
href="img/portfolio/CDA/3.jpg"
title="Preview"><i class="ion ion-eye"></i></a>
</figure>
<div class="portfolio-info">
<h4><a>Reebok</a></h4>
<p>Chrysels Digital</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-csb wow fadeInUp">
<div class="portfolio-wrap">
<figure>
<img alt="CSB2" class="img-fluid" src="img/portfolio/CSB/2.jpg">
<a class="link-preview" data-lightbox="portfolio" data-title="Disney Signage"
href="img/portfolio/CSB/2.jpg"
title="Preview"><i class="ion ion-eye"></i></a>
</figure>
<div class="portfolio-info">
<h4><a>Disney Signage</a></h4>
<p>Chrysels SignBoard</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-csb wow fadeInUp" data-wow-delay="0.1s">
<div class="portfolio-wrap">
<figure>
<img alt="CSB3" class="img-fluid" src="img/portfolio/CSB/3.jpg">
<a class="link-preview" data-lightbox="portfolio" data-title="Franprix Branding"
href="img/portfolio/CSB/3.jpg"
title="Preview"><i class="ion ion-eye"></i></a>
</figure>
<div class="portfolio-info">
<h4><a>Franprix Branding</a></h4>
<p>Chrysels SignBoard</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-cdec wow fadeInUp" data-wow-delay="0.2s">
<div class="portfolio-wrap">
<figure>
<img alt="Cdec3" class="img-fluid" src="img/portfolio/Cdec/3.jpg">
<a class="link-preview" data-lightbox="portfolio" data-title="Window Display"
href="img/portfolio/Cdec/3.jpg"
title="Preview"><i class="ion ion-eye"></i></a>
</figure>
<div class="portfolio-info">
<h4><a>Window Display</a></h4>
<p>Chrysels Decor</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-cda wow fadeInUp" data-wow-delay="0.2s">
<div class="portfolio-wrap">
<figure>
<img alt="CDA4" class="img-fluid" src="img/portfolio/CDA/4.jpg">
<a class="link-preview" data-lightbox="portfolio" data-title="Event Branding - VOX"
href="img/portfolio/CDA/4.jpg"
title="Preview"><i class="ion ion-eye"></i></a>
</figure>
<div class="portfolio-info">
<h4><a>Event Branding - VOX</a></h4>
<p>Chrysels Digital</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-csb wow fadeInUp" data-wow-delay="0.1s">
<div class="portfolio-wrap">
<figure>
<img alt="CSB5" class="img-fluid" src="img/portfolio/CSB/5.jpg">
<a class="link-preview" data-lightbox="portfolio" data-title="Traffic Signage"
href="img/portfolio/CSB/5.jpg"
title="Preview"><i class="ion ion-eye"></i></a>
</figure>
<div class="portfolio-info">
<h4><a>Traffic Signage</a></h4>
<p>Chrysels SignBoard</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-cdec wow fadeInUp" data-wow-delay="0.2s">
<div class="portfolio-wrap">
<figure>
<img alt="Cdec4" class="img-fluid" src="img/portfolio/Cdec/4.jpg">
<a class="link-preview" data-lightbox="portfolio" data-title="National Day Specials"
href="img/portfolio/Cdec/4.jpg"
title="Preview"><i class="ion ion-eye"></i></a>
</figure>
<div class="portfolio-info">
<h4><a>National Day Specials</a></h4>
<p>Chrysels Decor</p>
</div>
</div>
</div>
</div>
</div>
</section><!-- #portfolio -->
<!--==========================
Clients Section
============================-->
<section class="wow fadeInUp" id="clients">
<div class="container">
<header class="section-header">
<h3>Our Clientele</h3>
</header>
<div class="owl-carousel clients-carousel">
<img alt="Client1" src="img/clients/client-1.png">
<img alt="Client2" src="img/clients/client-2.png">
<img alt="Client3" src="img/clients/client-3.png">
<img alt="Client4" src="img/clients/client-4.png">
<img alt="Client5" src="img/clients/client-5.png">
<img alt="Client6" src="img/clients/client-6.png">
<img alt="Client6" src="img/clients/client-7.png">
<img alt="Client6" src="img/clients/client-8.png">
<img alt="Client6" src="img/clients/client-9.png">
</div>
</div>
</section><!-- #clients -->
<!--==========================
Testimonials Section
============================-->
<section class="section-bg wow fadeInUp" id="testimonials">
<div class="container">
<header class="section-header">
<h3>Testimonials</h3>
</header>
<div class="owl-carousel testimonials-carousel">
<div class="testimonial-item">
<img alt="test-1" class="testimonial-img" src="img/testimonial-1.jpg">
<h3>Rameez Abdulla</h3>
<h4>Digital Optimization Manager | Fortune Marketing and Consultancy</h4>
<p>
<span class="quote-sign-left"><i class="fa fa-quote-left"></i></span>
I believe that signage is not merely about putting up an aesthetic nameboard of the organisation
and hoping for customer engagement. In today’s digital era, it is critical that we integrate
signasignage as a digital function, and that is what I found in Chrysels as truly innovative and
path-breaking. The team understands our requirements, delivers to the brief on time, and then
pushes a little further, through their own creative and ingenious approach. I strongly recommend
Chrysels for signage needs as they know that in today’s fast-evolving world, it is important to
stay dynamic and reinvent oneself.
<span class="quote-sign-right"><i class="fa fa-quote-right"></i></span>
</p>
</div>
<div class="testimonial-item">
<img alt="test-2" class="testimonial-img" src="img/testimonial-2.jpg">
<h3>Kailas</h3>
<h4>Director | Yellow Bulb</h4>
<p>
<span class="quote-sign-left"><i class="fa fa-quote-left"></i></span>
When we sought a signage agency for our work, our prerequisite was that we should work with a
creative partner than a mere supplier. That is what Chrysels delivered; we wanted a partner that
could add to our brief in a very creative manner and offer us solutions that we might not have
thought about or overlooked. The advice by the Chrysels team and their creative input helped in
creating compelling signage for us.
<span class="quote-sign-right"><i class="fa fa-quote-right"></i></span>
</p>
</div>
<div class="testimonial-item">
<img alt="test-3" class="testimonial-img" src="img/testimonial-3.jpg">
<h3>John Edward</h3>
<h4>Creative Director | Now We Create</h4>
<p>
<span class="quote-sign-left"><i class="fa fa-quote-left"></i></span>
I have noticed from my experience that signage services are often not up to par because of
factors including the use of poor quality materials or simply because the company did not have
the creative bandwidth to deliver what we needed. With Chrysels, it was different. The team was
quickly on board – and we were aligned on what was to be done. They gave creative suggestions
that helped us to quickly wrap up the project. And I must thank the team for their on-schedule
completion. A great job indeed from the team.
<span class="quote-sign-right"><i class="fa fa-quote-right"></i></span>
</p>
</div>
<div class="testimonial-item">
<img alt="test-4" class="testimonial-img" src="img/testimonial-4.jpg">
<h3>Jean Azziz</h3>
<h4>Director | Bysinchro</h4>
<p>
<span class="quote-sign-left"><i class="fa fa-quote-left"></i></span>
I have been quite impressed with the work that Chrysels did for us. The winning factor was the
team’s dedication to the work at hand. They went out of the way to deliver their service on
time, and also demonstrated an impressive creative flair. The strong-point of Chrysels is the
number of options and choices they provide in terms of meeting our signage needs. They are truly
experts at what they do and their diversity of offering will meet anyone’s needs.
<span class="quote-sign-right"><i class="fa fa-quote-right"></i></span>
</p>
</div>
</div>
</div>
</section><!-- #testimonials -->
<!--==========================
Contact Section
============================-->
<section class="section-bg wow fadeInUp" id="contact">
<div class="container-fluid p-0">
<div class="section-header">
<h3>Contact Us</h3>
<p></p>
</div>
<iframe allowfullscreen
class="container-fluid p-0 map"
height="380"
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3612.0901584306494!2d55.24781551515303!3d25.13264258392636!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e5f6913621e7147%3A0x6a9fe3ae2bea6a05!2sChrysels%20Group!5e0!3m2!1sen!2sae!4v1569131088445!5m2!1sen!2sae"
style="border:0" width="100%"></iframe>
<div class="container row contact-info">
<div class="col-lg-3 col-md-6">
<div class="contact-address">
<i class="ion-ios-location-outline"></i>
<h3>Address</h3>
<address>17B Street, Al Quoz Industrial Area 2, <b>Dubai, United Arab Emirates</b>, P.O. Box:
231920
</address>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="contact-phone line">
<i class="ion-ios-telephone-outline"></i>
<h3>Phone Number</h3>
<p><a href="tel:+97143306805">+971 4 330 6805</a></p>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="contact-address line">
<i class="ion-ios-printer-outline"></i>
<h3>Fax</h3>
<p><a href="tel:+97143306804">+971 4 330 6804</a></p>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="contact-email line">
<i class="ion-ios-email-outline"></i>
<h3>Email</h3>
<p><a href="mailto:marketing@chryselsdigital.com">marketing@chryselsdigital.com</a></p>
</div>
</div>
</div>
</div>
</section><!-- #contact -->
</main>
<!--==========================
Footer
============================-->
<footer id="footer">
<div class="footer-top">
<div class="container">
<div class="socials-media text-center">
<p>Follow Us</p>
<ul class="list-unstyled">
<li><a href="https://www.facebook.com/ChryselsDigital/"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://twitter.com/chryselsdigital"><i class="fa fa-twitter"></i></a></li>
<li><a href="https://www.instagram.com/chryselsgroup/"><i class="fa fa-instagram"></i></a></li>
<li><a href="https://www.linkedin.com/company/chrysels-digital-advertising-llc"><i
class="fa fa-linkedin"></i></a></li>
</ul>
</div>