forked from socratesbe/site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1144 lines (954 loc) · 48.6 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">
<head>
<meta charset="utf-8">
<!--[if IE]><meta http-equiv="X-UA-Compatible" content="IE=edge"><![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
<title>AgileCoachCampBarcelona</title>
<meta name="description" content="Agile Coach Camp Barcelona">
<meta name="keywords" content="unconference, open space, coach camp, Barcelona, unconference Barcelona">
<meta name="author" content="ACCBCN">
<link rel="shortcut icon" href="assets/img/favicon.ico">
<link rel="apple-touch-icon" href="assets/img/apple-touch-icon.jpg">
<link rel="apple-touch-icon" sizes="72x72" href="assets/img/apple-touch-icon-72x72.jpg">
<link rel="apple-touch-icon" sizes="114x114" href="assets/img/apple-touch-icon-114x114.jpg">
<link rel="stylesheet" type="text/css" href="assets/css/custom-animations.css" />
<link rel="stylesheet" type="text/css" href="assets/css/style.css" />
<!--[if lt IE 9]>
<script src="assets/js/html5shiv.js"></script>
<script src="assets/js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="preloader-mask">
<div class="preloader"></div>
</div>
<section id="hero" class="hero-section bg3 bg-cover window-height light-text">
<ul class="socials-nav">
<li class="socials-nav-item"><a href="https://twitter.com/accbcn" target="_blank" rel="noopener noreferrer"><span
class="fa fa-twitter"></span></a></li>
</ul>
<div class="heading-block centered-block align-center">
<div class="container">
<h5 class="heading-alt" style="margin-bottom: 8px;"><span
class="fa fa-calendar-o base-clr-txt"></span>24-26.OCTOBER
<span class="fa fa-map-marker base-clr-txt" style="margin-left: 14px;"></span>Castelldefells, ES
</h5>
<h1 class="extra-heading">Agile Coach Camp Barcelona</h1>
<h6 class="thin base-font">Open space</strong></h6>
<div class="btns-container">
<a class="btn btn-md" target="_blank"
rel="noopener noreferrer">REGISTRATIONS CLOSED</a>
</div>
</div>
</div>
</section>
<header class="header header-black">
<div class="header-wrapper">
<div class="container">
<div class="col-sm-2 col-xs-12 navigation-header">
<button class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navigation" aria-expanded="false"
aria-controls="navigation">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="col-sm-10 col-xs-12 navigation-container">
<div id="navigation" class="navbar-collapse collapse">
<ul class="navigation-list pull-left light-text">
<li class="navigation-item"><a href="#schedule" class="navigation-link">Schedule</a></li>
<li class="navigation-item"><a href="#gallery" class="navigation-link">Previous editions</a></li>
<li class="navigation-item"><a href="#sponsors" class="navigation-link">Sponsors</a></li>
<li class="navigation-item"><a href="#venue" class="navigation-link">Venue</a></li>
</ul>
<a class="pull-right buy-btn" target="_blank"
rel="noopener noreferrer">REGISTRATIONS CLOSED</a>
</div>
</div>
</div>
</div>
</header>
<section id="about" class="section align-center">
<div class="container">
<span class="icon section-icon icon-multimedia-12"></span>
<h3>Learn, share, co-create</h3>
<p class="text-alt">Join us to share insights, discuss challenges and have loads of fun together with like-minded
<span class="highlight">passionate agile practitioners</span>.
</p>
<br />
<br />
<div class="tabs-wrapper tabs-horizontal">
<ul class="nav nav-tabs">
<li class="active"><a href="#horizontal_tab1" data-toggle="tab">
<h6 class="heading-alt"><span class="fa fa-code"></span> Sessions</h6>
</a></li>
<li><a href="#horizontal_tab2" data-toggle="tab">
<h6 class="heading-alt"><span class="fa fa-rocket"></span> Open space?</h6>
</a></li>
<li><a href="#horizontal_tab3" data-toggle="tab">
<h6 class="heading-alt"><span class="fa fa-external-link"></span> Practical</h6>
</a></li>
</ul>
<div class="tab-content">
<div id="horizontal_tab1" class="tab-pane fade active in">
<div class="col-sm-5 img-column">
<img src="assets/img/gallery/ACC-BCN-23-223.jpeg" alt="" class="img-responsive" />
</div>
<div class="col-sm-7 align-left">
<p>Learn and share new ideas, techniques and frameworks through coaching dojos,
deep dive sessions, simulations, group discussions, presentations and informal conversations.</p>
<p>On Friday and Saturday, we’ll run an open space, in which every attendee is welcome and encouraged to
propose talks, discussions, workshops or whatever else they choose to further every attendee’s knowledge
and understanding of agile ways of working.</p>
<br />
<h6>Some sessions from our previous ACCBCN events:</h6>
<ul style="list-style-type: circle; margin-left: 20px;">
<li>Non violent communication</li>
<li>Finding your Ikigai</li>
<li>Business agility</li>
<li>Agile coaching circle</li>
<li>The responsibility process</li>
<li>Liberating structures</li>
<li>Agile estimating and planning</li>
<li>Organisational design</li>
<li>The courage to be disliked</li>
<li>Scaling frameworks compared</li>
<li>Powerpoint karaoke</li>
</ul>
</div>
</div>
<div id="horizontal_tab2" class="tab-pane fade">
<div class="col-sm-7 align-left">
<p>ACCBCN participants create the schedule on the fly, every day morning based on the different topics
that they would like to tackle.
This “schedule” is known as the Market Place. The market place is basiscally a map of timeslots and
locations for sessions.</p>
<p>Every participant that wants to, can give a short intro of the topic they want to discuss, present,
work on, experiment with that day. After all topics are introduced all participants will co-create the
market place for that day.</p>
<br />
<h6>Law of freedom</h6>
<p>When the market place is set up, everyone is free to attend any session they are interested in. If at
any time during a session as participant you find yourself neither learning nor contributing, take
ownership of your freedom and leave to join another session, or to just hang out.</p>
</div>
<div class="col-sm-5 img-column">
<img src="assets/img/gallery/ACC-BCN-22-218.jpeg" alt="" class="img-responsive" />
</div>
</div>
<div id="horizontal_tab3" class="tab-pane fade">
<div class="col-sm-5 img-column">
<img src="assets/img/gallery/ACC-BCN-22-059.jpeg" alt="" class="img-responsive" />
</div>
<div class="col-sm-7 align-left">
<p>ACCBCN runs as a non-profit, low-cost, community-organized event. You will only be charged for your
full-board accommodation expenses. The price will be around 600€ including food and accommodation.
You will be invoiced by, and pay directly to the venue.</p>
<p>The coach camp runs from Thursday 24 October to Saturday 26 October, 2024.</p>
<p>We are aiming for a diverse group of people from all around the world. For achieving this 50% of the
seats will be reserved for participants coming from outside Spain and 50% will be reserved for
participants coming from Spain. We love the conversations happening at the coach camp,
and the relationships we create among us.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section bg-cover overlay bg4 light-text align-center">
<div class="container">
<h5 class="heading-alt">Count down with us</h5>
<p class="text-alt" style="margin-bottom: 80px;"></p>
<!-- Countdown start (set date in ventcamp.js) -->
<div class="row counters-wrapper countdown">
<div class="col-sm-3">
<div class="counter-block counter-block-border has-separator">
<div class="counter-box">
<div class="counter-content">
<span class="count">{dnn}</span>
<p class="title">days</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="counter-block counter-block-border has-separator">
<div class="counter-box">
<div class="counter-content">
<span class="count">{hnn}</span>
<p class="title">hours</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="counter-block counter-block-border has-separator">
<div class="counter-box">
<div class="counter-content">
<span class="count">{mnn}</span>
<p class="title">minutes</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="counter-block counter-block-border">
<div class="counter-box">
<div class="counter-content">
<span class="count">{snn}</span>
<p class="title">seconds</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="schedule" class="section align-center">
<div class="container">
<h5 class="heading-alt">Schedule</h5>
<p class="text-alt" style="margin-bottom: 80px;">Some practical information</p>
<div class="col-md-10 col-md-offset-1">
<!-- Schedule start -->
<div class="row schedule schedule-light">
<!-- Navigation by day start -->
<ul class="nav nav-schedule">
<li class="active"><a href="#schedule3_day1" data-toggle="tab">Thursday, October.24</a></li>
<li><a href="#schedule3_day2" data-toggle="tab">Friday, October.25</a></li>
<li><a href="#schedule3_day3" data-toggle="tab">Saturday, October.26</a></li>
</ul>
<!-- Navigation by day end -->
<!-- First level content start -->
<div class="tab-content">
<!-- Day 1 content start -->
<div id="schedule3_day1" class="tab-pane fade active in">
<!-- Accordion start -->
<div class="panel-group" id="schedule3_day1_timeline">
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day1_time1" class="schedule-item-toggle">
<strong class="time highlight">3:00 PM - 6:00 PM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-bars"></span></div>
<h6 class="title">Pre-event</h6>
</a>
<div id="schedule3_day1_time1" class="panel-collapse collapse in schedule-item-body">
<p class="description">"Fostering a safe space" – a lightweight workshop about creating safe spaces
and how to hold them.</p>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day1_time2" class="schedule-item-toggle collapsed">
<strong class="time highlight">6:00 PM - 7:00 PM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-bars"></div>
<h6 class="title">Lightning talks</h6>
</a>
<div id="schedule3_day1_time2" class="panel-collapse collapse in schedule-item-body">
<p class="description">During this timeslot we invite all participants who feel like sharing a short
session on any topic to take the stage.</p>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day1_time2" class="schedule-item-toggle collapsed">
<strong class="time highlight">7:00 PM - 8:00 PM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-glass"></div>
<h6 class="title">Free time</h6>
</a>
<div id="schedule3_day1_time3" class="panel-collapse collapse in schedule-item-body">
<p class="description">It is time to strenghten our connections through informal conversations or to
take some time to ourselves to recharge. </p>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day1_time2" class="schedule-item-toggle collapsed">
<strong class="time highlight">8:00 PM - 9:30 PM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-bars"></div>
<h6 class="title">Dinner</h6>
</a>
<div id="schedule3_day1_time4" class="panel-collapse collapse in schedule-item-body">
<p class="description">It is time to strenghten our body to make sure we can get through the
coach camp. </p>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day1_time3" class="schedule-item-toggle collapsed">
<strong class="time highlight">9:30 PM - ? </strong>
<div class="lecture-icon-wrapper"><span class="fa fa-glass"></div>
<h6 class="title">Evening activities</h6>
</a>
<div id="schedule3_day1_time5" class="panel-collapse collapse in schedule-item-body">
<p class="description">The floor is yours to continue the conversation, twist it around and branch
it in every direction.</p>
</div>
</div>
<!-- Lecture end -->
</div>
<!-- Accordion end -->
</div>
<!-- Day 1 content end -->
<!-- Day 2 content start -->
<div id="schedule3_day2" class="tab-pane fade in">
<!-- Accordion start -->
<div class="panel-group" id="schedule3_day2_timeline">
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day2_time1" class="schedule-item-toggle">
<strong class="time highlight">8:00 AM - 9:00 AM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-coffee"></span></div>
<h6 class="title">Breakfast</h6>
</a>
<div id="schedule3_day2_time1" class="panel-collapse collapse in schedule-item-body">
<p class="description">We start the day with a good breakfast</p>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day2_time3" class="schedule-item-toggle collapsed">
<strong class="time highlight">9:00 AM - 10:30 AM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-bars"></div>
<h6 class="title">Opening the space</h6>
</a>
<div id="schedule3_day2_time2" class="panel-collapse collapse in schedule-item-body">
<p class="description">Time for everyone to share their session ideas and co-create the market
place.</p>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day2_time4" class="schedule-item-toggle collapsed">
<strong class="time highlight">10:30 AM - 1:00 PM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-bars"></div>
<h6 class="title">Sessions</h6>
</a>
<div id="schedule3_day2_time3" class="panel-collapse collapse in schedule-item-body">
<p class="description">Time to share and learn.</p>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day2_time5" class="schedule-item-toggle collapsed">
<strong class="time highlight">1:00 PM - 2:00 PM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-cutlery"></span></div>
<h6 class="title">Lunch</h6>
</a>
<div id="schedule3_day2_time4" class="panel-collapse collapse in schedule-item-body">
<p class="description">Time to refuel.</p>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day2_time6" class="schedule-item-toggle collapsed">
<strong class="time highlight">2:00 PM - 6:00 PM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-bars"></div>
<h6 class="title">Sessions</h6>
</a>
<div id="schedule3_day2_time5" class="panel-collapse collapse in schedule-item-body">
<p class="description">Time to share and learn.</p>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day2_time7" class="schedule-item-toggle collapsed">
<strong class="time highlight">6:00 PM - 7:00 PM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-bars"></div>
<h6 class="title">Check in</h6>
</a>
<div id="schedule3_day2_time6" class="panel-collapse collapse in schedule-item-body">
<p class="description">Time to check in after the first sessions of ACCBCN.</p>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day2_time8" class="schedule-item-toggle collapsed">
<strong class="time highlight">7:00 PM - 8:00 PM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-glass"></span></div>
<h6 class="title">Free time</h6>
</a>
<div id="schedule3_day2_time7" class="panel-collapse collapse in schedule-item-body">
<p class="description">During this timeslot we invite all participants who feel like sharing a short
session on any topic to take the stage. </p>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day2_time8" class="schedule-item-toggle collapsed">
<strong class="time highlight">8:00 PM - 9:30 PM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-cutlery"></span></div>
<h6 class="title">Dinner</h6>
</a>
<div id="schedule3_day2_time8" class="panel-collapse collapse in schedule-item-body">
<p class="description">It is time to strenghten our body to make sure we can get through the
coach camp. </p>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day3_time7" class="schedule-item-toggle collapsed">
<strong class="time highlight">9:30 PM - ?</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-bars"></div>
<h6 class="title">Evening activities</h6>
</a>
<div id="schedule3_day3_time9" class="panel-collapse collapse in schedule-item-body">
<p class="description">Time to play, sing, play music, dance or whatever else you want to do
during the evening.</p>
</div>
</div>
<!-- Lecture end -->
</div>
<!-- Accordion end -->
</div>
<!-- Day 2 content end -->
<!-- Day 3 content start -->
<div id="schedule3_day3" class="tab-pane fade in">
<!-- Accordion start -->
<div class="panel-group" id="schedule3_day3_timeline">
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day2_time1" class="schedule-item-toggle">
<strong class="time highlight">8:00 AM - 9:00 AM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-coffee"></span></div>
<h6 class="title">Breakfast</h6>
</a>
<div id="schedule3_day3_time1" class="panel-collapse collapse in schedule-item-body">
<p class="description">We start the day with a good breakfast</p>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day2_time3" class="schedule-item-toggle collapsed">
<strong class="time highlight">9:00 AM - 10:30 AM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-bars"></div>
<h6 class="title">Opening the space</h6>
</a>
<div id="schedule3_day3_time2" class="panel-collapse collapse in schedule-item-body">
<p class="description">Time for everyone to share their session ideas and co-create the market
place.</p>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day2_time4" class="schedule-item-toggle collapsed">
<strong class="time highlight">10:30 AM - 1:00 PM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-bars"></div>
<h6 class="title">Sessions</h6>
</a>
<div id="schedule3_day3_time3" class="panel-collapse collapse in schedule-item-body">
<p class="description">Time to share and learn.</p>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day2_time5" class="schedule-item-toggle collapsed">
<strong class="time highlight">1:00 PM - 2:00 PM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-cutlery"></span></div>
<h6 class="title">Lunch</h6>
</a>
<div id="schedule3_day3_time4" class="panel-collapse collapse in schedule-item-body">
<p class="description">Time to refuel.</p>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day2_time6" class="schedule-item-toggle collapsed">
<strong class="time highlight">2:00 PM - 5:00 PM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-bars"></div>
<h6 class="title">Sessions</h6>
</a>
<div id="schedule3_day3_time5" class="panel-collapse collapse in schedule-item-body">
<p class="description">Time to share and learn.</p>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day2_time7" class="schedule-item-toggle collapsed">
<strong class="time highlight">5:00 PM - 6:00 PM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-bars"></div>
<h6 class="title">Closing the space</h6>
</a>
<div id="schedule3_day3_time6" class="panel-collapse collapse in schedule-item-body">
<p class="description">Time to close the space and say goodbye to ACCBCN 4.</p>
</div>
</div>
<!-- Lecture end -->
</div>
<!-- Accordion end -->
</div>
<!-- Day 3 content end -->
</div>
<!-- First level content end -->
</div>
<!-- Schedule end -->
</div>
</div>
</section>
<section id="register" class="section overlay overlay-clr bg-cover bg4 light-text align-center">
<div class="container">
<h2>Join us on the beach and bring a partner!</h2>
<p>
Would you like to join Agile Coach Camp Barcelona with your partner?
Just add them to your registration and a double room will be reserved for both of you
</p>
<br />
<br />
<a class="btn btn-lg btn-outline" target="_blank"
rel="noopener noreferrer">REGISTRATIONS CLOSED</a>
</div>
</section>
<section id="gallery" class="section align-center">
<div class="container">
<span class="icon section-icon icon-badges-votes-01"></span>
<h3>Some impressions from previous events</h3>
<p class="text-alt">This is what is looks like at <span class="highlight">ACCBCN</span></p>
<br />
<div class="gallery masonry">
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery-1">
<img src="assets/img/gallery/ACC-BCN-18-170.jpeg" alt="">
</a>
<div class="modal-window" data-modal="gallery-1">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<h5 class="heading-alt">ACC-BCN-18</h5>
<br />
<img src="assets/img/gallery/ACC-BCN-18-170.jpeg" class="full-width-img" alt="ACC-BCN-18">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery-2">
<img src="assets/img/gallery/ACC-BCN-18-146.jpeg" alt="">
</a>
<div class="modal-window" data-modal="gallery-2">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<h5 class="heading-alt">ACC-BCN-18</h5>
<br />
<img src="assets/img/gallery/ACC-BCN-18-146.jpeg" class="full-width-img" alt="ACC-BCN-18">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery-3">
<img src="assets/img/gallery/ACC-BCN-18-132.jpeg" alt="">
</a>
<div class="modal-window" data-modal="gallery-3">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<h5 class="heading-alt">ACC-BCN-18</h5>
<br />
<img src="assets/img/gallery/ACC-BCN-18-132.jpeg" class="full-width-img" alt="ACC-BCN-18">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery-4">
<img src="assets/img/gallery/ACC-BCN-18-121.jpeg" alt="">
</a>
<div class="modal-window" data-modal="gallery-4">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<h5 class="heading-alt">ACC-BCN-18</h5>
<br />
<img src="assets/img/gallery/ACC-BCN-18-121.jpeg" class="full-width-img" alt="ACC-BCN-18">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery-5">
<img src="assets/img/gallery/ACC-BCN-18-063.jpeg" alt="">
</a>
<div class="modal-window" data-modal="gallery-5">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<h5 class="heading-alt">ACC-BCN-18</h5>
<br />
<img src="assets/img/gallery/ACC-BCN-18-063.jpeg" class="full-width-img" alt="ACC-BCN-18">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery-6">
<img src="assets/img/gallery/ACC-BCN-18-044.jpeg" alt="">
</a>
<div class="modal-window" data-modal="gallery-6">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<h5 class="heading-alt">ACC-BCN-18</h5>
<br />
<img src="assets/img/gallery/ACC-BCN-18-044.jpeg" class="full-width-img" alt="ACC-BCN-18">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery-7">
<img src="assets/img/gallery/ACC-BCN-19-283.jpeg" alt="">
</a>
<div class="modal-window" data-modal="gallery-7">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<h5 class="heading-alt">ACC-BCN-19</h5>
<br />
<img src="assets/img/gallery/ACC-BCN-19-283.jpeg" class="full-width-img" alt="ACC-BCN-19">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery-8">
<img src="assets/img/gallery/ACC-BCN-19-221.jpeg" alt="">
</a>
<div class="modal-window" data-modal="gallery-8">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<h5 class="heading-alt">ACC-BCN-19</h5>
<br />
<img src="assets/img/gallery/ACC-BCN-19-221.jpeg" class="full-width-img" alt="ACC-BCN-19">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery-9">
<img src="assets/img/gallery/ACC-BCN-19-195.jpeg" alt="">
</a>
<div class="modal-window" data-modal="gallery-9">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<h5 class="heading-alt">ACC-BCN-19</h5>
<br />
<img src="assets/img/gallery/ACC-BCN-19-195.jpeg" class="full-width-img" alt="ACC-BCN-19">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery-10">
<img src="assets/img/gallery/ACC-BCN-19-132.jpeg" alt="">
</a>
<div class="modal-window" data-modal="gallery-10">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<h5 class="heading-alt">ACC-BCN-19</h5>
<br />
<img src="assets/img/gallery/ACC-BCN-19-132.jpeg" class="full-width-img" alt="ACC-BCN-19">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery-11">
<img src="assets/img/gallery/ACC-BCN-19-117.jpeg" alt="">
</a>
<div class="modal-window" data-modal="gallery-11">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<h5 class="heading-alt">ACC-BCN-19</h5>
<br />
<img src="assets/img/gallery/ACC-BCN-19-117.jpeg" class="full-width-img" alt="ACC-BCN-19">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery-12">
<img src="assets/img/gallery/ACC-BCN-19-062.jpeg" alt="">
</a>
<div class="modal-window" data-modal="gallery-12">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<h5 class="heading-alt">ACC-BCN-19</h5>
<br />
<img src="assets/img/gallery/ACC-BCN-19-062.jpeg" class="full-width-img" alt="ACC-BCN-19">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery-13">
<img src="assets/img/gallery/ACC-BCN-22-298.jpeg" alt="">
</a>
<div class="modal-window" data-modal="gallery-13">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<h5 class="heading-alt">ACC-BCN-22</h5>
<br />
<img src="assets/img/gallery/ACC-BCN-22-298.jpeg" class="full-width-img" alt="ACC-BCN-22">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery-14">
<img src="assets/img/gallery/ACC-BCN-22-218.jpeg" alt="">
</a>
<div class="modal-window" data-modal="gallery-14">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<h5 class="heading-alt">ACC-BCN-22</h5>
<br />
<img src="assets/img/gallery/ACC-BCN-22-218.jpeg" class="full-width-img" alt="ACC-BCN-22">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery-15">
<img src="assets/img/gallery/ACC-BCN-22-193.jpeg" alt="">
</a>
<div class="modal-window" data-modal="gallery-15">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<h5 class="heading-alt">ACC-BCN-22</h5>
<br />
<img src="assets/img/gallery/ACC-BCN-22-193.jpeg" class="full-width-img" alt="ACC-BCN-22">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery-16">
<img src="assets/img/gallery/ACC-BCN-22-130.jpeg" alt="">
</a>
<div class="modal-window" data-modal="gallery-16">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<h5 class="heading-alt">ACC-BCN-22</h5>
<br />
<img src="assets/img/gallery/ACC-BCN-22-130.jpeg" class="full-width-img" alt="ACC-BCN-22">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery-17">
<img src="assets/img/gallery/ACC-BCN-22-070.jpeg" alt="">
</a>
<div class="modal-window" data-modal="gallery-17">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<h5 class="heading-alt">ACC-BCN-22</h5>
<br />
<img src="assets/img/gallery/ACC-BCN-22-070.jpeg" class="full-width-img" alt="ACC-BCN-22">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery-18">
<img src="assets/img/gallery/ACC-BCN-22-059.jpeg" alt="">
</a>
<div class="modal-window" data-modal="gallery-18">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<h5 class="heading-alt">ACC-BCN-22</h5>
<br />
<img src="assets/img/gallery/ACC-BCN-22-059.jpeg" class="full-width-img" alt="ACC-BCN-22">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery-19">
<img src="assets/img/gallery/ACC-BCN-22-017.jpeg" alt="">
</a>
<div class="modal-window" data-modal="gallery-19">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<h5 class="heading-alt">ACC-BCN-22</h5>
<br />
<img src="assets/img/gallery/ACC-BCN-22-017.jpeg" class="full-width-img" alt="ACC-BCN-22">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery-20">
<img src="assets/img/gallery/ACC-BCN-22-008.jpeg" alt="">
</a>
<div class="modal-window" data-modal="gallery-20">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<h5 class="heading-alt">ACC-BCN-22</h5>
<br />
<img src="assets/img/gallery/ACC-BCN-22-008.jpeg" class="full-width-img" alt="ACC-BCN-22">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery-21">
<img src="assets/img/gallery/ACC-BCN-23-146.jpeg" alt="">
</a>
<div class="modal-window" data-modal="gallery-21">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<h5 class="heading-alt">ACC-BCN-23</h5>
<br />
<img src="assets/img/gallery/ACC-BCN-23-146.jpeg" class="full-width-img" alt="ACC-BCN-23">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery-22">
<img src="assets/img/gallery/ACC-BCN-23-171.jpeg" alt="">
</a>
<div class="modal-window" data-modal="gallery-22">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<h5 class="heading-alt">ACC-BCN-23</h5>
<br />
<img src="assets/img/gallery/ACC-BCN-23-171.jpeg" class="full-width-img" alt="ACC-BCN-23">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery-23">
<img src="assets/img/gallery/ACC-BCN-23-245.jpeg" alt="">
</a>
<div class="modal-window" data-modal="gallery-23">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<h5 class="heading-alt">ACC-BCN-23</h5>
<br />
<img src="assets/img/gallery/ACC-BCN-23-245.jpeg" class="full-width-img" alt="ACC-BCN-23">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery-24">
<img src="assets/img/gallery/ACC-BCN-23-307.jpeg" alt="">
</a>
<div class="modal-window" data-modal="gallery-24">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">