-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlanding-conference.html
1345 lines (1275 loc) · 77.7 KB
/
landing-conference.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">
<title>Silicon | Conference Landing</title>
<!-- SEO Meta Tags -->
<meta name="description" content="Silicon - Multipurpose Technology Bootstrap Template">
<meta name="keywords" content="bootstrap, business, creative agency, mobile app showcase, saas, fintech, finance, online courses, software, medical, conference landing, services, e-commerce, shopping cart, multipurpose, shop, ui kit, marketing, seo, landing, blog, portfolio, html5, css3, javascript, gallery, slider, touch, creative">
<meta name="author" content="Createx Studio">
<!-- Viewport -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Favicon and Touch Icons -->
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon/favicon-16x16.png">
<link rel="manifest" href="assets/favicon/site.webmanifest">
<link rel="mask-icon" href="assets/favicon/safari-pinned-tab.svg" color="#6366f1">
<link rel="shortcut icon" href="assets/favicon/favicon.ico">
<meta name="msapplication-TileColor" content="#080032">
<meta name="msapplication-config" content="assets/favicon/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<!-- Vendor Styles -->
<link rel="stylesheet" media="screen" href="assets/vendor/boxicons/css/boxicons.min.css"/>
<link rel="stylesheet" media="screen" href="assets/vendor/swiper/swiper-bundle.min.css"/>
<link rel="stylesheet" media="screen" href="assets/vendor/lightgallery/css/lightgallery-bundle.min.css"/>
<!-- Main Theme Styles + Bootstrap -->
<link rel="stylesheet" media="screen" href="assets/css/theme.min.css">
<!-- Page loading styles -->
<style>
.page-loading {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
-webkit-transition: all .4s .2s ease-in-out;
transition: all .4s .2s ease-in-out;
background-color: #fff;
opacity: 0;
visibility: hidden;
z-index: 9999;
}
.dark-mode .page-loading {
background-color: #0b0f19;
}
.page-loading.active {
opacity: 1;
visibility: visible;
}
.page-loading-inner {
position: absolute;
top: 50%;
left: 0;
width: 100%;
text-align: center;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
-webkit-transition: opacity .2s ease-in-out;
transition: opacity .2s ease-in-out;
opacity: 0;
}
.page-loading.active > .page-loading-inner {
opacity: 1;
}
.page-loading-inner > span {
display: block;
font-size: 1rem;
font-weight: normal;
color: #9397ad;
}
.dark-mode .page-loading-inner > span {
color: #fff;
opacity: .6;
}
.page-spinner {
display: inline-block;
width: 2.75rem;
height: 2.75rem;
margin-bottom: .75rem;
vertical-align: text-bottom;
border: .15em solid #b4b7c9;
border-right-color: transparent;
border-radius: 50%;
-webkit-animation: spinner .75s linear infinite;
animation: spinner .75s linear infinite;
}
.dark-mode .page-spinner {
border-color: rgba(255,255,255,.4);
border-right-color: transparent;
}
@-webkit-keyframes spinner {
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes spinner {
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
</style>
<!-- Theme mode -->
<script>
let mode = window.localStorage.getItem('mode'),
root = document.getElementsByTagName('html')[0];
if (mode !== null && mode === 'dark') {
root.classList.add('dark-mode');
} else {
root.classList.remove('dark-mode');
}
</script>
<!-- Page loading scripts -->
<script>
(function () {
window.onload = function () {
const preloader = document.querySelector('.page-loading');
preloader.classList.remove('active');
setTimeout(function () {
preloader.remove();
}, 1000);
};
})();
</script>
</head>
<!-- Body -->
<body>
<!-- Page loading spinner -->
<div class="page-loading active">
<div class="page-loading-inner">
<div class="page-spinner"></div><span>Loading...</span>
</div>
</div>
<!-- Page wrapper for sticky footer -->
<!-- Wraps everything except footer to push footer to the bottom of the page if there is little content -->
<main class="page-wrapper">
<!-- Navbar -->
<!-- Remove "fixed-top" class to make navigation bar scrollable with the page -->
<header class="header navbar navbar-expand-lg bg-light shadow-sm fixed-top">
<div class="container px-3">
<a href="index.html" class="navbar-brand pe-3">
<img src="assets/img/logo.svg" width="47" alt="Silicon">
Silicon
</a>
<div id="navbarNav" class="offcanvas offcanvas-end">
<div class="offcanvas-header border-bottom">
<h5 class="offcanvas-title">Menu</h5>
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle active" data-bs-toggle="dropdown" aria-current="page">Landings</a>
<div class="dropdown-menu p-0">
<div class="d-lg-flex">
<div class="mega-dropdown-column bg-position-center bg-repeat-0 bg-size-cover rounded-3 rounded-end-0" style="background-image: url(assets/img/landings.jpg); margin: -1px;"></div>
<div class="mega-dropdown-column pt-lg-3 pb-lg-4">
<ul class="list-unstyled mb-0">
<li><a href="index.html" class="dropdown-item">Template Intro Page</a></li>
<li><a href="landing-mobile-app-showcase-v1.html" class="dropdown-item">Mobile App Showcase v.1</a></li>
<li><a href="landing-mobile-app-showcase-v2.html" class="dropdown-item">Mobile App Showcase v.2</a></li>
<li><a href="landing-product.html" class="dropdown-item d-flex align-items-center">Product Landing<span class="badge bg-success ms-2">New</span></a></li>
<li><a href="landing-startup.html" class="dropdown-item d-flex align-items-center">Startup</a></li>
<li><a href="landing-saas-v1.html" class="dropdown-item">SaaS v.1</a></li>
<li><a href="landing-saas-v2.html" class="dropdown-item">SaaS v.2</a></li>
<li><a href="landing-saas-v3.html" class="dropdown-item">SaaS v.3</a></li>
</ul>
</div>
<div class="mega-dropdown-column pt-lg-3 pb-lg-4">
<ul class="list-unstyled mb-0">
<li><a href="landing-financial.html" class="dropdown-item">Financial Consulting</a></li>
<li><a href="landing-online-courses.html" class="dropdown-item">Online Courses</a></li>
<li><a href="landing-medical.html" class="dropdown-item">Medical</a></li>
<li><a href="landing-software-company.html" class="dropdown-item">IT (Software) Company</a></li>
<li><a href="landing-conference.html" class="dropdown-item">Conference</a></li>
<li><a href="landing-digital-agency.html" class="dropdown-item">Digital Agency</a></li>
<li><a href="landing-blog.html" class="dropdown-item">Blog Homepage</a></li>
</ul>
</div>
</div>
</div>
</li>
<li class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" data-bs-toggle="dropdown">Pages</a>
<div class="dropdown-menu">
<div class="d-lg-flex pt-lg-3">
<div class="mega-dropdown-column">
<h6 class="px-3 mb-2">About</h6>
<ul class="list-unstyled mb-3">
<li><a href="about-v1.html" class="dropdown-item py-1">About v.1</a></li>
<li><a href="about-v2.html" class="dropdown-item py-1">About v.2</a></li>
<li><a href="about-v3.html" class="dropdown-item py-1">About v.3</a></li>
</ul>
<h6 class="px-3 mb-2">Blog</h6>
<ul class="list-unstyled mb-3">
<li><a href="blog-list-with-sidebar.html" class="dropdown-item py-1">List View with Sidebar</a></li>
<li><a href="blog-grid-with-sidebar.html" class="dropdown-item py-1">Grid View with Sidebar</a></li>
<li><a href="blog-list-no-sidebar.html" class="dropdown-item py-1">List View no Sidebar</a></li>
<li><a href="blog-grid-no-sidebar.html" class="dropdown-item py-1">Grid View no Sidebar</a></li>
<li><a href="blog-simple-feed.html" class="dropdown-item py-1">Simple Feed</a></li>
<li><a href="blog-single.html" class="dropdown-item py-1">Single Post</a></li>
<li><a href="blog-podcast.html" class="dropdown-item py-1">Podcast</a></li>
</ul>
</div>
<div class="mega-dropdown-column">
<h6 class="px-3 mb-2">Portfolio</h6>
<ul class="list-unstyled mb-3">
<li><a href="portfolio-grid.html" class="dropdown-item py-1">Grid View</a></li>
<li><a href="portfolio-list.html" class="dropdown-item py-1">List View</a></li>
<li><a href="portfolio-slider.html" class="dropdown-item py-1">Slider View</a></li>
<li><a href="portfolio-courses.html" class="dropdown-item py-1">Courses</a></li>
<li><a href="portfolio-single-project.html" class="dropdown-item py-1">Single Project</a></li>
<li><a href="portfolio-single-course.html" class="dropdown-item py-1">Single Course</a></li>
</ul>
<h6 class="px-3 mb-2">Services</h6>
<ul class="list-unstyled mb-3">
<li><a href="services-v1.html" class="dropdown-item py-1">Services v.1</a></li>
<li><a href="services-v2.html" class="dropdown-item py-1">Services v.2</a></li>
<li><a href="services-single-v1.html" class="dropdown-item py-1">Service Details v.1</a></li>
<li><a href="services-single-v2.html" class="dropdown-item py-1">Service Details v.2</a></li>
</ul>
</div>
<div class="mega-dropdown-column">
<h6 class="px-3 mb-2">Pricing</h6>
<ul class="list-unstyled mb-3">
<li><a href="pricing.html" class="dropdown-item py-1">Pricing Page</a></li>
</ul>
<h6 class="px-3 mb-2">Contacts</h6>
<ul class="list-unstyled mb-3">
<li><a href="contacts-v1.html" class="dropdown-item py-1">Contacts v.1</a></li>
<li><a href="contacts-v2.html" class="dropdown-item py-1">Contacts v.2</a></li>
<li><a href="contacts-v3.html" class="dropdown-item py-1">Contacts v.3</a></li>
</ul>
<h6 class="px-3 mb-2">Specialty</h6>
<ul class="list-unstyled">
<li><a href="404-v1.html" class="dropdown-item py-1">404 Error v.1</a></li>
<li><a href="404-v2.html" class="dropdown-item py-1">404 Error v.2</a></li>
</ul>
</div>
</div>
</div>
</li>
<li class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" data-bs-toggle="dropdown">Account</a>
<ul class="dropdown-menu">
<li><a href="account-details.html" class="dropdown-item">Account Details</a></li>
<li><a href="account-security.html" class="dropdown-item">Security</a></li>
<li><a href="account-notifications.html" class="dropdown-item">Notifications</a></li>
<li><a href="account-messages.html" class="dropdown-item">Messages</a></li>
<li><a href="account-saved-items.html" class="dropdown-item">Saved Items</a></li>
<li><a href="account-collections.html" class="dropdown-item">My Collections</a></li>
<li><a href="account-payment.html" class="dropdown-item">Payment Details</a></li>
<li><a href="account-signin.html" class="dropdown-item">Sign In</a></li>
<li><a href="account-signup.html" class="dropdown-item">Sign Up</a></li>
</ul>
</li>
<li class="nav-item">
<a href="components/typography.html" class="nav-link">UI Kit</a>
</li>
<li class="nav-item">
<a href="docs/getting-started.html" class="nav-link">Docs</a>
</li>
</ul>
</div>
<div class="offcanvas-header border-top">
<a href="https://themes.getbootstrap.com/product/silicon-business-technology-template-ui-kit/" class="btn btn-primary w-100" target="_blank" rel="noopener">
<i class="bx bx-cart fs-4 lh-1 me-1"></i>
Buy now
</a>
</div>
</div>
<div class="form-check form-switch mode-switch pe-lg-1 ms-auto me-4" data-bs-toggle="mode">
<input type="checkbox" class="form-check-input" id="theme-mode">
<label class="form-check-label d-none d-sm-block" for="theme-mode">Light</label>
<label class="form-check-label d-none d-sm-block" for="theme-mode">Dark</label>
</div>
<button type="button" class="navbar-toggler" data-bs-toggle="offcanvas" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<a href="https://themes.getbootstrap.com/product/silicon-business-technology-template-ui-kit/" class="btn btn-primary btn-sm fs-sm rounded d-none d-lg-inline-flex" target="_blank" rel="noopener">
<i class="bx bx-cart fs-5 lh-1 me-1"></i>
Buy now
</a>
</div>
</header>
<!-- Video + Title split section -->
<section class="container-fluid position-relative px-0 pt-5 mt-3 mt-lg-4">
<div class="row g-0">
<div class="col-xl-7 col-lg-6 pe-lg-5">
<div class="d-flex h-100 pe-xl-4">
<video class="w-100" autoplay muted loop style="object-fit: cover;">
<source src="assets/img/landing/conference/hero-video.mp4" type="video/mp4">
</video>
</div>
</div>
<div class="col-xl-5 col-lg-6 position-relative py-5">
<img src="assets/img/landing/conference/hero-bg.png" class="position-absolute top-50 translate-middle-y ms-lg-n4" width="866" alt="Background shapes">
<div class="position-relative zindex-5 text-center text-lg-start px-3 px-lg-0 py-xl-4 py-xxl-5 mt-lg-3 mx-auto mx-lg-0" style="max-width: 530px;">
<h2 class="h3 text-primary">Oct 14-15, 2021</h2>
<h1 class="display-1 pb-lg-3 mb-3">NY Digital Conference</h1>
<div class="d-flex justify-content-center justify-content-lg-start text-start mb-2">
<i class="bx bx-map fs-4 text-primary me-2"></i>
<div class="fs-xl">International Convention Centre,<br>New York, USA</div>
</div>
<div class="d-flex flex-column flex-sm-row justify-content-center justify-content-lg-start py-4 py-lg-5">
<a href="#" class="btn btn-primary shadow-primary btn-lg me-sm-3 me-xl-4 mb-3">Buy access pass</a>
<a href="#" class="btn btn-outline-primary btn-lg mb-3">
<i class="bx bx-calendar-check fs-xl me-2 ms-n1"></i>
Add to calendar
</a>
</div>
<div class="d-flex align-items-center justify-content-center justify-content-lg-start text-start pb-2 pt-lg-2 pb-xl-0 pt-xl-5 mt-xxl-5">
<div class="d-flex me-3">
<div class="d-flex align-items-center justify-content-center bg-light rounded-circle" style="width: 52px; height: 52px;">
<img src="assets/img/avatar/08.jpg" class="rounded-circle" width="48" alt="Avatar">
</div>
<div class="d-flex align-items-center justify-content-center bg-light rounded-circle ms-n3" style="width: 52px; height: 52px;">
<img src="assets/img/avatar/40.jpg" class="rounded-circle" width="48" alt="Avatar">
</div>
<div class="d-flex align-items-center justify-content-center bg-light rounded-circle ms-n3" style="width: 52px; height: 52px;">
<img src="assets/img/avatar/09.jpg" class="rounded-circle" width="48" alt="Avatar">
</div>
</div>
<span class="fs-sm"><span class="text-primary fw-semibold">400+</span> attendees are already with us</span>
</div>
</div>
</div>
</div>
<div class="position-absolute d-none d-lg-block bottom-0 start-0 w-100 zindex-5 pb-xxl-5">
<div class="container pb-4 mb-3 mb-xxl-0">
<a href="#speakers" class="d-table text-light opacity-80 text-decoration-none w-auto py-4" data-scroll data-scroll-offset="70">
<span class="d-flex align-items-center">
Scroll for more
<i class="bx bx-down-arrow-circle fs-3 ms-2"></i>
</span>
</a>
</div>
</div>
</section>
<!-- Sponsors -->
<section class="position-relative bg-dark py-5">
<div class="position-absolute top-0 start-0 w-100 h-100" style="background-color: rgba(255,255,255,.05);"></div>
<div class="container position-relative zindex-5 pt-1 pt-md-2 pb-lg-2 pt-lg-4">
<h2 class="h3 text-light text-center text-lg-start mb-4 mb-lg-5">Sponsored by:</h2>
<div class="swiper ms-xxl-n5 me-xxl-n4" data-swiper-options='{
"slidesPerView": 2,
"spaceBetween": 24,
"pagination": {
"el": ".swiper-pagination",
"clickable": true
},
"breakpoints": {
"500": {
"slidesPerView": 3
},
"650": {
"slidesPerView": 4
},
"900": {
"slidesPerView": 5
},
"1100": {
"slidesPerView": 6
}
}
}'>
<div class="swiper-wrapper">
<!-- Item -->
<div class="swiper-slide">
<a href="#" class="d-block py-3">
<img src="assets/img/brands/01.svg" class="d-block mx-auto" width="154" alt="Brand">
</a>
</div>
<!-- Item -->
<div class="swiper-slide">
<a href="#" class="d-block py-3">
<img src="assets/img/brands/02.svg" class="d-block mx-auto" width="154" alt="Brand">
</a>
</div>
<!-- Item -->
<div class="swiper-slide">
<a href="#" class="d-block py-3">
<img src="assets/img/brands/03.svg" class="d-block mx-auto" width="154" alt="Brand">
</a>
</div>
<!-- Item -->
<div class="swiper-slide">
<a href="#" class="d-block py-3">
<img src="assets/img/brands/04.svg" class="d-block mx-auto" width="154" alt="Brand">
</a>
</div>
<!-- Item -->
<div class="swiper-slide">
<a href="#" class="d-block py-3">
<img src="assets/img/brands/05.svg" class="d-block mx-auto" width="154" alt="Brand">
</a>
</div>
<!-- Item -->
<div class="swiper-slide">
<a href="#" class="d-block py-3">
<img src="assets/img/brands/06.svg" class="d-block mx-auto" width="154" alt="Brand">
</a>
</div>
</div>
<!-- Pagination (bullets) -->
<div class="swiper-pagination position-relative pt-2 mt-4"></div>
</div>
</div>
</section>
<!-- Speakers -->
<section id="speakers" class="container py-5 my-2 my-md-4 my-lg-5">
<div class="d-md-flex align-items-center justify-content-between text-center text-md-start pt-md-1 pt-lg-3">
<h2 class="h1 mb-4 mb-md-0 me-md-3">World-Class Speakers</h2>
<a href="#" class="btn btn-primary btn-lg">
Become a speaker
<i class=" bx bx-right-arrow-alt fs-4 lh-1 ms-2 me-n1"></i>
</a>
</div>
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 row-cols-lg-4 g-4 mt-2 mt-lg-4">
<!-- Item -->
<div class="col">
<div class="card card-hover border-0 bg-transparent">
<div class="position-relative">
<img src="assets/img/team/24.jpg" class="rounded-3" alt="Ralph Edwards">
<div class="card-img-overlay d-flex flex-column align-items-center justify-content-center rounded-3">
<span class="position-absolute top-0 start-0 w-100 h-100 bg-primary opacity-35 rounded-3"></span>
<div class="position-relative d-flex zindex-2">
<a href="#" class="btn btn-icon btn-secondary btn-facebook btn-sm bg-white me-2">
<i class="bx bxl-facebook"></i>
</a>
<a href="#" class="btn btn-icon btn-secondary btn-linkedin btn-sm bg-white me-2">
<i class="bx bxl-linkedin"></i>
</a>
<a href="#" class="btn btn-icon btn-secondary btn-twitter btn-sm bg-white">
<i class="bx bxl-twitter"></i>
</a>
</div>
</div>
</div>
<div class="card-body text-center p-3">
<h3 class="fs-lg fw-semibold pt-1 mb-2">Ralph Edwards</h3>
<p class="fs-sm mb-0">Founder & CEO, Uber</p>
</div>
</div>
</div>
<!-- Item -->
<div class="col">
<div class="card card-hover border-0 bg-transparent">
<div class="position-relative">
<img src="assets/img/team/25.jpg" class="rounded-3" alt="Albert Flores">
<div class="card-img-overlay d-flex flex-column align-items-center justify-content-center rounded-3">
<span class="position-absolute top-0 start-0 w-100 h-100 bg-primary opacity-35 rounded-3"></span>
<div class="position-relative d-flex zindex-2">
<a href="#" class="btn btn-icon btn-secondary btn-facebook btn-sm bg-white me-2">
<i class="bx bxl-facebook"></i>
</a>
<a href="#" class="btn btn-icon btn-secondary btn-linkedin btn-sm bg-white me-2">
<i class="bx bxl-linkedin"></i>
</a>
<a href="#" class="btn btn-icon btn-secondary btn-twitter btn-sm bg-white">
<i class="bx bxl-twitter"></i>
</a>
</div>
</div>
</div>
<div class="card-body text-center p-3">
<h3 class="fs-lg fw-semibold pt-1 mb-2">Albert Flores</h3>
<p class="fs-sm mb-0">Principal Consultant, Twitch</p>
</div>
</div>
</div>
<!-- Item -->
<div class="col">
<div class="card card-hover border-0 bg-transparent">
<div class="position-relative">
<img src="assets/img/team/26.jpg" class="rounded-3" alt="Jenny Wilson">
<div class="card-img-overlay d-flex flex-column align-items-center justify-content-center rounded-3">
<span class="position-absolute top-0 start-0 w-100 h-100 bg-primary opacity-35 rounded-3"></span>
<div class="position-relative d-flex zindex-2">
<a href="#" class="btn btn-icon btn-secondary btn-facebook btn-sm bg-white me-2">
<i class="bx bxl-facebook"></i>
</a>
<a href="#" class="btn btn-icon btn-secondary btn-linkedin btn-sm bg-white me-2">
<i class="bx bxl-linkedin"></i>
</a>
<a href="#" class="btn btn-icon btn-secondary btn-twitter btn-sm bg-white">
<i class="bx bxl-twitter"></i>
</a>
</div>
</div>
</div>
<div class="card-body text-center p-3">
<h3 class="fs-lg fw-semibold pt-1 mb-2">Jenny Wilson</h3>
<p class="fs-sm mb-0">UX Designer, Glassdoor</p>
</div>
</div>
</div>
<!-- Item -->
<div class="col">
<div class="card card-hover border-0 bg-transparent">
<div class="position-relative">
<img src="assets/img/team/27.jpg" class="rounded-3" alt="Marvin McKinney">
<div class="card-img-overlay d-flex flex-column align-items-center justify-content-center rounded-3">
<span class="position-absolute top-0 start-0 w-100 h-100 bg-primary opacity-35 rounded-3"></span>
<div class="position-relative d-flex zindex-2">
<a href="#" class="btn btn-icon btn-secondary btn-facebook btn-sm bg-white me-2">
<i class="bx bxl-facebook"></i>
</a>
<a href="#" class="btn btn-icon btn-secondary btn-linkedin btn-sm bg-white me-2">
<i class="bx bxl-linkedin"></i>
</a>
<a href="#" class="btn btn-icon btn-secondary btn-twitter btn-sm bg-white">
<i class="bx bxl-twitter"></i>
</a>
</div>
</div>
</div>
<div class="card-body text-center p-3">
<h3 class="fs-lg fw-semibold pt-1 mb-2">Marvin McKinney</h3>
<p class="fs-sm mb-0">Product Manager, Google</p>
</div>
</div>
</div>
<!-- Item -->
<div class="col">
<div class="card card-hover border-0 bg-transparent">
<div class="position-relative">
<img src="assets/img/team/28.jpg" class="rounded-3" alt="Esther Howard">
<div class="card-img-overlay d-flex flex-column align-items-center justify-content-center rounded-3">
<span class="position-absolute top-0 start-0 w-100 h-100 bg-primary opacity-35 rounded-3"></span>
<div class="position-relative d-flex zindex-2">
<a href="#" class="btn btn-icon btn-secondary btn-facebook btn-sm bg-white me-2">
<i class="bx bxl-facebook"></i>
</a>
<a href="#" class="btn btn-icon btn-secondary btn-linkedin btn-sm bg-white me-2">
<i class="bx bxl-linkedin"></i>
</a>
<a href="#" class="btn btn-icon btn-secondary btn-twitter btn-sm bg-white">
<i class="bx bxl-twitter"></i>
</a>
</div>
</div>
</div>
<div class="card-body text-center p-3">
<h3 class="fs-lg fw-semibold pt-1 mb-2">Esther Howard</h3>
<p class="fs-sm mb-0">VP of Strategy, Stretto Inc.</p>
</div>
</div>
</div>
<!-- Item -->
<div class="col">
<div class="card card-hover border-0 bg-transparent">
<div class="position-relative">
<img src="assets/img/team/29.jpg" class="rounded-3" alt="Cameron Williamson">
<div class="card-img-overlay d-flex flex-column align-items-center justify-content-center rounded-3">
<span class="position-absolute top-0 start-0 w-100 h-100 bg-primary opacity-35 rounded-3"></span>
<div class="position-relative d-flex zindex-2">
<a href="#" class="btn btn-icon btn-secondary btn-facebook btn-sm bg-white me-2">
<i class="bx bxl-facebook"></i>
</a>
<a href="#" class="btn btn-icon btn-secondary btn-linkedin btn-sm bg-white me-2">
<i class="bx bxl-linkedin"></i>
</a>
<a href="#" class="btn btn-icon btn-secondary btn-twitter btn-sm bg-white">
<i class="bx bxl-twitter"></i>
</a>
</div>
</div>
</div>
<div class="card-body text-center p-3">
<h3 class="fs-lg fw-semibold pt-1 mb-2">Cameron Williamson</h3>
<p class="fs-sm mb-0">Co-Founder, Invision LTD</p>
</div>
</div>
</div>
<!-- Item -->
<div class="col">
<div class="card card-hover border-0 bg-transparent">
<div class="position-relative">
<img src="assets/img/team/30.jpg" class="rounded-3" alt="Jerome Bell">
<div class="card-img-overlay d-flex flex-column align-items-center justify-content-center rounded-3">
<span class="position-absolute top-0 start-0 w-100 h-100 bg-primary opacity-35 rounded-3"></span>
<div class="position-relative d-flex zindex-2">
<a href="#" class="btn btn-icon btn-secondary btn-facebook btn-sm bg-white me-2">
<i class="bx bxl-facebook"></i>
</a>
<a href="#" class="btn btn-icon btn-secondary btn-linkedin btn-sm bg-white me-2">
<i class="bx bxl-linkedin"></i>
</a>
<a href="#" class="btn btn-icon btn-secondary btn-twitter btn-sm bg-white">
<i class="bx bxl-twitter"></i>
</a>
</div>
</div>
</div>
<div class="card-body text-center p-3">
<h3 class="fs-lg fw-semibold pt-1 mb-2">Jerome Bell</h3>
<p class="fs-sm mb-0">Strategic Advisor, Shopify</p>
</div>
</div>
</div>
<!-- Item -->
<div class="col">
<div class="card card-hover border-0 bg-transparent">
<div class="position-relative">
<img src="assets/img/team/31.jpg" class="rounded-3" alt="Darrell Steward">
<div class="card-img-overlay d-flex flex-column align-items-center justify-content-center rounded-3">
<span class="position-absolute top-0 start-0 w-100 h-100 bg-primary opacity-35 rounded-3"></span>
<div class="position-relative d-flex zindex-2">
<a href="#" class="btn btn-icon btn-secondary btn-facebook btn-sm bg-white me-2">
<i class="bx bxl-facebook"></i>
</a>
<a href="#" class="btn btn-icon btn-secondary btn-linkedin btn-sm bg-white me-2">
<i class="bx bxl-linkedin"></i>
</a>
<a href="#" class="btn btn-icon btn-secondary btn-twitter btn-sm bg-white">
<i class="bx bxl-twitter"></i>
</a>
</div>
</div>
</div>
<div class="card-body text-center p-3">
<h3 class="fs-lg fw-semibold pt-1 mb-2">Darrell Steward</h3>
<p class="fs-sm mb-0">Senior Project Manager, Uber</p>
</div>
</div>
</div>
</div>
</section>
<!-- Tickets -->
<section class="container pb-5 mb-2 mb-md-4 mb-lg-5 mt-n3 mt-lg-0">
<div class="row pt-xl-2 pb-md-3">
<div class="col-lg-5 mb-4 mb-lg-0">
<h2 class="h1 text-center text-sm-start mb-4">The Biggest Digital Event in 2021</h2>
<p class="pb-2 pb-lg-4 pb-xl-5 mb-3">Et, morbi at sagittis vehicula rutrum. Lacus tortor, quam arcu mi et, at lectus leo nunc. Mattis cras auctor vel pharetra tempor. Rhoncus pellentesque habitant ac tempor. At aliquam euismod est in praesent ornare etiam id. Faucibus libero sit vehicula sed condimentum. Vitae in nam porttitor rutrum sed aliquam donec sed. Sapien facilisi lectus.</p>
<h3 class="text-center text-sm-start mb-4">Ticket Prices</h3>
<!-- Pricing -->
<ul class="list-group">
<li class="list-group-item d-flex flex-column flex-sm-row align-items-center justify-content-between p-4">
<div class="d-flex align-items-center">
<svg class="flex-shrink-0 me-2" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23.794 1.71278C23.5195 1.43819 23.0743 1.43819 22.7997 1.71278L21.4284 3.08406C20.6078 2.1197 19.3859 1.50686 18.0235 1.50686C16.8653 1.50686 15.7764 1.95789 14.9577 2.77675L0.205961 17.5284C0.00486702 17.7295 -0.0552736 18.0319 0.0535233 18.2947C0.162367 18.5574 0.418726 18.7287 0.703117 18.7287H9.44934L11.8087 21.0881H11.2469C10.8585 21.0881 10.5437 21.4029 10.5437 21.7912C10.5437 22.1795 10.8585 22.4943 11.2469 22.4943H15.7656C16.1539 22.4943 16.4687 22.1795 16.4687 21.7912C16.4687 21.4029 16.1539 21.0881 15.7656 21.0881H13.7975L11.4381 18.7287H14.2594C18.7998 18.7287 22.4937 15.0348 22.4937 10.4943V5.97709C22.4937 5.39355 22.3812 4.83578 22.1769 4.32428L23.794 2.70714C24.0687 2.43255 24.0687 1.98737 23.794 1.71278ZM2.4006 17.3224L13.5562 6.1668V8.98806C13.5562 13.5836 9.81745 17.3224 5.22187 17.3224H2.4006ZM21.0875 10.4943C21.0875 14.2594 18.0244 17.3225 14.2594 17.3225H10.2592C13.0761 15.6134 14.9625 12.5168 14.9625 8.98811V6.15995C14.9625 5.25752 15.3139 4.40913 15.952 3.77116C16.5052 3.21784 17.2409 2.91316 18.0235 2.91316C19.713 2.91316 21.0875 4.28767 21.0875 5.97719L21.0875 10.4943Z" fill="currentColor"/><path d="M18.7781 5.97526C19.1664 5.97526 19.4812 5.66046 19.4812 5.27213C19.4812 4.88381 19.1664 4.56901 18.7781 4.56901C18.3898 4.56901 18.075 4.88381 18.075 5.27213C18.075 5.66046 18.3898 5.97526 18.7781 5.97526Z" fill="currentColor"/>
</svg>
<h4 class="fs-base fw-semibold text-nowrap ps-1 mb-0">Early birds</h4>
</div>
<h5 class="text-primary my-2 my-sm-0">$100</h5>
<div class="fs-sm">until Sep 1, 2021</div>
</li>
<li class="list-group-item d-flex flex-column flex-sm-row align-items-center justify-content-between p-4">
<div class="d-flex align-items-center">
<svg class="flex-shrink-0 me-2" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18.0225 2.91133C17.2397 2.91133 16.5038 3.21602 15.9507 3.76914C15.3132 4.40664 14.9616 5.25508 14.9616 6.15977V8.98633C14.9616 12.516 13.0772 15.6098 10.26 17.3207H14.2585C18.0225 17.3207 21.0882 14.2598 21.0882 10.491V5.97227C21.0882 4.28945 19.71 2.91133 18.0225 2.91133ZM18.7772 5.97695C18.3882 5.97695 18.0741 5.66289 18.0741 5.27383C18.0741 4.88477 18.3882 4.5707 18.7772 4.5707C19.1663 4.5707 19.4804 4.88477 19.4804 5.27383C19.4804 5.66289 19.1663 5.97695 18.7772 5.97695ZM23.7929 1.71133C23.5163 1.43477 23.071 1.43477 22.7991 1.71133L21.4257 3.08477C20.6054 2.11914 19.3819 1.50977 18.0225 1.50977C16.8647 1.50977 15.7772 1.95977 14.9569 2.78008L0.20535 17.527C0.00378752 17.7285 -0.05715 18.0285 0.0506625 18.291C0.158475 18.5535 0.416288 18.727 0.702225 18.727H5.22097H9.4491L11.8069 21.0848H11.2444C10.8553 21.0848 10.5413 21.3988 10.5413 21.7879C10.5413 22.177 10.8553 22.491 11.2444 22.491H15.7632C16.1522 22.491 16.4663 22.177 16.4663 21.7879C16.4663 21.3988 16.1522 21.0848 15.7632 21.0848H13.7944L11.4366 18.727H14.2585C18.8007 18.727 22.4944 15.0332 22.4944 10.491V5.97227C22.4944 5.39102 22.3819 4.8332 22.1757 4.31758L23.7929 2.70039C24.0694 2.4332 24.0694 1.98789 23.7929 1.71133ZM2.3991 17.3207L13.5554 6.16445V8.98633C13.5554 13.5801 9.81472 17.3207 5.22097 17.3207H2.3991ZM21.0882 10.4957C21.0882 14.2598 18.0272 17.3254 14.2585 17.3254H10.26C13.0772 15.6145 14.9616 12.516 14.9616 8.98633V6.15977C14.9616 5.25508 15.3132 4.40664 15.9507 3.76914C16.5038 3.21602 17.2397 2.91133 18.0225 2.91133C19.71 2.91133 21.0882 4.28477 21.0882 5.97695V10.4957Z" fill="currentColor"/>
</svg>
<h4 class="fs-base fw-semibold text-nowrap ps-1 mb-0">Late birds</h4>
</div>
<h5 class="badge bg-primary fs-5 fw-bold rounded px-3 py-0 my-3 my-sm-0">$150</h5>
<div class="fs-sm">after Sep 1, 2021</div>
</li>
</ul>
</div>
<div class="col-xl-6 col-lg-7 offset-xl-1 position-relative">
<!-- Ticket card -->
<div class="position-relative">
<div class="position-relative overflow-hidden bg-gradient-primary rounded-3 zindex-5 py-5 px-4 p-sm-5">
<span class="position-absolute top-50 start-0 translate-middle bg-light rounded-circle p-4"></span>
<span class="position-absolute top-0 start-0 w-100 h-100 bg-repeat-0 bg-position-center-end bg-size-cover" style="background-image: url(assets/img/landing/conference/price-card-pattern.png);"></span>
<div class="px-md-4 position-relative zindex-5">
<div class="d-sm-flex align-items-start justify-content-between">
<div class="text-center text-sm-start me-sm-4">
<div class="lead fw-semibold text-light text-uppercase mb-2">Oct 14+15</div>
<h3 class="h1 text-light">NY Digital Conference</h3>
</div>
<div class="d-table bg-white rounded-3 p-4 flex-shrink-0 mx-auto mx-sm-0">
<img src="assets/img/landing/conference/qr.png" width="102" alt="QR Code">
</div>
</div>
<div class="d-flex flex-column flex-sm-row align-items-center pt-4 mt-2">
<a href="#" class="btn btn-light btn-lg mb-3 mb-sm-0 me-sm-3">Buy access pass</a>
<div class="d-flex align-items-center">
<span class="fs-lg text-light me-2">for only</span>
<span class="h4 text-light mb-0">$100</span>
</div>
</div>
</div>
<span class="position-absolute top-50 end-0 translate-middle-y bg-light rounded-circle p-4 me-n4"></span>
</div>
<span class="position-absolute bg-gradient-primary opacity-60 bottom-0 mb-n2 d-dark-mode-none" style="left: 1.5rem; width: calc(100% - 3rem); height: 5rem; filter: blur(.625rem);"></span>
</div>
<!-- Arrow -->
<div class="position-absolute bottom-0 text-primary d-none d-lg-block ms-xl-n5 mb-lg-5 mb-xl-4 pb-3">
<div class="ms-xl-n4">
<svg width="95" height="100" viewBox="0 0 95 100" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M78.8361 25.0939C91.1514 40.6379 81.8802 63.3086 61.7212 64.3539C60.7119 64.447 59.5832 64.3477 58.6105 64.2848C58.7669 50.9978 52.4534 36.5276 41.6324 32.847C31.8669 29.5776 26.5235 39.0204 30.5663 47.0383C35.4083 56.5589 43.9198 64.4699 54.2628 67.3808C53.4517 75.7446 49.4008 83.1867 40.4191 85.693C25.2817 89.8859 9.48935 75.832 7.25928 61.4938C7.12064 59.981 4.79 60.0942 4.92864 61.607C5.83171 80.8987 28.9103 96.1621 46.7792 87.3441C53.6867 83.8595 57.3887 76.5003 58.3558 68.173C69.2212 69.5612 79.5859 63.2659 85.1681 54.2081C91.5844 43.7002 88.5763 31.9764 81.257 23.1926C80.1091 21.7727 77.8441 23.7109 78.8361 25.0939ZM39.1221 52.6568C36.2753 49.3596 33.1435 45.1733 32.7276 40.635C32.275 36.2527 38.2211 36.1619 40.7539 36.5897C43.9108 37.163 46.2067 40.0025 47.9151 42.5401C51.7632 47.8805 54.3289 55.8821 54.5172 63.4926C48.5423 61.6026 43.3094 57.2542 39.1221 52.6568Z" fill="currentColor"/><path d="M75.1096 15.0312C74.0848 19.3973 73.3354 23.9923 73.4392 28.4577C73.5047 30.2821 76.0279 30.0497 76.1186 28.2613C76.2997 24.6849 77.2976 21.1349 78.2588 17.7408C80.2501 18.3708 82.3978 19.0372 84.3528 19.8231C85.8397 20.4997 87.9238 22.1382 89.7035 21.5672C90.5937 21.2818 90.7767 20.5022 90.6474 19.6495C90.3065 17.596 87.0302 16.8302 85.3872 16.1172C82.6885 14.993 80.073 14.2174 77.2645 13.561C76.3289 13.3423 75.3292 14.0956 75.1096 15.0312Z" fill="currentColor"/></svg>
</div>
</div>
</div>
</div>
</section>
<!-- Highlights (Video showreel) -->
<section class="bg-secondary py-5">
<div class="container py-2 py-md-4 py-lg-5">
<h3 class="h1 text-center mb-lg-4">Previous Year Highlights</h3>
<p class="fs-lg text-muted text-center mb-4 mb-lg-5">Watch the short video and check out how the last NY Digital Conference unfolded.</p>
<div class="position-relative overflow-hidden rounded-3 mb-4 mb-lg-5">
<span class="position-absolute top-0 start-0 w-100 h-100 bg-dark opacity-35"></span>
<img src="assets/img/landing/conference/video-cover.jpg" alt="Video cover">
<div class="position-absolute top-0 start-0 w-100 h-100 zindex-5 d-flex align-items-center justify-content-center">
<a href="https://www.youtube.com/watch?v=LBfAnFX15nc" class="btn btn-video btn-icon bg-white btn-xl stretched-link" data-bs-toggle="video">
<i class="bx bx-play"></i>
</a>
</div>
</div>
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 g-4 pt-2 pt-md-3 pt-lg-2">
<div class="col">
<div class="d-flex align-items-center">
<div class="display-4 text-primary">20+</div>
<p class="ps-3 mb-0">Hours of digital content,workshops & side-events</p>
</div>
</div>
<div class="col">
<div class="d-flex align-items-center">
<div class="display-4 text-primary">3K+</div>
<p class="ps-3 mb-0">Industry experts, students, and enthusiasts</p>
</div>
</div>
<div class="col">
<div class="d-flex align-items-center">
<div class="display-4 text-primary">18</div>
<p class="ps-3 mb-0">Digital experts, instructors and panelists for our side-events</p>
</div>
</div>
</div>
</div>
</section>
<!-- Schedule -->
<section class="container py-5">
<div class="row mt-xl-2 mb-xl-3 pb-3 py-md-4 py-lg-5">
<div class="col-12">
<h2 class="h1 text-center text-sm-start pb-2 pb-lg-0 mb-4 mb-lg-5">Schedule</h2>
</div>
<div class="col-lg-3 mb-4">
<!-- Nav tabs -->
<div class="nav flex-nowrap flex-lg-column nav-tabs" role="tablist" aria-orientation="vertical">
<a href="#day-1" class="nav-link d-block w-100 rounded-3 p-4 p-xl-5 me-2 me-sm-3 me-lg-0 mb-lg-3 active" id="day-1-tab" data-bs-toggle="tab" role="tab" aria-controls="day-1" aria-selected="true">
<div class="fs-xl">Day One</div>
<div class="fs-3 fw-bold">Oct 14, 2021</div>
</a>
<a href="#day-2" class="nav-link d-block w-100 rounded-3 p-4 p-xl-5" id="day-2-tab" data-bs-toggle="tab" role="tab" aria-controls="day-2" aria-selected="false">
<div class="fs-xl">Day Two</div>
<div class="fs-3 fw-bold">Oct 15, 2021</div>
</a>
</div>
</div>
<div class="col-lg-8 offset-lg-1">
<!-- Tab panes -->
<div class="tab-content">
<!-- Day 1 schedule -->
<div class="tab-pane fade show active" id="day-1" role="tabpanel" aria-labelledby="day-1-tab">
<div class="border-bottom pb-4">
<div class="row pb-1 pb-xl-3">
<div class="col-sm-4 mb-3 mb-sm-0">
<div class="h5 mb-1">9:30 – 10:30 am</div>
<p class="text-muted mb-0">October 14th</p>
</div>
<div class="col-sm-8">
<h5 class="mb-0">Opening party & early registration</h5>
</div>
</div>
</div>
<div class="border-bottom py-4">
<div class="row py-1 py-xl-3">
<div class="col-sm-4 mb-3 mb-sm-0">
<div class="h5 mb-1">10:30 – 11:30 am</div>
<p class="text-muted mb-2 mb-sm-4">October 14th</p>
<span class="badge bg-warning shadow-warning fs-sm">Lecture</span>
</div>
<div class="col-sm-8">
<h5>Product strategy: Defining your strategy, tactics, metrics & roadmap</h5>
<p class="mb-4">Pellentesque rhoncus viverra vestibulum, purus purus quisque quisque sed. Cras vestibulum facilisis dictumst consequat. In bibendum diam nunc dignissim magna morbi mattis.</p>
<div class="d-flex align-items-center">
<img src="assets/img/avatar/41.jpg" class="rounded-circle" width="48" alt="Marvin McKinney">
<div class="ps-3">
<h6 class="fw-semibold mb-1">Marvin McKinney</h6>
<p class="fs-sm text-muted mb-0">Product Manager, Google</p>
</div>
</div>
</div>
</div>
</div>
<div class="border-bottom py-4">
<div class="row py-1 py-xl-3">
<div class="col-sm-4 mb-3 mb-sm-0">
<div class="h5 mb-1">11:30 am – 13:00 pm</div>
<p class="text-muted mb-2 mb-sm-4">October 14th</p>
<span class="badge bg-success shadow-success fs-sm">Workshop</span>
</div>
<div class="col-sm-8">
<h5>Workshop: Top trends and predictions for content that will dominate next year</h5>
<p class="mb-4">Nec, malesuada quisque lorem id amet posuere. Risus, elit, vel pharetra ac, dictum lorem nisl morbi. Lorem dui id aliquam eu feugiat arcu diam.</p>
<div class="row row-cols-1 row-cols-md-2 g-3">
<div class="col">
<div class="d-flex align-items-center">
<img src="assets/img/avatar/01.jpg" class="rounded-circle" width="48" alt="Jerome Bell">
<div class="ps-3">
<h6 class="fw-semibold mb-1">Jerome Bell</h6>
<p class="fs-sm text-muted mb-0">Strategic Advisor, Shopify</p>
</div>
</div>
</div>
<div class="col">
<div class="d-flex align-items-center">
<img src="assets/img/avatar/06.jpg" class="rounded-circle" width="48" alt="Jenny Wilson">
<div class="ps-3">
<h6 class="fw-semibold mb-1">Jenny Wilson</h6>
<p class="fs-sm text-muted mb-0">UX Designer, Glassdoor</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="border-bottom py-4">
<div class="row py-1 py-xl-3">
<div class="col-sm-4 mb-3 mb-sm-0">
<div class="h5 mb-1">13:00 – 14:00 pm</div>
<p class="text-muted mb-0">October 14th</p>
</div>
<div class="col-sm-8">
<h5 class="mb-0">Interlude: attendee dinner</h5>
</div>
</div>
</div>
<div class="border-bottom py-4">
<div class="row py-1 py-xl-3">
<div class="col-sm-4 mb-3 mb-sm-0">
<div class="h5 mb-1">14:00 – 16:00 pm</div>
<p class="text-muted mb-2 mb-sm-4">October 14th</p>
<span class="badge bg-warning shadow-warning fs-sm">Lecture</span>
</div>
<div class="col-sm-8">
<h5>Group discussion: How to align and empower cross-team success</h5>
<p class="mb-4">Pellentesque rhoncus viverra vestibulum, purus purus quisque quisque sed. Cras vestibulum facilisis.</p>
<div class="row row-cols-1 row-cols-md-2 g-3">
<div class="col">
<div class="d-flex align-items-center">
<img src="assets/img/avatar/02.jpg" class="rounded-circle" width="48" alt="Ralph Edwards">
<div class="ps-3">
<h6 class="fw-semibold mb-1">Ralph Edwards</h6>
<p class="fs-sm text-muted mb-0">Founder & CEO, Uber</p>
</div>
</div>
</div>
<div class="col">
<div class="d-flex align-items-center">
<img src="assets/img/avatar/05.jpg" class="rounded-circle" width="48" alt="Albert Flores">
<div class="ps-3">
<h6 class="fw-semibold mb-1">Albert Flores</h6>
<p class="fs-sm text-muted mb-0">Principal Consultant, Twitch</p>
</div>
</div>
</div>
<div class="col">
<div class="d-flex align-items-center">
<img src="assets/img/avatar/03.jpg" class="rounded-circle" width="48" alt="Esther Howard">
<div class="ps-3">
<h6 class="fw-semibold mb-1">Esther Howard</h6>
<p class="fs-sm text-muted mb-0">VP of Strategy, Stretto Inc.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="border-bottom py-4">
<div class="row py-1 py-xl-3">
<div class="col-sm-4 mb-3 mb-sm-0">
<div class="h5 mb-1">16:00 – 17:00 pm</div>
<p class="text-muted mb-2 mb-sm-4">October 14th</p>
<span class="badge bg-info shadow-info fs-sm">Panel</span>
</div>
<div class="col-sm-8">
<h5>Panel: State of speed tooling</h5>
<p class="mb-4">Volutpat aliquam quam eget sit. Aliquam dui pellentesque egestas duis amet malesuada eget. Ut faucibus dignissim maecenas dui tristique vestibulum facilisis dictumst consequat.</p>
<div class="d-flex align-items-center">
<img src="assets/img/avatar/07.jpg" class="rounded-circle" width="48" alt="Cameron Williamson">
<div class="ps-3">
<h6 class="fw-semibold mb-1">Cameron Williamson</h6>
<p class="fs-sm text-muted mb-0">Co-Founder, Invision LTD</p>
</div>
</div>
</div>
</div>
</div>
<div class="pt-4">
<div class="row pt-1 pt-xl-3">
<div class="col-sm-4 mb-3 mb-sm-0">
<div class="h5 mb-1">17:00 – 19:00 pm</div>
<p class="text-muted mb-0">October 14th</p>
</div>
<div class="col-sm-8">
<h5 class="mb-0">Official mid-conference party after Day One</h5>
</div>
</div>
</div>
</div>
<!-- Day 2 schedule -->
<div class="tab-pane fade" id="day-2" role="tabpanel" aria-labelledby="day-2-tab">
<div class="border-bottom pb-4">
<div class="row pb-1 pb-xl-3">
<div class="col-sm-4 mb-3 mb-sm-0">
<div class="h5 mb-1">9:30 – 10:30 am</div>
<p class="text-muted mb-0">October 15th</p>
</div>
<div class="col-sm-8">
<h5 class="mb-0">Day 2 registration</h5>
</div>
</div>
</div>
<div class="border-bottom py-4">
<div class="row py-1 py-xl-3">
<div class="col-sm-4 mb-3 mb-sm-0">
<div class="h5 mb-1">10:30 – 11:30 am</div>
<p class="text-muted mb-2 mb-sm-4">October 15th</p>
<span class="badge bg-success shadow-success fs-sm">Workshop</span>
</div>
<div class="col-sm-8">
<h5>Workshop: Top trends and predictions for content that will dominate next year</h5>
<p class="mb-4">Nec, malesuada quisque lorem id amet posuere. Risus, elit, vel pharetra ac, dictum lorem nisl morbi. Lorem dui id aliquam eu feugiat arcu diam.</p>
<div class="row row-cols-1 row-cols-md-2 g-3">
<div class="col">
<div class="d-flex align-items-center">
<img src="assets/img/avatar/01.jpg" class="rounded-circle" width="48" alt="Jerome Bell">
<div class="ps-3">
<h6 class="fw-semibold mb-1">Jerome Bell</h6>
<p class="fs-sm text-muted mb-0">Strategic Advisor, Shopify</p>
</div>
</div>
</div>
<div class="col">
<div class="d-flex align-items-center">
<img src="assets/img/avatar/06.jpg" class="rounded-circle" width="48" alt="Jenny Wilson">
<div class="ps-3">
<h6 class="fw-semibold mb-1">Jenny Wilson</h6>
<p class="fs-sm text-muted mb-0">UX Designer, Glassdoor</p>
</div>
</div>
</div>