-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.mobirise
1679 lines (1679 loc) · 134 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": "Varundev Sukhil",
"currentPage": "index.html",
"theme": {
"name": "portfoliom4",
"title": "PortfolioM4",
"styling": {
"primaryColor": "#FFBC00",
"secondaryColor": "#3E97D1",
"successColor": "#36D88A",
"infoColor": "#FF4100",
"warningColor": "#C1C1C1",
"dangerColor": "#444444",
"mainFont": "Dosis",
"display1Font": "Dosis",
"display1Size": 3.5,
"display2Font": "Dosis",
"display2Size": 2,
"display5Font": "Dosis",
"display5Size": 1.4,
"display7Font": "Dosis",
"display7Size": 1,
"display4Font": "Open Sans",
"display4Size": 0.8,
"isRoundedButtons": false,
"isAnimatedOnScroll": false,
"isScrollToTopButton": false,
"arrowColor": "#444444"
},
"additionalSetColors": []
},
"path": "@PROJECT_PATH@",
"versionFirst": "5.8.14",
"siteFonts": [
{
"css": "'Dosis', sans-serif",
"name": "Dosis",
"url": "https://fonts.googleapis.com/css?family=Dosis:200,300,400,500,600,700,800"
},
{
"css": "'Open Sans', sans-serif",
"name": "Open Sans",
"url": "https://fonts.googleapis.com/css?family=Open+Sans:300,400,500,600,700,800,300i,400i,500i,600i,700i,800i"
}
],
"imageResize": true,
"uniqCompNum": 32,
"versionPublish": "5.8.14",
"screenshot": "screenshot.png",
"lazyLoad": true,
"cssOptimize": true,
"usedWebp": true,
"robotsSwitcher": true,
"robotsText": "User-agent: *\nDisallow: /cgi-bin\n",
"sitemapSwitcher": false,
"siteUrl": false,
"sitemapSwitcherAuto": "on",
"cookiesAlert": {
"customDialogSelector": false,
"colorText": "#424a4d",
"colorBg": "#ffffff",
"colorButton": "#FFBC00",
"rejectColor": "#ffffff",
"colorLink": "#424a4d",
"underlineLink": true,
"opacityOverlay": "0",
"bgOpacity": "100",
"text": "This webpage does NOT use cookies! Carry on.",
"textButton": "GOT IT",
"rejectText": "REJECT"
},
"favicon": false,
"mbrsiteDomain": "bpxleqhvlf",
"gdpr": false
},
"pages": {
"index.html": {
"settings": {
"main": true,
"title": "Varundev Sukhil",
"meta_descr": "The internet home of Varundev Sukhil",
"header_custom": "",
"footer_custom": "",
"html_before": ""
},
"components": [
{
"alias": false,
"_styles": {
".navbar": {
"min-height": "77px",
"transition": "all .3s",
"background": "@menuBgColor",
"& when (@transparent)": {
"background": "none"
},
"&.opened": {
"transition": "all .3s",
"background": "@menuBgColor !important"
},
".dropdown-item": {
"transition": "all .3s",
"padding": ".3rem 1.5rem",
"border-bottom": "1px solid darken(@dropdownColor, 10%)",
"color": "contrast(@dropdownColor) !important",
"background": "@dropdownColor !important",
"&:hover": {
"padding-left": "2rem"
},
"&:focus": {
"border": {
"outline": "none"
}
}
},
".navbar-collapse": {
"-webkit-justify-content": "flex-end",
"justify-content": "flex-end",
"z-index": "1",
"& when not (@showItems)": {
"display": "none !important"
}
},
".dropdown-menu": {
"min-width": "100%",
"padding": "3px 0 0 0",
"background": "transparent !important",
"& > .dropdown-item:first-child": {
"border-top": "2px solid @primaryColor"
},
".dropdown-submenu": {
"padding-top": "0px"
}
},
"&.collapsed": {
"&.opened": {
".dropdown-menu": {
"top": "0"
},
"@media (min-width: 992px)": {
"&:not(.navbar-short) .navbar-collapse when (@showLogo)": {
"max-height": "(100vh - ((13 * @logoSize) / 7))"
}
}
},
".dropdown-menu": {
"width": "auto",
"padding": "1rem 0 1rem 0",
"border-top": "none !important",
"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%"
}
},
".nav-dropdown .link.dropdown-toggle[aria-expanded=\"true\"]": {
"padding": "0.667em 1.667em"
},
".nav-dropdown .link": {
"margin": "0.667em 1.667em"
},
"ul.navbar-nav": {
"li": {
"margin": "auto"
}
},
".dropdown-menu .dropdown-item": {
"padding": ".25rem 1.5rem",
"text-align": "center",
"border-bottom": "none !important",
"background": "transparent !important",
"color": "inherit !important",
"&:first-child": {
"border-top": "none"
}
}
},
"@media (max-width: 991px)": {
"&.opened": {
".dropdown-menu": {
"top": "0"
}
},
".dropdown-menu": {
"width": "auto",
"padding": "1rem 0 1rem 0",
"background": "transparent !important",
"border-top": "none !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%"
}
},
".nav-dropdown .link.dropdown-toggle[aria-expanded=\"true\"]": {
"padding": "0.667em 1.667em"
},
".nav-dropdown .link": {
"margin": "0.667em 1.667em"
},
".navbar-logo": {
"img": {
"height": "3.8rem !important"
}
},
"ul.navbar-nav": {
"li": {
"margin": "auto"
}
},
".dropdown-menu .dropdown-item": {
"padding": ".25rem 1.5rem",
"text-align": "center",
"border-bottom": "none !important",
"background": "transparent !important",
"color": "inherit !important",
"&:first-child": {
"border-top": "none"
}
},
".navbar-brand": {
"-webkit-flex-shrink": "initial",
"flex-shrink": "initial",
"-webkit-flex-basis": "auto",
"flex-basis": "auto",
"word-break": "break-word"
},
".navbar-toggler": {
"-webkit-flex-basis": "auto",
"flex-basis": "auto"
}
},
"&.navbar-short": {
"background": "@menuBgColor !important",
"min-height": "60px",
".navbar-logo": {
"img": {
"height": "3rem !important"
}
},
".navbar-brand": {
"padding": "0"
}
}
},
".navbar-brand": {
"-webkit-flex-shrink": "0",
"flex-shrink": "0",
"-webkit-align-items": "center",
"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": "-2px 0 0 0",
"left": "100%"
}
}
},
".navbar .dropdown.open > .dropdown-menu": {
"display": "block"
},
"ul.navbar-nav": {
"flex-wrap": "wrap",
"-webkit-flex-wrap": "wrap"
},
".navbar-buttons": {
"text-align": "center"
},
"button.navbar-toggler": {
"outline": "none",
"width": "31px",
"height": "20px",
"cursor": "pointer",
"transition": "all .2s",
"position": "relative",
"-webkit-align-self": "center",
"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"
},
"&:nth-child(3)": {
"-webkit-transform": "rotate(-45deg)",
"transform": "rotate(-45deg)",
"transition": "all .25s"
},
"&:nth-child(4)": {
"top": "8px",
"width": "0",
"opacity": "0",
"right": "50%",
"transition": "all .2s"
}
},
".navbar-dropdown": {
"padding": ".5rem 1rem",
"& when (@sticky)": {
"position": "fixed"
}
},
"a.nav-link": {
"display": "flex",
"-webkit-align-items": "center",
"align-items": "center",
"-webkit-justify-content": "center",
"justify-content": "center",
"outline": "none",
"letter-spacing": "2px"
},
".mbr-iconfont": {
"font-size": "1.5rem",
"padding-right": ".5rem"
},
".nav-dropdown .link.dropdown-toggle[aria-expanded=\"true\"]": {
"padding": "1.667em 1.667em"
},
".nav-dropdown .link": {
"margin": "1.667em 1.667em"
},
".nav-link:hover, .dropdown-item:hover": {
"color": "@itemsHoverColor !important"
}
},
"_name": "menu2",
"_sourceTheme": "portfoliom4",
"_customHTML": "<section class=\"menu\" group=\"Menu\" plugins=\"DropDown, TouchSwipe\" always-top global once=\"menu\" not-draggable position-absolute>\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"checkbox\" title=\"Show Logo\" name=\"showLogo\">\n <input type=\"range\" title=\"Logo Size\" inline name=\"logoSize\" min=\"3.8\" max=\"8\" step=\"0.1\" value=\"3.8\" condition=\"showLogo\">\n <input type=\"checkbox\" title=\"Show Brand Name\" name=\"showBrand\" checked>\n <input type=\"checkbox\" title=\"Show Menu Items\" name=\"showItems\" checked>\n <input type=\"color\" title=\"Items Hover Color\" name=\"itemsHoverColor\" value=\"#c1c1c1\" condition=\"showItems\">\n <input type=\"checkbox\" title=\"Show Button(s)\" name=\"showButtons\" checked condition=\"showItems\">\n <input type=\"checkbox\" title=\"Sticky\" name=\"sticky\" checked>\n <input type=\"checkbox\" title=\"Collapsed\" name=\"collapsed\">\n <input type=\"checkbox\" title=\"Transparent\" name=\"transparent\">\n <input type=\"color\" title=\"Hamburger Color\" name=\"hamburgerColor\" value=\"#232323\">\n <input type=\"color\" title=\"Dropdown Menu Color\" name=\"dropdownColor\" value=\"#444444\">\n <input type=\"color\" title=\"Background Color\" name=\"menuBgColor\" value=\"#ffffff\">\n <!-- End block parameters -->\n </mbr-parameters>\n \n\n <nav class=\"navbar navbar-dropdown\" mbr-class=\"{'navbar-fixed-top':sticky,\n 'navbar-expand-lg':!collapsed,\n 'collapsed':collapsed}\">\n <div class=\"navbar-brand\">\n <span mbr-if=\"showLogo\" class=\"navbar-logo\">\n <a href=\"https://mobiri.se\">\n <img src=\"../_images/logo3.png\" alt=\"Mobirise\" mbr-style=\"{'height': logoSize + 'rem'}\">\n </a>\n </span>\n <span mbr-if=\"showBrand\" mbr-buttons mbr-theme-style=\"display-1\" class=\"navbar-caption-wrap\" data-toolbar=\"-mbrBtnMove,-mbrBtnAdd,-mbrBtnRemove\"><a class=\"navbar-caption text-black text-primary\" data-app-selector=\".navbar-caption\" href=\"http://vsukhil.com\" data-app-placeholder=\"Type Text\">Varundev Sukhil</a></span>\n </div>\n <button class=\"navbar-toggler\" type=\"button\" data-toggle=\"collapse\" data-target=\"#navbarSupportedContent\" aria-controls=\"navbarNavAltMarkup\" aria-expanded=\"false\" aria-label=\"Toggle navigation\" mbr-if=\"showItems\">\n <div class=\"hamburger\">\n <span></span>\n <span></span>\n <span></span>\n <span></span>\n </div>\n </button>\n <div class=\"collapse navbar-collapse\" id=\"navbarSupportedContent\">\n <ul mbr-menu class=\"navbar-nav nav-dropdown\" mbr-theme-style=\"display-4\" mbr-class=\"{'nav-right': !showButtons,'navbar-nav-top-padding': isPublish && !showBrand && !showLogo}\"><li class=\"nav-item\"><a class=\"nav-link link text-warning text-primary\" href=\"index.html#content2-l\" data-app-selector=\".nav-link,.dropdown-item\" data-app-placeholder=\"Type Text\"><strong>Project Portfolio</strong></a></li></ul>\n <div mbr-if=\"showButtons\" mbr-buttons mbr-theme-style=\"display-4\" class=\"navbar-buttons mbr-section-btn\"><a class=\"btn btn-md btn-primary\" href=\"mailto:[email protected]\" data-app-placeholder=\"Type Text\">\n CONTACT ME\n </a></div>\n </div>\n </nav>\n</section>",
"_cid": "tIZeWQS3NT",
"_anchor": "menu2-1",
"_protectedParams": [],
"_global": true,
"_once": "menu",
"_params": {}
},
{
"_name": "footer01",
"_sourceTheme": "techm4",
"_customHTML": "<section group=\"Footers\" global once mbr-class=\"{'mbr-reveal': reveal, '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=\"2\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"2\">\n <input type=\"checkbox\" title=\"Reveal effect\" name=\"reveal\">\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Background Image\" value=\"@ADDONS_PATH@/techm4/components/_images/background1.jpg\">\n <input type=\"color\" title=\"Background Color\" value=\"#57468b\" selected>\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=\"#232323\"\n condition=\"overlay && bg.type !== 'color'\">\n <input type=\"range\" inline title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.8\"\n condition=\"overlay && bg.type !== 'color'\">\n <!-- End block parameters -->\n </mbr-parameters>\n\n <div class=\"mbr-overlay\" mbr-if=\"overlay && bg.type !== 'color'\" opacity=\"{{overlayOpacity}}\"\n bg-color=\"{{overlayColor}}\"></div>\n\n <div class=\"container\">\n <div class=\"media-container-row align-center mbr-white\">\n <div class=\"col-12\">\n <p class=\"mbr-text mb-0 mbr-fonts-style\" mbr-theme-style=\"display-4\"\n data-app-selector=\".media-container-row .mbr-text\" data-app-placeholder=\"Type Text\">\n © Copyright 2025 Mobirise - All Rights Reserved\n </p>\n </div>\n </div>\n </div>\n</section>",
"_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"
}
},
"_cid": "tIZfu9T056",
"_anchor": "footer01-3",
"_protectedParams": [],
"_global": true,
"_once": true,
"_params": {}
},
{
"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)"
},
".slider-text-two": {
"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"
},
".mbr-section-title, .mbr-section-subtitle": {
"color": "#232323"
},
".mbr-section-subtitle span": {
"font-weight": "bold"
},
".mbr-text": {
"color": "#232323",
"font-weight": "100"
},
".mbr-section-btn": {
"color": "white"
},
"@media (max-width: 767px)": {
".row": {
"margin-left": "-15px"
}
},
"@media screen and (~'-ms-high-contrast: active'), (~'-ms-high-contrast: none')": {
".slider-text-two": {
"outline": "15px solid rgba(255, 255, 255, 0.8)",
"border": "1px solid rgba(0, 0, 0, 0.2)"
}
}
},
"_name": "header5",
"_sourceTheme": "portfoliom4",
"_customHTML": "<section group=\"Headers header5\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{\n 'mbr-fullscreen': fullScreen,\n 'mbr-parallax-background': bg.parallax}\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"checkbox\" title=\"Full Screen\" name=\"fullScreen\">\n <input type=\"checkbox\" title=\"Show Arrow\" name=\"showArrow\" condition=\"fullScreen\">\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"10\" step=\"1\" value=\"10\" condition=\"fullScreen == false\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"10\" step=\"1\" value=\"10\" 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 Button\" name=\"showButton\">\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Background Image\" value=\"@PROJECT_PATH@/assets/images/banner-1652x929.jpg\" parallax 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 <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.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'\" opacity=\"{{overlayOpacity}}\" bg-color=\"{{overlayColor}}\">\n </div>\n <div class=\"container text-center\" data-stellar-background-ratio=\".5\">\n <div class=\"row\" mbr-if=\"showTitle || showSubtitle || showButton\">\n <div class=\"col-md-7\">\n <div class=\"slider-text-two\">\n <h2 mbr-if=\"showTitle\" class=\"mbr-section-title mbr-fonts-style mbr-bold align-center\" mbr-theme-style=\"display-1\" data-app-selector=\".mbr-section-title\">\n HELLO<br>\n </h2>\n <h3 class=\"mbr-section-subtitle mbr-fonts-style align-center\" mbr-if=\"showSubtitle\" mbr-theme-style=\"display-2\" data-app-selector=\".mbr-section-subtitle\">\n <br>I'm Varundev and I am a Computer Engineer<br><br></h3><h3>\n </h3><h4 class=\"mbr-text mbr-fonts-style align-center\" mbr-if=\"showSubtitle\" mbr-theme-style=\"display-5\" data-app-selector=\".mbr-text, .mbr-section-btn\">\n I work on software for robots and other <br>autonomous cyber-physical systems.<br><b>Welcome to my internet home!</b><br></h4>\n <div mbr-buttons mbr-theme-style=\"display-4\" data-toolbar=\"-mbrBtnMove\" mbr-if=\"showButton\" class=\"mbr-section-btn\"><a class=\"btn-primary btn btn-md\" type=\"submit\" data-app-placeholder=\"Type Text\">ABOUT ME</a></div>\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>",
"_cid": "tIZhdA7SiQ",
"_anchor": "header5-a",
"_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-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-text": {
"text-align": "left"
},
".mbr-card-title,.card-img P": {
"text-align": "left"
}
},
"_name": "features1",
"_sourceTheme": "portfoliom4",
"_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=\"6\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"9\" step=\"1\" value=\"6\">\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\" selected>3</option>\n <option value=\"4\">4</option>\n </select>\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Background Image\" value=\"../_images/background7.jpg\" parallax>\n <input type=\"color\" title=\"Background Color\" value=\"#ffffff\" 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>Formal Education</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\">I've received the following degrees.</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 mdi-social-school\"></span>\n </div>\n <h4 class=\"mbr-fonts-style mbr-card-title\" mbr-theme-style=\"display-2\" mbr-if=\"showTitle\" data-app-selector=\".mbr-card-title,.card-img\"><p><b>Doctor of Philosophy</b></p></h4>\n\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">Computer Engineering<br>Class of 2023<br><b>University of Virginia</b></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 mdi-social-school\"></span>\n </div>\n <h4 class=\"mbr-fonts-style mbr-card-title\" mbr-theme-style=\"display-2\" mbr-if=\"showTitle\" data-app-selector=\".mbr-card-title,.card-img\"><p><b>Master of Science</b></p></h4>\n\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">Computer Engineering<br>Class of 2018<br><b>University of Virginia</b></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 mdi-social-school\"></span>\n </div>\n <h4 class=\"mbr-fonts-style mbr-card-title\" mbr-theme-style=\"display-2\" mbr-if=\"showTitle\" data-app-selector=\".mbr-card-title,.card-img\"><p><b>Bachelor of Science</b></p></h4>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">Electrical Engineering<br>Class of 2014<br><b>Visvesvaraya Tech. University</b></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\">INTERACTION</h4>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">Lorem ipsum dolor amet, consecte tempor incididunt ut labore et dolore tumber tur adipisicing elit.</p>\n </div>\n </div>\n </div>\n</section>",
"_cid": "tJ404kqK8H",
"_anchor": "features1-p",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": false,
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"background-color": "@bgColor",
".mbr-text": {
"text-align": "center"
},
".mbr-title": {
"text-align": "center"
}
},
"_name": "content2",
"_sourceTheme": "portfoliom4",
"_customHTML": "<section class=\"mbr-section content2\">\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=\"3\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"3\">\n <input type=\"checkbox\" title=\"Show Title\" name=\"showTitle\" checked>\n <input type=\"color\" title=\"Background Color\" name=\"bgColor\" value=\"#ffffff\">\n <!-- End block parameters -->\n </mbr-parameters>\n\n <div class=\"container\">\n <div class=\"row justify-content-center\">\n <div class=\"col-md-8 col-sm-12 text-section\">\n <h2 class=\"mbr-fonts-style mbr-title align-left pb-3\" mbr-if=\"showTitle\" data-app-selector=\".mbr-title\" mbr-theme-style=\"display-2\"><b>Professional Experience</b><br></h2>\n <p class=\"mbr-fonts-style mbr-text align-left\" data-app-selector=\".mbr-text\" mbr-theme-style=\"display-5\">I've worked in the industry as a software engineer and as a research engineer, In this section, you'll find my professional experience listed chronologically.</p>\n </div>\n </div>\n </div>\n</section>",
"_cid": "tJ4aGLofhS",
"_anchor": "content2-t",
"_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)"
},
".icon-transition span": {
"padding": "0.1rem 0.9rem",
"border-radius": "50%",
"color": "#232323",
"display": "block",
"height": "3em",
"line-height": "3em",
"width": "3em",
"background": "@circleColor none repeat scroll 0 0",
"-webkit-transition": "all 0.3s ease-out 0s",
"transition": "all 0.3s ease-out 0s",
"font-size": "14px"
},
".content-row": {
"& when (@mediaLeft)": {
"-webkit-flex-direction": "row-reverse",
"flex-direction": "row-reverse"
}
},
".photo-split": {
"padding": "0",
"img": {
"width": "100%"
}
},
".icon-transition span:hover": {
"background-color": "@circleHover"
},
".counter-container": {
"ul": {
"display": "flex",
"-webkit-flex-direction": "column",
"flex-direction": "column",
"li": {
"margin-bottom": ".5rem",
"list-style": "✓",
"&:before": {
"& when (@showCounter)": {
"color": "@counterColor",
"display": "inline-block",
"content": "'✓'",
"text-align": "center",
"line-height": "1.5em",
"transition": "all .2s",
"width": "25px",
"height": "25px"
}
}
}
}
},
".wrap-block": {
"padding": "3rem 3rem",
"ul": {
"margin": "0",
"padding": "0",
"list-style": "none",
"li": {
"display": "inline-block",
"span": {
"text-align": "center"
}
}
}
},
".social-media": {
"margin-top": "1.5em",
"padding": "0",
"ul": {
"margin": "0",
"padding": "0",
"margin-bottom": "8px",
"li": {
"padding": "4px",
"display": "inline-block"
}
}
},
".mbr-list,.social-media ul": {
"text-align": "left"
},
"@media (max-width: 500px)": {
".wrap-block": {
"padding": "3rem 1rem"
}
},
"@media (max-width: 767px)": {
".mbr-section-title,.mbr-section-subtitle,.mbr-text": {
"text-align": "center !important"
},
".social-list": {
"text-align": "center !important"
}
},
".mbr-section-title": {
"color": "#000000"
},
".mbr-text": {
"color": "#000000"
},
".mbr-section-subtitle": {
"color": "#000000"
}
},
"_name": "features6",
"_sourceTheme": "portfoliom4",
"_customHTML": "<section group=\"Features\" plugins=\"ViewportChecker\" 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=\"0\">\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 Text\" name=\"showText\" checked>\n <input type=\"checkbox\" title=\"Show List\" name=\"showList\">\n <input type=\"checkbox\" title=\"Show Counter\" name=\"showCounter\" checked condition=\"showList\">\n <input type=\"color\" title=\"Counter Color\" name=\"counterColor\" value=\"#ffbc00\" condition=\"showCounter&&showList\">\n <input type=\"checkbox\" title=\"Media On Right/Left\" name=\"mediaLeft\" checked>\n <input type=\"checkbox\" title=\"Show Social\" name=\"showIcons\">\n <select title=\"Social Count\" name=\"iconsCount\" condition=\"showIcons\">\n <option value=\"1\">1</option>\n <option value=\"2\">2</option>\n <option value=\"3\">3</option>\n <option value=\"4\">4</option>\n <option value=\"5\" selected>5</option>\n </select>\n <input type=\"color\" title=\"Circle Hover\" name=\"circleHover\" value=\"#ffbc00\" condition=\"showIcons\">\n <input type=\"color\" title=\"Circle Color\" name=\"circleColor\" value=\"#ffffff\" condition=\"showIcons\">\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Background Image\" value=\"../_images/background7.jpg\">\n <input type=\"color\" title=\"Background Color\" value=\"#ffffff\" selected>\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'\">\n <input type=\"color\" title=\"Overlay Color\" name=\"overlayColor\" value=\"#a62a00\" condition=\"overlay && bg.type !== 'color'\">\n <input type=\"range\" inline title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.6\" condition=\"overlay && bg.type !== 'color'\">\n <!-- End block parameters -->\n </mbr-parameters>\n\n <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 <div class=\"row align-items-center content-row\">\n <div class=\"col-lg-6 wrap-block\">\n <h2 class=\"mbr-section-title mbr-fonts-style mbr-light mbr-white\" data-app-selector=\".mbr-section-title\" mbr-if=\"showTitle\" mbr-theme-style=\"display-2\"><b>HYPR (Hyprlabs, Inc.)</b></h2>\n <h3 class=\"mbr-section-subtitle mbr-fonts-style mbr-light mbr-white\" data-app-selector=\".mbr-section-subtitle\" mbr-if=\"showSubtitle\" mbr-theme-style=\"display-5\">Research Engineer<br><br></h3>\n <p class=\"mbr-text mbr-fonts-style mbr-light mbr-white\" data-app-selector=\".mbr-text\" mbr-if=\"showText\" mbr-theme-style=\"display-5\">I worked on a contract to create the company's first prototype of a two-wheeled self-balancing side-walk delivery robot. I used rapid prototyping techniques (CNC, FDM, PCB/A, etc.) to build the prototype and I integrated the controllers, actuators, and sensors to the robot. I also created a software stack that could localize the robot and move it to target positions.</p>\n <div class=\"mbr-list counter-container mbr-fonts-style mbr-white\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-list,.social-media\" data-multiline mbr-article mbr-if=\"showList\">\n <ul>\n <li>Lorem ipsum dolor sit amet</li>\n <li>Lorem ipsum dolor sit amet</li>\n <li>Lorem ipsum dolor sit amet</li>\n <li>Lorem ipsum dolor sit amet</li>\n <li>Lorem ipsum dolor sit amet</li>\n </ul>\n </div>\n <div class=\"social-media col-md-12 col-sm-12\" mbr-if=\"showIcons\">\n <ul class=\"social-list\">\n <li mbr-if=\"iconsCount > 0\">\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\" style></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 </ul>\n </div>\n </div>\n <div class=\"col-lg-6 photo-split\">\n <a href=\"https://hypr.ai/\" target=\"_blank\"><img src=\"@PROJECT_PATH@/assets/images/sidewalk_delivery_robot__two_wheels__one_robot_s2576568742_st25_g12.5-1837x1194.jpeg\" alt></a>\n </div>\n </div>\n </div>\n</section>",
"_cid": "tJ44DvgSaa",
"_anchor": "features6-r",
"_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)"
},
".icon-transition span": {
"padding": "0.1rem 0.9rem",
"border-radius": "50%",
"color": "#232323",
"display": "block",
"height": "3em",
"line-height": "3em",
"width": "3em",
"background": "@circleColor none repeat scroll 0 0",
"-webkit-transition": "all 0.3s ease-out 0s",
"transition": "all 0.3s ease-out 0s",
"font-size": "14px"
},
".content-row": {
"& when (@mediaLeft)": {
"-webkit-flex-direction": "row-reverse",
"flex-direction": "row-reverse"
}
},
".photo-split": {
"padding": "0",
"img": {
"width": "100%"
}
},
".icon-transition span:hover": {
"background-color": "@circleHover"
},
".counter-container": {
"ul": {
"display": "flex",
"-webkit-flex-direction": "column",
"flex-direction": "column",
"li": {
"margin-bottom": ".5rem",
"list-style": "✓",
"&:before": {
"& when (@showCounter)": {
"color": "@counterColor",
"display": "inline-block",
"content": "'✓'",
"text-align": "center",
"line-height": "1.5em",
"transition": "all .2s",
"width": "25px",
"height": "25px"
}
}
}
}
},
".wrap-block": {
"padding": "3rem 3rem",
"ul": {
"margin": "0",
"padding": "0",
"list-style": "none",
"li": {
"display": "inline-block",
"span": {
"text-align": "center"
}
}
}
},
".social-media": {
"margin-top": "1.5em",
"padding": "0",
"ul": {
"margin": "0",
"padding": "0",
"margin-bottom": "8px",
"li": {
"padding": "4px",
"display": "inline-block"
}
}
},
".mbr-list,.social-media ul": {
"text-align": "left"
},
"@media (max-width: 500px)": {
".wrap-block": {
"padding": "3rem 1rem"
}
},
"@media (max-width: 767px)": {
".mbr-section-title,.mbr-section-subtitle,.mbr-text": {
"text-align": "center !important"
},
".social-list": {
"text-align": "center !important"
}
},
".mbr-section-title": {
"color": "#000000"
},
".mbr-text": {
"color": "#000000"
},
".mbr-section-subtitle": {
"color": "#000000"
}
},
"_name": "features6",
"_sourceTheme": "portfoliom4",
"_customHTML": "<section group=\"Features\" plugins=\"ViewportChecker\" 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=\"0\">\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 Text\" name=\"showText\" checked>\n <input type=\"checkbox\" title=\"Show List\" name=\"showList\">\n <input type=\"checkbox\" title=\"Show Counter\" name=\"showCounter\" checked condition=\"showList\">\n <input type=\"color\" title=\"Counter Color\" name=\"counterColor\" value=\"#ffbc00\" condition=\"showCounter&&showList\">\n <input type=\"checkbox\" title=\"Media On Right/Left\" name=\"mediaLeft\">\n <input type=\"checkbox\" title=\"Show Social\" name=\"showIcons\">\n <select title=\"Social Count\" name=\"iconsCount\" condition=\"showIcons\">\n <option value=\"1\">1</option>\n <option value=\"2\">2</option>\n <option value=\"3\">3</option>\n <option value=\"4\">4</option>\n <option value=\"5\" selected>5</option>\n </select>\n <input type=\"color\" title=\"Circle Hover\" name=\"circleHover\" value=\"#ffbc00\" condition=\"showIcons\">\n <input type=\"color\" title=\"Circle Color\" name=\"circleColor\" value=\"#ffffff\" condition=\"showIcons\">\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=\"#ffffff\" selected>\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'\">\n <input type=\"color\" title=\"Overlay Color\" name=\"overlayColor\" value=\"#a62a00\" condition=\"overlay && bg.type !== 'color'\">\n <input type=\"range\" inline title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.6\" condition=\"overlay && bg.type !== 'color'\">\n <!-- End block parameters -->\n </mbr-parameters>\n\n <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 <div class=\"row align-items-center content-row\">\n <div class=\"col-lg-6 wrap-block\">\n <h2 class=\"mbr-section-title mbr-fonts-style mbr-light mbr-white\" data-app-selector=\".mbr-section-title\" mbr-if=\"showTitle\" mbr-theme-style=\"display-2\"><b>Nimble Robotics</b></h2>\n <h3 class=\"mbr-section-subtitle mbr-fonts-style mbr-light mbr-white\" data-app-selector=\".mbr-section-subtitle\" mbr-if=\"showSubtitle\" mbr-theme-style=\"display-5\">Software Engineer II<br><br></h3>\n <p class=\"mbr-text mbr-fonts-style mbr-light mbr-white\" data-app-selector=\".mbr-text\" mbr-if=\"showText\" mbr-theme-style=\"display-5\">I worked on a customized grid-based robotic system that would travel on top of a densely packed storage cluster in a warehouse. My work involved creating a control stack that would allow the robot to accurately start and stop motion profiles. I was able to accomplish this task using a model-based approach by considering the dynamics of the robot along the generated trajectory.</p>\n <div class=\"mbr-list counter-container mbr-fonts-style mbr-white\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-list,.social-media\" data-multiline mbr-article mbr-if=\"showList\">\n <ul>\n <li>Lorem ipsum dolor sit amet</li>\n <li>Lorem ipsum dolor sit amet</li>\n <li>Lorem ipsum dolor sit amet</li>\n <li>Lorem ipsum dolor sit amet</li>\n <li>Lorem ipsum dolor sit amet</li>\n </ul>\n </div>\n <div class=\"social-media col-md-12 col-sm-12\" mbr-if=\"showIcons\">\n <ul class=\"social-list\">\n <li mbr-if=\"iconsCount > 0\">\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\" style></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 </ul>\n </div>\n </div>\n <div class=\"col-lg-6 photo-split\">\n <a href=\"https://www.nimble.ai/\" target=\"_blank\"><img src=\"@PROJECT_PATH@/assets/images/warehouse_grid_fulfillment_robot_s2515479258_st25_g12.5-1837x1194.jpeg\" alt></a>\n </div>\n </div>\n </div>\n</section>",
"_anchor": "features6-s",
"_isUserblock": true,
"_cid": "tJ4amEND68",
"_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)"
},
".icon-transition span": {
"padding": "0.1rem 0.9rem",
"border-radius": "50%",
"color": "#232323",
"display": "block",
"height": "3em",
"line-height": "3em",
"width": "3em",
"background": "@circleColor none repeat scroll 0 0",
"-webkit-transition": "all 0.3s ease-out 0s",
"transition": "all 0.3s ease-out 0s",
"font-size": "14px"
},
".content-row": {
"& when (@mediaLeft)": {
"-webkit-flex-direction": "row-reverse",
"flex-direction": "row-reverse"
}
},
".photo-split": {
"padding": "0",
"img": {
"width": "100%"
}
},
".icon-transition span:hover": {
"background-color": "@circleHover"
},
".counter-container": {
"ul": {
"display": "flex",
"-webkit-flex-direction": "column",
"flex-direction": "column",
"li": {
"margin-bottom": ".5rem",
"list-style": "✓",
"&:before": {
"& when (@showCounter)": {
"color": "@counterColor",
"display": "inline-block",
"content": "'✓'",
"text-align": "center",
"line-height": "1.5em",
"transition": "all .2s",
"width": "25px",
"height": "25px"
}
}
}
}
},
".wrap-block": {
"padding": "3rem 3rem",
"ul": {
"margin": "0",
"padding": "0",
"list-style": "none",
"li": {
"display": "inline-block",
"span": {
"text-align": "center"
}
}
}
},
".social-media": {
"margin-top": "1.5em",
"padding": "0",
"ul": {
"margin": "0",
"padding": "0",
"margin-bottom": "8px",
"li": {
"padding": "4px",
"display": "inline-block"
}
}
},
".mbr-list,.social-media ul": {
"text-align": "left"
},
"@media (max-width: 500px)": {
".wrap-block": {
"padding": "3rem 1rem"
}
},
"@media (max-width: 767px)": {
".mbr-section-title,.mbr-section-subtitle,.mbr-text": {
"text-align": "center !important"
},
".social-list": {
"text-align": "center !important"
}
},
".mbr-section-title": {
"color": "#000000"
},
".mbr-text": {
"color": "#000000"
},
".mbr-section-subtitle": {
"color": "#000000"
}
},
"_name": "features6",
"_sourceTheme": "portfoliom4",
"_customHTML": "<section group=\"Features\" plugins=\"ViewportChecker\" 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=\"0\">\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 Text\" name=\"showText\" checked>\n <input type=\"checkbox\" title=\"Show List\" name=\"showList\">\n <input type=\"checkbox\" title=\"Show Counter\" name=\"showCounter\" checked condition=\"showList\">\n <input type=\"color\" title=\"Counter Color\" name=\"counterColor\" value=\"#ffbc00\" condition=\"showCounter&&showList\">\n <input type=\"checkbox\" title=\"Media On Right/Left\" name=\"mediaLeft\" checked>\n <input type=\"checkbox\" title=\"Show Social\" name=\"showIcons\">\n <select title=\"Social Count\" name=\"iconsCount\" condition=\"showIcons\">\n <option value=\"1\">1</option>\n <option value=\"2\">2</option>\n <option value=\"3\">3</option>\n <option value=\"4\">4</option>\n <option value=\"5\" selected>5</option>\n </select>\n <input type=\"color\" title=\"Circle Hover\" name=\"circleHover\" value=\"#ffbc00\" condition=\"showIcons\">\n <input type=\"color\" title=\"Circle Color\" name=\"circleColor\" value=\"#ffffff\" condition=\"showIcons\">\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=\"#ffffff\" selected>\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'\">\n <input type=\"color\" title=\"Overlay Color\" name=\"overlayColor\" value=\"#a62a00\" condition=\"overlay && bg.type !== 'color'\">\n <input type=\"range\" inline title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.6\" condition=\"overlay && bg.type !== 'color'\">\n <!-- End block parameters -->\n </mbr-parameters>\n\n <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 <div class=\"row align-items-center content-row\">\n <div class=\"col-lg-6 wrap-block\">\n <h2 class=\"mbr-section-title mbr-fonts-style mbr-light mbr-white\" data-app-selector=\".mbr-section-title\" mbr-if=\"showTitle\" mbr-theme-style=\"display-2\"><b>Leidos & U.S. DOT</b></h2>\n <h3 class=\"mbr-section-subtitle mbr-fonts-style mbr-light mbr-white\" data-app-selector=\".mbr-section-subtitle\" mbr-if=\"showSubtitle\" mbr-theme-style=\"display-5\">Graduate Research Engineer<br><br></h3>\n <p class=\"mbr-text mbr-fonts-style mbr-light mbr-white\" data-app-selector=\".mbr-text\" mbr-if=\"showText\" mbr-theme-style=\"display-5\">I worked on this contract project from the U.S. DOT administered by Leidos. The CARMA is a software stack the is built using functional nodes of Autoware to satisfy the requirements of the U.S. DOT. My work involved porting CARMA to the F1/10 testbed and demonstrate that the F1/10 can be used as a CARMA testbed called CARMA 1-TENTH.<br></p>\n <div class=\"mbr-list counter-container mbr-fonts-style mbr-white\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-list,.social-media\" data-multiline mbr-article mbr-if=\"showList\">\n <ul>\n <li>Lorem ipsum dolor sit amet</li>\n <li>Lorem ipsum dolor sit amet</li>\n <li>Lorem ipsum dolor sit amet</li>\n <li>Lorem ipsum dolor sit amet</li>\n <li>Lorem ipsum dolor sit amet</li>\n </ul>\n </div>\n <div class=\"social-media col-md-12 col-sm-12\" mbr-if=\"showIcons\">\n <ul class=\"social-list\">\n <li mbr-if=\"iconsCount > 0\">\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\" style></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 </ul>\n </div>\n </div>\n <div class=\"col-lg-6 photo-split\">\n <a href=\"https://its.dot.gov/cda/\" target=\"_blank\"><img src=\"@PROJECT_PATH@/assets/images/carma-bot-1-1200x800.jpg\" alt></a>\n </div>\n </div>\n </div>\n</section>",
"_anchor": "features6-u",
"_isUserblock": true,
"_cid": "tJ4bpb9QoK",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": false,
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"background-color": "@bgColor",
".mbr-text": {
"text-align": "center"
},
".mbr-title": {
"text-align": "center"
}
},
"_name": "content2",
"_sourceTheme": "portfoliom4",
"_customHTML": "<section class=\"mbr-section content2\">\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=\"3\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"3\">\n <input type=\"checkbox\" title=\"Show Title\" name=\"showTitle\" checked>\n <input type=\"color\" title=\"Background Color\" name=\"bgColor\" value=\"#ffffff\">\n <!-- End block parameters -->\n </mbr-parameters>\n\n <div class=\"container\">\n <div class=\"row justify-content-center\">\n <div class=\"col-md-8 col-sm-12 text-section\">\n <h2 class=\"mbr-fonts-style mbr-title align-left pb-3\" mbr-if=\"showTitle\" data-app-selector=\".mbr-title\" mbr-theme-style=\"display-2\"><b>Project Portfolio</b><br></h2>\n <p class=\"mbr-fonts-style mbr-text align-left\" data-app-selector=\".mbr-text\" mbr-theme-style=\"display-5\">I am a computer engineer by training, but I have a deep passion for all things autonomous. I've worked on several different projects where software based autonomy was central to the mission.</p>\n </div>\n </div>\n </div>\n</section>",
"_cid": "tIZoNPEFZO",
"_anchor": "content2-l",
"_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)"
},
".icon-transition span": {
"padding": "0.1rem 0.9rem",
"border-radius": "50%",
"color": "rgb(255, 255, 255)",
"display": "block",
"height": "3em",
"line-height": "3em",
"width": "3em",
"background": "@circleColor none repeat scroll 0 0",
"-webkit-transition": "all 0.3s ease-out 0s",
"transition": "all 0.3s ease-out 0s",
"font-size": "14px"
},
".content-row": {
"& when (@mediaLeft)": {