forked from boliver5463/portfolio-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1151 lines (1087 loc) · 127 KB
/
index.html
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
<!DOCTYPE html>
<html class="no-js" lang="en-AU" prefix="og: http://ogp.me/ns#" itemscope itemtype="https://schema.org/WebPage">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="description" content="Web Developer">
<link rel="shortcut icon" href="https://boliver5463.github.io/portfolio-test/wp-content/uploads/2017/05/BO_Icon.png">
<link rel="apple-touch-icon" href="https://boliver5463.github.io/portfolio-test/wp-content/uploads/2017/05/BO_Icon.png">
<title>Brenton Oliver - Full Stack Web Developer and IT Advisor</title>
<script id="mfn-dnmc-config-js">
//<![CDATA[
window.mfn_ajax = "https://boliver5463.github.io/portfolio-test/wp-admin/admin-ajax.php";
window.mfn = {mobile_init:1240,nicescroll:40,parallax:"translate3d",responsive:1,retina_js:0};
window.mfn_lightbox = {disable:false,disableMobile:false,title:false,};
window.mfn_sliders = {blog:0,clients:0,offer:0,portfolio:0,shop:0,slider:0,testimonials:0};
//]]>
</script>
<meta name="description" content="Changing the world, One site at a time.">
<meta property="og:locale" content="en_US">
<meta property="og:type" content="website">
<meta property="og:title" content="Brenton Oliver">
<meta property="og:description" content="Changing the world, One website at a time.">
<meta property="og:url" content="https://boliver5463.github.io/portfolio-test/">
<meta property="og:site_name" content="Brenton Oliver">
<meta property="og:image" content="https://boliver5463.github.io/portfolio-test/wp-content/uploads/2019/02/photo-1451187580459-43490279c0fa-1024x682.jpeg">
<meta property="og:image:secure_url" content="https://boliver5463.github.io/portfolio-test/wp-content/uploads/2019/02/photo-1451187580459-43490279c0fa-1024x682.jpeg">
<meta property="og:image:width" content="1024">
<meta property="og:image:height" content="682">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:description" content="Changing the world, One website at a time.">
<meta name="twitter:title" content="Brenton Oliver">
<meta name="twitter:image" content="https://boliver5463.github.io/portfolio-test/wp-content/uploads/2019/02/photo-1451187580459-43490279c0fa.jpeg">
<script type="application/ld+json">{"@context":"https://schema.org","@type":"WebSite","@id":"https://boliver5463.github.io/portfolio-test/#website","url":"https://boliver5463.github.io/portfolio-test/","name":"Brenton Oliver","potentialAction":{"@type":"SearchAction","target":"https://boliver5463.github.io/portfolio-test/?s={search_term_string}","query-input":"required name=search_term_string"}}</script>
<link rel="dns-prefetch" href="//fonts.googleapis.com">
<link rel="dns-prefetch" href="//s.w.org">
<link rel="stylesheet" id="vcv:assets:front:style-css" href="https://boliver5463.github.io/portfolio-test/wp-content/plugins/visualcomposer/public/dist/front.bundle.css" type="text/css" media="all">
<link rel="stylesheet" id="wp-block-library-css" href="https://boliver5463.github.io/portfolio-test/wp-includes/css/dist/block-library/style.min.css" type="text/css" media="all">
<link rel="stylesheet" id="style-css" href="https://boliver5463.github.io/portfolio-test/wp-content/themes/betheme-child/style.css" type="text/css" media="all">
<link rel="stylesheet" id="fontawesome-css-css" href="https://boliver5463.github.io/portfolio-test/wp-content/plugins/bo-the-sacred-texts/css/fontawesome/all.min.css" type="text/css" media="all">
<link rel="stylesheet" id="bootstrap-css-css" href="https://boliver5463.github.io/portfolio-test/wp-content/plugins/bo-the-sacred-texts/css/bootstrap/bootstrap.min.css" type="text/css" media="all">
<link rel="stylesheet" id="animate-css-css" href="https://boliver5463.github.io/portfolio-test/wp-content/plugins/bo-the-sacred-texts/css/animate-css/animate.min.css" type="text/css" media="all">
<link rel="stylesheet" id="magic-css-css" href="https://boliver5463.github.io/portfolio-test/wp-content/plugins/bo-the-sacred-texts/css/magic-css/magic.min.css" type="text/css" media="all">
<link rel="stylesheet" id="contact-form-7-css" href="https://boliver5463.github.io/portfolio-test/wp-content/plugins/contact-form-7/includes/css/styles.css" type="text/css" media="all">
<link rel="stylesheet" id="mfn-base-css" href="https://boliver5463.github.io/portfolio-test/wp-content/themes/betheme/css/base.css" type="text/css" media="all">
<link rel="stylesheet" id="mfn-layout-css" href="https://boliver5463.github.io/portfolio-test/wp-content/themes/betheme/css/layout.css" type="text/css" media="all">
<link rel="stylesheet" id="mfn-shortcodes-css" href="https://boliver5463.github.io/portfolio-test/wp-content/themes/betheme/css/shortcodes.css" type="text/css" media="all">
<link rel="stylesheet" id="mfn-animations-css" href="https://boliver5463.github.io/portfolio-test/wp-content/themes/betheme/assets/animations/animations.min.css" type="text/css" media="all">
<link rel="stylesheet" id="mfn-jquery-ui-css" href="https://boliver5463.github.io/portfolio-test/wp-content/themes/betheme/assets/ui/jquery.ui.all.css" type="text/css" media="all">
<link rel="stylesheet" id="mfn-jplayer-css" href="https://boliver5463.github.io/portfolio-test/wp-content/themes/betheme/assets/jplayer/css/jplayer.blue.monday.css" type="text/css" media="all">
<link rel="stylesheet" id="mfn-responsive-css" href="https://boliver5463.github.io/portfolio-test/wp-content/themes/betheme/css/responsive.css" type="text/css" media="all">
<link rel="stylesheet" id="Roboto-css" href="https://fonts.googleapis.com/css?family=Roboto%3A1%2C300%2C400%2C400italic%2C500%2C700%2C700italic&ver=5.0.10" type="text/css" media="all">
<link rel="stylesheet" id="Lora-css" href="https://fonts.googleapis.com/css?family=Lora%3A1%2C300%2C400%2C400italic%2C500%2C700%2C700italic&ver=5.0.10" type="text/css" media="all">
<link rel="stylesheet" id="wpdreams-asl-basic-css" href="https://boliver5463.github.io/portfolio-test/wp-content/plugins/ajax-search-lite/css/style.basic.css" type="text/css" media="all">
<link rel="stylesheet" id="wpdreams-ajaxsearchlite-css" href="https://boliver5463.github.io/portfolio-test/wp-content/plugins/ajax-search-lite/css/style-simple-red.css" type="text/css" media="all">
<link rel="stylesheet" id="vcv:assets:global:styles:assets-bundlesglobal-elements-49d2bba971599f553bd7c26eb930e6d8css-css" href="https://boliver5463.github.io/portfolio-test/wp-content/uploads/visualcomposer-assets/assets-bundles/global-elements-49d2bba971599f553bd7c26eb930e6d8.css" type="text/css" media="all">
<link rel="stylesheet" id="vcv:assets:source:styles:assetslibrarybackgroundcolorgradientdistbackgroundcolorgradientbundlecss-css" href="https://boliver5463.github.io/portfolio-test/wp-content/plugins/visualcomposer/public/sources/assetsLibrary/backgroundColorGradient/dist/backgroundColorGradient.bundle.css" type="text/css" media="all">
<link rel="stylesheet" id="vcv:assets:source:styles:assetslibrarybackgroundsimpledistbackgroundsimplebundlecss-css" href="https://boliver5463.github.io/portfolio-test/wp-content/plugins/visualcomposer/public/sources/assetsLibrary/backgroundSimple/dist/backgroundSimple.bundle.css" type="text/css" media="all">
<link rel="stylesheet" id="vcv:assets:source:styles:assetslibraryparallaxmousemovedistparallaxmousemovebundlecss-css" href="https://boliver5463.github.io/portfolio-test/wp-content/plugins/visualcomposer/public/sources/assetsLibrary/parallaxMouseMove/dist/parallaxMouseMove.bundle.css" type="text/css" media="all">
<link rel="stylesheet" id="vcv:assets:source:main:styles:assets-bundles72da913bfc5fc4125acc92a4bba2b4f3sourcecss-css" href="https://boliver5463.github.io/portfolio-test/wp-content/uploads/visualcomposer-assets/assets-bundles/72da913bfc5fc4125acc92a4bba2b4f3.source.css" type="text/css" media="all">
<script type="text/javascript" src="https://boliver5463.github.io/portfolio-test/wp-includes/js/jquery/jquery.js"></script>
<script type="text/javascript" src="https://boliver5463.github.io/portfolio-test/wp-includes/js/jquery/jquery-migrate.min.js"></script>
<script type="text/javascript">var PwpJsVars = {"AjaxURL":"https:\/\/boliver5463.github.io\/portfolio-test\/wp-admin\/admin-ajax.php","homeurl":"https:\/\/boliver5463.github.io\/portfolio-test\/","installprompt":{"mode":"normal","pageloads":"2","onclick":""}};</script> <script type="text/javascript" id="serviceworker-unregister">
if ('serviceWorker' in navigator) {
navigator.serviceWorker.getRegistrations().then(function (registrations) {
registrations.forEach(function (registration) {
if (registration.active.scriptURL === window.location.origin + '/pwp-serviceworker.js') {
registration.unregister();
}
});
});
}
</script>
<script type="text/javascript" id="serviceworker">
if (navigator.serviceWorker) {
window.addEventListener('load', function () {
navigator.serviceWorker.register(
"https:\/\/boliver5463.github.io\/portfolio-test\/?wp_service_worker=1", {"scope": "\/"}
);
});
}
</script>
<link rel="manifest" href="https://boliver5463.github.io/portfolio-test/wp-json/app/v1/pwp-manifest"><meta name="theme-color" content="#5086ed"><script type="text/javascript">
(function(url){
if(/(?:Chrome\/26\.0\.1410\.63 Safari\/537\.31|WordfenceTestMonBot)/.test(navigator.userAgent)){ return; }
var addEvent = function(evt, handler) {
if (window.addEventListener) {
document.addEventListener(evt, handler, false);
} else if (window.attachEvent) {
document.attachEvent('on' + evt, handler);
}
};
var removeEvent = function(evt, handler) {
if (window.removeEventListener) {
document.removeEventListener(evt, handler, false);
} else if (window.detachEvent) {
document.detachEvent('on' + evt, handler);
}
};
var evts = 'contextmenu dblclick drag dragend dragenter dragleave dragover dragstart drop keydown keypress keyup mousedown mousemove mouseout mouseover mouseup mousewheel scroll'.split(' ');
var logHuman = function() {
if (window.wfLogHumanRan) { return; }
window.wfLogHumanRan = true;
var wfscr = document.createElement('script');
wfscr.type = 'text/javascript';
wfscr.async = true;
wfscr.src = url + '&r=' + Math.random();
(document.getElementsByTagName('head')[0]||document.getElementsByTagName('body')[0]).appendChild(wfscr);
for (var i = 0; i < evts.length; i++) {
removeEvent(evts[i], logHuman);
}
};
for (var i = 0; i < evts.length; i++) {
addEvent(evts[i], logHuman);
}
})('//PLACEHOLDER.wpsho/?wordfence_lh=1&hid=1A98439220C8AA0A96D5F20AD98D82AF');
</script>
<style id="mfn-dnmc-style-css">
@media only screen and (min-width: 1240px) {body:not(.header-simple) #Top_bar #menu{display:block!important}.tr-menu #Top_bar #menu{background:none!important}#Top_bar .menu > li > ul.mfn-megamenu{width:984px}#Top_bar .menu > li > ul.mfn-megamenu > li{float:left}#Top_bar .menu > li > ul.mfn-megamenu > li.mfn-megamenu-cols-1{width:100%}#Top_bar .menu > li > ul.mfn-megamenu > li.mfn-megamenu-cols-2{width:50%}#Top_bar .menu > li > ul.mfn-megamenu > li.mfn-megamenu-cols-3{width:33.33%}#Top_bar .menu > li > ul.mfn-megamenu > li.mfn-megamenu-cols-4{width:25%}#Top_bar .menu > li > ul.mfn-megamenu > li.mfn-megamenu-cols-5{width:20%}#Top_bar .menu > li > ul.mfn-megamenu > li.mfn-megamenu-cols-6{width:16.66%}#Top_bar .menu > li > ul.mfn-megamenu > li > ul{display:block!important;position:inherit;left:auto;top:auto;border-width:0 1px 0 0}#Top_bar .menu > li > ul.mfn-megamenu > li:last-child > ul{border:0}#Top_bar .menu > li > ul.mfn-megamenu > li > ul li{width:auto}#Top_bar .menu > li > ul.mfn-megamenu a.mfn-megamenu-title{text-transform:uppercase;font-weight:400;background:none}#Top_bar .menu > li > ul.mfn-megamenu a .menu-arrow{display:none}.menuo-right #Top_bar .menu > li > ul.mfn-megamenu{left:auto;right:0}.menuo-right #Top_bar .menu > li > ul.mfn-megamenu-bg{box-sizing:border-box}#Top_bar .menu > li > ul.mfn-megamenu-bg{padding:20px 166px 20px 20px;background-repeat:no-repeat;background-position:right bottom}.rtl #Top_bar .menu > li > ul.mfn-megamenu-bg{padding-left:166px;padding-right:20px;background-position:left bottom}#Top_bar .menu > li > ul.mfn-megamenu-bg > li{background:none}#Top_bar .menu > li > ul.mfn-megamenu-bg > li a{border:none}#Top_bar .menu > li > ul.mfn-megamenu-bg > li > ul{background:none!important;-webkit-box-shadow:0 0 0 0;-moz-box-shadow:0 0 0 0;box-shadow:0 0 0 0}.mm-vertical #Top_bar .container{position:relative;}.mm-vertical #Top_bar .top_bar_left{position:static;}.mm-vertical #Top_bar .menu > li ul{box-shadow:0 0 0 0 transparent!important;background-image:none;}.mm-vertical #Top_bar .menu > li > ul.mfn-megamenu{width:98%!important;margin:0 1%;padding:20px 0;}.mm-vertical.header-plain #Top_bar .menu > li > ul.mfn-megamenu{width:100%!important;margin:0;}.mm-vertical #Top_bar .menu > li > ul.mfn-megamenu > li{display:table-cell;float:none!important;width:10%;padding:0 15px;border-right:1px solid rgba(0, 0, 0, 0.05);}.mm-vertical #Top_bar .menu > li > ul.mfn-megamenu > li:last-child{border-right-width:0}.mm-vertical #Top_bar .menu > li > ul.mfn-megamenu > li.hide-border{border-right-width:0}.mm-vertical #Top_bar .menu > li > ul.mfn-megamenu > li a{border-bottom-width:0;padding:9px 15px;line-height:120%;}.mm-vertical #Top_bar .menu > li > ul.mfn-megamenu a.mfn-megamenu-title{font-weight:700;}.rtl .mm-vertical #Top_bar .menu > li > ul.mfn-megamenu > li:first-child{border-right-width:0}.rtl .mm-vertical #Top_bar .menu > li > ul.mfn-megamenu > li:last-child{border-right-width:1px}#Header_creative #Top_bar .menu > li > ul.mfn-megamenu{width:980px!important;margin:0;}.header-plain:not(.menuo-right) #Header .top_bar_left{width:auto!important}.header-stack.header-center #Top_bar #menu{display:inline-block!important}.header-simple #Top_bar #menu{display:none;height:auto;width:300px;bottom:auto;top:100%;right:1px;position:absolute;margin:0}.header-simple #Header a.responsive-menu-toggle{display:block;right:10px}.header-simple #Top_bar #menu > ul{width:100%;float:left}.header-simple #Top_bar #menu ul li{width:100%;padding-bottom:0;border-right:0;position:relative}.header-simple #Top_bar #menu ul li a{padding:0 20px;margin:0;display:block;height:auto;line-height:normal;border:none}.header-simple #Top_bar #menu ul li a:after{display:none}.header-simple #Top_bar #menu ul li a span{border:none;line-height:44px;display:inline;padding:0}.header-simple #Top_bar #menu ul li.submenu .menu-toggle{display:block;position:absolute;right:0;top:0;width:44px;height:44px;line-height:44px;font-size:30px;font-weight:300;text-align:center;cursor:pointer;color:#444;opacity:0.33;}.header-simple #Top_bar #menu ul li.submenu .menu-toggle:after{content:"+"}.header-simple #Top_bar #menu ul li.hover > .menu-toggle:after{content:"-"}.header-simple #Top_bar #menu ul li.hover a{border-bottom:0}.header-simple #Top_bar #menu ul.mfn-megamenu li .menu-toggle{display:none}.header-simple #Top_bar #menu ul li ul{position:relative!important;left:0!important;top:0;padding:0;margin:0!important;width:auto!important;background-image:none}.header-simple #Top_bar #menu ul li ul li{width:100%!important;display:block;padding:0;}.header-simple #Top_bar #menu ul li ul li a{padding:0 20px 0 30px}.header-simple #Top_bar #menu ul li ul li a .menu-arrow{display:none}.header-simple #Top_bar #menu ul li ul li a span{padding:0}.header-simple #Top_bar #menu ul li ul li a span:after{display:none!important}.header-simple #Top_bar .menu > li > ul.mfn-megamenu a.mfn-megamenu-title{text-transform:uppercase;font-weight:400}.header-simple #Top_bar .menu > li > ul.mfn-megamenu > li > ul{display:block!important;position:inherit;left:auto;top:auto}.header-simple #Top_bar #menu ul li ul li ul{border-left:0!important;padding:0;top:0}.header-simple #Top_bar #menu ul li ul li ul li a{padding:0 20px 0 40px}.rtl.header-simple #Top_bar #menu{left:1px;right:auto}.rtl.header-simple #Top_bar a.responsive-menu-toggle{left:10px;right:auto}.rtl.header-simple #Top_bar #menu ul li.submenu .menu-toggle{left:0;right:auto}.rtl.header-simple #Top_bar #menu ul li ul{left:auto!important;right:0!important}.rtl.header-simple #Top_bar #menu ul li ul li a{padding:0 30px 0 20px}.rtl.header-simple #Top_bar #menu ul li ul li ul li a{padding:0 40px 0 20px}.menu-highlight #Top_bar .menu > li{margin:0 2px}.menu-highlight:not(.header-creative) #Top_bar .menu > li > a{margin:20px 0;padding:0;-webkit-border-radius:5px;border-radius:5px}.menu-highlight #Top_bar .menu > li > a:after{display:none}.menu-highlight #Top_bar .menu > li > a span:not(.description){line-height:50px}.menu-highlight #Top_bar .menu > li > a span.description{display:none}.menu-highlight.header-stack #Top_bar .menu > li > a{margin:10px 0!important}.menu-highlight.header-stack #Top_bar .menu > li > a span:not(.description){line-height:40px}.menu-highlight.header-transparent #Top_bar .menu > li > a{margin:5px 0}.menu-highlight.header-simple #Top_bar #menu ul li,.menu-highlight.header-creative #Top_bar #menu ul li{margin:0}.menu-highlight.header-simple #Top_bar #menu ul li > a,.menu-highlight.header-creative #Top_bar #menu ul li > a{-webkit-border-radius:0;border-radius:0}.menu-highlight:not(.header-fixed):not(.header-simple) #Top_bar.is-sticky .menu > li > a{margin:10px 0!important;padding:5px 0!important}.menu-highlight:not(.header-fixed):not(.header-simple) #Top_bar.is-sticky .menu > li > a span{line-height:30px!important}.header-modern.menu-highlight.menuo-right .menu_wrapper{margin-right:20px}.menu-line-below #Top_bar .menu > li > a:after{top:auto;bottom:-4px}.menu-line-below #Top_bar.is-sticky .menu > li > a:after{top:auto;bottom:-4px}.menu-line-below-80 #Top_bar:not(.is-sticky) .menu > li > a:after{height:4px;left:10%;top:50%;margin-top:20px;width:80%}.menu-line-below-80-1 #Top_bar:not(.is-sticky) .menu > li > a:after{height:1px;left:10%;top:50%;margin-top:20px;width:80%}.menu-link-color #Top_bar .menu > li > a:after{display:none!important}.menu-arrow-top #Top_bar .menu > li > a:after{background:none repeat scroll 0 0 rgba(0,0,0,0)!important;border-color:#ccc transparent transparent;border-style:solid;border-width:7px 7px 0;display:block;height:0;left:50%;margin-left:-7px;top:0!important;width:0}.menu-arrow-top.header-transparent #Top_bar .menu > li > a:after,.menu-arrow-top.header-plain #Top_bar .menu > li > a:after{display:none}.menu-arrow-top #Top_bar.is-sticky .menu > li > a:after{top:0!important}.menu-arrow-bottom #Top_bar .menu > li > a:after{background:none!important;border-color:transparent transparent #ccc;border-style:solid;border-width:0 7px 7px;display:block;height:0;left:50%;margin-left:-7px;top:auto;bottom:0;width:0}.menu-arrow-bottom.header-transparent #Top_bar .menu > li > a:after,.menu-arrow-bottom.header-plain #Top_bar .menu > li > a:after{display:none}.menu-arrow-bottom #Top_bar.is-sticky .menu > li > a:after{top:auto;bottom:0}.menuo-no-borders #Top_bar .menu > li > a span:not(.description){border-right-width:0}.menuo-no-borders #Header_creative #Top_bar .menu > li > a span{border-bottom-width:0}.menuo-right #Top_bar .menu_wrapper{float:right}.menuo-right.header-stack:not(.header-center) #Top_bar .menu_wrapper{margin-right:150px}body.header-creative{padding-left:50px}body.header-creative.header-open{padding-left:250px}body.error404,body.under-construction,body.template-blank{padding-left:0!important}.header-creative.footer-fixed #Footer,.header-creative.footer-sliding #Footer,.header-creative.footer-stick #Footer.is-sticky{box-sizing:border-box;padding-left:50px;}.header-open.footer-fixed #Footer,.header-open.footer-sliding #Footer,.header-creative.footer-stick #Footer.is-sticky{padding-left:250px;}.header-rtl.header-creative.footer-fixed #Footer,.header-rtl.header-creative.footer-sliding #Footer,.header-rtl.header-creative.footer-stick #Footer.is-sticky{padding-left:0;padding-right:50px;}.header-rtl.header-open.footer-fixed #Footer,.header-rtl.header-open.footer-sliding #Footer,.header-rtl.header-creative.footer-stick #Footer.is-sticky{padding-right:250px;}#Header_creative{background:#fff;position:fixed;width:250px;height:100%;left:-200px;top:0;z-index:9002;-webkit-box-shadow:2px 0 4px 2px rgba(0,0,0,.15);box-shadow:2px 0 4px 2px rgba(0,0,0,.15)}#Header_creative .container{width:100%}#Header_creative .creative-wrapper{opacity:0;margin-right:50px}#Header_creative a.creative-menu-toggle{display:block;width:34px;height:34px;line-height:34px;font-size:22px;text-align:center;position:absolute;top:10px;right:8px;border-radius:3px}.admin-bar #Header_creative a.creative-menu-toggle{top:42px}#Header_creative #Top_bar{position:static;width:100%}#Header_creative #Top_bar .top_bar_left{width:100%!important;float:none}#Header_creative #Top_bar .top_bar_right{width:100%!important;float:none;height:auto;margin-bottom:35px;text-align:center;padding:0 20px;top:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#Header_creative #Top_bar .top_bar_right:before{display:none}#Header_creative #Top_bar .top_bar_right_wrapper{top:0}#Header_creative #Top_bar .logo{float:none;text-align:center;margin:15px 0}#Header_creative #Top_bar .menu_wrapper{float:none;margin:0 0 30px}#Header_creative #Top_bar .menu > li{width:100%;float:none;position:relative}#Header_creative #Top_bar .menu > li > a{padding:0;text-align:center}#Header_creative #Top_bar .menu > li > a:after{display:none}#Header_creative #Top_bar .menu > li > a span{border-right:0;border-bottom-width:1px;line-height:38px}#Header_creative #Top_bar .menu li ul{left:100%;right:auto;top:0;box-shadow:2px 2px 2px 0 rgba(0,0,0,0.03);-webkit-box-shadow:2px 2px 2px 0 rgba(0,0,0,0.03)}#Header_creative #Top_bar .menu > li > ul.mfn-megamenu{width:700px!important;}#Header_creative #Top_bar .menu > li > ul.mfn-megamenu > li > ul{left:0}#Header_creative #Top_bar .menu li ul li a{padding-top:9px;padding-bottom:8px}#Header_creative #Top_bar .menu li ul li ul{top:0!important}#Header_creative #Top_bar .menu > li > a span.description{display:block;font-size:13px;line-height:28px!important;clear:both}#Header_creative #Top_bar .search_wrapper{left:100%;top:auto;bottom:0}#Header_creative #Top_bar a#header_cart{display:inline-block;float:none;top:3px}#Header_creative #Top_bar a#search_button{display:inline-block;float:none;top:3px}#Header_creative #Top_bar .wpml-languages{display:inline-block;float:none;top:0}#Header_creative #Top_bar .wpml-languages.enabled:hover a.active{padding-bottom:9px}#Header_creative #Top_bar a.button.action_button{display:inline-block;float:none;top:16px;margin:0}#Header_creative #Top_bar .banner_wrapper{display:block;text-align:center}#Header_creative #Top_bar .banner_wrapper img{max-width:100%;height:auto;display:inline-block}#Header_creative #Action_bar{display:none;position:absolute;bottom:0;top:auto;clear:both;padding:0 20px;box-sizing:border-box}#Header_creative #Action_bar .social{float:none;text-align:center;padding:5px 0 15px}#Header_creative #Action_bar .social li{margin-bottom:2px}#Header_creative .social li a{color:rgba(0,0,0,.5)}#Header_creative .social li a:hover{color:#000}#Header_creative .creative-social{position:absolute;bottom:10px;right:0;width:50px}#Header_creative .creative-social li{display:block;float:none;width:100%;text-align:center;margin-bottom:5px}.header-creative .fixed-nav.fixed-nav-prev{margin-left:50px}.header-creative.header-open .fixed-nav.fixed-nav-prev{margin-left:250px}.menuo-last #Header_creative #Top_bar .menu li.last ul{top:auto;bottom:0}.header-open #Header_creative{left:0}.header-open #Header_creative .creative-wrapper{opacity:1;margin:0!important;}.header-open #Header_creative .creative-menu-toggle,.header-open #Header_creative .creative-social{display:none}.header-open #Header_creative #Action_bar{display:block}body.header-rtl.header-creative{padding-left:0;padding-right:50px}.header-rtl #Header_creative{left:auto;right:-200px}.header-rtl.nice-scroll #Header_creative{margin-right:10px}.header-rtl #Header_creative .creative-wrapper{margin-left:50px;margin-right:0}.header-rtl #Header_creative a.creative-menu-toggle{left:8px;right:auto}.header-rtl #Header_creative .creative-social{left:0;right:auto}.header-rtl #Footer #back_to_top.sticky{right:125px}.header-rtl #popup_contact{right:70px}.header-rtl #Header_creative #Top_bar .menu li ul{left:auto;right:100%}.header-rtl #Header_creative #Top_bar .search_wrapper{left:auto;right:100%;}.header-rtl .fixed-nav.fixed-nav-prev{margin-left:0!important}.header-rtl .fixed-nav.fixed-nav-next{margin-right:50px}body.header-rtl.header-creative.header-open{padding-left:0;padding-right:250px!important}.header-rtl.header-open #Header_creative{left:auto;right:0}.header-rtl.header-open #Footer #back_to_top.sticky{right:325px}.header-rtl.header-open #popup_contact{right:270px}.header-rtl.header-open .fixed-nav.fixed-nav-next{margin-right:250px}#Header_creative.active{left:-1px;}.header-rtl #Header_creative.active{left:auto;right:-1px;}#Header_creative.active .creative-wrapper{opacity:1;margin:0}.header-creative .vc_row[data-vc-full-width]{padding-left:50px}.header-creative.header-open .vc_row[data-vc-full-width]{padding-left:250px}.header-open .vc_parallax .vc_parallax-inner { left:auto; width: calc(100% - 250px); }.header-open.header-rtl .vc_parallax .vc_parallax-inner { left:0; right:auto; }#Header_creative.scroll{height:100%;overflow-y:auto}#Header_creative.scroll:not(.dropdown) .menu li ul{display:none!important}#Header_creative.scroll #Action_bar{position:static}#Header_creative.dropdown{outline:none}#Header_creative.dropdown #Top_bar .menu_wrapper{float:left}#Header_creative.dropdown #Top_bar #menu ul li{position:relative;float:left}#Header_creative.dropdown #Top_bar #menu ul li a:after{display:none}#Header_creative.dropdown #Top_bar #menu ul li a span{line-height:38px;padding:0}#Header_creative.dropdown #Top_bar #menu ul li.submenu .menu-toggle{display:block;position:absolute;right:0;top:0;width:38px;height:38px;line-height:38px;font-size:26px;font-weight:300;text-align:center;cursor:pointer;color:#444;opacity:0.33;}#Header_creative.dropdown #Top_bar #menu ul li.submenu .menu-toggle:after{content:"+"}#Header_creative.dropdown #Top_bar #menu ul li.hover > .menu-toggle:after{content:"-"}#Header_creative.dropdown #Top_bar #menu ul li.hover a{border-bottom:0}#Header_creative.dropdown #Top_bar #menu ul.mfn-megamenu li .menu-toggle{display:none}#Header_creative.dropdown #Top_bar #menu ul li ul{position:relative!important;left:0!important;top:0;padding:0;margin-left:0!important;width:auto!important;background-image:none}#Header_creative.dropdown #Top_bar #menu ul li ul li{width:100%!important}#Header_creative.dropdown #Top_bar #menu ul li ul li a{padding:0 10px;text-align:center}#Header_creative.dropdown #Top_bar #menu ul li ul li a .menu-arrow{display:none}#Header_creative.dropdown #Top_bar #menu ul li ul li a span{padding:0}#Header_creative.dropdown #Top_bar #menu ul li ul li a span:after{display:none!important}#Header_creative.dropdown #Top_bar .menu > li > ul.mfn-megamenu a.mfn-megamenu-title{text-transform:uppercase;font-weight:400}#Header_creative.dropdown #Top_bar .menu > li > ul.mfn-megamenu > li > ul{display:block!important;position:inherit;left:auto;top:auto}#Header_creative.dropdown #Top_bar #menu ul li ul li ul{border-left:0!important;padding:0;top:0}#Header_creative{transition: left .5s ease-in-out, right .5s ease-in-out;}#Header_creative .creative-wrapper{transition: opacity .5s ease-in-out, margin 0s ease-in-out .5s;}#Header_creative.active .creative-wrapper{transition: opacity .5s ease-in-out, margin 0s ease-in-out;}}@media only screen and (min-width: 9999px) {#Top_bar.is-sticky{position:fixed!important;width:100%;left:0;top:-60px;height:60px;z-index:701;background:#fff;opacity:.97;filter:alpha(opacity = 97);-webkit-box-shadow:0 2px 5px 0 rgba(0,0,0,0.1);-moz-box-shadow:0 2px 5px 0 rgba(0,0,0,0.1);box-shadow:0 2px 5px 0 rgba(0,0,0,0.1)}.layout-boxed.header-boxed #Top_bar.is-sticky{max-width:1240px;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.layout-boxed.header-boxed.nice-scroll #Top_bar.is-sticky{margin-left:-5px}#Top_bar.is-sticky .top_bar_left,#Top_bar.is-sticky .top_bar_right,#Top_bar.is-sticky .top_bar_right:before{background:none}#Top_bar.is-sticky .top_bar_right{top:-4px;height:auto;}#Top_bar.is-sticky .top_bar_right_wrapper{top:15px}.header-plain #Top_bar.is-sticky .top_bar_right_wrapper{top:0}#Top_bar.is-sticky .logo{width:auto;margin:0 30px 0 20px;padding:0}#Top_bar.is-sticky #logo{padding:5px 0!important;height:50px!important;line-height:50px!important}.logo-no-sticky-padding #Top_bar.is-sticky #logo{height:60px!important;line-height:60px!important}#Top_bar.is-sticky #logo img.logo-main{display:none}#Top_bar.is-sticky #logo img.logo-sticky{display:inline;max-height:35px;}#Top_bar.is-sticky .menu_wrapper{clear:none}#Top_bar.is-sticky .menu_wrapper .menu > li > a{padding:15px 0}#Top_bar.is-sticky .menu > li > a,#Top_bar.is-sticky .menu > li > a span{line-height:30px}#Top_bar.is-sticky .menu > li > a:after{top:auto;bottom:-4px}#Top_bar.is-sticky .menu > li > a span.description{display:none}#Top_bar.is-sticky .secondary_menu_wrapper,#Top_bar.is-sticky .banner_wrapper{display:none}.header-overlay #Top_bar.is-sticky{display:none}.sticky-dark #Top_bar.is-sticky{background:rgba(0,0,0,.8)}.sticky-dark #Top_bar.is-sticky #menu{background:rgba(0,0,0,.8)}.sticky-dark #Top_bar.is-sticky .menu > li > a{color:#fff}.sticky-dark #Top_bar.is-sticky .top_bar_right a{color:rgba(255,255,255,.5)}.sticky-dark #Top_bar.is-sticky .wpml-languages a.active,.sticky-dark #Top_bar.is-sticky .wpml-languages ul.wpml-lang-dropdown{background:rgba(0,0,0,0.3);border-color:rgba(0,0,0,0.1)}}@media only screen and (max-width: 1239px){#Top_bar #menu{display:none;height:auto;width:300px;bottom:auto;top:100%;right:1px;position:absolute;margin:0}#Top_bar a.responsive-menu-toggle{display:block}#Top_bar #menu > ul{width:100%;float:left}#Top_bar #menu ul li{width:100%;padding-bottom:0;border-right:0;position:relative}#Top_bar #menu ul li a{padding:0 25px;margin:0;display:block;height:auto;line-height:normal;border:none}#Top_bar #menu ul li a:after{display:none}#Top_bar #menu ul li a span{border:none;line-height:44px;display:inline;padding:0}#Top_bar #menu ul li a span.description{margin:0 0 0 5px}#Top_bar #menu ul li.submenu .menu-toggle{display:block;position:absolute;right:15px;top:0;width:44px;height:44px;line-height:44px;font-size:30px;font-weight:300;text-align:center;cursor:pointer;color:#444;opacity:0.33;}#Top_bar #menu ul li.submenu .menu-toggle:after{content:"+"}#Top_bar #menu ul li.hover > .menu-toggle:after{content:"-"}#Top_bar #menu ul li.hover a{border-bottom:0}#Top_bar #menu ul li a span:after{display:none!important}#Top_bar #menu ul.mfn-megamenu li .menu-toggle{display:none}#Top_bar #menu ul li ul{position:relative!important;left:0!important;top:0;padding:0;margin-left:0!important;width:auto!important;background-image:none!important;box-shadow:0 0 0 0 transparent!important;-webkit-box-shadow:0 0 0 0 transparent!important}#Top_bar #menu ul li ul li{width:100%!important}#Top_bar #menu ul li ul li a{padding:0 20px 0 35px}#Top_bar #menu ul li ul li a .menu-arrow{display:none}#Top_bar #menu ul li ul li a span{padding:0}#Top_bar #menu ul li ul li a span:after{display:none!important}#Top_bar .menu > li > ul.mfn-megamenu a.mfn-megamenu-title{text-transform:uppercase;font-weight:400}#Top_bar .menu > li > ul.mfn-megamenu > li > ul{display:block!important;position:inherit;left:auto;top:auto}#Top_bar #menu ul li ul li ul{border-left:0!important;padding:0;top:0}#Top_bar #menu ul li ul li ul li a{padding:0 20px 0 45px}.rtl #Top_bar #menu{left:1px;right:auto}.rtl #Top_bar a.responsive-menu-toggle{left:20px;right:auto}.rtl #Top_bar #menu ul li.submenu .menu-toggle{left:15px;right:auto;border-left:none;border-right:1px solid #eee}.rtl #Top_bar #menu ul li ul{left:auto!important;right:0!important}.rtl #Top_bar #menu ul li ul li a{padding:0 30px 0 20px}.rtl #Top_bar #menu ul li ul li ul li a{padding:0 40px 0 20px}.header-stack .menu_wrapper a.responsive-menu-toggle{position:static!important;margin:11px 0!important}.header-stack .menu_wrapper #menu{left:0;right:auto}.rtl.header-stack #Top_bar #menu{left:auto;right:0}.admin-bar #Header_creative{top:32px}.header-creative.layout-boxed{padding-top:85px}.header-creative.layout-full-width #Wrapper{padding-top:60px}#Header_creative{position:fixed;width:100%;left:0!important;top:0;z-index:1001}#Header_creative .creative-wrapper{display:block!important;opacity:1!important}#Header_creative .creative-menu-toggle,#Header_creative .creative-social{display:none!important;opacity:1!important;filter:alpha(opacity=100)!important}#Header_creative #Top_bar{position:static;width:100%}#Header_creative #Top_bar #logo{height:50px;line-height:50px;padding:5px 0}#Header_creative #Top_bar #logo img.logo-sticky{max-height:40px!important}#Header_creative #logo img.logo-main{display:none}#Header_creative #logo img.logo-sticky{display:inline-block}.logo-no-sticky-padding #Header_creative #Top_bar #logo{height:60px;line-height:60px;padding:0}.logo-no-sticky-padding #Header_creative #Top_bar #logo img.logo-sticky{max-height:60px!important}#Header_creative #Top_bar #header_cart{top:21px}#Header_creative #Top_bar #search_button{top:20px}#Header_creative #Top_bar .wpml-languages{top:11px}#Header_creative #Top_bar .action_button{top:9px}#Header_creative #Top_bar .top_bar_right{height:60px;top:0}#Header_creative #Top_bar .top_bar_right:before{display:none}#Header_creative #Top_bar .top_bar_right_wrapper{top:0}#Header_creative #Action_bar{display:none}#Header_creative.scroll{overflow:visible!important}}#Header_wrapper, #Intro {background-color: #000119;}#Subheader {background-color: rgba(247, 247, 247, 1);}.header-classic #Action_bar, .header-fixed #Action_bar, .header-plain #Action_bar, .header-split #Action_bar, .header-stack #Action_bar {background-color: #292b33;}#Sliding-top {background-color: #545454;}#Sliding-top a.sliding-top-control {border-right-color: #545454;}#Sliding-top.st-center a.sliding-top-control,#Sliding-top.st-left a.sliding-top-control {border-top-color: #545454;}#Footer {background-color: #5086ED;}body, ul.timeline_items, .icon_box a .desc, .icon_box a:hover .desc, .feature_list ul li a, .list_item a, .list_item a:hover,.widget_recent_entries ul li a, .flat_box a, .flat_box a:hover, .story_box .desc, .content_slider.carouselul li a .title,.content_slider.flat.description ul li .desc, .content_slider.flat.description ul li a .desc, .post-nav.minimal a i {color: #626262;}.post-nav.minimal a svg {fill: #626262;}.themecolor, .opening_hours .opening_hours_wrapper li span, .fancy_heading_icon .icon_top,.fancy_heading_arrows .icon-right-dir, .fancy_heading_arrows .icon-left-dir, .fancy_heading_line .title,.button-love a.mfn-love, .format-link .post-title .icon-link, .pager-single > span, .pager-single a:hover,.widget_meta ul, .widget_pages ul, .widget_rss ul, .widget_mfn_recent_comments ul li:after, .widget_archive ul,.widget_recent_comments ul li:after, .widget_nav_menu ul, .woocommerce ul.products li.product .price, .shop_slider .shop_slider_ul li .item_wrapper .price,.woocommerce-page ul.products li.product .price, .widget_price_filter .price_label .from, .widget_price_filter .price_label .to,.woocommerce ul.product_list_widget li .quantity .amount, .woocommerce .product div.entry-summary .price, .woocommerce .star-rating span,#Error_404 .error_pic i, .style-simple #Filters .filters_wrapper ul li a:hover, .style-simple #Filters .filters_wrapper ul li.current-cat a,.style-simple .quick_fact .title {color: #0095eb;}.themebg,#comments .commentlist > li .reply a.comment-reply-link,#Filters .filters_wrapper ul li a:hover,#Filters .filters_wrapper ul li.current-cat a,.fixed-nav .arrow,.offer_thumb .slider_pagination a:before,.offer_thumb .slider_pagination a.selected:after,.pager .pages a:hover,.pager .pages a.active,.pager .pages span.page-numbers.current,.pager-single span:after,.portfolio_group.exposure .portfolio-item .desc-inner .line,.Recent_posts ul li .desc:after,.Recent_posts ul li .photo .c,.slider_pagination a.selected,.slider_pagination .slick-active a,.slider_pagination a.selected:after,.slider_pagination .slick-active a:after,.testimonials_slider .slider_images,.testimonials_slider .slider_images a:after,.testimonials_slider .slider_images:before,#Top_bar a#header_cart span,.widget_categories ul,.widget_mfn_menu ul li a:hover,.widget_mfn_menu ul li.current-menu-item:not(.current-menu-ancestor) > a,.widget_mfn_menu ul li.current_page_item:not(.current_page_ancestor) > a,.widget_product_categories ul,.widget_recent_entries ul li:after,.woocommerce-account table.my_account_orders .order-number a,.woocommerce-MyAccount-navigation ul li.is-active a,.style-simple .accordion .question:after,.style-simple .faq .question:after,.style-simple .icon_box .desc_wrapper .title:before,.style-simple #Filters .filters_wrapper ul li a:after,.style-simple .article_box .desc_wrapper p:after,.style-simple .sliding_box .desc_wrapper:after,.style-simple .trailer_box:hover .desc,.tp-bullets.simplebullets.round .bullet.selected,.tp-bullets.simplebullets.round .bullet.selected:after,.tparrows.default,.tp-bullets.tp-thumbs .bullet.selected:after{background-color: #0095eb;}.Latest_news ul li .photo, .Recent_posts.blog_news ul li .photo, .style-simple .opening_hours .opening_hours_wrapper li label,.style-simple .timeline_items li:hover h3, .style-simple .timeline_items li:nth-child(even):hover h3,.style-simple .timeline_items li:hover .desc, .style-simple .timeline_items li:nth-child(even):hover,.style-simple .offer_thumb .slider_pagination a.selected {border-color: #0095eb;}a {color: #0095eb;}a:hover {color: #007cc3;}*::-moz-selection {background-color: #0095eb;}*::selection {background-color: #0095eb;}.blockquote p.author span, .counter .desc_wrapper .title, .article_box .desc_wrapper p, .team .desc_wrapper p.subtitle,.pricing-box .plan-header p.subtitle, .pricing-box .plan-header .price sup.period, .chart_box p, .fancy_heading .inside,.fancy_heading_line .slogan, .post-meta, .post-meta a, .post-footer, .post-footer a span.label, .pager .pages a, .button-love a .label,.pager-single a, #comments .commentlist > li .comment-author .says, .fixed-nav .desc .date, .filters_buttons li.label, .Recent_posts ul li a .desc .date,.widget_recent_entries ul li .post-date, .tp_recent_tweets .twitter_time, .widget_price_filter .price_label, .shop-filters .woocommerce-result-count,.woocommerce ul.product_list_widget li .quantity, .widget_shopping_cart ul.product_list_widget li dl, .product_meta .posted_in,.woocommerce .shop_table .product-name .variation > dd, .shipping-calculator-button:after,.shop_slider .shop_slider_ul li .item_wrapper .price del,.testimonials_slider .testimonials_slider_ul li .author span, .testimonials_slider .testimonials_slider_ul li .author span a, .Latest_news ul li .desc_footer,.share-simple-wrapper .icons a {color: #a8a8a8;}h1, h1 a, h1 a:hover, .text-logo #logo { color: #161922; }h2, h2 a, h2 a:hover { color: #161922; }h3, h3 a, h3 a:hover { color: #161922; }h4, h4 a, h4 a:hover, .style-simple .sliding_box .desc_wrapper h4 { color: #161922; }h5, h5 a, h5 a:hover { color: #161922; }h6, h6 a, h6 a:hover,a.content_link .title { color: #161922; }.dropcap, .highlight:not(.highlight_image) {background-color: #0095eb;}a.button, a.tp-button {background-color: #f7f7f7;color: #747474;}.button-stroke a.button, .button-stroke a.button.action_button, .button-stroke a.button .button_icon i, .button-stroke a.tp-button {border-color: #f7f7f7;color: #747474;}.button-stroke a:hover.button, .button-stroke a:hover.tp-button {background-color: #f7f7f7 !important;color: #fff;}a.button_theme, a.tp-button.button_theme,button, input[type="submit"], input[type="reset"], input[type="button"] {background-color: #0095eb;color: #ffffff;}.button-stroke a.button.button_theme:not(.action_button),.button-stroke a.button.button_theme .button_icon i, .button-stroke a.tp-button.button_theme,.button-stroke button, .button-stroke input[type="submit"], .button-stroke input[type="reset"], .button-stroke input[type="button"] {border-color: #0095eb;color: #0095eb !important;}.button-stroke a.button.button_theme:hover, .button-stroke a.tp-button.button_theme:hover,.button-stroke button:hover, .button-stroke input[type="submit"]:hover, .button-stroke input[type="reset"]:hover, .button-stroke input[type="button"]:hover {background-color: #0095eb !important;color: #ffffff !important;}a.mfn-link {color: #656B6F;}a.mfn-link-2 span, a:hover.mfn-link-2 span:before, a.hover.mfn-link-2 span:before, a.mfn-link-5 span, a.mfn-link-8:after, a.mfn-link-8:before {background: #0095eb;}a:hover.mfn-link {color: #0095eb;}a.mfn-link-2 span:before, a:hover.mfn-link-4:before, a:hover.mfn-link-4:after, a.hover.mfn-link-4:before, a.hover.mfn-link-4:after, a.mfn-link-5:before, a.mfn-link-7:after, a.mfn-link-7:before {background: #007cc3;}a.mfn-link-6:before {border-bottom-color: #007cc3;}.woocommerce #respond input#submit,.woocommerce a.button,.woocommerce button.button,.woocommerce input.button,.woocommerce #respond input#submit:hover,.woocommerce a.button:hover,.woocommerce button.button:hover,.woocommerce input.button:hover{background-color: #0095eb;color: #fff;}.woocommerce #respond input#submit.alt,.woocommerce a.button.alt,.woocommerce button.button.alt,.woocommerce input.button.alt,.woocommerce #respond input#submit.alt:hover,.woocommerce a.button.alt:hover,.woocommerce button.button.alt:hover,.woocommerce input.button.alt:hover{background-color: #0095eb;color: #fff;}.woocommerce #respond input#submit.disabled,.woocommerce #respond input#submit:disabled,.woocommerce #respond input#submit[disabled]:disabled,.woocommerce a.button.disabled,.woocommerce a.button:disabled,.woocommerce a.button[disabled]:disabled,.woocommerce button.button.disabled,.woocommerce button.button:disabled,.woocommerce button.button[disabled]:disabled,.woocommerce input.button.disabled,.woocommerce input.button:disabled,.woocommerce input.button[disabled]:disabled{background-color: #0095eb;color: #fff;}.woocommerce #respond input#submit.disabled:hover,.woocommerce #respond input#submit:disabled:hover,.woocommerce #respond input#submit[disabled]:disabled:hover,.woocommerce a.button.disabled:hover,.woocommerce a.button:disabled:hover,.woocommerce a.button[disabled]:disabled:hover,.woocommerce button.button.disabled:hover,.woocommerce button.button:disabled:hover,.woocommerce button.button[disabled]:disabled:hover,.woocommerce input.button.disabled:hover,.woocommerce input.button:disabled:hover,.woocommerce input.button[disabled]:disabled:hover{background-color: #0095eb;color: #fff;}.button-stroke.woocommerce-page #respond input#submit,.button-stroke.woocommerce-page a.button:not(.action_button),.button-stroke.woocommerce-page button.button,.button-stroke.woocommerce-page input.button{border: 2px solid #0095eb !important;color: #0095eb !important;}.button-stroke.woocommerce-page #respond input#submit:hover,.button-stroke.woocommerce-page a.button:not(.action_button):hover,.button-stroke.woocommerce-page button.button:hover,.button-stroke.woocommerce-page input.button:hover{background-color: #0095eb !important;color: #fff !important;}.column_column ul, .column_column ol, .the_content_wrapper ul, .the_content_wrapper ol {color: #737E86;}.hr_color, .hr_color hr, .hr_dots span {color: #0095eb;background: #0095eb;}.hr_zigzag i {color: #0095eb;}.highlight-left:after,.highlight-right:after {background: #0095eb;}@media only screen and (max-width: 767px) {.highlight-left .wrap:first-child,.highlight-right .wrap:last-child {background: #0095eb;}}#Header .top_bar_left, .header-classic #Top_bar, .header-plain #Top_bar, .header-stack #Top_bar, .header-split #Top_bar,.header-fixed #Top_bar, .header-below #Top_bar, #Header_creative, #Top_bar #menu, .sticky-tb-color #Top_bar.is-sticky {background-color: #ffffff;}#Top_bar .wpml-languages a.active, #Top_bar .wpml-languages ul.wpml-lang-dropdown {background-color: #ffffff;}#Top_bar .top_bar_right:before {background-color: #e3e3e3;}#Header .top_bar_right {background-color: #f5f5f5;}#Top_bar .top_bar_right a:not(.action_button) {color: #ffffff;}#Top_bar .menu > li > a,#Top_bar #menu ul li.submenu .menu-toggle {color: #ffffff;}#Top_bar .menu > li.current-menu-item > a,#Top_bar .menu > li.current_page_item > a,#Top_bar .menu > li.current-menu-parent > a,#Top_bar .menu > li.current-page-parent > a,#Top_bar .menu > li.current-menu-ancestor > a,#Top_bar .menu > li.current-page-ancestor > a,#Top_bar .menu > li.current_page_ancestor > a,#Top_bar .menu > li.hover > a {color: #ffffff;}#Top_bar .menu > li a:after {background: #ffffff;}.menuo-arrows #Top_bar .menu > li.submenu > a > span:not(.description)::after {border-top-color: #ffffff;}#Top_bar .menu > li.current-menu-item.submenu > a > span:not(.description)::after,#Top_bar .menu > li.current_page_item.submenu > a > span:not(.description)::after,#Top_bar .menu > li.current-menu-parent.submenu > a > span:not(.description)::after,#Top_bar .menu > li.current-page-parent.submenu > a > span:not(.description)::after,#Top_bar .menu > li.current-menu-ancestor.submenu > a > span:not(.description)::after,#Top_bar .menu > li.current-page-ancestor.submenu > a > span:not(.description)::after,#Top_bar .menu > li.current_page_ancestor.submenu > a > span:not(.description)::after,#Top_bar .menu > li.hover.submenu > a > span:not(.description)::after {border-top-color: #ffffff;}.menu-highlight #Top_bar #menu > ul > li.current-menu-item > a,.menu-highlight #Top_bar #menu > ul > li.current_page_item > a,.menu-highlight #Top_bar #menu > ul > li.current-menu-parent > a,.menu-highlight #Top_bar #menu > ul > li.current-page-parent > a,.menu-highlight #Top_bar #menu > ul > li.current-menu-ancestor > a,.menu-highlight #Top_bar #menu > ul > li.current-page-ancestor > a,.menu-highlight #Top_bar #menu > ul > li.current_page_ancestor > a,.menu-highlight #Top_bar #menu > ul > li.hover > a {background: #F2F2F2;}.menu-arrow-bottom #Top_bar .menu > li > a:after { border-bottom-color: #ffffff;}.menu-arrow-top #Top_bar .menu > li > a:after {border-top-color: #ffffff;}.header-plain #Top_bar .menu > li.current-menu-item > a,.header-plain #Top_bar .menu > li.current_page_item > a,.header-plain #Top_bar .menu > li.current-menu-parent > a,.header-plain #Top_bar .menu > li.current-page-parent > a,.header-plain #Top_bar .menu > li.current-menu-ancestor > a,.header-plain #Top_bar .menu > li.current-page-ancestor > a,.header-plain #Top_bar .menu > li.current_page_ancestor > a,.header-plain #Top_bar .menu > li.hover > a,.header-plain #Top_bar a:hover#header_cart,.header-plain #Top_bar a:hover#search_button,.header-plain #Top_bar .wpml-languages:hover,.header-plain #Top_bar .wpml-languages ul.wpml-lang-dropdown {background: #F2F2F2;color: #ffffff;}.header-plain #Top_bar,.header-plain #Top_bar .menu > li > a span:not(.description),.header-plain #Top_bar a#header_cart,.header-plain #Top_bar a#search_button,.header-plain #Top_bar .wpml-languages,.header-plain #Top_bar a.button.action_button {border-color: #F2F2F2;}#Top_bar .menu > li ul {background-color: #878787;}#Top_bar .menu > li ul li a {color: #ffffff;}#Top_bar .menu > li ul li a:hover,#Top_bar .menu > li ul li.hover > a {color: #e0e0e0;}#Top_bar .search_wrapper {background: #0095eb;}.overlay-menu-toggle {color: #ffffff !important;background: transparent;}#Overlay {background: rgba(0, 149, 235, 0.95);}#overlay-menu ul li a, .header-overlay .overlay-menu-toggle.focus {color: #FFFFFF;}#overlay-menu ul li.current-menu-item > a,#overlay-menu ul li.current_page_item > a,#overlay-menu ul li.current-menu-parent > a,#overlay-menu ul li.current-page-parent > a,#overlay-menu ul li.current-menu-ancestor > a,#overlay-menu ul li.current-page-ancestor > a,#overlay-menu ul li.current_page_ancestor > a {color: #B1DCFB;}#Top_bar .responsive-menu-toggle,#Header_creative .creative-menu-toggle,#Header_creative .responsive-menu-toggle {color: #ffffff;background: transparent;}#Side_slide{background-color: #191919;border-color: #191919; }#Side_slide,#Side_slide .search-wrapper input.field,#Side_slide a:not(.button),#Side_slide #menu ul li.submenu .menu-toggle{color: #A6A6A6;}#Side_slide a:not(.button):hover,#Side_slide a.active,#Side_slide #menu ul li.hover > .menu-toggle{color: #FFFFFF;}#Side_slide #menu ul li.current-menu-item > a,#Side_slide #menu ul li.current_page_item > a,#Side_slide #menu ul li.current-menu-parent > a,#Side_slide #menu ul li.current-page-parent > a,#Side_slide #menu ul li.current-menu-ancestor > a,#Side_slide #menu ul li.current-page-ancestor > a,#Side_slide #menu ul li.current_page_ancestor > a,#Side_slide #menu ul li.hover > a,#Side_slide #menu ul li:hover > a{color: #FFFFFF;}#Action_bar .contact_details{color: #bbbbbb}#Action_bar .contact_details a{color: #0095eb}#Action_bar .contact_details a:hover{color: #007cc3}#Action_bar .social li a,#Header_creative .social li a,#Action_bar .social-menu a{color: #bbbbbb}#Action_bar .social li a:hover,#Header_creative .social li a:hover,#Action_bar .social-menu a:hover{color: #FFFFFF}#Subheader .title{color: #444444;}#Subheader ul.breadcrumbs li, #Subheader ul.breadcrumbs li a{color: rgba(68, 68, 68, 0.6);}#Footer, #Footer .widget_recent_entries ul li a {color: #f4f4f4;}#Footer a {color: #0095eb;}#Footer a:hover {color: #007cc3;}#Footer h1, #Footer h1 a, #Footer h1 a:hover,#Footer h2, #Footer h2 a, #Footer h2 a:hover,#Footer h3, #Footer h3 a, #Footer h3 a:hover,#Footer h4, #Footer h4 a, #Footer h4 a:hover,#Footer h5, #Footer h5 a, #Footer h5 a:hover,#Footer h6, #Footer h6 a, #Footer h6 a:hover {color: #ffffff;}/#Footer .themecolor, #Footer .widget_meta ul, #Footer .widget_pages ul, #Footer .widget_rss ul, #Footer .widget_mfn_recent_comments ul li:after, #Footer .widget_archive ul,#Footer .widget_recent_comments ul li:after, #Footer .widget_nav_menu ul, #Footer .widget_price_filter .price_label .from, #Footer .widget_price_filter .price_label .to,#Footer .star-rating span {color: #0095eb;}#Footer .themebg, #Footer .widget_categories ul, #Footer .Recent_posts ul li .desc:after, #Footer .Recent_posts ul li .photo .c,#Footer .widget_recent_entries ul li:after, #Footer .widget_mfn_menu ul li a:hover, #Footer .widget_product_categories ul {background-color: #0095eb;}#Footer .Recent_posts ul li a .desc .date, #Footer .widget_recent_entries ul li .post-date, #Footer .tp_recent_tweets .twitter_time,#Footer .widget_price_filter .price_label, #Footer .shop-filters .woocommerce-result-count, #Footer ul.product_list_widget li .quantity,#Footer .widget_shopping_cart ul.product_list_widget li dl {color: #a8a8a8;}#Footer .footer_copy .social li a,#Footer .footer_copy .social-menu a{color: #65666C;}#Footer .footer_copy .social li a:hover,#Footer .footer_copy .social-menu a:hover{color: #FFFFFF;}a#back_to_top.button.button_js{color: #ffffff;background:transparent;-webkit-box-shadow:0 0 0 0 transparent;box-shadow:0 0 0 0 transparent;}a#back_to_top.button.button_js:after{display:none;}#Sliding-top, #Sliding-top .widget_recent_entries ul li a {color: #cccccc;}#Sliding-top a {color: #0095eb;}#Sliding-top a:hover {color: #007cc3;}#Sliding-top h1, #Sliding-top h1 a, #Sliding-top h1 a:hover,#Sliding-top h2, #Sliding-top h2 a, #Sliding-top h2 a:hover,#Sliding-top h3, #Sliding-top h3 a, #Sliding-top h3 a:hover,#Sliding-top h4, #Sliding-top h4 a, #Sliding-top h4 a:hover,#Sliding-top h5, #Sliding-top h5 a, #Sliding-top h5 a:hover,#Sliding-top h6, #Sliding-top h6 a, #Sliding-top h6 a:hover {color: #ffffff;}#Sliding-top .themecolor, #Sliding-top .widget_meta ul, #Sliding-top .widget_pages ul, #Sliding-top .widget_rss ul, #Sliding-top .widget_mfn_recent_comments ul li:after, #Sliding-top .widget_archive ul,#Sliding-top .widget_recent_comments ul li:after, #Sliding-top .widget_nav_menu ul, #Sliding-top .widget_price_filter .price_label .from, #Sliding-top .widget_price_filter .price_label .to,#Sliding-top .star-rating span {color: #0095eb;}#Sliding-top .themebg, #Sliding-top .widget_categories ul, #Sliding-top .Recent_posts ul li .desc:after, #Sliding-top .Recent_posts ul li .photo .c,#Sliding-top .widget_recent_entries ul li:after, #Sliding-top .widget_mfn_menu ul li a:hover, #Sliding-top .widget_product_categories ul {background-color: #0095eb;}#Sliding-top .Recent_posts ul li a .desc .date, #Sliding-top .widget_recent_entries ul li .post-date, #Sliding-top .tp_recent_tweets .twitter_time,#Sliding-top .widget_price_filter .price_label, #Sliding-top .shop-filters .woocommerce-result-count, #Sliding-top ul.product_list_widget li .quantity,#Sliding-top .widget_shopping_cart ul.product_list_widget li dl {color: #a8a8a8;}blockquote, blockquote a, blockquote a:hover {color: #444444;}.image_frame .image_wrapper .image_links,.portfolio_group.masonry-hover .portfolio-item .masonry-hover-wrapper .hover-desc {background: rgba(0, 149, 235, 0.8);}.masonry.tiles .post-item .post-desc-wrapper .post-desc .post-title:after,.masonry.tiles .post-item.no-img,.masonry.tiles .post-item.format-quote,.blog-teaser li .desc-wrapper .desc .post-title:after,.blog-teaser li.no-img,.blog-teaser li.format-quote {background: #0095eb;}.image_frame .image_wrapper .image_links a {color: #ffffff;}.image_frame .image_wrapper .image_links a:hover {background: #ffffff;color: #0095eb;}.image_frame {border-color: #f8f8f8;}.image_frame .image_wrapper .mask::after {background: rgba(255, 255, 255, 0.4);}.sliding_box .desc_wrapper {background: #0095eb;}.sliding_box .desc_wrapper:after {border-bottom-color: #0095eb;}.counter .icon_wrapper i {color: #0095eb;}.quick_fact .number-wrapper {color: #0095eb;}.progress_bars .bars_list li .bar .progress {background-color: #0095eb;}a:hover.icon_bar {color: #0095eb !important;}a.content_link, a:hover.content_link {color: #0095eb;}a.content_link:before {border-bottom-color: #0095eb;}a.content_link:after {border-color: #0095eb;}.get_in_touch, .infobox {background-color: #0095eb;}.google-map-contact-wrapper .get_in_touch:after {border-top-color: #0095eb;}.timeline_items li h3:before,.timeline_items:after,.timeline .post-item:before {border-color: #0095eb;}.how_it_works .image .number {background: #0095eb;}.trailer_box .desc .subtitle,.trailer_box.plain .desc .line {background-color: #0095eb;}.trailer_box.plain .desc .subtitle {color: #0095eb;}.icon_box .icon_wrapper, .icon_box a .icon_wrapper,.style-simple .icon_box:hover .icon_wrapper {color: #0095eb;}.icon_box:hover .icon_wrapper:before,.icon_box a:hover .icon_wrapper:before {background-color: #0095eb;}ul.clients.clients_tiles li .client_wrapper:hover:before {background: #0095eb;}ul.clients.clients_tiles li .client_wrapper:after {border-bottom-color: #0095eb;}.list_item.lists_1 .list_left {background-color: #0095eb;}.list_item .list_left {color: #0095eb;}.feature_list ul li .icon i {color: #0095eb;}.feature_list ul li:hover,.feature_list ul li:hover a {background: #0095eb;}.ui-tabs .ui-tabs-nav li.ui-state-active a,.accordion .question.active .title > .acc-icon-plus,.accordion .question.active .title > .acc-icon-minus,.faq .question.active .title > .acc-icon-plus,.faq .question.active .title,.accordion .question.active .title {color: #0095eb;}.ui-tabs .ui-tabs-nav li.ui-state-active a:after {background: #0095eb;}body.table-hover:not(.woocommerce-page) table tr:hover td {background: #0095eb;}.pricing-box .plan-header .price sup.currency,.pricing-box .plan-header .price > span {color: #0095eb;}.pricing-box .plan-inside ul li .yes {background: #0095eb;}.pricing-box-box.pricing-box-featured {background: #0095eb;}input[type="date"], input[type="email"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="url"],select, textarea, .woocommerce .quantity input.qty,.dark input[type="email"],.dark input[type="password"],.dark input[type="tel"],.dark input[type="text"],.dark select,.dark textarea{color: #626262;background-color: rgba(255, 255, 255, 1);border-color: #EBEBEB;}::-webkit-input-placeholder {color: #929292;}::-moz-placeholder {color: #929292;}:-ms-input-placeholder {color: #929292;}input[type="date"]:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="url"]:focus, select:focus, textarea:focus {color: #1982c2;background-color: rgba(233, 245, 252, 1) !important;border-color: #d5e5ee;}:focus::-webkit-input-placeholder {color: #929292;}:focus::-moz-placeholder {color: #929292;}.woocommerce span.onsale, .shop_slider .shop_slider_ul li .item_wrapper span.onsale {border-top-color: #0095eb !important;}.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {border-color: #0095eb !important;}@media only screen and ( min-width: 768px ){.header-semi #Top_bar:not(.is-sticky) {background-color: rgba(255, 255, 255, 0.8);}}@media only screen and ( max-width: 767px ){#Top_bar{background: #ffffff !important;}#Action_bar{background: #FFFFFF !important;}#Action_bar .contact_details{color: #222222}#Action_bar .contact_details a{color: #0095eb}#Action_bar .contact_details a:hover{color: #007cc3}#Action_bar .social li a,#Action_bar .social-menu a{color: #bbbbbb}#Action_bar .social li a:hover,#Action_bar .social-menu a:hover{color: #777777}}html { background-color: #FCFCFC;}#Wrapper, #Content { background-color: #FCFCFC;}body, button, span.date_label, .timeline_items li h3 span, input[type="submit"], input[type="reset"], input[type="button"],input[type="text"], input[type="password"], input[type="tel"], input[type="email"], textarea, select, .offer_li .title h3 {font-family: "Roboto", Arial, Tahoma, sans-serif;}#menu > ul > li > a, .action_button, #overlay-menu ul li a {font-family: "Roboto", Arial, Tahoma, sans-serif;}#Subheader .title {font-family: "Lora", Arial, Tahoma, sans-serif;}h1, h2, h3, h4, .text-logo #logo {font-family: "Roboto", Arial, Tahoma, sans-serif;}h5, h6 {font-family: "Roboto", Arial, Tahoma, sans-serif;}blockquote {font-family: "Roboto", Arial, Tahoma, sans-serif;}.chart_box .chart .num, .counter .desc_wrapper .number-wrapper, .how_it_works .image .number,.pricing-box .plan-header .price, .quick_fact .number-wrapper, .woocommerce .product div.entry-summary .price {font-family: "Roboto", Arial, Tahoma, sans-serif;}body {font-size: 14px;line-height: 25px;font-weight: 400;letter-spacing: 0px;}big,.big {font-size: 16px;line-height: 28px;font-weight: 400;letter-spacing: 0px;}#menu > ul > li > a, a.button.action_button, #overlay-menu ul li a{font-size: 15px;font-weight: 400;letter-spacing: 0px;}#overlay-menu ul li a{line-height: 22.5px;}#Subheader .title {font-size: 30px;line-height: 35px;font-weight: 400;letter-spacing: 1px;font-style: italic;}h1, .text-logo #logo { font-size: 48px;line-height: 50px;font-weight: 400;letter-spacing: 0px;}h2 { font-size: 30px;line-height: 34px;font-weight: 300;letter-spacing: 0px;}h3 {font-size: 25px;line-height: 29px;font-weight: 300;letter-spacing: 0px;}h4 {font-size: 21px;line-height: 25px;font-weight: 500;letter-spacing: 0px;}h5 {font-size: 15px;line-height: 25px;font-weight: 700;letter-spacing: 0px;}h6 {font-size: 14px;line-height: 25px;font-weight: 400;letter-spacing: 0px;}#Intro .intro-title { font-size: 70px;line-height: 70px;font-weight: 400;letter-spacing: 0px;}@media only screen and (min-width: 768px) and (max-width: 959px){body {font-size: 13px;line-height: 21px;}big,.big {font-size: 14px;line-height: 24px;}#menu > ul > li > a, a.button.action_button, #overlay-menu ul li a {font-size: 13px;}#overlay-menu ul li a{line-height: 19.5px;}#Subheader .title {font-size: 26px;line-height: 30px;}h1, .text-logo #logo { font-size: 41px;line-height: 43px;}h2 { font-size: 26px;line-height: 29px;}h3 {font-size: 21px;line-height: 25px;}h4 {font-size: 18px;line-height: 21px;}h5 {font-size: 13px;line-height: 21px;}h6 {font-size: 13px;line-height: 21px;}#Intro .intro-title { font-size: 60px;line-height: 60px;}blockquote { font-size: 15px;}.chart_box .chart .num { font-size: 45px; line-height: 45px; }.counter .desc_wrapper .number-wrapper { font-size: 45px; line-height: 45px;}.counter .desc_wrapper .title { font-size: 14px; line-height: 18px;}.faq .question .title { font-size: 14px; }.fancy_heading .title { font-size: 38px; line-height: 38px; }.offer .offer_li .desc_wrapper .title h3 { font-size: 32px; line-height: 32px; }.offer_thumb_ul li.offer_thumb_li .desc_wrapper .title h3 {font-size: 32px; line-height: 32px; }.pricing-box .plan-header h2 { font-size: 27px; line-height: 27px; }.pricing-box .plan-header .price > span { font-size: 40px; line-height: 40px; }.pricing-box .plan-header .price sup.currency { font-size: 18px; line-height: 18px; }.pricing-box .plan-header .price sup.period { font-size: 14px; line-height: 14px;}.quick_fact .number { font-size: 80px; line-height: 80px;}.trailer_box .desc h2 { font-size: 27px; line-height: 27px; }.widget > h3 { font-size: 17px; line-height: 20px; }}@media only screen and (min-width: 480px) and (max-width: 767px){body {font-size: 13px;line-height: 19px;}big,.big {font-size: 13px;line-height: 21px;}#menu > ul > li > a, a.button.action_button, #overlay-menu ul li a {font-size: 13px;}#overlay-menu ul li a{line-height: 19.5px;}#Subheader .title {font-size: 23px;line-height: 26px;}h1, .text-logo #logo { font-size: 36px;line-height: 38px;}h2 { font-size: 23px;line-height: 26px;}h3 {font-size: 19px;line-height: 22px;}h4 {font-size: 16px;line-height: 19px;}h5 {font-size: 13px;line-height: 19px;}h6 {font-size: 13px;line-height: 19px;}#Intro .intro-title { font-size: 53px;line-height: 53px;}blockquote { font-size: 14px;}.chart_box .chart .num { font-size: 40px; line-height: 40px; }.counter .desc_wrapper .number-wrapper { font-size: 40px; line-height: 40px;}.counter .desc_wrapper .title { font-size: 13px; line-height: 16px;}.faq .question .title { font-size: 13px; }.fancy_heading .title { font-size: 34px; line-height: 34px; }.offer .offer_li .desc_wrapper .title h3 { font-size: 28px; line-height: 28px; }.offer_thumb_ul li.offer_thumb_li .desc_wrapper .title h3 {font-size: 28px; line-height: 28px; }.pricing-box .plan-header h2 { font-size: 24px; line-height: 24px; }.pricing-box .plan-header .price > span { font-size: 34px; line-height: 34px; }.pricing-box .plan-header .price sup.currency { font-size: 16px; line-height: 16px; }.pricing-box .plan-header .price sup.period { font-size: 13px; line-height: 13px;}.quick_fact .number { font-size: 70px; line-height: 70px;}.trailer_box .desc h2 { font-size: 24px; line-height: 24px; }.widget > h3 { font-size: 16px; line-height: 19px; }}@media only screen and (max-width: 479px){body {font-size: 13px;line-height: 19px;}big,.big {font-size: 13px;line-height: 19px;}#menu > ul > li > a, a.button.action_button, #overlay-menu ul li a {font-size: 13px;}#overlay-menu ul li a{line-height: 19.5px;}#Subheader .title {font-size: 18px;line-height: 21px;}h1, .text-logo #logo { font-size: 29px;line-height: 30px;}h2 { font-size: 18px;line-height: 20px;}h3 {font-size: 15px;line-height: 19px;}h4 {font-size: 13px;line-height: 19px;}h5 {font-size: 13px;line-height: 19px;}h6 {font-size: 13px;line-height: 19px;}#Intro .intro-title { font-size: 42px;line-height: 42px;}blockquote { font-size: 13px;}.chart_box .chart .num { font-size: 35px; line-height: 35px; }.counter .desc_wrapper .number-wrapper { font-size: 35px; line-height: 35px;}.counter .desc_wrapper .title { font-size: 13px; line-height: 26px;}.faq .question .title { font-size: 13px; }.fancy_heading .title { font-size: 30px; line-height: 30px; }.offer .offer_li .desc_wrapper .title h3 { font-size: 26px; line-height: 26px; }.offer_thumb_ul li.offer_thumb_li .desc_wrapper .title h3 {font-size: 26px; line-height: 26px; }.pricing-box .plan-header h2 { font-size: 21px; line-height: 21px; }.pricing-box .plan-header .price > span { font-size: 32px; line-height: 32px; }.pricing-box .plan-header .price sup.currency { font-size: 14px; line-height: 14px; }.pricing-box .plan-header .price sup.period { font-size: 13px; line-height: 13px;}.quick_fact .number { font-size: 60px; line-height: 60px;}.trailer_box .desc h2 { font-size: 21px; line-height: 21px; }.widget > h3 { font-size: 15px; line-height: 18px; }}.with_aside .sidebar.columns {width: 23%;}.with_aside .sections_group {width: 77%;}.aside_both .sidebar.columns {width: 18%;}.aside_both .sidebar.sidebar-1{ margin-left: -82%;}.aside_both .sections_group {width: 64%;margin-left: 18%;}@media only screen and (min-width:1240px){#Wrapper, .with_aside .content_wrapper {max-width: 1240px;}.section_wrapper, .container {max-width: 1220px;}.layout-boxed.header-boxed #Top_bar.is-sticky{max-width: 1240px;}}@media only screen and (max-width: 767px){.section_wrapper,.container,.four.columns .widget-area { max-width: 480px !important; }}#Top_bar #logo,.header-fixed #Top_bar #logo,.header-plain #Top_bar #logo,.header-transparent #Top_bar #logo {height: 60px;line-height: 60px;padding: 15px 0;}.logo-overflow #Top_bar:not(.is-sticky) .logo {height: 90px;}#Top_bar .menu > li > a {padding: 15px 0;}.menu-highlight:not(.header-creative) #Top_bar .menu > li > a {margin: 20px 0;}.header-plain:not(.menu-highlight) #Top_bar .menu > li > a span:not(.description) {line-height: 90px;}.header-fixed #Top_bar .menu > li > a {padding: 30px 0;}#Top_bar .top_bar_right,.header-plain #Top_bar .top_bar_right {height: 90px;}#Top_bar .top_bar_right_wrapper { top: 25px;}.header-plain #Top_bar a#header_cart, .header-plain #Top_bar a#search_button,.header-plain #Top_bar .wpml-languages,.header-plain #Top_bar a.button.action_button {line-height: 90px;}.header-plain #Top_bar .wpml-languages,.header-plain #Top_bar a.button.action_button {height: 90px;}@media only screen and (max-width: 767px){#Top_bar a.responsive-menu-toggle { top: 40px;}.mobile-header-mini #Top_bar #logo{height:50px!important;line-height:50px!important;margin:5px 0;}}.twentytwenty-before-label::before { content: "Before";}.twentytwenty-after-label::before { content: "After";}#Side_slide{right:-250px;width:250px;}.blog-teaser li .desc-wrapper .desc{background-position-y:-1px;}
</style>
<style id="mfn-dnmc-theme-css">
@media screen and (max-width: 768px){
#Top_bar #logo img{
height: 50px !important;
}
.mobile-header-mini #Top_bar #logo{
height: 50px !important;
}
body.page-id-627 #Top_bar #logo img:not(.logo-home){
display: none !important;
}
}
</style>
<link href="//fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
@font-face {
font-family: 'aslsicons2';
src: url('https://boliver5463.github.io/portfolio-test/wp-content/plugins/ajax-search-lite/css/fonts/icons2.eot');
src: url('https://boliver5463.github.io/portfolio-test/wp-content/plugins/ajax-search-lite/css/fonts/icons2.eot?#iefix') format('embedded-opentype'),
url('https://boliver5463.github.io/portfolio-test/wp-content/plugins/ajax-search-lite/css/fonts/icons2.woff2') format('woff2'),
url('https://boliver5463.github.io/portfolio-test/wp-content/plugins/ajax-search-lite/css/fonts/icons2.woff') format('woff'),
url('https://boliver5463.github.io/portfolio-test/wp-content/plugins/ajax-search-lite/css/fonts/icons2.ttf') format('truetype'),
url('https://boliver5463.github.io/portfolio-test/wp-content/plugins/ajax-search-lite/css/fonts/icons2.svg#icons') format('svg');
font-weight: normal;
font-style: normal;
}
div[id*='ajaxsearchlitesettings'].searchsettings .asl_option_inner label {
font-size: 0px !important;
color: rgba(0, 0, 0, 0);
}
div[id*='ajaxsearchlitesettings'].searchsettings .asl_option_inner label:after {
font-size: 11px !important;
position: absolute;
top: 0;
left: 0;
z-index: 1;
}
div[id*='ajaxsearchlite'].wpdreams_asl_container {
width: 100%;
margin: 0px 0px 0px 0px;
}
div[id*='ajaxsearchliteres'].wpdreams_asl_results div.resdrg span.highlighted {
font-weight: bold;
color: rgba(217, 49, 43, 1);
background-color: rgba(238, 238, 238, 1);
}
div[id*='ajaxsearchliteres'].wpdreams_asl_results .results div.asl_image {
width: 70px;
height: 70px;
}
div.asl_r .results {
max-height: none;
}
-->
</style>
<script type="text/javascript">
if ( typeof _ASL !== "undefined" && _ASL !== null && typeof _ASL.initialize !== "undefined" )
_ASL.initialize();
</script>
<link rel="icon" href="https://boliver5463.github.io/portfolio-test/wp-content/uploads/2017/05/cropped-BO_Icon-32x32.png" sizes="32x32">
<link rel="icon" href="https://boliver5463.github.io/portfolio-test/wp-content/uploads/2017/05/cropped-BO_Icon-192x192.png" sizes="192x192">
<link rel="apple-touch-icon-precomposed" href="https://boliver5463.github.io/portfolio-test/wp-content/uploads/2017/05/cropped-BO_Icon-180x180.png">
<meta name="msapplication-TileImage" content="https://boliver5463.github.io/portfolio-test/wp-content/uploads/2017/05/cropped-BO_Icon-270x270.png">
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro" rel="stylesheet">
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-100007086-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-100007086-1');
</script>
</head>
<body class="home page-template-default page page-id-627 vcwb color-custom style-default button-default layout-full-width header-fixed minimalist-header-no sticky-header sticky-tb-color ab-hide subheader-both-center menu-link-color footer-stick mobile-tb-center mobile-side-slide mobile-mini-mr-ll tablet-sticky mobile-header-mini mobile-sticky be-208">
<div id="wptime-plugin-preloader"></div>
<div id="bo-sites-tab" class="dynamic-tab">
Projects
</div>
<div class="bo-sites">
<script>
function formSubmit(website){
jQuery("#website-form input").val(website);
jQuery("#website-form").submit();
}
</script>
<div class="website-list">
<form id="website-form" action="/single-website" method="POST">
<input type="hidden" name="website" value="-1">
<a class="btn btn-primary employer_collapse text-left" data-toggle="collapse" href="#employer_119" role="button" aria-expanded="false" aria-controls="collapseExample">
Struber {11} <span class="float-right" style="font-size: 10px; line-height: 1; clear: both;">Nov 2017 - Present</span> <span class="float-right" style="font-size: 10px; line-height: 1; clear: both;">Web Developer</span> </a>
<div class="collapse" id="employer_119">
<div class="card card-body">
<p>
<b>References</b>
</p>
<p class="reference">
Lauren Ludik | <a href="tel:0418256054" style="text-decoration: underline;">0418256054</a>
</p>
<p class="reference">
Jordan Lim | <a href="tel:0450078788" style="text-decoration: underline;">0450078788</a>
</p>
<hr style="background-color: #ffffff;">
<a class="websites-no-link" data-website="https://seqfuture.au.aurecongroup.com/">Aurecon</a>
<a class="websites" data-website="https://ccfqld.com/">Civil Contractors Federation <i class="fas fa-link"></i></a>
<a class="websites" data-website="https://constructionariumaustralia.com.au/">Constructionarium Australia <i class="fas fa-link"></i></a>
<a class="websites" data-website="https://www.crossriverrail.qld.gov.au/">Cross River Rail <i class="fas fa-link"></i></a>
<a class="websites-no-link" data-website="https://getsetforthegamesworkshops.com.au">Get Set for the Games Workshops</a>
<a class="websites" data-website="https://www.iaq.com.au/">IAQ <i class="fas fa-link"></i></a>
<a class="websites" data-website="https://mcilwain.com/">McIlwain <i class="fas fa-link"></i></a>
<a class="websites" data-website="https://qldmpp.com.au/">QLDMPP <i class="fas fa-link"></i></a>
<a class="websites" data-website="https://struber.com.au/">Struber <i class="fas fa-link"></i></a>
<a class="websites-no-link" data-website="https://struberstock.com.au/">Struberstock</a>
<a class="websites-no-link" data-website="https://whimit.com">Whimit</a>
</div>
</div>
<a class="btn btn-primary employer_collapse text-left" data-toggle="collapse" href="#employer_117" role="button" aria-expanded="false" aria-controls="collapseExample">
Freelancing {4} <span class="float-right" style="font-size: 10px; line-height: 1; clear: both;">Jan 2016 - Present</span> <span class="float-right" style="font-size: 10px; line-height: 1; clear: both;">Full Stack</span> </a>
<div class="collapse" id="employer_117">
<div class="card card-body">
<a class="websites" data-website="https://boliver5463.github.io/portfolio-test/">BO Porfolio <i class="fas fa-link"></i></a>
<a class="websites" data-website="https://diva.brentonoliver.com/">D.I.V.A. <i class="fas fa-link"></i></a>
<a class="websites" data-website="https://magic-guide.com/">Magic Guide <i class="fas fa-link"></i></a>
<a class="websites" data-website="https://motitentzer.com/">Moti Tentzer <i class="fas fa-link"></i></a>
</div>
</div>
<a class="btn btn-primary employer_collapse text-left" data-toggle="collapse" href="#employer_115" role="button" aria-expanded="false" aria-controls="collapseExample">
MyWork {237} <span class="float-right" style="font-size: 10px; line-height: 1; clear: both;">Dec 2016 - Oct 2017</span> <span class="float-right" style="font-size: 10px; line-height: 1; clear: both;">Web Developer</span> </a>
<div class="collapse" id="employer_115">
<div class="card card-body">
<p>
<b>References</b>
</p>
<p class="reference">
Matt Holme | <a href="tel:0422775696" style="text-decoration: underline;">0422775696</a>
</p>
<p class="reference">
Bjorn Mett | <a href="tel:0430710704" style="text-decoration: underline;">0430710704</a>
</p>
<hr style="background-color: #ffffff;">
<a class="websites-no-link" data-website="https://www.abovealllocksmiths.com.au/">Above All Locksmiths</a>
<a class="websites-no-link" data-website="https://absolutelybeads.com.au">Absolutely Beads</a>
<a class="websites-no-link" data-website="https://abundanthealingwisdom.com">Abundant Healing Wisdom</a>
<a class="websites-no-link" data-website="https://acaciamowercentre.com.au">Acacia Mower Centre</a>
<a class="websites-no-link" data-website="https://accuratecaravans.com.au">Accurate Caravans</a>
<a class="websites-no-link" data-website="https://acuvibe.com.au">Acuvibe</a>
<a class="websites-no-link" data-website="https://adpgroup.com.au">ADP Group</a>
<a class="websites-no-link" data-website="https://advantagetraining.com.au">Advantange Training</a>
<a class="websites-no-link" data-website="https://aetertek.com.au">Aetertek</a>
<a class="websites-no-link" data-website="https://aikido-bayside.com.au">Aikido-Bayside</a>
<a class="websites-no-link" data-website="https://airborneexpress.com.au">Airbourne Express</a>
<a class="websites-no-link" data-website="https://alwayspromptservices.com.au">Always Prompt Repairs</a>
<a class="websites-no-link" data-website="https://amosluxury.com">AMOS</a>
<a class="websites-no-link" data-website="https://appliancecentral.com.au">Appliance Central</a>
<a class="websites-no-link" data-website="https://aspleyflorists.com.au">Aspley Florists</a>
<a class="websites-no-link" data-website="https://aussieinflatables.com.au">Aussie Inflatables</a>
<a class="websites-no-link" data-website="https://aussierenters.com.au">Aussie Renters</a>
<a class="websites-no-link" data-website="https://australianpadlocksupplies.com.au">Australian Padlocks</a>
<a class="websites-no-link" data-website="https://auto-airconditioningbrisbane.com.au">Auto-Air Conditioning</a>
<a class="websites-no-link" data-website="https://bacto.com.au">Bacto</a>
<a class="websites-no-link" data-website="https://bamboobits.com.au">Bamboo Bits</a>
<a class="websites-no-link" data-website="https://bribieislandflorist.com.au">Banksia Beach Florist</a>
<a class="websites-no-link" data-website="https://baselectrical.com.au">Baseletrical</a>
<a class="websites-no-link" data-website="https://bcwstorage.com.au">BCW Storage</a>
<a class="websites-no-link" data-website="https://bdhsolutions.com.au">BDH Solutions</a>
<a class="websites-no-link" data-website="https://beautyfullcmc.com">Beauty Full</a>
<a class="websites-no-link" data-website="https://beautymachinesaustralia.com.au">Beauty Machines Australia</a>
<a class="websites-no-link" data-website="https://bellezzaecibo.com.au">Bellezza e Cibo</a>
<a class="websites-no-link" data-website="https://bespokestationary.com.au">Bespoke Stationary</a>
<a class="websites-no-link" data-website="https://betterdealsdepot.com.au">Better Deals Depot</a>
<a class="websites-no-link" data-website="https://bevscrosscrafts.com.au">Bevs Cross Crafts</a>
<a class="websites-no-link" data-website="https://bigcountrytoys.com.au">Big Country Toys Australia</a>
<a class="websites-no-link" data-website="https://birthdaybanners.com.au">Birthday Banners</a>
<a class="websites-no-link" data-website="https://blackwoodbarbers.com.au">Blackwood Barbers</a>
<a class="websites-no-link" data-website="https://bohochic.com.au">Boho Chic</a>
<a class="websites-no-link" data-website="https://bootmanworkwear.com.au">Bootman Mobile Workwear</a>
<a class="websites-no-link" data-website="https://bosmaclassics.com.au">Bosma</a>
<a class="websites-no-link" data-website="https://bricksblockspaversonline.com.au">Bricks Blocks Pavers Online</a>
<a class="websites-no-link" data-website="https://bsamboutique.com.au">Bsamboutique</a>
<a class="websites-no-link" data-website="https://budgetchef.com.au">Budget Chef</a>
<a class="websites-no-link" data-website="https://buyecogreen.com.au">Buy Eco Green</a>
<a class="websites-no-link" data-website="https://c-suitepartners.com">C-Suite Partners</a>
<a class="websites-no-link" data-website="https://c2ldrivingschool.com.au">C2L Driving School</a>
<a class="websites-no-link" data-website="https://careeroracle.com.au">Career Oracle</a>
<a class="websites-no-link" data-website="https://carone.com.au">Carone</a>
<a class="websites-no-link" data-website="https://carraraflags.com.au">Carrara Flags</a>
<a class="websites-no-link" data-website="https://casslegal.com.au">Cass Legal</a>
<a class="websites-no-link" data-website="https://castwide.com.au">Cast Wide</a>
<a class="websites-no-link" data-website="https://castelan.com.au">Castelan</a>
<a class="websites-no-link" data-website="https://chasepowerups.com.au">Chasepower</a>
<a class="websites-no-link" data-website="https://chezb.com.au">Chezb</a>
<a class="websites-no-link" data-website="https://chidos.com.au">Chidos</a>
<a class="websites-no-link" data-website="https://climatelink.com.au">Climate Link</a>
<a class="websites-no-link" data-website="https://cloudchamber.net.au">Cloud Chamber</a>
<a class="websites-no-link" data-website="https://complianterp.com">Compliant ERP</a>
<a class="websites-no-link" data-website="https://coorrabin-motor-inn.com.au">Coorrabin Motor Inn</a>
<a class="websites-no-link" data-website="https://thecupcakefactory.com.au">Cup Cake Factory</a>
<a class="websites-no-link" data-website="https://dahliadesigns.com.au">Dahlia Designs</a>
<a class="websites-no-link" data-website="https://daklenbuilding.com.au">Daklen Building</a>
<a class="websites-no-link" data-website="https://dancingflamecandles.com.au">Dancing Flame</a>
<a class="websites-no-link" data-website="https://dawgs.com.au">Dawgs</a>
<a class="websites-no-link" data-website="https://deltatactical.com.au">Delta Tech</a>
<a class="websites-no-link" data-website="https://denmanmarine.com.au">Denman Marine</a>
<a class="websites-no-link" data-website="https://denmanpac.com.au">Denmanpac</a>
<a class="websites-no-link" data-website="https://denturesdirectqld.com.au">Dentures Direct QLD</a>
<a class="websites-no-link" data-website="https://designerfolders.com.au">Designer Folders</a>
<a class="websites-no-link" data-website="https://dickinson-lang.com.au">Dickinson-Lang Eletrical</a>
<a class="websites-no-link" data-website="https://dindinaturals.com.au">Dindinaturals</a>
<a class="websites-no-link" data-website="https://directtrophies.com.au">Direct Trophies</a>
<a class="websites-no-link" data-website="https://dresslikeeurope.com.au">Dress Like Europe</a>
<a class="websites-no-link" data-website="https://driver4hire.com.au">Driver 4 Hire</a>
<a class="websites-no-link" data-website="https://drummersbase.com.au">Drummers Base</a>
<a class="websites-no-link" data-website="https://earthgreetings.com.au">Earth Greetings</a>
<a class="websites-no-link" data-website="https://earthlaws.org.au">Earth Laws</a>
<a class="websites-no-link" data-website="https://eatonshillkindy.com.au">Eaton Hill Community Kindergarten</a>
<a class="websites-no-link" data-website="https://edogaustralia.com.au">eDog</a>
<a class="websites-no-link" data-website="https://ekcci.com.au">Ekcci</a>
<a class="websites-no-link" data-website="https://elearning.hcts.com.au">ELearning HCTS</a>
<a class="websites-no-link" data-website="https://electroniccart.com.au">Electronic Cart</a>
<a class="websites-no-link" data-website="https://electusrecruitment.com.au">Electus Recruitment Shop</a>
<a class="websites-no-link" data-website="https://emergencyplanningsolutions.com.au">Emergency Planning Solutions</a>
<a class="websites-no-link" data-website="https://enlightningelectrical.com.au">Enlightning Electrical</a>
<a class="websites-no-link" data-website="https://eqopd.com">EQOPD</a>
<a class="websites-no-link" data-website="https://equipmentproductsupport.com.au">Equipment Product Support</a>
<a class="websites-no-link" data-website="https://eneservices.com.au">Eve Services</a>
<a class="websites-no-link" data-website="https://fcancer.com.au">FCancer</a>
<a class="websites-no-link" data-website="https://floorcoveringremoval.com.au">Floor Covering Removal</a>
<a class="websites-no-link" data-website="https://fluffycrunch.com.au">Fluffy Crunch</a>
<a class="websites-no-link" data-website="https://forbiddentoys.com.au">Forbidden Toys</a>
<a class="websites-no-link" data-website="https://foreverinmyheart.com.au">Forever in my Heart</a>
<a class="websites-no-link" data-website="https://freestylekids.com.au">FreeStyle Kids</a>
<a class="websites-no-link" data-website="https://freightmoretrans.com">Freight More Trans</a>
<a class="websites-no-link" data-website="https://freightmoretransport.com">Freightmore Transport</a>
<a class="websites-no-link" data-website="https://frenchprovincialperfectionhomedecor.com.au">French Prov</a>
<a class="websites-no-link" data-website="https://freightmoretransport.com.au">Frieghtmore Transport</a>
<a class="websites-no-link" data-website="https://furynutrition.com">Fury Nutrition</a>
<a class="websites-no-link" data-website="https://gazoneproductions.com.au">GaZone Productions</a>
<a class="websites-no-link" data-website="https://grahamshomeandcleaningcare.com.au">Graham Home Cleaning</a>
<a class="websites-no-link" data-website="https://grahamscarcleaning.com.au">Graham's Car Cleaning</a>
<a class="websites-no-link" data-website="https://grahamsgardencare.com.au">Graham's Garden Care</a>
<a class="websites-no-link" data-website="https://grantexec.com.au">Grant Executive</a>
<a class="websites-no-link" data-website="https://greenlanddentalburpengary.com.au">Greenland Dental Burpengar</a>
<a class="websites-no-link" data-website="https://hamptonsstyle.com.au">Hamptons Style</a>
<a class="websites-no-link" data-website="https://hathouse.com.au">Hat House</a>
<a class="websites-no-link" data-website="https://heatwheat.com.au">Heat Wheat</a>
<a class="websites-no-link" data-website="https://heiferland.com.au">Heifer Land</a>
<a class="websites-no-link" data-website="https://hillofgracelodge.com">Hill of Grace</a>
<a class="websites-no-link" data-website="https://hinterlandgold.com.au">Hinterland Gold</a>
<a class="websites-no-link" data-website="https://shop.hkselfdefence.com">HK Self Defence</a>
<a class="websites-no-link" data-website="https://holeymoleyearthworks.com.au">Holey Moley Earth Works</a>
<a class="websites-no-link" data-website="https://hunterecoplumbing.com.au">Hunter Eco plumbing</a>
<a class="websites-no-link" data-website="https://huracanfi.com.au">Huracanfi</a>
<a class="websites-no-link" data-website="https://icaneatarainbow.com.au">I can Eat a Rainbow</a>
<a class="websites-no-link" data-website="https://ipavemelbourne.com.au">I Pave Melbourne</a>
<a class="websites-no-link" data-website="https://imetals.com.au">iMetals</a>
<a class="websites-no-link" data-website="https://intricateshockwave.com">Intricate Shockwave</a>
<a class="websites-no-link" data-website="https://investorcomfort.com.au">Investor Comfort</a>
<a class="websites-no-link" data-website="https://ionamedicalcentre.com.au">Iona Medical Centre</a>
<a class="websites-no-link" data-website="https://irishscottishshop.com.au">Irish Scottish Shop</a>
<a class="websites-no-link" data-website="https://japanesenappies.com.au">Jap Nappies</a>
<a class="websites-no-link" data-website="https://japaneselovetoys.com.au">Japanese Love Toys</a>
<a class="websites-no-link" data-website="https://jaycav.com.au">Jaycav</a>
<a class="websites-no-link" data-website="https://joiedeviecharms.com.au">Joie Devie Charms</a>
<a class="websites-no-link" data-website="https://keepincool.com.au">Keepin' Cool</a>
<a class="websites-no-link" data-website="https://kidsafent.com.au">Kid Safe NT</a>
<a class="websites-no-link" data-website="https://kidsconnection.com.au">Kids Connection</a>
<a class="websites-no-link" data-website="https://kidsdomain.com.au">Kids Domain</a>
<a class="websites-no-link" data-website="https://kidzkits.com.au">Kidz Kits</a>
<a class="websites-no-link" data-website="https://kissupholstery.com.au">Kiss Upholstery</a>
<a class="websites-no-link" data-website="https://lbdtrainingaustralia.com.au">LBD Training Australia</a>
<a class="websites-no-link" data-website="https://led-shop.com.au">Led Shop</a>
<a class="websites-no-link" data-website="https://legendsofmusictour.com">Legends of Music Tour</a>
<a class="websites-no-link" data-website="https://legendsofmusictouraustralia.com">Legends of Music Tour Australia</a>
<a class="websites-no-link" data-website="https://letsdancestudios.com">Let's Dance Studios</a>
<a class="websites-no-link" data-website="https://libertyfreightmore.com">Liberty Freightmore</a>
<a class="websites-no-link" data-website="https://littletuna.com.au">Little Tuna</a>
<a class="websites-no-link" data-website="https://liveyourpassion.net.au">Live Your Passion</a>
<a class="websites-no-link" data-website="https://loganpackagingsupplies.com.au">Logan Packaging Supplies</a>
<a class="websites-no-link" data-website="https://lollylicious.com.au">Lollylicious</a>
<a class="websites-no-link" data-website="https://lpprofessional.com.au">LP Professional</a>
<a class="websites-no-link" data-website="https://lyndyjewell.com.au">Lyndy Jewell</a>
<a class="websites-no-link" data-website="https://msquaredproperty.com.au">M Squared Property</a>
<a class="websites-no-link" data-website="https://madebylaser.com.au">Made By Laser</a>
<a class="websites-no-link" data-website="https://mailmaster.biz">Mailmaster</a>
<a class="websites-no-link" data-website="https://mainlinen.com">Main Linen</a>
<a class="websites-no-link" data-website="https://makewealth.com.au">Make Wealth</a>
<a class="websites-no-link" data-website="https://maryvalleycountry.com.au">Mary Valley Country</a>
<a class="websites-no-link" data-website="https://masterflooring.com.au">Master Flooring</a>
<a class="websites-no-link" data-website="https://mdsnq.com.au">MDSNQ</a>
<a class="websites-no-link" data-website="https://mediwestinteriors.com.au">Medi West Interior Projects</a>
<a class="websites-no-link" data-website="https://mediate.com.au">Mediate Today Pty Ltd</a>
<a class="websites-no-link" data-website="https://mellishinsurance.com.au">Mellish Insurance</a>
<a class="websites-no-link" data-website="https://merrickhidedesign.com.au">Merrick Hide Design</a>
<a class="websites-no-link" data-website="https://millenniumblasting.com.au">Millenium Blasting</a>
<a class="websites-no-link" data-website="https://minijump.com.au">Mini Jump</a>
<a class="websites-no-link" data-website="https://missdemophotography.com.au">Miss Demo Photography</a>
<a class="websites-no-link" data-website="https://mizzle.com.au">Mizzle</a>
<a class="websites-no-link" data-website="https://mjlandscapes.com.au">MJ Landscapes</a>
<a class="websites-no-link" data-website="https://mlce.com.au">Mlce</a>
<a class="websites-no-link" data-website="https://mobiletint.com.au">Mobile Tint</a>
<a class="websites-no-link" data-website="https://monarolivestock.com.au">Monaro Livestock</a>
<a class="websites-no-link" data-website="https://motm.com.au">Motm</a>
<a class="websites-no-link" data-website="https://mrmrspop.com.au">Mr Mrs Pop</a>
<a class="websites-no-link" data-website="https://mtpd.com.au">MTPD</a>
<a class="websites-no-link" data-website="https://multikraft.com.au">Multikraft</a>
<a class="websites-no-link" data-website="https://mwhomes.com.au">MW Homes</a>
<a class="websites-no-link" data-website="https://naturalorganicstore.com.au">Natural Organic Store</a>
<a class="websites-no-link" data-website="https://nesthomeservices.com.au">Nest Home Services</a>
<a class="websites-no-link" data-website="https://notesmasters.com.au">Notes Masters</a>
<a class="websites-no-link" data-website="https://nouvelvague.com.au">Nouvel Vague</a>
<a class="websites-no-link" data-website="https://nuuvee.com.au">Nuuvee</a>
<a class="websites-no-link" data-website="https://onsitealloyrepairs.com.au">On Site Alloy Repairs</a>
<a class="websites-no-link" data-website="https://oriion.co">Oriion Co</a>
<a class="websites-no-link" data-website="https://osmandirect.com.au">Osman Direct</a>
<a class="websites-no-link" data-website="https://ottobins.com.au">Otto Bins</a>
<a class="websites-no-link" data-website="https://ourweddingpa.com.au">Our Wedding PA</a>
<a class="websites-no-link" data-website="https://ozstitch.com.au">Oz Stitch</a>
<a class="websites-no-link" data-website="https://pacpartners.com.au">Pac Partners</a>
<a class="websites-no-link" data-website="https://paintmewhiteshop.com">Paint Me White</a>
<a class="websites-no-link" data-website="https://pawsbutton.com.au">Paws Button</a>
<a class="websites-no-link" data-website="https://perfectfitjoineryaus.com.au">Perfect Fit Joinery Australia</a>
<a class="websites-no-link" data-website="https://peritusaustralia.com.au">Peritus Australia</a>
<a class="websites-no-link" data-website="https://personalisedcaravanrelocations.com.au">Personalised Caravans</a>
<a class="websites-no-link" data-website="https://pornstarmasturbators.com.au">Porn Star Masturbators</a>
<a class="websites-no-link" data-website="https://promacsealing.com.au">Promac Sealing</a>
<a class="websites-no-link" data-website="https://pureheartyogaretreat.com">Pure Heart Yoga Shop</a>
<a class="websites-no-link" data-website="https://puzzleboxtoys.com.au">Puzzle Box</a>
<a class="websites-no-link" data-website="https://qri.com.au">QRI Lifestyle</a>
<a class="websites-no-link" data-website="https://quarryplantsolutions.com">Quarry Plant Solutions</a>
<a class="websites-no-link" data-website="https://qudos-software.com">Qudos Software</a>
<a class="websites-no-link" data-website="https://rchobbyzone.com.au">RC Hobby Zone</a>
<a class="websites-no-link" data-website="https://regalcabinetry.com.au">Regal Cabinetry</a>
<a class="websites-no-link" data-website="https://regentbd.com.au">RegentBD</a>
<a class="websites-no-link" data-website="https://safesoda.com.au">Safe Soda</a>
<a class="websites-no-link" data-website="https://safetycabinet.com.au">Safety Cabinet</a>
<a class="websites-no-link" data-website="https://saltwaterflyworkshop.com.au">SaltWater Fly Workshop</a>
<a class="websites-no-link" data-website="https://sash-belle.com.au">Sash-Belle</a>
<a class="websites-no-link" data-website="https://scissortoolbox.com.au">Scissor Tool Box</a>
<a class="websites-no-link" data-website="https://secondhandschoolstuff.com.au">Second Hand School Stuff</a>
<a class="websites-no-link" data-website="https://selectwines.com.au">Select Wines</a>
<a class="websites-no-link" data-website="https://sextoys.com.au">Sex Toys</a>
<a class="websites-no-link" data-website="https://shepherdfilters.com">Shepherd Filters</a>
<a class="websites-no-link" data-website="https://showcaseprinting.com.au">Showcase Printing</a>
<a class="websites-no-link" data-website="https://sleepysheep.com.au">Sleepy Sheep</a>
<a class="websites-no-link" data-website="https://smabuilding.com.au">SMA Building</a>
<a class="websites-no-link" data-website="https://smatradegroup.com.au">SMA Trade Group</a>
<a class="websites-no-link" data-website="https://smartvetshop.com">Smart Vet Shop</a>
<a class="websites-no-link" data-website="https://solutionsofabeds.com.au">Solution Sofar Beds</a>
<a class="websites-no-link" data-website="https://soniapetersen.com.au">Sonia Petersen</a>
<a class="websites-no-link" data-website="https://southbankinsurancebrokers.com.au">South Bank Insurance</a>
<a class="websites-no-link" data-website="https://spearfishingproducts.com.au">Spearfishing Products</a>
<a class="websites-no-link" data-website="https://specialisedair.com.au">Specialised Air</a>
<a class="websites-no-link" data-website="https://spillsupplies.com.au">Spill Supplies</a>
<a class="websites-no-link" data-website="https://sprategy.com.au">Sprategy</a>
<a class="websites-no-link" data-website="https://stevejones.com.au">Steve Jones</a>
<a class="websites-no-link" data-website="https://stonecart.com.au">Stone Cart</a>
<a class="websites-no-link" data-website="https://stretchnow.com">Stretch Now</a>
<a class="websites-no-link" data-website="https://stretchnow.com.au">Stretch Now AU</a>
<a class="websites-no-link" data-website="https://sunburyonlineshop.com.au">Subury</a>
<a class="websites-no-link" data-website="https://sunstatedistributors.com.au">Sun State Distributors</a>
<a class="websites-no-link" data-website="https://tenderdisposals.com.au">Tender Disposals</a>
<a class="websites-no-link" data-website="https://thechurchatbethany.com.au">The Church at Bethany</a>
<a class="websites-no-link" data-website="https://therhythmtree.com.au">The Rhythm Tree</a>
<a class="websites-no-link" data-website="https://thestyledwarrior.com.au">The Styled Warrior</a>
<a class="websites-no-link" data-website="https://tommosoutdoors.com.au">Tommos Outdoors</a>
<a class="websites-no-link" data-website="https://topcutlawnmowing.com.au">Top Cut Lawns</a>
<a class="websites-no-link" data-website="https://tophealthdoctors.com.au">Top Health Doctors</a>
<a class="websites-no-link" data-website="https://triggertreater.co.uk">Trigger Treater UK</a>
<a class="websites-no-link" data-website="https://triplezeroball.com.au">Triple Zero Ball</a>
<a class="websites-no-link" data-website="https://twsa.com.au">TWSA</a>
<a class="websites-no-link" data-website="https://vape98.com.au">Vape98</a>
<a class="websites-no-link" data-website="https://villagesdeprovence.com.au">Villages De Provence</a>
<a class="websites-no-link" data-website="https://waterfalldayspamooloolaba.com.au">Waterfall Day Spa Mooloolaba</a>
<a class="websites-no-link" data-website="https://williamsonlineshop.com.au">Williams Group Australia</a>
<a class="websites-no-link" data-website="https://willsonline.net.au">Wills Online</a>
<a class="websites-no-link" data-website="https://wilymarketing.com.au">Wily Marketing</a>
<a class="websites-no-link" data-website="https://wire-not.com.au">Wire-Not Electrical</a>
</div>
</div>
</form>
</div>
</div>
<div id="bo-site-window">
<iframe src=""></iframe>
</div>
<div id="Wrapper">
<div id="Header_wrapper">
<header id="Header">
<div class="header_placeholder"></div>
<div id="Top_bar" class="loading">
<div class="container">
<div class="column one">
<div class="top_bar_left clearfix">
<div class="logo"><a id="logo" href="https://boliver5463.github.io/portfolio-test" title="Brenton Oliver" data-height="60" data-padding="15"><img class="logo-main scale-with-grid" src="https://boliver5463.github.io/portfolio-test/wp-content/uploads/2017/05/BO_Icon.png" data-retina="https://boliver5463.github.io/portfolio-test/wp-content/uploads/2017/05/BO_Icon.png" data-height="" alt=""><img class="logo-sticky scale-with-grid" src="https://boliver5463.github.io/portfolio-test/wp-content/uploads/2017/05/BO_Icon.png" data-retina="https://boliver5463.github.io/portfolio-test/wp-content/uploads/2017/05/BO_Icon.png" data-height="" alt=""><img class="logo-mobile scale-with-grid" src="https://boliver5463.github.io/portfolio-test/wp-content/uploads/2017/05/BO_Icon.png" data-retina="https://boliver5463.github.io/portfolio-test/wp-content/uploads/2017/05/BO_Icon.png" data-height="" alt=""><img class="logo-mobile-sticky scale-with-grid" src="https://boliver5463.github.io/portfolio-test/wp-content/uploads/2017/05/BO_Icon.png" data-retina="https://boliver5463.github.io/portfolio-test/wp-content/uploads/2017/05/BO_Icon.png" data-height="" alt=""><img class="logo-home scale-with-grid" src="/wp-content/uploads/2018/11/BO_Icon_lines_white.png" data-height="60"></a></div>
<div class="menu_wrapper">
<nav id="menu"><ul id="menu-menu-2019" class="menu menu-main"><li id="menu-item-673" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="https://diva.brentonoliver.com/"><span>D.I.V.A.</span></a></li>
<li id="menu-item-659" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children"><a href="https://boliver5463.github.io/portfolio-test/tools/"><span>Tools</span></a>
<ul class="sub-menu">
<li id="menu-item-661" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://boliver5463.github.io/portfolio-test/tools/qr-code-generator/"><span>QR Code Generator</span></a></li>
<li id="menu-item-660" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://boliver5463.github.io/portfolio-test/tools/server-variables/"><span>Server Variables</span></a></li>
<li id="menu-item-662" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://boliver5463.github.io/portfolio-test/tools/social-share-url/"><span>Social Share URL</span></a></li>
<li id="menu-item-664" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://boliver5463.github.io/portfolio-test/tools/text-formating/"><span>Text Formating</span></a></li>
<li id="menu-item-663" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://boliver5463.github.io/portfolio-test/tools/timestamp-converter/"><span>Timestamp Converter</span></a></li>
</ul>
</li>
</ul></nav><a class="responsive-menu-toggle " href="#"><i class="fas fa-bars"></i></a>
</div>
<div class="secondary_menu_wrapper">
</div>
<div class="banner_wrapper">
</div>
<div class="search_wrapper">
<div id="ajaxsearchlite1" class="wpdreams_asl_container asl_w asl_m asl_m_1">
<div class="probox">
<div class="promagnifier">
<div class="innericon">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="512px" height="512px" viewbox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve">
<path id="magnifier-2-icon" d="M460.355,421.59L353.844,315.078c20.041-27.553,31.885-61.437,31.885-98.037
C385.729,124.934,310.793,50,218.686,50C126.58,50,51.645,124.934,51.645,217.041c0,92.106,74.936,167.041,167.041,167.041
c34.912,0,67.352-10.773,94.184-29.158L419.945,462L460.355,421.59z M100.631,217.041c0-65.096,52.959-118.056,118.055-118.056
c65.098,0,118.057,52.959,118.057,118.056c0,65.096-52.959,118.056-118.057,118.056C153.59,335.097,100.631,282.137,100.631,217.041
z"></path>
</svg>
</div>
</div>
<div class="prosettings" data-opened="0">
<div class="innericon">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="512px" height="512px" viewbox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve">
<polygon id="arrow-25-icon" transform="rotate(90 256 256)" points="142.332,104.886 197.48,50 402.5,256 197.48,462 142.332,407.113 292.727,256 "></polygon>
</svg>
</div>
</div>
<div class="proinput">
<form autocomplete="off" aria-label="Ajax search form">
<input aria-label="Search input" type="search" class="orig" name="phrase" placeholder="Search here.." value="" autocomplete="off">
<input aria-label="Autocomplete input, do not use this" type="text" class="autocomplete" name="phrase" value="" autocomplete="off">
<span class="loading"></span>
<input type="submit" value="Start search" style="width:0; height: 0; visibility: hidden;">
</form>
</div>
<div class="proloading">
<div class="asl_loader"><div class="asl_loader-inner asl_simple-circle"></div></div>
</div>
<div class="proclose">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="512px" height="512px" viewbox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve">
<polygon id="x-mark-icon" points="438.393,374.595 319.757,255.977 438.378,137.348 374.595,73.607 255.995,192.225 137.375,73.622 73.607,137.352 192.246,255.983 73.622,374.625 137.352,438.393 256.002,319.734 374.652,438.378 "></polygon>
</svg>
</div>
</div>
</div>
<div id="ajaxsearchlitesettings1" class="searchsettings wpdreams_asl_settings asl_w asl_s asl_s_1">
<form name="options" autocomplete="off">
<fieldset class="asl_sett_scroll">
<legend style="display: none;">Generic selectors</legend>
<div class="asl_option_inner hiddend">
<input type="hidden" name="qtranslate_lang" id="qtranslate_lang" value="0">
</div>
<div class="asl_option">
<div class="asl_option_inner">
<input type="checkbox" value="checked" id="set_exactonly1" title="Exact matches only" name="set_exactonly">
<label for="set_exactonly1">Exact matches only</label>
</div>
<div class="asl_option_label">
Exact matches only </div>
</div>
<div class="asl_option">
<div class="asl_option_inner">
<input type="checkbox" value="None" id="set_intitle1" title="Search in title" name="set_intitle" checked>
<label for="set_intitle1">Search in title</label>
</div>
<div class="asl_option_label">
Search in title </div>
</div>
<div class="asl_option">
<div class="asl_option_inner">
<input type="checkbox" value="None" id="set_incontent1" title="Search in content" name="set_incontent" checked>
<label for="set_incontent1">Search in content</label>
</div>
<div class="asl_option_label">
Search in content </div>
</div>
<div class="asl_option_inner hiddend">
<input type="checkbox" value="None" id="set_inexcerpt1" title="Search in excerpt" name="set_inexcerpt" checked>
<label for="set_inexcerpt1">Search in excerpt</label>
</div>
<div class="asl_option">
<div class="asl_option_inner">
<input type="checkbox" value="None" id="set_inposts1" title="Search in posts" name="set_inposts" checked>
<label for="set_inposts1">Search in posts</label>
</div>
<div class="asl_option_label">
Search in posts </div>
</div>
<div class="asl_option">
<div class="asl_option_inner">
<input type="checkbox" value="None" id="set_inpages1" title="Search in pages" name="set_inpages" checked>
<label for="set_inpages1">Search in pages</label>
</div>
<div class="asl_option_label">
Search in pages </div>
</div>
</fieldset>
<fieldset>
<legend>Filter by Categories</legend>
<div class="categoryfilter asl_sett_scroll">
<div class="asl_option">
<div class="asl_option_inner">
<input type="checkbox" value="37" id="1categoryset_37" title="CSS" name="categoryset[]" checked>
<label for="1categoryset_37">CSS</label>
</div>
<div class="asl_option_label">
CSS </div>
</div>
<div class="asl_option">
<div class="asl_option_inner">
<input type="checkbox" value="1" id="1categoryset_1" title="General" name="categoryset[]" checked>
<label for="1categoryset_1">General</label>
</div>
<div class="asl_option_label">
General </div>
</div>
<div class="asl_option">
<div class="asl_option_inner">
<input type="checkbox" value="38" id="1categoryset_38" title="JavaScript" name="categoryset[]" checked>
<label for="1categoryset_38">JavaScript</label>
</div>
<div class="asl_option_label">
JavaScript </div>
</div>
<div class="asl_option">
<div class="asl_option_inner">
<input type="checkbox" value="36" id="1categoryset_36" title="jQuery" name="categoryset[]" checked>
<label for="1categoryset_36">jQuery</label>
</div>
<div class="asl_option_label">
jQuery </div>
</div>
<div class="asl_option">
<div class="asl_option_inner">
<input type="checkbox" value="34" id="1categoryset_34" title="PHP" name="categoryset[]" checked>
<label for="1categoryset_34">PHP</label>
</div>
<div class="asl_option_label">
PHP </div>
</div>
<div class="asl_option">
<div class="asl_option_inner">
<input type="checkbox" value="39" id="1categoryset_39" title="WordPress" name="categoryset[]" checked>
<label for="1categoryset_39">WordPress</label>
</div>
<div class="asl_option_label">
WordPress </div>
</div>
</div>
</fieldset>
</form>
</div>
<div id="ajaxsearchliteres1" class="vertical wpdreams_asl_results asl_w asl_r asl_r_1">
<div class="results">
<div class="resdrg">
</div>
</div>
</div>
<div id="asl_hidden_data">
<svg style="position:absolute" height="0" width="0">
<filter id="aslblur">
<fegaussianblur in="SourceGraphic" stddeviation="4"></fegaussianblur>
</filter>
</svg>
<svg style="position:absolute" height="0" width="0">
<filter id="no_aslblur"></filter>
</svg>
</div>
<div class="asl_init_data wpdreams_asl_data_ct" style="display:none !important;" id="asl_init_id_1" data-asldata="ew0KICAgICJob21ldXJsIjogImh0dHBzOi8vYnJlbnRvbm9saXZlci5jb20vIiwNCiAgICAicmVzdWx0c3R5cGUiOiAidmVydGljYWwiLA0KICAgICJyZXN1bHRzcG9zaXRpb24iOiAiaG92ZXIiLA0KICAgICJpdGVtc2NvdW50IjogNCwNCiAgICAiaW1hZ2V3aWR0aCI6IDcwLA0KICAgICJpbWFnZWhlaWdodCI6IDcwLA0KICAgICJyZXN1bHRpdGVtaGVpZ2h0IjogIjcwcHgiLA0KICAgICJzaG93YXV0aG9yIjogMCwNCiAgICAic2hvd2RhdGUiOiAwLA0KICAgICJzaG93ZGVzY3JpcHRpb24iOiAxLA0KICAgICJjaGFyY291bnQiOiAgMCwNCiAgICAiZGVmYXVsdEltYWdlIjogImh0dHBzOi8vYnJlbnRvbm9saXZlci5jb20vd3AtY29udGVudC9wbHVnaW5zL2FqYXgtc2VhcmNoLWxpdGUvaW1nL2RlZmF1bHQuanBnIiwNCiAgICAiaGlnaGxpZ2h0IjogMCwNCiAgICAiaGlnaGxpZ2h0d2hvbGV3b3JkcyI6IDEsDQogICAgInNjcm9sbFRvUmVzdWx0cyI6IDAsDQogICAgInJlc3VsdGFyZWFjbGlja2FibGUiOiAxLA0KICAgICJhdXRvY29tcGxldGUiOiB7DQogICAgICAgICJlbmFibGVkIiA6IDEsDQogICAgICAgICJsYW5nIiA6ICJlbiINCiAgICB9LA0KICAgICJ0cmlnZ2Vyb250eXBlIjogMSwNCiAgICAidHJpZ2dlcl9vbl9jbGljayI6IDAsDQogICAgInRyaWdnZXJfb25fZmFjZXRfY2hhbmdlIjogMSwNCiAgICAic2V0dGluZ3NpbWFnZXBvcyI6ICJyaWdodCIsDQogICAgImhyZXN1bHRhbmltYXRpb24iOiAiZngtbm9uZSIsDQogICAgInZyZXN1bHRhbmltYXRpb24iOiAiZngtbm9uZSIsDQogICAgImhyZXN1bHRoaWRlZGVzYyI6ICIxIiwNCiAgICAicHJlc2NvbnRhaW5lcmhlaWdodCI6ICI0MDBweCIsDQogICAgInBzaG93c3VidGl0bGUiOiAiMCIsDQogICAgInBzaG93ZGVzYyI6ICIxIiwNCiAgICAiY2xvc2VPbkRvY0NsaWNrIjogMSwNCiAgICAiaWlmTm9JbWFnZSI6ICJkZXNjcmlwdGlvbiIsDQogICAgImlpUm93cyI6IDIsDQogICAgImlpdGVtc1dpZHRoIjogMjAwLA0KICAgICJpaXRlbXNIZWlnaHQiOiAyMDAsDQogICAgImlpc2hvd092ZXJsYXkiOiAxLA0KICAgICJpaWJsdXJPdmVybGF5IjogMSwNCiAgICAiaWloaWRlQ29udGVudCI6IDEsDQogICAgImlpYW5pbWF0aW9uIjogIjEiLA0KICAgICJhbmFseXRpY3MiOiAwLA0KICAgICJhbmFseXRpY3NTdHJpbmciOiAiIiwNCiAgICAicmVkaXJlY3RvbmNsaWNrIjogMSwNCiAgICAicmVkaXJlY3RDbGlja1RvIjogInJlc3VsdHNfcGFnZSIsDQogICAgInJlZGlyZWN0Q2xpY2tMb2MiOiAic2FtZSIsDQogICAgInJlZGlyZWN0X29uX2VudGVyIjogMSwNCiAgICAicmVkaXJlY3RFbnRlclRvIjogInJlc3VsdHNfcGFnZSIsDQogICAgInJlZGlyZWN0RW50ZXJMb2MiOiAic2FtZSIsDQogICAgInJlZGlyZWN0X3VybCI6ICI/cz17cGhyYXNlfSIsDQogICAgIm92ZXJyaWRld3BkZWZhdWx0IjogMCwNCiAgICAib3ZlcnJpZGVfbWV0aG9kIjogImdldCINCn0NCg=="></div>
</div>
</div>
<div class="top_bar_right"><div class="top_bar_right_wrapper"><a id="rss_feed" href="/feed" target="_blank"><i class="fas fa-rss"></i></a><a id="search_button" href="#"><i class="fas fa-search"></i></a></div></div>
</div>
</div>
</div> </header>
<div id="Subheader" style=""><div class="container"><div class="column one"><h1 class="title">Home</h1></div></div></div>
</div>
<div id="Content">
<div class="content_wrapper clearfix">
<div class="sections_group">
<div class="entry-content" itemprop="mainContentOfPage">
<div class="section the_content has_content"><div class="section_wrapper"><div class="the_content_wrapper"><div class="vce-row-container"><div class="vce-row vce-element--has-background vce-row--col-gap-30 vce-row-full-height vce-row-equal-height vce-row-columns--middle vce-row-content--top" data-vce-full-width="true" data-vce-stretch-content="true" id="el-77890b63" data-vce-do-apply="all el-77890b63"><div class="vce-content-background-container"><div class="vce-asset-parallax-container vce-visible-all-only" data-vce-assets-parallax-mouse-move=".vce-asset-parallax" data-vce-assets-parallax-mouse-move-element="77890b63" data-vce-assets-parallax-speed="5"><div class="vce-asset-parallax vce-asset-parallax-mouse-move" style="left: -5vw; top: -5vh; right: -5vw; bottom: -5vh; transform: translate(60.5px, 41.75px);"><div class="vce-asset-background-simple-container vce-visible-all-only vce-asset-background-simple--style-cover vce-asset-background-simple--position-center-center"><div class="vce-asset-background-simple"><div class="vce-asset-background-simple-item" style="background-image: url('https://boliver5463.github.io/portfolio-test/wp-content/uploads/2019/02/photo-1451187580459-43490279c0fa.jpeg');"></div></div></div><div class="vce-asset-color-gradient-container vce-visible-all-only" data-vce-do-apply="gradient el-77890b63"></div></div></div></div><div class="vce-row-content" data-vce-element-content="true"><div class="vce-col vce-col--md-100p vce-col--xs-1 vce-col--xs-last vce-col--xs-first vce-col--sm-last vce-col--sm-first vce-col--md-last vce-col--lg-last vce-col--xl-last vce-col--md-first vce-col--lg-first vce-col--xl-first" id="el-57e162be" data-vce-do-apply="background border el-57e162be"><div class="vce-col-inner" data-vce-element-content="true" data-vce-do-apply="padding margin el-57e162be"><div class="vce-raw-html"><div class="vce-raw-html-wrapper" id="el-b1c83c62" data-vce-do-apply="all el-b1c83c62"><div id="mouse-location"><LOCALION/> X:0 Y:0</div></div></div><div class="vce-raw-js-container"><div class="vce-raw-js-wrapper" id="el-c16e1b2e" data-vce-do-apply="all el-c16e1b2e"><script type="text/javascript">jQuery( document ).on( "mousemove load", function( event ) {
jQuery('#mouse-location').text('<LOCATION/> X:'+event.pageX+' Y: '+event.pageY);
});</script></div></div><div class="vce-shortcode"><div class="vce-shortcode-wrapper vce" id="el-4b3f3501" data-vce-do-apply="all el-4b3f3501"> <div class="row container">
<div class="col-xs-12 col-sm-6 text-center my-auto">
<h3 class="rubberBand animated" style="line-height:1; color:#ffffff;">Changing the World,</h3>
<h3 class="rubberBand animated" style="margin-left:30px;line-height:1;color:#ffffff;">One site at a time.</h3>
</div>
<div class="skills-box col-xs-12 col-sm-6 my-auto">
<p class="text-center" style="width: fit-content; margin: 0 auto;"><b><i>"They say it takes 10 years to master a skill"</i></b></p><div class="row"> <div class="col-12 col-xs-12 col-sm-12" style="margin: 5px 0;">
<div class="resume-item-title">HTML <i>+8 years 8 months 18 days</i></div>
<div class="progress">
<div class="progress-bar progress-bar-info progress-bar-striped progress-bar-animated" role="progressbar" aria-valuenow="87.18" aria-valuemin="0" aria-valuemax="100" style="width:87.18%;">
<span style="font-size: 9px;">87.18%</span>
</div>
</div>
</div>
<div class="col-12 col-xs-12 col-sm-12" style="margin: 5px 0;">
<div class="resume-item-title">CSS <i>+8 years 8 months 18 days</i></div>
<div class="progress">
<div class="progress-bar progress-bar-info progress-bar-striped progress-bar-animated" role="progressbar" aria-valuenow="87.18" aria-valuemin="0" aria-valuemax="100" style="width:87.18%;">
<span style="font-size: 9px;">87.18%</span>
</div>
</div>
</div>
<div class="col-12 col-xs-12 col-sm-12" style="margin: 5px 0;">
<div class="resume-item-title">SQL <i>+7 years 8 months 18 days</i></div>
<div class="progress">
<div class="progress-bar progress-bar-info progress-bar-striped progress-bar-animated" role="progressbar" aria-valuenow="77.18" aria-valuemin="0" aria-valuemax="100" style="width:77.18%;">
<span style="font-size: 9px;">77.18%</span>
</div>
</div>
</div>
<div class="col-12 col-xs-12 col-sm-12" style="margin: 5px 0;">
<div class="resume-item-title">PHP <i>+7 years 8 months 18 days</i></div>
<div class="progress">
<div class="progress-bar progress-bar-info progress-bar-striped progress-bar-animated" role="progressbar" aria-valuenow="77.18" aria-valuemin="0" aria-valuemax="100" style="width:77.18%;">
<span style="font-size: 9px;">77.18%</span>
</div>
</div>
</div>
<div class="col-12 col-xs-12 col-sm-12" style="margin: 5px 0;">
<div class="resume-item-title">JavaScript <i>+7 years 8 months 18 days</i></div>
<div class="progress">
<div class="progress-bar progress-bar-info progress-bar-striped progress-bar-animated" role="progressbar" aria-valuenow="77.18" aria-valuemin="0" aria-valuemax="100" style="width:77.18%;">
<span style="font-size: 9px;">77.18%</span>
</div>
</div>
</div>
<div class="col-12 col-xs-12 col-sm-12" style="margin: 5px 0;">
<div class="resume-item-title">WordPress <i>+2 years 10 months 13 days</i></div>
<div class="progress">
<div class="progress-bar progress-bar-info progress-bar-striped progress-bar-animated" role="progressbar" aria-valuenow="28.71" aria-valuemin="0" aria-valuemax="100" style="width:28.71%;">
<span style="font-size: 9px;">28.71%</span>
</div>
</div>
</div>
<div class="col-12 col-xs-12 col-sm-12" style="margin: 5px 0;">
<div class="resume-item-title">jQuery <i>+2 years 6 months 13 days</i></div>
<div class="progress">
<div class="progress-bar progress-bar-info progress-bar-striped progress-bar-animated" role="progressbar" aria-valuenow="25.4" aria-valuemin="0" aria-valuemax="100" style="width:25.4%;">
<span style="font-size: 9px;">25.4%</span>
</div>
</div>
</div>
<div class="col-12 col-xs-12 col-sm-12" style="margin: 5px 0;">
<div class="resume-item-title">OpenCart <i>+1 years 11 months 13 days</i></div>
<div class="progress">
<div class="progress-bar progress-bar-info progress-bar-striped progress-bar-animated" role="progressbar" aria-valuenow="19.53" aria-valuemin="0" aria-valuemax="100" style="width:19.53%;">
<span style="font-size: 9px;">19.53%</span>
</div>
</div>
</div>
<div class="col-12 col-xs-12 col-sm-12" style="margin: 5px 0;">
<div class="resume-item-title">Shopify <i>+1 years 10 months 13 days</i></div>
<div class="progress">
<div class="progress-bar progress-bar-info progress-bar-striped progress-bar-animated" role="progressbar" aria-valuenow="18.68" aria-valuemin="0" aria-valuemax="100" style="width:18.68%;">
<span style="font-size: 9px;">18.68%</span>
</div>
</div>
</div>
<div class="col-12 col-xs-12 col-sm-12" style="margin: 5px 0;">
<div class="resume-item-title">Java <i>+1 years 3 months 4 days</i></div>
<div class="progress">
<div class="progress-bar progress-bar-info progress-bar-striped progress-bar-animated" role="progressbar" aria-valuenow="12.63" aria-valuemin="0" aria-valuemax="100" style="width:12.63%;">
<span style="font-size: 9px;">12.63%</span>
</div>
</div>
</div>
</div>
</div>
</div></div></div></div></div></div></div></div>
</div></div></div>
<div class="section section-page-footer">
<div class="section_wrapper clearfix">
<div class="column one page-pager">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<footer id="Footer" class="clearfix">
<div class="footer_copy">
<div class="container">
<div class="column one">
<a id="back_to_top" class="button button_js" href=""><i class="fas fa-angle-up"></i></a>
<div class="copyright">
© 2020 Brenton Oliver </div>
<ul class="social"></ul>
</div>
</div>
</div>
</footer>
</div>
<div id="Side_slide" class="right dark" data-width="250"><div class="close-wrapper"><a href="#" class="close"><i class="fas fa-times-circle"></i></a></div><div class="extras"><div class="extras-wrapper"><a class="icon search" href="#"><i class="fas fa-search"></i></a></div></div><div class="search-wrapper"><form id="side-form" method="get" action="https://boliver5463.github.io/portfolio-test/"><input type="text" class="field" name="s" placeholder="Enter your search"><input type="submit" class="submit" value="" style="display:none;"><a class="submit" href="#"><i class="fas fa-search"></i></a></form></div><div class="lang-wrapper"></div><div class="menu_wrapper"></div><ul class="social"></ul></div><div id="body_overlay"></div>
<style>
#Top_bar{
transition: top 0.3s; /* Transition effect when sliding down (and up) */
}
</style>
<script>
jQuery(function($){
$('.thanos-click').on('click', function(){
// Initialize a new instance of Particles to disintegrate/integrate the button
var particles = new Particles('.thanos-click button');
// Disintegrate the button into particles
particles.disintegrate({
duration: 5000,
direction: 'top',
color: '#000000',
});
});
/* Hide Menu on Scroll down, Show on scroll up */
var prevScrollpos = window.pageYOffset;
window.onscroll = function() {
var currentScrollPos = window.pageYOffset;
if (prevScrollpos > currentScrollPos) {
document.getElementById("Top_bar").style.top = "0";
} else {
document.getElementById("Top_bar").style.top = "-60px";
}
prevScrollpos = currentScrollPos;
}
});
</script>
<script type="text/javascript" src="https://boliver5463.github.io/portfolio-test/wp-content/plugins/visualcomposer/public/dist/front.bundle.js"></script>
<script type="text/javascript" src="https://boliver5463.github.io/portfolio-test/wp-content/plugins/bo-the-sacred-texts/js/bootstrap/bootstrap.min.js"></script>
<script type="text/javascript" src="https://boliver5463.github.io/portfolio-test/wp-content/plugins/bo-the-sacred-texts/js/lazyload/jquery.lazy.min.js"></script>
<script type="text/javascript" src="https://boliver5463.github.io/portfolio-test/wp-content/plugins/bo-the-sacred-texts/js/anime/anime.min.js"></script>
<script type="text/javascript" src="https://boliver5463.github.io/portfolio-test/wp-content/plugins/bo-the-sacred-texts/js/particles/particles.js"></script>
<script type="text/javascript">
/* <![CDATA[ */
var wpcf7 = {"apiSettings":{"root":"https:\/\/boliver5463.github.io\/portfolio-test\/wp-json\/contact-form-7\/v1","namespace":"contact-form-7\/v1"},"cached":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="https://boliver5463.github.io/portfolio-test/wp-content/plugins/contact-form-7/includes/js/scripts.js"></script>
<script type="text/javascript" src="https://boliver5463.github.io/portfolio-test/wp-content/plugins/progressive-wp/assets/scripts/ui-installprompt.js"></script>
<script type="text/javascript" src="https://boliver5463.github.io/portfolio-test/wp-includes/js/jquery/ui/core.min.js"></script>
<script type="text/javascript" src="https://boliver5463.github.io/portfolio-test/wp-includes/js/jquery/ui/widget.min.js"></script>
<script type="text/javascript" src="https://boliver5463.github.io/portfolio-test/wp-includes/js/jquery/ui/mouse.min.js"></script>
<script type="text/javascript" src="https://boliver5463.github.io/portfolio-test/wp-includes/js/jquery/ui/sortable.min.js"></script>
<script type="text/javascript" src="https://boliver5463.github.io/portfolio-test/wp-includes/js/jquery/ui/tabs.min.js"></script>
<script type="text/javascript" src="https://boliver5463.github.io/portfolio-test/wp-includes/js/jquery/ui/accordion.min.js"></script>
<script type="text/javascript" src="https://boliver5463.github.io/portfolio-test/wp-content/themes/betheme/js/plugins.js"></script>
<script type="text/javascript" src="https://boliver5463.github.io/portfolio-test/wp-content/themes/betheme/js/menu.js"></script>
<script type="text/javascript" src="https://boliver5463.github.io/portfolio-test/wp-content/themes/betheme/assets/animations/animations.min.js"></script>
<script type="text/javascript" src="https://boliver5463.github.io/portfolio-test/wp-content/themes/betheme/assets/jplayer/jplayer.min.js"></script>
<script type="text/javascript" src="https://boliver5463.github.io/portfolio-test/wp-content/themes/betheme/js/parallax/translate3d.js"></script>
<script type="text/javascript" src="https://boliver5463.github.io/portfolio-test/wp-content/themes/betheme/js/parallax/smoothscroll.js"></script>
<script type="text/javascript" src="https://boliver5463.github.io/portfolio-test/wp-content/themes/betheme/js/scripts.js"></script>
<script type="text/javascript">
/* <![CDATA[ */
var ajaxsearchlite = {"ajaxurl":"https:\/\/boliver5463.github.io\/portfolio-test\/wp-admin\/admin-ajax.php","backend_ajaxurl":"https:\/\/boliver5463.github.io\/portfolio-test\/wp-admin\/admin-ajax.php","js_scope":"jQuery"};
var ASL = {"ajaxurl":"https:\/\/boliver5463.github.io\/portfolio-test\/wp-admin\/admin-ajax.php","backend_ajaxurl":"https:\/\/boliver5463.github.io\/portfolio-test\/wp-admin\/admin-ajax.php","js_scope":"jQuery","detect_ajax":"0","scrollbar":"1","js_retain_popstate":"0","version":"4733"};
/* ]]> */
</script>
<script type="text/javascript" src="https://boliver5463.github.io/portfolio-test/wp-content/plugins/ajax-search-lite/js/min/jquery.ajaxsearchlite.min.js"></script>
<script type="text/javascript" src="https://boliver5463.github.io/portfolio-test/wp-content/plugins/visualcomposer/public/sources/assetsLibrary/fullWidth/dist/fullWidth.bundle.js"></script>
<script type="text/javascript" src="https://boliver5463.github.io/portfolio-test/wp-content/plugins/visualcomposer/public/sources/assetsLibrary/fullHeight/dist/fullHeight.bundle.js"></script>
<script type="text/javascript" src="https://boliver5463.github.io/portfolio-test/wp-content/plugins/visualcomposer/public/sources/assetsLibrary/parallaxMouseMove/dist/parallaxMouseMove.bundle.js"></script>
<script type="text/javascript">
/* Sites Slider & Sites View code */
jQuery(function(){
var areSitesOpen = false;
jQuery('.bo-sites a.websites').on('click', function(e){
e.preventDefault();
/*
* Hide iframe to show loading screen until iframe is loaded.
* Then show the iframe.
*/
jQuery('#bo-site-window iframe').attr('src', 'about:blank');
jQuery('#bo-site-window iframe').css('cssText', 'display: none;');
var selectedSite = jQuery(this).data('website');
jQuery('#bo-site-window iframe').attr('src', selectedSite);
jQuery('#bo-site-window iframe').on('load',function(){
jQuery('#bo-site-window iframe').css('cssText', 'display: block;');
});
jQuery('.bo-sites').css('cssText', 'left: -300px !important;');
jQuery('#bo-site-window').css('cssText','left: 0 !important;');
jQuery('#bo-sites-tab').css('cssText','margin-left: 0; !important;');
areSitesOpen = false;
});
jQuery('#bo-sites-tab').on('click', function(){
if( areSitesOpen ){
jQuery('.bo-sites').css('cssText', 'left: -300px !important;');
jQuery('#bo-site-window').css('cssText','left: 100vw !important;');
jQuery('#bo-sites-tab').css('cssText','margin-left: 0; !important;');
areSitesOpen = !areSitesOpen;
}else{
jQuery('.bo-sites').css('cssText', 'left: 0 !important;');
jQuery('#bo-site-window').css('cssText','left: 100vw !important;');
jQuery('#bo-sites-tab').css('cssText','margin-left: 300px; !important;');
areSitesOpen = !areSitesOpen;
}
});
});
/* Copy to clipboard function */
function clipboardCopy ( element ) {
// Create a new textarea element and give it id='temp_element'
var textarea = document.createElement('textarea');
textarea.id = 'temp_element';
// Optional step to make less noise on the page, if any!
textarea.style.height = 0;
// Now append it to your page somewhere, I chose <body>
document.body.appendChild(textarea);
// Give our textarea a value of whatever inside the div o id=containerid
textarea.value = jQuery( element ).text();
// Now copy whatever inside the textarea to clipboard
var selector = document.querySelector('#temp_element');
selector.select();
document.execCommand('copy');
// Remove the textarea
document.body.removeChild(textarea);
jQuery( element ).after("<div class='alert alert-success' role='alert' style='text-align: center;'>Copied");
jQuery( element ).next("div").fadeOut( "slow", function(){