-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.mobirise
1131 lines (1131 loc) · 146 KB
/
project.mobirise
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
{
"settings": {
"name": "Personal_website",
"currentPage": "index.html",
"theme": {
"name": "mobirise5",
"title": "Mobirise 5",
"styling": {
"primaryColor": "#6592e6",
"secondaryColor": "#ff6666",
"successColor": "#40b0bf",
"infoColor": "#47b5ed",
"warningColor": "#FFE161",
"dangerColor": "#ff9966",
"mainFont": "Jost",
"display1Font": "Jost",
"display1Size": 4.6,
"display2Font": "Jost",
"display2Size": 3,
"display5Font": "Jost",
"display5Size": 2,
"display7Font": "Jost",
"display7Size": "1.2",
"display4Font": "Jost",
"display4Size": 1.1,
"isRoundedButtons": false,
"isGhostButtonBorder": false,
"underlinedLinks": false,
"isAnimatedOnScroll": false,
"isScrollToTopButton": false
},
"additionalSetColors": [
"#eaeaea"
]
},
"path": "@PROJECT_PATH@",
"versionFirst": "5.2.0",
"siteFonts": [
{
"css": "'Jost', sans-serif",
"name": "Jost",
"url": "https://fonts.googleapis.com/css?family=Jost:100,200,300,400,500,600,700,800,900,100i,200i,300i,400i,500i,600i,700i,800i,900i"
}
],
"uniqCompNum": 24,
"versionPublish": "5.2.0",
"imageResize": true,
"screenshot": "screenshot.png"
},
"pages": {
"index.html": {
"settings": {
"main": true,
"title": "Home",
"meta_descr": "",
"header_custom": "",
"footer_custom": "",
"html_before": ""
},
"components": [
{
"alias": false,
"_styles": {
"& when not (@sticky)": {
".navbar-dropdown": {
"position": "relative !important"
},
"& when (@transparent)": {
".navbar-dropdown": {
"position": "absolute !important"
}
}
},
"& when (@sticky)": {
"z-index": "1000",
"width": "100%",
"& when not (@transparent)": {
"position": "relative",
"min-height": "60px"
},
"nav.navbar": {
"position": "fixed"
}
},
".dropdown-item:before": {
"font-family": "Moririse2 !important",
"content": "\"\\e966\"",
"display": "inline-block",
"width": "0",
"position": "absolute",
"left": "1rem",
"top": "0.5rem",
"margin-right": "0.5rem",
"line-height": "1",
"font-size": "inherit",
"vertical-align": "middle",
"text-align": "center",
"overflow": "hidden",
"transform": "scale(0, 1)",
"transition": "all 0.25s ease-in-out"
},
".dropdown-menu": {
"padding": "0",
"border-radius": "4px",
"box-shadow": "0 1px 3px 0 rgba(0, 0, 0, 0.1)"
},
".dropdown-item": {
"border-bottom": "1px solid #e6e6e6",
"&:hover, &:focus": {
"background": "@primaryColor !important",
"color": "white !important"
},
"&:first-child": {
"border-top-left-radius": "4px",
"border-top-right-radius": "4px"
},
"&:last-child": {
"border-bottom": "none",
"border-bottom-left-radius": "4px",
"border-bottom-right-radius": "4px"
}
},
".nav-dropdown .link": {
"padding": "0 0.3em !important",
"margin": "0.667em 1em !important"
},
".nav-dropdown .link.dropdown-toggle::after": {
"margin-left": "0.5rem",
"margin-top": "0.2rem"
},
".nav-link": {
"position": "relative"
},
".container": {
"display": "flex",
"margin": "auto"
},
".iconfont-wrapper": {
"color": "@iconsColor !important",
"font-size": "1.5rem",
"padding-right": "0.5rem"
},
".navbar-caption": {},
".navbar-nav": {},
".dropdown-menu, .navbar.opened": {
"background": "@menuBgColor !important"
},
".nav-item:focus, .nav-link:focus": {
"outline": "none"
},
".dropdown .dropdown-menu .dropdown-item": {
"width": "auto",
"transition": "all 0.25s ease-in-out",
"&::after": {
"right": "0.5rem"
},
".mbr-iconfont": {
"margin-right": "0.5rem",
"vertical-align": "sub",
"&:before": {
"display": "inline-block",
"transform": "scale(1, 1)",
"transition": "all 0.25s ease-in-out"
}
}
},
".collapsed": {
".dropdown-menu .dropdown-item:before": {
"display": "none"
},
".dropdown .dropdown-menu .dropdown-item": {
"padding": "0.235em 1.5em 0.235em 1.5em !important",
"transition": "none",
"margin": "0 !important"
}
},
".navbar": {
"min-height": "70px",
"transition": "all 0.3s",
"border-bottom": "1px solid transparent",
"&:not(.navbar-short)": {},
"& when not (@transparent)": {
"box-shadow": "0 1px 3px 0 rgba(0, 0, 0, 0.1)",
"background": "@menuBgColor"
},
"& when (@transparent)": {
"background": "rgba(red(@menuBgColor), green(@menuBgColor), blue(@menuBgColor), @opacity)"
},
"&.opened": {
"transition": "all 0.3s"
},
".dropdown-item": {
"padding": "0.5rem 1.8rem"
},
".navbar-logo img": {
"width": "auto"
},
".navbar-collapse": {
"justify-content": "flex-end",
"z-index": "1"
},
"&.collapsed": {
"justify-content": "center",
".nav-item .nav-link::before": {
"display": "none"
},
"&.opened": {
".dropdown-menu": {
"top": "0"
},
"@media (min-width: 992px)": {
"&:not(.navbar-short) .navbar-collapse when (@showLogo)": {
"max-height": "~\"calc(98.5vh - @{logoSize}rem)\""
}
}
},
".dropdown-menu": {
".dropdown-submenu": {
"left": "0 !important"
},
".dropdown-item:after": {
"right": "auto"
},
".dropdown-toggle[data-toggle=\"dropdown-submenu\"]:after": {
"margin-left": "0.5rem",
"margin-top": "0.2rem",
"border-top": "0.35em solid",
"border-right": "0.35em solid transparent",
"border-left": "0.35em solid transparent",
"border-bottom": "0",
"top": "41%"
}
},
"ul.navbar-nav": {
"li": {
"margin": "auto"
}
},
".dropdown-menu .dropdown-item": {
"padding": "0.25rem 1.5rem",
"text-align": "center"
},
".icons-menu": {
"padding-left": "0",
"padding-right": "0",
"padding-top": "0.5rem",
"padding-bottom": "0.5rem"
}
},
"@media (max-width: 991px)": {
".nav-item .nav-link::before": {
"display": "none"
},
"&.opened": {
".dropdown-menu": {
"top": "0"
}
},
".dropdown-menu": {
".dropdown-submenu": {
"left": "0 !important"
},
".dropdown-item:after": {
"right": "auto"
},
".dropdown-toggle[data-toggle=\"dropdown-submenu\"]:after": {
"margin-left": "0.5rem",
"margin-top": "0.2rem",
"border-top": "0.35em solid",
"border-right": "0.35em solid transparent",
"border-left": "0.35em solid transparent",
"border-bottom": "0",
"top": "40%"
}
},
".navbar-logo": {
"img": {
"height": "3rem !important"
}
},
"ul.navbar-nav": {
"li": {
"margin": "auto"
}
},
".dropdown-menu .dropdown-item": {
"padding": "0.25rem 1.5rem !important",
"text-align": "center"
},
".navbar-brand": {
"flex-shrink": "initial",
"flex-basis": "auto",
"word-break": "break-word",
"padding-right": "2rem"
},
".navbar-toggler": {
"flex-basis": "auto"
},
".icons-menu": {
"padding-left": "0",
"padding-top": "0.5rem",
"padding-bottom": "0.5rem"
}
},
"&.navbar-short": {
"min-height": "60px",
".navbar-logo": {
"img": {
"height": "2.5rem !important"
}
},
".navbar-brand": {
"min-height": "60px",
"padding": "0"
}
}
},
".navbar-brand": {
"min-height": "70px",
"flex-shrink": "0",
"align-items": "center",
"margin-right": "0",
"padding": "0",
"transition": "all 0.3s",
"word-break": "break-word",
"z-index": "1",
".navbar-caption": {
"line-height": "inherit !important"
},
".navbar-logo a": {
"outline": "none"
}
},
".dropdown-item.active, .dropdown-item:active": {
"background-color": "transparent"
},
".navbar-expand-lg .navbar-nav .nav-link": {
"padding": "0"
},
".nav-dropdown .link.dropdown-toggle": {
"margin-right": "1.667em",
"&[aria-expanded=\"true\"]": {
"margin-right": "0",
"padding": "0.667em 1.667em"
}
},
".navbar.navbar-expand-lg .dropdown": {
".dropdown-menu": {
"background": "@menuBgColor",
".dropdown-submenu": {
"margin": "0",
"left": "100%"
}
}
},
".navbar .dropdown.open > .dropdown-menu": {
"display": "block"
},
"ul.navbar-nav": {
"flex-wrap": "wrap"
},
".navbar-buttons": {
"text-align": "center",
"min-width": "170px"
},
"button.navbar-toggler": {
"outline": "none",
"width": "31px",
"height": "20px",
"cursor": "pointer",
"transition": "all 0.2s",
"position": "relative",
"align-self": "center",
".hamburger span": {
"position": "absolute",
"right": "0",
"width": "30px",
"height": "2px",
"border-right": "5px",
"background-color": "@hamburgerColor",
"&:nth-child(1)": {
"top": "0",
"transition": "all 0.2s"
},
"&:nth-child(2)": {
"top": "8px",
"transition": "all 0.15s"
},
"&:nth-child(3)": {
"top": "8px",
"transition": "all 0.15s"
},
"&:nth-child(4)": {
"top": "16px",
"transition": "all 0.2s"
}
}
},
"nav.opened .hamburger span": {
"&:nth-child(1)": {
"top": "8px",
"width": "0",
"opacity": "0",
"right": "50%",
"transition": "all 0.2s"
},
"&:nth-child(2)": {
"transform": "rotate(45deg)",
"transition": "all 0.25s"
},
"&:nth-child(3)": {
"transform": "rotate(-45deg)",
"transition": "all 0.25s"
},
"&:nth-child(4)": {
"top": "8px",
"width": "0",
"opacity": "0",
"right": "50%",
"transition": "all 0.2s"
}
},
".navbar-dropdown": {
"padding": "0 1rem",
"& when (@sticky)": {
"position": "fixed"
}
},
"a.nav-link": {
"display": "flex",
"align-items": "center",
"justify-content": "center"
},
".icons-menu": {
"flex-wrap": "nowrap",
"display": "flex",
"justify-content": "center",
"padding-left": "1rem",
"padding-right": "1rem",
"padding-top": "0.3rem",
"text-align": "center"
},
"@media screen and (~'-ms-high-contrast: active'), (~'-ms-high-contrast: none')": {
".navbar": {
"height": "70px",
"&.opened": {
"height": "auto"
}
},
".nav-item .nav-link:hover::before": {
"width": "175%",
"max-width": "calc(100% ~\"+\" 2rem)",
"left": "-1rem"
}
}
},
"_name": "menu3",
"_sourceTheme": "mobirise5",
"_customHTML": "<section class=\"menu menu3\" group=\"Menu\" plugins=\"DropDown, TouchSwipe\" always-top global once=\"menu\" not-draggable position-absolute>\n <mbr-parameters>\n <header>Size</header>\n <input type=\"checkbox\" name=\"fullWidth\" title=\"Full Width\">\n <header>Show/Hide</header>\n <input type=\"checkbox\" title=\"Logo\" name=\"showLogo\">\n <input type=\"range\" title=\"Logo Size\" inline name=\"logoSize\" min=\"3\" max=\"8\" step=\"0.1\" value=\"3\" condition=\"showLogo\">\n <input type=\"checkbox\" title=\"Brand Name\" name=\"showBrand\" checked>\n <input type=\"checkbox\" title=\"Menu Items\" name=\"showItems\" checked>\n <input type=\"checkbox\" title=\"Icons\" name=\"showIcons\" checked>\n <select title=\"Amount\" name=\"iconsAmount\" condition=\"showIcons\">\n <option value=\"1\">1</option>\n <option value=\"2\">2</option>\n <option value=\"3\">3</option>\n <option value=\"4\" selected>4</option>\n </select>\n <input type=\"color\" title=\"Icons Color\" name=\"iconsColor\" value=\"#000000\" condition=\"showIcons\">\n <input type=\"checkbox\" title=\"Button\" name=\"showButtons\">\n <header>Styles</header>\n <input type=\"checkbox\" title=\"Sticky\" name=\"sticky\" checked>\n <input type=\"checkbox\" title=\"Collapsed\" name=\"collapsed\">\n <input type=\"checkbox\" title=\"Transparent\" name=\"transparent\">\n <input type=\"range\" title=\"Opacity\" name=\"opacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.2\" condition=\"transparent\">\n <input type=\"color\" title=\"Color\" name=\"menuBgColor\" value=\"#ffffff\">\n <input type=\"color\" title=\"Hamburger\" name=\"hamburgerColor\" value=\"#000000\">\n </mbr-parameters>\n <nav class=\"navbar navbar-dropdown\" mbr-class=\"{'navbar-fixed-top':sticky,\n 'navbar-expand-lg':!collapsed,\n 'collapsed':collapsed}\">\n <div mbr-class=\"{'container': !fullWidth, 'container-fluid': fullWidth}\">\n <div class=\"navbar-brand\">\n <span mbr-if=\"showLogo\" class=\"navbar-logo\">\n <a href=\"https://mobiri.se\">\n <img src=\"../_images/logo.png\" alt=\"Mobirise\" mbr-style=\"{'height': logoSize + 'rem'}\">\n </a>\n </span>\n <span mbr-if=\"showBrand\" mbr-buttons mbr-theme-style=\"display-7\" class=\"navbar-caption-wrap\" data-toolbar=\"-mbrBtnMove,-mbrBtnAdd,-mbrBtnRemove,-iconFont\"><a class=\"navbar-caption text-black text-primary\" data-app-selector=\".navbar-caption\" href=\"index.html#top\" data-app-placeholder=\"Type Text\">Milan Mitrovic</a></span>\n </div>\n <button class=\"navbar-toggler\" type=\"button\" data-toggle=\"collapse\" data-target=\"#navbarSupportedContent\" aria-controls=\"navbarNavAltMarkup\" aria-expanded=\"false\" aria-label=\"Toggle navigation\" mbr-if=\"showItems || showIcons || showButtons\">\n <div class=\"hamburger\">\n <span></span>\n <span></span>\n <span></span>\n <span></span>\n </div>\n </button>\n <div class=\"collapse navbar-collapse\" id=\"navbarSupportedContent\" mbr-if=\"showItems || showIcons || showButtons\">\n <ul mbr-menu class=\"navbar-nav nav-dropdown\" mbr-theme-style=\"display-4\" mbr-if=\"showItems\" mbr-class=\"{'nav-right': !showButtons,'navbar-nav-top-padding': isPublish && !showBrand && !showLogo}\"><li class=\"nav-item\"><a class=\"nav-link link text-black text-primary\" href=\"index.html#header4-3\" data-app-selector=\".nav-link,.dropdown-item\" data-app-placeholder=\"Type Text\">\n About me</a></li>\n <li class=\"nav-item\"><a class=\"nav-link link text-black text-primary\" href=\"index.html#image1-g\" data-app-selector=\".nav-link,.dropdown-item\" data-app-placeholder=\"Type Text\">\n 10minutespython</a></li>\n <li class=\"nav-item\"><a class=\"nav-link link text-black text-primary\" href=\"index.html#image2-f\" data-app-selector=\".nav-link,.dropdown-item\" data-app-placeholder=\"Type Text\">About Balkan</a>\n </li><li class=\"nav-item\"><a class=\"nav-link link text-black text-primary\" href=\"index.html#timeline1-b\" data-app-selector=\".nav-link,.dropdown-item\" data-app-placeholder=\"Type Text\">My Experience</a></li></ul>\n <div class=\"icons-menu\" mbr-if=\"showIcons\">\n <a class=\"iconfont-wrapper\" href=\"https://rs.linkedin.com/in/milanzmitrovic\" target=\"_blank\">\n <span mbr-icon class=\"p-2 mbr-iconfont socicon-linkedin socicon\"></span>\n </a>\n <a class=\"iconfont-wrapper\" href=\"https://www.meetup.com/members/218156562/\" target=\"_blank\" mbr-if=\"iconsAmount > 1\">\n <span mbr-icon class=\"p-2 mbr-iconfont socicon-meetup socicon\"></span>\n </a>\n <a class=\"iconfont-wrapper\" href=\"https://github.com/milanzmitrovic\" target=\"_blank\" mbr-if=\"iconsAmount > 2\">\n <span mbr-icon class=\"p-2 mbr-iconfont mobi-mbri-github mobi-mbri\"></span>\n </a>\n <a class=\"iconfont-wrapper\" href=\"https://milanzmitrovic.medium.com\" target=\"_blank\" mbr-if=\"iconsAmount > 3\">\n <span mbr-icon class=\"p-2 mbr-iconfont socicon-medium socicon\"></span>\n </a>\n </div>\n <div mbr-if=\"showButtons\" mbr-buttons mbr-theme-style=\"display-4\" class=\"navbar-buttons mbr-section-btn\">\n <a class=\"btn btn-primary\" href=\"https://mobiri.se\" data-app-placeholder=\"Type Text\">\n Sign up</a>\n </div>\n </div>\n </div>\n </nav>\n</section>",
"_cid": "seslOIjnB8",
"_anchor": "menu3-0",
"_protectedParams": [],
"_global": true,
"_once": "menu",
"_params": {}
},
{
"alias": false,
"_styles": {
"& when not (@fullScreen)": {
"padding-top": "(@paddingTop * 1rem)",
"padding-bottom": "(@paddingBottom * 1rem)"
},
"& when (@bg-type = 'image')": {
"background-image": "url(@bg-value)"
},
"& when (@bg-type = 'color')": {
"background-color": "@bg-value"
},
".mbr-section-title": {
"color": "#ffe161"
},
".mbr-text, .mbr-section-btn": {
"color": "#ffffff",
"text-align": "left"
}
},
"_name": "header1",
"_sourceTheme": "mobirise5",
"_customHTML": "<section class=\"header1\" group=\"Headers\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{\n 'mbr-fullscreen': fullScreen,\n 'mbr-parallax-background': bg.parallax}\">\n\n <mbr-parameters>\n <header>Size</header>\n <input type=\"checkbox\" title=\"Full Screen\" name=\"fullScreen\" checked>\n <input type=\"checkbox\" title=\"Full Width\" name=\"fullWidth\">\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"10\" step=\"1\" value=\"6\" condition=\"fullScreen == false\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"10\" step=\"1\" value=\"6\" condition=\"fullScreen == false\">\n\n <input type=\"range\" inline name=\"textWidth\" title=\"Width\" min=\"4\" max=\"12\" value=\"5\" step=\"1\">\n <select title=\"Align\" name=\"contentAlign\">\n <option value selected>Left</option>\n <option value=\"justify-content-center\">Center</option>\n <option value=\"justify-content-end\">Right</option>\n </select>\n <header>Show/Hide</header>\n <input type=\"checkbox\" title=\"Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Subtitle\" name=\"showSubitle\">\n <input type=\"checkbox\" title=\"Text\" name=\"showText\" checked>\n <input type=\"checkbox\" title=\"Buttons\" name=\"showButtons\">\n <header>Background</header>\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Image\" value=\"@PROJECT_PATH@/assets/images/0-1080x758.jpg\" selected>\n <input type=\"color\" title=\"Color\" value=\"#fafafa\">\n <input type=\"video\" title=\"Video\" value=\"https://vimeo.com/428046504\">\n </fieldset>\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" condition=\"bg.type !== 'color'\" checked>\n <input type=\"color\" title=\"Overlay Color\" name=\"overlayColor\" value=\"#353535\" condition=\"overlay && bg.type !== 'color'\">\n <input type=\"range\" inline title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.2\" condition=\"overlay && bg.type !== 'color'\">\n </mbr-parameters>\n\n <div class=\"mbr-overlay\" mbr-if=\"overlay && bg.type !== 'color'\" opacity=\"{{overlayOpacity}}\" bg-color=\"{{overlayColor}}\"></div>\n\n <div class mbr-class=\"{'container': !fullWidth, 'container-fluid': fullWidth}\">\n <div class=\"row {{contentAlign}}\">\n <div class=\"col-12 col-lg-{{textWidth}}\">\n <h1 class=\"mbr-section-title mbr-fonts-style mb-3\" data-app-selector=\".mbr-section-title\" mbr-theme-style=\"display-2\" mbr-if=\"showTitle\"><b>Hi, I am Milan!</b></h1>\n <h2 class=\"mbr-section-subtitle mbr-fonts-style mb-3\" data-app-selector=\".mbr-section-subtitle\" mbr-theme-style=\"display-2\" mbr-if=\"showSubitle\">\n Header Subtitle\n </h2>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showText\" data-app-selector=\".mbr-text, .mbr-section-btn\">I like to program computers and teach people.</p>\n <div mbr-buttons mbr-theme-style=\"display-4\" class=\"mbr-section-btn mt-3\" mbr-if=\"showButtons\"><a class=\"btn btn-secondary\" href=\"https://mobiri.se\" data-app-placeholder=\"Type Text\">Create Website</a></div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "sesmcx1pLo",
"_anchor": "header1-2",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": false,
"_styles": {
"padding-top": "(@paddingTop * 1rem)",
"padding-bottom": "(@paddingBottom * 1rem)",
"& when (@bg-type = 'color')": {
"background-color": "@bg-value"
},
"& when (@bg-type = 'image')": {
"background-image": "url(@bg-value)"
},
".mbr-iconfont": {
"display": "block",
"font-size": "4rem",
"color": "@primaryColor",
"margin-bottom": "2rem"
},
".card-wrapper": {
"min-height": "220px",
"transition": "all 0.3s",
"border-radius": "4px",
"padding": "1rem",
"background": "@cardColor",
"display": "flex",
"justify-content": "center",
"align-items": "center",
"margin-bottom": "2rem"
},
".card-title, .card-box": {
"text-align": "center"
}
},
"_name": "features2",
"_sourceTheme": "mobirise5",
"_customHTML": "<section class=\"features1\" group=\"Features\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{'mbr-parallax-background': bg.parallax}\">\n\n <mbr-parameters>\n <header>Size</header>\n <input type=\"checkbox\" title=\"Full Width\" name=\"fullWidth\">\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"10\" step=\"1\" value=\"5\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"10\" step=\"1\" value=\"5\">\n\n <header>Card</header>\n <input type=\"color\" title=\"BG\" name=\"cardColor\" value=\"#ffffff\">\n <input type=\"range\" title=\"Count\" name=\"cardsAmount\" min=\"1\" max=\"4\" step=\"1\" value=\"4\">\n\n <header>Background</header>\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Image\" value=\"../_images/background8.jpg\">\n <input type=\"color\" title=\"Color\" value=\"#fafafa\" selected>\n <input type=\"video\" title=\"Video\" value=\"https://vimeo.com/428046504\">\n </fieldset>\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" condition=\"bg.type !== 'color'\" checked>\n <input type=\"color\" title=\"Overlay Color\" name=\"overlayColor\" value=\"#ffffff\" condition=\"overlay && bg.type !== 'color'\">\n <input type=\"range\" inline title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.5\" condition=\"overlay && bg.type !== 'color'\">\n </mbr-parameters>\n\n <div class=\"mbr-overlay\" mbr-if=\"overlay && bg.type!== 'color'\" mbr-style=\"{'opacity': overlayOpacity, 'background-color': overlayColor}\">\n </div>\n <div mbr-class=\"{'container': !fullWidth, 'container-fluid': fullWidth}\">\n <div class=\"row justify-content-center\">\n <div class=\"col-12 col-md-6 col-lg-3\">\n <div class=\"card-wrapper\">\n <div class=\"card-box align-center\">\n <span mbr-icon class=\"mbr-iconfont mobi-mbri-success mobi-mbri\"></span>\n <h4 class=\"card-title align-center mbr-black mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".card-title, .card-box\"><b>Math</b></h4>\n </div>\n </div>\n </div>\n <div class=\"col-12 col-md-6 col-lg-3\" mbr-if=\"cardsAmount > 1\">\n <div class=\"card-wrapper\">\n <div class=\"card-box align-center\">\n <span mbr-icon class=\"mbr-iconfont mobi-mbri-devices mobi-mbri\"></span>\n <h4 class=\"card-title align-center mbr-black mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".card-title, .card-box\">\n <b>Programming</b></h4>\n </div>\n </div>\n </div>\n <div class=\"col-12 col-md-6 col-lg-3\" mbr-if=\"cardsAmount > 2\">\n <div class=\"card-wrapper\">\n <div class=\"card-box align-center\">\n <span mbr-icon class=\"mbr-iconfont mobi-mbri-features mobi-mbri\"></span>\n <h4 class=\"card-title align-center mbr-black mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".card-title, .card-box\">\n <b>Statistics and probability</b></h4>\n </div>\n </div>\n </div>\n <div class=\"col-12 col-md-6 col-lg-3\" mbr-if=\"cardsAmount > 3\">\n <div class=\"card-wrapper\">\n <div class=\"card-box align-center\">\n <span mbr-icon class=\"mbr-iconfont mobi-mbri-sites mobi-mbri\"></span>\n <h4 class=\"card-title align-center mbr-black mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".card-title, .card-box\"><b>Data visualisation</b></h4>\n </div>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "sesRRKs7sW",
"_anchor": "features2-a",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": false,
"_styles": {
"display": "flex",
"& when not (@fullScreen)": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)"
},
"& when (@bg-type = \"color\")": {
"background-color": "@bg-value"
},
"& when (@bg-type = \"image\")": {
"background-image": "url(@bg-value)",
".mbr-overlay": {
"background-color": "@overlayColor",
"opacity": "@overlayOpacity"
}
},
".content-wrap": {
"padding": "5rem 1rem"
},
"@media (min-width: 768px)": {
"align-items": "~\"@{verticalAlign}\"",
".row": {
"justify-content": "~\"@{horizontalAlign}\""
},
".content-wrap": {
"width": "~\"@{contentWidth}%\""
}
},
"@media (max-width: 991px) and (min-width: 768px)": {
".content-wrap": {
"min-width": "50%"
}
},
"@media (max-width: 767px)": {
"-webkit-align-items": "center",
"align-items": "center",
".mbr-row": {
"-webkit-justify-content": "center",
"justify-content": "center"
},
".content-wrap": {
"width": "100%"
}
}
},
"_name": "header4",
"_sourceTheme": "mobirise5",
"_customHTML": "<section class=\"header4\" group=\"Headers\" mbr-class=\"{'mbr-fullscreen': fullScreen,\n'mbr-parallax-background': bg.parallax}\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <header>Size</header>\n <input type=\"checkbox\" title=\"Full Screen\" name=\"fullScreen\" checked>\n <input type=\"checkbox\" title=\"Full Width\" name=\"fullWidth\">\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"9\" step=\"1\" value=\"6\" condition=\"fullScreen == false\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"9\" step=\"1\" value=\"6\" condition=\"fullScreen == false\">\n <input type=\"range\" inline title=\"Content Width\" name=\"contentWidth\" min=\"20\" max=\"100\" step=\"1\" value=\"100\">\n <header>Show / Hide</header>\n <input type=\"checkbox\" title=\"Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Subtitle\" name=\"showSubtitle\">\n <input type=\"checkbox\" title=\"Text\" name=\"showText\" checked>\n <input type=\"checkbox\" title=\"Buttons\" name=\"showButtons\">\n <select title=\"Vertical Align\" name=\"verticalAlign\" condition=\"fullScreen\">\n <option value=\"flex-start\">Top</option>\n <option value=\"center\">Center</option>\n <option value=\"flex-end\" selected>Bottom</option>\n </select>\n <select title=\"Horizontal Align\" name=\"horizontalAlign\">\n <option value=\"flex-start\" selected>Left</option>\n <option value=\"center\">Center</option>\n <option value=\"flex-end\">Right</option>\n </select>\n\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Background Image\" value=\"@PROJECT_PATH@/assets/images/xuwtx8xw.png\" selected>\n <input type=\"color\" title=\"Background Color\" value=\"#353535\">\n </fieldset>\n\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" condition=\"bg.type!='color'\" checked>\n <input type=\"color\" title=\"Overlay Color\" name=\"overlayColor\" value=\"#353535\" condition=\"bg.type!='color' && overlay\">\n <input type=\"range\" inline title=\"Overlay Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.6\" condition=\"bg.type!='color' && overlay\">\n <!-- End block parameters -->\n </mbr-parameters>\n <div class=\"mbr-overlay\" mbr-if=\"overlay && bg.type !== 'color'\"></div>\n <div mbr-class=\"{'container': !fullWidth, 'container-fluid': fullWidth}\">\n <div class=\"row\">\n <div class=\"content-wrap\">\n <h1 class=\"mbr-section-title mbr-fonts-style mbr-white mb-3\" mbr-theme-style=\"display-2\" data-app-selector=\".mbr-section-title\" mbr-if=\"showTitle\">\n <b>About me</b></h1>\n <h2 class=\"mbr-section-title mbr-fonts-style mbr-white mb-3\" data-app-selector=\".mbr-section-title\" mbr-theme-style=\"display-2\" mbr-if=\"showSubtitle\">Header Subtitle</h2>\n <p class=\"mbr-fonts-style mbr-text mbr-white mb-3\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text, .mbr-section-btn\">Besides skiing, riding bicycles, trams and trains, two of my biggest passions are programming and teaching. I enjoy long walks and like to play with animals outside.<br><br>Although I am economist by vocation, I find fun in writing programs and see computer science as really impactful discipline. The world needs more computer scientists who understand economics, and more business leaders who understand principles of scientific computing. Understanding ways how businesses operate and ways how economy works, makes me ready to help organisations to improve their impact in todays world.<br><br>I am occasional Medium writer. And I feel proud of it.</p>\n\n <div class=\"mbr-section-btn\" mbr-if=\"showButtons\" data-toolbar=\"-mbrBtnMove\" mbr-buttons mbr-theme-style=\"display-4\"><a class=\"btn btn-primary\" href=\"https://mobiri.se\" data-app-placeholder=\"Type Text\">Learn more</a></div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "sesmh0ve9z",
"_anchor": "header4-3",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": false,
"_styles": {
"padding-top": "(@paddingTop * 1rem)",
"padding-bottom": "(@paddingBottom * 1rem)",
"background-color": "@bgColor",
".counter-container": {
"ol": {
"margin-bottom": "0",
"li": {
"margin-bottom": "1rem"
},
"& when (@stylizedCounters)": {
"counter-reset": "myCounter",
"li": {
"list-style": "none",
"padding-left": "1rem",
"position": "relative",
"&:before": {
"position": "absolute",
"left": "-40px",
"margin-top": "5px",
"counter-increment": "myCounter",
"content": "counter(myCounter)",
"line-height": "40px",
"transition": "all .2s",
"color": "contrast(@iconColor)",
"background": "@iconColor",
"width": "40px",
"height": "40px",
"border-radius": "50%",
"display": "flex",
"align-items": "center",
"justify-content": "center",
"& when (@squareCounters)": {
"border-radius": "0"
}
}
}
}
}
},
".mbr-text": {
"text-align": "left"
}
},
"_name": "content9",
"_sourceTheme": "mobirise5",
"_customHTML": "<section class=\"content9\" group=\"Content\">\n <mbr-parameters>\n <header>Size</header>\n <input type=\"checkbox\" title=\"Full Width\" name=\"fullWidth\">\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"10\" step=\"1\" value=\"5\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"10\" step=\"1\" value=\"5\">\n <input type=\"range\" name=\"textWidth\" title=\"Width\" min=\"4\" max=\"12\" value=\"10\" step=\"1\">\n <header>Show/Hide</header>\n <input type=\"checkbox\" title=\"Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Stylized Counters\" name=\"stylizedCounters\" checked>\n <input type=\"checkbox\" title=\"Square Counters\" name=\"squareCounters\" condition=\"stylizedCounters\" checked>\n <input type=\"color\" name=\"iconColor\" title=\"Color\" value=\"#6592e6\">\n <header>Background</header>\n <input type=\"color\" title=\"Color\" name=\"bgColor\" value=\"#ffffff\">\n </mbr-parameters>\n\n <div mbr-class=\"{'container': !fullWidth, 'container-fluid': fullWidth}\">\n <div class=\"row justify-content-center\">\n <div class=\"counter-container col-md-12 col-lg-{{textWidth}}\">\n <h4 class=\"mbr-section-title mbr-fonts-style mb-4\" mbr-if=\"showTitle\" data-app-selector=\".mbr-section-title\" mbr-theme-style=\"display-5\">Business culture that I like being part of</h4>\n <div class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text\" data-multiline mbr-article>\n <ol>\n <li><b>People friendly. </b>People should feel relaxed when going to work. We spend largest portion of our lives at work, so it is important to have right attitude, colleagues and atmosphere at workplace. In order companies to benefit from employees, employees should first benefit from companies. That's the way how long term relation and trust are established. </li><li><b style=\"font-size: 1.2rem;\">Customer friendly. </b><span style=\"font-size: 1.2rem;\">We are doing our business for customers. If there were no customers, there would not be demand for our product and services. Do business for customers as you would do it for yourself. Highest standard of quality should be applied to all products that we deliver. </span></li><li><b>Environmental friendly. </b>We live on Planet that can't be replaced or refurbished. Take care of your surrounding as you take care of your apartment or backyard. Invest in projects that make our environment more liveable. Finance ventures that do projects with sustainable development in mind.</li></ol><ol>\n </ol>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "sfjwNwZI86",
"_anchor": "content9-i",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": false,
"_styles": {
"padding-top": "(@paddingTop * 1rem)",
"padding-bottom": "(@paddingBottom * 1rem)",
"& when (@bg-type = 'color')": {
"background-color": "@bg-value"
},
"& when (@bg-type = 'image')": {
"background-image": "url(@bg-value)"
},
".card-wrapper": {
"background-color": "@cardsBg",
"margin-bottom": "2rem",
"border-radius": "4px",
"background": "@cardsBg",
"transition": "all 0.3s",
"padding": "2rem",
"padding-top": "3rem"
},
".mbr-section-title, .mbr-section-subtitle": {
"text-align": "center"
},
"@media (min-width: 992px)": {
".card-wrapper": {
"padding-left": "4rem",
"padding-right": "4rem"
}
},
"@media (max-width: 767px)": {
".card-wrapper": {
"padding": "1rem",
"padding-top": "2rem"
}
}
},
"_name": "features10",
"_sourceTheme": "mobirise5",
"_customHTML": "<section class=\"features9\" group=\"Features\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{'mbr-parallax-background': bg.parallax}\">\n <!---->\n <mbr-parameters>\n <header>Size</header>\n <input type=\"checkbox\" title=\"Full Width\" name=\"fullWidth\">\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"10\" step=\"1\" value=\"6\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"10\" step=\"1\" value=\"6\">\n <header>Show/Hide</header>\n <input type=\"checkbox\" title=\"Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Subtitle\" name=\"showSubtitle\">\n <header>Cards</header>\n <input type=\"checkbox\" title=\"Title\" name=\"showTitleCard\" checked>\n <input type=\"checkbox\" title=\"Text\" name=\"showText\" checked>\n <select title=\"Amount\" name=\"cardsAmount\">\n <option value=\"1\">1</option>\n <option value=\"2\">2</option>\n <option value=\"3\" selected>3</option>\n <option value=\"4\">4</option>\n <option value=\"5\">5</option>\n <option value=\"6\">6</option>\n <option value=\"7\">7</option>\n <option value=\"8\">8</option>\n <option value=\"9\">9</option>\n <option value=\"10\">10</option>\n <option value=\"11\">11</option>\n <option value=\"12\">12</option>\n </select>\n <input type=\"color\" title=\"Background\" name=\"cardsBg\" value=\"#ffffff\">\n <header>Background</header>\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Image\" value=\"../_images/background5.jpg\">\n <input type=\"color\" title=\"Color\" value=\"#eaeaea\" selected>\n <input type=\"video\" title=\"Video\" value=\"https://vimeo.com/428046504\">\n </fieldset>\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" checked condition=\"bg.type !== 'color'\">\n <input type=\"color\" title=\"Overlay Color\" name=\"overlayColor\" value=\"#bed3f9\" condition=\"overlay && bg.type !== 'color'\">\n <input type=\"range\" inline title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.5\" condition=\"overlay && bg.type !== 'color'\">\n </mbr-parameters>\n <div class=\"mbr-overlay\" mbr-if=\"overlay && bg.type!== 'color'\" mbr-style=\"{'opacity': overlayOpacity, 'background-color': overlayColor}\">\n </div>\n <div mbr-class=\"{'container': !fullWidth, 'container-fluid': fullWidth}\">\n <div class=\"mbr-section-head\" mbr-if=\"showTitle || showSubtitle\">\n <h3 mbr-if=\"showTitle\" class=\"mbr-section-title mbr-fonts-style mb-0\" data-app-selector=\".mbr-section-title\" mbr-theme-style=\"display-2\">\n <b>Mission | Vision | Goal</b></h3>\n <h4 mbr-if=\"showSubtitle\" data-app-selector=\".mbr-section-subtitle\" class=\"mbr-section-subtitle mbr-fonts-style mb-0 mt-2\" mbr-theme-style=\"display-5\">\n Subtitle\n </h4>\n </div>\n <div class=\"row mt-4\">\n <div class=\"card col-12\">\n <div class=\"card-wrapper\">\n <div class=\"top-line row\" mbr-if=\"showTitleCard\">\n <div class=\"col\">\n <h4 class=\"card-title mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".card-title\"><b>Mission</b></h4>\n </div>\n <div class=\"col-auto\">\n <p class=\"price mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".price\"></p>\n </div>\n </div>\n <div class=\"bottom-line\">\n <p class=\"mbr-text mbr-fonts-style \" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">\n I believe that I came to this planet in order to achieve 2 goals. First, to enrich people with programming skills and second, to help businesses to manage and optimise their operations. Both goals are aimed at increasing human welfare by satisfying more and more human needs and producing more goods.</p>\n </div>\n </div>\n </div>\n <div class=\"card col-12\" mbr-if=\"cardsAmount>1\">\n <div class=\"card-wrapper\">\n <div class=\"top-line row\" mbr-if=\"showTitleCard\">\n <div class=\"col\">\n <h4 class=\"card-title mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".card-title\"><b>Vision</b></h4>\n </div>\n <div class=\"col-auto\">\n <p class=\"price mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".price\"></p>\n </div>\n </div>\n <div class=\"bottom-line\">\n <p class=\"mbr-text mbr-fonts-style \" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">\n I dream about having my own agency where data science and business intelligence products will be developed. I see independent work as a way to balance my passions. Time can be easily shared between helping companies grow and enriching local community by organising knowledge sharing events.</p>\n </div>\n </div>\n </div>\n <div class=\"card col-12\" mbr-if=\"cardsAmount>2\">\n <div class=\"card-wrapper\">\n <div class=\"top-line row\" mbr-if=\"showTitleCard\">\n <div class=\"col\">\n <h4 class=\"card-title mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".card-title\"><b>Goal</b></h4>\n </div>\n <div class=\"col-auto\">\n <p class=\"price mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".price\"></p>\n </div>\n </div>\n <div class=\"bottom-line\">\n <p class=\"mbr-text mbr-fonts-style \" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">For second half of 2021 I plan to offer online python course for wider audience. It is going to be two part journey and everyone willing to invest time and energy in self-growth process will be welcomed. Course will be free of charge but it will require participants to invest a lot of energy and effort.</p>\n </div>\n </div>\n </div>\n <div class=\"card col-12\" mbr-if=\"cardsAmount>3\">\n <div class=\"card-wrapper\">\n <div class=\"top-line row\" mbr-if=\"showTitleCard\">\n <div class=\"col\">\n <h4 class=\"card-title mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".card-title\"><b>Special Issue</b></h4>\n </div>\n <div class=\"col-auto\">\n <p class=\"price mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".price\">\n $39</p>\n </div>\n </div>\n <div class=\"bottom-line\">\n <p class=\"mbr-text mbr-fonts-style \" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">\n Themes in the Mobirise website builder offer multiple blocks: intros, sliders, galleries,\n forms, articles, and so on. Start a project and click on the red plus buttons to see the\n blocks available for your theme.\n </p>\n </div>\n </div>\n </div>\n <div class=\"card col-12\" mbr-if=\"cardsAmount>4\">\n <div class=\"card-wrapper\">\n <div class=\"top-line row\" mbr-if=\"showTitleCard\">\n <div class=\"col\">\n <h4 class=\"card-title mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".card-title\"><b>Special Issue</b></h4>\n </div>\n <div class=\"col-auto\">\n <p class=\"price mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".price\">\n $39</p>\n </div>\n </div>\n <div class=\"bottom-line\">\n <p class=\"mbr-text mbr-fonts-style \" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">\n Themes in the Mobirise website builder offer multiple blocks: intros, sliders, galleries,\n forms, articles, and so on. Start a project and click on the red plus buttons to see the\n blocks available for your theme.\n </p>\n </div>\n </div>\n </div>\n <div class=\"card col-12\" mbr-if=\"cardsAmount>5\">\n <div class=\"card-wrapper\">\n <div class=\"top-line row\" mbr-if=\"showTitleCard\">\n <div class=\"col\">\n <h4 class=\"card-title mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".card-title\"><b>Special Issue</b></h4>\n </div>\n <div class=\"col-auto\">\n <p class=\"price mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".price\">\n $39</p>\n </div>\n </div>\n <div class=\"bottom-line\">\n <p class=\"mbr-text mbr-fonts-style \" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">\n Themes in the Mobirise website builder offer multiple blocks: intros, sliders, galleries,\n forms, articles, and so on. Start a project and click on the red plus buttons to see the\n blocks available for your theme.\n </p>\n </div>\n </div>\n </div>\n <div class=\"card col-12\" mbr-if=\"cardsAmount>6\">\n <div class=\"card-wrapper\">\n <div class=\"top-line row\" mbr-if=\"showTitleCard\">\n <div class=\"col\">\n <h4 class=\"card-title mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".card-title\"><b>Special Issue</b></h4>\n </div>\n <div class=\"col-auto\">\n <p class=\"price mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".price\">\n $39</p>\n </div>\n </div>\n <div class=\"bottom-line\">\n <p class=\"mbr-text mbr-fonts-style \" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">\n Themes in the Mobirise website builder offer multiple blocks: intros, sliders, galleries,\n forms, articles, and so on. Start a project and click on the red plus buttons to see the\n blocks available for your theme.\n </p>\n </div>\n </div>\n </div>\n <div class=\"card col-12\" mbr-if=\"cardsAmount>7\">\n <div class=\"card-wrapper\">\n <div class=\"top-line row\" mbr-if=\"showTitleCard\">\n <div class=\"col\">\n <h4 class=\"card-title mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".card-title\"><b>Special Issue</b></h4>\n </div>\n <div class=\"col-auto\">\n <p class=\"price mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".price\">\n $39</p>\n </div>\n </div>\n <div class=\"bottom-line\">\n <p class=\"mbr-text mbr-fonts-style \" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">\n Themes in the Mobirise website builder offer multiple blocks: intros, sliders, galleries,\n forms, articles, and so on. Start a project and click on the red plus buttons to see the\n blocks available for your theme.\n </p>\n </div>\n </div>\n </div>\n <div class=\"card col-12\" mbr-if=\"cardsAmount>8\">\n <div class=\"card-wrapper\">\n <div class=\"top-line row\" mbr-if=\"showTitleCard\">\n <div class=\"col\">\n <h4 class=\"card-title mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".card-title\"><b>Special Issue</b></h4>\n </div>\n <div class=\"col-auto\">\n <p class=\"price mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".price\">\n $39</p>\n </div>\n </div>\n <div class=\"bottom-line\">\n <p class=\"mbr-text mbr-fonts-style \" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">\n Themes in the Mobirise website builder offer multiple blocks: intros, sliders, galleries,\n forms, articles, and so on. Start a project and click on the red plus buttons to see the\n blocks available for your theme.\n </p>\n </div>\n </div>\n </div>\n <div class=\"card col-12\" mbr-if=\"cardsAmount>9\">\n <div class=\"card-wrapper\">\n <div class=\"top-line row\" mbr-if=\"showTitleCard\">\n <div class=\"col\">\n <h4 class=\"card-title mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".card-title\"><b>Special Issue</b></h4>\n </div>\n <div class=\"col-auto\">\n <p class=\"price mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".price\">\n $39</p>\n </div>\n </div>\n <div class=\"bottom-line\">\n <p class=\"mbr-text mbr-fonts-style \" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">\n Themes in the Mobirise website builder offer multiple blocks: intros, sliders, galleries,\n forms, articles, and so on. Start a project and click on the red plus buttons to see the\n blocks available for your theme.\n </p>\n </div>\n </div>\n </div>\n <div class=\"card col-12\" mbr-if=\"cardsAmount>10\">\n <div class=\"card-wrapper\">\n <div class=\"top-line row\" mbr-if=\"showTitleCard\">\n <div class=\"col\">\n <h4 class=\"card-title mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".card-title\"><b>Special Issue</b></h4>\n </div>\n <div class=\"col-auto\">\n <p class=\"price mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".price\">\n $39</p>\n </div>\n </div>\n <div class=\"bottom-line\">\n <p class=\"mbr-text mbr-fonts-style \" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">\n Themes in the Mobirise website builder offer multiple blocks: intros, sliders, galleries,\n forms, articles, and so on. Start a project and click on the red plus buttons to see the\n blocks available for your theme.\n </p>\n </div>\n </div>\n </div>\n <div class=\"card col-12\" mbr-if=\"cardsAmount>11\">\n <div class=\"card-wrapper\">\n <div class=\"top-line row\" mbr-if=\"showTitleCard\">\n <div class=\"col\">\n <h4 class=\"card-title mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".card-title\"><b>Special Issue</b></h4>\n </div>\n <div class=\"col-auto\">\n <p class=\"price mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".price\">\n $39</p>\n </div>\n </div>\n <div class=\"bottom-line\">\n <p class=\"mbr-text mbr-fonts-style \" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">\n Themes in the Mobirise website builder offer multiple blocks: intros, sliders, galleries,\n forms, articles, and so on. Start a project and click on the red plus buttons to see the\n blocks available for your theme.\n </p>\n </div>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "seswkQ3Qgt",
"_anchor": "features10-9",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": false,
"_styles": {
"& when not (@fullScreen)": {
"padding-top": "(@paddingTop * 1rem)",
"padding-bottom": "(@paddingBottom * 1rem)"
},
"& when (@bg-type = 'color')": {
"background-color": "@bg-value"
},
"& when (@bg-type = 'image')": {
"background-image": "url(@bg-value)"
},
"& when (@fullWidth)": {
".text-wrapper": {
"padding": "1rem"
}
},
"@media (max-width: 991px)": {
".image-wrapper": {
"margin-bottom": "1rem"
}
},
"img": {
"width": "100%"
},
"@media (min-width: 992px)": {
".text-wrapper": {
"padding": "2rem"
}
}
},
"_name": "image1",
"_sourceTheme": "mobirise5",
"_customHTML": "<section class=\"image1\" group=\"Images & Videos\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{'mbr-fullscreen': fullScreen,\n 'mbr-parallax-background': bg.parallax}\">\n <mbr-parameters>\n <header>Size</header>\n <input type=\"checkbox\" title=\"Full Screen\" name=\"fullScreen\">\n <input type=\"checkbox\" title=\"Full Width\" name=\"fullWidth\">\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"10\" step=\"1\" value=\"6\" condition=\"fullScreen == false\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"10\" step=\"1\" value=\"6\" condition=\"fullScreen == false\">\n <input type=\"range\" name=\"textWidth\" title=\"Image\" min=\"4\" max=\"8\" step=\"1\" value=\"6\">\n <header>Show/Hide</header>\n <input type=\"checkbox\" title=\"Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Text\" name=\"showText\" checked>\n <input type=\"checkbox\" title=\"Description\" name=\"showDescription\" checked>\n <header>Background</header>\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Image\" value=\"../_images/background1.jpg\">\n <input type=\"color\" title=\"Color\" value=\"#ffffff\" selected>\n <input type=\"video\" title=\"Video\" value=\"https://vimeo.com/428046504\">\n </fieldset>\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" condition=\"bg.type !== 'color'\" checked>\n <input type=\"color\" title=\"Overlay Color\" name=\"overlayColor\" value=\"#ffffff\" condition=\"overlay && bg.type !== 'color'\">\n <input type=\"range\" inline title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.7\" condition=\"overlay && bg.type !== 'color'\">\n </mbr-parameters>\n\n <div class=\"mbr-overlay\" mbr-if=\"overlay && bg.type!== 'color'\" mbr-style=\"{'opacity': overlayOpacity, 'background-color': overlayColor}\">\n </div>\n\n <div mbr-class=\"{'container': !fullWidth}\">\n <div class=\"row align-items-center\">\n <div class=\"col-12 col-lg-{{textWidth}}\">\n <div class=\"image-wrapper\">\n <img src=\"@PROJECT_PATH@/assets/images/python-programming-language-1076x1076.png\" alt=\"Mobirise\">\n <p class=\"mbr-description mbr-fonts-style pt-2 align-center\" mbr-theme-style=\"display-4\" mbr-if=\"showDescription\" data-app-selector=\".mbr-description\"></p>\n </div>\n </div>\n <div class=\"col-12\" mbr-class=\"{'col-lg' : !fullWidth, 'col-lg-4' : fullWidth && textWidth >= 6, 'col-lg-6' : fullWidth && textWidth <= 5}\">\n <div class=\"text-wrapper\">\n <h3 class=\"mbr-section-title mbr-fonts-style mb-3\" data-app-selector=\".mbr-section-title\" mbr-theme-style=\"display-5\" mbr-if=\"showTitle\">\n <b>10minutespython</b></h3>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">For second half of 2021 I plan to build python community in my town. Probably it is going to be in form of MeetUp group and Discord channel, so that I will be able to pass on knowledge and inspire others to follow my path.<br><br><b>From community to community!</b> Python is programming language that was developed by scientist about 3 decades ago. It is open sourced, meaning that everyone is able to use it without paying anything for it. My life was enriched and ennobled when I mastered Python skills (precisely from the moment I started using it). Now I am ready to lead less experienced developers achieve their goals.<br><br>When considering investing energy in learning new skills, we should ask ourselves how general and applicable that knowledge is. Python is the best language in that sense. Meaning that it can be applied in wide range of areas. From web applications, to data analysis and even front end applications can be made using Python. It will make your skills general and universal. Those are skills that can be applied in wide range of areas with minor changes.<br><br>Among all that, Python is language that is inspiring and it makes our workday fun and enjoyable.</p>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "seyMWfLtmV",
"_anchor": "image1-g",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": false,
"_styles": {
"padding-top": "(@paddingTop * 1rem)",
"padding-bottom": "(@paddingBottom * 1rem)",
"& when (@bg-type = 'color')": {
"background-color": "@bg-value"
},
"& when (@bg-type = 'image')": {
"background-image": "url(@bg-value)"
},
".nav-tabs .nav-item.open .nav-link:focus, .nav-tabs .nav-link.active:focus": {
"outline": "none"
},
".nav-tabs": {
"flex-wrap": "wrap",
"border-bottom": "1px solid @activeColor"
},
".nav-item": {
"@media (max-width: 767px)": {
"width": "100%",
"margin": "0"
}
},
".nav-tabs .nav-link": {
"transition": "all .5s",
"border": "none",
"border-bottom": "3px solid transparent",
"border-radius": "0 !important",
"&:not(.active)": {
"color": "@tabsColor"
}
},
".nav-tabs .nav-item": {
"margin-right": "1.5rem"
},
".nav-link, .nav-link.active": {
"padding": "1rem 0",
"background-color": "transparent"
},
".nav-tabs .nav-link.active": {
"color": "@activeColor",
"border-bottom": "3px solid @activeColor"
},
"H4": {
"text-align": "center"
},
"H3": {
"text-align": "center"
}
},
"_name": "tabs1",
"_sourceTheme": "mobirise5",
"_customHTML": "<section class=\"tabs content18\" group=\"Content\" data-bg-video=\"{{bg.type == 'video'&&bg.value.url}}\" mbr-class=\"{'mbr-parallax-background':bg.parallax}\" plugins=\"mbr-tabs\">\n\n <mbr-parameters>\n <header>Size</header>\n <input type=\"checkbox\" name=\"fullWidth\" title=\"Full Width\">\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"10\" step=\"1\" value=\"6\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"10\" step=\"1\" value=\"6\">\n <input type=\"range\" name=\"textWidth\" title=\"Width\" min=\"4\" max=\"12\" value=\"8\" step=\"1\">\n <header>Show/Hide</header>\n <input type=\"checkbox\" title=\"Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Subtitle\" name=\"showSubtitle\">\n <header>Tabs</header>\n <select title=\"Count\" name=\"bootstrapTabs\">\n <option value=\"1\">1</option>\n <option value=\"2\">2</option>\n <option value=\"3\">3</option>\n <option value=\"4\">4</option>\n <option value=\"5\">5</option>\n <option value=\"6\" selected>6</option>\n </select>\n <input type=\"color\" name=\"tabsColor\" title=\"Color\" value=\"#000000\">\n <input type=\"color\" name=\"activeColor\" title=\"Active Color\" value=\"#4479d9\">\n <header>Background</header>\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Image\" value=\"../_images/background1.jpg\">\n <input type=\"color\" title=\"Color\" value=\"#eaeaea\" selected>\n <input type=\"video\" title=\"Video\" value=\"https://vimeo.com/428046504\">\n </fieldset>\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" condition=\"bg.type !== 'color'\" checked>\n <input type=\"color\" title=\"Overlay Color\" name=\"overlayColor\" value=\"#ffffff\" condition=\"overlay&&bg.type !== 'color'\">\n <input type=\"range\" inline title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.7\" condition=\"overlay&&bg.type !== 'color'\">\n </mbr-parameters>\n\n <div class=\"mbr-overlay\" mbr-if=\"overlay&&bg.type!== 'color'\" mbr-style=\"{'opacity': overlayOpacity, 'background-color': overlayColor}\">\n </div>\n <div mbr-class=\"{'container': !fullWidth, 'container-fluid': fullWidth}\">\n <div class=\"row justify-content-center\" mbr-if=\"showTitle || showSubtitle\">\n <div class=\"col-12 col-md-{{textWidth}}\">\n <h3 class=\"mbr-section-title mb-0 mbr-fonts-style\" mbr-theme-style=\"display-2\" mbr-if=\"showTitle\"><b>My teaching principles</b></h3>\n <h4 class=\"mbr-section-subtitle mb-0 mt-2 mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showSubtitle\">Tabs Subtitle</h4>\n </div>\n </div>\n <div class=\"row justify-content-center mt-4\">\n <div class=\"col-12 col-md-{{textWidth}}\">\n <ul class=\"nav nav-tabs mb-4\" role=\"tablist\">\n <li mbr-buttons mbr-theme-style=\"display-7\" class=\"nav-item first mbr-fonts-style\" data-toolbar=\"-mbrBtnAdd,-mbrBtnMove,-mbrLink,-mbrBtnRemove,-iconFont\"><a class=\"nav-link mbr-fonts-style show active\" role=\"tab\" data-toggle=\"tab\" href=\"#tabs1-h_tab0\" data-app-placeholder=\"Type Text\" aria-selected=\"true\">\n <strong>What</strong>\n </a></li>\n <li mbr-buttons mbr-theme-style=\"display-7\" class=\"nav-item\" mbr-if=\"bootstrapTabs > 1\" data-toolbar=\"-mbrBtnAdd,-mbrBtnMove,-mbrLink,-mbrBtnRemove,-iconFont\"><a class=\"nav-link mbr-fonts-style active\" role=\"tab\" data-toggle=\"tab\" href=\"#tabs1-h_tab1\" data-app-placeholder=\"Type Text\" aria-selected=\"true\">\n <strong>Why</strong>\n </a></li>\n <li mbr-buttons mbr-theme-style=\"display-7\" class=\"nav-item\" mbr-if=\"bootstrapTabs > 2\" data-toolbar=\"-mbrBtnAdd,-mbrBtnMove,-mbrLink,-mbrBtnRemove,-iconFont\"><a class=\"nav-link mbr-fonts-style active\" role=\"tab\" data-toggle=\"tab\" href=\"#tabs1-h_tab2\" data-app-placeholder=\"Type Text\" aria-selected=\"true\">\n <strong>When</strong></a></li>\n <li mbr-buttons mbr-theme-style=\"display-7\" class=\"nav-item\" mbr-if=\"bootstrapTabs > 3\" data-toolbar=\"-mbrBtnAdd,-mbrBtnMove,-mbrLink,-mbrBtnRemove,-iconFont\"><a class=\"nav-link mbr-fonts-style active\" role=\"tab\" data-toggle=\"tab\" href=\"#tabs1-h_tab3\" data-app-placeholder=\"Type Text\" aria-selected=\"true\">\n <strong>How</strong>\n </a></li>\n <li mbr-buttons mbr-theme-style=\"display-7\" class=\"nav-item\" mbr-if=\"bootstrapTabs > 4\" data-toolbar=\"-mbrBtnAdd,-mbrBtnMove,-mbrLink,-mbrBtnRemove,-iconFont\"><a class=\"nav-link mbr-fonts-style active\" role=\"tab\" data-toggle=\"tab\" href=\"#tabs1-h_tab4\" data-app-placeholder=\"Type Text\" aria-selected=\"true\">\n <strong>About Mistakes</strong>\n </a></li>\n <li mbr-buttons mbr-theme-style=\"display-7\" class=\"nav-item\" mbr-if=\"bootstrapTabs > 5\" data-toolbar=\"-mbrBtnAdd,-mbrBtnMove,-mbrLink,-mbrBtnRemove,-iconFont\"><a class=\"nav-link mbr-fonts-style active\" role=\"tab\" data-toggle=\"tab\" href=\"#tabs1-h_tab5\" data-app-placeholder=\"Type Text\" aria-selected=\"true\">Class Structure</a></li>\n </ul>\n <div class=\"tab-content\">\n <div id=\"tab1\" class=\"tab-pane in active\" role=\"tabpanel\">\n <div class=\"row\">\n <div class=\"col-md-12\">\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\">\n Before you start learning you should know exactly what you want to learn. Sounds too obvious, but only fractions of students know precisely what they want to learn.<br><br>It is better to invest some time in researching topic of interest, before you actually start investing time in mastering it.<br><br>Before you become master of something, you need to know what you want to master. At what level you want to approach topic of interest and what elements of it you want to master.<br><br>Questions that you ask are more important than answers per se. If you know what you are looking for, you will know how to find it!</p>\n </div>\n </div>\n </div>\n <div id=\"tab2\" class=\"tab-pane\" role=\"tabpanel\" mbr-if=\"bootstrapTabs > 1\">\n <div class=\"row\">\n <div class=\"col-md-12\">\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\">\n This is the most important part. There is even quote saying 'If you know why, you will find how!' <br><br>This will answer our question about where we can apply expertise that we plan to acquire. Knowledge is not about having knowledge, it is about applying it in solving real world challenges. Again, there is french saying \"L'art pour l'art\" that perfectly describes it.<br><br> In order to be motivated and continue learning, we must be aware of potential applications and places where knowledge, that we are acquiring, can be applied.</p>\n </div>\n </div>\n </div>\n <div id=\"tab3\" class=\"tab-pane\" role=\"tabpanel\" mbr-if=\"bootstrapTabs > 2\">\n <div class=\"row\">\n <div class=\"col-md-12\">\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\">\n It's all about time. In order to acquire any craft, you need to have time and energy necessary for it.<br><br>Becoming craftsman of any kind requires dedication and commitment. Learning and acquiring new craft should be at top of your priority list. Learning will occupy significant portion of your life, so make sure that you have chosen activities that you really like.<br><br>Try to learn and improve in things that you are passionate about. It will boost your self esteem and make process more enjoyable.</p>\n </div>\n </div>\n </div>\n <div id=\"tab4\" class=\"tab-pane\" role=\"tabpanel\" mbr-if=\"bootstrapTabs > 3\">\n <div class=\"row\">\n <div class=\"col-md-12\">\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\">The person who best know yourself is you. <br><br>During the growing up phase of your life, you found out what are your advantages and disadvantages. You figured out how you learn and what circumstances make that process most enjoyable. Idea is to make yourself study plan that best suits you.<br><br>You, as a student, should have learning plan and be ready to ask for help when you encounter obstacles on your learning path.<br></p>\n </div>\n </div>\n </div>\n <div id=\"tab5\" class=\"tab-pane\" role=\"tabpanel\" mbr-if=\"bootstrapTabs > 4\">\n <div class=\"row\">\n <div class=\"col-md-12\">\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\">\n There are two types of teachers in the world. First group, they expect from their students to know everything and accurately from pure beginning. And second group, they encourage learners to make more and more mistakes at the beginning. <br><br>I believe that no one was born as craftsman. You need to make many mistakes in order to learn new skills and acquire knowledge. That's real truth.<br><br>Very important thing is that, while you are in learning phase, mistakes are expected and allowed! The more mistakes you make, the faster you move forward.<br><br>Our tendency to be perfect is our biggest enemy when learning something new.<br><br>We do not live in perfect world, no one is flawless. Everyone struggles when moving through new and unfamiliar environment. So, give yourself chance to be like others and accept fact that your work is not going to be without mistakes.<br><br>One of my goals, as a teacher, is to encourage you to feel comfortable while making mistakes! So, be relaxed and 'Start by doing it badly!'</p>\n </div>\n </div>\n </div>\n <div id=\"tab6\" class=\"tab-pane\" role=\"tabpanel\" mbr-if=\"bootstrapTabs > 5\">\n <div class=\"row\">\n <div class=\"col-md-12\">\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\">Community is very important factor in learning process. Peer to peer learning makes us master materials faster. Learning community give us two things, support and challenge.<br><br>Support - we belong to what we do. Everyone learns differently. You should ask for help when you find something difficult to understand. And you should support others when you can help. Everyone grasps in different way. Sometimes you lead, sometimes you are guided.<br><br>Challenge - best way to learn is to teach. Pick a subject, prepare and give presentation to your peers. Motivate them, make them develop interest in materials that you are presenting. Tell them story, explain why that topic makes difference... Then your peers will start being curious and they will challenge you. By asking questions, by watching at subject from different angle they will help you better understand topic that you study.</p>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "sfjwKhZmgW",
"_anchor": "tabs1-h",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": false,
"_styles": {
"& when not (@fullScreen)": {
"padding-top": "(@paddingTop * 1rem)",
"padding-bottom": "(@paddingBottom * 1rem)"
},
"& when (@bg-type = 'color')": {
"background-color": "@bg-value"
},
"& when (@bg-type = 'image')": {
"background-image": "url(@bg-value)"
},
"& when (@fullWidth)": {
".text-wrapper": {
"padding": "1rem"
}
},
"@media (max-width: 991px)": {
".image-wrapper": {
"margin-bottom": "1rem"
}
},
".row": {
"flex-direction": "row-reverse"
},
"img": {
"width": "100%"
},
"@media (min-width: 992px)": {
".text-wrapper": {
"padding": "2rem"
}
}
},
"_name": "image2",
"_sourceTheme": "mobirise5",
"_customHTML": "<section class=\"image2\" group=\"Images & Videos\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{'mbr-fullscreen': fullScreen,\n 'mbr-parallax-background': bg.parallax}\">\n <mbr-parameters>\n <header>Size</header>\n <input type=\"checkbox\" title=\"Full Screen\" name=\"fullScreen\">\n <input type=\"checkbox\" title=\"Full Width\" name=\"fullWidth\">\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"10\" step=\"1\" value=\"6\" condition=\"fullScreen == false\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"10\" step=\"1\" value=\"6\" condition=\"fullScreen == false\">\n <input type=\"range\" name=\"textWidth\" title=\"Image\" min=\"4\" max=\"8\" step=\"1\" value=\"6\">\n <header>Show/Hide</header>\n <input type=\"checkbox\" title=\"Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Text\" name=\"showText\" checked>\n <input type=\"checkbox\" title=\"Description\" name=\"showDescription\" checked>\n <header>Background</header>\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Image\" value=\"../_images/background1.jpg\" parallax>\n <input type=\"color\" title=\"Color\" value=\"#ffffff\" selected>\n <input type=\"video\" title=\"Video\" value=\"https://vimeo.com/428046504\">\n </fieldset>\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" condition=\"bg.type !== 'color'\" checked>\n <input type=\"color\" title=\"Overlay Color\" name=\"overlayColor\" value=\"#ffffff\" condition=\"overlay && bg.type !== 'color'\">\n <input type=\"range\" inline title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.7\" condition=\"overlay && bg.type !== 'color'\">\n </mbr-parameters>\n\n <div class=\"mbr-overlay\" mbr-if=\"overlay && bg.type!== 'color'\" mbr-style=\"{'opacity': overlayOpacity, 'background-color': overlayColor}\">\n </div>\n\n <div mbr-class=\"{'container': !fullWidth}\">\n <div class=\"row align-items-center\">\n <div class=\"col-12 col-lg-{{textWidth}}\">\n <div class=\"image-wrapper\">\n <img src=\"@PROJECT_PATH@/assets/images/adab99012ee917fec9035f58624b008d-500x500.jpg\" alt=\"Balkan\">\n <p class=\"mbr-description mbr-fonts-style mt-2 align-center\" mbr-theme-style=\"display-4\" mbr-if=\"showDescription\" data-app-selector=\".mbr-description\">\n Map of Balkan peninsula</p>\n </div>\n </div>\n <div class=\"col-12\" mbr-class=\"{'col-lg' : !fullWidth, 'col-lg-4' : fullWidth && textWidth >= 6, 'col-lg-6' : fullWidth && textWidth <= 5}\">\n <div class=\"text-wrapper\">\n <h3 class=\"mbr-section-title mbr-fonts-style mb-3\" data-app-selector=\".mbr-section-title\" mbr-theme-style=\"display-5\" mbr-if=\"showTitle\">\n <b>About Balkan</b></h3>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">Balkan is place where I come from. It is area with beautiful and grateful people. Unfortunately, in last 30 years terrible things happened to our region. Yugoslavia ceased to exist, war was well planned and professionally organised. Criminal gangs took control over country.<br><br>Serbs, Muslims and Croats used to fight against each other. War propaganda brought ordinary people to battlefield. Although they fight on different sides, they fought for same ideals. Freedom of speech, wellbeing, freedom of religion, economic development, civil rights.<br><br>While innocent and honest people suffered and died, political leaders grabbed power and stole economic resources from ordinary people. Organised crime does not recognise neither religion nor nationality.<br><br>I believe that there is no correlation between being good person and nationality/religion. So if you treat other people the way you want to be treated, respect differences and work today on becoming better person tomorrow --- you are my friend. <br><br> And, I have a lot against organised crime regardless of nationality, race, skin colour or religion.<br><br>I would like to cooperate with openminded people who share same values.</p>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "seyAeN0xla",
"_anchor": "image2-f",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": false,
"_styles": {
"padding-top": "(@paddingTop * 1rem)",
"padding-bottom": "(@paddingBottom * 1rem)",
"& when (@bg-type = \"color\")": {
"background-color": "@bg-value"
},
"& when (@bg-type = \"image\")": {
"background-image": "url(@bg-value)"
},
".timeline-element": {
"position": "relative"
},
".image-wrapper img": {
"width": "100%",
"object-fit": "cover"
},
".iconBackground": {
"position": "absolute",
"@media (max-width: 767px)": {
"left": "15px"
},
"@media (min-width: 768px)": {
"left": "50%"
},
"width": "20px",
"height": "20px",
"border-radius": "50%",
"border": "2px solid @lineColor",
"top": "30px",
"margin-left": "-9px"
},
".row": {
"&:after": {
"content": "\"\"",
"position": "absolute",
"background-color": "@lineColor",
"width": "2px",
"@media (max-width: 767px)": {
"left": "15px"
},
"@media (min-width: 768px)": {
"left": "50%"
},
"top": "50px",
"height": "calc(100% ~\"-\" 10px)"
},
"& when (@reverseTimeline)": {
"flex-direction": "row-reverse",
"&:nth-child(even)": {
".mbr-timeline-date": {
"text-align": "right"
},
"@media (max-width: 767px)": {
"flex-direction": "column-reverse"
}
}
},
"& when not (@reverseTimeline)": {
"&:nth-child(odd)": {
".mbr-timeline-date": {
"text-align": "right"
}
},
"&:nth-child(even)": {
"@media (max-width: 767px)": {
"flex-direction": "column-reverse"
}
}
}
},
"@media (max-width: 767px)": {
".timeline-date-wrapper, .timeline-text-wrapper": {
"padding": "0rem",
"padding-left": "2rem"
},
".mbr-timeline-date": {
"text-align": "left !important"
}
},
"@media (max-width: 991px) and (min-width: 768px)": {
".timeline-date-wrapper, .timeline-text-wrapper": {
"padding": "1rem"
}
},
"@media (min-width: 992px)": {
".timeline-date-wrapper, .timeline-text-wrapper": {
"padding": "2rem"
}
}
},
"_name": "timeline1",
"_sourceTheme": "mobirise5",
"_customHTML": "<section class=\"timeline1\" group=\"Timelines\" data-bg-video=\"{{bg.type == 'video'&&bg.value.url}}\" mbr-class=\"{'mbr-parallax-background': bg.parallax}\">\n <mbr-parameters>\n <header>Size</header>\n <input type=\"checkbox\" name=\"fullWidth\" title=\"Full Width\">\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"10\" step=\"1\" value=\"6\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"10\" step=\"1\" value=\"6\">\n <input type=\"checkbox\" title=\"Reverse Timeline\" name=\"reverseTimeline\">\n <header>Show/Hide</header>\n <input type=\"checkbox\" title=\"Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Subtitle\" name=\"showSubtitle\">\n <input type=\"checkbox\" title=\"Dates\" name=\"showDates\" checked>\n <input type=\"checkbox\" title=\"Images\" name=\"showImages\" checked>\n <select title=\"Count\" name=\"timelinesAmount\">\n <option value=\"1\">1</option>\n <option value=\"2\">2</option>\n <option value=\"3\">3</option>\n <option value=\"4\" selected>4</option>\n <option value=\"5\">5</option>\n <option value=\"6\">6</option>\n <option value=\"7\">7</option>\n <option value=\"8\">8</option>\n <option value=\"9\">9</option>\n <option value=\"10\">10</option>\n <option value=\"11\">11</option>\n <option value=\"12\">12</option>\n </select>\n <input type=\"color\" name=\"lineColor\" title=\"Color\" value=\"#6592e6\">\n <header>Background</header>\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Image\" value=\"../_images/background3.jpg\">\n <input type=\"color\" title=\"Color\" value=\"#ffffff\" selected>\n <input type=\"video\" title=\"Video\" value=\"https://vimeo.com/428046504\">\n </fieldset>\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" condition=\"bg.type !== 'color'\" checked>\n <input type=\"color\" title=\"Color\" name=\"overlayColor\" value=\"#ffffff\" condition=\"overlay&&bg.type !== 'color'\">\n <input type=\"range\" inline title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.7\" condition=\"overlay&&bg.type !== 'color'\">\n </mbr-parameters>\n <div class=\"mbr-overlay\" mbr-if=\"overlay&&bg.type!== 'color'\" mbr-style=\"{'opacity': overlayOpacity, 'background-color': overlayColor}\">\n </div>\n <div mbr-class=\"{'container': !fullWidth, 'container-fluid': fullWidth}\" class=\"timelines-container\" mbri-timelines>\n <div class=\"mbr-section-head\" mbr-if=\"showTitle || showSubtitle\">\n <h3 class=\"mbr-section-title mbr-fonts-style align-center mb-0\" mbr-theme-style=\"display-2\" mbr-if=\"showTitle\" data-app-selector=\".mbr-section-title\">\n <b>Timeline</b>\n </h3>\n <h4 class=\"mbr-section-subtitle mbr-fonts-style align-center mb-0 mt-2\" mbr-theme-style=\"display-5\" mbr-if=\"showSubtitle\" data-app-selector=\".mbr-section-subtitle\">\n Enter subtitle here\n </h4>\n </div>\n <div class=\"row timeline-element mb-2 mt-4\" mbr-class=\"{'reverseTimeline': reverseTimeline}\">\n <div class=\"timeline-date col-12 col-md-6\">\n <div class=\"timeline-date-wrapper\">\n <p class=\"mbr-timeline-date mbr-fonts-style\" data-toolbar=\"-mbrAlign\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-app-selector=\".mbr-timeline-date\">\n <b>23 April 2025</b>\n </p>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"col-12 col-md-6\">\n <div class=\"timeline-text-wrapper\">\n <h4 class=\"mbr-timeline-title mbr-fonts-style mb-4\" mbr-theme-style=\"display-5\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-title\">\n <b>Website Builder</b>\n </h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"../_images/features/features1.jpg\" alt=\"Mobirise\" title>\n </div>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text\">\n You don't have to code to create your own site. Select one of available themes in the Mobirise\n sitebuilder.\n </p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element mb-2\" mbr-if=\"timelinesAmount>1\">\n <div class=\"col-12 col-md-6\">\n <div class=\"timeline-text-wrapper\">\n <h4 class=\"mbr-timeline-title mbr-fonts-style mb-4\" mbr-theme-style=\"display-5\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-title\">\n <b>Code Editor</b>\n </h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"../_images/features/features2.jpg\" alt=\"Mobirise\" title>\n </div>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text\">\n All sites you create with the Mobirise web builder are mobile-friendly natively. No special\n actions required.\n </p>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"timeline-date col-12 col-md-6\">\n <div class=\"timeline-date-wrapper\">\n <p class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-date\">\n <b>23 April 2025</b>\n </p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element mb-2\" mbr-if=\"timelinesAmount>2\">\n <div class=\"timeline-date col-12 col-md-6\">\n <div class=\"timeline-date-wrapper\">\n <p class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-date\">\n <b>23 April 2025</b>\n </p>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"col-12 col-md-6\">\n <div class=\"timeline-text-wrapper\">\n <h4 class=\"mbr-timeline-title mbr-fonts-style mb-4\" mbr-theme-style=\"display-5\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-title\">\n <b>Mobirise Kit</b>\n </h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"../_images/features/features3.jpg\" alt=\"Mobirise\" title>\n </div>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text\">\n Select the theme that suits you. Each theme in the Mobirise site builder contains a set of\n unique blocks.\n </p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element mb-2\" mbr-class=\"{'reverseTimeline': reverseTimeline}\" mbr-if=\"timelinesAmount>3\">\n <div class=\"col-12 col-md-6\">\n <div class=\"timeline-text-wrapper\">\n <h4 class=\"mbr-timeline-title mbr-fonts-style mb-4\" mbr-theme-style=\"display-5\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-title\">\n <b>Form Builder</b>\n </h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"../_images/features/features4.jpg\" alt=\"Mobirise\" title>\n </div>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text\">\n Use Mobirise website building software to create multiple sites for commercial and non-profit\n projects.\n </p>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"timeline-date col-12 col-md-6\">\n <div class=\"timeline-date-wrapper\">\n <p class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-date\">\n <b>23 April 2025</b>\n </p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element mb-2\" mbr-class=\"{'reverseTimeline': reverseTimeline}\" mbr-if=\"timelinesAmount>4\">\n <div class=\"timeline-date col-12 col-md-6\">\n <div class=\"timeline-date-wrapper\">\n <p class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-date\">\n <b>23 April 2025</b>\n </p>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"col-12 col-md-6\">\n <div class=\"timeline-text-wrapper\">\n <h4 class=\"mbr-timeline-title mbr-fonts-style mb-4\" mbr-theme-style=\"display-5\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-title\">\n <b>Form Builder</b>\n </h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"../_images/features/features4.jpg\" alt=\"Mobirise\" title>\n </div>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text\">\n You don't have to code to create your own site. Select one of available themes in the Mobirise\n sitebuilder.\n </p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element mb-2\" mbr-class=\"{'reverseTimeline': reverseTimeline}\" mbr-if=\"timelinesAmount>5\">\n <div class=\"col-12 col-md-6\">\n <div class=\"timeline-text-wrapper\">\n <h4 class=\"mbr-timeline-title mbr-fonts-style mb-4\" mbr-theme-style=\"display-5\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-title\">\n <b>Form Builder</b>\n </h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"../_images/features/features4.jpg\" alt=\"Mobirise\" title>\n </div>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text\">\n All sites you create with the Mobirise web builder are mobile-friendly natively. No special\n actions required.\n </p>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"timeline-date col-12 col-md-6\">\n <div class=\"timeline-date-wrapper\">\n <p class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-date\">\n <b>23 April 2025</b>\n </p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element mb-2\" mbr-class=\"{'reverseTimeline': reverseTimeline}\" mbr-if=\"timelinesAmount>6\">\n <div class=\"timeline-date col-12 col-md-6\">\n <div class=\"timeline-date-wrapper\">\n <p class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-date\">\n <b>23 April 2025</b>\n </p>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"col-12 col-md-6\">\n <div class=\"timeline-text-wrapper\">\n <h4 class=\"mbr-timeline-title mbr-fonts-style mb-4\" mbr-theme-style=\"display-5\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-title\">\n <b>Form Builder</b>\n </h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"../_images/features/features4.jpg\" alt=\"Mobirise\" title>\n </div>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text\">\n Select the theme that suits you. Each theme in the Mobirise site builder contains a set of\n unique blocks.\n </p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element mb-2\" mbr-class=\"{'reverseTimeline': reverseTimeline}\" mbr-if=\"timelinesAmount>7\">\n <div class=\"col-12 col-md-6\">\n <div class=\"timeline-text-wrapper\">\n <h4 class=\"mbr-timeline-title mbr-fonts-style mb-4\" mbr-theme-style=\"display-5\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-title\">\n <b>Form Builder</b>\n </h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"../_images/features/features4.jpg\" alt=\"Mobirise\" title>\n </div>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text\">\n Use Mobirise website building software to create multiple sites for commercial and non-profit\n projects.\n </p>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"timeline-date col-12 col-md-6\">\n <div class=\"timeline-date-wrapper\">\n <p class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-date\">\n <b>23 April 2025</b>\n </p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element mb-2\" mbr-class=\"{'reverseTimeline': reverseTimeline}\" mbr-if=\"timelinesAmount>8\">\n <div class=\"timeline-date col-12 col-md-6\">\n <div class=\"timeline-date-wrapper\">\n <p class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-date\">\n <b>23 April 2025</b>\n </p>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"col-12 col-md-6\">\n <div class=\"timeline-text-wrapper\">\n <h4 class=\"mbr-timeline-title mbr-fonts-style mb-4\" mbr-theme-style=\"display-5\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-title\">\n <b>Form Builder</b>\n </h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"../_images/features/features4.jpg\" alt=\"Mobirise\" title>\n </div>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text\">\n You don't have to code to create your own site. Select one of available themes in the Mobirise\n sitebuilder.\n </p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element mb-2\" mbr-class=\"{'reverseTimeline': reverseTimeline}\" mbr-if=\"timelinesAmount>9\">\n <div class=\"col-12 col-md-6\">\n <div class=\"timeline-text-wrapper\">\n <h4 class=\"mbr-timeline-title mbr-fonts-style mb-4\" mbr-theme-style=\"display-5\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-title\">\n <b>Form Builder</b>\n </h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"../_images/features/features4.jpg\" alt=\"Mobirise\" title>\n </div>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text\">\n All sites you create with the Mobirise web builder are mobile-friendly natively. No special\n actions required.\n </p>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"timeline-date col-12 col-md-6\">\n <div class=\"timeline-date-wrapper\">\n <p class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-date\">\n <b>23 April 2025</b>\n </p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element mb-2\" mbr-class=\"{'reverseTimeline': reverseTimeline}\" mbr-if=\"timelinesAmount>10\">\n <div class=\"timeline-date col-12 col-md-6\">\n <div class=\"timeline-date-wrapper\">\n <p class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-date\">\n <b>23 April 2025</b>\n </p>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"col-12 col-md-6\">\n <div class=\"timeline-text-wrapper\">\n <h4 class=\"mbr-timeline-title mbr-fonts-style mb-4\" mbr-theme-style=\"display-5\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-title\">\n <b>Form Builder</b>\n </h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"../_images/features/features4.jpg\" alt=\"Mobirise\" title>\n </div>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text\">\n Select the theme that suits you. Each theme in the Mobirise site builder contains a set of\n unique blocks.\n </p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element mb-2\" mbr-class=\"{'reverseTimeline': reverseTimeline}\" mbr-if=\"timelinesAmount>11\">\n <div class=\"col-12 col-md-6\">\n <div class=\"timeline-text-wrapper\">\n <h4 class=\"mbr-timeline-title mbr-fonts-style mb-4\" mbr-theme-style=\"display-5\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-title\">\n <b>Form Builder</b>\n </h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"../_images/features/features4.jpg\" alt=\"Mobirise\" title>\n </div>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text\">\n Use Mobirise website building software to create multiple sites for commercial and non-profit\n projects.\n </p>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"timeline-date col-12 col-md-6\">\n <div class=\"timeline-date-wrapper\">\n <p class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-date\">\n <b>23 April 2025</b>\n </p>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "t4CrWD9l2Q",
"_anchor": "timeline1-n",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": false,
"_styles": {
"padding-top": "(@paddingTop * 1rem)",
"padding-bottom": "(@paddingBottom * 1rem)",
"& when (@bg-type = \"color\")": {
"background-color": "@bg-value"
},
"& when (@bg-type = \"image\")": {
"background-image": "url(@bg-value)"
},
".timeline-element": {
"position": "relative"
},
".image-wrapper img": {
"width": "100%",
"object-fit": "cover"
},
".iconBackground": {
"position": "absolute",
"@media (max-width: 767px)": {
"left": "15px"
},
"@media (min-width: 768px)": {
"left": "50%"
},
"width": "20px",
"height": "20px",
"border-radius": "50%",
"border": "2px solid @lineColor",
"top": "30px",
"margin-left": "-9px"
},
".row": {
"&:after": {
"content": "\"\"",
"position": "absolute",
"background-color": "@lineColor",
"width": "2px",
"@media (max-width: 767px)": {
"left": "15px"
},
"@media (min-width: 768px)": {
"left": "50%"
},
"top": "50px",
"height": "calc(100% ~\"-\" 10px)"
},
"& when (@reverseTimeline)": {
"flex-direction": "row-reverse",
"&:nth-child(even)": {
".mbr-timeline-date": {