-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.mobirise
1569 lines (1569 loc) · 147 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": "OBSN Academy",
"currentPage": "index.html",
"theme": {
"name": "mobirise5",
"title": "Mobirise 5",
"styling": {
"primaryColor": "#22a5e5",
"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": true
},
"additionalSetColors": [
"#ffb963",
"#5679b9",
"#0600ae",
"#ff3366",
"#5aa4c9",
"#517484",
"#dedede"
]
},
"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"
}
],
"imageResize": true,
"uniqCompNum": 98,
"versionPublish": "5.2.0",
"screenshot": "screenshot.png",
"publishChangesOnly": false,
"favicon": "@PROJECT_PATH@/assets/images/obsnacademy-transparent-128x128-1.png",
"robotsSwitcher": true,
"robotsText": "User-agent: *\nDisallow: /cgi-bin\n",
"sitemapSwitcher": false,
"siteUrl": false,
"sitemapSwitcherAuto": "on",
"cookiesAlert": {
"customDialogSelector": true,
"colorText": "#424a4d",
"colorBg": "#eaeff1",
"colorButton": "",
"colorLink": "#424a4d",
"underlineLink": true,
"opacity": "99",
"opacityOverlay": "80",
"text": "We use cookies to give you the best experience. Read our <a href='privacy.html'>cookie policy</a>.",
"textButton": "Agree"
},
"gdpr": {
"colorText": "#a7a7a7",
"colorLink": "#149dcc",
"underlineLink": false,
"text": "By continuing you agree to our <a href='terms.html'>Terms of Service</a> and <a href='policy.html'>Privacy Policy</a>."
}
},
"pages": {
"index.html": {
"settings": {
"main": true,
"title": "OBS Ninja Academy - Remote Video Productions / Consulting and Training",
"meta_descr": "Include remote video and audio guests in your productions. At an amazingly short latency and with great production value. For live streaming and recording.",
"header_custom": "<meta http-equiv=\"Cache-Control\" content=\"no-cache, no-store, must-revalidate\" />\n<meta http-equiv=\"Pragma\" content=\"no-cache\" />\n<meta http-equiv=\"Expires\" content=\"0\" />",
"footer_custom": "",
"html_before": "",
"meta_image": "@PROJECT_PATH@/assets/images/obsnacademy_icon-2000x2000.png"
},
"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)": {
"position": "absolute",
"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": "menu2",
"_sourceTheme": "mobirise5",
"_customHTML": "<section class=\"menu menu2\" 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\" checked>\n <header>Show/Hide</header>\n <input type=\"checkbox\" title=\"Logo\" name=\"showLogo\" checked>\n <input type=\"range\" title=\"Logo Size\" inline name=\"logoSize\" min=\"3\" max=\"8\" step=\"0.1\" value=\"4.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\">\n <select title=\"Amount\" name=\"iconsAmount\" condition=\"showIcons\">\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 </select>\n <input type=\"color\" title=\"Icons Color\" name=\"iconsColor\" value=\"#000000\" condition=\"showIcons\">\n <input type=\"checkbox\" title=\"Button\" name=\"showButtons\" checked>\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\" checked>\n <input type=\"range\" title=\"Opacity\" name=\"opacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.6\" condition=\"transparent\">\n <input type=\"color\" title=\"Color\" name=\"menuBgColor\" value=\"#000000\">\n <input type=\"color\" title=\"Hamburger\" name=\"hamburgerColor\" value=\"#ffffff\">\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 \n <img src=\"@PROJECT_PATH@/assets/images/obsnacademy-transparent-padding-light-137x137.png\" alt=\"Mobirise\" mbr-style=\"{'height': logoSize + 'rem'}\">\n \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-white\" data-app-selector=\".navbar-caption\" href=\"https://mobiri.se\" data-app-placeholder=\"Type Text\">OBS Ninja Academy</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 dropdown\"><a class=\"nav-link link dropdown-toggle text-white\" href=\"#\" data-app-selector=\".nav-link,.dropdown-item\" data-app-placeholder=\"Type Text\" data-toggle=\"dropdown-submenu\" aria-expanded=\"false\">\n About</a><div class=\"dropdown-menu\"><a class=\"dropdown-item text-white text-primary\" href=\"index.html#extHeader26-11\" data-app-selector=\".nav-link,.dropdown-item\" data-app-placeholder=\"Type Text\">About OBSN Ninja Academy</a><a class=\"dropdown-item text-white text-primary\" href=\"index.html#extHeader26-18\" data-app-selector=\".nav-link,.dropdown-item\" data-app-placeholder=\"Type Text\">About Chris Marquardt</a><a class=\"dropdown-item text-white text-primary\" href=\"index.html#testimonials3-f\" data-app-selector=\".nav-link,.dropdown-item\" data-app-placeholder=\"Type Text\">About Steve Seguin</a></div></li><li class=\"nav-item dropdown\"><a class=\"nav-link link text-white dropdown-toggle\" href=\"#\" data-app-selector=\".nav-link,.dropdown-item\" data-app-placeholder=\"Type Text\" data-toggle=\"dropdown-submenu\" aria-expanded=\"true\">OBS Ninja</a><div class=\"dropdown-menu\"><a class=\"text-white dropdown-item text-primary\" href=\"index.html#content4-2f\" data-app-selector=\".nav-link,.dropdown-item\" data-app-placeholder=\"Type Text\">OBS Ninja Features</a></div></li><li class=\"nav-item\"><a class=\"nav-link link text-white text-primary\" href=\"index.html#extAccordion4-13\" data-app-selector=\".nav-link,.dropdown-item\" data-app-placeholder=\"Type Text\" aria-expanded=\"false\">FAQ</a></li><li class=\"nav-item\"><a class=\"nav-link link text-white text-primary\" href=\"index.html#contacts2-1d\" data-app-selector=\".nav-link,.dropdown-item\" data-app-placeholder=\"Type Text\" aria-expanded=\"false\">Contact</a></li></ul>\n <div class=\"icons-menu\" mbr-if=\"showIcons\">\n <a class=\"iconfont-wrapper\" href=\"https://mobiri.se\" target=\"_blank\">\n <span mbr-icon class=\"p-2 mbr-iconfont socicon-facebook socicon\"></span>\n </a>\n <a class=\"iconfont-wrapper\" href=\"https://mobiri.se\" target=\"_blank\" mbr-if=\"iconsAmount > 1\">\n <span mbr-icon class=\"p-2 mbr-iconfont socicon-twitter socicon\"></span>\n </a>\n <a class=\"iconfont-wrapper\" href=\"https://mobiri.se\" target=\"_blank\" mbr-if=\"iconsAmount > 2\">\n <span mbr-icon class=\"p-2 mbr-iconfont socicon-instagram socicon\"></span>\n </a>\n <a class=\"iconfont-wrapper\" href=\"https://mobiri.se\" target=\"_blank\" mbr-if=\"iconsAmount > 3\">\n <span mbr-icon class=\"p-2 mbr-iconfont socicon-linkedin socicon\"></span>\n </a>\n </div>\n <div mbr-if=\"showButtons\" mbr-buttons mbr-theme-style=\"display-4\" class=\"navbar-buttons mbr-section-btn\"><a class=\"btn btn-primary\" href=\"index.html#contacts2-1d\" data-app-placeholder=\"Type Text\">\n GET IN TOUCH</a></div>\n </div>\n </div>\n </nav>\n</section>",
"_cid": "sdBWsfma5W",
"_anchor": "menu2-d",
"_protectedParams": [],
"_global": true,
"_once": "menu",
"_params": {}
},
{
"alias": "mobirise4-blocks/components",
"_isSecondary": true,
"typeCompatible": "type",
"_styles": {
"& 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-section-title,.mbr-section-subtitle": {
"color": "#000000"
},
".mbr-section-text": {
"color": "#232323"
},
".mbr-text,.typed-text,.mbr-section-text": {
"letter-spacing": "0.03rem"
},
".btn": {
"margin-left": "4px !important"
},
".animated-element": {
"color": "@wordsColor"
},
".typed-cursor": {
"opacity": "1",
"-webkit-animation": "blink 0.7s infinite",
"-moz-animation": "blink 0.7s infinite",
"animation": "blink 0.7s infinite",
"color": "@wordsColor"
},
".mbr-figure": {
"border-radius": ".25rem",
"overflow": "hidden"
},
"@media (max-width: 767px)": {
".typed-text,.mbr-section-subtitle, .mbr-section-text,.mbr-section-btn": {
"text-align": "center !important"
}
},
"@keyframes blink": {
"0%": {
"opacity": "1"
},
"50%": {
"opacity": "0"
},
"100%": {
"opacity": "1"
}
},
"@-webkit-keyframes blink": {
"0%": {
"opacity": "1"
},
"50%": {
"opacity": "0"
},
"100%": {
"opacity": "1"
}
},
"@-moz-keyframes blink": {
"0%": {
"opacity": "1"
},
"50%": {
"opacity": "0"
},
"100%": {
"opacity": "1"
}
},
".mbr-section-subtitle, .typed-text": {
"color": "#ffffff"
},
".mbr-section-text,.mbr-section-btn": {
"color": "#ffffff"
}
},
"_name": "extHeader13",
"_sourceTheme": "mobirise5",
"_customHTML": "<section class=\"extHeader\" group=\"Additional Blocks\" plugins=\"Typed\" data-bg-video=\"{{bg.type == 'video'&&bg.value.url}}\" mbr-class=\"{'mbr-fullscreen': fullScreen,\n 'mbr-parallax-background': bg.parallax}\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"checkbox\" title=\"Full Screen\" name=\"fullScreen\">\n <input type=\"checkbox\" title=\"Show Arrow\" name=\"showArrow\" condition=\"fullScreen\">\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"8\" condition=\"fullScreen == false\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"4\" condition=\"fullScreen == false\">\n <!-- <input type=\"checkbox\" title=\"Show Title\" name=\"showTitle\" checked> -->\n <input type=\"checkbox\" title=\"Show Subtitle\" name=\"showSubtitle\" checked>\n <input type=\"checkbox\" title=\"Show Animated Text\" name=\"showAnimatedText\" checked>\n <input type=\"checkbox\" title=\"Show Text\" name=\"showText\" checked>\n <input type=\"checkbox\" title=\"Show Buttons\" name=\"showButtons\" checked>\n <input type=\"checkbox\" title=\"Reverse Content\" name=\"reverseContent\">\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" value=\"../_images/background1.jpg\" title=\"Background Image\" selected>\n <input type=\"color\" value=\"#ffffff\" title=\"Background Color\">\n <input type=\"video\" value=\"https://youtu.be/iM-NestDPNQ\" title=\"Background Video\">\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=\"#5679b9\" condition=\"overlay&&bg.type !== 'color'\">\n <input type=\"range\" inline title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.8\" condition=\"overlay&&bg.type !== 'color'\">\n <header codition=\"showSubtitle&&showAnimatedText\">Animated Text Settings</header>\n <select title=\"Words Title\" name=\"wordsTitle\" condition=\"showSubtitle&&showAnimatedText\">\n <option value=\"title1\">Title 1</option>\n <option value=\"title2\" selected>Title 2</option>\n <option value=\"title3\">Title 3</option>\n <option value=\"text\">Text</option>\n <option value=\"menu\">Menu</option>\n </select>\n <input type=\"color\" title=\"Words Color\" name=\"wordsColor\" value=\"#ffb963\" condition=\"showSubtitle&&showAnimatedText\">\n <input type=\"range\" inline title=\"Type Speed\" name=\"typeSpeed\" min=\"1\" max=\"100\" value=\"100\" step=\"1\" condition=\"showSubtitle&&showAnimatedText\">\n <input type=\"range\" inline title=\"Words Count\" name=\"wordsCount\" min=\"2\" max=\"5\" value=\"3\" step=\"1\" condition=\"showSubtitle&&showAnimatedText\">\n <input type=\"text\" title=\"Word 1\" inline name=\"animatedWord1\" value=\"audio\" condition=\"showSubtitle&&showAnimatedText\">\n <input type=\"text\" title=\"Word 2\" inline name=\"animatedWord2\" value=\"video\" condition=\"showSubtitle&&showAnimatedText\">\n <input type=\"text\" title=\"Word 3\" inline name=\"animatedWord3\" value=\"podcasts\" condition=\"showSubtitle&&showAnimatedText&&wordsCount > 2\">\n <input type=\"text\" title=\"Word 4\" inline name=\"animatedWord4\" value=\"Lorem\" condition=\"showSubtitle&&showAnimatedText&&wordsCount > 3\">\n <input type=\"text\" title=\"Word 5\" inline name=\"animatedWord5\" value=\"Ipsum\" condition=\"showSubtitle&&showAnimatedText&&wordsCount > 4\">\n <!-- End block parameters -->\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 class=\"container\">\n <div class=\"row justify-content-center align-items-center\">\n <div class=\"mbr-white col-md-12 col-lg-6 py-lg-0\" mbr-class=\"{'pt-4 order-2':reverseContent, 'pb-4':!reverseContent}\">\n <div class=\"typed-text pb-3 align-left\" mbr-class=\"{'display-1':wordsTitle=='title1','display-2':wordsTitle=='title2',\n 'display-5':wordsTitle=='title3','display-7':wordsTitle=='text',\n 'display-4':wordsTitle=='menu'}\" mbr-if=\"showSubtitle\">\n <span mbr-text class=\"mbr-section-subtitle mbr-fonts-style\" mbr-theme-style=\"display-2\" data-app-selector=\".mbr-section-subtitle, .typed-text\">Supercharge<br>your remote <br></span>\n <span mbr-if=\"showAnimatedText\">\n <span class=\"animated-element mbr-bold\" data-word1=\"{{animatedWord1}}\" data-word2=\"{{animatedWord2}}\" data-word3=\"{{animatedWord3}}\" data-word4=\"{{animatedWord4}}\" data-word5=\"{{animatedWord5}}\" data-speed=\"{{typeSpeed}}\" data-words=\"{{wordsCount}}\">\n </span>\n </span>\n </div>\n <p class=\"mbr-section-text mbr-fonts-style align-left\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-section-text,.mbr-section-btn\"><b>No plugin, no installation, no login.</b> You can even use it to turn your phone into a remote camera. <b>For free.</b><br><b><br>|| minimal latency ||<br>|| high video quality || <br>|| studio-quality audio ||</b><br><br>We provide consulting and training for OBS Ninja. OBS Ninja is a free system that lets you add remote guests to your audio and podcast productions.<br></p>\n <div mbr-buttons mbr-theme-style=\"display-4\" data-toolbar=\"-mbrBtnMove\" mbr-if=\"showButtons\" class=\"pt-3 mbr-section-btn align-left\"><a class=\"btn btn-md btn-primary\" type=\"submit\" data-app-placeholder=\"Type Text\" href=\"index.html#content4-h\">LEARN MORE</a></div>\n </div>\n <div class=\"col-lg-6 py-lg-0\" mbr-class=\"{'pb-2':reverseContent, 'pt-2':!reverseContent}\">\n <div class=\"mbr-figure\">\n <img src=\"@PROJECT_PATH@/assets/images/obsn-opener.gif\" alt=\"Mobirise\" title>\n </div>\n </div>\n </div>\n </div>\n <div mbr-if=\"showArrow&&fullScreen\" class=\"mbr-arrow hidden-sm-down\" aria-hidden=\"true\">\n <a href=\"#next\">\n <i class=\"mbri-down mbr-iconfont\"></i>\n </a>\n </div>\n</section>",
"_cid": "sfbGhXIHfC",
"_anchor": "extHeader13-2n",
"_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)"
}
},
"_name": "content4",
"_sourceTheme": "mobirise5",
"_customHTML": "<section class=\"content4\" group=\"Content\" data-bg-video=\"{{bg.type == 'video'&&bg.value.url}}\" mbr-class=\"{\n '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=\"7\" condition=\"fullScreen == false\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"10\" step=\"1\" value=\"0\" condition=\"fullScreen == false\">\n <input type=\"range\" name=\"textWidth\" title=\"Width\" min=\"4\" max=\"12\" step=\"1\" value=\"10\">\n <header>Show/Hide</header>\n <input type=\"checkbox\" title=\"Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Subtitle\" name=\"showSubtitle\" 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/obsnacademy_header_bg-2000x2000.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.4\" 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=\"row justify-content-center\">\n <div class=\"title col-md-12 col-lg-{{textWidth}}\">\n <h3 class=\"mbr-section-title mbr-fonts-style align-center mb-4\" mbr-if=\"showTitle\" data-app-selector=\".mbr-section-title\" mbr-theme-style=\"display-2\">\n <b>So you want to add remote guests...</b></h3>\n <h4 class=\"mbr-section-subtitle align-center mbr-fonts-style mb-4\" mbr-if=\"showSubtitle\" data-app-selector=\".mbr-section-subtitle\" mbr-theme-style=\"display-5\">\n ...with exceptional production value.<br><br>Skype or Zoom have their place. But the one thing they lack is control over quality and flexibility for your production.<br><br>OBS Ninja gives you both!<br><br>(However, there's a learning curve)<br><br>Our mission is to get you started with OBS Ninja and empower you to make amazing audio and video productions with remote guests.<br><br>And with <i>we</i>, I mean <i>I</i>.<br><br></h4>\n <div class=\"mbr-section-btn align-center\" mbr-if=\"showButtons\" mbr-buttons mbr-theme-style=\"display-4\">\n <a class=\"btn btn-primary\" href=\"https://mobiri.se\">LEARN MORE</a>\n <a class=\"btn btn-primary-outline\" href=\"https://mobiri.se\">LIVE DEMO</a>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "sdC8BAfYZ1",
"_anchor": "content4-h",
"_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)"
},
".carousel-item": {
"justify-content": "center"
},
".carousel-item.active, .carousel-item-next, .carousel-item-prev": {
"display": "flex"
},
".carousel-controls": {
"a": {
"transition": "opacity .5s",
"font-size": "30px",
"position": "absolute",
"top": "180px",
"bottom": "auto",
"height": "60px",
"width": "60px",
"padding": "10px",
"color": "#155ce0",
".mbr-iconfont": {
"font-weight": "800"
}
}
},
".carousel-control-next": {
"span": {
"padding-left": "5px"
}
},
".carousel-control-prev": {
"span": {
"padding-right": "5px"
}
},
".user_image": {
"width": "200px",
"height": "200px",
"margin-bottom": "1.6rem",
"overflow": "hidden",
"border-radius": "50%",
"margin": "0 auto 2rem auto",
"img": {
"width": "100%",
"min-width": "100%",
"min-height": "100%"
}
},
"@media (max-width: 230px)": {
".user_image": {
"width": "100%",
"height": "auto"
}
}
},
"_name": "testimonials3",
"_sourceTheme": "mobirise5",
"_customHTML": "<section class=\"testimonails3 carousel slide testimonials-slider\" group=\"Testimonials\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{'mbr-parallax-background': bg.parallax}\" plugins=\"BootstrapCarouselSwipe,mbr-testimonials-slider\" data-interval=\"false\">\n\n <mbr-parameters>\n <header>Size</header>\n <input type=\"checkbox\" name=\"fullWidth\" title=\"Full Width\" checked>\n <input type=\"range\" title=\"Padding Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"6\" inline>\n <input type=\"range\" title=\"Padding Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"6\" inline>\n <header>Show/Hide</header>\n <input type=\"checkbox\" title=\"Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Author Name\" name=\"showName\">\n <input type=\"checkbox\" title=\"Author Title\" name=\"showDesk\">\n <header>Slides</header>\n <input type=\"range\" inline title=\"Items\" name=\"testimonialsSlides\" min=\"1\" max=\"20\" step=\"1\" value=\"1\">\n <input type=\"checkbox\" title=\"Autoplay\" name=\"showAutoplay\">\n <input type=\"range\" inline title=\"Interval\" name=\"interval\" min=\"1\" max=\"8\" step=\"1\" value=\"5000\" condition=\"showAutoplay\">\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.9\" 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 class=\"text-center\" mbr-class=\"{'container': !fullWidth, 'container-fluid': fullWidth}\">\n <h3 class=\"mb-4 mbr-fonts-style\" mbr-theme-style=\"display-2\" mbr-if=\"showTitle\">\n <b>Hi, I'm Chris Marquardt</b></h3>\n\n <div class=\"carousel slide\" role=\"listbox\" data-pause=\"true\" data-keyboard=\"false\" data-ride=\"{{showAutoplay ? 'carousel' : 'false'}}\" data-interval=\"{{showAutoplay ? interval*1000 : 'false'}}\">\n <div mbr-list mbr-list-grow=\"testimonialsSlides\" class=\"carousel-inner\">\n <div class=\"carousel-item\">\n <div class=\"user col-md-8\">\n <div class=\"user_image\">\n <img src=\"@PROJECT_PATH@/assets/images/chrismarquardt-1200x1200-400x400.jpg\" alt>\n </div>\n <div class=\"user_text mb-4\">\n <p class=\"mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".user_text\">I offer 30 years of <b>audio production</b> experience, 25 years of a deep understanding of the <b>internet</b>, 15 years of <b>training</b> thousands of students, 16 years (and 3000+ episodes) of <b>podcasting </b>and extensive <b>local and remote production </b>knowledge.</p>\n </div>\n <div mbr-text class=\"user_name mbr-fonts-style mb-2\" mbr-theme-style=\"display-7\" mbr-if=\"showName\" data-app-selector=\".user_name\">\n <b>Alexa</b>\n </div>\n <div mbr-text class=\"user_desk mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showDesk\" data-app-selector=\".user_desk\">\n DESIGNER\n </div>\n </div>\n </div>\n \n </div>\n\n <div class=\"carousel-controls\">\n <a class=\"carousel-control-prev\" role=\"button\" data-slide=\"prev\">\n <span aria-hidden=\"true\" class=\"mobi-mbri mobi-mbri-arrow-prev mbr-iconfont\"></span>\n <span class=\"sr-only\">Previous</span>\n </a>\n\n <a class=\"carousel-control-next\" role=\"button\" data-slide=\"next\">\n <span aria-hidden=\"true\" class=\"mobi-mbri mobi-mbri-arrow-next mbr-iconfont\"></span>\n <span class=\"sr-only\">Next</span>\n </a>\n </div>\n </div>\n </div>\n</section>",
"_cid": "seOGsepXJl",
"_anchor": "testimonials3-17",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": "mobirise4-blocks/components",
"_isSecondary": true,
"typeCompatible": "type",
"_styles": {
"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)"
},
"h4": {
"display": "flex",
"color": "#232323"
},
".panel-text": {
"color": "#767676",
"line-height": "1.7"
},
".wrap": {
"display": "flex"
},
".icon": {
"background": "@icon",
"min-width": "33px",
"min-height": "33px",
"border-radius": "100%",
"color": "white!important",
"display": "flex",
"-webkit-justify-content": "center",
"justify-content": "center",
"-webkit-align-items": "center",
"align-items": "center",
"font-weight": "900"
},
"img": {
"max-width": "600px",
"width": "100%",
"margin": "auto",
"padding": "2rem"
},
".mbr-section-title": {
"color": "#ffffff",
"text-align": "center"
},
"p": {
"margin": "0"
},
".card .card-header a.panel-title": {
"background-color": "transparent!important",
"margin-top": "0px!important"
},
".mbr-section-subtitle": {
"font-weight": "500",
"color": "#656565",
"text-align": "center"
},
".accordion-content": {
"-webkit-flex-basis": "100%",
"flex-basis": "100%"
},
".panel-group": {
"width": "100%"
},
".panel-title": {
"border-bottom": "1px solid @borderColor",
"border-radius": "0px",
"margin-bottom": ".5rem"
},
".card": {
".card-header": {
"border-radius": "0px",
"border": "0px",
"padding": "0",
"a.panel-title": {
"transition": "all .3s",
"background-color": "@accordionColor",
"margin-bottom": "0",
"font-style": "normal",
"font-weight": "500",
"display": "flex",
"-webkit-align-items": "center",
"align-items": "center",
"text-decoration": "none !important",
"margin-top": "-1px",
"line-height": "normal",
"&:hover": {
"opacity": "0.5"
},
"&:focus": {
"text-decoration": "none !important"
},
"h4": {
"padding": "1.5rem 1rem",
"margin-bottom": "0"
}
}
},
".panel-body": {
"background": "@panelColor"
}
},
".media-container-row": {
".accordion-section": {
"display": "flex",
"-webkit-align-items": "center",
"align-items": "center",
"-webkit-justify-content": "center",
"justify-content": "center"
}
},
"@media (max-width: 991px)": {
".media-container-row": {
"> div": {
"-webkit-flex": "0 0 100%",
"flex": "0 0 100%",
"max-width": "100%"
}
},
".mbr-figure": {
"padding-right": "0",
"padding-left": "0",
"padding-top": "2rem"
}
},
".header-text, .sign": {
"color": "#ffffff"
}
},
"_name": "extAccordion4",
"_sourceTheme": "mobirise5",
"_customHTML": "<section class=\"extAccordion\" group=\"Additional Blocks\" data-bg-video=\"{{bg.type == 'video'&&bg.value.url}}\" mbr-class=\"{'mbr-parallax-background':bg.parallax}\" plugins=\"mbr-switch-arrow\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"9\" step=\"1\" value=\"9\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"9\" step=\"1\" value=\"9\">\n <select title=\"Accordions\" name=\"bootstrapAccordion\">\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\" selected>5</option>\n <option value=\"6\">6</option>\n </select>\n <header>Show/Hide</header>\n <input type=\"checkbox\" title=\"Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Sub Title\" name=\"showSubtitle\">\n <header>Colors</header>\n <input type=\"color\" title=\"Accordion\" name=\"accordionColor\" value=\"#fafafa\">\n <input type=\"color\" title=\"Panel\" name=\"panelColor\" value=\"#efefef\">\n <input type=\"color\" title=\"Border\" name=\"borderColor\" value=\"#efefef\">\n <input type=\"color\" title=\"Icon\" name=\"icon\" value=\"#232323\">\n\n <header>Background</header>\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" value=\"../_images/background1.jpg\" title=\"Image\">\n <input type=\"color\" value=\"#517484\" title=\"Color\" selected>\n <input type=\"video\" value=\"https://www.youtube.com/watch?v=JPe2mwq96cw\" title=\"Video\">\n </fieldset>\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" condition=\"bg.type !== 'color'\" checked>\n <input type=\"color\" title=\"Color\" name=\"overlayColor\" value=\"#656565\" condition=\"overlay&&bg.type !== 'color'\">\n <input type=\"range\" inline title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.6\" condition=\"overlay&&bg.type !== 'color'\">\n <!-- End block parameters -->\n </mbr-parameters>\n\n\n <div class=\"mbr-overlay\" mbr-if=\"overlay&&bg.type!== 'color'\" mbr-style=\"{'opacity': overlayOpacity, 'background-color': overlayColor}\">\n </div>\n <div class=\"container\">\n <div class=\"row justify-content-center\">\n <div class=\"col-md-10\">\n <h2 class=\"mbr-section-title align-center mbr-fonts-style mbr-bold\" mbr-theme-style=\"display-2\" mbr-if=\"showTitle\" data-app-selector=\".mbr-section-title\">Questions and Answers</h2>\n <h3 class=\"mbr-section-subtitle pt-2 align-center mbr-light mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showSubtitle\" data-app-selector=\".mbr-section-subtitle\">Lorem ipsum dolor sit amet, consectetur adipisicing elit.</h3>\n </div>\n </div>\n <div class=\"row pt-3 justify-content-center\">\n <div class=\"col-md-10 accordion-section\">\n <div class=\"accordion-content\">\n\n <div id=\"bootstrap-accordion\" class=\"panel-group accordionStyles accordion \" role=\"tablist\" aria-multiselectable=\"true\">\n <div class=\"card\">\n <div class=\"card-header\" role=\"tab\" id=\"headingOne\">\n\n <a role=\"button\" class=\"collapsed panel-title\" data-toggle=\"collapse\" data-core href=\"#collapse1\" aria-expanded=\"false\" aria-controls=\"collapse1\">\n <span class=\"sign mbr-iconfont icon mbri-arrow-next inactive\"></span>\n <div class=\"wrap\">\n <h4 class=\"mbr-fonts-style header-text mbr-bold\" mbr-theme-style=\"display-7\" data-app-selector=\".header-text, .sign\">Who are you and why should I talk to you?</h4>\n </div>\n\n </a>\n </div>\n <div id=\"collapse1\" class=\"panel-collapse noScroll collapse\" role=\"tabpanel\" aria-labelledby=\"headingOne\" data-parent=\"#accordion\">\n <div class=\"panel-body p-4\">\n <p class=\"mbr-fonts-style panel-text\" mbr-theme-style=\"display-4\" data-app-selector=\".panel-text\">I'm Chris, I'm German. I come from <b>background of professional audio production</b> and <b>photography</b>. My forming years were in the 1980s, a time where the analog and digital worlds began to merge. In 2009, I became an early YouTuber, years before that was even a thing. I have produced video ever since.<br><br>I'm the <b>author</b> of the Wide-Angle Photography book and co-author of the Film Photography Handbook. I have <b>taught tech, photography and videography for over 20 years and to thousands of students</b>.<br><br>I also <b>host and produce</b> some of the longest-running podcasts going back to early 2005. These include Photography Tips from the Top Floor and Happy Shooting, and also expand into more recent productions like The Future of Photography and Curiously Polar. Every week I teach photography to an <b>audience of over a million</b> on the US-wide syndicated Tech Guy Radio Show. You could rightfully call me a bit of an audio/video nerd with a knack for making people go \"AHA!\"<br><br>As a response to the 2020 SARS-Cov2 pandemic, I started to add <b>remote (and live) components</b> to many of my regular podcasts. OBS Ninja has become an indispensable tool to enable <b>remote guest participation</b> on a level that wasn't possible until now. <b>High-quality remote productions</b> that we could only dream of just months ago are now at your fingertips.<br><br>After a six-month deep dive, I now speak OBS Ninja fluidly, blindfolded and on Windows and Mac. And I'd love to share this knowledgeable with you.<br><br>My goal is to empower you, to up your remote video production game and see you rise right above the crowd of low-quality bad-audio remote video.</p>\n </div>\n </div>\n </div>\n\n <div class=\"card\" mbr-if=\"bootstrapAccordion > 1\">\n <div class=\"card-header\" role=\"tab\" id=\"headingTwo\">\n <a role=\"button\" class=\"collapsed panel-title\" data-toggle=\"collapse\" data-core href=\"#collapse2\" aria-expanded=\"false\" aria-controls=\"collapse1\">\n <span class=\"sign mbr-iconfont icon mbri-arrow-next inactive\"></span>\n <div class=\"wrap\">\n <h4 class=\"mbr-fonts-style header-text mbr-bold\" mbr-theme-style=\"display-7\" data-app-selector=\".header-text, .sign\">What can I expect from you?</h4>\n\n </div>\n\n </a>\n </div>\n <div id=\"collapse2\" class=\"panel-collapse noScroll collapse\" role=\"tabpanel\" aria-labelledby=\"headingTwo\" data-parent=\"#accordion\">\n <div class=\"panel-body p-4\">\n\n <p class=\"mbr-fonts-style panel-text\" mbr-theme-style=\"display-4\" data-app-selector=\".panel-text\">I have 15 years of professional IT industry experience and 30 years of general production experience. I have a strong understanding of communications in the context of small to mid-size projects and decades of background in teaching.<br><br>You will learn from me how to take your production up several notches by using some of today's most <b>cutting-edge technology</b>.<br><br>I will quickly understand your needs and provide you with suggestions on how to realize your project so you can stay in budget and within your deadlines. This includes <b>suggestions for resources, technology and workflow</b>. My expertise also extends into the creative side of things. I'm a photographer at heart and <b>design and composition are very near to me</b>, both for processes and for the audiovisual side of things.<br><br>I will also provide training for the tools and processes that you need to establish throughout your project.<br><br>If additional resources are needed, I will tap into my network for you.</p>\n </div>\n </div>\n </div>\n\n <div class=\"card\" mbr-if=\"bootstrapAccordion > 2\">\n <div class=\"card-header\" role=\"tab\" id=\"headingThree\">\n <a role=\"button\" class=\"collapsed panel-title\" data-toggle=\"collapse\" data-core href=\"#collapse3\" aria-expanded=\"false\" aria-controls=\"collapse1\">\n <span class=\"sign mbr-iconfont icon mbri-arrow-next inactive\"></span>\n <div class=\"wrap\">\n <h4 class=\"mbr-fonts-style header-text mbr-bold\" mbr-theme-style=\"display-7\" data-app-selector=\".header-text, .sign\">Why OBS Ninja?</h4>\n\n </div>\n\n </a>\n </div>\n <div id=\"collapse3\" class=\"panel-collapse noScroll collapse\" role=\"tabpanel\" aria-labelledby=\"headingThree\" data-parent=\"#accordion\">\n <div class=\"panel-body p-4\">\n\n <p class=\"mbr-fonts-style panel-text\" mbr-theme-style=\"display-4\" data-app-selector=\".panel-text\">OBS Ninja is a remote audio and video Swiss Army Knife and nothing else can match it right now.<br><br>It's a truly enabling technology.<br><br>And it's free. (We can thank <a href=\"index.html#testimonials3-f\" class=\"text-primary\">Steve Seguin</a> for that)<br><br>OBS Ninja enables remote productions without expensive hardware and at a quality level that goes far beyond what today's remote conferencing systems like Zoom or Skype can offer.<br><br>OBS Ninja builds on the open WebRTC standard, which, thanks to its point-to-point nature, is very different from the usual suspects and makes low-latency video communication a reality.<br><br>And all you need is a web browser.<br><br>» <a href=\"index.html#extFeatures5-2c\" class=\"text-primary\">more about why OBS Ninja is awesome</a></p>\n </div>\n </div>\n </div>\n\n <div class=\"card\" mbr-if=\"bootstrapAccordion > 3\">\n <div class=\"card-header\" role=\"tab\" id=\"headingFour\">\n <a role=\"button\" class=\"collapsed panel-title\" data-toggle=\"collapse\" data-core href=\"#collapse4\" aria-expanded=\"false\" aria-controls=\"collapse1\">\n <span class=\"sign mbr-iconfont icon mbri-arrow-next inactive\"></span>\n <div class=\"wrap\">\n <h4 class=\"mbr-fonts-style header-text mbr-bold\" mbr-theme-style=\"display-7\" data-app-selector=\".header-text, .sign\">How does this relate to OBS?</h4>\n\n </div>\n\n </a>\n </div>\n <div id=\"collapse4\" class=\"panel-collapse noScroll collapse\" role=\"tabpanel\" aria-labelledby=\"headingFour\" data-parent=\"#accordion\">\n <div class=\"panel-body p-4\">\n\n <p class=\"mbr-fonts-style panel-text\" mbr-theme-style=\"display-4\" data-app-selector=\".panel-text\">\n OBS Ninja and the OBS software video switcher are not affiliated. OBS Ninja makes it easy to include remote video sources in OBS video switcher. Thus the name. As OBS Ninja is browser-based, it can be used with other video switchers, such as vMix. Or without a video switcher at all.</p>\n </div>\n </div>\n </div>\n\n <div class=\"card\" mbr-if=\"bootstrapAccordion > 4\">\n <div class=\"card-header\" role=\"tab\" id=\"headingFive\">\n <a role=\"button\" class=\"collapsed panel-title\" data-toggle=\"collapse\" data-core href=\"#collapse5\" aria-expanded=\"false\" aria-controls=\"collapse5\">\n <span class=\"sign mbr-iconfont icon mbri-arrow-next inactive\"></span>\n <div class=\"wrap\">\n <h4 class=\"mbr-fonts-style header-text mbr-bold\" mbr-theme-style=\"display-7\" data-app-selector=\".header-text, .sign\">Can I use OBS Ninja for my audio podcast?</h4>\n\n </div>\n\n </a>\n </div>\n <div id=\"collapse5\" class=\"panel-collapse noScroll collapse\" role=\"tabpanel\" aria-labelledby=\"headingFive\" data-parent=\"#accordion\">\n <div class=\"panel-body p-4\">\n\n <p class=\"mbr-fonts-style panel-text\" mbr-theme-style=\"display-4\" data-app-selector=\".panel-text\">\n Yes. OBS Ninja combines <b>low latency</b> (important for fluid conversations without stumbling over each other's words) with <b>studio-quality audio</b> where you can record each participant onto a separate audio track (ISO recordings).<br><br>Yes, you get to record individual tracks at really good quality while OBS Ninja takes care of the complicated N-1 stuff so everybody only gets to hear the others without hearing themselves.<br><br>Your next remote one/two/three/four-person roundtable recording will sound as if everyone is in the same room.<br><br>And as a benefit, you can still see each other during the recording.</p>\n </div>\n </div>\n </div>\n\n <div class=\"card\" mbr-if=\"bootstrapAccordion > 5\">\n <div class=\"card-header\" role=\"tab\" id=\"headingSix\">\n <a role=\"button\" class=\"collapsed panel-title\" data-toggle=\"collapse\" data-core href=\"#collapse6\" aria-expanded=\"false\" aria-controls=\"collapse6\">\n <span class=\"sign mbr-iconfont icon mbri-arrow-next inactive\"></span>\n <div class=\"wrap\">\n <h4 class=\"mbr-fonts-style header-text mbr-bold\" mbr-theme-style=\"display-7\" data-app-selector=\".header-text, .sign\">Best Price Guarantee</h4>\n\n </div>\n\n </a>\n </div>\n <div id=\"collapse6\" class=\"panel-collapse noScroll collapse\" role=\"tabpanel\" aria-labelledby=\"headingSix\" data-parent=\"#accordion\">\n <div class=\"panel-body p-4\">\n\n <p class=\"mbr-fonts-style panel-text\" mbr-theme-style=\"display-4\" data-app-selector=\".panel-text\">\n Lorem ipsum dolor sit amet, consectetur adipisicing elit. Debitis quisquam hic minima officiis labore. Autem iste maiores,\n impedit quasi, incidunt voluptatibus nihil a animi iure odio, inventore reprehenderit\n nobis architecto!</p>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n\n </div>\n </div>\n</section>",
"_cid": "seOEATGGg6",
"_anchor": "extAccordion4-13",
"_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)"
}
},
"_name": "content4",
"_sourceTheme": "mobirise5",
"_customHTML": "<section class=\"content4\" group=\"Content\" data-bg-video=\"{{bg.type == 'video'&&bg.value.url}}\" mbr-class=\"{\n '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=\"9\" condition=\"fullScreen == false\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"10\" step=\"1\" value=\"0\" condition=\"fullScreen == false\">\n <input type=\"range\" name=\"textWidth\" title=\"Width\" min=\"4\" max=\"12\" step=\"1\" value=\"10\">\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=\"Buttons\" name=\"showButtons\">\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 <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=\"title col-md-12 col-lg-{{textWidth}}\">\n <h3 class=\"mbr-section-title mbr-fonts-style align-center mb-4\" mbr-if=\"showTitle\" data-app-selector=\".mbr-section-title\" mbr-theme-style=\"display-2\"><b>OBS Ninja Features</b></h3>\n <h4 class=\"mbr-section-subtitle align-center mbr-fonts-style mb-4\" mbr-if=\"showSubtitle\" data-app-selector=\".mbr-section-subtitle\" mbr-theme-style=\"display-5\">\n You can arrange your articles with the Mobirise website design software.\n </h4>\n <div class=\"mbr-section-btn align-center\" mbr-if=\"showButtons\" mbr-buttons mbr-theme-style=\"display-4\">\n <a class=\"btn btn-primary\" href=\"https://mobiri.se\">LEARN MORE</a>\n <a class=\"btn btn-primary-outline\" href=\"https://mobiri.se\">LIVE DEMO</a>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "seUZ7qypfd",
"_anchor": "content4-2f",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": "mobirise4-blocks/components",
"_isSecondary": true,
"typeCompatible": "type",
"_styles": {
"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)"
},
".card": {
"-webkit-flex-direction": "row",
"flex-direction": "row",
"-webkit-justify-content": "center",
"justify-content": "center",
".card-img": {
"width": "20%",
"display": "flex",
"-webkit-flex-direction": "column",
"flex-direction": "column"
},
".card-box": {
"display": "flex",
"-webkit-flex-direction": "column",
"flex-direction": "column",
"& when (@showIcons)": {
"width": "80%",
"padding-left": "1rem"
}
},
".card-img span": {
"color": "@iconsColor",
"font-size": "60px"
}
},
"& when not (@showText) and not (@showLinks)": {
".card-title": {
"margin": "0"
},
".card-img, .card-box": {
"-webkit-justify-content": "center",
"justify-content": "center"
}
},
".mbr-text": {
"color": "#767676"
},
"@media (max-width: 767px)": {
".card": {
"-webkit-flex-direction": "column",
"flex-direction": "column",
".card-img": {
"width": "100%",
"padding-bottom": "1.5rem"
},
".card-box": {
"width": "100%",
"padding-left": "0",
".card-title, .mbr-text, .link": {
"text-align": "center"
}
}
}
},
"@media (min-width: 768px)": {
".card": {
"padding-right": "2rem",
"padding-left": "2rem",
".card-img": {
"text-align": "right !important"
}
}
}
},
"_name": "extFeatures5",
"_sourceTheme": "mobirise5",
"_customHTML": "<section class=\"extFeatures\" group=\"Features\" data-bg-video=\"{{bg.type == 'video'&&bg.value.url}}\" mbr-class=\"{'mbr-parallax-background': bg.parallax}\">\n \n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"9\" step=\"1\" value=\"6\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"9\" step=\"1\" value=\"0\">\n <input type=\"checkbox\" title=\"Show Icons\" name=\"showIcons\" checked>\n <input type=\"checkbox\" title=\"Show Title\" name=\"showTitle\">\n <input type=\"checkbox\" title=\"Show Text\" name=\"showText\" checked>\n <input type=\"checkbox\" title=\"Show Links\" name=\"showLinks\">\n <input type=\"color\" title=\"Icons Color\" name=\"iconsColor\" value=\"#767676\">\n <input type=\"range\" inline title=\"Cards Count\" name=\"cardsAmount\" min=\"1\" max=\"6\" step=\"1\" value=\"4\">\n\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Background Image\" value=\"../_images/background3.jpg\" parallax>\n <input type=\"color\" title=\"Background Color\" value=\"#ffffff\" selected>\n <input type=\"video\" title=\"Background Video\" value=\"https://www.youtube.com/watch?v=2jqUN6d6ZyM\">\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=\"#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 <!-- End block parameters -->\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 class=\"container\">\n <div class=\"row justify-content-center\">\n <div class=\"card pb-5 col-12 col-md-10\" mbr-class=\"{'col-lg-5': cardsAmount < 3 || cardsAmount == 4,\n 'col-lg-4': cardsAmount == 3 || cardsAmount > 4}\">\n <div class=\"card-img\" mbr-if=\"showIcons\">\n <span mbr-icon class=\"mbr-iconfont icon54-v2-speach-bubbles-7\"></span>\n </div>\n <div class=\"card-box\" mbr-if=\"showTitle || showText || showLinks\">\n <h4 class=\"card-title mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showTitle\" data-app-selector=\".card-title, .card-img\">\n Fantastic Restaurant\n </h4>\n <p class=\"mbr-text mbr-fonts-style mbr-lighter\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text, .link\"><b>\n No more talking over each other.</b> OBS Ninja lets you include video from remote guests at stunningly low latencies (no more seconds wait time and stumbling over each other's words)\n </p>\n <div class=\"link mbr-fonts-style\" mbr-text mbr-theme-style=\"display-4\" mbr-if=\"showLinks\" data-app-selector=\".link\">\n <a href=\"https://mobirise.com/\" class=\"text-black\"><b>READ MORE</b></a>\n </div>\n </div>\n </div>\n\n <div class=\"card pb-5 col-12 col-md-10\" mbr-class=\"{'col-lg-5': cardsAmount < 3 || cardsAmount == 4,\n 'col-lg-4': cardsAmount == 3 || cardsAmount > 4}\" mbr-if=\"cardsAmount >= 2\">\n <div class=\"card-img\" mbr-if=\"showIcons\">\n <span mbr-icon class=\"mbr-iconfont icon54-v1-camera-1\"></span>\n </div>\n <div class=\"card-box\" mbr-if=\"showTitle || showText || showLinks\">\n <h4 class=\"card-title mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showTitle\" data-app-selector=\".card-title, .card-img\">\n Roomy Swimming Pool\n </h4>\n <p class=\"mbr-text mbr-fonts-style mbr-lighter\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text, .link\"><b>\n Crisp and sharp video.</b> OBS Ninja lets you receive remote guest video at 1080p quality and at high bitrates</p>\n <div class=\"link mbr-fonts-style\" mbr-text mbr-theme-style=\"display-4\" mbr-if=\"showLinks\" data-app-selector=\".link\">\n <a href=\"https://mobirise.com/\" class=\"text-black\"><b>READ MORE</b></a>\n </div>\n </div>\n </div>\n\n <div class=\"card pb-5 col-12 col-md-10\" mbr-class=\"{'col-lg-5': cardsAmount < 3 || cardsAmount == 4,\n 'col-lg-4': cardsAmount == 3 || cardsAmount > 4}\" mbr-if=\"cardsAmount >= 3\">\n <div class=\"card-img\" mbr-if=\"showIcons\">\n <span mbr-icon class=\"mbr-iconfont icon54-v1-map-screen\"></span>\n </div>\n <div class=\"card-box\" mbr-if=\"showTitle || showText || showLinks\">\n <h4 class=\"card-title mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showTitle\" data-app-selector=\".card-title, .card-img\">\n Free Wi-Fi\n </h4>\n <p class=\"mbr-text mbr-fonts-style mbr-lighter\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text, .link\"><b>\n Readable screen shares.</b> Tack sharp remote screen shares at 1080p quality and beyond.\n </p>\n <div class=\"link mbr-fonts-style\" mbr-text mbr-theme-style=\"display-4\" mbr-if=\"showLinks\" data-app-selector=\".link\">\n <a href=\"https://mobirise.com/\" class=\"text-black\"><b>READ MORE</b></a>\n </div>\n </div>\n </div>\n\n <div class=\"card pb-5 col-12 col-md-10\" mbr-class=\"{'col-lg-5': cardsAmount < 3 || cardsAmount == 4,\n 'col-lg-4': cardsAmount == 3 || cardsAmount > 4}\" mbr-if=\"cardsAmount >= 4\">\n <div class=\"card-img\" mbr-if=\"showIcons\">\n <span mbr-icon class=\"mbr-iconfont icon54-v1-remote-control\"></span>\n </div>\n <div class=\"card-box\" mbr-if=\"showTitle || showText || showLinks\">\n <h4 class=\"card-title mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showTitle\" data-app-selector=\".card-title, .card-img\">\n Special Events\n </h4>\n <p class=\"mbr-text mbr-fonts-style mbr-lighter\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text, .link\"><b>\n Quality control and flexibility.</b> Independent quality level for video and audio. Video bitrates up to 20mbps, audio up to 512kbps.</p>\n <div class=\"link mbr-fonts-style\" mbr-text mbr-theme-style=\"display-4\" mbr-if=\"showLinks\" data-app-selector=\".link\">\n <a href=\"https://mobirise.com/\" class=\"text-black\"><b>READ MORE</b></a>\n </div>\n </div>\n </div>\n\n <div class=\"card pb-5 col-12 col-md-10\" mbr-class=\"{'col-lg-5': cardsAmount < 3 || cardsAmount == 4,\n 'col-lg-4': cardsAmount == 3 || cardsAmount > 4}\" mbr-if=\"cardsAmount >= 5\">\n <div class=\"card-img\" mbr-if=\"showIcons\">\n <span mbr-icon class=\"mbri-calendar mbr-iconfont\"></span>\n </div>\n <div class=\"card-box\" mbr-if=\"showTitle || showText || showLinks\">\n <h4 class=\"card-title mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showTitle\" data-app-selector=\".card-title, .card-img\">\n Special Events\n </h4>\n <p class=\"mbr-text mbr-fonts-style mbr-lighter\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text, .link\">\n Lorem ipsum dolor sit amet, consectetur adipisicing elit. Modi assumenda consequatur nam harum impedit rem.\n </p>\n <div class=\"link mbr-fonts-style\" mbr-text mbr-theme-style=\"display-4\" mbr-if=\"showLinks\" data-app-selector=\".link\">\n <a href=\"https://mobirise.com/\" class=\"text-black\"><b>READ MORE</b></a>\n </div>\n </div>\n </div>\n\n <div class=\"card p-3 col-12 col-md-10\" mbr-class=\"{'col-lg-5': cardsAmount < 3 || cardsAmount == 4,\n 'col-lg-4': cardsAmount == 3 || cardsAmount > 4}\" mbr-if=\"cardsAmount >= 6\">\n <div class=\"card-img\" mbr-if=\"showIcons\">\n <span mbr-icon class=\"mbri-calendar mbr-iconfont\"></span>\n </div>\n <div class=\"card-box\" mbr-if=\"showTitle || showText || showLinks\">\n <h4 class=\"card-title mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showTitle\" data-app-selector=\".card-title, .card-img\">\n Special Events\n </h4>\n <p class=\"mbr-text mbr-fonts-style mbr-lighter\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text, .link\">\n Lorem ipsum dolor sit amet, consectetur adipisicing elit. Modi assumenda consequatur nam harum impedit rem.\n </p>\n <div class=\"link mbr-fonts-style\" mbr-text mbr-theme-style=\"display-4\" mbr-if=\"showLinks\" data-app-selector=\".link\">\n <a href=\"https://mobirise.com/\" class=\"text-black\"><b>READ MORE</b></a>\n </div>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "seUDkV5xxK",
"_anchor": "extFeatures5-2c",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": "mobirise4-blocks/components",
"_isSecondary": true,
"typeCompatible": "type",
"_styles": {
"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)"
},
".card": {
"-webkit-flex-direction": "row",
"flex-direction": "row",
"-webkit-justify-content": "center",
"justify-content": "center",
".card-img": {
"width": "20%",
"display": "flex",
"-webkit-flex-direction": "column",
"flex-direction": "column"
},
".card-box": {
"display": "flex",
"-webkit-flex-direction": "column",
"flex-direction": "column",
"& when (@showIcons)": {
"width": "80%",
"padding-left": "1rem"
}
},
".card-img span": {
"color": "@iconsColor",
"font-size": "60px"
}
},
"& when not (@showText) and not (@showLinks)": {
".card-title": {
"margin": "0"
},
".card-img, .card-box": {
"-webkit-justify-content": "center",
"justify-content": "center"
}
},
".mbr-text": {
"color": "#767676"
},
"@media (max-width: 767px)": {
".card": {
"-webkit-flex-direction": "column",
"flex-direction": "column",
".card-img": {
"width": "100%",