-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·798 lines (631 loc) · 33.8 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
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<!--- basic page needs
================================================== -->
<meta charset="utf-8">
<title>RG InfoMedia</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- mobile specific metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/vendor.css">
<link rel="stylesheet" href="css/main.css">
<!-- script
================================================== -->
<script src="js/modernizr.js"></script>
<script src="js/pace.min.js"></script>
<!-- favicons
================================================== -->
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<style media="screen">
.my-custom-btn:hover{
background: #ffffff !important;
border: 0.2rem solid #ffffff;
color: #000000;
}
</style>
</head>
<body id="top">
<!-- header
================================================== -->
<header class="s-header">
<div class="header-logo">
<a class="site-logo" href="index.html">
<img src="images/logo3.svg" alt="Homepage">
</a>
</div> <!-- end header-logo -->
<nav class="header-nav">
<a href="#0" class="header-nav__close" title="close"><span>Close</span></a>
<div class="header-nav__content">
<h3>RG infomedia</h3>
<ul class="header-nav__list">
<li class="current"><a class="smoothscroll" href="#home" title="home">Home</a></li>
<li><a class="smoothscroll" href="#about" title="about">About</a></li>
<li><a class="smoothscroll" href="#services" title="services">Services</a></li>
<li><a class="smoothscroll" href="#works" title="works">Works</a></li>
<li><a class="smoothscroll" href="#contact" title="contact">Contact</a></li>
</ul>
<!-- <p>Perspiciatis hic praesentium nesciunt. Et neque a dolorum <a href='#0'>voluptatem</a> porro iusto sequi veritatis libero enim. Iusto id suscipit veritatis neque reprehenderit.</p> -->
<ul class="header-nav__social">
<li>
<a href="#0"><i class="fab fa-facebook"></i></a>
</li>
<li>
<a href="#0"><i class="fab fa-twitter"></i></a>
</li>
<li>
<a href="#0"><i class="fab fa-instagram"></i></a>
</li>
<li>
<a href="#0"><i class="fab fa-behance"></i></a>
</li>
<li>
<a href="#0"><i class="fab fa-dribbble"></i></a>
</li>
</ul>
</div> <!-- end header-nav__content -->
</nav> <!-- end header-nav -->
<a class="header-menu-toggle" href="#0">
<span class="header-menu-icon"></span>
</a>
</header> <!-- end s-header -->
<!-- home
================================================== -->
<section id="home" class="s-home target-section" data-parallax="scroll" data-image-src="images/hero-bg.jpg" data-natural-width=3000 data-natural-height=2000 data-position-y=top>
<div class="shadow-overlay"></div>
<div class="home-content">
<div class="row home-content__main">
<h1>
Hello folks, we are <br>
RG Info Media.
</h1>
<p>
We create stunning digital experiences <br>
<!-- that will help your business stand out. -->
to help your business stand out, crafting your ideas into reality.
<!-- for turning your idea into reality & business to compete and win online. -->
</p>
<a class="btn btn--stroke btn--medium my-custom-btn" href="https://forms.gle/G98D4smvkxtAWMJg6">Start a project</a>
<!-- <a class="btn btn--primary btn--medium" href="#0">Primary Button</a>
<a class="btn full-width" href="#0">Default Button</a> -->
</div> <!-- end home-content__main -->
</div> <!-- end home-content -->
<ul class="home-sidelinks">
<li><a class="smoothscroll" href="#about">About<span>who we are</span></a></li>
<li><a class="smoothscroll" href="#services">Services<span>what we do</span></a></li>
<li><a class="smoothscroll" href="#contact">Contact<span>get in touch</span></a></li>
</ul> <!-- end home-sidelinks -->
<ul class="home-social">
<li class="home-social-title">Follow Us</li>
<li><a href="#0">
<i class="fab fa-facebook"></i>
<span class="home-social-text">Facebook</span>
</a></li>
<li><a href="#0">
<i class="fab fa-twitter"></i>
<span class="home-social-text">Twitter</span>
</a></li>
<li><a href="#0">
<i class="fab fa-linkedin"></i>
<span class="home-social-text">LinkedIn</span>
</a></li>
</ul> <!-- end home-social -->
<a href="#about" class="home-scroll smoothscroll">
<span class="home-scroll__text">Scroll Down</span>
<span class="home-scroll__icon"></span>
</a> <!-- end home-scroll -->
</section> <!-- end s-home -->
<!-- about
================================================== -->
<section id='about' class="s-about">
<div class="row section-header" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead">Who We Are</h3>
<h1 class="display-1">A digital agency that responds to emails, finishes the job and doesn’t suck.
</h1>
</div>
</div> <!-- end section-header -->
<div class="row" data-aos="fade-up">
<div class="col-full">
<p class="lead">
We create and foster memorable relationships between brands and their clients. With a focus on UI / Web and Branding, we strive to create polished and scalable digital products through passionate design.
</p>
</div>
</div> <!-- end about-desc -->
<div class="row" data-aos="fade-up">
<div class="col-full">
<p class="lead">
Our methodology for creating stunning digital products for your business :
</p>
</div>
</div>
<div class="row">
<div class="about-process process block-1-2 block-tab-full">
<div class="process__vline-left"></div>
<div class="process__vline-right"></div>
<div class="col-block process__col" data-item="1" data-aos="fade-up">
<div class="process__text">
<h4>Define</h4>
<p>
Our team of strategists will aid you and assist you in analyzing and defining the use-case-scenario, needs and goals of your project. We then document and validate a RFP (Request For Proposal) outlining all the design and software specifications of your project.
</p>
</div>
</div>
<div class="col-block process__col" data-item="2" data-aos="fade-up">
<div class="process__text">
<h4>Design</h4>
<p>
Our team of wicked talented designers will craft a custom web design just for you, all including wireframing, sitemapping and UX layout and design. Creating a blueprint for all your needs and giving you a real feel of your project even before its deployed
</p>
</div>
</div>
<div class="col-block process__col" data-item="3" data-aos="fade-up">
<div class="process__text">
<h4>Build</h4>
<p>
Our developers can build cutting-edge scalable solutions for any project that needs to be built from the ground up, breathing life into your designs. Starting from e-commerce development, app development to Website development and CMS.
</p>
</div>
</div>
<div class="col-block process__col" data-item="4" data-aos="fade-up">
<div class="process__text">
<h4>Launch</h4>
<p>
We take care of all your deployment needs starting from domain acquirement, hosting and publishing of apps to the App Store. All while providing SSL certifications and secure integrations making your product immune to cyber-attacks.
</p>
</div>
</div>
<div class="col-block process__col" data-item="5" data-aos="fade-up">
<div class="process__text">
<h4>Marketing</h4>
<p>
We help you promote your business online using SEO, Social Media Marketing, SEM and CPC Advertising helping you get your ads infront of your most ideal audience. Making your business easier to find for your clients.
</p>
</div>
</div>
<div class="col-block process__col" data-item="6" data-aos="fade-up">
<div class="process__text">
<h4>Support</h4>
<p>
A good partnership doesn’t have to end once a project is launched. We provide state of the art technical support, maintenance and consultative guidance for all your issues and queries ensuring you a guaranteed peace of mind.
</p>
</div>
</div>
</div> <!-- end process -->
</div> <!-- end about-stats -->
</section> <!-- end s-about -->
<!-- services
================================================== -->
<section id='services' class="s-services light-gray">
<div class="row section-header" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead">What We Do</h3>
<h1 class="display-1">We have everything you need to launch and grow a successful digital business.</h1>
</div>
</div> <!-- end section-header -->
<div class="row" data-aos="fade-up">
<div class="col-full">
<p class="lead">
From ideation to deployment till outreach, we have something in store to offer you for every stage of your business endeavour.
</p>
</div>
</div> <!-- end about-desc -->
<div class="row services-list block-1-3 block-m-1-2 block-tab-full">
<div class="col-block service-item " data-aos="fade-up">
<div class="service-icon service-icon--brand-identity">
<i class="icon-tv"></i>
</div>
<div class="service-text">
<h3 class="h4">Brand Identity</h3>
<p>Our team of strategists will help you carve a niche in your segment by helping you discover your brand voice through SEO, SEM and CPC Advertising, Unique content creation and Social Media and LinkedIn handle management generating more visibility, leads and sales.
</p>
</div>
</div>
<div class="col-block service-item" data-aos="fade-up">
<div class="service-icon service-icon--illustration">
<i class="icon-group"></i>
</div>
<div class="service-text">
<h3 class="h4">Graphic & Print Design</h3>
<p>
Our team of graphic designers can help you with Logos, Illustrations, Print Materials, Corporate Literature, Business Cards, Flyers, Brochures and everything else that needs a creative touch.
</p>
</div>
</div>
<div class="col-block service-item" data-aos="fade-up">
<div class="service-icon service-icon--web-design">
<i class="icon-earth"></i>
</div>
<div class="service-text">
<h3 class="h4">Web Design</h3>
<p>
We develop all genres of websites catering to e-commerce, restaurants, medical practitioners, businesses to name a few. We work will all major CMS including Drupal, Wordpress, Magento. Our expertise fathoms across all major frontend and backend tech-stacks.
</p>
</div>
</div>
<div class="col-block service-item" data-aos="fade-up">
<div class="service-icon service-icon--product-strategy">
<i class="icon-cube"></i>
</div>
<div class="service-text">
<h3 class="h4">Product & Marketing Strategy</h3>
<p>
We can help you identify the most fitting venues and get your products and ads infront of your most ideal audience. Through Social Media Marketing we will help you succeed in the 21st Century by putting you where people are : on social media platforms.
</p>
</div>
</div>
<div class="col-block service-item" data-aos="fade-up">
<div class="service-icon service-icon--ui-design">
<i class="icon-window"></i>
</div>
<div class="service-text">
<h3 class="h4">UI/UX Design</h3>
<p>Our team of designers have experience with all major graphics and prototyping tools including Adobe Creative Suite, Sketch, Figma, Indesign and Principle helping you to plan and architect how an app or site will function from a user perspective.
</p>
</div>
</div>
<div class="col-block service-item" data-aos="fade-up">
<div class="service-icon service-icon--mobile-dev">
<i class="icon-lego-block"></i>
</div>
<div class="service-text">
<h3 class="h4">Mobile Development</h3>
<p>
Looking for a native app for your venture, we can help. With experienced iOS and Android developers onboard we can help you to provide an unparalleled user experience to your customers through a mobile apps.
</p>
</div>
</div>
</div> <!-- end services-list -->
</section> <!-- end s-services -->
<!-- works
================================================== -->
<section id='works' class="s-works">
<div class="row section-header" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead">Featured Works</h3>
<h1 class="display-1">These are some of our recent design projects and we are so excited to show them to you.</h1>
</div>
</div> <!-- end section-header -->
<div class="row masonry-wrap">
<div class="masonry">
<div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="images/portfolio/gallery/g-ofca.png" class="thumb-link" title="OFCA India" data-size="1050x700">
<img src="images/portfolio/ofca.png"
srcset="images/portfolio/ofca.png 1x, images/portfolio/[email protected] 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
OFCA India
</h3>
<p class="item-folio__cat">
Web and Logo Design
</p>
</div>
<a href="http://www.ofcaindia.com/" target="_blank" onclick="window.open('http://www.ofcaindia.com/') " class="item-folio__project-link" >
Project Link
</a>
<div class="item-folio__caption">
<p></p>
</div>
</div> <!-- end item-folio -->
</div> <!-- end masonry__brick -->
<div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="images/portfolio/gallery/g-vestir.png" class="thumb-link" title="Vestir" data-size="1050x700">
<img src="images/portfolio/vestir.png"
srcset="images/portfolio/vestir.png 1x, images/portfolio/[email protected] 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Vestir
</h3>
<p class="item-folio__cat">
Web Design & UI Walkthrough
</p>
</div>
<a href="http://www.vestir.in/" target="_blank" onclick="window.open('http://www.vestir.in/') " class="item-folio__project-link" >
Project Link
</a>
<span class="item-folio__caption">
<p>Vestir's Official Website with Single Page Landing including Custom Mockups.</p>
</span>
</div> <!-- end item-folio -->
</div> <!-- end masonry__brick -->
<!-- <div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="images/portfolio/gallery/g-woodcraft.jpg" class="thumb-link" title="Woodcraft" data-size="1050x700">
<img src="images/portfolio/woodcraft.jpg"
srcset="images/portfolio/hcf.png 1x, images/portfolio/[email protected] 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Woodcraft
</h3>
<p class="item-folio__cat">
Branding
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
Project Link
</a>
<span class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</span>
</div> <!-- end item-folio -->
<!-- </div> <!-- end masonry__brick --> --> -->
<div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="images/portfolio/gallery/g-stu1.png" class="thumb-link" title="StuOps" data-size="1050x700">
<img src="images/portfolio/stu1.png"
srcset="images/portfolio/stu1.png 1x, images/portfolio/[email protected] 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
StuOps
</h3>
<p class="item-folio__cat">
Web Development`
</p>
</div>
<a href="https://www.stuops.com/" target="_blank" onclick="window.open('https://www.stuops.com/') " class="item-folio__project-link" >
Project Link
</a>
<span class="item-folio__caption">
<p></p>
</span>
</div> <!-- end item-folio -->
</div> <!-- end masonry__brick -->
<div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="images/portfolio/gallery/g-hcf1.png" class="thumb-link" title="Hackference India" data-size="1050x700">
<img src="images/portfolio/hcf1.png"
srcset="images/portfolio/hcf1.png 1x, images/portfolio/[email protected] 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Hackference India
</h3>
<p class="item-folio__cat">
Web Design with Content Creation
</p>
</div>
<a href="https://www.hackference.in/" target="_blank" onclick="window.open('https://www.hackference.in/') " class="item-folio__project-link" >
Project Link
</a>
<span class="item-folio__caption">
<p></p>
</span>
</div> <!-- end item-folio -->
</div> <!-- end masonry__brick -->
<div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="images/portfolio/gallery/g-vestir1.png" class="thumb-link" title="Vestir Flow" data-size="1050x700">
<img src="images/portfolio/vestir1.png"
srcset="images/portfolio/vestir1.png 1x, images/portfolio/[email protected] 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Vestir Web Flow & Logo
</h3>
<p class="item-folio__cat">
Branding
</p>
</div>
<a href="http://www.vestir.in/" target="_blank" onclick="window.open('http://www.vestir.in/') " class="item-folio__project-link" >
Project Link
</a>
<span class="item-folio__caption">
<p></p>
</span>
</div> <!-- end item-folio -->
</div> <!-- end masonry__brick -->
</div> <!-- end masonry -->
</div> <!-- end masonry-wrap -->
<!--
<div class="testimonials-wrap" data-aos="fade-up">
<div class="row">
<div class="col-full testimonials-header">
<h2 class="h1">What Clients Are Saying.</h2>
</div>
</div>
<div class="row testimonials">
<div class="col-full testimonials__slider">
<div class="testimonials__slide">
<img src="images/avatars/user-01.jpg" alt="Author image" class="testimonials__avatar">
<p>Qui ipsam temporibus quisquam velMaiores eos cumque distinctio nam accusantium ipsum.
Laudantium quia consequatur molestias delectus culpa facere hic dolores aperiam. Accusantium quos qui praesentium corpori.</p>
<div class="testimonials__author">
Tim Cook
<span>CEO, Apple</span>
</div>
</div> <!-- end testimonials__slide -->
<!-- <div class="testimonials__slide">
<img src="images/avatars/user-05.jpg" alt="Author image" class="testimonials__avatar">
<p>Excepturi nam cupiditate culpa doloremque deleniti repellat. Veniam quos repellat voluptas animi adipisci.
Nisi eaque consequatur. Quasi voluptas eius distinctio. Atque eos maxime. Qui ipsam temporibus quisquam vel.</p>
<div class="testimonials__author">
Sundar Pichai
<span>CEO, Google</span>
</div>
</div> <!-- end testimonials__slide -->
<!-- <div class="testimonials__slide">
<img src="images/avatars/user-02.jpg" alt="Author image" class="testimonials__avatar">
<p>Repellat dignissimos libero. Qui sed at corrupti expedita voluptas odit. Nihil ea quia nesciunt. Ducimus aut sed ipsam.
Autem eaque officia cum exercitationem sunt voluptatum accusamus. Quasi voluptas eius distinctio.</p>
<div class="testimonials__author">
Satya Nadella
<span>CEO, Microsoft</span>
</div>
</div> <!-- end testimonials__slide -->
<!--
</div> <!-- end testimonials__slider -->
<!-- </div> <!-- end testimonials -->
<!-- </div> <!-- end testimonials-wrap -->
</section> <!-- end s-works -->
<!-- stats
================================================== -->
<section id="stats" class="s-stats">
<div class="row stats block-1-4 block-m-1-2 block-mob-full" data-aos="fade-up">
<div class="col-block stats__col ">
<div class="stats__count">129</div>
<h5>Case Studies</h5>
</div>
<div class="col-block stats__col">
<div class="stats__count">1209</div>
<h5>Cups of Coffee</h5>
</div>
<div class="col-block stats__col">
<div class="stats__count">105</div>
<h5>Projects Completed</h5>
</div>
<div class="col-block stats__col">
<div class="stats__count">103</div>
<h5>Happy Clients</h5>
</div>
</div> <!-- end stats -->
</section> <!-- end s-stats -->
<!-- contact
================================================== -->
<section id="contact" class="s-contact">
<div class="row section-header" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead subhead--light">Contact Us</h3>
<h1 class="display-1 display-1--light">Get in touch and let's make something great together. Let's turn your idea into an even greater product.</h1>
<a class="btn btn--primary btn--medium" href="https://forms.gle/G98D4smvkxtAWMJg6">Get in Touch</a>
</div>
</div> <!-- end section-header -->
<div class="row">
<div class="col-full contact-main" data-aos="fade-up">
<p>
<a href="mailto:[email protected]" class="contact-email">[email protected]</a>
<span class="contact-number">+91 9460 521 861 / +91 8093 196 686 </span>
</p>
</div> <!-- end contact-main -->
</div> <!-- end row -->
<div class="row">
<div class="col-five tab-full contact-secondary" data-aos="fade-up">
<h3 class="subhead subhead--light">Where To Find Us</h3>
<p class="contact-address">
Techno Business Incubator<br>
Jaipur, RJ<br>
302012 IN
</p>
</div> <!-- end contact-secondary -->
<div class="col-five tab-full contact-secondary" data-aos="fade-up">
<h3 class="subhead subhead--light">Follow Us</h3>
<ul class="contact-social">
<li>
<a href="#0"><i class="fab fa-facebook"></i></a>
</li>
<li>
<a href="#0"><i class="fab fa-twitter"></i></a>
</li>
<li>
<a href="#0"><i class="fab fa-instagram"></i></a>
</li>
<li>
<a href="#0"><i class="fab fa-behance"></i></a>
</li>
<li>
<a href="#0"><i class="fab fa-dribbble"></i></a>
</li>
</ul> <!-- end contact-social -->
<div class="contact-subscribe">
<form id="mc-form" class="group mc-form" novalidate="true">
<input type="email" value="" name="EMAIL" class="email" id="mc-email" placeholder="Email Address" required="">
<input type="submit" name="subscribe" value="Subscribe">
<label for="mc-email" class="subscribe-message"></label>
</form>
</div> <!-- end contact-subscribe -->
</div> <!-- end contact-secondary -->
</div> <!-- end row -->
<div class="row">
<div class="col-full cl-copyright">
<span><!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. -->
Copyright ©<script>document.write(new Date().getFullYear());</script> All rights reserved. <!--This template is made with <i class="fa fa-heart" aria-hidden="true"></i> by <a href="https://colorlib.com" target="_blank">Colorlib</a>
<!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. --></span>
</div>
</div>
<div class="cl-go-top">
<a class="smoothscroll" title="Back to Top" href="#top"><i class="icon-arrow-up" aria-hidden="true"></i></a>
</div>
</section> <!-- end s-contact -->
<!-- photoswipe background
================================================== -->
<div aria-hidden="true" class="pswp" role="dialog" tabindex="-1">
<div class="pswp__bg"></div>
<div class="pswp__scroll-wrap">
<div class="pswp__container">
<div class="pswp__item"></div>
<div class="pswp__item"></div>
<div class="pswp__item"></div>
</div>
<div class="pswp__ui pswp__ui--hidden">
<div class="pswp__top-bar">
<div class="pswp__counter"></div><button class="pswp__button pswp__button--close" title="Close (Esc)"></button> <button class="pswp__button pswp__button--share" title=
"Share"></button> <button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button> <button class="pswp__button pswp__button--zoom" title=
"Zoom in/out"></button>
<div class="pswp__preloader">
<div class="pswp__preloader__icn">
<div class="pswp__preloader__cut">
<div class="pswp__preloader__donut"></div>
</div>
</div>
</div>
</div>
<div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">
<div class="pswp__share-tooltip"></div>
</div><button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)"></button> <button class="pswp__button pswp__button--arrow--right" title=
"Next (arrow right)"></button>
<div class="pswp__caption">
<div class="pswp__caption__center"></div>
</div>
</div>
</div>
</div> <!-- end photoSwipe background -->
<!-- preloader
================================================== -->
<div id="preloader">
<div id="loader">
</div>
</div>
<!-- Java Script
================================================== -->
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<!-- ==================tawk.to code -->
<!--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/5ccd031dd07d7e0c6391dd4a/default';
s1.charset='UTF-8';
s1.setAttribute('crossorigin','*');
s0.parentNode.insertBefore(s1,s0);
})();
</script>
<!--End of Tawk.to Script-->
</body>
</html>