-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.mobirise
2177 lines (2177 loc) · 199 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": "PORTAFOLIO COMPLETO",
"currentPage": "index.html",
"theme": {
"name": "mobirise4",
"title": "Mobirise 4",
"styling": {
"primaryColor": "#ffbc00",
"secondaryColor": "#ff3366",
"successColor": "#F7ED4A",
"infoColor": "#82786E",
"warningColor": "#879A9F",
"dangerColor": "#B1A374",
"mainFont": "Rubik",
"display1Font": "Roboto",
"display1Size": "3",
"display2Font": "Roboto",
"display2Size": "2",
"display5Font": "Roboto",
"display5Size": 1.5,
"display7Font": "Roboto",
"display7Size": "0.9",
"display4Font": "Roboto",
"display4Size": "0.8",
"isRoundedButtons": true,
"isAnimatedOnScroll": true,
"isScrollToTopButton": true
},
"additionalSetColors": [
"#ffbc00",
"#000000"
]
},
"path": "@PROJECT_PATH@",
"siteFonts": [
{
"css": "'Roboto', sans-serif",
"name": "Roboto",
"url": "https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i"
}
],
"versionFirst": "4.7.7",
"uniqCompNum": 28,
"versionPublish": "4.7.7",
"screenshot": "screenshot.png"
},
"pages": {
"index.html": {
"settings": {
"main": true,
"title": "Tania Sosa",
"meta_descr": "",
"header_custom": "",
"footer_custom": "",
"html_before": ""
},
"components": [
{
"_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-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"
},
"@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"
}
}
},
"_name": "header2",
"_customHTML": "<section class=\"header2\" group=\"Headers\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" plugins=\"Typed\" 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=\"checkbox\" title=\"Show Arrow\" name=\"showArrow\" condition=\"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 <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\">\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" value=\"@PROJECT_PATH@/assets/images/taniaparallax-2000x782.png\" title=\"Background Image\" parallax selected>\n <input type=\"color\" value=\"#000000\" title=\"Background Color\">\n <input type=\"video\" value=\"https://youtu.be/oui3_drxNB8\" title=\"Background Video\">\n </fieldset>\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" condition=\"bg.type !== 'color'\">\n <input type=\"color\" title=\"Overlay Color\" name=\"overlayColor\" value=\"rgb(7, 9, 21)\" 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 <header codition=\"showSubtitle && showAnimatedText\">Animated Text Settings</header>\n <select title=\"Words Title\" name=\"wordsTitle\" condition=\"showSubtitle && showAnimatedText\">\n <option value=\"title1\" selected>Title 1</option>\n <option value=\"title2\">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=\"#ffbc00\" condition=\"showSubtitle && showAnimatedText\">\n <input type=\"range\" inline title=\"Type Speed\" name=\"typeSpeed\" min=\"1\" max=\"100\" value=\"50\" step=\"1\" condition=\"showSubtitle && showAnimatedText\">\n <input type=\"text\" title=\"Word 1\" inline name=\"animatedWord1\" value=\"UX Designer\" condition=\"showSubtitle && showAnimatedText\">\n <input type=\"text\" title=\"Word 2\" inline name=\"animatedWord2\" value=\"Laboratoria Geek\" condition=\"showSubtitle && showAnimatedText\">\n <input type=\"text\" title=\"Word 3\" inline name=\"animatedWord3\" value=\"Gamer\" condition=\"showSubtitle && showAnimatedText\">\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\">\n <div class=\"mbr-white col-md-12\">\n <h1 class=\"mbr-section-title mbr-white mbr-bold mbr-fonts-style\" mbr-theme-style=\"display-1\" mbr-if=\"showTitle\" data-app-selector=\".mbr-section-title\">¡Hola!</h1>\n <div class=\"typed-text pb-3\" 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-white\" mbr-theme-style=\"display-1\">Soy Tania Sosa</span>\n <span mbr-if=\"showAnimatedText\">\n <span class=\"animated-element mbr-bold\" data-word1=\"{{animatedWord1}}\" data-word2=\"{{animatedWord2}}\" data-word3=\"{{animatedWord3}}\" data-speed=\"{{typeSpeed}}\">\n </span>\n </span>\n </div>\n <p class=\"mbr-section-text mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showText\" data-app-selector=\".mbr-section-text,.mbr-section-btn\">\n ESPECIALISTA EN CREAR EXPERIENCIAS DE USUARIO</p>\n <div mbr-buttons mbr-theme-style=\"display-4\" data-toolbar=\"-mbrBtnMove\" mbr-if=\"showButtons\" class=\"pt-3 mbr-section-btn\">\n <a class=\"btn-primary btn btn-md\" type=\"submit\">ABOUT ME</a>\n </div>\n </div>\n </div>\n </div>\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>",
"_anchor": "header2-1",
"_isUserblock": true,
"_sourceTheme": "portfoliom4",
"_cid": "qUBcrR4oj8",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"& when (@bg-type = 'color')": {
"background-color": "@bg-value"
},
"& when (@bg-type = 'image')": {
"background-image": "url(@bg-value)"
},
".mbr-section": {
"padding": "0"
},
".first-col, .second-col": {
"padding": "0 5%",
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)"
},
".second-col": {
"& when (@progressBg)": {
"background-color": "@progressBgColor"
}
},
".icon-transition span": {
"color": "rgb(255, 255, 255)",
"display": "block",
"height": "3em",
"line-height": "3em",
"border-radius": "50%",
"border": "2px solid @circleColor",
"width": "3em",
"-webkit-transition": "all 0.3s ease-out 0s",
"transition": "all 0.3s ease-out 0s",
"font-size": "14px"
},
".icon-transition span:hover": {
"background-color": "@circleHover"
},
".social-media": {
"display": "flex",
"padding-left": "0",
"ul": {
"li": {
"padding-right": "0.6rem",
"margin-bottom": ".5rem",
"display": "inline-block",
"text-align": "center"
},
"margin": "0",
"padding": "0",
"margin-bottom": "8px"
}
},
"@media (max-width: 767px)": {
".about-content": {
"padding": "0 1rem"
},
".typed-text": {
"text-align": "center"
},
".second-col": {
"padding": "1rem"
},
".social-media": {
"justify-content": "center",
"padding": "0 1rem",
"ul li": {
"padding": "0 0.3rem"
}
}
},
".mbr-section-title": {
"letter-spacing": "0.1em",
"margin-bottom": "0",
"color": "#ffbc00"
},
".mbr-section-title span": {
"color": "#ffbc00"
},
".mbr-section-subtitle": {
"color": "#ffffff",
"letter-spacing": "0.03em"
},
".progressbar-title p": {
"margin-bottom": "8px",
"letter-spacing": "0.03em"
},
".progressbar-title": {
"color": "white"
},
".progress": {
"width": "100%",
"height": "(@progressHeight * 1px)",
"border-radius": "0"
},
".progress_elements": {
"display": "flex",
"align-items": "center",
"justify-content": "center",
"flex-wrap": "wrap",
"> div": {
"flex": "0 0 100%",
"max-width": "100%"
}
},
".progress-bar": {
"height": "(@progressHeight * 1px)",
"background-color": "@progressColor"
},
".title-wrap": {
"display": "flex",
"justify-content": "space-between",
"-webkit-justify-content": "space-between"
},
".progressbar-number": {
"display": "inline-block"
},
".progress-primary": {
"background": "rgba(206, 206, 206, 0.4)",
"border": "none",
"outline": "none"
},
".progress-primary::-webkit-progress-bar": {
"background": "rgba(206, 206, 206, 0.4)"
},
".progress_value": {
"position": "relative",
"color": "@progressColor"
},
"progress[value]::-webkit-progress-bar": {
"background": "rgba(206, 206, 206, 0.4)"
},
"progress::-webkit-progress-value": {
"background": "@progressColor"
},
"progress[value]::-moz-progress-bar": {
"background": "@progressColor"
},
"progress::-ms-fill": {
"background": "@progressColor"
},
".progress1 .progressbar-number:before": {
"content": "'@{progress1}'"
},
".progress2 .progressbar-number:before": {
"content": "'@{progress2}'"
},
".progress3 .progressbar-number:before": {
"content": "'@{progress3}'"
},
".progress4 .progressbar-number:before": {
"content": "'@{progress4}'"
},
".progress5 .progressbar-number:before": {
"content": "'@{progress5}'"
},
".progress-bar-1": {
"width": "(@progress1 * 1%)"
},
".progress-bar-2": {
"width": "(@progress2 * 1%)"
},
".progress-bar-3": {
"width": "(@progress3 * 1%)"
},
".progress-bar-4": {
"width": "(@progress4 * 1%)"
},
".progress-bar-5": {
"width": "(@progress5 * 1%)"
}
},
"_name": "info2",
"_customHTML": "<section group=\"Info\" 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=\"8\" step=\"1\" value=\"8\">\n <input type=\"range\" inline=\"\" title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"8\">\n \n <input type=\"checkbox\" title=\"Show Title\" name=\"showTitle\" checked=\"\">\n <input type=\"checkbox\" title=\"Show Subttle\" name=\"showSubtitle\" checked=\"\">\n <input type=\"checkbox\" title=\"Show Text\" name=\"showText\" checked=\"\">\n <input type=\"checkbox\" title=\"Show Icons\" name=\"showIcons\">\n <select title=\"Icons\" name=\"iconsCount\" 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 <option value=\"5\">5</option>\n <option value=\"6\">6</option>\n </select>\n <input type=\"color\" title=\"Icon Color\" name=\"circleColor\" value=\"#ffffff\" condition=\"showIcons\">\n <input type=\"color\" title=\"Hover Icon Color\" name=\"circleHover\" value=\"#ffbc00\" condition=\"showIcons\">\n <select title=\"Progress Count\" name=\"progressCount\">\n <option value=\"1\">1</option>\n <option value=\"2\">2</option>\n <option value=\"3\">3</option>\n <option value=\"4\" selected=\"\">4</option>\n <option value=\"5\">5</option>\n </select>\n <input type=\"color\" title=\"Progress Color\" name=\"progressColor\" value=\"#ffbc00\">\n <input type=\"range\" inline=\"\" title=\"Progress Height\" name=\"progressHeight\" min=\"5\" max=\"25\" step=\"1\" value=\"11\">\n <input type=\"range\" inline=\"\" title=\"Progress 1\" name=\"progress1\" min=\"0\" max=\"100\" step=\"1\" value=\"100\">\n <input type=\"range\" inline=\"\" title=\"Progress 2\" name=\"progress2\" min=\"0\" max=\"100\" step=\"1\" value=\"80\" condition=\"progressCount > 1\">\n <input type=\"range\" inline=\"\" title=\"Progress 3\" name=\"progress3\" min=\"0\" max=\"100\" step=\"1\" value=\"70\" condition=\"progressCount > 2\">\n <input type=\"range\" inline=\"\" title=\"Progress 4\" name=\"progress4\" min=\"0\" max=\"100\" step=\"1\" value=\"70\" condition=\"progressCount > 3\">\n <input type=\"range\" inline=\"\" title=\"Progress 5\" name=\"progress5\" min=\"0\" max=\"100\" step=\"1\" value=\"70\" condition=\"progressCount > 4\">\n <input type=\"checkbox\" title=\"Progress Background\" name=\"progressBg\" checked=\"\">\n <input type=\"color\" title=\"Progress Background Color\" name=\"progressBgColor\" value=\"#000000\" condition=\"progressBg\">\n\n <fieldset type=\"background\" name=\"bg\" parallax=\"\">\n <input type=\"image\" title=\"Background Image\" value=\"@PROJECT_PATH@/assets/images/25299708-2097641273798099-505126941138226007-o-1-1000x667.jpg\" selected=\"\">\n <input type=\"color\" title=\"Background Color\" value=\"#000000\">\n <input type=\"video\" title=\"Background Video\" value=\"http://www.youtube.com/watch?v=uNCr7NdOJgw\">\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=\"#000000\" condition=\"overlay && bg.type !== 'color'\">\n <input type=\"range\" inline=\"\" title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.2\" condition=\"overlay && bg.type !== 'color'\">\n <!-- 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-fluid\">\n <div class=\"row\">\n <div class=\"first-col col-md-6\">\n <div class=\"about-content\">\n <h2 class=\"mbr-section-title pb-3 align-left mbr-bold mbr-fonts-style mbr-white\" mbr-theme-style=\"display-2\" mbr-if=\"showTitle\" data-app-selector=\".mbr-section-title\">ACERCA DE MI...</h2>\n <h3 mbr-if=\"showSubtitle\" class=\"mbr-section-subtitle align-left mbr-white mbr-light pb-3 mbr-fonts-style\" mbr-theme-style=\"display-5\">Estoy feliz de ser una Laboratoria-geek, disfruto mucho el proceso creativo detrás de la web, desde diseñar y maquetar hasta interrogar usuarios para conocer sus gustos y necesidades. <br>Mis súper poderes son: la perseverancia, el buen humor y la determinación.</h3>\n <p class=\"mbr-text align-left mbr-white mbr-fonts-style pb-3\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" mbr-article=\"\" data-app-selector=\".mbr-text, .mbr-section-btn\" data-multiline=\"\">Áreas de interés\n<br>Experiencia de Usuario, Tecnología, Desarrollo web, Videojuegos, Voluntariado.</p>\n <div class=\"social-media\" mbr-if=\"showIcons\">\n <ul>\n <li>\n <a class=\"icon-transition\" href=\"#\">\n <span mbr-icon=\"\" class=\"mbr-iconfont socicon-facebook socicon\">\n </span>\n </a>\n </li>\n <li mbr-if=\"iconsCount > 1\">\n <a class=\"icon-transition\" href=\"#\">\n <span mbr-icon=\"\" class=\"mbr-iconfont socicon-twitter socicon\">\n </span>\n </a>\n </li>\n <li mbr-if=\"iconsCount > 2\">\n <a class=\"icon-transition\" href=\"#\">\n <span mbr-icon=\"\" class=\"mbr-iconfont socicon-linkedin socicon\">\n </span>\n </a>\n </li>\n <li mbr-if=\"iconsCount > 3\">\n <a class=\"icon-transition\" href=\"#\">\n <span mbr-icon=\"\" class=\"mbr-iconfont socicon-youtube socicon\">\n </span>\n </a>\n </li>\n <li mbr-if=\"iconsCount > 4\">\n <a class=\"icon-transition\" href=\"#\">\n <span mbr-icon=\"\" class=\"mbr-iconfont socicon-rss socicon\" style=\"\"></span>\n </a>\n </li>\n <li mbr-if=\"iconsCount > 5\">\n <a class=\"icon-transition\" href=\"#\">\n <span mbr-icon=\"\" class=\"mbr-iconfont socicon-rss socicon\" style=\"\"></span>\n </a>\n </li>\n </ul>\n </div>\n </div>\n </div>\n <div class=\"second-col col-md-6\">\n <h2 class=\"mbr-section-title pb-3 align-left mbr-bold mbr-fonts-style mbr-white\" mbr-theme-style=\"display-2\" mbr-if=\"showTitle\" data-app-selector=\".mbr-section-title\">\n SOFT <span class=\"orange\">SKILLS</span>\n </h2>\n <h3 class=\"mbr-section-subtitle mbr-fonts-style align-left mbr-light\" mbr-theme-style=\"display-5\" mbr-if=\"showSubtitle\" data-app-selector=\".mbr-section-subtitle\">Avalados por Laboratoria Mexico</h3>\n <div class=\"row pt-4\">\n <div class=\"progress_elements col-md-12\">\n <div class=\"progress1 pb-3\">\n <div class=\"title-wrap\">\n <div class=\"progressbar-title mbr-fonts-style\" mbr-theme-style=\"display-7\">\n <p data-app-selector=\".progressbar-title p\">\n PROACTIVIDAD</p>\n </div>\n <div class=\"progress_value mbr-fonts-style\" mbr-theme-style=\"display-7\">\n <div class=\"progressbar-number\"></div>\n <span>%</span>\n </div>\n </div>\n <div class=\"progress\">\n <div class=\"progress-bar progress-bar-1\" role=\"progressbar\" aria-valuenow=\"100\" aria-valuemin=\"0\" aria-valuemax=\"100\"></div>\n </div>\n </div>\n \n <div class=\"progress2 pb-3\" mbr-if=\"progressCount > 1\">\n <div class=\"title-wrap\">\n <div class=\"progressbar-title mbr-fonts-style\" mbr-theme-style=\"display-7\">\n <p data-app-selector=\".progressbar-title p\">TRABAJO EN EQUIPO</p>\n </div>\n <div class=\"progress_value mbr-fonts-style\" mbr-theme-style=\"display-7\">\n <div class=\"progressbar-number\"></div>\n <span>%</span>\n </div>\n </div>\n <div class=\"progress\">\n <div class=\"progress-bar progress-bar-2\" role=\"progressbar\" aria-valuenow=\"100\" aria-valuemin=\"0\" aria-valuemax=\"100\"></div>\n </div>\n </div>\n \n <div class=\"progress3 pb-3\" mbr-if=\"progressCount > 2\">\n <div class=\"title-wrap\">\n <div class=\"progressbar-title mbr-fonts-style\" mbr-theme-style=\"display-7\">\n <p data-app-selector=\".progressbar-title p\">COMUNICA SU PROGRESO Y PIDE AYUDA A TIEMPO </p>\n </div>\n <div class=\"progress_value mbr-fonts-style\" mbr-theme-style=\"display-7\">\n <div class=\"progressbar-number\"></div>\n <span>%</span>\n </div>\n </div>\n <div class=\"progress\">\n <div class=\"progress-bar progress-bar-3\" role=\"progressbar\" aria-valuenow=\"100\" aria-valuemin=\"0\" aria-valuemax=\"100\"></div>\n </div>\n </div>\n \n <div class=\"progress4 pb-3\" mbr-if=\"progressCount > 3\">\n <div class=\"title-wrap\">\n <div class=\"progressbar-title mbr-fonts-style\" mbr-theme-style=\"display-7\">\n <p data-app-selector=\".progressbar-title p\">INGLÉS INTERMEDIO</p>\n </div>\n <div class=\"progress_value mbr-fonts-style\" mbr-theme-style=\"display-7\">\n <div class=\"progressbar-number\"></div>\n <span>%</span>\n </div>\n </div>\n <div class=\"progress\">\n <div class=\"progress-bar progress-bar-4\" role=\"progressbar\" aria-valuenow=\"100\" aria-valuemin=\"0\" aria-valuemax=\"100\"></div>\n </div>\n </div>\n \n <div class=\"progress5 pb-3\" mbr-if=\"progressCount > 4\">\n <div class=\"title-wrap\">\n <div class=\"progressbar-title mbr-fonts-style\" mbr-theme-style=\"display-7\">\n <p data-app-selector=\".progressbar-title p\">INGLÉS INTERMEDIO\n<br></p>\n </div>\n <div class=\"progress_value mbr-fonts-style\" mbr-theme-style=\"display-7\">\n <div class=\"progressbar-number\"></div>\n <span>%</span>\n </div>\n </div> \n <div class=\"progress\"> \n <div class=\"progress-bar progress-bar-5\" role=\"progressbar\" aria-valuenow=\"100\" aria-valuemin=\"0\" aria-valuemax=\"100\"></div>\n </div>\n </div>\n </div> \n </div>\n </div>\n </div>\n </div>\n</section>",
"_anchor": "info2-3",
"_isUserblock": true,
"_sourceTheme": "portfoliom4",
"_cid": "qUBcuzoE9s",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"background-color": "@bgColor",
"blockquote": {
"color": "#232323",
"font-size": "inherit",
"font-style": "normal"
},
".mbr-iconfont": {
"z-index": "1",
"position": "absolute",
"font-size": "9rem",
"color": "@quoteColor",
"opacity": ".1",
"&.right-top": {
"right": "-1rem",
"top": "-1rem"
}
},
"BLOCKQUOTE": {
"color": "#ffffff"
}
},
"_name": "content1",
"_customHTML": "<section class=\"mbr-section article content1\">\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=\"5\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"5\">\n <input type=\"color\" title=\"Quote Color\" name=\"quoteColor\" value=\"#ffffff\">\n <input type=\"color\" title=\"Background Color\" name=\"bgColor\" value=\"#000000\">\n <!-- End block parameters -->\n </mbr-parameters> \n\n <div class=\"container\">\n <div class=\"media-container-row\">\n <div class=\"mbr-text col-12 col-md-8 mbr-fonts-style\" mbr-theme-style=\"display-5\" data-multiline mbr-article>\n <blockquote><p>'Aprendedora' profesional, mi constante curiosidad por conocer el mundo que me rodea no tiene límites, me siento orgullosa y afortunada de poder participar activamente en la revolución 2.0 </p><p><span style=\"font-size: inherit;\">Cuando se trata de aprender algo nuevo y crear, nada me detiene...</span><br></p><p><span style=\"font-size: inherit;\">¡Al infinito y mas allá!</span></p></blockquote>\n <span mbr-icon class=\"mbr-iconfont inactive mbri-quote-right right-top\"></span>\n </div>\n </div>\n </div>\n</section>",
"_anchor": "content1-2",
"_isUserblock": true,
"_sourceTheme": "portfoliom4",
"_cid": "qUBcsVRlzW",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_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-iconfont": {
"font-size": "34px",
"transition": "color .3s"
},
".mbr-section-title": {
"margin": "0"
},
".underline": {
"margin-top": "-0.5rem",
"margin-bottom": "-0.5rem",
".line": {
"width": "3rem",
"height": "2px",
"background": "@underlineColor",
"display": "inline-block"
}
},
".card-img": {
"text-align": "left"
},
".row-item": {
"padding-bottom": "2rem",
"&:hover": {
".card-img .mbr-iconfont": {
"color": "@onHoverColor !important"
}
}
},
"@media (max-width: 767px)": {
".card-img,.mbr-text,.mbr-card-title, .mbr-section-subtitle,.mbr-section-title, .underline": {
"text-align": "center !important"
}
},
".mbr-section-title,.underline": {
"color": "#ffbc00"
},
".mbr-card-title,.card-img": {
"color": "#ffbc00"
},
".mbr-text": {
"color": "#ffffff"
},
".mbr-section-subtitle": {
"color": "#ffffff"
}
},
"_name": "features1",
"_customHTML": "<section group=\"Animated 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=\"7\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"9\" step=\"1\" value=\"3\">\n <input type=\"checkbox\" title=\"Show Section Title\" name=\"showSectionTitle\" checked>\n <input type=\"checkbox\" title=\"Show Underline\" name=\"showUnderline\" checked condition=\"showSectionTitle\">\n <input type=\"color\" title=\"Underline Color\" name=\"underlineColor\" value=\"#444444\" condition=\"showUnderline && showSectionTitle\">\n <input type=\"checkbox\" title=\"Show Subtitle\" name=\"showSubtitle\" checked>\n <input type=\"checkbox\" title=\"Show Content Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Show Text\" name=\"showText\" checked>\n <input type=\"checkbox\" title=\"Show Icons\" name=\"swIcon\" checked>\n <input type=\"color\" title=\"Icons On Hover\" name=\"onHoverColor\" value=\"#ffbc00\" condition=\"swIcon\">\n <select title=\"Cards\" name=\"cardsAmount\">\n <option value=\"1\">1</option>\n <option value=\"2\">2</option>\n <option value=\"3\">3</option>\n <option value=\"4\" selected>4</option>\n </select>\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Background Image\" value=\"@PROJECT_PATH@/assets/images/background7.jpg\" parallax>\n <input type=\"color\" title=\"Background Color\" value=\"#000000\" selected>\n <input type=\"video\" title=\"Background Video\" value=\"http://www.youtube.com/watch?v=uNCr7NdOJgw\">\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-fonts-style mbr-section-title align-center\" mbr-theme-style=\"display-2\" mbr-if=\"showSectionTitle\" data-app-selector=\".mbr-section-title,.underline\"><b>HABILIDADES TÉCNICAS</b></h2>\n <div class=\"underline align-center\" mbr-if=\"showUnderline && showSectionTitle\">\n <div class=\"line\"></div>\n </div>\n\n <h3 class=\"mbr-fonts-style mbr-section-subtitle align-center mbr-light pt-3\" mbr-theme-style=\"display-5\" mbr-if=\"showSubtitle\" data-app-selector=\".mbr-section-subtitle\">(UNA PEQUEÑA MUESTRA DE LO QUE SÉ Y ME GUSTA SEGUIR APRENDIENDO EN MIS RATOS LIBRES)</h3>\n\n <div class=\"row justify-content-center pt-5\">\n <div class=\"col-md-6 row-item\" mbr-if=\"cardsAmount > 0\" mbr-class=\"{'col-lg-3': cardsAmount == '4',\n 'col-lg-4': cardsAmount == '3',\n 'col-lg-6': cardsAmount == '2',\n 'col-lg-6': cardsAmount =='1'}\">\n <div class=\"card-img pb-3 align-left\">\n <span mbr-if=\"swIcon\" mbr-icon class=\"mbr-iconfont mbri-github\"></span>\n </div>\n <h4 class=\"mbr-fonts-style mbr-card-title\" mbr-theme-style=\"display-5\" mbr-if=\"showTitle\" data-app-selector=\".mbr-card-title,.card-img\">Frontend</h4>\n\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">- HTML5<br>- CSS <br>- BOOTSTRAP<br>- MATERIALIZE<br>- ATOM<br>- GITHUB</p>\n </div>\n\n <div class=\"col-md-6 row-item\" mbr-if=\"cardsAmount > 1\" mbr-class=\"{'col-lg-3': cardsAmount == '4',\n 'col-lg-4': cardsAmount == '3',\n 'col-lg-6': cardsAmount == '2',\n 'col-lg-6': cardsAmount =='1'}\">\n <div class=\"card-img pb-3 align-left\">\n <span mbr-if=\"swIcon\" mbr-icon class=\"mbr-iconfont mbri-growing-chart\"></span>\n </div>\n <h4 class=\"mbr-fonts-style mbr-card-title\" mbr-theme-style=\"display-5\" mbr-if=\"showTitle\" data-app-selector=\".mbr-card-title,.card-img\">UI/UX</h4>\n\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">DESIGN THINKING<br>- RESEARCH TOOLS<br>GOOGLE ANALYTICS, HOTJAR<br>GOOGLE FORMS, SURVEY MONKEY<br>- DESIGN <br>BALSAMIQ, MARVEL, MOBIRISE, <br>CANVA.<br> </p>\n </div>\n\n <div class=\"col-md-6 row-item\" mbr-if=\"cardsAmount > 2\" mbr-class=\"{'col-lg-3': cardsAmount == '4',\n 'col-lg-4': cardsAmount == '3',\n 'col-lg-6': cardsAmount == '2',\n 'col-lg-6': cardsAmount =='1'}\">\n <div class=\"card-img pb-3 align-left\">\n <span mbr-if=\"swIcon\" mbr-icon class=\"mbr-iconfont mbri-briefcase\"></span>\n </div>\n <h4 class=\"mbr-fonts-style mbr-card-title\" mbr-theme-style=\"display-5\" mbr-if=\"showTitle\" data-app-selector=\".mbr-card-title,.card-img\">BUSINESS</h4>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">- BUSINESS MODEL CANVAS<br>- FODA<br>- PESTEL<br>- USER PERSONA<br>- CUSTOMER JOURNEY MAP<br>- EMPATHY MAP<br><br></p>\n </div>\n\n <div class=\"col-md-6 row-item\" mbr-if=\"cardsAmount > 3\" mbr-class=\"{'col-lg-3': cardsAmount == '4',\n 'col-lg-4': cardsAmount == '3',\n 'col-lg-6': cardsAmount == '2',\n 'col-lg-6': cardsAmount =='1'}\">\n <div class=\"card-img pb-3 align-left\">\n <span mbr-if=\"swIcon\" mbr-icon class=\"mbr-iconfont mbri-like\"></span>\n </div>\n <h4 class=\"mbr-fonts-style mbr-card-title\" mbr-theme-style=\"display-5\" mbr-if=\"showTitle\" data-app-selector=\".mbr-card-title,.card-img\">BONUS</h4>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">- AGILE\n<br>- SCRUM\n<br>- TRELLO</p>\n </div>\n </div>\n </div>\n</section>",
"_anchor": "features1-4",
"_isUserblock": true,
"_sourceTheme": "portfoliom4",
"_cid": "qUBcC5dLgw",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_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-title": {
"letter-spacing": "0.03em",
"color": "#232323",
"margin": "0",
"padding": "0",
"& when not (@showCardUnderline)": {
"padding-bottom": "1.5rem"
}
},
".card": {
"margin-bottom": "2rem"
},
".card-box": {
"word-break": "break-word",
"padding-top": "2rem",
"p": {
"color": "#444",
"letter-spacing": "0.03em",
"margin": "0",
"padding-bottom": "1.5rem"
}
},
".btn": {
"margin": ".3rem"
},
".mbr-section-title": {
"margin": "0"
},
".card-underline,.underline": {
"margin-top": "-0.5rem",
"margin-bottom": "-0.5rem",
".line": {
"width": "3rem",
"height": "2px",
"background": "@underlineColor",
"display": "inline-block"
}
},
".card-underline": {
"margin-bottom": "1.5rem",
"margin-top": "0 !important",
".line": {
"background": "@cardUnderlineColor"
}
},
"@media (max-width: 767px)": {
".row.blog-block": {
"padding": "0 1rem"
}
},
"@media screen and (~'-ms-high-contrast: active'), (~'-ms-high-contrast: none')": {
".row-content": {
"min-width": "100%"
},
".card": {
"display": "block"
}
},
".mbr-section-title,.underline": {
"color": "#ffbc00"
},
".mbr-section-subtitle": {
"color": "#ffffff"
},
".card-title,.card-underline": {
"color": "#ffbc00"
},
".card-box > p, .mbr-section-btn": {
"color": "#ffffff"
}
},
"_name": "features8",
"_customHTML": "<section class=\"features8\" 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=\"3\">\n <input type=\"range\" inline=\"\" title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"9\" step=\"1\" value=\"3\">\n <input type=\"checkbox\" title=\"Show Main Title\" name=\"showMaintitle\" checked=\"\">\n <input type=\"checkbox\" title=\"Show Underline\" name=\"showUnderline\" condition=\"showMaintitle\" checked=\"\">\n <input type=\"color\" title=\"Underline Color\" name=\"underlineColor\" value=\"#ffbc00\" condition=\"showMaintitle && showMaintitle\">\n <input type=\"checkbox\" title=\"Show Subtitle\" name=\"showSubtitle\" checked=\"\">\n <input type=\"checkbox\" title=\"Show Title\" name=\"showTitle\" checked=\"\">\n <input type=\"checkbox\" title=\"Show Card Underline\" name=\"showCardUnderline\" checked=\"\" condition=\"showTitle\">\n <input type=\"color\" title=\"Card Underline Color\" name=\"cardUnderlineColor\" value=\"#ffbc00\" condition=\"showMaintitle && showTitle\">\n <input type=\"checkbox\" title=\"Show Text\" name=\"showText\" checked=\"\">\n <input type=\"checkbox\" title=\"Show Buttons\" name=\"showButtons\" checked=\"\">\n <select title=\"Cards\" name=\"cardsAmount\">\n <option value=\"1\">1</option>\n <option value=\"2\">2</option>\n <option value=\"3\">3</option>\n <option value=\"4\" selected=\"\">4</option>\n <option value=\"5\">5</option>\n <option value=\"6\">6</option>\n </select>\n\n <fieldset type=\"background\" name=\"bg\" parallax=\"\">\n <input type=\"image\" title=\"Background Image\" value=\"@PROJECT_PATH@/assets/images/background2.jpg\" parallax=\"\">\n <input type=\"color\" title=\"Background Color\" value=\"#000000\" selected=\"\">\n <input type=\"video\" title=\"Background Video\" value=\"https://www.youtube.com/watch?v=l8UXhtqV6hU\">\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=\"#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 <div class=\"row blog-block\">\n <div class=\"col-md-12\">\n <h2 class=\"mbr-section-title mbr-fonts-style align-center\" mbr-theme-style=\"display-2\" mbr-if=\"showMaintitle\" data-app-selector=\".mbr-section-title,.underline\"><b>Proyectos</b></h2>\n <div class=\"underline align-center\" mbr-if=\"showUnderline && showMaintitle\">\n <div class=\"line\"></div>\n </div>\n <h3 class=\"mbr-section-subtitle mbr-light mbr-fonts-style pt-3 align-center\" mbr-theme-style=\"display-5\" data-app-selector=\".mbr-section-subtitle\" mbr-if=\"showSubtitle\">\n Proyectos desarrollados en colaboración con Save The Children, BBVA Bancomer y Volaris <br>elaborados como parte de la currícula de UX Design en Laboratoria Mexico.<br><br>* BONUS \"Érase una vez\" proyecto ganador del segundo lugar de el Hackathon interno de Laboratoria Mexico 5ta generación *</h3>\n </div>\n\n <div class=\"row row-content justify-content-center\">\n <div class=\"card py-3 col-12 col-md-6\" mbr-class=\"{'col-lg-4': cardsAmount == '3'|| cardsAmount =='5'|| cardsAmount== '6'}\">\n <div class=\"card-wrapper\">\n <div class=\"card-img\">\n <a href=\"https://adrianadillarza.github.io/savethechildren-landing/\" target=\"_blank\"><img src=\"@PROJECT_PATH@/assets/images/landing-720x330.png\" title=\"\" alt=\"\"></a>\n </div>\n <div class=\"card-box\">\n <h4 class=\"card-title mbr-fonts-style mbr-bold align-center\" mbr-theme-style=\"display-5\" mbr-if=\"showTitle\" data-app-selector=\".card-title,.card-underline\">Save the Children</h4>\n <div class=\"card-underline align-center\" mbr-if=\"showCardUnderline && showTitle\">\n <div class=\"line\"></div>\n </div>\n <p class=\"mbr-text mbr-fonts-style align-center\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".card-box > p, .mbr-section-btn\">\n OBJETIVO <br>Convertir a los usuarios pagados que visitan la pagina Save The Children Mexico en donantes recurrentes, mediante la optimizacion del journey de donativo y una propuesta de Landing Page. \n </p>\n \n </div>\n <div mbr-buttons=\"\" mbr-if=\"showButtons\" mbr-theme-style=\"display-4\" class=\"mbr-section-btn align-center\"><a href=\"https://tanianaoh.github.io/UXSPRINT2/\" class=\"btn btn-white-outline\" target=\"_blank\">PROCESO DE RESEARCH</a></div> \n </div>\n </div>\n \n <div class=\"card py-3 col-12 col-md-6\" mbr-if=\"cardsAmount > 1\" mbr-class=\"{'col-lg-4': cardsAmount == '3'|| cardsAmount =='5'|| cardsAmount== '6'}\">\n <div class=\"card-wrapper\">\n <div class=\"card-img\">\n <img src=\"@PROJECT_PATH@/assets/images/metas-1110x509.png\" title=\"\" alt=\"\">\n </div>\n <div class=\"card-box\">\n <h4 class=\"card-title mbr-fonts-style mbr-bold align-center\" mbr-theme-style=\"display-5\" mbr-if=\"showTitle\" data-app-selector=\".card-title,.card-underline\">\n Metas compartidas BBVA Bancomer</h4>\n <div class=\"card-underline align-center\" mbr-if=\"showCardUnderline && showTitle\">\n <div class=\"line\"></div>\n </div>\n <p class=\"mbr-text mbr-fonts-style align-center\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".card-box > p, .mbr-section-btn\">OBJETIVO<br>Sustentar la propuesta para la implementación de metas compartidas en la aplicación de BBVA Plan y la optimización de la misma, con el desarrollo de un sistema de diseño más amigable y unificado. <br></p>\n </div>\n <div mbr-buttons=\"\" mbr-if=\"showButtons\" mbr-theme-style=\"display-4\" class=\"mbr-section-btn align-center\"><a href=\"https://github.com/TaniaNaOH/BBVA-Bancomer-Metas-Compartidas#metas-compartidas-bbva-bancomer\" class=\"btn btn-white-outline\" target=\"_blank\">PROCESO DE RESEARCH</a></div> \n </div>\n </div>\n \n <div class=\"card py-3 col-12 col-md-6\" mbr-if=\"cardsAmount > 2\" mbr-class=\"{'col-lg-4': cardsAmount == '3'|| cardsAmount =='5'|| cardsAmount== '6'}\">\n <div class=\"card-wrapper\">\n <div class=\"card-img\">\n <a href=\"https://tanianaoh.github.io/v.pass/\" target=\"_blank\"><img src=\"@PROJECT_PATH@/assets/images/vpass-1110x503.png\" title=\"\" alt=\"\"></a>\n </div>\n <div class=\"card-box\"> \n <h4 class=\"card-title mbr-fonts-style mbr-bold align-center\" mbr-theme-style=\"display-5\" mbr-if=\"showTitle\" data-app-selector=\".card-title,.card-underline\">\n Volaris V.Pass</h4>\n <div class=\"card-underline align-center\" mbr-if=\"showCardUnderline && showTitle\">\n <div class=\"line\"></div>\n </div>\n <p class=\"mbr-text mbr-fonts-style align-center\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".card-box > p, .mbr-section-btn\">OBJETIVO<br>Dar a conocer la Membresía V.Pass de Volaris con sus beneficios, terminos y condiciones, incrementar la adquisición del servicio.<br>Optimizar el proceso de login y la redención del beneficio <br>de compra de boletos de V.Pass a precio preferencial </p>\n </div>\n <div mbr-buttons=\"\" mbr-if=\"showButtons\" mbr-theme-style=\"display-4\" class=\"mbr-section-btn align-center\"><a href=\"https://github.com/TaniaNaOH/v.pass#proyecto-volaris-vpass\" class=\"btn btn-white-outline\" target=\"_blank\">PROCESO DE RESEARCH</a></div> \n </div>\n </div>\n \n <div class=\"card py-3 col-12 col-md-6\" mbr-if=\"cardsAmount > 3\" mbr-class=\"{'col-lg-4': cardsAmount == '3'|| cardsAmount =='5'|| cardsAmount== '6'}\">\n <div class=\"card-wrapper\">\n <div class=\"card-img\">\n <a href=\"https://github.com/TaniaNaOH/hackaton-cuentos#proyecto-erase-una-vez\" target=\"_blank\"><img src=\"@PROJECT_PATH@/assets/images/erase-1110x506.png\" title=\"\" alt=\"\"></a>\n </div>\n <div class=\"card-box\">\n <h4 class=\"card-title mbr-fonts-style mbr-bold align-center\" mbr-theme-style=\"display-5\" mbr-if=\"showTitle\" data-app-selector=\".card-title,.card-underline\">ÉRASE UNA VEZ... </h4>\n <div class=\"card-underline align-center\" mbr-if=\"showCardUnderline && showTitle\">\n <div class=\"line\"></div>\n </div>\n <p class=\"mbr-text mbr-fonts-style align-center\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".card-box > p, .mbr-section-btn\"><br>Proyecto ganador del Segundo lugar del Hackathon interno de <br>LABORATORIA México 5ta generación.<br>Web-app creada como un medio de esparcimiento para compartir <br>con los peques del hogar la tradición de leer un cuento en familia.\n </p>\n \n </div>\n <div mbr-buttons=\"\" mbr-if=\"showButtons\" mbr-theme-style=\"display-4\" class=\"mbr-section-btn align-center\"><a href=\"https://biokah.github.io/hackaton-cuentos\" class=\"btn btn-white-outline\" target=\"_blank\">VISITA LA WEB-APP<br></a></div> \n </div>\n </div>\n <div class=\"card py-3 col-12 col-md-6\" mbr-class=\"{'col-lg-4': cardsAmount == '3'|| cardsAmount =='5'|| cardsAmount== '6'}\" mbr-if=\"cardsAmount>4\">\n <div class=\"card-wrapper\">\n <div class=\"card-img\">\n <img src=\"@PROJECT_PATH@/assets/images/02.jpg\" title=\"\">\n </div>\n <div class=\"card-box\">\n <h4 class=\"card-title mbr-fonts-style mbr-bold align-center\" mbr-theme-style=\"display-5\" mbr-if=\"showTitle\" data-app-selector=\".card-title,.card-underline\">\n Design In Web\n </h4>\n <div class=\"card-underline align-center\" mbr-if=\"showCardUnderline && showTitle\">\n <div class=\"line\"></div>\n </div>\n <p class=\"mbr-text mbr-fonts-style align-center\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".card-box > p, .mbr-section-btn\">\n Lorem ipsum dolor sit amet, consectetur elit. Nulla convallis pulvinar vestibulum. Donec eleifend, sem sed dictum mattis, turpis purus. \n </p>\n </div>\n <div mbr-buttons=\"\" mbr-if=\"showButtons\" mbr-theme-style=\"display-4\" class=\"mbr-section-btn align-center\">\n <a href=\"https://mobirise.com\" class=\"btn btn-primary\">READ MORE</a>\n </div> \n </div>\n </div>\n \n <div class=\"card py-3 col-12 col-md-6\" mbr-if=\"cardsAmount > 5\" mbr-class=\"{'col-lg-4': cardsAmount == '3'|| cardsAmount =='5'|| cardsAmount== '6'}\">\n <div class=\"card-wrapper\">\n <div class=\"card-img\">\n <img src=\"@PROJECT_PATH@/assets/images/03.jpg\" title=\"\">\n </div>\n <div class=\"card-box\">\n <h4 class=\"card-title mbr-fonts-style mbr-bold align-center\" mbr-theme-style=\"display-5\" mbr-if=\"showTitle\" data-app-selector=\".card-title,.card-underline\">\n Good Photo\n </h4>\n <div class=\"card-underline align-center\" mbr-if=\"showCardUnderline && showTitle\">\n <div class=\"line\"></div>\n </div>\n <p class=\"mbr-text mbr-fonts-style align-center\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".card-box > p, .mbr-section-btn\">\n Lorem ipsum dolor sit amet, consectetur elit. Nulla convallis pulvinar vestibulum. Donec eleifend, sem sed dictum mattis, turpis purus.\n </p>\n </div>\n <div mbr-buttons=\"\" mbr-if=\"showButtons\" mbr-theme-style=\"display-4\" class=\"mbr-section-btn align-center\">\n <a href=\"https://mobirise.com\" class=\"btn btn-primary\">READ MORE</a>\n </div> \n </div>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_anchor": "features8-5",
"_isUserblock": true,
"_sourceTheme": "portfoliom4",
"_cid": "qUBcDJOVi4",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_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-title": {
"margin": "0"
},
".underline": {
"margin-top": "-0.5rem",
"margin-bottom": "-0.5rem",
".line": {
"width": "3rem",
"height": "2px",
"background": "@underlineColor",
"display": "inline-block"
}
},
".slider-testimonials": {
"background": "rgba(255, 255, 255, 0.8) none repeat scroll 0 0",
"display": "inline-block",
"outline": "1px solid rgba(0, 0, 0, 0.2)",
"outline-offset": "-15px",
"padding": "65px 50px",
"position": "relative",
"text-align": "center"
},
".carousel-item": {
"justify-content": "center"
},
".carousel-item.active, .carousel-item-next, .carousel-item-prev": {
"display": "flex"
},
".carousel-control": {
"transition": "all .3s",
"opacity": "1",
"background-color": "@arrowsColor",
"color": "contrast(@arrowsColor)",
"position": "absolute",
"width": "40px",
"height": "40px",
"top": "46%",
"margin-top": "2rem",
"border-width": "1px",
"&.carousel-control-prev": {
"left": "-25px",
"&:hover": {
"left": "-30px"
}
},
"&.carousel-control-next": {
"right": "-25px",
"&:hover": {
"right": "-30px"
}
},
".mbr-iconfont": {
"font-size": "1rem"
},
"&:hover": {
"background-color": "@primaryColor"
}
},
".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: 767px)": {
".carousel-control-prev,.carousel-control-next": {
"display": "none"
},
".mbr-section-title": {
"padding-bottom": "0"
},
".slider-testimonials": {
"padding": "2rem 1rem"
}
},
"@media (max-width: 230px)": {
".user_image": {
"width": "100%",
"height": "auto"
}
},
".carousel-row:hover": {
".carousel-control": {
"visibility": "visible"
}
},
".user_name, .user_desk": {
"text-align": "right"
},
"@media screen and (~'-ms-high-contrast: active'), (~'-ms-high-contrast: none')": {
".slider-testimonials": {
"min-width": "100%",
"outline": "15px solid rgba(255, 255, 255, 0.8)",
"border": "1px solid rgba(0, 0, 0, 0.2)"
},
".carousel-control-prev": {
"left": "-40px !important",
"&:hover": {
"left": "-45px !important"
}
},
".carousel-control-next": {
"right": "-40px !important",
"&:hover": {
"right": "-45px !important"
}
}
},
".mbr-section-title,.underline": {
"color": "#ffbc00"
}
},
"_name": "testimonials1",
"_customHTML": "<section class=\"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\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" title=\"Padding Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"4\" inline>\n <input type=\"range\" title=\"Padding Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"4\" inline>\n <input type=\"checkbox\" title=\"Show Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Show Underline\" name=\"showUnderline\" checked condition=\"showTitle\">\n <input type=\"color\" title=\"Underline Color\" name=\"underlineColor\" value=\"#ffffff\" condition=\"showUnderline && showTitle\">\n <input type=\"checkbox\" title=\"Show Subtitle\" name=\"showSubtitle\">\n <input type=\"range\" inline title=\"Count Items\" name=\"testimonialsSlides\" min=\"1\" max=\"20\" step=\"1\" value=\"5\">\n <input type=\"checkbox\" title=\"Show Author Name\" name=\"showName\" checked>\n <input type=\"checkbox\" title=\"Show Author Title\" name=\"showDesk\" checked>\n <input type=\"color\" title=\"Arrows Color\" name=\"arrowsColor\" value=\"#000000\">\n\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Background Image\" value=\"@PROJECT_PATH@/assets/images/background7.jpg\">\n <input type=\"color\" title=\"Background Color\" value=\"#000000\" selected>\n <input type=\"video\" title=\"Background Video\" value=\"https://youtu.be/oui3_drxNB8\">\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=\"#444444\" 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\n<!-- <div class=\"container-fluid\"> -->\n <div class=\"container text-center\">\n <h2 class=\" mbr-section-title mbr-fonts-style mbr-white\" mbr-theme-style=\"display-2\" mbr-if=\"showTitle\" data-app-selector=\".mbr-section-title,.underline\"><b>OPINIONES DE MIS MENTORES</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 mbr-light mbr-fonts-style pt-3 mbr-white\" mbr-theme-style=\"display-5\" data-app-selector=\".mbr-section-subtitle\" mbr-if=\"showSubtitle\"></h3>\n <div class=\"row justify-content-center carousel-row\">\n <div class=\"col-md-10\">\n <div class=\"carousel slide pt-5\" data-ride=\"carousel\" role=\"listbox\">\n <div class=\"slider-testimonials\">\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 <a href=\"https://www.linkedin.com/in/lucile-baratier-67a00273/\" target=\"_blank\"><img src=\"@PROJECT_PATH@/assets/images/lucille-258x258.jpg\" alt title></a>\n </div>\n <div class=\"user_text\">\n <p class=\"mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".user_text\">Tania tiene una gran motivación por aprender <br>y armar productos digitales. <br>No le teme a ningun reto, al contrario: siempre pide más. Nos impresiono su compromiso e interés infinito por el mundo tec. \n<br>\n<br><br><br></p>\n </div>\n <div mbr-text class=\"user_name mbr-bold pb-2 mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showName\" data-app-selector=\".user_name\">Lucile Baratier</div>\n <div mbr-text class=\"user_desk mbr-light mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showDesk\" data-app-selector=\".user_desk\">\n Training Manager Laboratoria</div>\n </div>\n </div>\n \n <div class=\"carousel-item\">\n <div class=\"user col-md-8\">\n <div class=\"user_image\">\n <a href=\"https://www.linkedin.com/in/shirley-startary/\" target=\"_blank\"><img src=\"@PROJECT_PATH@/assets/images/sil-333x333.jpg\" alt title></a>\n </div>\n <div class=\"user_text\">\n <p class=\"mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".user_text\">Tania es una mujer muy perseverante, todo el tiempo pide feedback así como también pide ayuda cuando lo considera necesario. <br>Es una mujer proactiva y busca el crecimiento de su equipo.\n<br>\n<br><br></p>\n </div>\n <div mbr-text class=\"user_name mbr-bold pb-2 mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showName\" data-app-selector=\".user_name\">Silvana Suarez</div>\n <div mbr-text class=\"user_desk mbr-light mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showDesk\" data-app-selector=\".user_desk\">\n Front end Developer Laboratoria</div>\n </div>\n </div><div class=\"carousel-item\">\n <div class=\"user col-md-8\">\n <div class=\"user_image\">\n <a href=\"https://www.linkedin.com/in/karla-nava/\" target=\"_blank\"><img src=\"@PROJECT_PATH@/assets/images/karla-400x400.jpg\" alt title></a>\n </div>\n <div class=\"user_text\">\n <p class=\"mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".user_text\">Tania siempre busca ir más allá sin importar los retos que encuentre en el camino. Es muy curiosa y esa es una gran cualidad para ser una buena researcher!\n<br>\n<br><br>\n<br><br></p>\n </div>\n <div mbr-text class=\"user_name mbr-bold pb-2 mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showName\" data-app-selector=\".user_name\">Karla Nava</div>\n <div mbr-text class=\"user_desk mbr-light mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showDesk\" data-app-selector=\".user_desk\">\n UX Teacher Laboratoria</div>\n </div>\n </div><div class=\"carousel-item\">\n <div class=\"user col-md-8\">\n <div class=\"user_image\">\n <a href=\"https://www.linkedin.com/in/laurafiglez/\" target=\"_blank\"><img src=\"@PROJECT_PATH@/assets/images/laura-295x295.jpg\" alt title></a>\n </div>\n <div class=\"user_text\">\n <p class=\"mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".user_text\">Tania te brindará toda la ayuda que necesites, es atenta y acomedida; habilidades que la hacen una excelente team player. \n<br>\n<br><br><br></p>\n </div>\n <div mbr-text class=\"user_name mbr-bold pb-2 mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showName\" data-app-selector=\".user_name\">Laura Figueroa</div>\n <div mbr-text class=\"user_desk mbr-light mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showDesk\" data-app-selector=\".user_desk\">\n Community Manager Laboratoria</div>\n </div>\n </div><div class=\"carousel-item\">\n <div class=\"user col-md-8\">\n <div class=\"user_image\">\n <a href=\"https://www.linkedin.com/in/salazarparis/\" target=\"_blank\"><img src=\"@PROJECT_PATH@/assets/images/camilo-400x400.jpg\" alt title></a>\n </div>\n <div class=\"user_text\">\n <p class=\"mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".user_text\">Buena investigadora, con habilidades de desarrollo y diseño web. <br>\n<br><br><br></p>\n </div>\n <div mbr-text class=\"user_name mbr-bold pb-2 mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showName\" data-app-selector=\".user_name\">Camilo Salazar Paris</div>\n <div mbr-text class=\"user_desk mbr-light mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showDesk\" data-app-selector=\".user_desk\">CCO & Lead Designer - Synapbox\n<div><br></div></div>\n </div>\n </div></div>\n </div>\n </div>\n <div class=\"carousel-controls\">\n <a class=\"carousel-control-prev carousel-control\" role=\"button\" data-slide=\"prev\">\n <span aria-hidden=\"true\" class=\"mbri-arrow-prev mbr-iconfont\"></span>\n <span class=\"sr-only\">Previous</span>\n </a>\n\n <a class=\"carousel-control-next carousel-control\" role=\"button\" data-slide=\"next\">\n <span aria-hidden=\"true\" class=\"mbri-arrow-next mbr-iconfont\"></span>\n <span class=\"sr-only\">Next</span>\n </a>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_anchor": "testimonials1-6",
"_isUserblock": true,
"_sourceTheme": "portfoliom4",
"_cid": "qUBcFpKoU2",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_name": "form2",
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"& when (@bg-type = 'image')": {
"background-image": "url(@bg-value)"
},
"& when (@bg-type = 'color')": {
"background-color": "@bg-value"
},
".mbr-section-heading": {
"margin-bottom": "1.5em",
"color": "#ffbc00"
},
".input-main": {
"width": "99.6%",
"margin-left": ".1em"
},
".form-1": {
"margin": "0 1em",
"padding": "0"
},
".input-wrap": {
"padding": "0",
"margin-bottom": "1.3em",
"input": {
"border": "1px solid #ddd",
"padding-left": ".5em",
"height": "2.5em",
"width": "96%"
}
},
".form-group": {
"textarea": {
"height": "15em",
"background-color": "white",
"padding": "0.5em 0.6em",
"width": "98%"
}
}
},
"_customHTML": "<section group=\"Forms\" 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=\"8\" value=\"2\">\n <input type=\"range\" inline=\"\" title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" value=\"3\">\n <input type=\"checkbox\" title=\"Show Title\" name=\"showTitle\" checked=\"\">\n\n <fieldset type=\"background\" name=\"bg\" parallax=\"\">\n <input type=\"image\" title=\"Background Image\" value=\"@PROJECT_PATH@/assets/images/background1.jpg\" parallax=\"\">\n <input type=\"color\" title=\"Background Color\" value=\"#000000\" selected=\"\">\n <input type=\"video\" title=\"Background Video\" value=\"http://www.youtube.com/watch?v=uNCr7NdOJgw\">\n </fieldset>\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" condition=\"bg.type !== 'color'\">\n <input type=\"color\" title=\"Overlay Color\" name=\"overlayColor\" value=\"#000000\" condition=\"overlay && bg.type !== 'color'\">\n <input type=\"range\" inline=\"\" title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"1\" 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 mbr-form=\"\" class=\"form-1 col-md-8 col-sm-12\">\n <h1 class=\"mbr-fonts-style mbr-section-heading\" mbr-if=\"showTitle\" data-app-selector=\".mbr-section-heading\" mbr-theme-style=\"display-2\"><b>¡ CONTRÁTAME !</b></h1>\n <div data-form-alert=\"\" hidden=\"\">Gracias por tu mensaje!\n</div>\n <form class=\"mbr-form\" action=\"tania.naoh83@gmail.com\" method=\"post\" name=\"My Mobirise Form\">\n <div class=\"row input-main\">\n <div class=\"col-md-6 input-wrap\" data-for=\"name\">\n <input type=\"text\" mbr-theme-style=\"display-7\" class=\"field\" name=\"name\" data-form-field=\"Name\" placeholder=\"Nombre*\" required=\"\">\n </div>\n <div class=\"col-md-6 input-wrap\" data-for=\"email\">\n <input type=\"email\" mbr-theme-style=\"display-7\" class=\"field\" name=\"email\" data-form-field=\"Email\" placeholder=\"Email*\" required=\"\">\n </div>\n </div>\n <div class=\"row input-main\">\n <div class=\"col-md-6 input-wrap\" data-for=\"website\" hidden=\"hidden\">\n <input type=\"text\" mbr-theme-style=\"display-7\" class=\"field\" name=\"website\" data-form-field=\"Website\" placeholder=\"Website*\" required=\"\" hidden=\"hidden\">\n </div>\n <div class=\"col-md-6 input-wrap\" data-for=\"subject\">\n <input type=\"text\" mbr-theme-style=\"display-7\" class=\"field\" name=\"sujbect\" data-form-field=\"Subject\" placeholder=\"Subject\" hidden=\"hidden\">\n </div>\n </div>\n <div class=\"form-group\" data-for=\"message\">\n <textarea type=\"text\" mbr-theme-style=\"display-7\" class=\"form-control\" name=\"message\" rows=\"7\" placeholder=\"Deja aqui tu mensaje*\" data-form-field=\"Message\"></textarea>\n </div>\n <span mbr-buttons=\"\" mbr-theme-style=\"display-4\" data-toolbar=\"-mbrLink,-mbrBtnAdd,-mbrBtnMove\" class=\"input-group-btn\"><a href=\"\" type=\"submit\" class=\"btn btn-form btn-white-outline\">ENVIAR</a></span>\n </form>\n </div>\n </div>\n </div>\n</section>",
"_anchor": "form2-7",
"_isUserblock": true,
"_sourceTheme": "portfoliom4",
"_cid": "qUBcHfQccQ",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_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)"
},
"a:link": {
"text-decoration": "none"
},
".icon-transition span": {
"color": "rgb(255, 255, 255)",
"display": "block",
"height": "3em",
"line-height": "3em",
"border-radius": "50%",
"border": "2px solid @circleColor",
"width": "3em",
"-webkit-transition": "all 0.3s ease-out 0s",
"transition": "all 0.3s ease-out 0s",
"font-size": "14px"
},
".icon-transition span:hover": {
"background-color": "@circleHover"
},
".inner-text": {
"line-height": "3em"
},
".social-media": {
"display": "-webkit-flex",
"justify-content": "center",
"align-items": "center",
"ul": {
"li": {
"padding": "4px",
"display": "inline-block"
},
"margin": "0",
"padding": "0",
"margin-bottom": "8px"
}
},
".content-text,.inner-text": {
"color": "#ffbc00"
}
},
"_name": "footer2",
"_customHTML": "<section group=\"Social\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" plugins=\"SocialLikes,Socicon\" 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=\"1\">\n <input type=\"checkbox\" title=\"Show Copyright\" name=\"showText\" checked=\"\">\n <input type=\"checkbox\" title=\"Show Icons\" name=\"showIcons\" checked=\"\">\n <select title=\"Icons\" name=\"iconsCount\" 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 <option value=\"5\">5</option>\n </select>\n <input type=\"color\" title=\"Circle Color\" name=\"circleColor\" value=\"#ffffff\" condition=\"showIcons\">\n <input type=\"color\" title=\"Circle Hover\" name=\"circleHover\" value=\"#ffbc00\" condition=\"showIcons\">\n\n <fieldset type=\"background\" name=\"bg\" parallax=\"\">\n <input type=\"image\" title=\"Background Image\" value=\"@PROJECT_PATH@/assets/images/background7.jpg\" parallax=\"\">\n <input type=\"color\" title=\"Background Color\" value=\"#000000\" selected=\"\">\n <input type=\"video\" title=\"Background Video\" value=\"http://www.youtube.com/watch?v=uNCr7NdOJgw\">\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 <!-- 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 text-center\">\n <div class=\"row justify-content-center\">\n <div class=\"col-md-6 col-sm-12\" mbr-if=\"showText\">\n <h3 class=\"inner-text mbr-fonts-style content-text\" mbr-text=\"\" mbr-theme-style=\"display-7\" data-app-selector=\".content-text,.inner-text\"><b>Tania NaOH</b> 2018</h3>\n </div>\n <div class=\"social-media col-md-6 col-sm-12\" mbr-if=\"showIcons\">\n <ul>\n <li mbr-if=\"iconsCount > 0\">\n <a class=\"icon-transition\" href=\"https://www.facebook.com/Tania.NaOH\" target=\"_blank\">\n <span mbr-icon=\"\" class=\"mbr-iconfont socicon-facebook socicon\"></span>\n </a>\n </li>\n <li mbr-if=\"iconsCount > 1\">\n <a class=\"icon-transition\" href=\"https://twitter.com/tanianaoh?lang=es\" target=\"_blank\">\n <span mbr-icon=\"\" class=\"mbr-iconfont socicon-twitter socicon\"></span>\n </a>\n </li>\n <li mbr-if=\"iconsCount > 2\">\n <a class=\"icon-transition\" href=\"https://www.linkedin.com/in/tania-sosa/\" target=\"_blank\">\n <span mbr-icon=\"\" class=\"mbr-iconfont socicon-linkedin socicon\"></span>\n </a>\n </li>\n <li mbr-if=\"iconsCount > 3\">\n <a class=\"icon-transition\" href=\"#\">\n <span mbr-icon=\"\" class=\"mbr-iconfont socicon-youtube socicon\">\n </span>\n </a>\n </li>\n <li mbr-if=\"iconsCount > 4\">\n <a class=\"icon-transition\" href=\"#\">\n <span mbr-icon=\"\" class=\"mbr-iconfont socicon-rss socicon\" style=\"\"></span>\n </a>\n </li>\n </ul>\n </div>\n </div>\n </div>\n\n</section>",
"_anchor": "footer2-8",
"_isUserblock": true,
"_sourceTheme": "portfoliom4",
"_cid": "qUBcJGiCLI",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
".navbar": {
"min-height": "77px",
"transition": "all .3s",
"background": "@menuBgColor",
"& when (@transparent)": {
"background": "none"
},
"&.opened": {
"transition": "all .3s",
"background": "@menuBgColor !important"
},
".dropdown-item": {
"padding": ".25rem 1.5rem"
},
".navbar-collapse": {
"transition": "none",
"justify-content": "flex-end",
"z-index": "1",
"& when not (@showItems)": {
"display": "none !important"
}
},
"&.collapsed": {
"&.opened": {
".dropdown-menu": {
"top": "0"
},
"text-align": "center",
"flex-direction": "column",
"margin-left": "auto",
"max-width": "20rem ",
"height": "100vh",
"justify-content": "flex-start",
".navbar-toggler": {
"order": "-1",
"align-self": "flex-end !important",
"margin": "1rem 0 0 0"
},
".navbar-collapse": {
"flex-basis": "initial"
}
},
"&:not(.opened)": {
".navbar-collapse": {
"display": "none !important"
}
},
".dropdown-menu": {
"background": "transparent !important",
".dropdown-submenu": {
"left": "0 !important"
},
".dropdown-item:after": {
"right": "auto"
},
".dropdown-toggle[data-toggle=\"dropdown-submenu\"]:after": {
"margin-left": ".25rem",
"border-top": "0.35em solid",
"border-right": "0.35em solid transparent",
"border-left": "0.35em solid transparent",
"border-bottom": "0",
"top": "55%"
}
},
"ul.navbar-nav": {
"li": {
"margin": "auto"
}
},
".dropdown-menu .dropdown-item": {
"padding": ".25rem 1.5rem",
"text-align": "center"
}
},
"@media (max-width: 991px)": {
"&.opened": {
".dropdown-menu": {
"top": "0"
},
"text-align": "center",
"flex-direction": "column",
"margin-left": "auto",
"max-width": "20rem ",
"height": "100vh",
"justify-content": "flex-start",
".navbar-toggler": {
"order": "-1",
"align-self": "flex-end !important",
"margin": "1rem 0 0 0"
},
".navbar-collapse": {
"flex-basis": "initial"
}
},
"&:not(.opened)": {
".navbar-collapse": {
"display": "none !important"
}
},
".dropdown-menu": {
"background": "transparent !important",
".dropdown-submenu": {
"left": "0 !important"
},
".dropdown-item:after": {
"right": "auto"
},
".dropdown-toggle[data-toggle=\"dropdown-submenu\"]:after": {
"margin-left": ".25rem",
"border-top": "0.35em solid",
"border-right": "0.35em solid transparent",
"border-left": "0.35em solid transparent",
"border-bottom": "0",
"top": "55%"
}
},
".navbar-logo": {
"img": {
"height": "3.8rem !important"
}
},
"ul.navbar-nav": {
"li": {
"margin": "auto"
}
},
".dropdown-menu .dropdown-item": {
"padding": ".25rem 1.5rem",
"text-align": "center"
},
".navbar-brand": {
"flex-shrink": "initial",
"word-break": "break-word"
}
},
"&.navbar-short": {
"background": "@menuBgColor !important",
"min-height": "60px",
".navbar-logo": {
"img": {
"height": "3rem !important"
}
},
".navbar-brand": {
"padding": "0"
}
}
},
".navbar-brand": {
"flex-shrink": "0",
"align-items": "center",
"margin-right": "0",
"padding": "0",
"transition": "all .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"
},
"button.navbar-toggler": {
"outline": "none",
"width": "31px",
"height": "20px",
"cursor": "pointer",
"transition": "all .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 .2s"
},
"&:nth-child(2)": {
"top": "8px",
"transition": "all .15s"
},
"&:nth-child(3)": {
"top": "8px",
"transition": "all .15s"
},
"&:nth-child(4)": {
"top": "16px",
"transition": "all .2s"
}
}
},
"nav.opened .hamburger span": {
"&:nth-child(1)": {
"top": "8px",
"width": "0",
"opacity": "0",
"right": "50%",
"transition": "all .2s"
},
"&:nth-child(2)": {
"-webkit-transform": "rotate(45deg)",
"transform": "rotate(45deg)",
"transition": "all .25s"