-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2802 lines (2611 loc) · 111 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en-US">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="discrption" content="parallax one page" />
<meta
name="keyword"
content="agency, business, corporate, creative, freelancer, interior, joomla template, K2 Blog, minimal, modern, multipurpose, personal, portfolio, responsive, simple"
/>
<!-- Title -->
<title>TEDxSriSairamIT</title>
<!-- Font Google -->
<link
href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Karla:400,700&display=swap"
rel="stylesheet"
/>
<link
rel="shortcut icon"
href="assets/img/logo/tedxfavicon.ico"
type="image/x-icon"
/>
<link
rel="icon"
href="assets/img/logo/tedxfavicon.ico"
type="image/x-icon"
/>
<!-- custom styles (optional) -->
<link href="assets/css/plugins.css" rel="stylesheet" />
<link href="assets/css/style.css" rel="stylesheet" />
</head>
<!--classic-menu-->
<body class="dsn-effect-scroll dsn-cursor-effect dsn-ajax classic-menu">
<div class="preloader">
<div class="preloader-bar">
<div class="preloader-progress"></div>
</div>
<h1 class="title v-middle">
<span class="percent">0</span>
<span class="text-strok">TED<sup>x</sup>SriSairamIT</span>
<span class="text-fill">TED<sup>x</sup>SriSairamIT</span>
</h1>
</div>
<div class="site-header">
<div
class="extend-container d-flex w-100 align-items-baseline justify-content-between align-items-end"
>
<div class="inner-header p-relative">
<div class="main-logo">
<a href="index.html" data-dsn="parallax">
<img
class="dark-logo"
src="assets/img/TEDxSriSairamIT-Light.png"
alt=""
/>
<img
class="light-logo"
src="assets/img/TEDxSriSairamIT-Light.png"
alt=""
/>
</a>
</div>
</div>
<div class="menu-icon d-flex align-items-baseline">
<div class="text-menu p-relative font-heading text-transform-upper">
<div class="p-absolute text-button">Menu</div>
<div class="p-absolute text-open">Open</div>
<div class="p-absolute text-close">Close</div>
</div>
<div class="icon-m" data-dsn="parallax">
<span
class="menu-icon-line p-relative d-inline-block icon-top"
></span>
<span
class="menu-icon-line p-relative d-inline-block icon-center"
></span>
<span class="menu-icon-line p-relative d-block icon-bottom"></span>
</div>
</div>
<nav
class="accent-menu main-navigation p-absolute w-100 d-flex align-items-baseline"
>
<div class="menu-cover-title">Menu</div>
<ul
class="extend-container p-relative d-flex flex-column justify-content-center h-100"
>
<li class="dsn-active">
<a href="index.html" class="user-no-selection">
<span class="dsn-title-menu">Home</span>
<span class="dsn-meta-menu">01</span>
<span class="dsn-bg-arrow"></span>
</a>
</li>
<!--
<li class="dsn-drop-down">
<a href="#" class="user-no-selection">
<span class="dsn-title-menu">Sliders</span>
<span class="dsn-meta-menu">02</span>
<span class="dsn-bg-arrow"></span>
</a>
<ul>
<li class="dsn-back-menu">
<img src="assets/img/left-chevron.svg" alt="" />
<span class="dsn-title-menu">Sliders</span>
</li>
<li>
<a href="slider2.html">
<span class="dsn-title-menu">Slider Vertical</span>
<span class="dsn-meta-menu">01</span>
</a>
</li>
<li>
<a href="slider-horizontal.html">
<span class="dsn-title-menu">Slider Horizontal</span>
<span class="dsn-meta-menu">02</span>
</a>
</li>
<li>
<a href="slider3.html">
<span class="dsn-title-menu">Slider 3 Column</span>
<span class="dsn-meta-menu">03</span>
</a>
</li>
<li>
<a href="slider.html">
<span class="dsn-title-menu">Slider slice</span>
<span class="dsn-meta-menu">04</span>
</a>
</li>
</ul>
</li> -->
<!-- <li class="dsn-drop-down">
<a href="#" class="user-no-selection">
<span class="dsn-title-menu">Portfolio</span>
<span class="dsn-meta-menu">03</span>
<span class="dsn-bg-arrow"></span>
</a>
<ul>
<li class="dsn-back-menu">
<img src="assets/img/left-chevron.svg" alt="" />
<span class="dsn-title-menu">Portfolio</span>
</li>
<li>
<a href="work.html">
<span class="dsn-title-menu">Work 3 columns</span>
<span class="dsn-meta-menu">01</span>
</a>
</li>
<li>
<a href="work-2.html">
<span class="dsn-title-menu">Work V2</span>
<span class="dsn-meta-menu">02</span>
</a>
</li>
<li>
<a href="gallery.html">
<span class="dsn-title-menu">gallery</span>
<span class="dsn-meta-menu">03</span>
</a>
</li>
<li>
<a href="work-grid-2.html">
<span class="dsn-title-menu">Work 2 columns</span>
<span class="dsn-meta-menu">04</span>
</a>
</li>
<li>
<a href="work-grid-4.html">
<span class="dsn-title-menu">Work 4 columns</span>
<span class="dsn-meta-menu">05</span>
</a>
</li>
<li>
<a href="work-load.html">
<span class="dsn-title-menu">Work Load More</span>
<span class="dsn-meta-menu">06</span>
</a>
</li>
<li>
<a href="work-4.html">
<span class="dsn-title-menu">Work horizontal</span>
<span class="dsn-meta-menu">07</span>
</a>
</li>
<li>
<a href="work-3.html">
<span class="dsn-title-menu">Work carousel</span>
<span class="dsn-meta-menu">08</span>
</a>
</li>
</ul>
</li> -->
<li>
<a href="about.html" class="user-no-selection">
<span class="dsn-title-menu">About</span>
<span class="dsn-meta-menu">02</span>
<span class="dsn-bg-arrow"></span>
</a>
</li>
<li>
<a href="blog-grid.html" class="user-no-selection">
<span class="dsn-title-menu">Stories</span>
<span class="dsn-meta-menu">03</span>
<span class="dsn-bg-arrow"></span>
</a>
</li>
<li>
<a href="team.html" class="user-no-selection">
<span class="dsn-title-menu">Team</span>
<span class="dsn-meta-menu">04</span>
<span class="dsn-bg-arrow"></span>
</a>
</li>
<li>
<a href="contact.html" class="user-no-selection">
<span class="dsn-title-menu">Contact</span>
<span class="dsn-meta-menu">05</span>
<span class="dsn-bg-arrow"></span>
</a>
</li>
</ul>
<div class="container-content d-flex flex-column justify-content-end">
<div class="nav__info">
<div class="nav-content">
<p class="title-line">Studio</p>
<p>
26-30 New Damietta<br />
El-Mahalla El-Kubra, SK1 66LM
</p>
</div>
<div class="nav-content">
<p class="title-line">Contact</p>
<p class="links over-hidden">
<a
href="#"
data-hover-text="+00 (2)012 3321"
class="link-hover"
>+00 (2)012 3321</a
>
</p>
<p class="links over-hidden">
<a
href="#"
data-hover-text="[email protected]"
class="link-hover"
>
</p>
</div>
</div>
<div class="nav-social">
<div class="nav-social-inner p-relative">
<p class="title-line">Follow us</p>
<ul>
<li>
<a href="#" target="_blank" rel="nofollow"
>Dribbble.
<div class="icon-circle"></div>
</a>
</li>
<li>
<a href="#" target="_blank" rel="nofollow"
>Behance.
<div class="icon-circle"></div>
</a>
</li>
<li>
<a href="#" target="_blank" rel="nofollow"
>Linkedin.
<div class="icon-circle"></div>
</a>
</li>
<li>
<a href="#" target="_blank" rel="nofollow"
>Twitter.
<div class="icon-circle"></div>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="nav-border-bottom"></div>
</nav>
</div>
</div>
<main class="main-root">
<div id="dsn-scrollbar">
<header data-dsn-header="parallax">
<div class="header-master">
<div class="p-absolute w-100 h-100 over-hidden">
<div
class="header-scale-hero"
data-dsn="video"
data-overlay="2"
id="dsn-hero-parallax-img"
>
<video
class="bg-image cover-bg dsn-video"
autoplay
muted="muted"
loop
>
<source src="assets/video/TEDx_Intro.mp4" type="video/mp4" />
<source src="assets/video/TEDx_Intro.mp4" type="video/webm" />
Your browser does not support HTML5 video.
</video>
</div>
</div>
<div class="container h-100">
<div class="row align-items-center justify-content-center h-100">
<div
id="dsn-hero-parallax-title"
class="content p-relative text-center"
>
<div class="metas meta-personal p-relative">
<span> We are the team of </span>
</div>
<h1 class="title">TedX<br />SriSairamIT</h1>
</div>
</div>
</div>
<div class="scroll-d p-absolute animation-rotate">
<img src="assets/img/scroll_down.svg" alt="" />
</div>
</div>
</header>
<div class="wrapper">
<!-- About US -->
<section
class="intro-about section-margin have-dsn-animate-number"
data-dsn-animate="section"
>
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="intro-about-info">
<div class="section-title-2">
<h2>About Us</h2>
<p></p>
</div>
<div class="intro-about-info-bottom">
<h2 class="title-h2 dsn-up">
We have been a part of TEDx since 2017.
</h2>
<p class="dsn-text">
TEDxSriSairamIT is the event of the year where a
heterogeneous group of open-minded people come together
to get inspired by one another; speakers spread ideas,
unexpected connections are made between ideas and this
leads to new ideas worth spreading.
</p>
<div class="accordion mt-30">
<div class="accordion__wrapper">
<div class="accordion__item dsn-up">
<div
class="accordion__question expanded d-flex align-items-center p-relative"
>
<span class="icon">
<img src="assets/img/vision.svg" alt="" />
</span>
<h4 class="sm-title-block">Our Vision</h4>
</div>
<div class="accordion__answer active">
<p>
Cepteur sint occaecat cupidatat proident, taken
possession of my entire soul, like these sweet
mornings of spring which I enjoy with my whole.
</p>
</div>
</div>
<div class="accordion__item dsn-up">
<div
class="accordion__question d-flex align-items-center p-relative"
>
<span class="icon">
<img src="assets/img/target.svg" alt="" />
</span>
<h4 class="sm-title-block">Our goals</h4>
</div>
<div class="accordion__answer">
<p>
Cepteur sint occaecat cupidatat proident, taken
possession of my entire soul, like these sweet
mornings of spring which I enjoy with my whole.
</p>
</div>
</div>
<div class="accordion__item dsn-up">
<div
class="accordion__question d-flex align-items-center p-relative"
>
<span class="icon">
<img src="assets/img/mission.svg" alt="" />
</span>
<h4 class="sm-title-block">Our Mission</h4>
</div>
<div class="accordion__answer">
<p>
Cepteur sint occaecat cupidatat proident, taken
possession of my entire soul, like these sweet
mornings of spring which I enjoy with my whole.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="box-img p-relative over-hidden">
<div class="bg-section p-absolute w-100 h-100">
<div class="h-100" data-dsn-grid="move-up">
<img
class="cover-bg-img has-top-bottom"
src="assets/img/about/img1.jpg"
alt=""
/>
</div>
</div>
<img src="assets/img/about/img1.jpg " alt="" />
<div class="exper background-theme p-absolute">
<div class="numb-ex">
<span class="word-text has-animate-number">5</span>
</div>
<h4 class="sm-title-block dsn-up">
YEARS OF <br />
SUCCESSFULL COLLABORATION
</h4>
<div class="shap-section">
<img src="assets/img/arr.svg" alt="" />
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Our Timeline -->
<div
class="main-slider demo-2 p-relative w-100 h-100-v over-hidden"
data-dsn-header="parallax"
>
<div class="bg-container" id="dsn-hero-parallax-img">
<div class="slide-inner h-100">
<div class="swiper-wrapper">
<div class="slide-item swiper-slide">
<div
class="image-bg cover-bg w-100 h-100"
data-image-src="assets/img/event/sameera-reddy.jpg"
data-overlay="2"
></div>
<div class="slide-content p-absolute h-100 w-100">
<div class="row align-items-center h-100">
<div class="content p-relative w-100">
<div class="metas d-inline-block">
<span>TED<sup>x</sup>SriSairamIT</span>
</div>
<h1 class="title user-no-selection">
<a
href="https://youtu.be/uDwR12fJbjI?list=PLsRNoUx8w3rN8-sKZhdYP376H8tYqVPIZ"
class="effect-ajax"
data-dsn-ajax="slider"
>Embracing Originality</a
>
</h1>
<div
class="sub-text-header d-inline-block user-no-selection"
>
<h5>Sameera Reddy</h5>
<span>August 14th 2019</span>
</div>
<div class="dsn-button-link mt-30 user-no-selection">
<a
href="https://youtu.be/uDwR12fJbjI?list=PLsRNoUx8w3rN8-sKZhdYP376H8tYqVPIZ"
class="link-custom effect-ajax d-flex a-item-center p-relative"
data-dsn-ajax="slider"
>
<span class="link-text">View Talk</span>
<span class="link-circle p-absolute">
<i class="fas fa-arrow-right"></i>
</span>
</a>
</div>
</div>
</div>
<!-- <div
class="description p-absolute d-flex a-item-center background-section"
>
<p>
Vin tries to reflect Diesel’s vision and combines the
universe of the rock of the 80’s with a clear
</p>
</div> -->
</div>
</div>
<div class="slide-item swiper-slide">
<div
class="image-bg cover-bg w-100 h-100"
data-image-src="assets/img/event/Mohan-Raja.jpg"
data-overlay="5"
data-dsn-position="57%"
></div>
<div class="slide-content p-absolute h-100 w-100">
<div class="row align-items-center h-100">
<div class="content p-relative w-100">
<div class="metas d-inline-block user-no-selection">
<span>TED<sup>x</sup>SriSairamIT</span>
</div>
<h1 class="title user-no-selection">
<a
href="https://youtu.be/jRJQFvbioyo?list=PLsRNoUx8w3rN8-sKZhdYP376H8tYqVPIZ"
class="color-white effect-ajax"
data-dsn-ajax="slider"
>It All Starts with a Why</a
>
</h1>
<div
class="sub-text-header d-inline-block user-no-selection"
>
<h5>Mohan Raja</h5>
<span>August 14th 2019</span>
</div>
<div class="dsn-button-link mt-30 user-no-selection">
<a
href="https://youtu.be/jRJQFvbioyo?list=PLsRNoUx8w3rN8-sKZhdYP376H8tYqVPIZ"
class="link-custom effect-ajax d-flex a-item-center p-relative"
data-dsn-ajax="slider"
>
<span class="link-text">View Talk</span>
<span class="link-circle p-absolute">
<i class="fas fa-arrow-right"></i>
</span>
</a>
</div>
</div>
</div>
<!-- <div
class="description p-absolute d-flex a-item-center background-section"
>
<p>
Series of images used for Under Armour's NFL combine
authentic apparel. Photography
</p>
</div> -->
</div>
</div>
<!--
<div class="slide-item swiper-slide">
<div
class="image-bg cover-bg w-100 h-100"
data-image-src=""
data-overlay="5"
data-dsn-position="38%"
></div>
<div class="slide-content p-absolute h-100 w-100">
<div class="row align-items-center h-100">
<div class="content p-relative w-100">
<div class="metas d-inline-block user-no-selection">
<span>Photography</span>
</div>
<h1 class="title user-no-selection">
<a
href="project2.html"
class="color-white effect-ajax"
data-dsn-ajax="slider"
>Zero Untitled</a
>
</h1>
<div
class="sub-text-header d-inline-block user-no-selection"
>
<h5>Aaron Brimhall</h5>
<span>- March 17th 2020</span>
</div>
<div class="dsn-button-link mt-30 user-no-selection">
<a
href="project2.html"
class="link-custom effect-ajax d-flex a-item-center p-relative"
data-dsn-ajax="slider"
>
<span class="link-text">View Case</span>
<span class="link-circle p-absolute">
<i class="fas fa-arrow-right"></i>
</span>
</a>
</div>
</div>
</div>
<div
class="description p-absolute d-flex a-item-center background-section"
>
<p>
A beautifully designed bike from Zero Motorcycles
SR/S. Huggo Eccles from Untitled Motorcycles has
created something spectacular to the eye.
</p>
</div>
</div>
</div>
<div class="slide-item swiper-slide">
<div
class="image-bg cover-bg w-100 h-100"
data-image-src="assets/img/project/project5/1.jpg"
data-overlay="5"
data-dsn-position="58%"
></div>
<div class="slide-content p-absolute h-100 w-100">
<div class="row align-items-center h-100">
<div class="content p-relative w-100">
<div class="metas d-inline-block user-no-selection">
<span>Fashion</span>
<span>Photography</span>
</div>
<h1 class="title user-no-selection">
<a
href="project5.html"
class="color-white effect-ajax"
data-dsn-ajax="slider"
>Blue Edition</a
>
</h1>
<div
class="sub-text-header d-inline-block user-no-selection"
>
<h5>Elia Pirazzo</h5>
<span>- March 29th 2020</span>
</div>
<div class="dsn-button-link mt-30 user-no-selection">
<a
href="project5.html"
class="link-custom effect-ajax d-flex a-item-center p-relative"
data-dsn-ajax="slider"
>
<span class="link-text">View Case</span>
<span class="link-circle p-absolute">
<i class="fas fa-arrow-right"></i>
</span>
</a>
</div>
</div>
</div>
<div
class="description p-absolute d-flex a-item-center background-section"
>
<p>
Pink Tint Photosession for popular Model in Ukraine .
</p>
</div>
</div>
</div>
<div class="slide-item swiper-slide">
<div
class="image-bg cover-bg w-100 h-100"
data-image-src="assets/img/project/project3/1.jpg"
data-overlay="6"
></div>
<div class="slide-content p-absolute h-100 w-100">
<div class="row align-items-center h-100">
<div class="content p-relative w-100">
<div class="metas d-inline-block user-no-selection">
<span>Architecture</span>
</div>
<h1 class="title user-no-selection">
<a
href="project3.html"
class="color-white effect-ajax"
data-dsn-ajax="slider"
>Black Apartment</a
>
</h1>
<div
class="sub-text-header d-inline-block user-no-selection"
>
<h5>Georgiy Traksel</h5>
<span>- March 25th 2020</span>
</div>
<div class="dsn-button-link mt-30 user-no-selection">
<a
href="project3.html"
class="link-custom effect-ajax d-flex a-item-center p-relative"
data-dsn-ajax="slider"
>
<span class="link-text">View Case</span>
<span class="link-circle p-absolute">
<i class="fas fa-arrow-right"></i>
</span>
</a>
</div>
</div>
</div>
<div
class="description p-absolute d-flex a-item-center background-section"
>
<p>
Used softwares: 3ds max, corona render,quixel mixer
and Photoshop Overall lighting HDRI
</p>
</div>
</div>
</div>
<div class="slide-item swiper-slide">
<div
class="image-bg cover-bg w-100 h-100"
data-image-src="assets/img/project/project4/1.jpg"
data-overlay="5"
></div>
<div class="slide-content p-absolute h-100 w-100">
<div class="row align-items-center h-100">
<div class="content p-relative w-100">
<div class="metas d-inline-block user-no-selection">
<span>Digital Art</span>
</div>
<h1 class="title user-no-selection">
<a
href="project4.html"
class="color-white effect-ajax"
data-dsn-ajax="slider"
>Intentional</a
>
</h1>
<div
class="sub-text-header d-inline-block user-no-selection"
>
<h5>Pawel Nolbert</h5>
<span>- June 13th 2018</span>
</div>
<div class="dsn-button-link mt-30 user-no-selection">
<a
href="project4.html"
class="link-custom effect-ajax d-flex a-item-center p-relative"
data-dsn-ajax="slider"
>
<span class="link-text">View Case</span>
<span class="link-circle p-absolute">
<i class="fas fa-arrow-right"></i>
</span>
</a>
</div>
</div>
</div>
<div
class="description p-absolute d-flex a-item-center background-section"
>
<p>
Personal conceptual project. Reflecting on my personal
style of paint illustration.
</p>
</div>
</div>
</div>
<div class="slide-item swiper-slide">
<div
class="cover-bg h-100 w-100 p-absolute hidden"
data-image-src="assets/img/project/project7/1.jpg"
data-overlay="7"
></div>
<div class="image-bg cover-bg w-100 h-100">
<div data-dsn="video" data-overlay="6">
<video
class="bg-image cover-bg dsn-video"
poster="assets/img/project/project7/1.jpg"
autoplay
loop
muted
>
<source
src="http://theme.dsngrid.com/video/Equator.mp4"
type="video/mp4"
/>
</video>
</div>
</div>
<div class="slide-content p-absolute h-100 w-100">
<div class="row align-items-center h-100">
<div class="content p-relative w-100">
<div class="metas d-inline-block user-no-selection">
<span>Architecture</span>
<span>Video</span>
</div>
<h1 class="title user-no-selection">
<a
href="project7.html"
class="color-white effect-ajax"
data-dsn-ajax="slider"
>EQUATOR CGI</a
>
</h1>
<div
class="sub-text-header d-inline-block user-no-selection"
>
<h5>Russian Archviz</h5>
<span>- January 12th 2020</span>
</div>
<div class="dsn-button-link mt-30 user-no-selection">
<a
href="project7.html"
class="link-custom effect-ajax d-flex a-item-center p-relative"
data-dsn-ajax="slider"
>
<span class="link-text">View Case</span>
<span class="link-circle p-absolute">
<i class="fas fa-arrow-right"></i>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="slide-item swiper-slide">
<div
class="image-bg cover-bg w-100 h-100"
data-image-src="assets/img/project/project8/1.jpg"
data-overlay="7"
data-dsn-position="34%"
></div>
<div class="slide-content p-absolute h-100 w-100">
<div class="row align-items-center h-100">
<div class="content p-relative w-100">
<div class="metas d-inline-block user-no-selection">
<span>Photography</span>
</div>
<h1 class="title user-no-selection">
<a
href="project8.html"
class="color-white effect-ajax"
data-dsn-ajax="slider"
>NATIVE UNION</a
>
</h1>
<div
class="sub-text-header d-inline-block user-no-selection"
>
<h5>Britney Lam</h5>
<span>- September 14th 2019</span>
</div>
<div class="dsn-button-link mt-30 user-no-selection">
<a
href="project8.html"
class="link-custom effect-ajax d-flex a-item-center p-relative"
data-dsn-ajax="slider"
>
<span class="link-text">View Case</span>
<span class="link-circle p-absolute">
<i class="fas fa-arrow-right"></i>
</span>
</a>
</div>
</div>
</div>
<div
class="description p-absolute d-flex a-item-center background-section"
>
<p>
Personal conceptual project. Reflecting on my personal
style of paint illustration.
</p>
</div>
</div>
</div> -->
</div>
</div>
</div>
<div
class="box-next p-absolute nav-slider overflow-hidden header-no-scale-hero"
>
<div class="swiper-wrapper" role="navigation"></div>
</div>
<div class="dsn-controls p-absolute d-flex a-item-center">
<div class="dsn-numbers d-block text-center">
<span>01</span>
</div>
<div class="dsn-progress p-relative">
<div class="dsn-progress-indicator p-absolute w-100"></div>
</div>
<div class="dsn-numbers d-block text-center">
<span class="full-number fw-blod">05</span>
</div>
</div>
<div class="social-network-box text-center w-100-v">
<div class="social-network">
<ul>
<li>
<a
class="link-hover"
href="https://www.facebook.com/Sairam.TEDx/"
data-hover-text="Facebook"
>Facebook</a
>
</li>
<li>
<a
class="link-hover"
href="https://in.linkedin.com/company/tedxsrisairamit"
data-hover-text="LinkedIn"
>LinkedIn</a
>
</li>
<li>
<a
class="link-hover"
href="https://www.instagram.com/tedxsrisairamit/?hl=en"
data-hover-text="Instagram"
>Instagram</a
>
</li>
</ul>
</div>
</div>
<div class="dsn-slider-content p-absolute h-100 w-100">
<div
class="content-slider margin-lr-100 p-relative w-100 h-100"
></div>
</div>
</div>