-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.mobirise
2118 lines (2118 loc) · 201 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": "covid19",
"currentPage": "index.html",
"theme": {
"name": "mobirise4",
"title": "Mobirise 4",
"styling": {
"primaryColor": "#00ba57",
"secondaryColor": "#dc3545",
"successColor": "#f36f21",
"infoColor": "#82786E",
"warningColor": "#879A9F",
"dangerColor": "#B1A374",
"mainFont": "Rubik",
"display1Font": "Open Sans",
"display1Size": 4.25,
"display2Font": "Open Sans",
"display2Size": 3,
"display5Font": "Open Sans",
"display5Size": 1.5,
"display7Font": "Open Sans",
"display7Size": 1,
"display4Font": "Open Sans",
"display4Size": 1,
"isRoundedButtons": true,
"isAnimatedOnScroll": true,
"isScrollToTopButton": true
},
"additionalSetColors": [
"#00ba57",
"#dc3545",
"#a51c30",
"#187dec",
"#f4f8fa",
"#f36f21",
"#66458e"
]
},
"path": "@PROJECT_PATH@",
"versionFirst": "4.12.3",
"siteFonts": [
{
"css": "'Open Sans', sans-serif",
"name": "Open Sans",
"url": "https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i"
},
{
"css": "'Open Sans Condensed', sans-serif",
"name": "Open Sans Condensed",
"url": "https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,300i,700"
}
],
"imageResize": true,
"cssOptimize": true,
"PWA": {
"enabled": true,
"name": "",
"icon": "@PROJECT_PATH@/assets/images/download-1-512x512.png",
"themeColor": "#00ba57"
},
"favicon": "@PROJECT_PATH@/assets/images/favicon-32x32.png",
"lazyLoad": false,
"lazyType": "nothing",
"robotsSwitcher": false,
"sitemapSwitcher": false,
"sitemapSwitcherAuto": false,
"siteUrl": false,
"cookiesAlert": false,
"gdpr": false,
"pwa-switcher": true,
"uniqCompNum": 135,
"versionPublish": "4.12.3",
"screenshot": "screenshot.png",
"google-analytics": "<!-- Global site tag (gtag.js) - Google Analytics -->\n<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-87749601-24\"></script>\n<script>\n window.dataLayer = window.dataLayer || [];\n function gtag(){dataLayer.push(arguments);}\n gtag('js', new Date());\n\n gtag('config', 'UA-87749601-24');\n</script>"
},
"pages": {
"index.html": {
"settings": {
"main": true,
"title": "Home",
"meta_descr": "",
"header_custom": "",
"footer_custom": "",
"html_before": ""
},
"components": [
{
"alias": false,
"_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)"
},
"P": {
"text-align": "left"
},
".mbr-text, .mbr-section-btn": {
"text-align": "left"
}
},
"_name": "header6",
"_customHTML": "<section class=\"header6\" group=\"Headers\" 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\" checked>\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"6\" condition=\"fullScreen == false\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"6\" condition=\"fullScreen == false\">\n\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 Buttons\" name=\"showButtons\">\n <input type=\"checkbox\" title=\"Show Arrow\" name=\"showArrow\" checked>\n\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Background Image\" value=\"@PROJECT_PATH@/assets/images/bg1-2000x1318.png\" parallax selected>\n <input type=\"color\" title=\"Background Color\" value=\"#767676\">\n <input type=\"video\" title=\"Background Video\" value=\"https://www.youtube.com/watch?v=36YgDDJ7XSc\">\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=\"#232323\" 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 <!-- 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-md-center\">\n <div class=\"mbr-white col-md-10\">\n <h1 class=\"mbr-section-title align-center mbr-bold pb-3 mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showTitle\"><p><span style=\"font-weight: normal;\">\n COVID-19 RESPONSE</span></p></h1>\n <p class=\"mbr-text align-center pb-3 mbr-fonts-style\" mbr-theme-style=\"display-2\" mbr-if=\"showText\" data-app-selector=\".mbr-text, .mbr-section-btn\">Improving the human condition <b>through resources, determination, and innovation</b><br></p>\n <div class=\"mbr-section-btn align-center\" mbr-if=\"showButtons\" data-toolbar=\"-mbrBtnMove\" mbr-buttons mbr-theme-style=\"display-4\">\n <a class=\"btn btn-md btn-primary\" href=\"https://mobirise.co\">LEARN MORE</a>\n <a class=\"btn btn-md btn-white-outline\" href=\"https://mobirise.co\">LIVE DEMO</a>\n </div>\n </div>\n </div>\n </div>\n\n <div mbr-if=\"showArrow\" 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": "rVLrSMhZIR",
"_anchor": "header6-1",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": false,
"_styles": {
"& when not (@fullScreen)": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)"
},
"& when (@bg-type = 'color')": {
"background-color": "@bg-value",
"& when (@gradientBg)": {
"background": "linear-gradient(45deg, @bg-value, @color2)"
}
},
"& when (@bg-type = 'image')": {
"background-image": "url(@bg-value)"
},
"& when (@reverseContent)": {
".media-container-row": {
"flex-direction": "row-reverse",
"-webkit-flex-direction": "row-reverse"
}
},
".mbr-figure": {
"@media (min-width: 992px)": {
"padding-right": "4rem",
"& when (@reverseContent)": {
"padding-right": "0",
"padding-left": "4rem"
}
},
"@media (max-width: 991px)": {
"padding-bottom": "3rem"
}
},
".mbr-text": {
"@media (max-width: 767px)": {
"text-align": "center"
}
}
},
"_name": "header3",
"_customHTML": "<section class=\"header3\" group=\"Headers\" 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=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"6\" condition=\"fullScreen == false\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"6\" condition=\"fullScreen == false\">\n \n <input type=\"checkbox\" title=\"Show Title\" name=\"showTitle\">\n <input type=\"checkbox\" title=\"Show Subtitle\" name=\"showSubTitle\">\n <input type=\"checkbox\" title=\"Show Text\" name=\"showText\" checked>\n <input type=\"checkbox\" title=\"Show Buttons\" name=\"showButtons\">\n <input type=\"range\" inline title=\"Media Size\" name=\"mediaSize\" min=\"10\" max=\"200\" step=\"5\" value=\"45\">\n <input type=\"checkbox\" title=\"Media On Left/Right\" name=\"reverseContent\" checked>\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Background Image\" value=\"../_images/background4.jpg\" parallax>\n <input type=\"color\" title=\"Background Color\" value=\"#232323\" selected>\n <input type=\"video\" title=\"Background Video\" value=\"https://www.youtube.com/watch?v=36YgDDJ7XSc\">\n </fieldset>\n\n <input type=\"checkbox\" title=\"Gradient\" name=\"gradientBg\" condition=\"bg.type == 'color'\" checked>\n <input type=\"color\" title=\"Color 2\" name=\"color2\" value=\"#a51c30\" condition=\"gradientBg && bg.type == 'color'\">\n \n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" condition=\"bg.type !== 'color'\" checked>\n <input type=\"color\" title=\"Overlay Color\" name=\"overlayColor\" value=\"#232323\" 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 <!-- 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=\"media-container-row\">\n <div class=\"mbr-figure\" mbr-style=\"{'width': mediaSize + '%'}\">\n <img src=\"@PROJECT_PATH@/assets/images/1200px-sars-cov-2-without-background-590x592.png\" alt=\"Mobirise\" title>\n </div>\n\n <div class=\"media-content\">\n <h1 class=\"mbr-section-title mbr-white pb-3 mbr-fonts-style\" mbr-if=\"showTitle\" mbr-theme-style=\"display-2\">Improving the human condition through resources, determination, and innovation</h1>\n <h3 class=\"mbr-section-subtitle align-left mbr-white mbr-light pb-3 mbr-fonts-style\" mbr-if=\"showSubTitle\" mbr-theme-style=\"display-2\">\n Beautiful mobile websites\n </h3>\n <div class=\"mbr-section-text mbr-white pb-3 \">\n <p class=\"mbr-text mbr-fonts-style\" mbr-if=\"showText\" data-app-selector=\".mbr-text, .mbr-section-btn\" mbr-theme-style=\"display-7\">Coronavirus has changed life in Bangladesh as we know it. As of April 13, we have a total of 803 reported cases and 39 deaths from COVID-19.* Like many countries around the world, we have been in lockdown for the past several weeks. Experts predict that the economic impact of COVID-19 in our country will be greater than the health impact as we do not have the fiscal space for prolonged lockdowns. \n<br>\n<br>BYLC understands the enormity of the challenges our country faces today. We have compiled a set of resources and data that will help spread useful information on COVID-19 and its impact on our lives. In our endeavors to stay resilient and be of service, we have also provided informative tools that can help others navigate this crisis.\n<b> </b><br><br>* (For updated information, visit<i> <b><a href=\"https://corona.gov.bd/\" target=\"_blank\">https://corona.gov.bd/</a></b>) </i><br></p>\n </div>\n <div class=\"mbr-section-btn\" mbr-if=\"showButtons\" data-toolbar=\"-mbrBtnMove\" mbr-buttons mbr-theme-style=\"display-4\">\n <a class=\"btn btn-md btn-primary\" href=\"https://mobirise.co\">LEARN MORE</a>\n <a class=\"btn btn-md btn-white-outline\" href=\"https://mobirise.co\">LIVE DEMO</a>\n </div>\n </div>\n </div>\n </div>\n\n</section>",
"_cid": "rVQJz4HEG9",
"_anchor": "header3-1o",
"_protectedParams": [],
"_global": false,
"_once": false,
"_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)"
},
"@media (max-width: 992px)": {
"& when not (@fullScreen)": {
"padding-top": "(@paddingTop * 10px)",
"padding-bottom": "(@paddingBottom * 10px)"
}
},
".text": {
"padding": "0"
},
"section": {
"position": "relative"
},
"h3": {
"padding-bottom": "0",
"margin-bottom": "0"
},
".mbr-iconfont": {
"padding": "0!important"
},
".back": {
"position": "absolute",
"bottom": "0",
"left": "0",
"width": "100%",
"height": "~\"@{halfHeight}%\"",
"background-color": "@half"
},
".box": {
"background-image": "url(@video)",
"background-size": "cover",
"background-position": "center",
"height": "550px",
"margin": "auto",
"display": "flex",
"align-items": "center",
"justify-content": "center"
},
".icon-wrap": {
"background-color": "@iconBGColor !important",
"width": "80px",
"height": "80px",
"margin": "auto",
"display": "flex",
"justify-content": "center",
"align-items": "center",
"transition": "all 0.3s",
"&:hover": {
"transform": "scale(1.1)"
}
},
".icon-wrap span": {
"padding-left": "8px"
},
".mbr-media span": {
"font-size": "30px",
"cursor": "pointer",
"position": "relative",
"display": "inline-block",
"transition": "all 0.25s",
"color": "@iconColor !important",
"&.mbri-play:before": {
"position": "absolute",
"left": "50%",
"-webkit-transform": "translateX(-35%)",
"-moz-transform": "translateX(-35%)",
"-ms-transform": "translateX(-35%)",
"-o-transform": "translateX(-35%)",
"transform": "translateX(-35%)"
}
},
".modalWindow": {
"position": "fixed",
"z-index": "5000",
"left": "0",
"top": "0",
"background-color": "rgba(61, 61, 61, 0.65)",
"width": "100%",
"height": "100%",
".modalWindow-container": {
"display": "table-cell",
"vertical-align": "middle"
},
".modalWindow-video": {
"height": "calc(80vw / 1.778)",
"width": "80vw",
"margin": "0 auto"
}
},
"a.close": {
"position": "absolute",
"right": "4vw",
"top": "4vh",
"color": "#ffffff",
"z-index": "5000000",
"font-size": "37px",
"background": "#000",
"padding": "20px",
"border-radius": "50%",
"&:hover": {
"color": "#ffffff"
}
},
"@media (max-width: 767px)": {
"& when not (@fullScreen)": {
"padding-top": "(@paddingTop * 7px)",
"padding-bottom": "(@paddingBottom * 7px)"
},
".box": {
"height": "250px"
},
".row": {
"padding": "1rem!important"
}
}
},
"_name": "extVideo1",
"_customHTML": "<section class=\"extVideo\" group=\"Additional Blocks\" data-bg-video=\"{{bg.type == 'video'&&bg.value.url}}\" plugins=\"PlayerVimeo\" 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=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"10\" step=\"1\" value=\"3\" condition=\"fullScreen == false\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"10\" step=\"1\" value=\"2\" condition=\"fullScreen == false\">\n <input type=\"checkbox\" title=\"Show Title\" name=\"showTitle\" checked>\n <input type=\"color\" title=\"Icon Color\" name=\"iconColor\" value=\"#ffffff\">\n <input type=\"color\" title=\"Icon BG Color\" name=\"iconBGColor\" value=\"#00ba57\">\n <input type=\"image\" name=\"video\" value=\"@PROJECT_PATH@/assets/images/ok-1238x663.png\" title=\"Video Image\">\n <input type=\"text\" title=\"Modal Video\" name=\"modalVideo\" value=\"https://youtu.be/Hl8s3PvmOfc\">\n <input type=\"range\" inline title=\"Half BG Height\" name=\"halfHeight\" min=\"20\" max=\"80\" step=\"5\" value=\"50\">\n <input type=\"color\" title=\"Half BG Color\" name=\"half\" value=\"#232323\">\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" value=\"@PROJECT_PATH@/assets/images/hotline-bg-1920x1080.png\" title=\"Background Image\" selected parallax>\n <input type=\"color\" value=\"#ffffff\" title=\"Background Color\">\n <input type=\"video\" value=\"https://www.youtube.com/watch?v=36YgDDJ7XSc\" 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=\"#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 <!-- 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=\"back\"></div>\n\n <div class=\"container align-center\">\n <div class=\"col-md-12 col-lg-12 text\">\n <h2 class=\"mbr-section-title align-center mbr-semibold pb-4 mbr-fonts-style\" mbr-theme-style=\"display-2\" mbr-if=\"showTitle\">Message from <br><b>Ejaj Ahmad, Founder and President, BYLC</b></h2>\n </div>\n\n <div class=\"row justify-content-center\">\n <div class=\"mbr-white box col-md-12 col-12 col-lg-10\">\n <div class=\"mbr-media show-modal align-center py-2\" data-modal=\".modalWindow\">\n <div class=\"icon-wrap\">\n <span mbr-icon class=\"mbr-iconfont mobi-mbri-play mobi-mbri\"></span>\n </div>\n </div>\n </div>\n\n </div>\n </div>\n <div>\n <div class=\"modalWindow\" style=\"display: none;\">\n <div class=\"modalWindow-container\">\n <div class=\"modalWindow-video-container\">\n <div class=\"modalWindow-video\">\n <iframe width=\"100%\" height=\"100%\" data-src=\"{{modalVideo}}\" frameborder=\"0\" allowfullscreen=\"1\"></iframe>\n </div>\n <a class=\"close\" role=\"button\" data-dismiss=\"modal\">\n <span aria-hidden=\"true\" class=\"mbri-close mbr-iconfont closeModal\"></span>\n <span class=\"sr-only\">Close</span>\n </a>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "rVRU7D6Cr9",
"_anchor": "extVideo1-2u",
"_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)"
},
".container-fluid": {
"padding": "0 3rem"
},
".underline": {
".line": {
"width": "5rem",
"height": "3px",
"background": "linear-gradient(90deg, @primaryColor, @secondaryColor)",
"display": "inline-block"
}
},
".card": {
"display": "flex",
"position": "relative",
"-webkit-justify-content": "center",
"justify-content": "center",
"&:hover img": {
"-webkit-transform": "scale3d(1.05, 1.05, 1.05)",
"transform": "scale3d(1.05, 1.05, 1.05)",
"transition": "all .5s"
},
".card-wrapper": {
"height": "1%",
".card-img": {
"position": "relative",
"overflow": "hidden",
"margin-bottom": "1rem",
"border-radius": "10px",
"z-index": "1",
"img": {
"transition": "all .5s"
},
".img-text": {
"position": "absolute",
"padding": ".6rem",
"top": "0",
"left": "0",
"z-index": "1",
"border-top-left-radius": "10px",
"border-bottom-right-radius": "10px",
"background-color": "@dateBg",
"span": {
"display": "block"
}
}
},
".card-box .mbr-section-btn a": {
"margin-left": "4px"
}
}
},
"@media (max-width: 767px)": {
".container-fluid": {
"padding": "0 1rem"
}
},
".mbr-section-title,.underline": {
"text-align": "center",
"color": "#ffffff"
},
".mbr-card-text, .mbr-section-btn": {
"text-align": "left",
"color": "#ffffff"
},
".mbr-section-subtitle": {
"color": "#ffffff"
}
},
"_name": "extFeatures31",
"_customHTML": "<section class=\"extFeatures\" group=\"Additional Blocks\" 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=\"1\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"9\" step=\"1\" value=\"0\">\n <input type=\"checkbox\" title=\"Show Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Show Underline\" name=\"showUnderline\" condition=\"showTitle\">\n <input type=\"checkbox\" title=\"Show Subtitle\" name=\"showSubtitle\" checked>\n <input type=\"checkbox\" title=\"Show Text\" name=\"showText\" checked>\n <input type=\"checkbox\" title=\"Show Buttons\" name=\"showButtons\">\n <input type=\"checkbox\" title=\"Show Card Captions\" name=\"showDate\">\n <input type=\"color\" title=\"Card Caption Background\" name=\"dateBg\" value=\"#ff3366\" condition=\"showDate\">\n <select title=\"Cards\" name=\"cardsAmount\">\n <option value=\"1\">1</option>\n <option value=\"2\" selected>2</option>\n <option value=\"3\">3</option>\n <option value=\"4\">4</option>\n <option value=\"5\">5</option>\n <option value=\"6\">6</option>\n </select>\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=\"#232323\" selected>\n <input type=\"video\" title=\"Background Video\" value=\"https://www.youtube.com/watch?v=kI1YE_qenSU\">\n </fieldset>\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" 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-fluid\">\n <h2 class=\"mbr-section-title align-left mbr-fonts-style\" mbr-theme-style=\"display-2\" mbr-if=\"showTitle\" data-app-selector=\".mbr-section-title,.underline\"><b>What has been BYLC’s response?\n</b></h2>\n <div class=\"underline align-left pb-3\" mbr-if=\"showUnderline&&showTitle\">\n <div class=\"line\"></div>\n </div>\n <h3 class=\"mbr-section-subtitle display-5 align-center mbr-fonts-style mbr-light pb-5\" mbr-class=\"{'pt-3':!showUnderline}\" mbr-theme-style=\"display-5\" mbr-if=\"showSubtitle\" data-app-selector=\".mbr-section-subtitle\">BYLC is working in four areas to address the crisis:\n</h3>\n <div class=\"row justify-content-center align-items-start\" mbr-cards=\"bootstrap\" mbr-class=\"{'pt-5':!showSubtitle}\">\n <div class=\"card px-3 py-4 col-12 col-md-6 col-lg-4\">\n <div class=\"card-wrapper flip-card\">\n <div class=\"card-img\">\n <img src=\"@PROJECT_PATH@/assets/images/feature-image-response-to-economic-crisis-1080x1080.png\" alt=\"Mobirise\" title>\n <div mbr-text class=\"img-text mbr-text mbr-fonts-style align-center mbr-white\" mbr-theme-style=\"display-7\" data-app-selector=\".img-text\" mbr-if=\"showDate\">\n Economics\n </div>\n </div>\n <div class=\"card-box\" mbr-if=\"showText || showButtons\">\n <p class=\"mbr-card-text mbr-fonts-style align-center\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-card-text, .mbr-section-btn\">○ To address the immediate economic crisis, BYLC, in collaboration with UK aid and Manusher Jonno Foundation, is supporting 2,000 families with food for 10 days. \n<br>○ It is difficult for a small organization like BYLC to make a big enough dent to combat the enormity of the challenge at hand. We are therefore working with SAJIDA Foundation, Manusher Jonno Foundation, and Mission Save Bangladesh to provide relief to underprivileged communities suffering from the economic impacts of the crisis.\n<br>○ BYLC staff will contribute one day’s salary to alleviate the struggles of daily wage earners during COVID-19. <br></p>\n <div mbr-buttons mbr-theme-style=\"display-4\" class=\"mbr-section-btn align-center\" mbr-if=\"showButtons\" data-toolbar=\"-mbrBtnMove,-mbrBtnAdd\">\n <a href=\"https://mobirise.com\" class=\"btn btn-secondary\">\n VIEW ALL\n </a>\n </div>\n </div>\n </div>\n </div>\n <div class=\"card px-3 py-4 col-12 col-md-6 col-lg-4\" mbr-if=\"cardsAmount > 1\">\n <div class=\"card-wrapper flip-card\">\n <div class=\"card-img\">\n <img src=\"@PROJECT_PATH@/assets/images/feature-image-mental-health-support-1080x1080.png\" alt=\"Mobirise\" title>\n <div mbr-text class=\"img-text mbr-text mbr-fonts-style align-center mbr-white\" mbr-theme-style=\"display-7\" data-app-selector=\".img-text\" mbr-if=\"showDate\">\n Politics\n </div>\n </div>\n <div class=\"card-box\" mbr-if=\"showText || showButtons\">\n <p class=\"mbr-card-text mbr-fonts-style align-center\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-card-text, .mbr-section-btn\">\n ○ To support the mental health of our alumni during these trying times, we have launched a BYLC Youth Hotline where trained graduates are present to listen to them and guide them through their emotions.<br>○ We have published communication resources as well as blogs and articles on mental health to support the youth and help them navigate through these challenging times.\n<br>○ BYLC staff are constantly reaching out to our campus ambassadors and volunteers in an effort to stay connected, and support them with any kind of mental health support or guidance. <br></p>\n <div mbr-buttons mbr-theme-style=\"display-4\" class=\"mbr-section-btn align-center\" mbr-if=\"showButtons\" data-toolbar=\"-mbrBtnMove,-mbrBtnAdd\">\n <a href=\"https://mobirise.com\" class=\"btn btn-secondary\">\n VIEW ALL\n </a>\n </div>\n </div>\n </div>\n </div>\n\n <div class=\"card px-3 py-4 col-12 col-md-6 col-lg-4\" mbr-if=\"cardsAmount > 2\">\n <div class=\"card-wrapper flip-card\">\n <div class=\"card-img\">\n <img src=\"@PROJECT_PATH@/assets/images/feature%20image%20(social%20media%20awareness%20and%20leadership%20education)-1080x1080.png\" alt=\"Mobirise\" title>\n <div mbr-text class=\"img-text mbr-text mbr-fonts-style align-center mbr-white\" mbr-theme-style=\"display-7\" data-app-selector=\".img-text\" mbr-if=\"showDate\">\n Design\n </div>\n </div>\n <div class=\"card-box\" mbr-if=\"showText || showButtons\">\n <p class=\"mbr-card-text mbr-fonts-style align-center\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-card-text, .mbr-section-btn\">★ We are running multiple campaigns encouraging people to stay at home and maintain social distancing and personal hygiene to address the immediate need to flatten the curve. \n<br>★ We have engaged over 100 BYLC campus ambassadors from institutes all over the country to spread awareness on the crisis through social media and emails. \n<br>★ Our alumni is practicing leadership in this time of crisis by engaging in various activities, ranging from spreading awareness to helping disadvantaged populations with food and other daily necessities.\n<br>★ From April 16-18, we will be conducting the South Asia Youth Resilience Summit with global experts to guide the youth to learn how to adapt to the changing times. \n<br>★ BYLCx, our online learning platform, is currently offering 14 free online courses to teach important life skills to youth. \n<br>★ In the first week of April, we launched CareerX, our first month-long certificate online course on professional development and leadership. \n<br>★ We are also adapting to the current reality and conducting our signature leadership courses, BBLT and BBLTJ, online. \n<br>★ Through three weekly live sessions that are completely free and can be accessed by anyone, we are creating more opportunities for youth to continue their learning online. <br></p>\n <div mbr-buttons mbr-theme-style=\"display-4\" class=\"mbr-section-btn align-center\" mbr-if=\"showButtons\" data-toolbar=\"-mbrBtnMove,-mbrBtnAdd\">\n <a href=\"https://mobirise.com\" class=\"btn btn-secondary\">\n VIEW ALL\n </a>\n </div>\n </div>\n </div>\n </div>\n\n <div class=\"card px-3 py-4 col-12 col-md-6 col-lg-4\" mbr-if=\"cardsAmount > 3\">\n <div class=\"card-wrapper flip-card\">\n <div class=\"card-img\">\n <img src=\"../_images/img/06.jpg\" alt=\"Mobirise\">\n <div mbr-text class=\"img-text mbr-text mbr-fonts-style align-center mbr-white\" mbr-theme-style=\"display-7\" data-app-selector=\".img-text\" mbr-if=\"showDate\">\n Economics\n </div>\n </div>\n <div class=\"card-box\" mbr-if=\"showText || showButtons\">\n <p class=\"mbr-card-text mbr-fonts-style align-center\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-card-text, .mbr-section-btn\">\n Lorem ipsum dolor sit amet, consectetur adipisicing elit.\n </p>\n <div mbr-buttons mbr-theme-style=\"display-4\" class=\"mbr-section-btn align-center\" mbr-if=\"showButtons\" data-toolbar=\"-mbrBtnMove,-mbrBtnAdd\">\n <a href=\"https://mobirise.com\" class=\"btn btn-secondary\">\n VIEW ALL\n </a>\n </div>\n </div>\n </div>\n </div>\n\n <div class=\"card px-3 py-4 col-12 col-md-6 col-lg-4\" mbr-if=\"cardsAmount > 4\">\n <div class=\"card-wrapper flip-card\">\n <div class=\"card-img\">\n <img src=\"../_images/img/07.jpg\" alt=\"Mobirise\">\n <div mbr-text class=\"img-text mbr-text mbr-fonts-style align-center mbr-white\" mbr-theme-style=\"display-7\" data-app-selector=\".img-text\" mbr-if=\"showDate\">\n Politics\n </div>\n </div>\n <div class=\"card-box\" mbr-if=\"showText || showButtons\">\n <p class=\"mbr-card-text mbr-fonts-style align-center\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-card-text, .mbr-section-btn\">\n Lorem ipsum dolor sit amet, consectetur adipisicing elit.\n </p>\n <div mbr-buttons mbr-theme-style=\"display-4\" class=\"mbr-section-btn align-center\" mbr-if=\"showButtons\" data-toolbar=\"-mbrBtnMove,-mbrBtnAdd\">\n <a href=\"https://mobirise.com\" class=\"btn btn-secondary\">\n VIEW ALL\n </a>\n </div>\n </div>\n </div>\n </div>\n\n <div class=\"card px-3 py-4 col-12 col-md-6 col-lg-4\" mbr-if=\"cardsAmount > 5\">\n <div class=\"card-wrapper flip-card\">\n <div class=\"card-img\">\n <img src=\"../_images/img/08.jpg\" alt=\"Mobirise\">\n <div mbr-text class=\"img-text mbr-text mbr-fonts-style align-center mbr-white\" mbr-theme-style=\"display-7\" data-app-selector=\".img-text\" mbr-if=\"showDate\">\n Design\n </div>\n </div>\n <div class=\"card-box\" mbr-if=\"showText || showButtons\">\n <p class=\"mbr-card-text mbr-fonts-style align-center\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-card-text, .mbr-section-btn\">\n Lorem ipsum dolor sit amet, consectetur adipisicing elit.\n </p>\n <div mbr-buttons mbr-theme-style=\"display-4\" class=\"mbr-section-btn align-center\" mbr-if=\"showButtons\" data-toolbar=\"-mbrBtnMove,-mbrBtnAdd\">\n <a href=\"https://mobirise.com\" class=\"btn btn-secondary\">\n VIEW ALL\n </a>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "rVQU8k3QXE",
"_anchor": "extFeatures31-1w",
"_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)"
},
".container-fluid": {
"padding": "0 3rem"
},
".underline": {
".line": {
"width": "5rem",
"height": "3px",
"background": "linear-gradient(90deg, @primaryColor, @secondaryColor)",
"display": "inline-block"
}
},
".card": {
"display": "flex",
"position": "relative",
"-webkit-justify-content": "center",
"justify-content": "center",
"&:hover img": {
"-webkit-transform": "scale3d(1.05, 1.05, 1.05)",
"transform": "scale3d(1.05, 1.05, 1.05)",
"transition": "all .5s"
},
".card-wrapper": {
"height": "1%",
".card-img": {
"position": "relative",
"overflow": "hidden",
"margin-bottom": "1rem",
"border-radius": "10px",
"z-index": "1",
"img": {
"transition": "all .5s"
},
".img-text": {
"position": "absolute",
"padding": ".6rem",
"top": "0",
"left": "0",
"z-index": "1",
"border-top-left-radius": "10px",
"border-bottom-right-radius": "10px",
"background-color": "@dateBg",
"span": {
"display": "block"
}
}
},
".card-box .mbr-section-btn a": {
"margin-left": "4px"
}
}
},
"@media (max-width: 767px)": {
".container-fluid": {
"padding": "0 1rem"
}
},
".mbr-section-title,.underline": {
"text-align": "center",
"color": "#ffffff"
},
".mbr-card-text, .mbr-section-btn": {
"text-align": "left",
"color": "#ffffff"
},
".mbr-section-subtitle": {
"color": "#ffffff"
}
},
"_name": "extFeatures31",
"_customHTML": "<section class=\"extFeatures\" group=\"Additional Blocks\" 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=\"0\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"9\" step=\"1\" value=\"2\">\n <input type=\"checkbox\" title=\"Show Title\" name=\"showTitle\">\n <input type=\"checkbox\" title=\"Show Underline\" name=\"showUnderline\" condition=\"showTitle\">\n <input type=\"checkbox\" title=\"Show Subtitle\" name=\"showSubtitle\">\n <input type=\"checkbox\" title=\"Show Text\" name=\"showText\" checked>\n <input type=\"checkbox\" title=\"Show Buttons\" name=\"showButtons\">\n <input type=\"checkbox\" title=\"Show Card Captions\" name=\"showDate\">\n <input type=\"color\" title=\"Card Caption Background\" name=\"dateBg\" value=\"#ff3366\" condition=\"showDate\">\n <select title=\"Cards\" name=\"cardsAmount\">\n <option value=\"1\">1</option>\n <option value=\"2\" selected>2</option>\n <option value=\"3\">3</option>\n <option value=\"4\">4</option>\n <option value=\"5\">5</option>\n <option value=\"6\">6</option>\n </select>\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Background Image\" value=\"@PROJECT_PATH@/assets/images/background3.jpg\" parallax>\n <input type=\"color\" title=\"Background Color\" value=\"#232323\" selected>\n <input type=\"video\" title=\"Background Video\" value=\"https://www.youtube.com/watch?v=kI1YE_qenSU\">\n </fieldset>\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" 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-fluid\">\n <h2 class=\"mbr-section-title align-left mbr-fonts-style\" mbr-theme-style=\"display-2\" mbr-if=\"showTitle\" data-app-selector=\".mbr-section-title,.underline\"><b>What has been BYLC’s response?\n</b></h2>\n <div class=\"underline align-left pb-3\" mbr-if=\"showUnderline&&showTitle\">\n <div class=\"line\"></div>\n </div>\n <h3 class=\"mbr-section-subtitle display-5 align-center mbr-fonts-style mbr-light pb-5\" mbr-class=\"{'pt-3':!showUnderline}\" mbr-theme-style=\"display-5\" mbr-if=\"showSubtitle\" data-app-selector=\".mbr-section-subtitle\">BYLC is working in three areas to address the crisis:\n</h3>\n <div class=\"row justify-content-center align-items-start\" mbr-cards=\"bootstrap\" mbr-class=\"{'pt-5':!showSubtitle}\">\n <div class=\"card px-3 py-4 col-12 col-md-6 col-lg-4\">\n <div class=\"card-wrapper flip-card\">\n <div class=\"card-img\">\n <img src=\"@PROJECT_PATH@/assets/images/feature-image-raising-awareness-1080x1080.png\" alt=\"Mobirise\" title>\n <div mbr-text class=\"img-text mbr-text mbr-fonts-style align-center mbr-white\" mbr-theme-style=\"display-7\" data-app-selector=\".img-text\" mbr-if=\"showDate\">\n Economics\n </div>\n </div>\n <div class=\"card-box\" mbr-if=\"showText || showButtons\">\n <p class=\"mbr-card-text mbr-fonts-style align-center\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-card-text, .mbr-section-btn\">○ We are running multiple campaigns encouraging people to stay at home and maintain social distancing and personal hygiene to address the immediate need to ‘flatten the curve.’ <br>○ We have engaged over 100 BYLC campus ambassadors from institutes all over the country to spread awareness on the crisis through social media and emails. \n<br>○ Our alumni is practicing leadership in this time of crisis by engaging in various activities, ranging from spreading awareness to helping disadvantaged populations with food and other daily necessities. <br></p>\n <div mbr-buttons mbr-theme-style=\"display-4\" class=\"mbr-section-btn align-center\" mbr-if=\"showButtons\" data-toolbar=\"-mbrBtnMove,-mbrBtnAdd\">\n <a href=\"https://mobirise.com\" class=\"btn btn-secondary\">\n VIEW ALL\n </a>\n </div>\n </div>\n </div>\n </div>\n <div class=\"card px-3 py-4 col-12 col-md-6 col-lg-4\" mbr-if=\"cardsAmount > 1\">\n <div class=\"card-wrapper flip-card\">\n <div class=\"card-img\">\n <img src=\"@PROJECT_PATH@/assets/images/feature-image-leadership-education-1-1080x1080.png\" alt=\"Mobirise\" title>\n <div mbr-text class=\"img-text mbr-text mbr-fonts-style align-center mbr-white\" mbr-theme-style=\"display-7\" data-app-selector=\".img-text\" mbr-if=\"showDate\">\n Politics\n </div>\n </div>\n <div class=\"card-box\" mbr-if=\"showText || showButtons\">\n <p class=\"mbr-card-text mbr-fonts-style align-center\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-card-text, .mbr-section-btn\">\n ○ From April 16-18, we will be conducting the South Asia Youth Resilience Summit with global experts to guide the youth in learning how to adapt to the changing times.\n<br>○ Through three weekly live sessions that are completely free and can be accessed by anyone, we are creating more opportunities for youth to continue their learning online. \n<br>○ BYLCx, our online learning platform, is currently offering 14 free online courses to teach important life skills to youth. In the first week of April, we launched CareerX, our first month-long certificate online course on professional development and leadership. We are also conducting our signature leadership courses, BBLT and BBLT Junior, online.<br></p>\n <div mbr-buttons mbr-theme-style=\"display-4\" class=\"mbr-section-btn align-center\" mbr-if=\"showButtons\" data-toolbar=\"-mbrBtnMove,-mbrBtnAdd\">\n <a href=\"https://mobirise.com\" class=\"btn btn-secondary\">\n VIEW ALL\n </a>\n </div>\n </div>\n </div>\n </div>\n\n <div class=\"card px-3 py-4 col-12 col-md-6 col-lg-4\" mbr-if=\"cardsAmount > 2\">\n <div class=\"card-wrapper flip-card\">\n <div class=\"card-img\">\n <img src=\"@PROJECT_PATH@/assets/images/feature%20image%20(social%20media%20awareness%20and%20leadership%20education)-1080x1080.png\" alt=\"Mobirise\" title>\n <div mbr-text class=\"img-text mbr-text mbr-fonts-style align-center mbr-white\" mbr-theme-style=\"display-7\" data-app-selector=\".img-text\" mbr-if=\"showDate\">\n Design\n </div>\n </div>\n <div class=\"card-box\" mbr-if=\"showText || showButtons\">\n <p class=\"mbr-card-text mbr-fonts-style align-center\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-card-text, .mbr-section-btn\">★ We are running multiple campaigns encouraging people to stay at home and maintain social distancing and personal hygiene to address the immediate need to flatten the curve. \n<br>★ We have engaged over 100 BYLC campus ambassadors from institutes all over the country to spread awareness on the crisis through social media and emails. \n<br>★ Our alumni is practicing leadership in this time of crisis by engaging in various activities, ranging from spreading awareness to helping disadvantaged populations with food and other daily necessities.\n<br>★ From April 16-18, we will be conducting the South Asia Youth Resilience Summit with global experts to guide the youth to learn how to adapt to the changing times. \n<br>★ BYLCx, our online learning platform, is currently offering 14 free online courses to teach important life skills to youth. \n<br>★ In the first week of April, we launched CareerX, our first month-long certificate online course on professional development and leadership. \n<br>★ We are also adapting to the current reality and conducting our signature leadership courses, BBLT and BBLTJ, online. \n<br>★ Through three weekly live sessions that are completely free and can be accessed by anyone, we are creating more opportunities for youth to continue their learning online. <br></p>\n <div mbr-buttons mbr-theme-style=\"display-4\" class=\"mbr-section-btn align-center\" mbr-if=\"showButtons\" data-toolbar=\"-mbrBtnMove,-mbrBtnAdd\">\n <a href=\"https://mobirise.com\" class=\"btn btn-secondary\">\n VIEW ALL\n </a>\n </div>\n </div>\n </div>\n </div>\n\n <div class=\"card px-3 py-4 col-12 col-md-6 col-lg-4\" mbr-if=\"cardsAmount > 3\">\n <div class=\"card-wrapper flip-card\">\n <div class=\"card-img\">\n <img src=\"@PROJECT_PATH@/assets/images/06.jpg\" alt=\"Mobirise\">\n <div mbr-text class=\"img-text mbr-text mbr-fonts-style align-center mbr-white\" mbr-theme-style=\"display-7\" data-app-selector=\".img-text\" mbr-if=\"showDate\">\n Economics\n </div>\n </div>\n <div class=\"card-box\" mbr-if=\"showText || showButtons\">\n <p class=\"mbr-card-text mbr-fonts-style align-center\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-card-text, .mbr-section-btn\">\n Lorem ipsum dolor sit amet, consectetur adipisicing elit.\n </p>\n <div mbr-buttons mbr-theme-style=\"display-4\" class=\"mbr-section-btn align-center\" mbr-if=\"showButtons\" data-toolbar=\"-mbrBtnMove,-mbrBtnAdd\">\n <a href=\"https://mobirise.com\" class=\"btn btn-secondary\">\n VIEW ALL\n </a>\n </div>\n </div>\n </div>\n </div>\n\n <div class=\"card px-3 py-4 col-12 col-md-6 col-lg-4\" mbr-if=\"cardsAmount > 4\">\n <div class=\"card-wrapper flip-card\">\n <div class=\"card-img\">\n <img src=\"@PROJECT_PATH@/assets/images/07.jpg\" alt=\"Mobirise\">\n <div mbr-text class=\"img-text mbr-text mbr-fonts-style align-center mbr-white\" mbr-theme-style=\"display-7\" data-app-selector=\".img-text\" mbr-if=\"showDate\">\n Politics\n </div>\n </div>\n <div class=\"card-box\" mbr-if=\"showText || showButtons\">\n <p class=\"mbr-card-text mbr-fonts-style align-center\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-card-text, .mbr-section-btn\">\n Lorem ipsum dolor sit amet, consectetur adipisicing elit.\n </p>\n <div mbr-buttons mbr-theme-style=\"display-4\" class=\"mbr-section-btn align-center\" mbr-if=\"showButtons\" data-toolbar=\"-mbrBtnMove,-mbrBtnAdd\">\n <a href=\"https://mobirise.com\" class=\"btn btn-secondary\">\n VIEW ALL\n </a>\n </div>\n </div>\n </div>\n </div>\n\n <div class=\"card px-3 py-4 col-12 col-md-6 col-lg-4\" mbr-if=\"cardsAmount > 5\">\n <div class=\"card-wrapper flip-card\">\n <div class=\"card-img\">\n <img src=\"@PROJECT_PATH@/assets/images/08.jpg\" alt=\"Mobirise\">\n <div mbr-text class=\"img-text mbr-text mbr-fonts-style align-center mbr-white\" mbr-theme-style=\"display-7\" data-app-selector=\".img-text\" mbr-if=\"showDate\">\n Design\n </div>\n </div>\n <div class=\"card-box\" mbr-if=\"showText || showButtons\">\n <p class=\"mbr-card-text mbr-fonts-style align-center\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-card-text, .mbr-section-btn\">\n Lorem ipsum dolor sit amet, consectetur adipisicing elit.\n </p>\n <div mbr-buttons mbr-theme-style=\"display-4\" class=\"mbr-section-btn align-center\" mbr-if=\"showButtons\" data-toolbar=\"-mbrBtnMove,-mbrBtnAdd\">\n <a href=\"https://mobirise.com\" class=\"btn btn-secondary\">\n VIEW ALL\n </a>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_anchor": "extFeatures31-3q",
"_isUserblock": true,
"_sourceTheme": "mobirise4",
"_cid": "rVWl1yVg4Q",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": false,
"_styles": {
"background": "@bgColor",
"& when (@fullWidth = false)": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)"
},
"& when (@gradientBg)": {
"background": "linear-gradient(45deg, @bgColor, @color2)"
},
".image-block": {
"margin": "auto",
"& when (@fullWidth)": {
"width": "100% !important"
}
},
".mbr-figure": {
"margin": "0 auto"
},
"figcaption": {
"position": "relative",
"div": {
"position": "absolute",
"bottom": "0",
"width": "100%"
}
},
"@media (max-width: 768px)": {
".image-block": {
"width": "100% !important"
}
}
},
"_name": "image2",
"_customHTML": "<section group=\"Images & Videos\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"checkbox\" title=\"Full Width\" name=\"fullWidth\" checked>\n\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" value=\"1\" step=\"1\" condition=\"fullWidth==false\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" value=\"0\" step=\"1\" condition=\"fullWidth==false\">\n\n <input type=\"checkbox\" title=\"Show Text\" name=\"showText\"> \n \n <input type=\"range\" inline title=\"Width\" name=\"imageSize\" min=\"20\" max=\"100\" value=\"100\" step=\"1\" condition=\"fullWidth==false\">\n\n <input type=\"color\" title=\"Background Color\" name=\"bgColor\" value=\"#232323\" condition=\"fullWidth==false\">\n <input type=\"checkbox\" title=\"Gradient\" name=\"gradientBg\" condition=\"fullWidth==false\">\n <input type=\"color\" title=\"Color 2\" name=\"color2\" value=\"#149dcc\" condition=\"gradientBg && fullWidth==false\">\n <!-- End block parameters -->\n </mbr-parameters>\n\n <figure class=\"mbr-figure\" mbr-class=\"{'container':fullWidth==false}\">\n <div class=\"image-block\" mbr-style=\"{'width':imageSize+'%'}\">\n <img src=\"@PROJECT_PATH@/assets/images/cover-with-speakers-3-1920x1080.png\" alt=\"Mobirise\" title>\n <figcaption class=\"mbr-figure-caption mbr-figure-caption-over\" mbr-if=\"showText\">\n <div mbr-text class=\"pb-5 px-3 mbr-white align-center mbr-fonts-style\" mbr-theme-style=\"display-1\" data-app-selector=\".mbr-figure-caption div\">\n Create awesome websites!\n </div>\n </figcaption>\n </div>\n </figure>\n</section>",
"_cid": "rVRBXj7TcY",
"_anchor": "image2-2g",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": false,
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"background-color": "@bgColor"
},
"_name": "content8",
"_customHTML": "<section class=\"mbr-section content8\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"1\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"1\">\n <input type=\"color\" title=\"Backgroud Color\" name=\"bgColor\" value=\"#232323\">\n <!-- End block parameters -->\n </mbr-parameters>\n\n <div class=\"container\">\n <div class=\"media-container-row title\">\n <div class=\"col-12 col-md-8\">\n <div class=\"mbr-section-btn align-center\" mbr-buttons mbr-theme-style=\"display-4\" data-toolbar=\"-mbrBtnMove\"><a class=\"btn btn-success\" href=\"https://bylc.org/resiliencesummit2020/\" data-app-placeholder=\"Type Text\" target=\"_blank\"><span class=\"mbri-globe mbr-iconfont mbr-iconfont-btn\"></span>Visit summit webpage</a></div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "rVSVyOIlpX",
"_anchor": "content8-3g",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": false,
"_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)"
},
".mbr-section-subtitle, .mbr-text": {
"color": "#767676"
},
".card": {
"display": "-webkit-flex",
"position": "relative",
"justify-content": "center",
"-webkit-justify-content": "center"
},
".card-wrapper": {
"height": "100%",
"box-shadow": "0px 0px 0px 0px rgba(0, 0, 0, 0)",
"transition": "box-shadow 0.3s",
".card-img": {
"display": "-webkit-flex",
"flex-direction": "column",
"align-items": "center",
"justify-content": "center",
"position": "relative",
"overflow": "hidden",
"border-bottom-right-radius": "0",
"border-bottom-left-radius": "0",
"-webkit-flex-direction": "column",
"-webkit-align-items": "center",
"-webkit-justify-content": "center",
".mbr-overlay": {
"background-color": "@bgCard",
"display": "none",
"transition": "opacity .3s"
},
".mbr-section-btn when (@showButtons)": {
"position": "absolute",
"transition": "opacity .3s",
"width": "100%",
"left": "0",
"top": "50%",
"height": "auto",
"transform": "translateY(-50%)"
},
"img": {
"width": "100%"
}
},
".card-box": {
"background-color": "@bgCard",
"padding": "0 2rem 2rem 2rem",
"border-bottom-left-radius": "0",
"border-bottom-right-radius": "0",
"h4": {
"font-weight": "500",
"margin-bottom": "0",
"padding-top": "2rem"
},
"p": {
"margin-bottom": "0",
"padding-top": "1.5rem",
"& when not (@showCardTitle)": {
"padding-top": "2rem"
}
}
},
"&:hover": {
"box-shadow": "0px 0px 30px 0px rgba(0, 0, 0, 0.05)"
}
},
".card-img": {
".mbr-overlay": {
"display": "block !important",
"opacity": "0"
},
".mbr-section-btn when (@showButtons)": {
"opacity": "0"
},
"&:hover": {
".mbr-overlay": {
"opacity": ".5"
},
".mbr-section-btn when (@showButtons)": {
"opacity": "1"
}
}
},
".mbr-text": {
"text-align": "center"
},
".card-title": {
"text-align": "center",
"color": "#232323"
},
".mbr-section-title": {
"color": "#ffffff"
}
},
"_name": "features18",
"_customHTML": "<section class=\"features18 popup-btn-cards\" group=\"Animated Features\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{'mbr-parallax-background': bg.parallax}\" plugins=\"mbr-popup-btns\">\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=\"3\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"9\" step=\"1\" value=\"0\">\n\n <input type=\"checkbox\" title=\"Show Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Show Subtitle\" name=\"showSubtitle\">\n <input type=\"checkbox\" title=\"Show Card Title\" name=\"showCardTitle\">\n <input type=\"checkbox\" title=\"Show Text\" name=\"showText\">\n <input type=\"checkbox\" title=\"Show Buttons\" name=\"showButtons\" checked>\n <input type=\"color\" title=\"Card Background\" name=\"bgCard\" value=\"#ffffff\">\n <select title=\"Cards\" name=\"cardsAmount\">\n <option value=\"1\">1</option>\n <option value=\"2\" selected>2</option>\n <option value=\"3\">3</option>\n <option value=\"4\">4</option>\n </select>\n\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Background Image\" value=\"@PROJECT_PATH@/assets/images/hotline-bg-1920x1080.png\" parallax>\n <input type=\"color\" title=\"Background Color\" value=\"#073b4c\" selected>\n <input type=\"video\" title=\"Background Video\" value=\"https://www.youtube.com/watch?v=36YgDDJ7XSc\">\n </fieldset>\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" condition=\"bg.type !== 'color'\">\n <input type=\"color\" title=\"Overlay Color\" name=\"overlayColor\" value=\"#efefef\" 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 <!-- 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 <h2 class=\"mbr-section-title pb-3 align-center mbr-fonts-style\" mbr-theme-style=\"display-2\" mbr-if=\"showTitle\" data-app-selector=\".mbr-section-title\"><b>Stay home, save the world</b></h2>\n <h3 class=\"mbr-section-subtitle display-5 align-center mbr-fonts-style mbr-light\" mbr-theme-style=\"display-5\" mbr-if=\"showSubtitle\" data-app-selector=\".mbr-section-subtitle\">\n In browser you will see buttons when hover on cards\n </h3>\n <div class=\"media-container-row pt-5 \" mbr-cards=\"bootstrap\">\n <div class=\"card p-3 col-12 col-md-6\" mbr-class=\"{'col-lg-3': cardsAmount == '4',\n 'col-lg-4': cardsAmount == '3'}\">\n <div class=\"card-wrapper \">\n <div class=\"card-img\">\n <div class=\"mbr-overlay\"></div>\n <div mbr-buttons mbr-if=\"showButtons\" mbr-theme-style=\"display-4\" class=\"mbr-section-btn text-center\" data-toolbar=\"-mbrBtnMove\"><a href=\"assets/files/DOs.pdf\" class=\"btn btn-primary\" data-app-placeholder=\"Type Text\" target=\"_blank\">Learn More</a></div>\n <img src=\"@PROJECT_PATH@/assets/images/feature-image-dos-1-1046x1046.png\" alt=\"Mobirise\" title>\n </div>\n <div class=\"card-box\" mbr-if=\"showText || showCardTitle\">\n <h4 class=\"card-title mbr-fonts-style\" mbr-theme-style=\"display-1\" mbr-if=\"showCardTitle\" data-app-selector=\".card-title\"><b>\n Dos</b></h4>\n <p class=\"mbr-text mbr-fonts-style align-left\" mbr-theme-style=\"display-1\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">\n Mobirise is an easy website builder - just drop site elements to your page, add content and style it to look the way you like.\n </p>\n </div>\n </div>\n </div>\n <div class=\"card p-3 col-12 col-md-6\" mbr-if=\"cardsAmount > 1\" mbr-class=\"{'col-lg-3': cardsAmount == '4',\n 'col-lg-4': cardsAmount == '3'}\">\n <div class=\"card-wrapper\">\n <div class=\"card-img\">\n <div class=\"mbr-overlay\"></div>\n <div mbr-buttons mbr-if=\"showButtons\" mbr-theme-style=\"display-4\" class=\"mbr-section-btn text-center\" data-toolbar=\"-mbrBtnMove\"><a href=\"assets/files/DONts.pdf\" class=\"btn btn-primary\" data-app-placeholder=\"Type Text\" target=\"_blank\">Learn More</a></div>\n <img src=\"@PROJECT_PATH@/assets/images/feature-image-donts-1-1046x1046.png\" alt=\"Mobirise\" title>\n </div>\n <div class=\"card-box\" mbr-if=\"showText || showCardTitle\">\n <h4 class=\"card-title mbr-fonts-style\" mbr-theme-style=\"display-1\" mbr-if=\"showCardTitle\" data-app-selector=\".card-title\"><b>\n Don't</b></h4>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">\n All sites you make with Mobirise are mobile-friendly. You don't have to create a special mobile version of your site.\n </p>\n </div>\n </div>\n </div>\n\n <div class=\"card p-3 col-12 col-md-6\" mbr-if=\"cardsAmount > 2\" mbr-class=\"{'col-lg-3': cardsAmount == '4',\n 'col-lg-4': cardsAmount == '3'}\">\n <div class=\"card-wrapper\">\n <div class=\"card-img\">\n <div class=\"mbr-overlay\"></div>\n <div mbr-buttons mbr-if=\"showButtons\" mbr-theme-style=\"display-4\" class=\"mbr-section-btn text-center\" data-toolbar=\"-mbrBtnMove\">\n <a href=\"https://mobirise.co\" class=\"btn btn-primary\">Learn More</a>\n </div>\n <img src=\"../_images/background3.jpg\" alt=\"Mobirise\">\n </div>\n <div class=\"card-box\" mbr-if=\"showText || showCardTitle\">\n <h4 class=\"card-title mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showCardTitle\" data-app-selector=\".card-title\">\n Unique Styles\n </h4>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">\n Mobirise offers many site blocks in several themes, and though these blocks are pre-made, they are flexible.\n </p>\n </div>\n </div>\n </div>\n\n <div class=\"card p-3 col-12 col-md-6\" mbr-if=\"cardsAmount > 3\" mbr-class=\"{'col-lg-3': cardsAmount == '4',\n 'col-lg-4': cardsAmount == '3'}\">\n <div class=\"card-wrapper\">\n <div class=\"card-img\">\n <div class=\"mbr-overlay\"></div>\n <div mbr-buttons mbr-if=\"showButtons\" mbr-theme-style=\"display-4\" class=\"mbr-section-btn text-center\" data-toolbar=\"-mbrBtnMove\">\n <a href=\"https://mobirise.co\" class=\"btn btn-primary\">Learn More</a>\n </div>\n <img src=\"../_images/background4.jpg\" alt=\"Mobirise\">\n </div>\n <div class=\"card-box\" mbr-if=\"showText || showCardTitle\">\n <h4 class=\"card-title mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showCardTitle\" data-app-selector=\".card-title\">\n Unlimited Sites\n </h4>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">\n Mobirise gives you the freedom to develop as many websites as you like given the fact that it is a desktop app.\n </p>\n </div>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "rVQPdKXOsl",
"_anchor": "features18-1t",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": false,
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"background-color": "@bgColor"
},
"_name": "content8",
"_customHTML": "<section class=\"mbr-section content8\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"2\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"2\">\n <input type=\"color\" title=\"Backgroud Color\" name=\"bgColor\" value=\"#073b4c\">\n <!-- End block parameters -->\n </mbr-parameters>\n\n <div class=\"container\">\n <div class=\"media-container-row title\">\n <div class=\"col-12 col-md-8\">\n <div class=\"mbr-section-btn align-center\" mbr-buttons mbr-theme-style=\"display-4\" data-toolbar=\"-mbrBtnMove\"><a class=\"btn btn-primary\" href=\"assets/files/Awareness-static.pdf\" data-app-placeholder=\"Type Text\" target=\"_blank\"><span class=\"mbri-star mbr-iconfont mbr-iconfont-btn\"></span>See More Awareness Resources</a></div>\n </div>\n </div>\n </div>\n</section>",
"_anchor": "content8-3m",
"_isUserblock": true,
"_sourceTheme": "mobirise4",
"_cid": "rVWevf6l5Q",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": false,
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"background-color": "@bgColor",
".mbr-slider .carousel-control": {
"background": "#1b1b1b"
},
".mbr-slider .carousel-control-prev": {
"left": "0",
"margin-left": "2.5rem"
},
".mbr-slider .carousel-control-next": {
"right": "0",
"margin-right": "2.5rem"
},
".mbr-slider .modal-body .close": {
"background": "#1b1b1b"
},
".mbr-gallery-item > div::before": {
"content": "''",
"position": "absolute",
"left": "0",
"top": "0",
"width": "100%",
"height": "100%",
"background": "@overlayColor",
"opacity": "0",
"-webkit-transition": "0.2s opacity ease-in-out",
"transition": "0.2s opacity ease-in-out",
"& when (@gradOverlay)": {
"background": "linear-gradient(to left, @overlayColor, @overlayColor2) !important"
}
},
".mbr-gallery-item > div:hover": {
".mbr-gallery-title::before": {
"background": "transparent !important"
},
"&:before": {
"opacity": "@overlayOpacity !important"
}
},
".mbr-gallery-title": {
"font-size": ".9em",
"position": "absolute",
"display": "block",
"width": "100%",
"bottom": "0",
"padding": "1rem",
"color": "#fff",
"z-index": "2",
"&:before": {
"content": "\" \"",
"width": "100%",
"height": "100%",
"top": "0",
"left": "0",
"z-index": "-1",
"position": "absolute",
"background": "@overlayColor !important",
"opacity": "@overlayOpacity",
"-webkit-transition": "0.2s background ease-in-out",
"transition": "0.2s background ease-in-out",
"& when (@gradOverlay)": {
"background": "linear-gradient(to left, @overlayColor, @overlayColor2) !important"
}
}
},
".mbr-gallery-item > div > span": {
"color": "#ffffff"
}
},
"_name": "gallery1",
"_customHTML": "<section class=\"mbr-gallery mbr-slider-carousel\" group=\"Sliders & Gallery\" plugins=\"Masonry,BootstrapCarouselSwipe,Gallery,VimeoPlayer,SliderVideo\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"checkbox\" title=\"Full Width\" name=\"fullWidth\" checked>\n <input type=\"range\" title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"9\" step=\"1\" value=\"0\" inline>\n <input type=\"range\" title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"9\" step=\"1\" value=\"2\" inline>\n <input type=\"color\" title=\"Overlay Color\" name=\"overlayColor\" value=\"#232323\">\n <input type=\"checkbox\" title=\"Gradient Overlay\" name=\"gradOverlay\">\n <input type=\"color\" title=\"Overlay Color 2\" name=\"overlayColor2\" value=\"#45505b\" condition=\"gradOverlay\">\n <input type=\"range\" title=\"Overlay Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.7\" inline>\n <input type=\"color\" title=\"Background Color\" name=\"bgColor\" value=\"#073b4c\">\n\n <input type=\"gallery\" title=\"Gallery\" name=\"gallery\">\n <!-- End block parameters -->\n </mbr-parameters>\n\n <div mbr-class=\"{'container': !fullWidth}\">\n <div mbr-gallery=\"gallery\" mbr-gallery-spacing=\"1\" mbr-gallery-show-text></div>\n </div>\n\n</section>",
"_cid": "rVR2m3rh3m",
"_anchor": "gallery1-21",
"_protectedParams": [
"text_all",
"gallery__filtersTextStyle",
"gallery__filtersBtnStyle",
"gallery"
],
"_global": false,
"_once": false,
"_params": {
"text_all": "All",
"gallery__filtersTextStyle": "display-7",
"gallery__filtersBtnStyle": "btn-primary-outline",
"gallery": [
{
"tags": "Awesome",
"videoPreview": "@PROJECT_PATH@/assets/images/mobirise2020311-143512020-3-6-18-55-46.jpg",
"playVideo": true,
"videoUrl": "https://youtu.be/c_9Q0JeOLv4",
"image": "@THEME_PATH@/components/_images/background1.jpg",
"thumb": "@THEME_PATH@/components/_images/background1.jpg",
"alt": "",
"title": "",
"customStyle1": "display-7",
"caption": "করোনা প্রতিরোধে আমাদের দায়িত্ব কি কি?",
"active": true
},
{
"tags": "Responsive",
"videoPreview": "@PROJECT_PATH@/assets/images/mobirise2020311-143512020-3-6-18-55-57.jpg",
"playVideo": true,
"videoUrl": "https://youtu.be/JVVqBysl5jY",
"image": "@THEME_PATH@/components/_images/background2.jpg",
"thumb": "@THEME_PATH@/components/_images/background2.jpg",
"alt": "",
"title": "",
"customStyle1": "display-7",
"caption": "Safety measures against COVID-19 in public places <br>",
"active": false
},
{
"tags": "Creative",
"videoPreview": "@PROJECT_PATH@/assets/images/mobirise2020311-143512020-3-6-18-56-9.jpg",
"playVideo": true,
"videoUrl": "https://youtu.be/9wTCJ3_k6nA",
"image": "@THEME_PATH@/components/_images/background3.jpg",
"thumb": "@THEME_PATH@/components/_images/background3.jpg",
"alt": "",
"title": "",
"customStyle1": "display-7",
"caption": "করোনাভাইরাস নিয়ে কিছু সাধারণ জিজ্ঞাসা <br>",
"active": false
},
{
"tags": "Animated",
"videoPreview": "@PROJECT_PATH@/assets/images/mobirise2020311-143512020-3-6-18-56-20.jpg",
"playVideo": true,
"videoUrl": "https://youtu.be/kVFfhwxVPGw",
"image": "@THEME_PATH@/components/_images/background4.jpg",
"thumb": "@THEME_PATH@/components/_images/background4.jpg",
"alt": "",
"title": "",
"customStyle1": "display-7",
"caption": "5 ways to maintain a healthy lifestyle",
"active": false
}
]
}
},
{
"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)"
},
".mbr-section-subtitle": {
"color": "#767676",
"text-align": "left",
"line-height": "1.6"
},
".image-element": {
"position": "relative",
"z-index": "0",
"overflow": "hidden",
"img": {
"width": "100%",
"height": "100%",
"object-fit": "cover",
"object-position": "center center"
}
},
".wrapper": {
"padding": "2rem 1rem 1rem 1rem"
},
".card-overlay": {
"display": "none",
"background": "@cardColor"
},
"@media (min-width: 768px)": {
".image-element": {
"&:hover": {
".card-overlay": {
"opacity": "@cardColorOpacity",
"border-bottom-right-radius": "7rem"
},
".wrapper": {
"padding-top": "0",
"border-bottom-right-radius": "7rem",
".collapsed-content": {
"transition": "opacity 0.5s, max-height 3s",
"opacity": "1",
"max-height": "999px",
"border-bottom-right-radius": "7rem",
".mbr-section-btn": {
"border-bottom-right-radius": "7rem"
}
}
}
},
"&.popup-btn": {
"&:hover": {
".card-overlay": {
"border-bottom-right-radius": "0 !important"
},
".wrapper": {
"border-bottom-right-radius": "0 !important",
".collapsed-content": {
"border-bottom-right-radius": "0 !important",
".mbr-section-btn": {
"border-bottom-right-radius": "0 !important"
}
}
}
}
}
},
".wrapper": {
"position": "absolute",
"bottom": "0",
"width": "100%",
"padding": "1rem",
"background": "transparent",
".collapsed-content": {
"transition": "opacity 0.5s, max-height 1s",
"opacity": "0",
"max-height": "0px",
"overflow": "hidden"
}
},
".card-overlay": {
"transition": "all .5s",
"opacity": "0",
"display": "block"
}
},
"@media (max-width: 767px)": {
".card-title,.underline,.mbr-text,.mbr-section-btn,.mbr-section-subtitle, .mbr-section-title": {
"text-align": "center !important"
},
".wrapper": {
"background-color": "@cardColor"
}
},
".mbr-section-title": {
"text-align": "left"
},
".mbr-section-title,.underline": {
"text-align": "center",
"color": "#00ba57"
}
},
"_name": "extFeatures63",
"_customHTML": "<section class=\"extFeatures popup-btn-cards\" group=\"Features\" data-bg-video=\"{{bg.type == 'video'&&bg.value.url}}\" mbr-class=\"{'mbr-parallax-background': bg.parallax}\" plugins=\"mbr-popup-btns\">\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=\"4\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"9\" step=\"1\" value=\"1\">\n <input type=\"checkbox\" title=\"Show Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Show Subtitle\" name=\"showSubtitle\">\n <input type=\"checkbox\" title=\"Show Text\" name=\"showText\">\n <input type=\"checkbox\" title=\"Show Buttons\" name=\"showButtons\" checked> \n <select name=\"cards\" title=\"Cards\">\n <option value=\"1\">1</option>\n <option value=\"2\" selected>2</option>\n </select>\n <input type=\"color\" title=\"Card Hover\" name=\"cardColor\" value=\"#ffffff\"> \n <input type=\"range\" inline title=\"Card Hover Opacity\" name=\"cardColorOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0\"> \n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Background Image\" value=\"@PROJECT_PATH@/assets/images/hotline-bg-1920x1080.png\" parallax selected>\n <input type=\"color\" title=\"Background Color\" value=\"#ffffff\">\n <input type=\"video\" title=\"Background Video\" value=\"https://www.youtube.com/watch?v=36YgDDJ7XSc\">\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 <h2 class=\"align-center mbr-fonts-style mbr-section-title\" mbr-theme-style=\"display-2\" mbr-if=\"showTitle\" data-app-selector=\".mbr-section-title,.underline\"><b>Being future-ready in a post-pandemic world</b></h2>\n <div class=\"underline align-center\" mbr-if=\"showUnderline&&showTitle\">\n <div class=\"line\"></div>\n </div>\n <h3 class=\"mbr-section-subtitle align-center mbr-fonts-style mbr-light \" mbr-theme-style=\"display-5\" mbr-if=\"showSubtitle\" data-app-selector=\".mbr-section-subtitle\">\n Cards with popup text on large displays. In that case to change the <br>image click in on bottom right corner. On medium displays text will be<br> after card. In that case to change the image click on image in any place.\n </h3>\n <div class=\"row main justify-content-center\">\n <div class=\"col-lg-6 p-4\">\n <div class=\"image-element card-wrapper\">\n <img src=\"@PROJECT_PATH@/assets/images/feature-image-bylc-stories-1044x1044.png\" alt title>\n <div class=\"mbr-overlay card-overlay\"></div>\n <div class=\"wrapper\">\n \n <div class=\"collapsed-content\">\n <p class=\"mbr-text mbr-white mbr-fonts-style\" mbr-if=\"showText\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text, .mbr-section-btn\">\n Lorem ipsum dolor sit amet, consectetur adipisicing elit. Doloribus minima corrupti labore, aliquid est, pariatur natus.\n </p>\n <div class=\"mbr-section-btn\" mbr-buttons mbr-if=\"showButtons\" data-toolbar=\"-mbrBtnMove\" mbr-theme-style=\"display-4\"><a class=\"btn btn-md btn-primary\" href=\"https://blog.bylc.org/\" data-app-placeholder=\"Type Text\" target=\"_blank\">Learn More</a></div>\n </div>\n </div>\n </div>\n </div>\n <div class=\"col-lg-6 p-4\" mbr-if=\"cards==2\">\n <div class=\"image-element card-wrapper\">\n <img src=\"@PROJECT_PATH@/assets/images/feature-image-bylcx-1044x1044.png\" alt title>\n <div class=\"mbr-overlay card-overlay\"></div>\n <div class=\"wrapper\">\n \n <div class=\"collapsed-content\">\n <p class=\"mbr-text mbr-white mbr-fonts-style\" mbr-if=\"showText\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text, .mbr-section-btn\">\n Lorem ipsum dolor sit amet, consectetur adipisicing elit. Doloribus minima corrupti labore, aliquid est, pariatur natus.\n </p>\n <div class=\"mbr-section-btn\" mbr-buttons mbr-if=\"showButtons\" data-toolbar=\"-mbrBtnMove\" mbr-theme-style=\"display-4\"><a class=\"btn btn-md btn-primary\" href=\"https://x.bylc.org/\" data-app-placeholder=\"Type Text\" target=\"_blank\">Learn More</a></div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "rVUxz114AU",
"_anchor": "extFeatures63-3i",
"_PHPplaceholders": [],
"_JSplaceholders": [],
"_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": "@bg-value",
"& when (@gradientBg)": {
"background": "linear-gradient(90deg, @bg-value, @color2)"
}
},
"& when (@bg-type = 'image')": {
"background-image": "url(@bg-value)"
},
".container-fluid": {
"padding": "0 3rem"
},
".underline": {
"padding-top": ".5rem",
"padding-bottom": ".5rem",
".line": {
"width": "5rem",
"height": "3px",
"background": "linear-gradient(90deg, @primaryColor, @secondaryColor)",
"display": "inline-block"
}
},
".title-wrap": {
"padding-left": "0",
"padding-right": "0"
},
".image-wrap": {
"overflow": "hidden",
"width": "100%",
"img": {
"width": "100%",
"height": "100%",
"z-index": "1",
"transition": "all 0.5s ease-in-out",
"&:hover": {
"-webkit-transform": "scale(1.05)",
"transform": "scale(1.05)"
}
}
},
".content-section": {
"padding": "3rem"
},
".btn": {
"margin-top": "1rem",
"margin-left": "0rem",
"margin-right": "0rem"
},
".card-wrapper": {
"overflow": "hidden",
"margin-top": "1.6rem",
"background-color": "@cardColor",