-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1589 lines (1405 loc) · 91.4 KB
/
index.html
File metadata and controls
1589 lines (1405 loc) · 91.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>NewbornFest 10-11 May 2024 @ Tallinn, Estonia</title>
<meta content="Newborn, Babies and Maternity Photography Festival - NewbornFest 2024" name="description">
<meta content="Newborn Photography, Babies Photography, Maternity Photography, Festival, Tallinn, Estonia"
name="keywords">
<meta property="og:image" content="https://www.newbornfest.com/assets/img/hero-bg.jpg">
<meta property="og:image:type" content="image/jpeg">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="795">
<!-- Favicons -->
<link rel="apple-touch-icon" sizes="120x120" href="https://www.newbornfest.com/assets/img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.newbornfest.com/assets/img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.newbornfest.com/assets/img/favicon-16x16.png">
<link rel="manifest" href="https://www.newbornfest.com/assets/img/site.webmanifest">
<link rel="mask-icon" href="https://www.newbornfest.com/assets/img/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="https://www.newbornfest.com/assets/img/favicon.ico">
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700,700i|Raleway:300,400,500,700,800"
rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="https://www.newbornfest.com/assets/vendor/aos/aos.css" rel="stylesheet">
<link href="https://www.newbornfest.com/assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="https://www.newbornfest.com/assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="https://www.newbornfest.com/assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="https://www.newbornfest.com/assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="https://www.newbornfest.com/assets/css/style.css" rel="stylesheet">
<script async src="https://www.googletagmanager.com/gtag/js?id=G-3PMRXQQHXW"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-3PMRXQQHXW');
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Event",
"name": "NewbornFest 2024",
"url": "https://www.newbornfest.com",
"keywords": "newborn photography, baby photography, maternity photography, pregnancy photography",
"description": "The Annual Newborn, Babies and Maternity Photography Festival. Over 200 photographers gather in Estonia for the largest, most inspiring and education-focused photography event. You'll be inspired by the photography workshops and challenged to improve your skills; you'll learn new techniques and possibly diversify your style. As an entrepreneur, you'll hear from some of the most knowledgeable professionals on a wide range of topics, all curated to help you run a successful business. You'll be ready to go home and start using the new ideas by the end of NewbornFest 2024.",
"image": "https://www.newbornfest.com/assets/img/hero-bg.jpg",
"startDate": "2024-05-10T08:00",
"endDate": "2024-05-11T23:59",
"eventStatus": "https://schema.org/EventScheduled",
"eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode",
"location": {
"@type": "Place",
"name": "ORIGINAL SOKOS HOTEL VIRU",
"address": {
"@type": "PostalAddress",
"streetAddress": "Viru Väljak 4",
"addressLocality": "Tallinn",
"postalCode": "10111",
"addressCountry": "EE"
}
},
"performer": [
{
"@type": "Person",
"image": "https://www.newbornfest.com/assets/img/speakers/agustin-camino-beta.jpg",
"name": "Agustin Camino Beta",
"sameAs": "https://www.instagram.com/agustincaminobeta/",
"knowsAbout": ["newborn photography", "baby photography", "studio photography", "photography workshops"]
},
{
"@type": "Person",
"image": "https://www.newbornfest.com/assets/img/speakers/aleksandra-zaitseva.jpg",
"name": "Aleksandra Zaitseva",
"sameAs": "https://instagram.com/azaitseva_photo/",
"knowsAbout": ["family photography", "children's portraits", "women's portraits", "minimalism"]
},
{
"@type": "Person",
"image": "https://www.newbornfest.com/assets/img/speakers/anna-kireeva.jpg",
"name": "Anna Kireeva",
"sameAs": "https://www.instagram.com/annakireevaphotography/",
"knowsAbout": ["newborn photography", "family photography", "motherhood photography"]
},
{
"@type": "Person",
"image": "https://www.newbornfest.com/assets/img/speakers/julia-andrianov.jpg",
"name": "Julia Andrianov",
"sameAs": "https://www.instagram.com/julia_familyphoto/",
"knowsAbout": ["family photography", "wedding photography", "memory preservation"]
},
{
"@type": "Person",
"image": "https://www.newbornfest.com/assets/img/speakers/malgorzata-sulewska-czarnecka.jpg",
"name": "Małgorzata Sulewska-Czarnecka",
"sameAs": "https://www.instagram.com/format_k_photography/",
"knowsAbout": ["art photography", "painting", "studio sessions", "fine art portrait"]
},
{
"@type": "Person",
"image": "https://www.newbornfest.com/assets/img/speakers/marina-kvitko.jpg",
"name": "Marina Kvitko",
"sameAs": "https://instagram.com/mari.kvitko/",
"knowsAbout": ["photography marketing", "sales", "business scaling"]
},
{
"@type": "Person",
"image": "https://www.newbornfest.com/assets/img/speakers/marta-ponsko.jpg",
"name": "Marta Ponsko",
"sameAs": "https://www.instagram.com/ponskoportraits/",
"knowsAbout": ["maternity photography", "studio lighting", "neon maternity sessions"]
},
{
"@type": "Person",
"image": "https://www.newbornfest.com/assets/img/speakers/natasha-ince.jpg",
"name": "Natasha Ince",
"sameAs": "https://www.instagram.com/photographybynatashaince/",
"knowsAbout": ["maternity photography", "motherhood photography", "portrait photography"]
},
{
"@type": "Person",
"image": "https://www.newbornfest.com/assets/img/speakers/paola-aldewliy.jpg",
"name": "Paola Aldewliy",
"sameAs": "https://www.instagram.com/paolaaldewliy/",
"knowsAbout": ["newborn photography", "sitter baby photography", "maternity photography"]
}
],
"offers": [
{
"@type": "Offer",
"name": "Standard access",
"price": "350",
"priceCurrency": "EUR",
"validFrom": "2023-10-19",
"url": "https://buy.stripe.com/5kAeX58yrd8BfXWaFn",
"availability": "https://schema.org/InStock"
},
{
"@type": "Offer",
"name": "Pro access",
"price": "380",
"priceCurrency": "EUR",
"validFrom": "2023-10-19",
"url": "https://buy.stripe.com/4gw7uD7un7OhfXWcNw",
"availability": "https://schema.org/InStock"
},
{
"@type": "Offer",
"name": "Premium access",
"price": "640",
"priceCurrency": "EUR",
"validFrom": "2023-10-19",
"url": "https://buy.stripe.com/00g7uD6qjd8BeTSeVF",
"availability": "https://schema.org/InStock"
}
]
}
</script>
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="d-flex align-items-center ">
<div class="container-fluid container-xxl d-flex align-items-center">
<div id="logo" class="me-auto">
<a href="index.html" class="scrollto"><img src="assets/img/logo.png" alt="" title=""></a>
</div>
<nav id="navbar" class="navbar order-last order-lg-0">
<ul>
<li><a class="nav-link scrollto active" href="#hero">Home</a></li>
<li><a class="nav-link scrollto" href="#about">About</a></li>
<li><a class="nav-link scrollto" href="#speakers">Speakers</a></li>
<li><a class="nav-link scrollto" href="#schedule">Schedule</a></li>
<li><a class="nav-link scrollto" href="workshops.html">Workshops</a></li>
<li><a class="nav-link scrollto" href="#venue">Venue</a></li>
<li><a class="nav-link scrollto" href="#contact">Contact</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav><!-- .navbar -->
<a class="buy-tickets scrollto" href="#buy-tickets">Buy Tickets</a>
</div>
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero">
<div class="hero-container" data-aos="zoom-in" data-aos-delay="100">
<h1 class="mb-4 pb-0">The Annual<br><span>Newborn, Babies and
Maternity</span><br>Photography Festival</h1>
<p class="mb-4 pb-0">10-11 May 2024 @ Original Sokos Hotel Viru, Tallinn, Estonia</p>
<!-- iframe width="560" height="315"
src="https://www.youtube.com/embed/0oVj5g2Wsdc?loop=1&playlist=0oVj5g2Wsdc&rel=0" frameborder="0"
allow="accelerometer; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe -->
<a href="https://www.youtube.com/embed/0oVj5g2Wsdc?loop=1&playlist=0oVj5g2Wsdc&rel=0"
class="glightbox play-btn mb-4"></a>
<a href="#about" class="about-btn scrollto">About The Event</a>
</div>
</section><!-- End Hero Section -->
<main id="main">
<!-- ======= About Section ======= -->
<section id="about">
<div class="container" data-aos="fade-up">
<div class="row">
<div class="col-12">
<h2>About The Event</h2>
<p>Hey there, photography enthusiast! Get ready because NewbornFest is back in Estonia for its
second run! After a <a href="2023.html">fabulous kick-off last year</a>, we're all set to
make this year's fest even more exciting. It's not just a festival; it's a playground for
those who love to capture the sweet beginnings of life through their lenses.</p>
<p>Here's what's brewing: We've got a bunch of cool speakers lined up just for you! From Spain,
we have Agustin Camino Beta who's all about capturing pure, simple moments with a rustic
touch. Aleksandra Zaitseva from Estonia is joining us too, bringing her minimalist magic
that speaks volumes. Anna Kireeva from the UK will share her journey from a marketing exec
to a pro at capturing authentic motherhood moments.</p>
<p>But that's not all! Julia Andrianov, another gem from Estonia, will talk about making any
home the perfect backdrop for heartwarming family portraits. Małgorzata Sulewska-Czarnecka
from Poland is here to blend the art of painting and photography into one. From Latvia,
Marina Kvitko will share her knack for creating a photography business that clicks.</p>
<p>We've also got Marta Ponsko from Poland, the queen of colorful neon maternity sessions, ready
to light up the stage. Natasha Ince from the UK is here to empower you through stunning
maternity and motherhood photography. And let's not forget Paola Aldewliy from Saudi Arabia,
who's been a pioneer in newborn photography across the Middle East.</p>
<p>Just like last year, NewbornFest 2024 is packed with workshops to sharpen your skills,
sessions to inspire your style, and tips to grow your photography biz. It's the perfect spot
to meet fellow photographers, learn from the best, and of course, have a ton of fun!</p>
<p>So, <a href="#buy-tickets">grab your tickets</a>, mark the dates - 10 and 11 of May 2024, and
gear up for a festival
that's all about celebrating the joy of photography. NewbornFest 2024 is where your camera
meets endless inspiration. Can't wait to see you there!</p>
<h3>Where</h3>
<p>Original Sokos Hotel Viru<br>Viru Väljak 4, 10111 Tallinn, Estonia </p>
<h3>When</h3>
<p>Friday to Saturday<br>10-11 May 2024</p>
</div>
</div>
</div>
</section><!-- End About Section -->
<!-- ======= Speakers Section ======= -->
<section id="speakers">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Event Speakers</h2>
<p>Grow as a photographer and learn from the well-known keynote speakers in the industry</p>
</div>
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="speaker" data-aos="fade-up" data-aos-delay="300">
<img src="assets/img/speakers/agustin-camino-beta.jpg"
alt="Newborn Photographer from Spain - Agustin Camino Beta" class="img-fluid">
<div class="details">
<h3><a href="newborn-photographer-spain-agustin-camino-beta.html">Agustin Camino
Beta</a></h3>
<p>Newborn Photographer, Spain 🇪🇸</p>
<div class="social">
<a rel="nofollow noopener" target="_blank"
href="https://www.instagram.com/agustincaminobeta/"><i
class="bi bi-instagram"></i></a>
<a rel="nofollow noopener" target="_blank" href="https://agustincaminobeta.com"><i
class="bi bi-globe"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="speaker" data-aos="fade-up" data-aos-delay="300">
<img src="assets/img/speakers/aleksandra-zaitseva.jpg"
alt="Family Photographer from Estonia - Aleksandra Zaitseva" class="img-fluid">
<div class="details">
<h3><a href="family-photographer-estonia-aleksandra-zaitseva.html">Aleksandra
Zaitseva</a></h3>
<p>Family Photographer, Estonia 🇪🇪</p>
<div class="social">
<a rel="nofollow noopener" target="_blank"
href="https://instagram.com/azaitseva_photo/"><i
class="bi bi-instagram"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="speaker" data-aos="fade-up" data-aos-delay="300">
<img src="assets/img/speakers/anastassia-ushkova.jpg"
alt="Newborn and Baby Photographer from Estonia - Anastassia Ushkova" class="img-fluid">
<div class="details">
<h3><a href="newborn-baby-photographer-estonia-anastassia-ushkova.html">Anastassia
Ushkova</a></h3>
<p>Newborn and Baby Photographer, Estonia 🇪🇪</p>
<div class="social">
<a rel="nofollow noopener" target="_blank"
href="https://instagram.com/anastassiaushkova/"><i
class="bi bi-instagram"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="speaker" data-aos="fade-up" data-aos-delay="300">
<img src="assets/img/speakers/anna-kireeva.jpg"
alt="Newborn & Family Photographer from UK - Anna Kireeva" class="img-fluid">
<div class="details">
<h3><a href="newborn-family-photographer-uk-anna-kireeva.html">Anna Kireeva</a></h3>
<p>Newborn & Family Photographer, UK 🇬🇧</p>
<div class="social">
<a rel="nofollow noopener" target="_blank"
href="https://annakireevaphotography.co.uk/"><i class="bi bi-globe"></i></a>
<a rel="nofollow noopener" target="_blank"
href="https://www.instagram.com/annakireevaphotography/"><i
class="bi bi-instagram"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="speaker" data-aos="fade-up" data-aos-delay="300">
<img src="assets/img/speakers/julia-andrianov.jpg"
alt="Family and Wedding Photographer from Estonia - Julia Andrianov" class="img-fluid">
<div class="details">
<h3><a href="family-wedding-photographer-estonia-julia-andrianov.html">Julia
Andrianov</a></h3>
<p>Family and Wedding Photographer, Estonia 🇪🇪</p>
<div class="social">
<a rel="nofollow noopener" target="_blank"
href="https://www.facebook.com/julia.andrianov.photography/"><i
class="bi bi-facebook"></i></a>
<a rel="nofollow noopener" target="_blank"
href="https://www.instagram.com/julia_familyphoto/"><i
class="bi bi-instagram"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="speaker" data-aos="fade-up" data-aos-delay="300">
<img src="assets/img/speakers/malgorzata-sulewska-czarnecka.jpg"
alt="Art Photographer from Poland - Małgorzata Sulewska-Czarnecka" class="img-fluid">
<div class="details">
<h3><a href="art-photographer-poland-malgorzata-sulewska-czarnecka.html">Małgorzata
Sulewska-Czarnecka</a></h3>
<p>Art Photographer, Poland 🇵🇱</p>
<div class="social">
<a rel="nofollow noopener" target="_blank"
href="https://www.facebook.com/formatkafotografia"><i
class="bi bi-facebook"></i></a>
<a rel="nofollow noopener" target="_blank"
href="https://www.instagram.com/format_k_photography/"><i
class="bi bi-instagram"></i></a>
<a rel="nofollow noopener" target="_blank" href="https://formatkafotografia.pl/"><i
class="bi bi-globe"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="speaker" data-aos="fade-up" data-aos-delay="300">
<img src="assets/img/speakers/marina-kvitko.jpg"
alt="Marketing Specialist Photographer from Latvia - Marina Kvitko" class="img-fluid">
<div class="details">
<h3><a href="marketing-specialist-photographer-latvia-marina-kvitko.html">Marina
Kvitko</a></h3>
<p>Marketing Specialist, Latvia 🇱🇻</p>
<div class="social">
<a rel="nofollow noopener" target="_blank"
href="https://instagram.com/mari.kvitko/"><i class="bi bi-instagram"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="speaker" data-aos="fade-up" data-aos-delay="300">
<img src="assets/img/speakers/marta-ponsko.jpg"
alt="Maternity & Portraits Photographer from Poland - Marta Ponsko" class="img-fluid">
<div class="details">
<h3><a href="maternity-portraits-photographer-poland-marta-ponsko.html">Marta Ponsko</a>
</h3>
<p>Maternity & Portraits Photographer, Poland 🇵🇱</p>
<div class="social">
<a rel="nofollow noopener" target="_blank" href="http://www.martaponsko.pl/"><i
class="bi bi-globe"></i></a>
<a rel="nofollow noopener" target="_blank"
href="https://www.instagram.com/ponskoportraits/"><i
class="bi bi-instagram"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="speaker" data-aos="fade-up" data-aos-delay="300">
<img src="assets/img/speakers/natasha-ince.jpg"
alt="Fine Art Maternity, Newborn & Portrait Photographer from UK - Natasha Ince"
class="img-fluid">
<div class="details">
<h3><a href="fine-art-maternity-newborn-photographer-uk-natasha-ince.html">Natasha
Ince</a></h3>
<p>Fine Art Maternity, Newborn & Portrait Photographer, UK 🇬🇧</p>
<div class="social">
<a rel="nofollow noopener" target="_blank"
href="https://www.photographybynatasha.co.uk"><i class="bi bi-globe"></i></a>
<a rel="nofollow noopener" target="_blank"
href="https://www.instagram.com/photographybynatashaince/"><i
class="bi bi-instagram"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="speaker" data-aos="fade-up" data-aos-delay="300">
<img src="assets/img/speakers/paola-aldewliy.jpg"
alt="Newborn Photographer from Saudi Arabia - Paola Aldewliy" class="img-fluid">
<div class="details">
<h3><a href="newborn-photographer-saudi-arabia-paola-aldewliy.html">Paola Aldewliy</a>
</h3>
<p>Newborn Photographer, Saudi Arabia 🇸🇦</p>
<div class="social">
<a rel="nofollow noopener" target="_blank" href="https://p-aldewliy.com"><i
class="bi bi-globe"></i></a>
<a rel="nofollow noopener" target="_blank"
href="https://www.instagram.com/paolaaldewliy/"><i
class="bi bi-instagram"></i></a>
<a rel="nofollow noopener" target="_blank"
href="https://www.facebook.com/paolaaldewliyphotography/"><i
class="bi bi-facebook"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="speaker" data-aos="fade-up" data-aos-delay="300">
<img src="assets/img/speakers/svitlana-marchenko.jpg"
alt="Family Photographer from Austria - Svitlana Marchenko" class="img-fluid">
<div class="details">
<h3><a href="family-photographer-austria-svitlana-marchenko.html">Svitlana Marchenko</a>
</h3>
<p>Family Photographer, Austria 🇦🇹</p>
<div class="social">
<a rel="nofollow noopener" target="_blank"
href="https://fotinia-photography.com/"><i class="bi bi-globe"></i></a>
<a rel="nofollow noopener" target="_blank"
href="https://www.instagram.com/fotinia_photography/"><i
class="bi bi-instagram"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="speaker" data-aos="fade-up" data-aos-delay="300">
<img src="assets/img/speakers/viktoria-iljin.jpg"
alt="Maternity, Newborn and Baby Photographer from Estonia - Viktoria Iljin"
class="img-fluid">
<div class="details">
<h3><a href="maternity-newborn-baby-photographer-estonia-viktoria-iljin.html">Viktoria
Iljin</a>
</h3>
<p>Maternity, Newborn and Baby Photographer, Estonia 🇪🇪</p>
<div class="social">
<a rel="nofollow noopener" target="_blank" href="https://www.lastefoto.ee/en/"><i
class="bi bi-globe"></i></a>
<a rel="nofollow noopener" target="_blank"
href="https://www.instagram.com/viktoriailjin/"><i
class="bi bi-instagram"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Speakers Section -->
<!-- ======= Schedule Section ======= -->
<section id="schedule" class="section-with-bg">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Event Schedule</h2>
<p>Grow as a Photographer with Like-Minded Professionals</p>
</div>
<ul class="nav nav-tabs" role="tablist" data-aos="fade-up" data-aos-delay="100">
<li class="nav-item">
<a class="nav-link active" href="#day-1" role="tab" data-bs-toggle="tab">10 May 2024</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#day-2" role="tab" data-bs-toggle="tab">11 May 2024</a>
</li>
</ul>
<div class="tab-content row justify-content-center" data-aos="fade-up" data-aos-delay="200">
<!-- Schedule Day 1 -->
<div role="tabpanel" class="col-lg-9 tab-pane fade show active" id="day-1">
<!-- Breakfast -->
<div class="row schedule-item">
<div class="col-md-2"><time>07:00 - 10:00</time></div>
<div class="col-md-10">
<h4>Breakfast</h4>
<p>for hotel guests</p>
</div>
</div>
<!-- Registration -->
<div class="row schedule-item">
<div class="col-md-2"><time>08:00 - 08:45</time></div>
<div class="col-md-10">
<h4>Registration</h4>
<p>of festival participants</p>
</div>
</div>
<!-- Commercial Workshops in the Hotel -->
<div class="row schedule-item">
<div class="col-md-2"><time>08:45 - 11:15</time></div>
<div class="col-md-10">
<h4>Commercial Workshops in the Hotel: Agustin Camoni Beta, Małgorzata
Sulewska-Czarnecka</h4>
<p>Attendance at the workshop requires an additional fee</p>
</div>
</div>
<!-- Transfer from hotel to the studio -->
<div class="row schedule-item">
<div class="col-md-2"><time>11:15 - 11:30</time></div>
<div class="col-md-10">
<h4>Transfers from the hotel to the photoshoot locations</h4>
<p>for Aleksandra Zaitseva's and Svitlana Marchenko's workshop participants</p>
</div>
</div>
<!-- Commercial Workshop in the Studio -->
<div class="row schedule-item">
<div class="col-md-2"><time>11:30 - 14:00</time></div>
<div class="col-md-10">
<h4>Commercial Workshop in the Studio: Aleksandra Zaitseva</h4>
<p>Attendance at the workshop requires an additional fee</p>
</div>
</div>
<!-- Commercial Workshop in the Studio -->
<div class="row schedule-item">
<div class="col-md-2"><time>11:30 - 14:00</time></div>
<div class="col-md-10">
<h4>Commercial Outdoor Workshop: Svitlana Marchenko</h4>
<p>Attendance at the workshop requires an additional fee</p>
</div>
</div>
<!-- Commercial Workshops in the Hotel 2 -->
<div class="row schedule-item">
<div class="col-md-2"><time>11:30 - 14:00</time></div>
<div class="col-md-10">
<h4>Commercial Workshops in the Hotel: Anastassia Ushkova, Marta Ponsko</h4>
<p>Attendance at the workshop requires an additional fee</p>
</div>
</div>
<!-- Transfer from the studio to the hotel -->
<div class="row schedule-item">
<div class="col-md-2"><time>14:00 - 14:15</time></div>
<div class="col-md-10">
<h4>Transfer from the locations back to the hotel</h4>
<p>for Aleksandra Zaitseva's and Svitlana Marchenko's workshop participants</p>
</div>
</div>
<!-- Coffee Break -->
<div class="row schedule-item">
<div class="col-md-2"><time>14:00 - 14:30</time></div>
<div class="col-md-10">
<h4>Coffee break</h4>
</div>
</div>
<!-- Festival Opening -->
<div class="row schedule-item">
<div class="col-md-2"><time>14:30 - 15:00</time></div>
<div class="col-md-10">
<h4>Festival opening</h4>
</div>
</div>
<!-- Lecture by Julia Andrianov -->
<div class="row schedule-item">
<div class="col-md-2"><time>15:00 - 16:00</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="assets/img/speakers/julia-andrianov.jpg" alt="Julia Andrianov">
</div>
<h4>Lecture by Julia Andrianov</h4>
<p>the topic will be announced later</p>
</div>
</div>
<!-- Performance by Paola Aldewliy -->
<div class="row schedule-item">
<div class="col-md-2"><time>16:00 - 17:00</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="assets/img/speakers/paola-aldewliy.jpg" alt="Paola Aldewliy">
</div>
<h4>Performance by Paola Aldewliy</h4>
<p>the topic will be announced later</p>
</div>
</div>
<!-- Lecture by Anna Kireeva -->
<div class="row schedule-item">
<div class="col-md-2"><time>17:00 - 18:00</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="assets/img/speakers/anna-kireeva.jpg" alt="Anna Kireeva">
</div>
<h4>Lecture by Anna Kireeva</h4>
<p>the topic will be announced later</p>
</div>
</div>
<!-- Coffee Break 2 -->
<div class="row schedule-item">
<div class="col-md-2"><time>18:00 - 18:30</time></div>
<div class="col-md-10">
<h4>Coffee break</h4>
</div>
</div>
<!-- Lecture by Marina Kvitko -->
<div class="row schedule-item">
<div class="col-md-2"><time>18:30 - 19:30</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="assets/img/speakers/marina-kvitko.jpg" alt="Marina Kvitko">
</div>
<h4>Lecture by Marina Kvitko</h4>
<p>"Sales funnel for photographer. How to make your blog work 24/7"</p>
</div>
</div>
<!-- Performance by Natasha Ince -->
<div class="row schedule-item">
<div class="col-md-2"><time>19:30 - 21:00</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="assets/img/speakers/natasha-ince.jpg" alt="Natasha Ince">
</div>
<h4>Performance by Natasha Ince</h4>
<p>"Empowering Women Through Posing"</p>
</div>
</div>
<!-- Dinner -->
<div class="row schedule-item">
<div class="col-md-2"><time>21:00 - 23:00</time></div>
<div class="col-md-10">
<h4>Dinner</h4>
<p>for hotel guests with premium access</p>
</div>
</div>
</div>
<!-- End Schedule Day 1 -->
<!-- Schedule Day 2 -->
<div role="tabpanel" class="col-lg-9 tab-pane fade" id="day-2">
<!-- Breakfast -->
<div class="row schedule-item">
<div class="col-md-2"><time>07:00 - 10:00</time></div>
<div class="col-md-10">
<h4>Breakfast</h4>
<p>for hotel guests</p>
</div>
</div>
<!-- Transfer from hotel to photo shoot location -->
<div class="row schedule-item">
<div class="col-md-2"><time>08:30 - 08:45</time></div>
<div class="col-md-10">
<h4>Transfer from hotel to photo shoot location</h4>
<p>for Julia Adrianov's workshop participants</p>
</div>
</div>
<!-- Commercial Workshops in the Hotel -->
<div class="row schedule-item">
<div class="col-md-2"><time>08:45 - 11:15</time></div>
<div class="col-md-10">
<h4>Commercial Workshops in the Hotel: Paola Aldewliy, Viktoria Iljin</h4>
<p>Attendance at the workshop requires an additional fee</p>
</div>
</div>
<!-- Julia Adrianov's commercial workshop -->
<div class="row schedule-item">
<div class="col-md-2"><time>08:45 - 11:10</time></div>
<div class="col-md-10">
<h4>Commercial Workshop: Julia Adrianov</h4>
<p>Attendance at the workshop requires an additional fee</p>
</div>
</div>
<!-- Festival Fair -->
<div class="row schedule-item">
<div class="col-md-2"><time>10:00 - 15:30</time></div>
<div class="col-md-10">
<h4>Festival fair</h4>
</div>
</div>
<!-- Transfer from photo shoot location to the hotel -->
<div class="row schedule-item">
<div class="col-md-2"><time>11:10 - 11:20</time></div>
<div class="col-md-10">
<h4>Transfer from photo shoot location to the hotel</h4>
<p>for Julia Adrianov's workshop participants</p>
</div>
</div>
<!-- Transfer from the hotel to the studio -->
<div class="row schedule-item">
<div class="col-md-2"><time>11:20 - 11:30</time></div>
<div class="col-md-10">
<h4>Transfer from the hotel to the studio</h4>
<p>for Anna Kireeva's workshop participants</p>
</div>
</div>
<!-- Commercial Workshop in the Studio -->
<div class="row schedule-item">
<div class="col-md-2"><time>11:30 - 14:00</time></div>
<div class="col-md-10">
<h4>Commercial Workshop in the Studio: Anna Kireeva</h4>
<p>Attendance at the workshop requires an additional fee</p>
</div>
</div>
<!-- Commercial Workshops in the Hotel 2 -->
<div class="row schedule-item">
<div class="col-md-2"><time>11:30 - 14:00</time></div>
<div class="col-md-10">
<h4>Commercial Workshops in the Hotel: Natasha Ince</h4>
<p>Attendance at the workshop requires an additional fee</p>
</div>
</div>
<!-- Transfer from the studio to the hotel -->
<div class="row schedule-item">
<div class="col-md-2"><time>14:00 - 14:15</time></div>
<div class="col-md-10">
<h4>Transfer from the studio to the hotel</h4>
<p>for Anna Kireeva's workshop participants</p>
</div>
</div>
<!-- Coffee Break -->
<div class="row schedule-item">
<div class="col-md-2"><time>14:00 - 14:30</time></div>
<div class="col-md-10">
<h4>Coffee break</h4>
</div>
</div>
<!-- Lecture by Svitlana Marchenko -->
<div class="row schedule-item">
<div class="col-md-2"><time>14:30 - 15:30</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="assets/img/speakers/svitlana-marchenko.jpg" alt="Svitlana Marchenko">
</div>
<h4>Lecture by Svitlana Marchenko</h4>
<p>The nuances of photographing a child in a live session</p>
</div>
</div>
<!-- Lecture by Agustin Camino Beta -->
<div class="row schedule-item">
<div class="col-md-2"><time>15:30 - 16:30</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="assets/img/speakers/agustin-camino-beta.jpg" alt="Agustin Camino Beta">
</div>
<h4>Lecture by Agustin Camino Beta</h4>
<p>"Newborn Photography: workflow, angles and posing"</p>
</div>
</div>
<!-- Lecture by Małgorzata Sulewska-Czarnecka -->
<div class="row schedule-item">
<div class="col-md-2"><time>16:30 - 17:30</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="assets/img/speakers/malgorzata-sulewska-czarnecka.jpg"
alt="Małgorzata Sulewska-Czarnecka">
</div>
<h4>Lecture by Małgorzata Sulewska-Czarnecka</h4>
<p>"Colors and light in fine art portrait photography"</p>
</div>
</div>
<!-- Coffee Break 2 -->
<div class="row schedule-item">
<div class="col-md-2"><time>17:30 - 18:00</time></div>
<div class="col-md-10">
<h4>Coffee break</h4>
</div>
</div>
<!-- Performance by Aleksandra Zaitseva -->
<div class="row schedule-item">
<div class="col-md-2"><time>18:00 - 19:00</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="assets/img/speakers/aleksandra-zaitseva.jpg" alt="Aleksandra Zaitseva">
</div>
<h4>Performance by Aleksandra Zaitseva</h4>
<p>"Conscious minimalism in photography. Less is more. How to shoot emotions in the
studio."</p>
</div>
</div>
<!-- Performance by Marta Ponsko -->
<div class="row schedule-item">
<div class="col-md-2"><time>19:00 - 20:30</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="assets/img/speakers/marta-ponsko.jpg" alt="Marta Ponsko">
</div>
<h4>Performance by Marta Ponsko</h4>
<p>"The magic of neon maternity portraits: how to differentiate yourself on a
competitive maternity photography market"</p>
</div>
</div>
<!-- Grand Finale Dinner for festival participants -->
<div class="row schedule-item">
<div class="col-md-2"><time>20:30 - 22:30</time></div>
<div class="col-md-10">
<h4>Grand Finale Dinner</h4>
<p>for festival participants (with pro and premium access)</p>
</div>
</div>
<!-- Girls night out -->
<div class="row schedule-item">
<div class="col-md-2"><time>22:30 - ...</time></div>
<div class="col-md-10">
<h4>Girls night out :)</h4>
<p>for all comers (the place will be specified later, registration is required)</p>
</div>
</div>
</div>
<!-- End Schedule Day 2 -->
</div>
</div>
</section><!-- End Schedule Section -->
<!-- ======= Venue Section ======= -->
<section id="venue">
<div class="container-fluid" data-aos="fade-up">
<div class="section-header">
<h2>Event Venue</h2>
<p>Event venue location info and gallery</p>
</div>
<div class="row g-0">
<div class="col-lg-6 venue-map">
<iframe
src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d8115.175902134088!2d24.7549034!3d59.4365106!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x469293605c3866bf%3A0x7c9b5caaa75c1fc1!2sOriginal%20Sokos%20Hotel%20Viru!5e0!3m2!1sen!2see!4v1697723313103!5m2!1sen!2see"
width="800" height="600" style="border:0;" allowfullscreen="" loading="lazy"
referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
<div class="col-lg-6 venue-info">
<div class="row justify-content-center">
<div class="col-11 col-lg-8 position-relative">
<h3>Original Sokos Hotel Viru</h3>
<p>In Tallinn, Viru has always been the vibrant city hotel where history meets the
present. Time has made it unique and genuine. Here, you get something you cannot
find elsewhere. In the middle of everything and everyone. A wide range of different
rooms, restaurants, entertainment and recreation services, a conference and banquet
centre, a shopping centre – all under one roof.</p>
</div>
</div>
</div>
</div>
</div>
<div class="container-fluid venue-gallery-container" data-aos="fade-up" data-aos-delay="100">
<div class="row g-0">
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="assets/img/venue-gallery/1.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/venue-gallery/1.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="assets/img/venue-gallery/2.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/venue-gallery/2.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="assets/img/venue-gallery/3.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/venue-gallery/3.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="assets/img/venue-gallery/4.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/venue-gallery/4.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="assets/img/venue-gallery/5.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/venue-gallery/5.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="assets/img/venue-gallery/6.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/venue-gallery/6.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="assets/img/venue-gallery/7.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/venue-gallery/7.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">