-
Notifications
You must be signed in to change notification settings - Fork 1
/
index5.html
1155 lines (1004 loc) · 56.6 KB
/
index5.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Welcome to nsnco.in - Communicate Using Entertainment Formats</title>
<meta content="" name="descriptison">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/new-logo.png" rel="icon">
<link href="assets/img/new-logo.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/icofont/icofont.min.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/venobox/venobox.css" rel="stylesheet">
<link href="assets/vendor/animate.css/animate.min.css" rel="stylesheet">
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet">
<link href="assets/vendor/owl.carousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-datepicker/css/bootstrap-datepicker.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
</head>
<body>
<!-- ======= Top Bar ======= -->
<div id="topbar" class="d-none d-lg-flex align-items-center fixed-top">
<div class="container d-flex">
<div class="contact-info mr-auto">
<i class="icofont-envelope"></i> <a href="mailto:[email protected]">[email protected]</a>
<i class="icofont-phone"></i> +91 7838 5454 99
<i class="icofont-google-map"></i> 66, C7, SDA, N Delhi
</div>
<div class="social-links">
<a target="_blank" href="https://in.linkedin.com/in/n-shankar-narayan-a786875" class="linkedin"><i class="icofont-linkedin"></i></i></a>
</div>
</div>
</div>
<!-- ======= Header ======= -->
<header id="header" class="fixed-top">
<div class="container d-flex align-items-center">
<img src="assets/img/new-logo.png" alt="" class="img-fluid" height ="80" width = "100"><h1 class="logo mr-auto"><a href="index.html"> CO</a></h1>
<!-- Uncomment below if you prefer to use an image logo -->
<!-- <a href="index.html" class="logo mr-auto"><img src="assets/img/logo.png" alt="" class="img-fluid"></a>-->
<nav class="nav-menu d-none d-lg-block">
<ul>
<li class="active"><a href="index.html">Home</a></li>
<li><a href="#about">Entertain</a></li>
<li class="drop-down"><a href="#services">Services</a>
<ul>
<li><a href="#services">Music</a></li>
<li><a href="#services">Reality</a></li>
<li><a href="#services">Fictional</a></li>
</ul>
</li>
<li><a href="#departments">Delivery</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav><!-- .nav-menu -->
<a href="#appointment" class="appointment-btn scrollto" style="margin-right:-10px;">Artists Connect</a>
</div>
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero" class="d-flex align-items-center">
<div class="container">
<h1 style="color: white; margin-top:50px;">COMMUNICATE USING ENTERTAINMENT FORMATS</h1>
<h2 style="color: white">Music Content | Reality Content | Fictional Content</h2>
<a href="#about" class="btn-get-started scrollto" >Why Entertain?</a>
</div>
</section><!-- End Hero -->
<main id="main">
<!-- ======= Why Us Section ======= -->
<section id="why-us" class="why-us">
<div class="container">
<div class="row">
<div class="col-lg-4 d-flex align-items-stretch">
<div class="content">
<h3>Why Choose NsN CO?</h3>
<p>
NsN CO’s is a consultancy setup with core proficiency in designing efficient communication mechanisms. Working along with our production partners, we enable organizations to create own entertainment content.
</p>
<div class="text-center">
<a href="#" class="more-btn">Why Entertain? <i class="bx bx-chevron-right"></i></a>
</div>
</div>
</div>
<div class="col-lg-8 d-flex align-items-stretch">
<div class="icon-boxes d-flex flex-column justify-content-center">
<div class="row">
<div class="col-xl-4 d-flex align-items-stretch">
<div class="icon-box mt-4 mt-xl-0">
<i class="bx bx-receipt"></i>
<h4>Process Driven Delivery</h4>
<p>Our consultancy approach is processes driven and assures content deliveries to happen as per set guidelines and in an assured manner.</p>
</div>
</div>
<div class="col-xl-4 d-flex align-items-stretch">
<div class="icon-box mt-4 mt-xl-0">
<i class="bx bx-cube-alt"></i>
<h4>Agile Production Process</h4>
<p>We are enabling seamless efficiencies for each project entering in our supply chain of content production, keeping intact their objectives.</p>
</div>
</div>
<div class="col-xl-4 d-flex align-items-stretch">
<div class="icon-box mt-4 mt-xl-0">
<i class="bx bx-images"></i>
<h4>Assure Require Periodicity</h4>
<p>We create video content for streaming on mainline and social media channels, with a customizable periodic cycle, like once or twice weekly or monthly.</p>
</div>
</div>
</div>
</div><!-- End .content-->
</div>
</div>
</div>
</section><!-- End Why Us Section -->
<!-- ======= About Section ======= -->
<section id="about" class="about">
<div class="container-fluid">
<div class="row">
<div class="col-xl-5 col-lg-6 video-box d-flex justify-content-center align-items-stretch" style="background-size: contain;">
<a href="https://www.youtube.com/watch?v=Xh4njyvfECo" class="venobox play-btn mb-4" data-vbtype="video" data-autoplay="true"></a>
</div>
<div class="col-xl-7 col-lg-6 icon-boxes d-flex flex-column align-items-stretch justify-content-center py-5 px-lg-5">
<h3>Producing Entertainment Content is the way forward in Advertising Communication</h3>
<p>Seeking Entertainment, while our audiences consume content across platforms, advertising is becoming avoidable and redundant. The way for a communication to capture mind space amongst audiences is being an Entertainment Content.</p>
<div class="icon-box">
<div class="icon"><i class="bx bx-fingerprint"></i></div>
<h4 class="title">Get Masses</h4>
<p class="description">Creating pieces of entertaining communication content which can spread</p>
</div>
<div class="icon-box">
<div class="icon"><i class="bx bx-gift"></i></div>
<h4 class="title">Happy Audiences</h4>
<p class="description">Showing communication in formats which are more likable by audiences</p>
</div>
<div class="icon-box">
<div class="icon"><i class="bx bx-atom"></i></div>
<h4 class="title">Long Life</h4>
<p class="description">Entertainment content formats can be relevant for long period</p>
</div>
</div>
</div>
</div>
</section><!-- End About Section -->
<!-- ======= About Section ======= -->
<!-- <section id="about" class="about">
<div class="section-title">
<h2>Producing Entertainment Content is the way forward in Advertising Communication</h2>
<p>Seeking Entertainment, while our audiences consume content across platforms, advertising is becoming avoidable and redundant. The way for a communication to capture mind space amongst audiences is being an Entertainment Content.</p>
</div>
<div class="container">
<div class="row">
<div class="col-lg-6 video-box" style="height:150px; width:100%;">
<a href="https://www.youtube.com/watch?v=Xh4njyvfECo" class="venobox play-btn mb-4" data-vbtype="video" data-autoplay="true"></a>
</div>
<div class="col-lg-6 video-box" style="height:150px; width:100%;">
<a href="https://www.youtube.com/watch?v=Xh4njyvfECo" class="venobox play-btn mb-4" data-vbtype="video" data-autoplay="true"></a>
</div>
<div class="col-lg-6 video-box" style="height:150px; width:100%;">
<a href="https://www.youtube.com/watch?v=Xh4njyvfECo" class="venobox play-btn mb-4" data-vbtype="video" data-autoplay="true"></a>
</div>
<div class="col-lg-6 video-box" style="height:150px; width:100%;">
<a href="https://www.youtube.com/watch?v=Xh4njyvfECo" class="venobox play-btn mb-4" data-vbtype="video" data-autoplay="true"></a>
</div>
-->
<!-- <div class="col-xl-7 col-lg-6 icon-boxes d-flex flex-column align-items-stretch justify-content-center py-5 px-lg-5"> -->
<!-- <h3>Producing Entertainment Content is the way forward in Advertising Communication</h3> -->
<!-- <p>Seeking Entertainment, while our audiences consume content across platforms, advertising is becoming avoidable and redundant. The way for a communication to capture mind space amongst audiences is being an Entertainment Content.</p> -->
<!-- <div class="icon-box"> -->
<!-- <div class="icon"><i class="bx bx-fingerprint"></i></div> -->
<!-- <h4 class="title">Get Masses</h4> -->
<!-- <p class="description">Creating pieces of entertaining communication content which can spread</p> -->
<!-- </div> -->
<!-- <div class="icon-box"> -->
<!-- <div class="icon"><i class="bx bx-gift"></i></div> -->
<!-- <h4 class="title">Happy Audiences</h4> -->
<!-- <p class="description">Showing communication in formats which are more likable by audiences</p> -->
<!-- </div> -->
<!-- <div class="icon-box"> -->
<!-- <div class="icon"><i class="bx bx-atom"></i></div> -->
<!-- <h4 class="title">Long Life</h4> -->
<!-- <p class="description">Entertainment content formats can be relevant for long period</p> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<!-- </section> -->
<!-- End About Section -->
<!-- ======= Counts Section ======= -->
<!-- <section id="counts" class="counts"> -->
<!-- <div class="container"> -->
<!-- <div class="row"> -->
<!-- <div class="col-lg-3 col-md-6"> -->
<!-- <div class="count-box"> -->
<!-- <i class="icofont-doctor-alt"></i> -->
<!-- <span data-toggle="counter-up">XX</span> -->
<!-- <p>Musicians</p> -->
<!-- </div> -->
<!-- </div> -->
<!-- <div class="col-lg-3 col-md-6 mt-5 mt-md-0"> -->
<!-- <div class="count-box"> -->
<!-- <i class="icofont-patient-bed"></i> -->
<!-- <span data-toggle="counter-up">XX</span> -->
<!-- <p>Writers</p> -->
<!-- </div> -->
<!-- </div> -->
<!-- <div class="col-lg-3 col-md-6 mt-5 mt-lg-0"> -->
<!-- <div class="count-box"> -->
<!-- <i class="icofont-laboratory"></i> -->
<!-- <span data-toggle="counter-up">XX</span> -->
<!-- <p>Film Makers</p> -->
<!-- </div> -->
<!-- </div> -->
<!-- <div class="col-lg-3 col-md-6 mt-5 mt-lg-0"> -->
<!-- <div class="count-box"> -->
<!-- <i class="icofont-award"></i> -->
<!-- <span data-toggle="counter-up">XX</span> -->
<!-- <p>Content</p> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<!-- </section><!-- End Counts Section -->
<!-- ======= Services Section ======= -->
<section id="services" class="services">
<div class="container">
<div class="section-title">
<h2>Services</h2>
<p>We are evolving formats as we move ahead in this journey, exploring more and more entertaining formats of communication contents.</p>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 d-flex align-items-stretch">
<div class="icon-box">
<div class="icon"><i class="icofont-heart-beat"></i></div>
<h4>Music Formats</h4>
<p>Right from lyrics, to audio and video production</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4 mt-md-0">
<div class="icon-box">
<div class="icon"><i class="icofont-drug"></i></div>
<h4>Reality Formats</h4>
<p>Designing shows formats, with documentary style production</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4 mt-lg-0">
<div class="icon-box">
<div class="icon"><i class="icofont-dna-alt-2"></i></div>
<h4>Fictional Formats</h4>
<p>Right from scripting, to production planning, till execution</p>
</div>
</div>
</div>
</section><!-- End Services Section -->
<!-- ======= Appointment Section ======= -->
<section id="appointment" class="appointment section-bg">
<div class="container">
<div class="section-title">
<h2>Artists Connect</h2>
<p>We believe the world is our studio, and we are all artists. Showcasing talent to the world gives true meaning to us. Singers, composers, writers, actors, film makers, please let’s connect to know more.</p>
</div>
<form action="forms/artistConnect.php" id = "myForm"method="post" role="form" class="php-email-form">
<div class="form-row">
<div class="col-md-4 form-group">
<input type="text" name="name" class="form-control" id="name" placeholder="Your Name" data-rule="minlen:4" data-msg="Please enter at least 4 chars">
<div class="validate"></div>
</div>
<div class="col-md-4 form-group">
<input type="email" class="form-control" name="email" id="email" placeholder="Your Email" data-rule="email" data-msg="Please enter a valid email">
<div class="validate"></div>
</div>
<div class="col-md-4 form-group">
<input type="tel" class="form-control" name="phone" id="phone" placeholder="Your Phone" data-rule="minlen:4" data-msg="Please enter at least 4 chars">
<div class="validate"></div>
</div>
</div>
<div class="form-row">
<div class="col-md-4 form-group">
<input type="city" name="city" class="form-control" id="city" placeholder="Your City" data-rule="minlen:4" data-msg="Please enter at least 4 chars">
<div class="validate"></div>
</div>
<div class="col-md-4 form-group">
<select name="skill" id="skill" class="form-control">
<option value="">Primary Skill</option>
<option value="Singer">Singer</option>
<option value="Writer">Writer</option>
<option value="Actor">Actor</option>
<option value="Film Maker">Film Maker</option>
<option value="Comedian">Comedian</option>
<option value="Graphics">Graphics</option>
<option value="Video Editing">Video Editing</option>
<option value="Composer">Composer</option>
<option value="Music">Music</option>
<option value="Mixing">Mixing</option>
<option value="Production Design">Production Design</option>
<option value="Videographer">Videographer</option>
</select>
<div class="validate"></div>
</div>
<div class="col-md-4 form-group">
<select name="interest" id="interest" class="form-control">
<option value="">Your Interest</option>
<option value="Music Content">Music Content</option>
<option value="Reality Content">Reality Content</option>
<option value="Fictional Content">Fictional Content</option>
</select>
<div class="validate"></div>
</div>
</div>
<div class="form-group">
<textarea class="form-control" name="message" id ="message" rows="5" placeholder="Message (Optional)"></textarea>
<div class="validate"></div>
</div>
<div class="mb-3">
<div class="loading">Loading</div>
<div class="error-message"></div>
<div class="sent-message">Your request has been sent successfully. Thank you!</div>
</div>
<div class="text-center"><button type="submit">Submit</button></div>
</form>
</div>
</section><!-- End Appointment Section -->
<!-- ======= Departments Section ======= -->
<section id="departments" class="departments">
<div class="container">
<div class="section-title">
<h2>Delivery</h2>
<p>Working on retainer model, we would be delivering content pieces periodically following a set methodology which enables it.</p>
</div>
<!-- <div id="accordion">
<div class="card">
<div class="card-header">
<a class="card-link" data-toggle="collapse" href="#collapseOne">
Briefing
</a>
</div>
<div id="collapseOne" class="collapse show" data-parent="#accordion">
<div class="card-body">
<img src="assets/img/departments-1.jpg" alt="" class="img-fluid">
<br/>
<p class="font-italic">We would do a brand image analysis of the organization basis briefing session with team.</p>
<p>A brand personality would be designed, approved, and a content format would be agreed on.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<a class="collapsed card-link" data-toggle="collapse" href="#collapseTwo">
Sampling
</a>
</div>
<div id="collapseTwo" class="collapse" data-parent="#accordion">
<div class="card-body">
<img src="assets/img/departments-2.jpg" alt="" class="img-fluid">
<br/>
<p class="font-italic">We would create a sample content piece that would get approved for subsequent steps.</p>
<p>This would be chargeable, with a seriousness fee.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<a class="collapsed card-link" data-toggle="collapse" href="#collapseThree">
Contract
</a>
</div>
<div id="collapseThree" class="collapse" data-parent="#accordion">
<div class="card-body">
<img src="assets/img/departments-3.jpg" alt="" class="img-fluid">
<br/>
<p class="font-italic">An annual contract would be signed, with specifics of assign format/s and content frequency.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<a class="collapsed card-link" data-toggle="collapse" href="#collapseFour">
Servicing
</a>
</div>
<div id="collapseFour" class="collapse" data-parent="#accordion">
<div class="card-body">
<img src="assets/img/departments-4.jpg" alt="" class="img-fluid">
<br/>
<p class="font-italic">Our teams will ensure quality delivery of entertainment content for distribution as per periodicity.</p>
</div>
</div>
</div>
</div> -->
<div class="row">
<div class="col-md-3"style="align-item:center;">
<img src="assets/img/departments-1.jpg" alt="" class="img-fluid">
<div class ="paragraph">
<h4 style ="text-align:center;padding-top:15px;">Briefing</h4>
<p class="font-italic" style ="text-align:center;">We would do a brand image analysis of the organization basis briefing session with team.</p>
<p style ="text-align:center;">A brand personality would be designed, approved, and a content format would be agreed on.</p>
</div>
</div>
<div class="col-md-3" style="align-item:center;">
<img src="assets/img/departments-2.jpg" alt="" class="img-fluid" >
<div class ="paragraph">
<h4 style ="text-align:center;padding-top:15px;">Sampling</h4>
<p class="font-italic" style ="text-align:center;">We would create a sample content piece that would get approved for subsequent steps.</p>
<p style ="text-align:center;">This would be chargeable, with a seriousness fee.</p>
</div>
</div>
<div class="col-md-3" style="align-item:center;">
<img src="assets/img/departments-3.jpg" alt="" class="img-fluid" style="height:170px; width:278px;">
<div class ="paragraph">
<h4 style ="text-align:center;padding-top:15px;">Contract</h4>
<p class="font-italic" style ="text-align:center;">An annual contract would be signed, with specifics of assign format/s and content frequency.</p>
</div>
</div>
<div class="col-md-3" style="align-item:center;">
<img src="assets/img/departments-4.jpg" alt="" class="img-fluid" style="height:170px; width:278px;">
<div class ="paragraph">
<h4 style ="text-align:center;padding-top:15px;">Servicing</h4>
<p class="font-italic"style ="text-align:center;">Our teams will ensure quality delivery of entertainment content for distribution as per periodicity.</p>
</div>
</div>
</div>
</div>
</div>
<!-- <div class="container"> -->
<!-- <div class="section-title"> -->
<!-- <h2>Delivery</h2> -->
<!-- <p>Working on retainer model, we would be delivering content pieces periodically following a set methodology which enables it.</p> -->
<!-- </div> -->
<!-- <div class="row"> -->
<!-- Accordion -->
<!-- <div class="accordion-container" id="accordionOne"> -->
<!-- <h2>Accelerate Business Growth To Improve Revenue Numbers</h2> -->
<!-- <div class="item"> -->
<!-- <div id="headingOne"> -->
<!-- <span data-toggle="collapse" data-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne" role="button"> -->
<!-- <span class="circle-numbering">1</span><span class="accordion-title">Briefing</span> -->
<!-- </span> -->
<!-- </div> -->
<!-- <div id="collapseOne" class="collapse show" aria-labelledby="headingOne" data-parent="#accordionOne"> -->
<!-- <div class="accordion-body"> -->
<!-- <p>We would do a brand image analysis of the organization basis briefing session with team.</p> -->
<!-- <p>A brand personality would be designed, approved, and a content format would be agreed on.</p> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> <!-- end of item -->
<!-- <div class="item"> -->
<!-- <div id="headingTwo"> -->
<!-- <span class="collapsed" data-toggle="collapse" data-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo" role="button"> -->
<!-- <span class="circle-numbering">2</span><span class="accordion-title">Sampling</span> -->
<!-- </span> -->
<!-- </div> -->
<!-- <div id="collapseTwo" class="collapse" aria-labelledby="headingTwo" data-parent="#accordionOne"> -->
<!-- <div class="accordion-body"> -->
<!-- <p>We would create a sample content piece that would get approved for subsequent steps.</p> -->
<!-- <p>This would be chargeable, with a seriousness fee.</p> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> <!-- end of item -->
<!-- <div class="item"> -->
<!-- <div id="headingThree"> -->
<!-- <span class="collapsed" data-toggle="collapse" data-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree" role="button"> -->
<!-- <span class="circle-numbering">3</span><span class="accordion-title">Contract</span> -->
<!-- </span> -->
<!-- </div> -->
<!-- <div id="collapseThree" class="collapse" aria-labelledby="headingThree" data-parent="#accordionOne"> -->
<!-- <div class="accordion-body"> -->
<!-- <p>An annual contract would be signed, with specifics of assign format/s and content frequency.</p> -->
<!-- </div> -->
<!-- </div> -->
<!-- <!-- <!-- </div> <!-- end of item -->
<!-- </div> -->
<!-- <div class="item"> -->
<!-- <div id="headingFour"> -->
<!-- <span class="collapsed" data-toggle="collapse" data-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree" role="button"> -->
<!-- <span class="circle-numbering">4</span><span class="accordion-title">Servicing</span> -->
<!-- </span> -->
<!-- </div> -->
<!-- <div id="collapseThree" class="collapse" aria-labelledby="headingThree" data-parent="#accordionOne"> -->
<!-- <div class="accordion-body"> -->
<!-- <p>Our teams will ensure quality delivery of entertainment content for distribution as per periodicity.</p> -->
<!-- </div> -->
<!-- </div> -->
<!-- <!-- <!-- </div> <!-- end of item -->
<!-- </div> -->
<!-- <div class="col-lg-3"> -->
<!-- <ul class="nav nav-tabs flex-column"> -->
<!-- <li class="nav-item"> -->
<!-- <a class="nav-link active show" data-toggle="tab" href="#tab-1">Briefing</a> -->
<!-- </li> -->
<!-- <li class="nav-item"> -->
<!-- <a class="nav-link" data-toggle="tab" href="#tab-2">Sampling</a> -->
<!-- </li> -->
<!-- <li class="nav-item"> -->
<!-- <a class="nav-link" data-toggle="tab" href="#tab-3">Contract</a> -->
<!-- </li> -->
<!-- <li class="nav-item"> -->
<!-- <a class="nav-link" data-toggle="tab" href="#tab-4">Servicing</a> -->
<!-- </li> -->
<!-- </ul> -->
<!-- </div> -->
<!-- <div class="col-lg-9 mt-4 mt-lg-0"> -->
<!-- <div class="tab-content"> -->
<!-- <div class="tab-pane active show" id="tab-1"> -->
<!-- <div class="row"> -->
<!-- <div class="col-lg-8 details order-2 order-lg-1"> -->
<!-- <h3>Briefing</h3> -->
<!-- <p class="font-italic">We would do a brand image analysis of the organization basis briefing session with team.</p> -->
<!-- <p>A brand personality would be designed, approved, and a content format would be agreed on.</p> -->
<!-- </div> -->
<!-- <div class="col-lg-4 text-center order-1 order-lg-2"> -->
<!-- <img src="assets/img/departments-1.jpg" alt="" class="img-fluid"> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<!-- <div class="tab-pane" id="tab-2"> -->
<!-- <div class="row"> -->
<!-- <div class="col-lg-8 details order-2 order-lg-1"> -->
<!-- <h3>Sampling</h3> -->
<!-- <p class="font-italic">We would create a sample content piece that would get approved for subsequent steps.</p> -->
<!-- <p>This would be chargeable, with a seriousness fee.</p> -->
<!-- </div> -->
<!-- <div class="col-lg-4 text-center order-1 order-lg-2"> -->
<!-- <img src="assets/img/departments-2.jpg" alt="" class="img-fluid"> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<!-- <div class="tab-pane" id="tab-3"> -->
<!-- <div class="row"> -->
<!-- <div class="col-lg-8 details order-2 order-lg-1"> -->
<!-- <h3>Contract</h3> -->
<!-- <p class="font-italic">An annual contract would be signed, with specifics of assign format/s and content frequency.</p> -->
<!-- </div> -->
<!-- <div class="col-lg-4 text-center order-1 order-lg-2"> -->
<!-- <img src="assets/img/departments-3.jpg" alt="" class="img-fluid"> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<!-- <div class="tab-pane" id="tab-4"> -->
<!-- <div class="row"> -->
<!-- <div class="col-lg-8 details order-2 order-lg-1"> -->
<!-- <h3>Servicing</h3> -->
<!-- <p class="font-italic">Our teams will ensure quality delivery of entertainment content for distribution as per periodicity.</p> -->
<!-- </div> -->
<!-- <div class="col-lg-4 text-center order-1 order-lg-2"> -->
<!-- <img src="assets/img/departments-4.jpg" alt="" class="img-fluid"> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
</section><!-- End Departments Section -->
<!-- ======= Doctors Section ======= -->
<!-- <section id="doctors" class="doctors"> -->
<!-- <div class="container"> -->
<!-- <div class="section-title"> -->
<!-- <h2>Doctors</h2> -->
<!-- <p>Magnam dolores commodi suscipit. Necessitatibus eius consequatur ex aliquid fuga eum quidem. Sit sint consectetur velit. Quisquam quos quisquam cupiditate. Et nemo qui impedit suscipit alias ea. Quia fugiat sit in iste officiis commodi quidem hic quas.</p> -->
<!-- </div> -->
<!-- <div class="row"> -->
<!-- <div class="col-lg-6"> -->
<!-- <div class="member d-flex align-items-start"> -->
<!-- <div class="pic"><img src="assets/img/doctors/doctors-1.jpg" class="img-fluid" alt=""></div> -->
<!-- <div class="member-info"> -->
<!-- <h4>Walter White</h4> -->
<!-- <span>Chief Medical Officer</span> -->
<!-- <p>Explicabo voluptatem mollitia et repellat qui dolorum quasi</p> -->
<!-- <div class="social"> -->
<!-- <a href=""><i class="ri-twitter-fill"></i></a> -->
<!-- <a href=""><i class="ri-facebook-fill"></i></a> -->
<!-- <a href=""><i class="ri-instagram-fill"></i></a> -->
<!-- <a href=""> <i class="ri-linkedin-box-fill"></i> </a> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<!-- <div class="col-lg-6 mt-4 mt-lg-0"> -->
<!-- <div class="member d-flex align-items-start"> -->
<!-- <div class="pic"><img src="assets/img/doctors/doctors-2.jpg" class="img-fluid" alt=""></div> -->
<!-- <div class="member-info"> -->
<!-- <h4>Sarah Jhonson</h4> -->
<!-- <span>Anesthesiologist</span> -->
<!-- <p>Aut maiores voluptates amet et quis praesentium qui senda para</p> -->
<!-- <div class="social"> -->
<!-- <a href=""><i class="ri-twitter-fill"></i></a> -->
<!-- <a href=""><i class="ri-facebook-fill"></i></a> -->
<!-- <a href=""><i class="ri-instagram-fill"></i></a> -->
<!-- <a href=""> <i class="ri-linkedin-box-fill"></i> </a> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<!-- <div class="col-lg-6 mt-4"> -->
<!-- <div class="member d-flex align-items-start"> -->
<!-- <div class="pic"><img src="assets/img/doctors/doctors-3.jpg" class="img-fluid" alt=""></div> -->
<!-- <div class="member-info"> -->
<!-- <h4>William Anderson</h4> -->
<!-- <span>Cardiology</span> -->
<!-- <p>Quisquam facilis cum velit laborum corrupti fuga rerum quia</p> -->
<!-- <div class="social"> -->
<!-- <a href=""><i class="ri-twitter-fill"></i></a> -->
<!-- <a href=""><i class="ri-facebook-fill"></i></a> -->
<!-- <a href=""><i class="ri-instagram-fill"></i></a> -->
<!-- <a href=""> <i class="ri-linkedin-box-fill"></i> </a> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<!-- <div class="col-lg-6 mt-4"> -->
<!-- <div class="member d-flex align-items-start"> -->
<!-- <div class="pic"><img src="assets/img/doctors/doctors-4.jpg" class="img-fluid" alt=""></div> -->
<!-- <div class="member-info"> -->
<!-- <h4>Amanda Jepson</h4> -->
<!-- <span>Neurosurgeon</span> -->
<!-- <p>Dolorum tempora officiis odit laborum officiis et et accusamus</p> -->
<!-- <div class="social"> -->
<!-- <a href=""><i class="ri-twitter-fill"></i></a> -->
<!-- <a href=""><i class="ri-facebook-fill"></i></a> -->
<!-- <a href=""><i class="ri-instagram-fill"></i></a> -->
<!-- <a href=""> <i class="ri-linkedin-box-fill"></i> </a> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<!-- </section><!-- End Doctors Section -->
<!-- ======= Frequently Asked Questions Section ======= -->
<!-- <section id="faq" class="faq section-bg"> -->
<!-- <div class="container"> -->
<!-- <div class="section-title"> -->
<!-- <h2>Frequently Asked Questions</h2> -->
<!-- <p>Magnam dolores commodi suscipit. Necessitatibus eius consequatur ex aliquid fuga eum quidem. Sit sint consectetur velit. Quisquam quos quisquam cupiditate. Et nemo qui impedit suscipit alias ea. Quia fugiat sit in iste officiis commodi quidem hic quas.</p> -->
<!-- </div> -->
<!-- <div class="faq-list"> -->
<!-- <ul> -->
<!-- <li data-aos="fade-up"> -->
<!-- <i class="bx bx-help-circle icon-help"></i> <a data-toggle="collapse" class="collapse" href="#faq-list-1">Non consectetur a erat nam at lectus urna duis? <i class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a> -->
<!-- <div id="faq-list-1" class="collapse show" data-parent=".faq-list"> -->
<!-- <p> -->
<!-- Feugiat pretium nibh ipsum consequat. Tempus iaculis urna id volutpat lacus laoreet non curabitur gravida. Venenatis lectus magna fringilla urna porttitor rhoncus dolor purus non. -->
<!-- </p> -->
<!-- </div> -->
<!-- </li> -->
<!-- <li data-aos="fade-up" data-aos-delay="100"> -->
<!-- <i class="bx bx-help-circle icon-help"></i> <a data-toggle="collapse" href="#faq-list-2" class="collapsed">Feugiat scelerisque varius morbi enim nunc? <i class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a> -->
<!-- <div id="faq-list-2" class="collapse" data-parent=".faq-list"> -->
<!-- <p> -->
<!-- Dolor sit amet consectetur adipiscing elit pellentesque habitant morbi. Id interdum velit laoreet id donec ultrices. Fringilla phasellus faucibus scelerisque eleifend donec pretium. Est pellentesque elit ullamcorper dignissim. Mauris ultrices eros in cursus turpis massa tincidunt dui. -->
<!-- </p> -->
<!-- </div> -->
<!-- </li> -->
<!-- <li data-aos="fade-up" data-aos-delay="200"> -->
<!-- <i class="bx bx-help-circle icon-help"></i> <a data-toggle="collapse" href="#faq-list-3" class="collapsed">Dolor sit amet consectetur adipiscing elit? <i class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a> -->
<!-- <div id="faq-list-3" class="collapse" data-parent=".faq-list"> -->
<!-- <p> -->
<!-- Eleifend mi in nulla posuere sollicitudin aliquam ultrices sagittis orci. Faucibus pulvinar elementum integer enim. Sem nulla pharetra diam sit amet nisl suscipit. Rutrum tellus pellentesque eu tincidunt. Lectus urna duis convallis convallis tellus. Urna molestie at elementum eu facilisis sed odio morbi quis -->
<!-- </p> -->
<!-- </div> -->
<!-- </li> -->
<!-- <li data-aos="fade-up" data-aos-delay="300"> -->
<!-- <i class="bx bx-help-circle icon-help"></i> <a data-toggle="collapse" href="#faq-list-4" class="collapsed">Tempus quam pellentesque nec nam aliquam sem et tortor consequat? <i class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a> -->
<!-- <div id="faq-list-4" class="collapse" data-parent=".faq-list"> -->
<!-- <p> -->
<!-- Molestie a iaculis at erat pellentesque adipiscing commodo. Dignissim suspendisse in est ante in. Nunc vel risus commodo viverra maecenas accumsan. Sit amet nisl suscipit adipiscing bibendum est. Purus gravida quis blandit turpis cursus in. -->
<!-- </p> -->
<!-- </div> -->
<!-- </li> -->
<!-- <li data-aos="fade-up" data-aos-delay="400"> -->
<!-- <i class="bx bx-help-circle icon-help"></i> <a data-toggle="collapse" href="#faq-list-5" class="collapsed">Tortor vitae purus faucibus ornare. Varius vel pharetra vel turpis nunc eget lorem dolor? <i class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a> -->
<!-- <div id="faq-list-5" class="collapse" data-parent=".faq-list"> -->
<!-- <p> -->
<!-- Laoreet sit amet cursus sit amet dictum sit amet justo. Mauris vitae ultricies leo integer malesuada nunc vel. Tincidunt eget nullam non nisi est sit amet. Turpis nunc eget lorem dolor sed. Ut venenatis tellus in metus vulputate eu scelerisque. -->
<!-- </p> -->
<!-- </div> -->
<!-- </li> -->
<!-- </ul> -->
<!-- </div> -->
<!-- </div> -->
<!-- </section><!-- End Frequently Asked Questions Section -->
<!-- ======= Testimonials Section ======= -->
<!-- <section id="testimonials" class="testimonials"> -->
<!-- <div class="container"> -->
<!-- <div class="owl-carousel testimonials-carousel"> -->
<!-- <div class="testimonial-wrap"> -->
<!-- <div class="testimonial-item"> -->
<!-- <img src="assets/img/testimonials/testimonials-1.jpg" class="testimonial-img" alt=""> -->
<!-- <h3>Saul Goodman</h3> -->
<!-- <h4>Ceo & Founder</h4> -->
<!-- <p> -->
<!-- <i class="bx bxs-quote-alt-left quote-icon-left"></i> -->
<!-- Proin iaculis purus consequat sem cure digni ssim donec porttitora entum suscipit rhoncus. Accusantium quam, ultricies eget id, aliquam eget nibh et. Maecen aliquam, risus at semper. -->
<!-- <i class="bx bxs-quote-alt-right quote-icon-right"></i> -->
<!-- </p> -->
<!-- </div> -->
<!-- </div> -->
<!-- <div class="testimonial-wrap"> -->
<!-- <div class="testimonial-item"> -->
<!-- <img src="assets/img/testimonials/testimonials-2.jpg" class="testimonial-img" alt=""> -->
<!-- <h3>Sara Wilsson</h3> -->
<!-- <h4>Designer</h4> -->
<!-- <p> -->
<!-- <i class="bx bxs-quote-alt-left quote-icon-left"></i> -->
<!-- Export tempor illum tamen malis malis eram quae irure esse labore quem cillum quid cillum eram malis quorum velit fore eram velit sunt aliqua noster fugiat irure amet legam anim culpa. -->
<!-- <i class="bx bxs-quote-alt-right quote-icon-right"></i> -->
<!-- </p> -->
<!-- </div> -->
<!-- </div> -->
<!-- <div class="testimonial-wrap"> -->
<!-- <div class="testimonial-item"> -->
<!-- <img src="assets/img/testimonials/testimonials-3.jpg" class="testimonial-img" alt=""> -->
<!-- <h3>Jena Karlis</h3> -->
<!-- <h4>Store Owner</h4> -->
<!-- <p> -->
<!-- <i class="bx bxs-quote-alt-left quote-icon-left"></i> -->
<!-- Enim nisi quem export duis labore cillum quae magna enim sint quorum nulla quem veniam duis minim tempor labore quem eram duis noster aute amet eram fore quis sint minim. -->
<!-- <i class="bx bxs-quote-alt-right quote-icon-right"></i> -->
<!-- </p> -->
<!-- </div> -->
<!-- </div> -->
<!-- <div class="testimonial-wrap"> -->
<!-- <div class="testimonial-item"> -->
<!-- <img src="assets/img/testimonials/testimonials-4.jpg" class="testimonial-img" alt=""> -->
<!-- <h3>Matt Brandon</h3> -->
<!-- <h4>Freelancer</h4> -->
<!-- <p> -->
<!-- <i class="bx bxs-quote-alt-left quote-icon-left"></i> -->
<!-- Fugiat enim eram quae cillum dolore dolor amet nulla culpa multos export minim fugiat minim velit minim dolor enim duis veniam ipsum anim magna sunt elit fore quem dolore labore illum veniam. -->
<!-- <i class="bx bxs-quote-alt-right quote-icon-right"></i> -->
<!-- </p> -->
<!-- </div> -->
<!-- </div> -->
<!-- <div class="testimonial-wrap"> -->
<!-- <div class="testimonial-item"> -->
<!-- <img src="assets/img/testimonials/testimonials-5.jpg" class="testimonial-img" alt=""> -->
<!-- <h3>John Larson</h3> -->
<!-- <h4>Entrepreneur</h4> -->
<!-- <p> -->
<!-- <i class="bx bxs-quote-alt-left quote-icon-left"></i> -->
<!-- Quis quorum aliqua sint quem legam fore sunt eram irure aliqua veniam tempor noster veniam enim culpa labore duis sunt culpa nulla illum cillum fugiat legam esse veniam culpa fore nisi cillum quid. -->
<!-- <i class="bx bxs-quote-alt-right quote-icon-right"></i> -->
<!-- </p> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<!-- </section><!-- End Testimonials Section -->
<!-- ======= Gallery Section ======= -->
<!-- <section id="gallery" class="gallery"> -->
<!-- <div class="container"> -->
<!-- <div class="section-title"> -->
<!-- <h2>Producing Entertainment Content is the way forward in Advertising Communication</h2> -->
<!-- <p>Seeking Entertainment, while our audiences consume content across platforms, advertising is becoming avoidable and redundant. The way for a communication to capture mind space amongst audiences is being an Entertainment Content.</p> -->
<!-- </div> -->
<!-- </div> -->
<!-- <div class="container-fluid"> -->
<!-- <div class="row no-gutters"> -->
<!-- <div class="col-lg-3 col-md-4"> -->
<!-- <div class="gallery-item"> -->
<!-- <a href="assets/img/gallery/gallery-1.jpg" class="venobox" data-gall="gallery-item"> -->
<!-- <img src="assets/img/gallery/gallery-1.jpg" alt="" class="img-fluid"> -->
<!-- </a> -->
<!-- </div> -->
<!-- </div> -->
<!-- <div class="col-lg-3 col-md-4"> -->
<!-- <div class="gallery-item"> -->
<!-- <a href="assets/img/gallery/gallery-2.jpg" class="venobox" data-gall="gallery-item"> -->
<!-- <img src="assets/img/gallery/gallery-2.jpg" alt="" class="img-fluid"> -->
<!-- </a> -->
<!-- </div> -->
<!-- </div> -->
<!-- <div class="col-lg-3 col-md-4"> -->
<!-- <div class="gallery-item"> -->
<!-- <a href="assets/img/gallery/gallery-3.jpg" class="venobox" data-gall="gallery-item"> -->
<!-- <img src="assets/img/gallery/gallery-3.jpg" alt="" class="img-fluid"> -->
<!-- </a> -->
<!-- </div> -->
<!-- </div> -->
<!-- <div class="col-lg-3 col-md-4"> -->
<!-- <div class="gallery-item"> -->
<!-- <a href="assets/img/gallery/gallery-4.jpg" class="venobox" data-gall="gallery-item"> -->
<!-- <img src="assets/img/gallery/gallery-4.jpg" alt="" class="img-fluid"> -->
<!-- </a> -->
<!-- </div> -->
<!-- </div> -->
<!-- <div class="col-lg-3 col-md-4"> -->
<!-- <div class="gallery-item"> -->
<!-- <a href="assets/img/gallery/gallery-5.jpg" class="venobox" data-gall="gallery-item"> -->
<!-- <img src="assets/img/gallery/gallery-5.jpg" alt="" class="img-fluid"> -->
<!-- </a> -->
<!-- </div> -->
<!-- </div> -->
<!-- <div class="col-lg-3 col-md-4"> -->
<!-- <div class="gallery-item"> -->
<!-- <a href="assets/img/gallery/gallery-6.jpg" class="venobox" data-gall="gallery-item"> -->
<!-- <img src="assets/img/gallery/gallery-6.jpg" alt="" class="img-fluid"> -->
<!-- </a> -->
<!-- </div> -->
<!-- </div> -->
<!-- <div class="col-lg-3 col-md-4"> -->
<!-- <div class="gallery-item"> -->
<!-- <a href="assets/img/gallery/gallery-7.jpg" class="venobox" data-gall="gallery-item"> -->
<!-- <img src="assets/img/gallery/gallery-7.jpg" alt="" class="img-fluid"> -->
<!-- </a> -->
<!-- </div> -->
<!-- </div> -->
<!-- <div class="col-lg-3 col-md-4"> -->
<!-- <div class="gallery-item"> -->
<!-- <a href="assets/img/gallery/gallery-8.jpg" class="venobox" data-gall="gallery-item"> -->
<!-- <img src="assets/img/gallery/gallery-8.jpg" alt="" class="img-fluid"> -->
<!-- </a> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<!-- </section> -->
<!-- End Gallery Section -->
<!-- ======= Contact Section ======= -->
<section id="contact" class="contact">
<div class="container">
<div class="section-title">
<h2>Contact</h2>
<p>We are currently operating from New Delhi, India, delivering across regions, working remotely with our litigable partners and clients.</p>
</div>
</div>
<div>
<!--<iframe style="border:0; width: 100%; height: 350px;" src="https://goo.gl/maps/GXs7E4RCHeWses9x8" frameborder="0" allowfullscreen></iframe>-->
<iframe tyle="border:0; width: 100%; height: 350px;" src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3504.713997951122!2d77.19672906492127!3d28.54831503245111!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x390ce20bb8a83d6f%3A0x603eb4211fb64761!2sSafdarjung%20Development%20Area%2C%20Hauz%20Khas%2C%20New%20Delhi%2C%20Delhi%20110016!5e0!3m2!1sen!2sin!4v1595398252283!5m2!1sen!2sin" width="100%" height="450" frameborder="0" allowfullscreen="" aria-hidden="false" tabindex="0"></iframe>
</div>
<div class="container">
<div class="row mt-5">
<div class="col-lg-4">
<div class="info">
<div class="address">
<i class="icofont-google-map"></i>
<h4>Location:</h4>
<p>66, C7, SDA, N Delhi – 110016</p>
</div>
<div class="email">
<i class="icofont-envelope"></i>
<h4>Email:</h4>
<p>[email protected]</p>
</div>
<div class="phone">
<i class="icofont-phone"></i>
<h4>Call:</h4>
<p>+91 7838 5454 99</p>
</div>
</div>
</div>
<div class="col-lg-8 mt-5 mt-lg-0">
<form action="forms/contact.php" method="post" role="form" class="php-email-form">
<div class="form-row">
<div class="col-md-6 form-group">
<input type="text" name="name" class="form-control" id="name" placeholder="Your Name" data-rule="minlen:4" data-msg="Please enter at least 4 chars" />
<div class="validate"></div>
</div>
<div class="col-md-6 form-group">
<input type="email" class="form-control" name="email" id="email" placeholder="Your Email" data-rule="email" data-msg="Please enter a valid email" />
<div class="validate"></div>
</div>
</div>
<div class="form-group">
<input type="text" class="form-control" name="subject" id="subject" placeholder="Subject" data-rule="minlen:4" data-msg="Please enter at least 8 chars of subject" />
<div class="validate"></div>
</div>
<div class="form-group">
<textarea class="form-control" name="message" rows="5" data-rule="required" data-msg="Please write something for us" placeholder="Message"></textarea>
<div class="validate"></div>
</div>
<div class="mb-3">
<div class="loading">Loading</div>
<div class="error-message"></div>