-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwpw.html
1030 lines (975 loc) · 43 KB
/
wpw.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>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>World Photography Week</title>
<link rel="icon" href="wpw-assets/img/fav.png" type="image/gif" sizes="16x16">
<!-- Bootstrap CSS -->
<link rel="stylesheet" type="text/css" href="wpw-assets/css/bootstrap.min.css">
<!-- Icon -->
<link rel="stylesheet" type="text/css" href="wpw-assets/fonts/line-icons.css">
<!-- Nivo Lightbox -->
<link rel="stylesheet" type="text/css" href="wpw-assets/css/nivo-lightbox.css">
<!-- Animate -->
<link rel="stylesheet" type="text/css" href="wpw-assets/css/animate.css">
<!-- Main Style -->
<link rel="stylesheet" type="text/css" href="wpw-assets/css/main.css">
<!-- Responsive Style -->
<link rel="stylesheet" type="text/css" href="wpw-assets/css/responsive.css">
</head>
<body>
<style>
#reg {
font-size: 1.5rem;
margin-bottom: 25px;
}
@media screen and (max-width:768px) {
#sb-logo {
width: 160px;
}
.btn-common {
font-size: 14px !important;
padding: 0 !important;
padding: 8px 27px !important;
}
#reg {
font-size: 18px !important;
}
.head-title {
font-size: 28px !important;
line-height: normal !important;
}
#hero-container {
height: 100vh;
}
.hero-area-bg {
background: url(./wpw-assets/img/vertical.jpg) no-repeat;
}
}
</style>
<!-- Header Area wrapper Starts -->
<header id="header-wrap">
<!-- Navbar Start -->
<nav class="navbar navbar-expand-lg bg-inverse fixed-top scrolling-navbar">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<a href="#" class="navbar-brand" style="color:#fed136;">World Photography Week</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse"
aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<i class="lni-menu"></i>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav mr-auto w-100 justify-content-end">
<li class="nav-item active">
<a class="nav-link" href="#header-wrap">
Home
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">
About
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#schedules">
schedules
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#team">
Speakers
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#google-map-area">
Contact
</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Navbar End -->
<!-- Hero Area Start -->
<div id="hero-area" class="hero-area-bg">
<div class="overlay"></div>
<div class="container" id="hero-container">
<div class="row justify-content-center">
<div class="col-lg-9 col-sm-12">
<div class="contents text-center">
<div class="icon wow fadeInUp" data-wow-delay="0.2s">
<img src="assets/img/logos/LOGO-SVGwhite.png" width="200px" id="sb-logo" alt="">
</div>
<p class="mt-2 wow fadeInUp" data-wow-delay="0.5s">Presents</p>
<h2 class="head-title mt-2 wow fadeInUp" data-wow-delay="0.8s">World Photography Week</h2>
<p class="banner-info wow fadeInUp font-weight-bold" data-wow-delay="1.2s">13 <sup>th</sup> Aug 2021 - 18
<sup>th</sup>Aug 2021
</p>
<p class="banner-desc wow fadeInUp" data-wow-delay="1.2s">
This World Photography Day, Celebrations Beyond Just a Day! </p>
<h5 class="wow fadeInUp" id="reg" data-wow-delay="1.4s">Register For</h5>
<a href="https://forms.gle/sK6fJ8vCrCpH4ymC9" target="_blank" class="btn btn-common wow fadeInDown"
data-wow-delay="1.5s">Workshop</a>
<a href="https://forms.gle/BFnm1ngbhgEPGBjd8" target="_blank" class="btn btn-common wow fadeInDown"
data-wow-delay="1.5s">Competition</a>
</div>
</div>
</div>
</div>
</div>
<!-- Hero Area End -->
</header>
<!-- Header Area wrapper End -->
<!-- About Section Start -->
<section id="about" class="section-padding">
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-12 col-xs-12">
<div class="img-thumb wow fadeInDown" data-wow-delay="0.4s">
<img class="img-fluid" src="wpw-assets/img/about/Focus-rafiki.svg" alt="">
</div>
</div>
<div class="col-lg-6 col-md-12 col-xs-12">
<div class="about-content wow fadeInUp" data-wow-delay="0.4s">
<div>
<div class="about-text">
<h2>About The Workshop</h2>
<p class="mb-0">"Skill in photography is acquired by practice and not by purchase "</p>
<p class="mt-0">- Percy W. Harris</p>
<p>Shutterbugs Photography Club, MITAOE presents an online photography workshop for 6 days, starting
from 13th August 2021, for everyone who have been finding an opportunity to learn photography and post
editing.
Participants will be given e-certificate after the completion of workshop through emails only if they
attend all 6 Days sessions.</p>
</div>
<ul class="stylish-list mb-3">
<li><i class="lni-check-mark-circle"></i>Fundamentals of Photography</li>
<li><i class="lni-check-mark-circle"></i>Mobile Photography</li>
<li><i class="lni-check-mark-circle"></i>Framing and Composition</li>
<li><i class="lni-check-mark-circle"></i>Various Genres of Photography</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- About Section End -->
<!-- Video Section Start -->
<div class="ready-to-play">
<video id="bgvid" class="stop" loop>
<source src="wpw-assets/video/SB.webm" type="video/mp4">
</video>
<div id="polina" class="video-text">
<div class="tb-t">
<div class="tb-c">
<div class="polina"><button><i class='lni-play'></i></button></div>
</div>
</div>
</div>
</div>
<!-- Video Section End -->
<!-- Information Bar Start -->
<section id="information-bar">
<div class="container">
<div class="row inforation-wrapper">
<div class="col-lg-4 col-md-6 col-xs-12">
<ul>
<li>
<i class="lni-map-marker"></i>
</li>
<li><span><b>Location</b> Online</span></li>
</ul>
</div>
<div class="col-lg-4 col-md-6 col-xs-12">
<ul>
<li>
<i class="lni-calendar"></i>
</li>
<li><span><b>Date & Time</b> 5 PM - 7 PM, 13 <sup>th</sup> Aug 2021 - 18 <sup>th</sup>Aug 2021</span></li>
</ul>
</div>
<div class="col-lg-4 col-md-6 col-xs-12">
<ul>
<li>
<i class="lni-mic"></i>
</li>
<li><span><b>Speakers</b> 10 Experts</span></li>
</ul>
</div>
</div>
</div>
</section>
<!-- Information Bar End -->
<!-- intro Section Start -->
<section id="intro" class="intro section-padding">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title-header text-center">
<h2 class="section-title wow fadeInUp" data-wow-delay="0.2s">Why You Should Join?</h2>
<p class="wow fadeInDown" data-wow-delay="0.2s">A golden opportunity to follow the path of creativity in
order to showcase your hidden potentials.</p>
</div>
</div>
</div>
<div class="row intro-wrapper">
<div class="col-lg-4 col-md-6 col-xs-12">
<div class="single-intro-text mb-70">
<i class="lni-microphone"></i>
<h3>Great Speakers</h3>
<p>
Well, who wouldn't want to learn from a pro?
We've got a pretty crazy lineup of speakers, pursuing different genres but the ultimate goal is to promote
photography.
</p>
<span class="count-number">01</span>
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12">
<div class="single-intro-text">
<i class="lni-users"></i>
<h3 class="ts-title">New People</h3>
<p>
Open for all, says it all. You'll get to meet new people with the same interest as yours, with the same
enthusiasm as you to learn more and share experiences.
</p>
<span class="count-number">02</span>
</div>
<div class="border-shap left"></div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12">
<div class="single-intro-text mb-70">
<i class="lni-bullhorn"></i>
<h3>Global Event</h3>
<p>
A worldwide event inviting all photography enthusiasts to celebrate one of the most important days of
their interest and filling it with moments to cherish.
</p>
<span class="count-number">03</span>
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12">
<div class="single-intro-text mb-70">
<i class="lni-heart"></i>
<h3>Get Inspired</h3>
<p>
Listening to some of your favorite photographers, learning from their experiences and interacting with
them. What can be more exciting than this?
</p>
<span class="count-number">04</span>
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12">
<div class="single-intro-text mb-70">
<i class="lni-cup"></i>
<h3>Networking Session</h3>
<p>
Not only will you just listen to the speakers, but get to interact with them one on one. Expand your
circle with some friends with the exact same interests as you.
</p>
<span class="count-number">05</span>
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12">
<div class="single-intro-text mb-70">
<i class="lni-gallery"></i>
<h3>Meet New Faces</h3>
<p>
Gear up to learn from some of the bests in the field. It going to be an enriching and fruitful experience
to learn from basic to various genres of photography.
</p>
<span class="count-number">06</span>
</div>
</div>
</div>
</div>
</section>
<!-- intro Section End -->
<!-- Counter Area Start-->
<section class="counter-section section-padding">
<div class="container">
<div class="row">
<!-- Counter Item -->
<div class="col-lg-3 col-md-6 col-xs-12 work-counter-widget">
<div class="counter">
<div class="icon">
<i class="lni-mic"></i>
</div>
<div class="counter-content">
<div class="counterUp">10</div>
<p>Spekers</p>
</div>
</div>
</div>
<!-- Counter Item -->
<div class="col-lg-3 col-md-6 col-xs-12 work-counter-widget">
<div class="counter">
<div class="icon">
<i class="lni-bulb"></i>
</div>
<div class="counter-content">
<div class="counterUp">8</div>
<p>Photography Genres</p>
</div>
</div>
</div>
<!-- Counter Item -->
<div class="col-lg-3 col-md-6 col-xs-12 work-counter-widget">
<div class="counter">
<div class="icon">
<i class="lni-alarm-clock"></i>
</div>
<div class="counter-content">
<div class="counterUp">16</div>
<p>Hours</p>
</div>
</div>
</div>
<!-- Counter Item -->
<div class="col-lg-3 col-md-6 col-xs-12 work-counter-widget">
<div class="counter">
<div class="icon">
<i class="lni-coffee-cup"></i>
</div>
<div class="counter-content">
<div class="counterUp">10</div>
<p>Sessions</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Counter Area End-->
<!-- Schedule Section Start -->
<section id="schedules" class="schedule section-padding">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title-header text-center">
<h2 class="section-title wow fadeInUp" data-wow-delay="0.2s">Event Schedules</h2>
<p class="wow fadeInDown" data-wow-delay="0.2s">The session starts from providing in depth knowledge of
basics of photography to various genres of photography.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-12 mb-5 text-center">
<ul class="nav nav-tabs" id="myTab" role="tablist">
<li class="nav-item">
<a class="nav-link active" id="monday-tab" data-toggle="tab" href="#monday" role="tab"
aria-controls="monday" aria-expanded="true">
<div class="item-text">
<h4>Day 01</h4>
<h5>13 <sup>th</sup> Aug 2021</h5>
</div>
</a>
</li>
<li class="nav-item">
<a class="nav-link" id="tuesday-tab" data-toggle="tab" href="#tuesday" role="tab" aria-controls="tuesday">
<div class="item-text">
<h4>Day 02</h4>
<h5>14 <sup>th</sup> Aug 2021</h5>
</div>
</a>
</li>
<li class="nav-item">
<a class="nav-link" id="wednesday-tab" data-toggle="tab" href="#wednesday" role="tab"
aria-controls="wednesday">
<div class="item-text">
<h4>Day 03</h4>
<h5>15 <sup>th</sup> Aug 2021</h5>
</div>
</a>
</li>
<li class="nav-item">
<a class="nav-link" id="thursday-tab" data-toggle="tab" href="#thursday" role="tab"
aria-controls="thursday">
<div class="item-text">
<h4>Day 04</h4>
<h5>16 <sup>th</sup> Aug 2021</h5>
</div>
</a>
</li>
<li class="nav-item">
<a class="nav-link" id="friday-tab" data-toggle="tab" href="#friday" role="tab" aria-controls="friday">
<div class="item-text">
<h4>Day 05</h4>
<h5>17 <sup>th</sup> Aug 2021</h5>
</div>
</a>
</li>
<li class="nav-item">
<a class="nav-link" id="saturday-tab" data-toggle="tab" href="#saturday" role="tab"
aria-controls="saturday-tab">
<div class="item-text">
<h4>Day 06</h4>
<h5>18 <sup>th</sup> Aug 2021</h5>
</div>
</a>
</li>
</ul>
</div>
<div class="col-12">
<div class="schedule-area row wow fadeInDown" data-wow-delay="0.3s">
<div class="schedule-tab-content col-12 clearfix">
<div class="tab-content" id="myTabContent">
<!-- Day 1 -->
<div class="tab-pane fade show active" id="monday" role="tabpanel" aria-labelledby="monday-tab">
<div id="accordion">
<div class="card">
<div id="headingOne">
<div class="schedule-slot-time">
<span> 5 PM - 7 PM</span>
Workshop
</div>
<div class="collapsed card-header" data-toggle="collapse" data-target="#collapseOne"
aria-expanded="false" aria-controls="collapseOne">
<div class="images-box">
<img class="img-fluid" src="wpw-assets/img/speaker/rutwik.jpg" alt="">
</div>
<h4>Basics of Photography</h4>
<h5 class="name">Rutwik Deshmukh</h5>
</div>
</div>
<div id="collapseOne" class="collapse show" aria-labelledby="headingOne" data-parent="#accordion">
<div class="card-body">
<p>This is an important session to brush up and get a good hold on the concepts for amature
photographers. Fundamental topics related to photography i.e. exposure triangle ( ISO,
Shutter Speed and Aperture) will be covered. </p>
</div>
</div>
</div>
</div>
</div>
<!-- Day 2 -->
<div class="tab-pane fade" id="tuesday" role="tabpanel" aria-labelledby="tuesday-tab">
<div id="accordion2">
<div class="card">
<div id="headingOne1">
<div class="schedule-slot-time">
<span> 5 PM - 6 PM</span>
Workshop
</div>
<div class="collapsed card-header" data-toggle="collapse" data-target="#collapseTwo2"
aria-expanded="false" aria-controls="collapseTwo2">
<div class="images-box">
<img class="img-fluid" src="wpw-assets/img/speaker/sanket.png" alt="">
</div>
<h4>Framing and Composition</h4>
<h5 class="name">Sanket Urane</h5>
</div>
</div>
<div id="collapseTwo2" class="collapse show" aria-labelledby="headingOne1"
data-parent="#accordion2">
<div class="card-body">
<p>Everyone can click pictures after getting an idea of the basics of photography. But to
capture eye catching frames it’s mandatory to understand the most important topic of
composition and framing. This session will be covering the common mistakes of framing along
with tips for correcting the mistakes.
</p>
</div>
</div>
</div>
<div class="card">
<div id="headingTwo2">
<div class="schedule-slot-time">
<span> 6 PM - 7 PM</span>
Workshop
</div>
<div class="collapsed card-header" data-toggle="collapse" data-target="#collapseOne1"
aria-expanded="false" aria-controls="collapseOne1">
<div class="images-box">
<img class="img-fluid" src="wpw-assets/img/speaker/sunil.jpg" alt="">
</div>
<h4>Macro</h4>
<h5 class="name">Sunil Kumbar</h5>
</div>
</div>
<div id="collapseOne1" class="collapse" aria-labelledby="headingTwo2" data-parent="#accordion2">
<div class="card-body">
<p>The art of making tiny things look big might sound easy but gets intricating when doing
macro photography. The session will cover all the essential conditions and requirements
taking into consideration mobile and camera photography.</p>
</div>
</div>
</div>
</div>
</div>
<!-- Day 3 -->
<div class="tab-pane fade" id="wednesday" role="tabpanel" aria-labelledby="wednesday-tab">
<div id="accordion3">
<div class="card">
<div id="headingOne3">
<div class="schedule-slot-time">
<span>5 PM - 6 PM</span>
Workshop
</div>
<div class="collapsed card-header" data-toggle="collapse" data-target="#collapseOne3"
aria-expanded="false" aria-controls="collapseOne3">
<div class="images-box">
<img class="img-fluid" src="wpw-assets/img/speaker/shobit.JPG" alt="">
</div>
<h4>Silhouettes & BackLight</h4>
<h5 class="name">Shobhit Goyal</h5>
</div>
</div>
<div id="collapseOne3" class="collapse show" aria-labelledby="headingOne3"
data-parent="#accordion3">
<div class="card-body">
<p>One of the most interesting genres of photography is based on playing with sunlight as well
as artificial light. This session will elaborate on the genre along with the detailings
regarding the approach of clicking silhouettes.</p>
</div>
</div>
</div>
<div class="card">
<div id="headingTwo3">
<div class="schedule-slot-time">
<span> 6 PM - 7 PM</span>
Workshop
</div>
<div class="collapsed card-header" data-toggle="collapse" data-target="#collapseTwo3"
aria-expanded="false" aria-controls="collapseTwo3">
<div class="images-box">
<img class="img-fluid" src="wpw-assets/img/speaker/yukta.jpg" alt="">
</div>
<h4>Portrait</h4>
<h5 class="name">Yukta Amrao</h5>
</div>
</div>
<div id="collapseTwo3" class="collapse" aria-labelledby="headingTwo3" data-parent="#accordion3">
<div class="card-body">
<p>Portrait is the soul of photography that might sound interesting but needs lots of focus on
the details required to do it. This session will include the introduction of portraits as
well as the secret of good portrait photography will be revealed.</p>
</div>
</div>
</div>
</div>
</div>
<!-- Day 4 -->
<div class="tab-pane fade" id="thursday" role="tabpanel" aria-labelledby="thursday-tab">
<div id="accordion4">
<div class="card">
<div id="headingOne">
<div class="schedule-slot-time">
<span> 5 PM - 6 PM</span>
Workshop
</div>
<div class="collapsed card-header" data-toggle="collapse" data-target="#collapseOne4"
aria-expanded="false" aria-controls="collapseOne4">
<div class="images-box">
<img class="img-fluid" src="wpw-assets/img/speaker/aditya.jpg" alt="">
</div>
<h4>Minimal</h4>
<h5 class="name">Aditya Chavan</h5>
</div>
</div>
<div id="collapseOne4" class="collapse show" aria-labelledby="headingOne"
data-parent="#accordion4">
<div class="card-body">
<p>The Minimal sounds very simple according to its definition. But to acquire the right skills
for minimal photography requires lots of imagination and creativity which will be shared in
the session along with the correct techniques.</p>
<div class="location">
</div>
</div>
</div>
<div class="card">
<div id="headingTwo">
<div class="schedule-slot-time">
<span>6 PM - 7 PM</span>
Workshop
</div>
<div class="collapsed card-header" data-toggle="collapse" data-target="#collapseTwo4"
aria-expanded="false" aria-controls="collapseTwo4">
<div class="images-box">
<img class="img-fluid" src="wpw-assets/img/speaker/chetan.jpg" alt="">
</div>
<h4>Astro/ LEP/ Steel Wool</h4>
<h5 class="name">Chetan Patil</h5>
</div>
</div>
<div id="collapseTwo4" class="collapse" aria-labelledby="headingTwo" data-parent="#accordion4">
<div class="card-body">
<p>LEP (Long Exposure photography) is one of the genres that creates striking and stunning
photographs . Mastering it requires a big checklist of clearing understanding of the
exposure triangle as well as good hold on the camera which will be taught in depth in the
session.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Day 5 -->
<div class="tab-pane fade" id="friday" role="tabpanel" aria-labelledby="friday-tab">
<div id="accordion5">
<div class="card">
<div id="headingOne d-flex">
<div class="schedule-slot-time">
<span> 5 PM - 6 PM</span>
Workshop
</div>
<div class="collapsed card-header" data-toggle="collapse" data-target="#collapseOne5"
aria-expanded="false" aria-controls="collapseOne4">
<div class="images-box">
<img class="img-fluid" src="wpw-assets/img/speaker/mayank.jpg" alt="">
</div>
<h4>Flat Lay/ Product</h4>
<h5 class="name">Mayank Patel</h5>
</div>
</div>
<div id="collapseOne5" class="collapse show" aria-labelledby="headingOne"
data-parent="#accordion5">
<div class="card-body">
<p>The most demanding genre in terms of commercial market is product photography including
the flatlay. The arrangement and detailing of the subject requires attention to capture
appealing photographs. This session will include all important points covering the
mistakes made by the amateur photographers as well.
</p>
<div class="location">
</div>
</div>
</div>
<div class="card">
<div id="headingTwo">
<div class="schedule-slot-time">
<span>6 PM - 7 PM</span>
Workshop
</div>
<div class="collapsed card-header" data-toggle="collapse" data-target="#collapseTwo5"
aria-expanded="false" aria-controls="collapseTwo5">
<div class="images-box">
<img class="img-fluid" src="assets/img/team/Vedant.jpg" alt="">
</div>
<h4>Basics of Photoshop</h4>
<h5 class="name">Vedant Lachke</h5>
</div>
</div>
<div id="collapseTwo5" class="collapse" aria-labelledby="headingTwo" data-parent="#accordion5">
<div class="card-body">
<p>The craze of digital art if increasing each passing day. From editing pictures to
creating amazing designs, photoshop makes it possible. With this session, we'll be
introducing you to the basics of Photoshop to start up with you creative journey. </p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Day 6 -->
<div class="tab-pane fade" id="saturday" role="tabpanel" aria-labelledby="saturday-tab">
<div id="accordion6">
<div class="card">
<div id="headingOne">
<div class="schedule-slot-time">
<span> 5 PM - 6 PM</span>
Workshop
</div>
<div class="collapsed card-header" data-toggle="collapse" data-target="#collapseOne6"
aria-expanded="false" aria-controls="collapseOne4">
<div class="images-box">
<img class="img-fluid" src="wpw-assets/img/speaker/max.jpg" alt="">
</div>
<h4>Vintage/Retro</h4>
<h5 class="name">Max Hock</h5>
</div>
</div>
<div id="collapseOne6" class="collapse show" aria-labelledby="headingOne"
data-parent="#accordion6">
<div class="card-body">
<p>TCraving for aesthetics is what we all do! Right? To shoot a moment that stays for long in
your heart is an art in itself. This session will be all about how to click aesthetic retro
photos to make your feed stand out!
</p>
</div>
</div>
<div class="card">
<div id="headingTwo">
<div class="schedule-slot-time">
<span>6 PM - 7 PM</span>
Workshop
</div>
<div class="collapsed card-header" data-toggle="collapse" data-target="#collapseTwo6"
aria-expanded="false" aria-controls="collapseTwo6">
<div class="images-box">
<img class="img-fluid" src="wpw-assets/img/speaker/shubhankar.jpg" alt="">
</div>
<h4>Color Grading & Reels</h4>
<h5 class="name">Subhankar Pande</h5>
</div>
</div>
<div id="collapseTwo6" class="collapse" aria-labelledby="headingTwo" data-parent="#accordion5">
<div class="card-body">
<p>
The current trend of getting good reach for each instagram user is reels. Though creating
reels sounds like a cakewalk, it actually involves lots of creativity along with following
the right steps to create viral reels will be explained in the session along with colour
grading .
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="text-center mt-5"><a href="https://forms.gle/sK6fJ8vCrCpH4ymC9" target="_blank"
class="btn btn-dark text-white">Register Now</a></div>
</section>
<!-- Schedule Section End -->
<!-- Team Section Start -->
<section id="team" class="section-padding text-center">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title-header text-center">
<h2 class="section-title wow fadeInUp" data-wow-delay="0.2s">Our Speakers</h2>
<p class="wow fadeInDown" data-wow-delay="0.2s">The amazing speakers ready to downpour their tricks & tips
after rigourous years of practice in the field of photography filled with creativity, imagination &
experience.</p>
</div>
</div>
</div>
<div class="row justify-content-bt">
<div class="col-lg-3 col-md-6 col-xs-12">
<!-- Team Item Starts -->
<div class="team-item wow fadeInUp" data-wow-delay="0.2s">
<div class="team-img">
<img class="img-fluid" src="wpw-assets/img/speaker/rutwik.jpg" alt="">
</div>
<div class="info-text">
<h3><a href="#">Rutwik Deshmukh</a></h3>
</div>
</div>
<!-- Team Item Ends -->
</div>
<div class="col-lg-3 col-md-6 col-xs-12">
<!-- Team Item Starts -->
<div class="team-item wow fadeInUp" data-wow-delay="0.4s">
<div class="team-img">
<img class="img-fluid" src="wpw-assets/img/speaker/yukta.jpg" alt="">
</div>
<div class="info-text">
<h3><a href="#">Yukta Amrao</a></h3>
</div>
</div>
<!-- Team Item Ends -->
</div>
<div class="col-lg-3 col-md-6 col-xs-12">
<!-- Team Item Starts -->
<div class="team-item wow fadeInUp" data-wow-delay="0.6s">
<div class="team-img">
<img class="img-fluid" src="wpw-assets/img/speaker/chetan.jpg" alt="">
</div>
<div class="info-text">
<h3><a href="#">Chetan Patil</a></h3>
</div>
</div>
<!-- Team Item Ends -->
</div>
<div class="col-lg-3 col-md-6 col-xs-12">
<!-- Team Item Starts -->
<div class="team-item wow fadeInUp" data-wow-delay="0.8s">
<div class="team-img">
<img class="img-fluid" src="wpw-assets/img/speaker/sanket.png" alt="">
</div>
<div class="info-text">
<h3><a href="#">Sanket Urane</a></h3>
</div>
</div>
<!-- Team Item Ends -->
</div>
<div class="col-lg-3 col-md-6 col-xs-12">
<!-- Team Item Starts -->
<div class="team-item wow fadeInUp" data-wow-delay="1s">
<div class="team-img">
<img class="img-fluid" src="wpw-assets/img/speaker/aditya.jpg" alt="">
</div>
<div class="info-text">
<h3><a href="#">Aditya Chavan</a></h3>
</div>
</div>
<!-- Team Item Ends -->
</div>
<div class="col-lg-3 col-md-6 col-xs-12">
<!-- Team Item Starts -->
<div class="team-item wow fadeInUp" data-wow-delay="1.2s">
<div class="team-img">
<img class="img-fluid" src="wpw-assets/img/speaker/shobit.JPG" alt="">
</div>
<div class="info-text">
<h3><a href="#">Shobit Goyal</a></h3>
</div>
</div>
<!-- Team Item Ends -->
</div>
<div class="col-lg-3 col-md-6 col-xs-12">
<div class="team-item wow fadeInUp" data-wow-delay="1.4s">
<div class="team-img">
<img class="img-fluid" src="assets/img/team/Vedant.jpg" alt="">
</div>
<div class="info-text">
<h3><a href="#">Vedant Lachke</a></h3>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-xs-12">
<!-- Team Item Starts -->
<div class="team-item wow fadeInUp" data-wow-delay="1.6s">
<div class="team-img">
<img class="img-fluid" src="wpw-assets/img/speaker/mayank.jpg" alt="">
</div>
<div class="info-text">
<h3><a href="#">Mayank Patel</a></h3>
</div>
</div>
<!-- Team Item Ends -->
</div>
<div class="row justify-content-center">
<div class="col-lg-3 col-md-6 col-xs-12">
<!-- Team Item Starts -->
<div class="team-item wow fadeInUp" data-wow-delay="1.6s">
<div class="team-img">
<img class="img-fluid" src="wpw-assets/img/speaker/shubhankar.jpg" alt="">
</div>
<div class="info-text">
<h3><a href="#">Subhankar Pande</a></h3>
</div>
</div>
<!-- Team Item Ends -->
</div>
<div class="col-lg-3 col-md-6 col-xs-12">
<!-- Team Item Starts -->
<div class="team-item wow fadeInUp" data-wow-delay="1.6s">
<div class="team-img">
<img class="img-fluid" src="wpw-assets/img/speaker/sunil.jpg" alt="">
</div>
<div class="info-text">
<h3><a href="#">Sunil Kumbar</a></h3>
</div>
</div>
<!-- Team Item Ends -->
</div>
<div class="col-lg-3 col-md-6 col-xs-12">
<!-- Team Item Starts -->
<div class="team-item wow fadeInUp" data-wow-delay="1.6s">
<div class="team-img">
<img class="img-fluid" src="wpw-assets/img/speaker/max.jpg" alt="">
</div>
<div class="info-text">
<h3><a href="#">Max Hock</a></h3>
</div>
</div>
<!-- Team Item Ends -->
</div>
</div>
</div>
</section>
<!-- Team Section End -->
<!-- Map Section Start -->
<section id="google-map-area">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<object style="border:0; height: 450px; width: 100%;"
data="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3779.7529006186455!2d73.89055411469293!3d18.675081169304995!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3bc2c880511d7c35%3A0xc4e495a8c1f663eb!2sMIT%20Academy%20of%20Engineering!5e0!3m2!1sen!2sin!4v1628509661412!5m2!1sen!2sin"></object>
</div>
</div>
</div>
</section>
<!-- Map Section End -->
<!-- Contact text Start -->
<section id="contact-text">
<div class="container">
<div class="row contact-wrapper">
<div class="col-lg-6 col-md-5 col-xs-12">
<ul>
<li>
<i class="lni-home"></i>
</li>
<li><span>ShutterBugs, MIT Academy of Engineering</li>
</ul>
</div>
<div class="col-lg-6 col-md-3 col-xs-12">
<ul>
<li>
<i class="lni-envelope"></i>
</li>
<li><span>shutterbugspc@mitaoe.ac.in</span></li>
</ul>
</div>
</div>
</div>
</section>
<!-- Contact text End -->
<footer>
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8 col-md-12 col-xs-12 mt-4">
<div class="footer-logo">
<img src="assets/img/logos/LOGO-SVGwhite.png" width="150px" alt="">
</div>
<div class="social-icons-footer">
<ul>
<li class="social"><a target="_blank" href="https://instagram.com/shutterbugs.mitaoe"><i
class="lni-instagram-filled"></i></a></li>
<li class="social"><a target="_blank" href="https://twitter.com/shutterbugsclub"><i
class="lni-twitter-filled"></i></a></li>
<li class="social"><a target="_blank" href="https://youtube.com/channel/UC0QlgWQuo-bIJkvywyglZNw"><i
class="lni-youtube"></i></a></li>
<li class="social"><a target="_blank" href="https://www.linkedin.com/company/shutterbugspc"><i
class="lni-linkedin-filled"></i></a></li>
<li class="social"><a target="_blank" href="https://t.me/joinchat/PTpYkRxznyCTJ87eNN0e7g"><i
class="lni-telegram"></i></a></li>
</ul>
</div>
<div class="site-info p-0">
<p>All rights reserved @ShutterBugs MITAOE</p>
</div>
</div>
</div>
</div>
</footer>
<!-- Go to Top Link -->
<a href="#" class="back-to-top">
<i class="lni-chevron-up"></i>
</a>
<div id="preloader">
<div class="sk-circle">
<div class="sk-circle1 sk-child"></div>