-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1132 lines (1081 loc) · 159 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 data-color-scheme='gradient-pink' dir='ltr' lang='en-GB' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'>
<head>
<script async="async" crossorigin="anonymous" src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3961173026050537" type="text/javascript">
// Example object
"schain": {
"complete": 1,
"nodes": [{
"asi":"google.com",
"sid":"pub-3961173026050537", // Same seller_id for the publisher in sellers.json
"hp":1
}],
"ver":"1.0"
}
</script><script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3961173026050537"
crossorigin="anonymous"></script>
<script async='async' crossorigin='anonymous' src='https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3961173026050537'></script>
<!-- HTML Meta Tags -->
<title>AWDEV - All Media Popular 2024 | Engginer</title><meta content='ApJ2vxUeLQdmpTqLVx21AfHuUJMtK6DU3GpuaoFLtuk' name='google-site-verification'/>
<meta content='To start the amazing thing you can join us ( Awdev ) please fill in your data with this from Page. (Contact Us )' name='description'/>
<!-- Facebook Meta Tags -->
<meta content='https://www.awdev.eu.org/?m=1' property='og:url'/>
<meta content='website' property='og:type'/>
<meta content='AWDEV - All Media Popular 2024 | Engginer' property='og:title'/>
<meta content='To start the amazing thing you can join us ( Awdev ) please fill in your data with this from Page. (Contact Us )' property='og:description'/>
<meta content='width=device-width, initial-scale=1' name='viewport'/>
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<meta content='' name='theme-color'/>
<meta content='' name='msapplication-navbutton-color'/>
<meta content='blogger' name='generator'/>
<link href='https://www.awdev.eu.org/favicon.ico' rel='icon' type='image/x-icon'/>
<link href='http://www.awdev.eu.org/' rel='canonical'/>
<link rel="alternate" type="application/atom+xml" title="AWDEV - All Media Popular 2024 | Engginer - Atom" href="https://www.awdev.eu.org/feeds/posts/default" />
<link rel="alternate" type="application/rss+xml" title="AWDEV - All Media Popular 2024 | Engginer - RSS" href="https://www.awdev.eu.org/feeds/posts/default?alt=rss" />
<link rel="service.post" type="application/atom+xml" title="AWDEV - All Media Popular 2024 | Engginer - Atom" href="https://www.blogger.com/feeds/254521912970371658/posts/default" />
<link rel="me" href="https://www.blogger.com/profile/03200974016219742734" />
<meta content='To start the amazing thing you can join us ( Awdev ) please fill in your data with this from Page. (Contact Us )' name='description'/>
<title>AWDEV - All Media Popular 2024 | Engginer</title>
<meta content='AWDEV - All Media Popular 2024 | Engginer' name='keywords'/>
<!-- Google tag (gtag.js) -->
<script async='true' src='https://www.googletagmanager.com/gtag/js?id=G-12XG1VVJCG'></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-12XG1VVJCG');
</script>
<link crossorigin='' href='https://blogger.googleusercontent.com/' rel='preconnect'/>
<link crossorigin='' href='https://cdn.jsdelivr.net/' rel='preconnect'/>
<link href='https://blogger.googleusercontent.com/' rel='dns-prefetch'/>
<link href='https://cdn.jsdelivr.net/' rel='dns-prefetch'/>
<link as='font' crossorigin='' href='https://cdn.jsdelivr.net/gh/sugengid/wuzz-fonts@v0.1.0/inter.woff2' rel='preload' type='font/woff2'/>
<link as='font' crossorigin='' href='https://cdn.jsdelivr.net/gh/sugengid/wuzz-icons@v0.3.0/icons.woff2' rel='preload' type='font/woff2'/>
<meta content='http://www.awdev.eu.org/' property='og:url'/>
<meta content='AWDEV - All Media Popular 2024 | Engginer' property='og:title'/>
<meta content='To start the amazing thing you can join us ( Awdev ) please fill in your data with this from Page. (Contact Us )' property='og:description'/>
<meta content='website' property='og:type'/>
<meta content='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEijEdmJDpYrmCwaN1MNeObvI5s61jSFlE4rgJbhFVOdnD9jIbj39nRgUs6C-dDCghWVJHHmk-9kcvNZYmK0SZwDmJuJmGB7Vuq9rlTyKNWZKIW_Fa_7bmiuW5BWdVT4VfbxrlGy6zpTn3l44gW-_9ZlfdH69J0-S7bb47BBr9V4lGLo2S-DGS_p51Ez8mFl/w1200-h630-p-k-no-nu/Brown%20Blue%20Motorcycle%20For%20Rent_20240819_110051_0000.png' property='og:image'/>
<meta content='summary_large_image' name='twitter:card'/>
<meta content='AWDEV - All Media Popular 2024 | Engginer' property='twitter:title'/>
<meta content='http://www.awdev.eu.org/' property='twitter:url'/>
<meta content='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEijEdmJDpYrmCwaN1MNeObvI5s61jSFlE4rgJbhFVOdnD9jIbj39nRgUs6C-dDCghWVJHHmk-9kcvNZYmK0SZwDmJuJmGB7Vuq9rlTyKNWZKIW_Fa_7bmiuW5BWdVT4VfbxrlGy6zpTn3l44gW-_9ZlfdH69J0-S7bb47BBr9V4lGLo2S-DGS_p51Ez8mFl/w1200-h675-p-k-no-nu/Brown%20Blue%20Motorcycle%20For%20Rent_20240819_110051_0000.png' property='twitter:image'/>
<meta content='To start the amazing thing you can join us ( Awdev ) please fill in your data with this from Page. (Contact Us )' property='twitter:description'/>
<script>
//<![CDATA[
/* shinsenter/defer.js */
!function(o,u,h){function s(t,n,e){c?S(t,n):((e=e===h?s.lazy:e)?N:C).push(t,Math.max(e?350:0,n))}function m(t){d.head.appendChild(t)}function f(t,n){t.forEach(function(t){n(t)})}function i(n,t,e,c){f(t.split(" "),function(t){(c||o)[n+"EventListener"](t,e||b)})}function r(t,n,e,c){return(c=n?d.getElementById(n):h)||(c=d.createElement(t),n&&(c.id=n)),e&&i(l,a,e,c),c}function p(t,n){f(q.call(t.attributes),function(t){n(t.name,t.value)})}function v(t,n){return q.call((n||d).querySelectorAll(t))}function y(c,t){f(v("source,img",c),y),p(c,function(t,n,e){(e=/^data-(.+)/.exec(t))&&c[A](e[1],n)}),t&&(c.className+=" "+t),c[a]&&c[a]()}function t(t,n,e){s(function(c){f(c=v(t||"script[type=deferjs]"),function(t,e){t.src&&(e=r(g),p(t,function(t,n){t!=j&&e[A]("src"==t?"href":t,n)}),e.rel="preload",e.as=w,m(e))}),function t(n,e){(n=c[I]())&&(e=r(w),p(n,function(t,n){t!=j&&e[A](t,n)}),e.text=n.text,n.parentNode.replaceChild(e,n),e.src&&!e.getAttribute("async")?i(l,a+" error",t,e):t())}()},n,e)}function b(t,n){for(n=c?(i(e,x),N):(i(e,E),c=s,N[0]&&i(l,x),C);n[0];)S(n[I](),n[I]())}var g="link",w="script",a="load",n="pageshow",l="add",e="remove",x="touchstart mousemove mousedown keydown wheel",E="on"+n in o?n:a,A="setAttribute",I="shift",j="type",k=o.IntersectionObserver,d=o.document||o,c=/p/.test(d.readyState),C=[],N=[],S=o.setTimeout,q=C.slice;s.all=t,s.dom=function(t,n,o,i,r){s(function(e){function c(t){i&&!1===i(t)||y(t,o)}e=k?new k(function(t){f(t,function(t,n){t.isIntersecting&&(e.unobserve(n=t.target),c(n))})},r):h,f(v(t||"[data-src]"),function(t){t[u]||(t[u]=s,e?e.observe(t):c(t))})},n,!1)},s.css=function(n,e,t,c,o){s(function(t){(t=r(g,e,c)).rel="stylesheet",t.href=n,m(t)},t,o)},s.js=function(n,e,t,c,o){s(function(t){(t=r(w,e,c)).src=n,m(t)},t,o)},s.reveal=y,o[u]=s,c||i(l,E),t()}(this,"Defer");
//]]>
</script>
<style id='page-skin-1' type='text/css'><!--
/*
Name: wuzz
Version: 1.0.0
Designer: Mas Sugeng (sugeng.id)
*/
[data-color-scheme=gradient-red]{--color-scheme-bg:#CD3C3C;--color-scheme-bg2:#91347c;--color-scheme-txt:#ba3c51}[data-color-scheme=gradient-blue]{--color-scheme-bg:#1F70D9;--color-scheme-bg2:#8427a3;--color-scheme-txt:#4457c2}[data-color-scheme=gradient-pink]{--color-scheme-bg:#E40177;--color-scheme-bg2:#a52895;--color-scheme-txt:#ce2c90}[data-color-scheme=gradient-green]{--color-scheme-bg:#0A7F51;--color-scheme-bg2:#005a64;--color-scheme-txt:#0A7F51}[data-color-scheme=gradient-brown]{--color-scheme-bg:#BA542C;--color-scheme-bg2:#a3261d;--color-scheme-txt:#BA542C}[data-color-scheme=gradient-purple]{--color-scheme-bg:#743FDE;--color-scheme-bg2:#3423d1;--color-scheme-txt:#743FDE}:root{--darkest-grey:#212933;--dark-grey:#484F5B;--normal-grey:#657386;--medium-grey:#B8C4CD;--light-grey:#E1E7EC;--lightest-grey:#F8F9FA;--primary-background:#FFF;--secondary-background:var(--lightest-grey);--primary-text-color:var(--dark-grey);--secondary-text-color:var(--normal-grey);--tertiary-text-color:var(--medium-grey);--white-text-color:#FFF;--link-color:var(--color-scheme-txt);--cm-form-bg:#fff;--cm-form-iframe-filter:none;--prism-bg:#f5f5f5;--prism-txt-select:#b3d4fc;--prism-txt-color:var(--dark-grey);--prism-grey1:#667085;--prism-grey2:#707070;--prism-blue:#07a;--prism-red:#E00000;--prism-green:#527A00;--prism-yellow:#E69D00;--prism-purple:#D60076;--prism-brown:#9a6e3a;--blue-color:#3665ff;--template-width:1100px;--content-width:640px;--header-height:60px;--thumb-rounded-corner:6px;--template-padding:34px;--body-font:"Inter","Inter-fallback",Arial,sans-serif;--heading-font:"Inter","Inter-fallback",Arial,sans-serif;--fs-12:0.9rem;--fs-14:1.1rem;--fs-16:1.3rem;--fs-18:1.5rem;--fs-20:1.7rem;--gradient-bg-color:linear-gradient(140deg, var(--color-scheme-bg) 25%, var(--color-scheme-bg2) 95%);--gradient-btn-color:linear-gradient(140deg, var(--color-scheme-bg) 35%, var(--color-scheme-bg2) 125%);--gradient-text-color:linear-gradient(140deg, var(--color-scheme-txt) 35%, var(--color-scheme-bg2) 125%);--header-box-shadow:0 1px 3px 0 rgba(0, 0, 0, .1),0 1px 2px -1px rgba(0, 0, 0, .1)}@media screen and (max-width:600px){:root{--template-padding:28px}}@media screen and (max-width:480px){:root{--template-padding:18px}}@media screen and (max-width:380px){:root{--template-padding:16px}}@media screen and (max-width:320px){:root{--template-padding:12px}}@media screen and (min-width:320px){:root{--fs-12:calc(1rem + 2 * ((100vw - 220px) / (600 - 220)));--fs-14:calc(1.1rem + 3 * ((100vw - 220px) / (600 - 220)));--fs-16:calc(1.3rem + 3 * ((100vw - 220px) / (600 - 220)));--fs-18:calc(1.5rem + 3 * ((100vw - 220px) / (600 - 220)));--fs-20:calc(1.7rem + 3 * ((100vw - 220px) / (600 - 220)))}}@media screen and (min-width:600px){:root{--fs-12:1.2rem;--fs-14:1.4rem;--fs-16:1.6rem;--fs-18:1.8rem;--fs-20:2rem}}/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-moz-appearance:button;appearance:button;-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-moz-appearance:textfield;appearance:textfield;-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}@font-face{font-family:Inter;font-style:normal;font-weight:100 900;font-display:swap;src:url(https://cdn.jsdelivr.net/gh/sugengid/wuzz-fonts@v0.1.0/inter.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Inter-fallback;size-adjust:107%;ascent-override:90%;src:local("Arial")}@font-face{font-family:iconfont;src:url(https://cdn.jsdelivr.net/gh/sugengid/wuzz-icons@v0.3.0/icons.woff2);font-weight:400;font-style:normal;font-display:block}[class*=" icon-"],[class^=icon-]{font-family:iconfont!important;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-edit:before{content:"\e92f"}.icon-menu2:before{content:"\e920"}.icon-fire:before{content:"\e92d"}.icon-star:before{content:"\e929"}.icon-pin:before{content:"\e92a"}.icon-flash:before{content:"\e92b"}.icon-clock:before{content:"\e92c"}.icon-copy:before{content:"\e928"}.icon-sort:before{content:"\e927"}.icon-list:before{content:"\e924"}.icon-download:before{content:"\e925"}.icon-warning:before{content:"\e926"}.icon-calender:before{content:"\e913"}.icon-checkmark:before{content:"\e91f"}.icon-label:before{content:"\e92e"}.icon-page:before{content:"\e921"}.icon-new-window:before{content:"\e922"}.icon-x-circle:before{content:"\e923"}.icon-info:before{content:"\e902"}.icon-reply:before{content:"\e91e"}.icon-share:before{content:"\e900"}.icon-home:before{content:"\e901"}.icon-comment:before{content:"\e914"}.icon-settings:before{content:"\e915"}.icon-moon:before{content:"\e916"}.icon-sun:before{content:"\e917"}.icon-darkmode:before{content:"\e918"}.icon-search:before{content:"\e919"}.icon-menu:before{content:"\e91a"}.icon-arrow-down:before{content:"\e91b"}.icon-trash:before{content:"\e91c"}.icon-cross:before{content:"\e91d"}.googlemaps-icon i::before,.icon-maps:before{content:"\e903"}.icon-mastodon:before,.mastodon-icon i::before{content:"\e904"}.icon-threads:before,.threads-icon i::before{content:"\e905"}.dribbble-icon i::before,.icon-dribbble:before{content:"\e906"}.behance-icon i::before,.icon-behance:before{content:"\e907"}.github-icon i::before,.icon-github:before{content:"\e908"}.email-icon i::before,.icon-email:before{content:"\e909"}.icon-whatsapp:before,.whatsapp-icon i::before{content:"\e90a"}.icon-linkedin:before,.linkedin-icon i::before{content:"\e90b"}.icon-telegram:before,.telegram-icon i::before{content:"\e90c"}.icon-pinterest:before,.pinterest-icon i::before{content:"\e90d"}.icon-tiktok:before,.tiktok-icon i::before{content:"\e90e"}.icon-youtube:before,.youtube-icon i::before{content:"\e90f"}.icon-instagram:before,.instagram-icon i::before{content:"\e910"}.icon-twitter:before,.twitter-icon i::before{content:"\e911"}.facebook-icon i::before,.icon-facebook:before{content:"\e912"}.section,.widget{margin:0 0;padding:0 0}#backlinks-container,.blog-feeds,.blog-mobile-link,.feed-links,a.home-link{display:none}.edit-post,.item-control,.quickedit,.thread-toggle{display:none}.CSS_LIGHTBOX{z-index:9999!important}.CSS_LAYOUT_COMPONENT{color:transparent}.custom-css,.custom-javascript-footer,.template-settings{display:none}html{font-size:62.5%;scroll-behavior:smooth}body{font-family:var(--body-font);font-weight:400;padding:0;margin:0;color:var(--dark-grey);font-size:var(--fs-18);line-height:1.55;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}*,::after,::before{-webkit-box-sizing:border-box;box-sizing:border-box}::-webkit-input-placeholder{color:var(--normal-grey);opacity:1}::-moz-placeholder{color:var(--normal-grey);opacity:1}:-ms-input-placeholder{color:var(--normal-grey);opacity:1}::-ms-input-placeholder{color:var(--normal-grey);opacity:1}::placeholder{color:var(--normal-grey);opacity:1}:-ms-input-placeholder{color:var(--normal-grey)}::-ms-input-placeholder{color:var(--normal-grey)}h1,h2,h3,h4,h5,h6{font-family:var(--heading-font);color:var(--darkest-grey);font-weight:700;line-height:1.34;scroll-margin-top:calc(var(--header-height) + 10px);margin:0 0 2.5rem}h1{font-size:2.2rem;letter-spacing:-.8px}@media screen and (min-width:220px){h1{font-size:calc(2.2rem + 11 * (100vw - 220px)/ 381)}}@media screen and (min-width:601px){h1{font-size:3.3rem}}h2{font-size:2rem;letter-spacing:-.6px}@media screen and (min-width:220px){h2{font-size:calc(2rem + 8 * (100vw - 220px)/ 381)}}@media screen and (min-width:601px){h2{font-size:2.8rem}}h3{font-size:1.8rem;letter-spacing:-.4px}@media screen and (min-width:220px){h3{font-size:calc(1.8rem + 5 * (100vw - 220px)/ 381)}}@media screen and (min-width:601px){h3{font-size:2.3rem}}h4{font-size:1.6rem;letter-spacing:-.2px}@media screen and (min-width:220px){h4{font-size:calc(1.6rem + 3 * (100vw - 220px)/ 381)}}@media screen and (min-width:601px){h4{font-size:1.9rem}}p{margin:2.5rem 0}ol,ul{margin:2.5rem 0}a{color:var(--link-color);text-decoration:none;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}a:hover{opacity:.9;text-decoration:none}button{border-radius:3px;border:none;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;cursor:pointer}button:hover{opacity:.9}input,select,textarea{font-size:var(--fs-16);border-radius:6px;color:var(--dark-grey);-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}img{max-width:100%;height:auto}iframe{margin:0 0 2.5rem;max-width:100%}table{margin:0 0 2.5rem;max-width:100%;height:auto}table[border="1"]{border-collapse:collapse}table[border="1"] td{vertical-align:top;text-align:left;padding:.4rem .6rem;border:1px solid var(--light-grey)}table[border="1"] th{vertical-align:top;text-align:center;font-weight:700;padding:.4rem .6rem;border:1px solid var(--light-grey)}blockquote{margin:2.5rem 0;font-style:italic}:not(pre)>code{padding:3px 6px}pre{margin:2.5rem 0;white-space:pre-wrap}[data-theme=dark]{--darkest-grey:#F8F9FA;--dark-grey:#E1E7EC;--normal-grey:#B8C4CD;--medium-grey:#657386;--light-grey:#484F5B;--lightest-grey:#141a22;--primary-background:#1c222a;--secondary-background:var(--lightest-grey);--cm-form-bg:#000;--cm-form-iframe-filter:invert(.2) brightness(1.3);--prism-bg:#131920;--prism-txt-select:#806200;--prism-txt-color:var(--dark-grey);--prism-grey1:#87b6e5;--prism-grey2:#cdcdcd;--prism-blue:#5ecfff;--prism-red:#ff5578;--prism-green:#b8ff2a;--prism-yellow:#ffba3e;--prism-purple:#ff3ca8;--prism-brown:#fbaa4a;--blue-color:#7692ff;--header-box-shadow:0 2px 4px 0 rgb(0 0 0 / 31%)}[data-theme=dark][data-color-scheme=gradient-red]{--color-scheme-bg:#CD3C3C;--color-scheme-bg2:#813373;--color-scheme-txt:#FF5373}[data-theme=dark][data-color-scheme=gradient-blue]{--color-scheme-bg:#1F70D9;--color-scheme-bg2:#8427a3;--color-scheme-txt:#7E89FF}[data-theme=dark][data-color-scheme=gradient-pink]{--color-scheme-bg:#E40177;--color-scheme-bg2:#a52895;--color-scheme-txt:#ff6bb0}[data-theme=dark][data-color-scheme=gradient-green]{--color-scheme-bg:#0A7F51;--color-scheme-bg2:#005a64;--color-scheme-txt:#12bd78}[data-theme=dark][data-color-scheme=gradient-brown]{--color-scheme-bg:#BA542C;--color-scheme-bg2:#a3261d;--color-scheme-txt:#f07d50}[data-theme=dark][data-color-scheme=gradient-purple]{--color-scheme-bg:#743FDE;--color-scheme-bg2:#3423d1;--color-scheme-txt:#a980fa}h2.c-widget-title{display:inline-block;padding:0 12px;position:relative;color:var(--dark-grey);font-size:var(--fs-14);text-transform:uppercase;line-height:1}h2.c-widget-title::after{position:absolute;top:0;right:0;bottom:0;left:0;content:"";-webkit-transform:skewX(-18deg);transform:skewX(-18deg);border-left:2px solid var(--color-scheme-bg);border-right:2px solid var(--color-scheme-bg)}h2.c-widget-title span{vertical-align:middle}#darkmode-button{position:relative;height:100%;margin-left:auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;visibility:hidden}#darkmode-button.visible{visibility:visible}@media screen and (max-width:1200px){#darkmode-button{margin-left:unset}}#darkmode-button button.darkmode-btn{display:block;color:var(--normal-grey);font-size:2.4rem;padding:0;background:0 0;border:none;cursor:pointer}#darkmode-button button.darkmode-btn .icon-darkmode{border-radius:50%;display:block}div#darkmode-option-container{position:absolute;font-size:var(--fs-14);background:var(--primary-background);-webkit-box-shadow:var(--header-box-shadow);box-shadow:var(--header-box-shadow);padding:10px;top:calc(var(--header-height) - 10px);right:0;opacity:0;visibility:hidden;-webkit-transition:visibility .15s ease-in-out,top .15s ease-in-out;transition:visibility .15s ease-in-out,top .15s ease-in-out;cursor:pointer}div#darkmode-option-container.opendarkmode-option{top:var(--header-height);opacity:1;visibility:visible}div#darkmode-option-container label>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;padding:10px;line-height:1;border-radius:4px}div#darkmode-option-container label>span span{margin-right:5px}div#darkmode-option-container input{position:absolute;opacity:0;cursor:pointer}div#darkmode-option-container input:checked+span{background:var(--color-scheme-bg);background:var(--gradient-btn-color);color:var(--white-text-color)}#search-button{position:relative;height:100%;margin-left:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media screen and (max-width:1200px){#search-button{display:none}}#search-button label.search-btn{display:block;color:var(--normal-grey);font-size:2.3rem;cursor:pointer}#search-button label.search-btn .icon-search{border-radius:50%;display:block}div#search-box-container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:absolute;background:var(--primary-background);padding:0 10px;cursor:pointer;text-align:center;opacity:0;top:-100%;right:100%;right:calc(100% + 5px);height:100%;display:flex;align-items:center;-webkit-transform:translateX(10px);transform:translateX(10px);-webkit-transition:visibility .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:visibility .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:visibility .15s ease-in-out,transform .15s ease-in-out;transition:visibility .15s ease-in-out,transform .15s ease-in-out,-webkit-transform .15s ease-in-out}div#search-box-container.opensearch{top:0;opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}div#search-box-container form{position:relative;font-size:var(--fs-12)}div#search-box-container form span.icon-search{cursor:default;color:var(--normal-grey);position:absolute;top:calc(50% - 8.5px);left:12px;font-size:1.7rem}div#search-box-container form input[type=text]{font-size:var(--fs-14);border-radius:6px;padding:12px 15px 12px 35px;border:none;outline:0;background:var(--lightest-grey);border:1px solid var(--light-grey)}.post-meta-top{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;gap:10px;font-size:var(--fs-14);line-height:1.4}.post-meta-top .post-meta-label{color:var(--medium-grey)}.post-meta-top .post-meta-label a{font-weight:700;color:var(--color-scheme-txt);padding-top:7px;margin-top:-7px;display:inline-block}.post-meta-top .post-meta-label a:hover{opacity:.9}.post-meta-top .post-meta-comment{-webkit-box-flex:1;-ms-flex:1 0 30px;flex:1 0 30px;text-align:right}.post-meta-top .post-meta-comment a.comment-link{display:inline-block;padding-top:7px;margin-top:-7px;color:var(--color-scheme-txt)}.post-meta-top .post-meta-comment a.comment-link:hover{opacity:.9}.post-meta-top .post-meta-comment .comment-total span{vertical-align:middle}.post-meta-top .post-meta-comment .icon-comment{font-size:var(--fs-16)}.post-meta-bottom{color:var(--normal-grey);font-size:var(--fs-12);line-height:1.2}.post-meta-bottom .author-name{font-weight:700}.post-meta-bottom .author-name,.post-meta-bottom .post-meta-date{display:inline-block}.post-meta-bottom .post-meta-separator{color:var(--medium-grey);vertical-align:middle;display:none}.post-meta-bottom.has-author .post-meta-separator{display:inline-block}.back-to-top{position:relative}.back-to-top-btn{background:var(--color-scheme-bg);background:var(--gradient-btn-color);position:fixed;bottom:0;right:var(--template-padding);z-index:20;border-radius:5px;height:40px;width:40px;color:var(--white-text-color);cursor:pointer;-webkit-transition:all .15s ease-out;transition:all .15s ease-out;font-size:var(--fs-18);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;visibility:hidden;opacity:0}.back-to-top-btn::before{-webkit-transform:rotate(-180deg);transform:rotate(-180deg)}.back-to-top-btn:hover{opacity:.9}.back-to-top-btn.show{opacity:1;bottom:var(--template-padding);visibility:visible}.loader{margin:0 auto;width:30px;height:30px;background:0 0;border:5px solid transparent;border-top-color:rgba(151,151,151,.25);border-left-color:rgba(151,151,151,.25);border-radius:50%;-webkit-animation:loader .75s 10 ease forwards;animation:loader .75s 10 ease forwards}@-webkit-keyframes loader{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes loader{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}img.lazyload,picture.lazyload img{-webkit-transition:background-color 150ms ease-in-out;transition:background-color 150ms ease-in-out;background:rgba(135,137,155,.3);background:linear-gradient(110deg,rgba(135,137,155,.3) 8%,rgba(135,137,155,.2) 18%,rgba(135,137,155,.3) 33%);background-size:200% 100%;-webkit-animation:shine 1.5s linear infinite;animation:shine 1.5s linear infinite}img.lazyload.loaded,picture.lazyload.loaded img{background-color:transparent}@-webkit-keyframes shine{to{background-position-x:-200%}}@keyframes shine{to{background-position-x:-200%}}.accordion-container{font-size:var(--fs-16);max-width:620px;margin:0 auto;margin-bottom:2.5rem}.accordion-toggle{font-weight:700;position:relative;display:block;padding:15px 0;padding-right:20px;text-decoration:none;cursor:pointer;border-top:1px solid var(--light-grey)}.accordion-toggle::before{color:var(--link-color);font-family:iconfont;content:"\e91b";display:inline-block;position:absolute;font-size:var(--fs-14);line-height:1;right:0;top:calc(50% - 7px);-webkit-transition:-webkit-transform .15s ease-in-out;transition:-webkit-transform .15s ease-in-out;transition:transform .15s ease-in-out;transition:transform .15s ease-in-out,-webkit-transform .15s ease-in-out}.accordion-toggle.active::before{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.accordion-content{max-height:0;overflow:hidden;padding:0;-webkit-transition:max-height .2s ease-out;transition:max-height .2s ease-out}.accordion-content div{padding:0 0 20px}.accordion-content:last-child{border-bottom:1px solid var(--light-grey)}.glider-contain{width:100%;margin:0 auto;position:relative}.glider{margin:0 auto;position:relative;overflow-y:hidden;-webkit-overflow-scrolling:touch;-ms-overflow-style:none;-webkit-transform:translateZ(0);transform:translateZ(0)}.glider-track{-webkit-transform:translateZ(0);transform:translateZ(0);width:100%;margin:0;padding:0;display:-webkit-box;display:-ms-flexbox;display:flex;z-index:1}.glider.draggable{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:-webkit-grab;cursor:grab}.glider.draggable .glider-slide img{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.glider.drag{cursor:-webkit-grabbing;cursor:grabbing}.glider-slide{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-line-pack:center;align-content:center;width:100%}.glider-slide img{max-width:100%}.glider::-webkit-scrollbar{opacity:0;height:0}.glider-slide{min-width:150px}.glider-hide{opacity:0}.glider-dots{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:0 auto;padding:0}.glider-dot{border:0;padding:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;outline:0;display:block;cursor:pointer;color:var(--light-grey);border-radius:50%;background:var(--light-grey);width:10px;height:10px;margin:6px}.glider-dot.active,.glider-dot:focus,.glider-dot:hover{background:var(--color-scheme-txt)}@media (max-width:36em){.glider::-webkit-scrollbar{opacity:1;-webkit-appearance:none;width:7px;height:3px}.glider::-webkit-scrollbar-thumb{opacity:1;border-radius:99px;background-color:rgba(156,156,156,.25);-webkit-box-shadow:0 0 1px rgba(255,255,255,.25);box-shadow:0 0 1px rgba(255,255,255,.25)}}body{background:var(--primary-background);margin:0;padding:0}main#main{padding:0 var(--template-padding);word-wrap:break-word;overflow-wrap:break-word}main#main .container{max-width:var(--template-width);margin:0 auto}.content-index{padding:40px 0}.content-index .latestposts-title{margin-bottom:3rem}.content-index .latestposts-title h2{margin:0}.content-index .post-filter-message{margin-bottom:3rem;color:var(--dark-grey);line-height:1;font-weight:700}.content-index .post-filter-message span{vertical-align:middle}.content-index .content{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;gap:40px 3%}.content-index .content>span.fi{display:none}@media screen and (max-width:600px){.content-index .content{grid-template-columns:repeat(2,minmax(0,1fr));gap:35px 4%}.content-index .content .in-feed-ad-container{grid-column:1/span 2}}@media screen and (max-width:380px){.content-index .content{grid-template-columns:repeat(1,minmax(0,1fr))}.content-index .content .in-feed-ad-container{grid-column:1/span 1}}.content-index .post-container .post-thumbnail{position:relative;border-radius:var(--thumb-rounded-corner);overflow:hidden;margin-bottom:2rem;aspect-ratio:3/2;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.content-index .post-container .post-thumbnail a{display:block;width:100%;-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%}.content-index .post-container .post-thumbnail img{border-radius:var(--thumb-rounded-corner);display:block}.content-index .post-container .post-title{color:var(--darkest-grey);margin:.7rem 0;font-size:1.4rem}.content-index .post-container .post-title a{color:var(--darkest-grey)}.content-index .post-container .post-title a:hover{color:var(--color-scheme-txt)}@media screen and (min-width:241px){.content-index .post-container .post-title{font-size:calc(1.5rem + 7 * (100vw - 241px)/ 140);margin:calc(.8rem + 2 * (100vw - 241px)/ 140) 0}}@media screen and (min-width:381px){.content-index .post-container .post-title{font-size:calc(1.5rem + 7 * (100vw - 381px)/ 220)}}@media screen and (min-width:601px){.content-index .post-container .post-title{font-size:calc(1.6rem + 6 * (100vw - 601px)/ 600);margin:calc(.8rem + 2 * (100vw - 601px)/ 600) 0}}@media screen and (min-width:1201px){.content-index .post-container .post-title{font-size:2.2rem;margin:1rem 0}}header#header{height:var(--header-height)}header#header .container{background:var(--primary-background);padding:0 var(--template-padding);position:fixed;z-index:999;top:0;-webkit-transition:top .3s;transition:top .3s;width:100%;height:var(--header-height);-webkit-box-shadow:var(--header-box-shadow);box-shadow:var(--header-box-shadow)}header#header .container.show{top:0}header#header .container.hide{top:calc(var(--header-height) * -1)}header#header #header-content{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;max-width:var(--template-width);margin:0 auto;height:100%}@media screen and (max-width:1200px){header#header #header-content{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}}header#header #header-content #blog-title{-ms-flex-negative:0;flex-shrink:0;padding:0;margin-right:20px;max-width:300px}@media screen and (max-width:700px){header#header #header-content #blog-title{margin-right:26px}}header#header #header-content #blog-title h1.title,header#header #header-content #blog-title h2.title{font-size:var(--fs-20);text-transform:uppercase;line-height:1;font-weight:700;letter-spacing:-.4px;margin:0;padding:0}header#header #header-content #blog-title h1.title a,header#header #header-content #blog-title h2.title a{color:var(--darkest-grey)}header#header #header-content #blog-title p.title-description{margin:0;font-size:var(--fs-12);line-height:1;margin-top:2px;color:var(--normal-grey)}@media screen and (max-width:320px){header#header #header-content #blog-title p.title-description{display:none}}header#header #header-content #blog-title img{height:calc(var(--header-height) - 30px);display:block;width:auto;margin:0}@media screen and (max-width:700px){header#header #header-content #blog-title img{max-height:calc(var(--header-height) - 30px);height:auto}}header#header #header-content #blog-title img.logo-darkmode{display:none}header#header #header-content #blog-title img.logo-no-darkmode{background:#fff;padding:3px;border-radius:3px}header#header #header-content #blog-title .hide-title .title{text-indent:-9999px;visibility:hidden;margin:0 0;padding:0 0;height:0}[data-theme=dark] header#header #header-content #blog-title img.logo-lightmode{display:none}[data-theme=dark] header#header #header-content #blog-title img.logo-darkmode{display:block}#aside-top{background:var(--lightest-grey);padding:0 var(--template-padding)}#aside-top .container{max-width:var(--template-width);margin:0 auto}#aside-top-widgets{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:40px 0}#aside-top-widgets.no-items{padding:0;display:none}#aside-top-widgets .FeaturedPost{-webkit-box-flex:0;-ms-flex:0 1 48.5%;flex:0 1 48.5%}@media screen and (max-width:700px){#aside-top-widgets .FeaturedPost{-webkit-box-flex:0;-ms-flex:0 1 100%;flex:0 1 100%;margin-bottom:40px}}#aside-top-widgets .FeaturedPost h2.title{margin:0 0 3rem}#aside-top-widgets .FeaturedPost .post-summary .featured-img{border-radius:var(--thumb-rounded-corner);overflow:hidden;margin-bottom:1.8rem}#aside-top-widgets .FeaturedPost .post-summary .featured-img .featured-img-bg{position:relative;overflow:hidden;aspect-ratio:3/2;display:-webkit-box;display:-ms-flexbox;display:flex}#aside-top-widgets .FeaturedPost .post-summary .featured-img a{display:block;width:100%;-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%}#aside-top-widgets .FeaturedPost .post-summary .featured-img img{border-radius:var(--thumb-rounded-corner);display:block;width:100%}#aside-top-widgets .FeaturedPost .post-summary .post-title{color:var(--darkest-grey);font-size:2rem;margin:1rem 0 1.1rem}#aside-top-widgets .FeaturedPost .post-summary .post-title a{color:var(--darkest-grey)}#aside-top-widgets .FeaturedPost .post-summary .post-title a:hover{color:var(--color-scheme-txt)}@media screen and (min-width:381px){#aside-top-widgets .FeaturedPost .post-summary .post-title{font-size:calc(2.2rem + 6 * (100vw - 381px)/ 320)}}@media screen and (min-width:701px){#aside-top-widgets .FeaturedPost .post-summary .post-title{font-size:calc(2rem + 8 * (100vw - 701px)/ 500)}}@media screen and (min-width:1201px){#aside-top-widgets .FeaturedPost .post-summary .post-title{font-size:2.8rem}}#aside-top-widgets.no-popular-posts #FeaturedPost1,#aside-top-widgets:not(:has(#PopularPosts1)) #FeaturedPost1{-webkit-box-flex:0;-ms-flex:0 1 100%;flex:0 1 100%;margin-bottom:0!important}#aside-top-widgets.no-popular-posts .post-summary,#aside-top-widgets:not(:has(#PopularPosts1)) .post-summary{display:-webkit-box;display:-ms-flexbox;display:flex}#aside-top-widgets.no-popular-posts .post-summary .featured-img,#aside-top-widgets:not(:has(#PopularPosts1)) .post-summary .featured-img{margin-right:3%;margin-bottom:0;-webkit-box-flex:0;-ms-flex:0 0 31.333%;flex:0 0 31.333%}@media screen and (max-width:600px){#aside-top-widgets.no-popular-posts .post-summary,#aside-top-widgets:not(:has(#PopularPosts1)) .post-summary{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}#aside-top-widgets.no-popular-posts .post-summary .featured-img,#aside-top-widgets:not(:has(#PopularPosts1)) .post-summary .featured-img{margin-right:0;margin-bottom:2.5rem;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}}#aside-top-widgets.no-popular-posts .post-summary .post-title,#aside-top-widgets:not(:has(#PopularPosts1)) .post-summary .post-title{font-size:2rem}@media screen and (min-width:381px){#aside-top-widgets.no-popular-posts .post-summary .post-title,#aside-top-widgets:not(:has(#PopularPosts1)) .post-summary .post-title{font-size:calc(2.2rem + 12 * (100vw - 381px)/ 220)}}@media screen and (min-width:601px){#aside-top-widgets.no-popular-posts .post-summary .post-title,#aside-top-widgets:not(:has(#PopularPosts1)) .post-summary .post-title{font-size:calc(2rem + 22 * (100vw - 601px)/ 600)}}@media screen and (min-width:1201px){#aside-top-widgets.no-popular-posts .post-summary .post-title,#aside-top-widgets:not(:has(#PopularPosts1)) .post-summary .post-title{font-size:4.2rem}}#aside-bottom{background:var(--lightest-grey);padding:0 var(--template-padding)}#aside-bottom .container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:30px 3%;max-width:var(--template-width);padding:calc(var(--template-padding) + 10px) 0;margin:0 auto;font-size:var(--fs-16)}#aside-bottom .container h2.title{font-size:var(--fs-16);margin:0;margin-bottom:2rem;color:var(--dark-grey)}#aside-bottom .container h2.c-widget-title{font-size:var(--fs-14)}#aside-bottom .container .widget-content{margin-bottom:30px}#aside-bottom .container .widget-content ol,#aside-bottom .container .widget-content ul{list-style:none;padding:0;margin:0}#aside-bottom .container .widget-content ol li,#aside-bottom .container .widget-content ul li{margin-bottom:6px}#aside-bottom .container .widget-content ol li:last-child,#aside-bottom .container .widget-content ul li:last-child{margin-bottom:0}#aside-bottom .container .aside-bottom-widgets .widget:last-child .widget-content{margin-bottom:0}#aside-bottom .container #aside-bottom-widget1{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%}#aside-bottom .container #aside-bottom-widget2{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%;display:-webkit-box;display:-ms-flexbox;display:flex;gap:30px 6%;-ms-flex-wrap:wrap;flex-wrap:wrap}#aside-bottom .container #aside-bottom-widget2 .widget{-webkit-box-flex:1;-ms-flex:1 1 47%;flex:1 1 47%}#aside-bottom .container #aside-bottom-widget2 .widget-content{margin-bottom:0}@media screen and (min-width:600px){#aside-bottom .container #aside-bottom-widget1{-webkit-box-flex:1;-ms-flex:1 1 48.5%;flex:1 1 48.5%}#aside-bottom .container #aside-bottom-widget2{-webkit-box-flex:1;-ms-flex:1 1 48.5%;flex:1 1 48.5%}}#aside-bottom .PopularPosts .popular-post-thumbnail{position:relative}footer#footer{background:var(--primary-background);padding:0 var(--template-padding)}footer#footer .container{max-width:var(--template-width);margin:0 auto;padding:30px 0}footer#footer #footer-text{font-size:var(--fs-14);text-align:center}footer#footer #footer-text a{border-bottom:1px dotted var(--link-color)}#html-widget-bottom-outer,#html-widget-top-outer{padding:0 var(--template-padding)}#html-widget-bottom-outer .section,#html-widget-top-outer .section{max-width:var(--template-width);margin:0 auto}#html-widget-bottom-outer .widget-content,#html-widget-top-outer .widget-content{text-align:center}#html-widget-bottom-outer .widget-content>*,#html-widget-top-outer .widget-content>*{margin:0 auto}#html-widget-top-outer .widget-content{margin-top:40px}#html-widget-bottom-outer .widget-content{margin-bottom:40px}#ads-code-widget{max-width:var(--content-width);padding:0;margin:0 auto}#ads-code-widget #iklan-sticky{max-width:320px}.post-container .kode-iklan-infeed .adsbygoogle{text-align:center}.post-body .widget-content{margin:2.5rem 0;display:block;clear:both}.post-body .widget-content>*{margin:0 auto}.post-body #sticky-ad .widget-content{margin:0}.post-body #sticky-ad .widget-content>*{margin:0}.post-body .widget-content.kode-iklan-atas{margin-top:0}.post-body .widget-content.kode-iklan-bawah{margin-bottom:0}.post-body .widget-content:blank{margin:0 0}#ms-iklan-multiplex .kode-iklan-multiplex{overflow:hidden;margin:0 0 30px}#wrapper>.google-auto-placed,.FeaturedPost .google-auto-placed,.PopularPosts .google-auto-placed,body>.google-auto-placed,footer>.google-auto-placed,header>.google-auto-placed{display:none}.post-body #baca-juga .google-auto-placed,.post-body blockquote .google-auto-placed,.post-body ol .google-auto-placed,.post-body pre .google-auto-placed,.post-body table .google-auto-placed,.post-body ul .google-auto-placed{display:none}.ad-example-300x250,.ad-example-300x50,.ad-example-970x90,.ad-example-infeed,.ad-example-multiplex{font-size:var(--fs-12);color:var(--normal-grey);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;border-radius:6px;border:1px solid var(--light-grey)}.ad-example-300x50{max-width:300px;height:50px}.ad-example-970x90{max-width:970px;height:90px}.ad-example-300x250{max-width:300px;height:250px}.ad-example-infeed{max-width:100%;height:300px}.ad-example-multiplex{max-width:100%;height:200px}@media screen and (max-width:1200px){#nav{display:none}}#nav .nav-content ul{list-style:none;margin:0;padding:0}#nav .nav-content>ul{font-size:var(--fs-16);font-weight:700;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}#nav .nav-content>ul>li{position:relative;margin:0 15px;padding:0;white-space:nowrap}#nav .nav-content>ul>li>a{color:var(--dark-grey);height:var(--header-height);line-height:var(--header-height);display:block;position:relative}#nav .nav-content>ul>li>a:hover{color:var(--color-scheme-txt)}#nav .nav-content>ul>li>a::before{position:absolute;content:"";height:3px;background-color:var(--color-scheme-txt);right:0;bottom:0;width:100%;border-radius:3px;-webkit-transition:-webkit-transform .2s;transition:-webkit-transform .2s;transition:transform .2s;transition:transform .2s,-webkit-transform .2s;-webkit-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:top center;transform-origin:top center}#nav .nav-content>ul>li:hover>a::before{-webkit-transform:scaleX(1);transform:scaleX(1)}#nav .nav-content>ul>li.has-sub>a::after{font-family:iconfont;content:"\e91b";font-weight:400;font-size:var(--fs-12);margin-left:7px;display:inline-block}#nav .nav-content>ul>li a:hover{cursor:pointer}#nav .nav-content ul li ul{font-size:var(--fs-14);-webkit-box-shadow:var(--header-box-shadow);box-shadow:var(--header-box-shadow);background:var(--primary-background);padding:0 16px;min-width:0;position:absolute;z-index:6;visibility:hidden;opacity:0;top:100%;left:0;-webkit-transform:translateY(-10px);transform:translateY(-10px);-webkit-transition:visibility .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:visibility .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:visibility .15s ease-in-out,transform .15s ease-in-out;transition:visibility .15s ease-in-out,transform .15s ease-in-out,-webkit-transform .15s ease-in-out}#nav .nav-content li li{display:block;padding:0;position:relative;text-transform:none;-webkit-transition-duration:.15s;transition-duration:.15s;float:none;white-space:nowrap;text-overflow:ellipsis;min-width:100px;border-bottom:1px solid var(--light-grey)}#nav .nav-content li li:last-child{border-bottom:none}#nav .nav-content li li a{color:var(--dark-grey);position:relative;line-height:40px;display:inline-block}#nav .nav-content li li a:hover{color:var(--color-scheme-txt)}#nav .nav-content li li.has-sub::after{font-family:iconfont;content:"\e91b";-webkit-transform:rotate(-90deg);transform:rotate(-90deg);font-weight:400;font-size:var(--fs-12);margin-left:7px;display:inline-block}#nav .nav-content ul li ul:focus,#nav .nav-content ul li ul:hover,#nav .nav-content ul li:hover>ul{visibility:visible;opacity:1;-webkit-transform:translateY(0);transform:translateY(0);-webkit-transition:opacity .15s ease-in-out,visibility .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:opacity .15s ease-in-out,visibility .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:opacity .15s ease-in-out,visibility .15s ease-in-out,transform .15s ease-in-out;transition:opacity .15s ease-in-out,visibility .15s ease-in-out,transform .15s ease-in-out,-webkit-transform .15s ease-in-out}#nav .nav-content ul li:focus-within>ul{visibility:visible;opacity:1;-webkit-transform:translateY(0);transform:translateY(0);-webkit-transition:opacity .15s ease-in-out,visibility .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:opacity .15s ease-in-out,visibility .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:opacity .15s ease-in-out,visibility .15s ease-in-out,transform .15s ease-in-out;transition:opacity .15s ease-in-out,visibility .15s ease-in-out,transform .15s ease-in-out,-webkit-transform .15s ease-in-out}#nav .nav-content ul ul li a:hover{cursor:pointer}#nav .nav-content ul li ul li{clear:both}#nav .nav-content ul ul ul{top:0;left:0;margin-left:100%;-webkit-transform:translateX(-10px);transform:translateX(-10px)}.navmenu-button{display:none;background:var(--color-scheme-bg);background:var(--gradient-btn-color);margin-right:10px;padding:0;width:40px;height:40px;font-size:2.4rem;color:var(--white-text-color);border-radius:50%;border:none;-ms-flex-negative:0;flex-shrink:0}@media screen and (max-width:1200px){.navmenu-button{display:block}}.navmenu-overlay{display:none;position:fixed;z-index:8;top:var(--header-height);left:0;width:100%;height:100%;height:100vh;background-color:rgba(0,0,0,.85);-webkit-transition:top .15s ease-in-out;transition:top .15s ease-in-out}.navmenu-mobile{display:none;background:var(--primary-background);font-size:var(--fs-18);-webkit-transform:translateX(-101%);transform:translateX(-101%);position:fixed;z-index:9;min-width:60%;max-width:80%;top:var(--header-height);left:0;height:100%;height:100vh;-webkit-transition:top .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:top .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:transform .15s ease-in-out,top .15s ease-in-out;transition:transform .15s ease-in-out,top .15s ease-in-out,-webkit-transform .15s ease-in-out}@media screen and (max-width:1200px){.navmenu-mobile{display:block}.navmenu-mobile.menu-open{-webkit-transition:top .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:top .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:transform .15s ease-in-out,top .15s ease-in-out;transition:transform .15s ease-in-out,top .15s ease-in-out,-webkit-transform .15s ease-in-out;-webkit-transform:translateX(0);transform:translateX(0)}.navmenu-mobile.menu-open+.navmenu-overlay{display:block}}.navmenu-mobile .navmenu-list{background-color:var(--lightest-grey);overflow-y:auto;height:100%;height:calc(100% - var(--header-height));padding:var(--template-padding)}.navmenu-mobile .navmenu-list ul{list-style:none;margin:0;padding:0}.navmenu-mobile .navmenu-list li a{color:var(--dark-grey);font-weight:600;padding:10px 0;display:block;word-break:break-all;border-bottom:1px solid var(--light-grey)}.navmenu-mobile .navmenu-list ul ul{padding:0;padding-left:10px}.navmenu-mobile .navmenu-list>ul>li>ul{height:0;overflow:hidden;-webkit-transition:height .15s ease-in-out;transition:height .15s ease-in-out;font-size:var(--fs-16)}.navmenu-mobile .navmenu-list>ul>li.has-sub{position:relative}.navmenu-mobile .navmenu-list>ul>li.has-sub>span.ms-submenu-button{position:absolute;top:4px;right:0}.navmenu-mobile .navmenu-list>ul>li.has-sub>span.ms-submenu-button::after{font-family:iconfont;content:"\e91b";font-weight:400;display:block;background:var(--light-grey);padding:6px 8px;border-radius:4px}.navmenu-mobile .search-box-mobile div{margin-bottom:10px}.navmenu-mobile .search-box-mobile div form{position:relative;font-size:var(--fs-12)}.navmenu-mobile .search-box-mobile div form span.icon-search{cursor:default;color:var(--normal-grey);position:absolute;font-size:var(--fs-16);top:calc(50% - 8px);left:12px}.navmenu-mobile .search-box-mobile div form input{font-size:var(--fs-14);background:var(--primary-background);border:1px solid var(--light-grey);width:100%;outline:0;padding:12px 15px 12px 37px;border-radius:8px}.mobilemenu-open header#header .container.hide{top:0}.mobilemenu-open .navmenu-button::before{content:"\e91d"}#menu-label-outer{background:var(--color-scheme-bg);background:var(--gradient-bg-color);padding:0 var(--template-padding)}#menu-label-outer #menu-label{position:relative;max-width:var(--template-width);margin:0 auto}#menu-label-outer #menu-label ul.menu-label-ul{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:var(--fs-12);text-transform:uppercase;font-weight:700;margin:0;padding:0;height:52px;color:var(--white-text-color);list-style:none;overflow:hidden}#menu-label-outer #menu-label ul.menu-label-ul li{display:inline-block;margin:0;line-height:52px;padding-right:2.5rem}#menu-label-outer #menu-label ul.menu-label-ul li .label-name span:first-child{margin-right:3px}#menu-label-outer #menu-label ul.menu-label-ul li a{color:var(--white-text-color);display:inline-block;padding:0}#menu-label-outer #menu-label ul.menu-label-ul .more-button{margin:0;margin-left:auto;display:inline-block;line-height:52px;padding:0;color:#fff;cursor:pointer}#menu-label-outer #menu-label ul.menu-label-ul .more-button .icon-menu2{font-size:2.2rem;vertical-align:middle}#menu-label-outer #menu-label .menu-label-ul-more{font-size:var(--fs-12);text-transform:uppercase;font-weight:700;list-style:none;background:var(--color-scheme-bg);background:var(--gradient-bg-color);color:var(--white-text-color);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;position:absolute;top:100%;right:0;-webkit-transform:translateY(-10px);transform:translateY(-10px);visibility:hidden;opacity:0;padding:10px 0;margin:0;z-index:5;-webkit-transition:opacity .15s ease-in-out,visibility .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:opacity .15s ease-in-out,visibility .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:opacity .15s ease-in-out,visibility .15s ease-in-out,transform .15s ease-in-out;transition:opacity .15s ease-in-out,visibility .15s ease-in-out,transform .15s ease-in-out,-webkit-transform .15s ease-in-out}#menu-label-outer #menu-label .menu-label-ul-more.show{visibility:visible;opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}#menu-label-outer #menu-label .menu-label-ul-more li{padding:0;margin:0}#menu-label-outer #menu-label .menu-label-ul-more li a{display:inline-block;padding:10px 20px;color:var(--white-text-color)}#menu-label-outer #menu-label .menu-label-ul-more li .label-name span{line-height:1;vertical-align:middle}#menu-label-outer #menu-label .menu-label-ul-more li .label-name span:first-child{margin-right:3px}.blog-pager{text-align:center;font-size:var(--fs-14);line-height:1.4;font-weight:600;text-transform:uppercase;margin-top:4rem}.blog-pager::after{content:"";display:block;clear:both}.blog-pager a.blog-pager-newer-link,.blog-pager a.blog-pager-older-link{display:inline-block;background:var(--color-scheme-bg);background:var(--gradient-bg-color);padding:10px 15px;color:var(--white-text-color);border-radius:5px;line-height:1}.blog-pager a.blog-pager-newer-link span,.blog-pager a.blog-pager-older-link span{vertical-align:middle}.blog-pager a.blog-pager-older-link{float:right}.blog-pager a.blog-pager-older-link .icon-arrow-down::before{display:inline-block;-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}.blog-pager a.blog-pager-newer-link{float:left}.blog-pager a.blog-pager-newer-link .icon-arrow-down::before{display:inline-block;-webkit-transform:rotate(90deg);transform:rotate(90deg)}.blog-pager .js-load,.blog-pager .js-loaded{padding:12px 60px;display:inline-block;line-height:1}.blog-pager .js-loading{padding:2px 60px 1px;display:inline-block;line-height:1}.blog-pager .js-load{background:var(--color-scheme-bg);background:var(--gradient-btn-color);color:var(--white-text-color);border-radius:5px}.blog-pager .js-load:hover{opacity:.9}#filter-page-message{background:var(--secondary-background);padding:0 var(--template-padding)}#filter-page-message .container{max-width:var(--template-width);margin:0 auto;padding:30px 0}#filter-page-message .container h2{color:var(--dark-grey);font-size:4rem;margin:0;background:var(--gradient-text-color);background-clip:text;-webkit-background-clip:text;-webkit-text-fill-color:transparent;display:inline-block}.error-page{text-align:center;padding:120px 0}.error-page .error-code{font-size:10rem;color:var(--color-scheme-bg);font-weight:700;text-shadow:-1px 1px var(--white-text-color),-3px 3px rgba(49,49,49,.31)}.status-message-danger{text-align:center}.back-home-link{display:inline-block;padding:8px 16px;color:var(--white-text-color);background:var(--color-scheme-bg);background:var(--gradient-btn-color);border-radius:6px}.back-home-link:hover{opacity:.9}.sosmed-icons{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:15px 15px}.sosmed-icons a{display:inline-block;color:var(--secondary-text-color);line-height:1;border-radius:4px}.sosmed-icons a:hover{color:var(--color-scheme-txt)}.sosmed-icons .social-icon{font-size:2.4rem;display:inline-block}.sosmed-icons .social-icon i{font-style:normal;display:inline-block}.sosmed-icons .social-icon i:hover{opacity:1}.sosmed-icons .social-icon i::before{font-family:iconfont;font-weight:400;display:inline-block}.PopularPosts{-webkit-box-flex:0;-ms-flex:0 1 48.5%;flex:0 1 48.5%}@media screen and (max-width:700px){.PopularPosts{-webkit-box-flex:0;-ms-flex:0 1 100%;flex:0 1 100%}}.PopularPosts h2.title{margin:0 0 3rem}.PopularPosts .popular-post{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;gap:0 3%;margin-bottom:2rem}.PopularPosts .popular-post:last-child{margin-bottom:0}.PopularPosts .popular-post .popular-post-thumbnail{-webkit-box-flex:0;-ms-flex:0 0 105px;flex:0 0 105px;width:105px;position:relative;border-radius:var(--thumb-rounded-corner);overflow:hidden;aspect-ratio:1/1;display:-webkit-box;display:-ms-flexbox;display:flex}.PopularPosts .popular-post .popular-post-thumbnail a{display:block;width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}.PopularPosts .popular-post .popular-post-thumbnail img{border-radius:var(--thumb-rounded-corner);display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.PopularPosts .popular-post .popular-post-meta{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;padding:0}.PopularPosts .popular-post .popular-post-meta .post-meta-top{margin-top:-2px}.PopularPosts .popular-post .popular-post-meta .post-title{color:var(--darkest-grey);font-size:1.4rem;line-height:1.28;margin:.7rem 0}.PopularPosts .popular-post .popular-post-meta .post-title a{color:var(--darkest-grey)}.PopularPosts .popular-post .popular-post-meta .post-title a:hover{color:var(--color-scheme-txt)}@media screen and (min-width:381px){.PopularPosts .popular-post .popular-post-meta .post-title{font-size:calc(1.5rem + 5 * (100vw - 381px)/ 320);margin:calc(.7rem + 5 * (100vw - 381px)/ 320) 0}}@media screen and (min-width:701px){.PopularPosts .popular-post .popular-post-meta .post-title{font-size:calc(1.5rem + 3 * (100vw - 701px)/ 500);margin:calc(.7rem + 3 * (100vw - 701px)/ 500) 0}}@media screen and (min-width:1201px){.PopularPosts .popular-post .popular-post-meta .post-title{font-size:1.8rem;margin:1rem 0}}.widget .widget-not-supported{border:1px solid red;padding:5px 10px;border-radius:8px;color:red;font-weight:700;font-size:var(--fs-14);margin-bottom:30px}.widget.BlogArchive #ArchiveList ul ul li{padding-left:0;border-left:none}.widget.BlogArchive #ArchiveList ul.posts li{padding-left:0;margin:0 0 10px}.widget.BlogArchive .hierarchy-title{margin-bottom:10px}.widget.BlogArchive .archive-dropdown select{background:var(--primary-background);border:1px solid var(--light-grey);padding:5px 7px;border-radius:4px;cursor:pointer}.widget.ContactForm form{margin:0}.widget.ContactForm .input-label{display:block}.widget.ContactForm span.required{color:red}.contact-form-error-message,.contact-form-success-message{background:#f9edbe;border:0 solid #f0c36d;text-align:center;max-width:500px;border-radius:3px}.contact-form-error-message-with-border,.contact-form-success-message-with-border{background:#f9edbe;border:1px solid #f0c36d;text-align:center;max-width:600px;border-radius:3px;-webkit-box-sizing:border-box;box-sizing:border-box;padding:10px 10px}.contact-form-cross{height:11px;margin:0 5px;vertical-align:-8.5%;width:11px}.contact-form-email,.contact-form-name{color:inherit;height:40px;margin:0 0 15px;max-width:300px;width:100%;padding:0 15px;border-radius:3px;border:1px solid rgba(193,193,193,.4);-webkit-box-sizing:border-box;box-sizing:border-box}.contact-form-email-message{color:inherit;margin:0;vertical-align:top;max-width:600px;width:100%;border-radius:3px;border:1px solid rgba(193,193,193,.4);padding:15px;-webkit-box-sizing:border-box;box-sizing:border-box}.contact-form-email-message:hover,.contact-form-email:hover,.contact-form-name:hover{outline:0}.contact-form-email-message:focus,.contact-form-email:focus,.contact-form-name:focus{outline:0}.contact-form-email,.contact-form-email-message,.contact-form-name{background:rgba(193,193,193,.2)}.contact-form-button{-webkit-transition:all .2s;transition:all .2s;display:block;line-height:24px;padding:12px 20px;margin:30px 0;text-align:center;border:none;background:var(--color-scheme-bg);color:var(--white-text-color);border-radius:3px;font-weight:700}.contact-form-button:hover{opacity:.9;cursor:pointer;outline:0}.contact-form-button.focus,.contact-form-button.left.focus,.contact-form-button.mid.focus,.contact-form-button.right.focus{outline:0}.contact-form-button-submit.focus,.contact-form-button-submit:focus{outline:0;opacity:.8}.swajib{font-weight:700;color:#e85e5e}.ctitles{display:block}.contact-form-widget .form .input-label{opacity:.9}.contact-form-widget .form span.required{font-weight:700;color:red}.contact-form-widget .form input[type=text],.contact-form-widget .form select,.contact-form-widget .form textarea{width:100%;padding:12px 14px;margin:5px 0 20px;display:inline-block;border:1px solid var(--medium-grey);border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box}.contact-form-widget .form input[type=button]{width:100%;padding:14px 20px;margin:8px 0;border:none;border-radius:4px;cursor:pointer;-webkit-transition:all .2s;transition:all .2s}.contact-form-widget .form .contact-form-message-wrap p.contact-form-error-message,.contact-form-widget .form .contact-form-message-wrap p.contact-form-error-message-with-border{color:#b34e27}.contact-form-widget .form .contact-form-message-wrap p.contact-form-success-message,.contact-form-widget .form .contact-form-message-wrap p.contact-form-success-message-with-border{color:#338a1d}.widget.Feed ul li{display:block;margin:0 0 10px}.widget.Feed ul li:last-child{margin-bottom:10px}.widget.Feed .item-title{font-weight:700}.widget.Image .widget-content{position:relative}.widget.Image .widget-content img{display:block;max-width:100%;height:auto}.widget.Image .widget-content .caption{text-align:center}.widget.Label .cloud-view{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:4px}.widget.Label .cloud-view .label-size{display:inline-block}.widget.Label .cloud-view .label-size a.label-name{font-size:var(--fs-14);border:1px solid var(--color-scheme-txt);display:inline-block;padding:4px 8px;border-radius:3px;-webkit-transition:all .2s;transition:all .2s}.widget.Label .cloud-view .label-size a.label-name span.label-count{color:inherit}.widget.Label .list-view ul li{color:inherit}.widget.Label .list-view #more-label-checkbox~ul{display:none}.widget.Label .list-view #more-label-checkbox:checked~ul{display:block;margin-top:6px}.widget.Label .list-view #more-label-checkbox{display:none}.widget.Label .list-view #more-label-checkbox~.more-label-btn .show-all{display:block}.widget.Label .list-view #more-label-checkbox~.more-label-btn .show-less{display:none}.widget.Label .list-view #more-label-checkbox:checked~.more-label-btn .show-all{display:none}.widget.Label .list-view #more-label-checkbox:checked~.more-label-btn .show-less{display:block}.widget.Label .list-view .more-label-btn{color:var(--link-color);cursor:pointer;margin:5px 0;display:inline-block}.widget.Profile{padding:0}.widget.Profile .individual{position:relative}.widget.Profile .individual .profile-info-top{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.widget.Profile .individual .profile-info-top .profile-avatar{position:relative;padding:0;-webkit-box-flex:0;-ms-flex:0 0 70px;flex:0 0 70px;width:70px;border-radius:50%;overflow:hidden;margin-right:15px}.widget.Profile .individual .profile-info-top .profile-avatar img{width:100%;display:block}.widget.Profile .individual .profile-info-top .profile-meta{padding:0}.widget.Profile .individual .profile-info-top .profile-meta .profile-meta-top{font-weight:700;margin-bottom:3px}.widget.Profile .individual .profile-info-top .profile-meta .profile-meta-bottom{font-size:var(--fs-14);color:var(--secondary-text-color)}.widget.Profile .individual .profile-info-bottom .profile-bio{font-size:var(--fs-16);margin-top:15px}.widget.Profile .individual .profile-info-bottom .profile-link{display:inline-block;margin-top:15px}.widget.Profile .team{padding:0}.widget.Profile .team .team-member{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:2.5rem}.widget.Profile .team .team-member:last-child{margin-bottom:0}.widget.Profile .team .team-member img{-webkit-box-flex:0;-ms-flex:0 0 60px;flex:0 0 60px;width:60px;margin-right:15px;display:block;border-radius:50%}.widget.Profile .team .team-member .profile-name-and-link .profile-name{font-weight:700}.widget.BlogSearch input{padding:8px 12px;margin:3px 0;border-radius:4px;background:var(--primary-background);border:1px solid var(--light-grey)}.widget.BlogSearch input[type=submit]{background:var(--color-scheme-bg);color:var(--white-text-color);border:none;cursor:pointer}.Attribution svg{display:none}.Attribution .widget-content{text-align:center}.widget.Subscribe .widget-content .feed-reader-links{font-size:var(--fs-14);margin-bottom:10px}.widget.Subscribe .widget-content .feed-reader-links .feed-icon{vertical-align:middle;margin-right:3px}.widget.Subscribe .widget-content .feed-reader-links span{vertical-align:middle;font-weight:700}.widget.Stats .widget-content{display:none}.uhuy{margin:0!important;padding:0!important;height:0!important;font-size:0!important;line-height:0!important;}
--></style>
<style>
</style>
<script type='application/ld+json'>
{
"@context": "https://schema.org",
"@type": "WebSite",
"url": "http://www.awdev.eu.org/",
"name": "AWDEV - All Media Popular 2024 | Engginer",
"alternateName": "AWDEV - All Media Popular 2024 | Engginer",
"potentialAction": {
"@type": "SearchAction",
"target": "http://www.awdev.eu.org/search?q={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
<meta name='google-adsense-platform-account' content='ca-host-pub-1556223355139109'/>
<meta name='google-adsense-platform-domain' content='blogspot.com'/>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3961173026050537&host=ca-host-pub-1556223355139109" crossorigin="anonymous"></script>
<!-- data-ad-client=ca-pub-3961173026050537 -->
</head>
<body class='is-homepage'>
<div id='wrapper'>
<div class='template-settings section' id='template-settings'><div class='widget HTML' data-version='2' id='HTML70'>
</div></div>
<div class='custom-css section' id='custom-css'><div class='widget HTML' data-version='2' id='HTML82'>
</div></div>
<script>
//<![CDATA[
/* template option */
let globalSettings={darkMode:!0,logoDarkModeUrl:!1,navShowOnScrollUp:!0,toc:!0,tocHeading:"h2",loadMoreButton:!0,autoLoadMore:!1,estimatedReadingTime:!0,relatedPosts:!0,relatedPostsThumb:!0,relatedPostsTotal:4,bacaJuga:!0,lokasiBacaJuga:60,shareButtons:["facebook","twitter","whatsapp","telegram","pinterest","email"],backToTopButton:!0,lokasiIklanInFeed:3,lokasiIklanTengah1:30,lokasiIklanTengah2:80};if("undefined"!=typeof themeSettings)for(var key in themeSettings)"undefined"!=themeSettings[key]&&(globalSettings[key]=themeSettings[key]);
!function(){var e,t,o;globalSettings.darkMode&&(e=window.matchMedia("(prefers-color-scheme: dark)").matches,t="dark"===localStorage.getItem("mode"),o="light"===localStorage.getItem("mode"),!e||t||o?t&&(localStorage.setItem("mode","dark"),document.documentElement.setAttribute("data-theme","dark")):document.documentElement.setAttribute("data-theme","dark"),document.addEventListener("DOMContentLoaded",function(){{let e=document.getElementById("darkmode-button"),t=(e.classList.add("visible"),document.querySelector("#darkmode-option-container")),o=document.querySelector(".darkmode-btn"),n=document.querySelector("#search-box-container"),d=document.querySelector(".navmenu-mobile");o.addEventListener("click",function(e){n.classList.contains("opensearch")&&(n.classList.remove("opensearch"),n.previousElementSibling.classList.remove("opensearch")),d.classList.contains("menu-open")&&(d.classList.remove("menu-open"),document.body.classList.remove("mobilemenu-open")),t.classList.toggle("opendarkmode-option"),t.classList.contains("opendarkmode-option")||e.preventDefault(),e.stopPropagation()},!1),t.addEventListener("click",function(e){e.stopPropagation()},!1),document.addEventListener("click",function(e){t.classList.remove("opendarkmode-option"),e.stopPropagation()},!1),document.addEventListener("keydown",function(e){"Escape"==e.key&&t.classList.remove("opendarkmode-option")})}let e=document.querySelector("#darkmode-option-container #do-system"),t=document.querySelector("#darkmode-option-container #do-dark"),o=document.querySelector("#darkmode-option-container #do-light");var n=localStorage.getItem("mode");"dark"===n?t.checked=!0:"light"===n?o.checked=!0:e.checked=!0,e.addEventListener("change",function(){localStorage.removeItem("mode"),window.matchMedia("(prefers-color-scheme: dark)").matches?document.documentElement.setAttribute("data-theme","dark"):document.documentElement.removeAttribute("data-theme")}),t.addEventListener("change",function(){localStorage.setItem("mode","dark"),document.documentElement.setAttribute("data-theme","dark")}),o.addEventListener("change",function(){localStorage.setItem("mode","light"),document.documentElement.removeAttribute("data-theme")})}))}();
//]]>
</script>
<header id='header'>
<div class='container'>
<div id='header-content'>
<button aria-label='menu' class='navmenu-button icon-menu'></button>
<div class='blog-title section' id='blog-title'><div class='widget Header' data-version='2' id='Header1'>
<a href='https://www.awdev.eu.org/' title='AWDEV - All Media Popular 2024 | Engginer'>
<img alt='AWDEV - All Media Popular 2024 | Engginer' height='200' src='https://blogger.googleusercontent.com/img/a/AVvXsEgBTatN-aMU3TFtGgHddabKqhWdVuKU9_qYk1IcMNCbT-yrEtAXelfpCu0eOHsRflZQWbWsQ2_QLm2GGK5FQNbcMgRi3cBCRZqRTjWCV8E5x_zkTPHuK5ReWAOFP1-u_n23S2ijwA1PBoG3eDaRkkZ0gY7CjkWf-dfsMIZ5gtjXBJV0in5c0kRx1LVq4qvc=w200' title='AWDEV - All Media Popular 2024 | Engginer' width='200'/>
</a>
<script>
const blogLogoAlt = "AWDEV - All Media Popular 2024 | Engginer";
const blogLogoWidth = "200";
const blogLogoHeight = "200";
//<![CDATA[
!function(){var t=globalSettings.logoDarkModeUrl;const o=document.querySelector("#blog-title img");if(t){if(o){let e=document.createElement("img");o.classList.add("logo-lightmode"),e.setAttribute("width",blogLogoWidth),e.setAttribute("height",blogLogoHeight),e.src=t,e.alt=blogLogoAlt,e.className="logo-darkmode",o.parentElement.insertBefore(e,o)}}else o&&(o.className="logo-no-darkmode")}();
//]]>
</script>
<div class='title-wrap hide-title'>
<h1 class='title'>
<a data-text='AWDEV - All Media Popular 2024 | Engginer' href='https://www.awdev.eu.org/' title='AWDEV - All Media Popular 2024 | Engginer'>AWDEV - All Media Popular 2024 | Engginer</a>
</h1>
</div>
</div></div>
<div class='nav section' id='nav'><div class='widget HTML' data-version='2' id='HTML72'>
<div class='nav-container'>
<nav class='nav-content'>
<ul class='nav-list'>
<ul>
<li><a href='http://www.awdev.eu.org/2024/08/tips-for-caring-for-laptop.html' title='Tips'>Tips</a></li>
<li><a href='https://www.awdev.eu.org/2024/08/network-typology.html?m=1' title='Network'>Network </a></li>
<li class='dropdown'>
<a href='#' onclick='return false;' title='Other Theme'>Other </a>
<ul>
<li><a href='https://www.awdev.eu.org/2024/08/e-commerce-business.html' title='E Commerce '>E Commerce</a></li>
<li><a href='https://www.awdev.eu.org/2024/08/investment-ideas.html' title='Investment'>Investment</a></li>
<li><a href='https://www.awdev.eu.org/2024/08/proxy-servers.html' title='Internet'>Internet</a></li>
</ul>
</li>
<li><a href='https://www.awdev.eu.org/2024/08/senior-machine-learning-engineer.html' title='careers'>Careers</a></li>
</ul>
</ul>
</nav>
</div>
</div></div>
<nav class='navmenu-mobile'>
<div class='navmenu-list'>
<div class='search-box-mobile'>
<div>
<form action='https://www.awdev.eu.org/search' id='search-mobile'>
<span class='icon-search'></span>
<input aria-label='type and press ENTER' autocomplete='off' id='search-input-mobile' name='q' placeholder='type and press ENTER' type='text' value=''/>
</form>
</div>
</div>
</div>
</nav>
<div class='navmenu-overlay'></div>
<div id='darkmode-button'>
<button aria-label='Dark Mode Button' class='darkmode-btn'><span class='icon-darkmode'></span></button>
<div id='darkmode-option-container'>
<div>
<label>
<input checked='checked' id='do-system' name='darkmode-option' type='radio'/>
<span><span class='icon-settings'></span> Device</span>
</label>
<label>
<input id='do-dark' name='darkmode-option' type='radio'/>
<span><span class='icon-moon'></span> Dark</span>
</label>
<label>
<input id='do-light' name='darkmode-option' type='radio'/>
<span><span class='icon-sun'></span> Light</span>
</label>
</div>
</div>
</div>
<div id='search-button'>
<label class='search-btn' for='search-input'><span class='icon-search'></span></label>
<div id='search-box-container'>
<div>
<form action='https://www.awdev.eu.org/search' id='search'>
<span class='icon-search'></span>
<input aria-label='type and press ENTER' autocomplete='off' id='search-input' name='q' placeholder='type and press ENTER' type='text' value=''/>
</form>
</div>
</div>
</div>
</div>
</div>
</header>
<div id='menu-label-outer'>
<div class='menu-label no-items section' id='menu-label'>
</div>
</div>
<div class='landing-page-widget section' id='landing-page-widget'><div class='widget HTML' data-version='2' id='HTML833'>
<style>
:root{--min-360-max-600:((100vw - 360px) / (600 - 360));--min-600-max-900:((100vw - 600px) / (900 - 600));--landing-page-width:1000px;--landing-page-box-border-radius:12px;--landing-page-padding:15px;--main-headline-fs:2.6rem;--value-heading-fs:2.2rem;--social-proof-bg:#e2fff0}@media screen and (min-width:360px){:root{--landing-page-padding:24px;--main-headline-fs:calc(2.6rem + 10 * var(--min-360-max-600));--value-heading-fs:calc(2.2rem + 4 * var(--min-360-max-600))}}@media screen and (min-width:600px){:root{--landing-page-padding:28px;--main-headline-fs:calc(2.8rem + 8 * var(--min-600-max-900));--value-heading-fs:calc(2.2rem + 6 * var(--min-600-max-900))}}@media screen and (min-width:900px){:root{--landing-page-padding:34px;--main-headline-fs:3.6rem;--value-heading-fs:2.8rem}}[data-theme=dark]{--social-proof-bg:#193127}body.is-landing-page main#main{padding:0}body.is-landing-page .content-single .post-container,body.is-landing-page main#main .container{max-width:100%;padding:0}body.is-landing-page .post-body{margin:0}body.is-landing-page #share-container,body.is-landing-page .post-container .post-title,body.is-landing-page .top-post-section{display:none}body.is-landing-page #comments{max-width:600px;margin:0 auto}body.is-landing-page.is-homepage main#main{padding:0 var(--template-padding)}body.is-landing-page.is-homepage .content-single .post-container,body.is-landing-page.is-homepage main#main .container{max-width:var(--template-width);padding:0}body.is-landing-page.is-homepage .post-container .post-title{display:block}body.is-landing-page.is-homepage .empty-post{display:none}.landing-page-section .section-container{max-width:var(--landing-page-width);padding:calc(var(--landing-page-padding) * 2) var(--landing-page-padding);margin:0 auto}.landing-page-section .section-container .section-title{text-align:center;margin-bottom:3rem}.landing-page-section .section-container .section-title h2{display:inline-block;position:relative;font-size:var(--fs-16);line-height:1.2;color:var(--dark-grey);font-weight:700;margin:0;padding:0 15px;text-transform:uppercase}.landing-page-section .section-container .section-title h2::after{position:absolute;top:0;right:0;bottom:0;left:0;content:"";-webkit-transform:skewX(-18deg);transform:skewX(-18deg);border-left:2px solid var(--color-scheme-bg);border-right:2px solid var(--color-scheme-bg)}.landing-page-section .section-container .section-note{margin:0 auto;margin-top:3.5rem;text-align:center;font-size:var(--fs-14);color:var(--secondary-text-color);max-width:600px}.landing-page-section .section-container .section-note::before{font-family:iconfont;content:"\e902";font-size:var(--fs-16);color:var(--color-scheme-txt);margin-right:5px}.landing-page-section .section-container .section-note a{border-bottom:1px dotted var(--color-scheme-txt)}.landing-page-section .section-container .cta-btns{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:10px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.landing-page-section .section-container .cta-btn-primary,.landing-page-section .section-container .cta-btn-secondary{font-weight:600;line-height:1;padding:14px 20px;border-radius:6px;border:none;cursor:pointer}.landing-page-section .section-container .cta-btn-primary span,.landing-page-section .section-container .cta-btn-secondary span{vertical-align:middle}.landing-page-section .section-container .cta-btn-primary{background-color:var(--color-scheme-bg);background:var(--gradient-btn-color);color:var(--white-text-color)}.landing-page-section .section-container .cta-btn-primary:hover{opacity:.9}.landing-page-section .section-container .cta-btn-secondary{background-color:transparent;border:2px solid var(--color-scheme-txt);color:var(--color-scheme-txt)}.landing-page-section .section-container .cta-btn-secondary:hover{opacity:.9}.headline-section{background:var(--primary-background)}.headline-section .section-container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;gap:30px 3%;-ms-flex-wrap:wrap;flex-wrap:wrap;text-align:center}@media screen and (min-width:600px){.headline-section .section-container{text-align:left}}.headline-section .column{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%}@media screen and (min-width:600px){.headline-section .column{-webkit-box-flex:1;-ms-flex:1 1 48.5%;flex:1 1 48.5%;max-width:48.5%}}.headline-section .column .headline-title{font-size:var(--main-headline-fs);line-height:1.28;margin:0;margin-bottom:2.5rem}.headline-section .column .headline-desc{margin-bottom:2.5rem}.headline-section .column .headline-img{width:100%;display:block;margin:0 auto}@media screen and (min-width:600px){.headline-section .column .cta-btns{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}}.stats-section{background:var(--color-scheme-bg);background:var(--gradient-bg-color);color:var(--white-text-color)}.stats-section .section-container{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:calc(var(--landing-page-padding) + 10px) var(--landing-page-padding)}.stats-section .section-container::before{font-family:iconfont;content:"\e91b";background:var(--color-scheme-bg);border:2px solid var(--primary-background);width:42px;height:42px;position:absolute;border-radius:50%;line-height:38px;text-align:center;bottom:-23px;-webkit-animation-name:example;animation-name:example;-webkit-animation-duration:.8s;animation-duration:.8s;-webkit-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}@-webkit-keyframes example{0%{line-height:35px}50%{line-height:46px}100%{line-height:35px}}@keyframes example{0%{line-height:35px}50%{line-height:46px}100%{line-height:35px}}.stats-section .stat-box{text-align:center;border-right:1px solid var(--white-text-color);padding:0 5%}.stats-section .stat-box:last-child{border-right:none}.stats-section .stat-box .stat-number{font-size:3rem;font-weight:700;line-height:1;margin-bottom:6px}@media screen and (min-width:360px){.stats-section .stat-box .stat-number{font-size:calc(3rem + 20 * var(--min-360-max-600))}}@media screen and (min-width:600px){.stats-section .stat-box .stat-number{font-size:calc(3rem + 20 * var(--min-600-max-900))}}@media screen and (min-width:900px){.stats-section .stat-box .stat-number{font-size:5rem}}.stats-section .stat-box .stat-desc{font-size:var(--fs-16)}.value-section{background:var(--primary-background)}.value-section .row{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:2.5rem 4%;margin-bottom:4rem}.value-section .row:nth-of-type(odd){-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.value-section .row:last-child{margin-bottom:0}@media screen and (min-width:600px){.value-section .row{gap:0 4%}.value-section .row:nth-of-type(odd){-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}}.value-section .row:last-child(){margin-bottom:0}.value-section .row .column1{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}@media screen and (min-width:600px){.value-section .row .column1{-webkit-box-flex:1;-ms-flex:1 1 50%;flex:1 1 50%}}.value-section .row .column2{-webkit-box-flex:0;-ms-flex:0 1 100%;flex:0 1 100%;max-width:320px;margin:0 auto}@media screen and (min-width:600px){.value-section .row .column2{-webkit-box-flex:1;-ms-flex:1 1 36%;flex:1 1 36%}}.value-section .row .value-heading{font-size:var(--value-heading-fs);margin-bottom:2.5rem;padding:0}.value-section .row img{display:block;width:100%}.features-section{background:var(--secondary-background)}.features-section .features-box{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:30px 3%;background:var(--primary-background);padding:35px 20px;border-radius:var(--landing-page-box-border-radius)}.features-section .features-box .feature{-webkit-box-flex:1;-ms-flex:1 0 100%;flex:1 0 100%;max-width:100%;display:-webkit-box;display:-ms-flexbox;display:flex}@media screen and (min-width:600px){.features-section .features-box .feature{-webkit-box-flex:1;-ms-flex:1 0 47%;flex:1 0 47%;max-width:47%}}.features-section .features-box .feature .feature-img{margin-right:20px;-webkit-box-flex:0;-ms-flex:0 0 80px;flex:0 0 80px;max-width:80px}.features-section .features-box .feature .feature-img img{width:100%}.features-section .features-box .feature .feature-svg{margin-right:20px;-webkit-box-flex:0;-ms-flex:0 0 60px;flex:0 0 60px;max-width:60px}.features-section .features-box .feature .feature-svg svg{width:60px;height:60px}.features-section .features-box .feature .feature-svg path{fill:var(--color-scheme-txt)}@media screen and (min-width:480px){.features-section .features-box .feature .feature-svg{-webkit-box-flex:0;-ms-flex:0 0 80px;flex:0 0 80px;max-width:80px}.features-section .features-box .feature .feature-svg svg{width:80px;height:80px}}.features-section .features-box .feature .feature-detail .feature-title{font-size:var(--fs-18);margin:0 0 8px;padding:0}.features-section .features-box .feature .feature-detail .feature-desc{margin:0;font-size:var(--fs-14)}.social-proof-section{background:var(--primary-background)}.social-proof-section .social-proof-box{max-width:700px;text-align:center;margin:0 auto;background:var(--social-proof-bg);padding:30px 20px;border-radius:var(--landing-page-box-border-radius)}.social-proof-section .social-proof-box .sp-nav{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.social-proof-section .social-proof-box .sp-nav-indicator{font-size:var(--fs-20);font-weight:700;margin:0 20px}.social-proof-section .social-proof-box .sp-nav-btn{background:0 0;border:0;padding:0;cursor:pointer;color:var(--link-color);font-size:var(--fs-12);font-weight:700;text-transform:uppercase;color:var(--link-color)}.social-proof-section .social-proof-box .sp-nav-btn.disabled{opacity:.4;cursor:default}.social-proof-section .social-proof-box .sp-nav-btn span{vertical-align:middle}.social-proof-section .social-proof-box .sp-nav-btn .icon-arrow-down::before{font-size:3rem;display:inline-block}.social-proof-section .social-proof-box .sp-nav-btn.prev .icon-arrow-down::before{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.social-proof-section .social-proof-box .sp-nav-btn.next .icon-arrow-down::before{-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}.social-proof-section .social-proof-box .sp-content-box .sp-content{font-size:var(--fs-20);margin:30px 0}.social-proof-section .social-proof-box .sp-content-box .sp-avatar{width:50px;margin:0 auto;border-radius:50%;overflow:hidden}.social-proof-section .social-proof-box .sp-content-box .sp-avatar img{width:100%;border-radius:50%;margin:0;display:block}.social-proof-section .social-proof-box .sp-content-box .sp-name{font-weight:700}.social-proof-section .social-proof-box .sp-content-box .sp-name-title{font-size:var(--fs-16)}.pricing-section{background:var(--secondary-background)}.pricing-section .pricing-box{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:30px 3%;max-width:400px;margin:0 auto}@media screen and (min-width:600px){.pricing-section .pricing-box{max-width:100%}}.pricing-section .pricing-box .price{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%;position:relative;background-color:var(--primary-background);border-radius:var(--landing-page-box-border-radius);padding:25px}@media screen and (min-width:600px){.pricing-section .pricing-box .price{-webkit-box-flex:1;-ms-flex:1 1 31%;flex:1 1 31%;max-width:50%}}.pricing-section .pricing-box .price .highlight{background:var(--color-scheme-bg);background:var(--gradient-bg-color);border-radius:0 0 var(--landing-page-box-border-radius) var(--landing-page-box-border-radius);position:absolute;font-size:var(--fs-14);height:30px;line-height:30px;color:var(--white-text-color);top:0;left:0;right:0;padding:0 25px;border-radius:var(--landing-page-box-border-radius) var(--landing-page-box-border-radius) 0 0}.pricing-section .pricing-box .price .highlight+.price-title{margin-top:25px}.pricing-section .pricing-box .price .price-title{font-weight:700;margin-bottom:20px}.pricing-section .pricing-box .price .price-before{color:var(--normal-grey);line-height:1;font-weight:400;font-size:var(--fs-18);text-decoration:line-through}.pricing-section .pricing-box .price .price-after{color:var(--color-scheme-bg);line-height:1;font-weight:700;font-size:3.2rem;margin-bottom:20px}.pricing-section .pricing-box .price .price-features{font-size:var(--fs-16)}.pricing-section .pricing-box .price .price-features ul{list-style:none;margin:0;padding:0}.pricing-section .pricing-box .price .price-features ul li{padding:10px 0;border-bottom:2px solid var(--lightest-grey)}.pricing-section .pricing-box .price .price-features ul li:first-child{padding-top:0}.pricing-section .pricing-box .price .price-features ul li:last-child{border-bottom:0;padding-bottom:0}.pricing-section .pricing-box .price .price-features ul li [class^=icon-]{color:#04c204}.pricing-section .pricing-box .price .price-features ul li.disable{opacity:.6}.pricing-section .pricing-box .price .price-features ul li.disable [class^=icon-]{color:red}.call-to-action-section{background:var(--primary-background)}.call-to-action-section .section-container{text-align:center}.call-to-action-section+.faq-section .section-container{padding-top:0}.faq-section{background:var(--primary-background)}.faq-section .faq-desc{text-align:center;margin-bottom:30px}
</style>
<div class='widget-content'>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3961173026050537"
crossorigin="anonymous"></script>
<!-- Ads pertamaku -->
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-3961173026050537"
data-ad-slot="4708033906"
data-ad-format="auto"
data-full-width-responsive="true"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
</div></div>
<aside id='aside-top'>
<div class='container'>
<div class='aside-top-widgets section' id='aside-top-widgets'><div class='widget FeaturedPost' data-version='2' id='FeaturedPost1'>
<div class='featured-outer'>
<h2 class='title c-widget-title'>
<span>Featured Post</span>
</h2>
<div class='post-summary'>
<div class='featured-img'>
<div class='featured-img-bg'>
<a href='https://www.awdev.eu.org/2024/08/how-to-take-care-of-well-maintained.html'>
<picture class='lazyload'>
<source data-srcset='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEijEdmJDpYrmCwaN1MNeObvI5s61jSFlE4rgJbhFVOdnD9jIbj39nRgUs6C-dDCghWVJHHmk-9kcvNZYmK0SZwDmJuJmGB7Vuq9rlTyKNWZKIW_Fa_7bmiuW5BWdVT4VfbxrlGy6zpTn3l44gW-_9ZlfdH69J0-S7bb47BBr9V4lGLo2S-DGS_p51Ez8mFl/w425-h283-p-k-no-nu/Brown%20Blue%20Motorcycle%20For%20Rent_20240819_110051_0000.png' media='(max-width:420px)' srcset='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAABJJREFUCJlj/P//PwMMMDEgAQBIBgMBiYFHzwAAAABJRU5ErkJggg=='></source>
<img alt='How To Take Care Of A Well-Maintained Motorcycle' data-src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEijEdmJDpYrmCwaN1MNeObvI5s61jSFlE4rgJbhFVOdnD9jIbj39nRgUs6C-dDCghWVJHHmk-9kcvNZYmK0SZwDmJuJmGB7Vuq9rlTyKNWZKIW_Fa_7bmiuW5BWdVT4VfbxrlGy6zpTn3l44gW-_9ZlfdH69J0-S7bb47BBr9V4lGLo2S-DGS_p51Ez8mFl/w500-h333-p-k-no-nu/Brown%20Blue%20Motorcycle%20For%20Rent_20240819_110051_0000.png' fetchpriority='high' height='333' src='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAABJJREFUCJlj/P//PwMMMDEgAQBIBgMBiYFHzwAAAABJRU5ErkJggg==' width='500'/>
</picture>
</a>
</div>
</div>
<script>
//<![CDATA[
!function(){var t=document.querySelectorAll("img[data-src],source[data-srcset]");0!=t.length&&Array.from(t).forEach(function(t){let e=t.getAttribute("data-src"),r=t.getAttribute("data-srcset");e&&(e=e.replace(/-p-k-no-nu/g,"-k-no-nu-e90-lo-l75-c-rw"),t.setAttribute("data-src",e)),r&&(r=r.replace(/-p-k-no-nu/g,"-k-no-nu-e90-lo-l75-c-rw"),t.setAttribute("data-srcset",r))})}();
Defer.dom("img.lazyload",0,"loaded",null,{rootMargin:"1px"}),Defer.dom("picture.lazyload",0,"loaded",null,{rootMargin:"1px"}),Defer.dom(".lazy-youtube iframe",0,"youtube-loaded",null,{rootMargin:"1px"});
//]]>
</script>
<div class='featured-info'>
<div class='post-meta-top'>
<div class='post-meta-label'>
</div>
<div class='post-meta-comment'>
<a class='comment-link' href='https://www.awdev.eu.org/2024/08/how-to-take-care-of-well-maintained.html#comments'>
<span class='comment-total'><span class='icon-comment'></span>
<span>0</span></span>
</a>
</div>
</div>
<h2 class='post-title'>
<a href='https://www.awdev.eu.org/2024/08/how-to-take-care-of-well-maintained.html'>
How To Take Care Of A Well-Maintained Motorcycle
</a>
</h2>
<div class='post-meta-bottom'>
<span class='post-meta-separator'> • </span>
<span class='post-meta-date'><time datetime='2024-08-19T12:35:40+07:00' title='2024-08-19T12:35:40+07:00'>
19 Aug, 2024
</time></span>
</div>
</div>
</div>
</div>
</div><div class='widget PopularPosts' data-version='2' id='PopularPosts1'>
<h2 class='title c-widget-title'>
<span>Popular Posts</span>
</h2>
<div class='popular-posts-container'>
<div class='popular-post'>
<div class='popular-post-thumbnail'>
<a href='https://www.awdev.eu.org/2024/08/tips-for-caring-for-laptop.html'>
<picture class='lazyload'>
<source data-srcset='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjoWNHxtnT-zavdb2U-cuC2PdpeVqaER-TJLUiMgGvJ-PWA1M2s7IK80ek8ff-uC290zI7478FkqQWHZ4Tn_orQDjsybzYlKJ_eRzg4MJFEw29f4-AjnUqS04lx4pWmZ1NLwwlmPfqUhF1ShZWcG6oBd6NPA8D11VVZ4gwbIqx_jc0_aXiuN0zvTOo0vkPF/w120-h120-p-k-no-nu/laptop.png' media='(max-width: 420px)' srcset='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAABJJREFUCJlj/P//PwMMMDEgAQBIBgMBiYFHzwAAAABJRU5ErkJggg=='></source>
<img alt='7 Tips for caring for a Laptop so that performance remains Optimal, durable and long lasting' data-src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjoWNHxtnT-zavdb2U-cuC2PdpeVqaER-TJLUiMgGvJ-PWA1M2s7IK80ek8ff-uC290zI7478FkqQWHZ4Tn_orQDjsybzYlKJ_eRzg4MJFEw29f4-AjnUqS04lx4pWmZ1NLwwlmPfqUhF1ShZWcG6oBd6NPA8D11VVZ4gwbIqx_jc0_aXiuN0zvTOo0vkPF/w120-h120-p-k-no-nu/laptop.png' height='120' src='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAABJJREFUCJlj/P//PwMMMDEgAQBIBgMBiYFHzwAAAABJRU5ErkJggg==' width='120'/>
</picture>
</a>
</div>
<div class='popular-post-meta'>
<div class='post-meta-top'>
<div class='post-meta-label'>
</div>
<div class='post-meta-comment'>
<a class='comment-link' href='https://www.awdev.eu.org/2024/08/tips-for-caring-for-laptop.html#comments'>
<span class='comment-total'><span class='icon-comment'></span>
<span>0</span></span>
</a>
</div>
</div>
<h2 class='post-title'>
<a href='https://www.awdev.eu.org/2024/08/tips-for-caring-for-laptop.html'>
7 Tips for caring for a Laptop so that performance remains Optimal, durable and long lasting
</a>
</h2>
<div class='post-meta-bottom'>
<span class='post-meta-separator'> • </span>
<span class='post-meta-date'><time datetime='2024-08-12T17:33:57+07:00' title='2024-08-12T17:33:57+07:00'>
12 Aug, 2024
</time></span>
</div>
</div>
</div>
<div class='popular-post'>
<div class='popular-post-thumbnail'>
<a href='https://www.awdev.eu.org/2024/08/strategies-for-promising-future-mass.html'>
<picture class='lazyload'>
<source data-srcset='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiaa_4hCSSFuRq2ouw9EUTJaw3lCZ_v8z0Ti3CpA3tmQppEx-iqdwLga05ZghiXKYLWAlzSB9NtI5qHYDMeP3Aa5yk3KmncVm1m6OyJ_n6BdRrKCr1VRISS6eqMBCh2QK6CyL7v_vs7vrljN5vsVV7Gkb4TyqKtl8O0Qvjv2ixv_fwnvVqMUI62JIr3ozqu/w120-h120-p-k-no-nu/download%20.jpeg' media='(max-width: 420px)' srcset='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAABJJREFUCJlj/P//PwMMMDEgAQBIBgMBiYFHzwAAAABJRU5ErkJggg=='></source>
<img alt='Successful strategies for a promising future mass career' data-src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiaa_4hCSSFuRq2ouw9EUTJaw3lCZ_v8z0Ti3CpA3tmQppEx-iqdwLga05ZghiXKYLWAlzSB9NtI5qHYDMeP3Aa5yk3KmncVm1m6OyJ_n6BdRrKCr1VRISS6eqMBCh2QK6CyL7v_vs7vrljN5vsVV7Gkb4TyqKtl8O0Qvjv2ixv_fwnvVqMUI62JIr3ozqu/w120-h120-p-k-no-nu/download%20.jpeg' height='120' src='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAABJJREFUCJlj/P//PwMMMDEgAQBIBgMBiYFHzwAAAABJRU5ErkJggg==' width='120'/>
</picture>
</a>
</div>
<div class='popular-post-meta'>
<div class='post-meta-top'>
<div class='post-meta-label'>
</div>
<div class='post-meta-comment'>
<a class='comment-link' href='https://www.awdev.eu.org/2024/08/strategies-for-promising-future-mass.html#comments'>
<span class='comment-total'><span class='icon-comment'></span>
<span>0</span></span>
</a>
</div>
</div>
<h2 class='post-title'>
<a href='https://www.awdev.eu.org/2024/08/strategies-for-promising-future-mass.html'>
Successful strategies for a promising future mass career
</a>
</h2>
<div class='post-meta-bottom'>
<span class='post-meta-separator'> • </span>
<span class='post-meta-date'><time datetime='2024-08-10T23:13:05+07:00' title='2024-08-10T23:13:05+07:00'>
10 Aug, 2024
</time></span>
</div>
</div>
</div>
<div class='popular-post'>
<div class='popular-post-thumbnail'>
<a href='https://www.awdev.eu.org/2024/08/investment-ideas.html'>
<picture class='lazyload'>
<source data-srcset='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiTnJ5Wn2fvLwNfD9iM9iapJKeeXsof9-j79KZqn3RWMlTae8tNaL3zfuFApP_EPYxHftStbeKR1giGMM3D4GeIMEooG8n1n9ECSJe__ICI18VQ_m-aXbu-17cpAxZ3SASiWIQRxV-Jte0xuA1-YqwB5GekOhCy8QPZg0cZa3hEKMe8rVyYvWFMck7jfA-j/w120-h120-p-k-no-nu/images%20.jpeg' media='(max-width: 420px)' srcset='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAABJJREFUCJlj/P//PwMMMDEgAQBIBgMBiYFHzwAAAABJRU5ErkJggg=='></source>
<img alt='Read This! 5 profitable and long-term investment ideas' data-src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiTnJ5Wn2fvLwNfD9iM9iapJKeeXsof9-j79KZqn3RWMlTae8tNaL3zfuFApP_EPYxHftStbeKR1giGMM3D4GeIMEooG8n1n9ECSJe__ICI18VQ_m-aXbu-17cpAxZ3SASiWIQRxV-Jte0xuA1-YqwB5GekOhCy8QPZg0cZa3hEKMe8rVyYvWFMck7jfA-j/w120-h120-p-k-no-nu/images%20.jpeg' height='120' src='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAABJJREFUCJlj/P//PwMMMDEgAQBIBgMBiYFHzwAAAABJRU5ErkJggg==' width='120'/>
</picture>
</a>
</div>
<div class='popular-post-meta'>
<div class='post-meta-top'>
<div class='post-meta-label'>
</div>
<div class='post-meta-comment'>
<a class='comment-link' href='https://www.awdev.eu.org/2024/08/investment-ideas.html#comments'>
<span class='comment-total'><span class='icon-comment'></span>
<span>0</span></span>
</a>
</div>
</div>
<h2 class='post-title'>
<a href='https://www.awdev.eu.org/2024/08/investment-ideas.html'>
Read This! 5 profitable and long-term investment ideas
</a>
</h2>
<div class='post-meta-bottom'>
<span class='post-meta-separator'> • </span>
<span class='post-meta-date'><time datetime='2024-08-12T17:21:38+07:00' title='2024-08-12T17:21:38+07:00'>
12 Aug, 2024
</time></span>
</div>
</div>
</div>
</div>
</div></div>
<script>
(function(){let elem = document.getElementById('aside-top-widgets');
let popularPosts = elem.querySelector('#PopularPosts1');
if(!popularPosts) elem.classList.add('no-popular-posts');})();
</script>
</div>
</aside>
<div id='html-widget-top-outer'>
<div class='html-widget-top section' id='html-widget-top'><div class='widget HTML' data-version='2' id='HTML831'>
<div class='widget-content'>
<script async="async" src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3961173026050537" crossorigin="anonymous" ></script>
<!-- Ads pertamaku -->
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-3961173026050537"
data-ad-slot="4708033906"
data-ad-format="auto"
data-full-width-responsive="true"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
</div></div>
</div>
<main id='main'>
<div class='container'>
<div class='main-content section' id='main-content'><div class='widget Blog content-index' data-version='2' id='Blog1'>
<div class='latestposts-title'>
<h2 class='c-widget-title'>
<span>Latest posts</span>
</h2>
</div>
<div class='content'>
<article class='post-container'>
<a class='uhuy' href='https://zmedia.co.id'>ZMedia Purwodadi</a>
<script type='application/ld+json'>
{
"@context": "http://schema.org",
"@type": "BlogPosting",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "http://www.awdev.eu.org/2024/08/a-guaranteed-car.html"
},
"headline": "How To Care For A Guaranteed Car More Durable",
"description": "How To Care For A Guaranteed Car More Durable Taking care of the car is the key to maintaining the performance, good appearance and durability of the…",
"datePublished": "2024-08-19T10:49:00+07:00",
"dateModified": "2024-08-19T12:35:51+07:00",
"image": {
"@type": "ImageObject",
"url": "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi31LO3FSy9zf5YGeO6uapmBO_n1xDZpC3E3l40ofJYOEap_yhSoT-VBgCXOCuEWZZ_vwus9z51LAiX-9pNYlM5YzOIo_CRMZFUMn3fEVptDytfZySikkf5KmzJkZsRX6Lfa0UPV1lemrqzFCVOe5XYlsC2kbSW9oXfGsbzX6h7ES5wJyC6paBUSCVsGwBd/w1200-h630-p-k-no-nu/Car%20Wash%20Instagram%20Story_20240819_105439_0000.png",
"height": 630,
"width": 1200
},
"publisher": {
"@type": "Organization",
"name": "Blogger",
"logo": {
"@type": "ImageObject",
"url": "https://blogger.googleusercontent.com/img/b/U2hvZWJveA/AVvXsEgfMvYAhAbdHksiBA24JKmb2Tav6K0GviwztID3Cq4VpV96HaJfy0viIu8z1SSw_G9n5FQHZWSRao61M3e58ImahqBtr7LiOUS6m_w59IvDYwjmMcbq3fKW4JSbacqkbxTo8B90dWp0Cese92xfLMPe_tg11g/h60/",
"width": 206,
"height": 60
}
},
"author": {
"url": "http://www.awdev.eu.org/",
"@type": "Person",
"name": "Stictpedia"
}
}
// postMeta Custom By Sugeng.id
</script>
<div class='post-content'>
<div class='post-thumbnail'>
<a href='https://www.awdev.eu.org/2024/08/a-guaranteed-car.html'>
<img alt='How To Care For A Guaranteed Car More Durable' class='lazyload' data-src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi31LO3FSy9zf5YGeO6uapmBO_n1xDZpC3E3l40ofJYOEap_yhSoT-VBgCXOCuEWZZ_vwus9z51LAiX-9pNYlM5YzOIo_CRMZFUMn3fEVptDytfZySikkf5KmzJkZsRX6Lfa0UPV1lemrqzFCVOe5XYlsC2kbSW9oXfGsbzX6h7ES5wJyC6paBUSCVsGwBd/w345-h230-p-k-no-nu/Car%20Wash%20Instagram%20Story_20240819_105439_0000.png' height='230' loading='lazy' src='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAABJJREFUCJlj/P//PwMMMDEgAQBIBgMBiYFHzwAAAABJRU5ErkJggg==' width='345'/>
</a>
</div>
<div class='post-meta-top'>
<div class='post-meta-label'>
</div>
<div class='post-meta-comment'>
<a class='comment-link' href='https://www.awdev.eu.org/2024/08/a-guaranteed-car.html#comments'>
<span class='comment-total'><span class='icon-comment'></span>
<span>0</span></span>
</a>
</div>
</div>
<h2 class='post-title entry-title'>
<a href='https://www.awdev.eu.org/2024/08/a-guaranteed-car.html'>How To Care For A Guaranteed Car More Durable</a>
</h2>
<div class='post-meta-bottom'>
<span class='post-meta-separator'> • </span>
<span class='post-meta-date'><time datetime='2024-08-19T12:35:51+07:00' title='2024-08-19T12:35:51+07:00'>
19 Aug, 2024
</time></span>
</div>
</div>
</article>
<article class='post-container'>
<a class='uhuy' href='https://zmedia.co.id'>ZMedia Purwodadi</a>
<script type='application/ld+json'>
{
"@context": "http://schema.org",
"@type": "BlogPosting",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "http://www.awdev.eu.org/2024/08/safe-investment-for-beginners.html"
},
"headline": "7 Ways to choose a good and safe investment for beginners",
"description": "7 Ways to choose a good and safe investment for beginners Each investment instrument has its own advantages and disadvantages. One way to choose a go…",
"datePublished": "2024-08-19T10:45:00+07:00",
"dateModified": "2024-08-19T12:36:02+07:00",
"image": {
"@type": "ImageObject",
"url": "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgAJmkcITOWsxiQX2TfcgJYCxerWcXseRhHeRz8UileZW9gkYcK2b8FmcEV7Ryxif7Q26bfred_pTM2Fjf7wT3LjEkr86ViOyzSnmksKAvuU9rGQvO-NxotrFTofLjlYh20IHBKFw7jqy3f9BNuZdElj14rWhRCh6RgY4M98p0NaxLTYsgFvjHo3cy5j007/w1200-h630-p-k-no-nu/Pastel%20Green%20and%20Emerald%20Green%20Minimalist%20Business%20Investment%20Guide%20Carouse_20240819_104812_0000.png",
"height": 630,
"width": 1200
},
"publisher": {
"@type": "Organization",
"name": "Blogger",
"logo": {
"@type": "ImageObject",
"url": "https://blogger.googleusercontent.com/img/b/U2hvZWJveA/AVvXsEgfMvYAhAbdHksiBA24JKmb2Tav6K0GviwztID3Cq4VpV96HaJfy0viIu8z1SSw_G9n5FQHZWSRao61M3e58ImahqBtr7LiOUS6m_w59IvDYwjmMcbq3fKW4JSbacqkbxTo8B90dWp0Cese92xfLMPe_tg11g/h60/",
"width": 206,
"height": 60
}
},
"author": {
"url": "http://www.awdev.eu.org/",
"@type": "Person",
"name": "Stictpedia"
}
}
// postMeta Custom By Sugeng.id
</script>
<div class='post-content'>
<div class='post-thumbnail'>
<a href='https://www.awdev.eu.org/2024/08/safe-investment-for-beginners.html'>
<img alt='7 Ways to choose a good and safe investment for beginners' class='lazyload' data-src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgAJmkcITOWsxiQX2TfcgJYCxerWcXseRhHeRz8UileZW9gkYcK2b8FmcEV7Ryxif7Q26bfred_pTM2Fjf7wT3LjEkr86ViOyzSnmksKAvuU9rGQvO-NxotrFTofLjlYh20IHBKFw7jqy3f9BNuZdElj14rWhRCh6RgY4M98p0NaxLTYsgFvjHo3cy5j007/w345-h230-p-k-no-nu/Pastel%20Green%20and%20Emerald%20Green%20Minimalist%20Business%20Investment%20Guide%20Carouse_20240819_104812_0000.png' height='230' loading='lazy' src='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAABJJREFUCJlj/P//PwMMMDEgAQBIBgMBiYFHzwAAAABJRU5ErkJggg==' width='345'/>
</a>
</div>
<div class='post-meta-top'>
<div class='post-meta-label'>
</div>
<div class='post-meta-comment'>
<a class='comment-link' href='https://www.awdev.eu.org/2024/08/safe-investment-for-beginners.html#comments'>
<span class='comment-total'><span class='icon-comment'></span>
<span>0</span></span>
</a>
</div>
</div>
<h2 class='post-title entry-title'>
<a href='https://www.awdev.eu.org/2024/08/safe-investment-for-beginners.html'>7 Ways to choose a good and safe investment for beginners</a>
</h2>
<div class='post-meta-bottom'>
<span class='post-meta-separator'> • </span>
<span class='post-meta-date'><time datetime='2024-08-19T12:36:02+07:00' title='2024-08-19T12:36:02+07:00'>
19 Aug, 2024
</time></span>
</div>
</div>
</article>
<article class='post-container'>
<a class='uhuy' href='https://zmedia.co.id'>ZMedia Purwodadi</a>
<script type='application/ld+json'>
{
"@context": "http://schema.org",
"@type": "BlogPosting",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "http://www.awdev.eu.org/2024/08/the-right-way-to-save-for-saving-base.html"
},
"headline": "The right way to save for saving the base of the rich",
"description": "The right way to save for saving the base of the rich People who are used to living lavishly are definitely prone to financial problems. Because unex…",
"datePublished": "2024-08-19T10:00:00+07:00",
"dateModified": "2024-08-19T12:36:15+07:00",
"image": {
"@type": "ImageObject",
"url": "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg5G4otd7OafN7Bw3jze5Ej26Lr1sIIvZhdwaSq-v9dIGQQvmR-jgDhvyrKdS4H6l9n_9rqb4fIg7w_h9wsrlVvuBbhgn16AVqwHQzTJ3y4EXMfvcklK5A7TqCFOLZNkLiOpOOGbvM-2zURpKkT2LxtaUrxkf7mbDxKiHlb_Qbz58j57SP8UFWWrklGiVYf/w1200-h630-p-k-no-nu/White%20Blue%20Save%20Water%20Poster_20240819_095806_0000.png",
"height": 630,
"width": 1200
},
"publisher": {
"@type": "Organization",
"name": "Blogger",
"logo": {
"@type": "ImageObject",
"url": "https://blogger.googleusercontent.com/img/b/U2hvZWJveA/AVvXsEgfMvYAhAbdHksiBA24JKmb2Tav6K0GviwztID3Cq4VpV96HaJfy0viIu8z1SSw_G9n5FQHZWSRao61M3e58ImahqBtr7LiOUS6m_w59IvDYwjmMcbq3fKW4JSbacqkbxTo8B90dWp0Cese92xfLMPe_tg11g/h60/",
"width": 206,
"height": 60
}
},
"author": {
"url": "http://www.awdev.eu.org/",
"@type": "Person",
"name": "Stictpedia"
}
}
// postMeta Custom By Sugeng.id
</script>
<div class='post-content'>
<div class='post-thumbnail'>
<a href='https://www.awdev.eu.org/2024/08/the-right-way-to-save-for-saving-base.html'>
<img alt='The right way to save for saving the base of the rich' class='lazyload' data-src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg5G4otd7OafN7Bw3jze5Ej26Lr1sIIvZhdwaSq-v9dIGQQvmR-jgDhvyrKdS4H6l9n_9rqb4fIg7w_h9wsrlVvuBbhgn16AVqwHQzTJ3y4EXMfvcklK5A7TqCFOLZNkLiOpOOGbvM-2zURpKkT2LxtaUrxkf7mbDxKiHlb_Qbz58j57SP8UFWWrklGiVYf/w345-h230-p-k-no-nu/White%20Blue%20Save%20Water%20Poster_20240819_095806_0000.png' height='230' loading='lazy' src='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAABJJREFUCJlj/P//PwMMMDEgAQBIBgMBiYFHzwAAAABJRU5ErkJggg==' width='345'/>
</a>
</div>
<div class='post-meta-top'>
<div class='post-meta-label'>
</div>
<div class='post-meta-comment'>
<a class='comment-link' href='https://www.awdev.eu.org/2024/08/the-right-way-to-save-for-saving-base.html#comments'>
<span class='comment-total'><span class='icon-comment'></span>
<span>0</span></span>
</a>
</div>
</div>
<h2 class='post-title entry-title'>
<a href='https://www.awdev.eu.org/2024/08/the-right-way-to-save-for-saving-base.html'>The right way to save for saving the base of the rich</a>
</h2>
<div class='post-meta-bottom'>
<span class='post-meta-separator'> • </span>
<span class='post-meta-date'><time datetime='2024-08-19T12:36:15+07:00' title='2024-08-19T12:36:15+07:00'>
19 Aug, 2024
</time></span>
</div>
</div>
</article>
<article class='post-container'>
<a class='uhuy' href='https://zmedia.co.id'>ZMedia Purwodadi</a>
<script type='application/ld+json'>
{
"@context": "http://schema.org",
"@type": "BlogPosting",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "http://www.awdev.eu.org/2024/08/graphic-design.html"
},
"headline": "How to Learn Graphic Design: 7 Steps to Build Your Skills",
"description": "How to Learn Graphic Design: 7 Steps to Build Your Skills Thinking about becoming a graphic designer? Here’s how to learn the skills you’ll need.  A w…",
"datePublished": "2024-08-16T07:36:00+07:00",
"dateModified": "2024-08-16T07:37:59+07:00",
"image": {
"@type": "ImageObject",
"url": "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjUeSO0Co-JWOeGW4lb4kwKiVKfpVfjzanvhsiNaiyWXuwFbfyPMuligDa3sykovwu7KK2BuaOl41yqeBGrka_prT5OxoDDt18iytyKqlGD6mIWc4gR29s_16L0U5qle9pOpkLxomBoXw2k-KvvLnlzxTet_q4BFe9aQnEpLB98brxiYbLwhf1BtxprLakN/w1200-h630-p-k-no-nu/Graphic%20Design%20White%20Composition%20Instagram%20Post_20240816_061526_0000.png",
"height": 630,
"width": 1200
},
"publisher": {
"@type": "Organization",
"name": "Blogger",
"logo": {
"@type": "ImageObject",
"url": "https://blogger.googleusercontent.com/img/b/U2hvZWJveA/AVvXsEgfMvYAhAbdHksiBA24JKmb2Tav6K0GviwztID3Cq4VpV96HaJfy0viIu8z1SSw_G9n5FQHZWSRao61M3e58ImahqBtr7LiOUS6m_w59IvDYwjmMcbq3fKW4JSbacqkbxTo8B90dWp0Cese92xfLMPe_tg11g/h60/",
"width": 206,
"height": 60
}
},
"author": {
"url": "http://www.awdev.eu.org/",
"@type": "Person",
"name": "Stictpedia"
}
}
// postMeta Custom By Sugeng.id
</script>
<div class='post-content'>
<div class='post-thumbnail'>
<a href='https://www.awdev.eu.org/2024/08/graphic-design.html'>
<img alt='How to Learn Graphic Design: 7 Steps to Build Your Skills' class='lazyload' data-src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjUeSO0Co-JWOeGW4lb4kwKiVKfpVfjzanvhsiNaiyWXuwFbfyPMuligDa3sykovwu7KK2BuaOl41yqeBGrka_prT5OxoDDt18iytyKqlGD6mIWc4gR29s_16L0U5qle9pOpkLxomBoXw2k-KvvLnlzxTet_q4BFe9aQnEpLB98brxiYbLwhf1BtxprLakN/w345-h230-p-k-no-nu/Graphic%20Design%20White%20Composition%20Instagram%20Post_20240816_061526_0000.png' height='230' loading='lazy' src='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAABJJREFUCJlj/P//PwMMMDEgAQBIBgMBiYFHzwAAAABJRU5ErkJggg==' width='345'/>
</a>
</div>
<div class='post-meta-top'>
<div class='post-meta-label'>
</div>
<div class='post-meta-comment'>
<a class='comment-link' href='https://www.awdev.eu.org/2024/08/graphic-design.html#comments'>
<span class='comment-total'><span class='icon-comment'></span>
<span>0</span></span>
</a>
</div>
</div>
<h2 class='post-title entry-title'>
<a href='https://www.awdev.eu.org/2024/08/graphic-design.html'>How to Learn Graphic Design: 7 Steps to Build Your Skills</a>
</h2>
<div class='post-meta-bottom'>
<span class='post-meta-separator'> • </span>
<span class='post-meta-date'><time datetime='2024-08-16T07:37:59+07:00' title='2024-08-16T07:37:59+07:00'>
16 Aug, 2024
</time></span>
</div>
</div>
</article>
<article class='post-container'>
<a class='uhuy' href='https://zmedia.co.id'>ZMedia Purwodadi</a>
<script type='application/ld+json'>
{
"@context": "http://schema.org",
"@type": "BlogPosting",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "http://www.awdev.eu.org/2024/08/omniscope.html"
},
"headline": "Omniscope: Leveraging the power of data and AI to predict the future",
"description": "Omniscope: Leveraging the power of data and AI to predict the future Omniscope is the closest thing to a crystal ball within the Awdev DSP. Our foreca…",
"datePublished": "2024-08-16T07:17:00+07:00",
"dateModified": "2024-08-19T12:36:36+07:00",
"image": {
"@type": "ImageObject",
"url": "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgHNIB6tRl_gyN2_bLwLF156mPhRdv0JOY0feziiK63AKMdr4CuTxGWcRFWtMik5tx3QsVddviisnK1LuernvYh0V0VfbpsAChcpYXbaCICVmH8DgE0pybXcnCMJP1GQ-dkF7gipRqQzHhiltzJYxA5mwZun-mv7lFwPLiIpoVjzVB3_CbWB3KuOeuemRFk/w1200-h630-p-k-no-nu/1_20240816_070557_0000.jpg",
"height": 630,
"width": 1200
},
"publisher": {
"@type": "Organization",
"name": "Blogger",
"logo": {
"@type": "ImageObject",
"url": "https://blogger.googleusercontent.com/img/b/U2hvZWJveA/AVvXsEgfMvYAhAbdHksiBA24JKmb2Tav6K0GviwztID3Cq4VpV96HaJfy0viIu8z1SSw_G9n5FQHZWSRao61M3e58ImahqBtr7LiOUS6m_w59IvDYwjmMcbq3fKW4JSbacqkbxTo8B90dWp0Cese92xfLMPe_tg11g/h60/",
"width": 206,
"height": 60
}
},
"author": {
"url": "http://www.awdev.eu.org/",
"@type": "Person",
"name": "Stictpedia"
}
}
// postMeta Custom By Sugeng.id
</script>
<div class='post-content'>
<div class='post-thumbnail'>
<a href='https://www.awdev.eu.org/2024/08/omniscope.html'>
<img alt='Omniscope: Leveraging the power of data and AI to predict the future' class='lazyload' data-src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgHNIB6tRl_gyN2_bLwLF156mPhRdv0JOY0feziiK63AKMdr4CuTxGWcRFWtMik5tx3QsVddviisnK1LuernvYh0V0VfbpsAChcpYXbaCICVmH8DgE0pybXcnCMJP1GQ-dkF7gipRqQzHhiltzJYxA5mwZun-mv7lFwPLiIpoVjzVB3_CbWB3KuOeuemRFk/w345-h230-p-k-no-nu/1_20240816_070557_0000.jpg' height='230' loading='lazy' src='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAABJJREFUCJlj/P//PwMMMDEgAQBIBgMBiYFHzwAAAABJRU5ErkJggg==' width='345'/>
</a>
</div>
<div class='post-meta-top'>
<div class='post-meta-label'>
</div>
<div class='post-meta-comment'>
<a class='comment-link' href='https://www.awdev.eu.org/2024/08/omniscope.html#comments'>
<span class='comment-total'><span class='icon-comment'></span>
<span>0</span></span>
</a>
</div>
</div>
<h2 class='post-title entry-title'>
<a href='https://www.awdev.eu.org/2024/08/omniscope.html'>Omniscope: Leveraging the power of data and AI to predict the future</a>
</h2>
<div class='post-meta-bottom'>
<span class='post-meta-separator'> • </span>
<span class='post-meta-date'><time datetime='2024-08-19T12:36:36+07:00' title='2024-08-19T12:36:36+07:00'>
19 Aug, 2024
</time></span>
</div>
</div>
</article>
<article class='post-container'>
<a class='uhuy' href='https://zmedia.co.id'>ZMedia Purwodadi</a>
<script type='application/ld+json'>
{
"@context": "http://schema.org",
"@type": "BlogPosting",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "http://www.awdev.eu.org/2024/08/senior-principal-product-designer.html"
},
"headline": "Senior Principal Product Designer, Awdev Search",
"description": "Senior Principal Product Designer, Awdev Search Apply locations United States of America - Remote time type Full time posted on Posted 30+ Days Ago job requi…",
"datePublished": "2024-08-16T07:12:00+07:00",
"dateModified": "2024-08-19T12:36:49+07:00",
"image": {
"@type": "ImageObject",
"url": "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj2zla4fkyNCTJNrC3rX7mm6ViRuRSe7yAsf46uWl4ZOmZp1wh8VhkVvpidHNmIfFG-SAp3ZnkN8PPrCibSKoWNZ81dFBwG5_bXZds6Am80dFr1qBEISQx8KfQyYgRKjcp-5mXT81YJZT34hPSXcUWaAxTOZFgciK_FAsKFlqIdIoZMyE9NPlezExPfNNgp/w1200-h630-p-k-no-nu/1_20240816_070703_0000.jpg",
"height": 630,
"width": 1200
},
"publisher": {
"@type": "Organization",
"name": "Blogger",
"logo": {
"@type": "ImageObject",
"url": "https://blogger.googleusercontent.com/img/b/U2hvZWJveA/AVvXsEgfMvYAhAbdHksiBA24JKmb2Tav6K0GviwztID3Cq4VpV96HaJfy0viIu8z1SSw_G9n5FQHZWSRao61M3e58ImahqBtr7LiOUS6m_w59IvDYwjmMcbq3fKW4JSbacqkbxTo8B90dWp0Cese92xfLMPe_tg11g/h60/",
"width": 206,
"height": 60
}
},
"author": {
"url": "http://www.awdev.eu.org/",
"@type": "Person",
"name": "Stictpedia"
}
}
// postMeta Custom By Sugeng.id
</script>
<div class='post-content'>
<div class='post-thumbnail'>
<a href='https://www.awdev.eu.org/2024/08/senior-principal-product-designer.html'>
<img alt='Senior Principal Product Designer, Awdev Search' class='lazyload' data-src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj2zla4fkyNCTJNrC3rX7mm6ViRuRSe7yAsf46uWl4ZOmZp1wh8VhkVvpidHNmIfFG-SAp3ZnkN8PPrCibSKoWNZ81dFBwG5_bXZds6Am80dFr1qBEISQx8KfQyYgRKjcp-5mXT81YJZT34hPSXcUWaAxTOZFgciK_FAsKFlqIdIoZMyE9NPlezExPfNNgp/w345-h230-p-k-no-nu/1_20240816_070703_0000.jpg' height='230' loading='lazy' src='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAABJJREFUCJlj/P//PwMMMDEgAQBIBgMBiYFHzwAAAABJRU5ErkJggg==' width='345'/>
</a>
</div>
<div class='post-meta-top'>
<div class='post-meta-label'>
</div>
<div class='post-meta-comment'>
<a class='comment-link' href='https://www.awdev.eu.org/2024/08/senior-principal-product-designer.html#comments'>
<span class='comment-total'><span class='icon-comment'></span>
<span>0</span></span>
</a>
</div>
</div>
<h2 class='post-title entry-title'>
<a href='https://www.awdev.eu.org/2024/08/senior-principal-product-designer.html'>Senior Principal Product Designer, Awdev Search</a>
</h2>
<div class='post-meta-bottom'>
<span class='post-meta-separator'> • </span>
<span class='post-meta-date'><time datetime='2024-08-19T12:36:49+07:00' title='2024-08-19T12:36:49+07:00'>
19 Aug, 2024
</time></span>
</div>
</div>
</article>
</div>
<div class='blog-pager' id='blog-pager'>
<a class='blog-pager-older-link' href='https://www.awdev.eu.org/search?updated-max=2024-08-16T07:12:00%2B07:00&max-results=7' id='Blog1_blog-pager-older-link' title='Older Posts'>
<span>Older Posts</span>
<span class='icon-arrow-down'></span>
</a>
</div>
</div></div>
</div>
<div id='ads-code-widget'>
<div class='iklan-infeed section' id='iklan-infeed'><div class='widget HTML' data-version='2' id='HTML83'>
<div class='widget-content kode-iklan-infeed'>
</div>
</div></div>
<script>//<![CDATA[
!function(){let e=document.createElement("article"),t=document.createElement("div"),n=document.querySelector(".content");var o=n.querySelectorAll(".post-container"),i=document.querySelector("#iklan-infeed .widget-content");lokasi=o[globalSettings.lokasiIklanInFeed-1],e.setAttribute("class","post-container in-feed-ad-container"),t.setAttribute("class","post-content"),e.appendChild(t),i&&"\n"!=i.innerHTML&&(t.appendChild(i),n.insertBefore(e,lokasi))}();
//]]>
</script>
</div>
</main>
<div id='html-widget-bottom-outer'>
<div class='html-widget-bottom section' id='html-widget-bottom'><div class='widget HTML' data-version='2' id='HTML832'>
<div class='widget-content'>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3961173026050537"
crossorigin="anonymous"></script>
<ins class="adsbygoogle"
style="display:block"
data-ad-format="autorelaxed"
data-ad-client="ca-pub-3961173026050537"
data-ad-slot="2783242984"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
</div></div>
</div>
<aside id='aside-bottom'>
<div class='container'>
<div class='aside-bottom-widgets section' id='aside-bottom-widget1'><div class='widget HTML' data-version='2' id='HTML1'>
<div class='widget-title html'>
<h2 class='title'>OUR PICKS</h2>
</div>
<div class='widget-content'>
<script type='text/javascript'>
//<![CDATA[
numPosts = 10;function recentPosts(a){if(document.getElementById("recent-posts")){var e=a.feed.entry,title,link,content="",ct=document.getElementById("recent-posts");ct.async=true;for(var i=0;i<numPosts;i++){for(var j=0;j<numPosts;j++){if(e[i].link[j].rel=="alternate"){link=e[i].link[j].href;break}}var title=e[i].title.$t;content+='<li class="recent-posts"><a href="'+link+'" title="'+title+'">'+title+'</a></li>'}ct.innerHTML=content}}var rcp=document.createElement('script');rcp.async=true;rcp.src='/feeds/posts/summary?alt=json-in-script&orderby=published&max-results='+numPosts+'&callback=recentPosts';document.getElementsByTagName('head')[0].appendChild(rcp);
//]]>
</script>
<div id='recent-articles' class='recent-articles'><ul id="recent-posts"></ul></div>
</div>
</div>
<div class='widget PageList' data-version='2' id='PageList1'>
<div class='widget-title'>
<h2 class='title'>Page Links</h2>
</div>
<div class='widget-content'>
<ul>
<li>
<a href='http://www.awdev.eu.org/p/sitemap.html'><span class='icon-page'></span>
Sitemap</a>
</li>
<li>
<a href='http://www.awdev.eu.org/p/privacy-policy.html'><span class='icon-page'></span>
Privacy Policy</a>
</li>
<li>
<a href='http://www.awdev.eu.org/p/terms-and-conditions.html'><span class='icon-page'></span>
Terms and Conditions</a>
</li>
<li>
<a href='http://www.awdev.eu.org/p/disclaimers.html'><span class='icon-page'></span>
Disclaimers</a>
</li>
<li>
<a href='http://www.awdev.eu.org/p/contact-us.html'><span class='icon-page'></span>
Contact Us</a>
</li>
</ul>
</div>
</div></div>
<div class='aside-bottom-widgets section' id='aside-bottom-widget2'><div class='widget PopularPosts' data-version='2' id='PopularPosts2'>
<div class='popular-posts-container'>
<div class='popular-post'>
<div class='popular-post-thumbnail'>
<a href='https://www.awdev.eu.org/2024/08/tips-for-caring-for-laptop.html'>
<picture class='lazyload'>
<source data-srcset='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjoWNHxtnT-zavdb2U-cuC2PdpeVqaER-TJLUiMgGvJ-PWA1M2s7IK80ek8ff-uC290zI7478FkqQWHZ4Tn_orQDjsybzYlKJ_eRzg4MJFEw29f4-AjnUqS04lx4pWmZ1NLwwlmPfqUhF1ShZWcG6oBd6NPA8D11VVZ4gwbIqx_jc0_aXiuN0zvTOo0vkPF/w120-h120-p-k-no-nu/laptop.png' media='(max-width: 420px)' srcset='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAABJJREFUCJlj/P//PwMMMDEgAQBIBgMBiYFHzwAAAABJRU5ErkJggg=='></source>
<img alt='7 Tips for caring for a Laptop so that performance remains Optimal, durable and long lasting' data-src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjoWNHxtnT-zavdb2U-cuC2PdpeVqaER-TJLUiMgGvJ-PWA1M2s7IK80ek8ff-uC290zI7478FkqQWHZ4Tn_orQDjsybzYlKJ_eRzg4MJFEw29f4-AjnUqS04lx4pWmZ1NLwwlmPfqUhF1ShZWcG6oBd6NPA8D11VVZ4gwbIqx_jc0_aXiuN0zvTOo0vkPF/w120-h120-p-k-no-nu/laptop.png' height='120' src='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAABJJREFUCJlj/P//PwMMMDEgAQBIBgMBiYFHzwAAAABJRU5ErkJggg==' width='120'/>
</picture>
</a>
</div>
<div class='popular-post-meta'>
<div class='post-meta-top'>
<div class='post-meta-label'>
</div>
<div class='post-meta-comment'>
<a class='comment-link' href='https://www.awdev.eu.org/2024/08/tips-for-caring-for-laptop.html#comments'>
<span class='comment-total'><span class='icon-comment'></span>
<span>0</span></span>
</a>
</div>
</div>
<h2 class='post-title'>
<a href='https://www.awdev.eu.org/2024/08/tips-for-caring-for-laptop.html'>
7 Tips for caring for a Laptop so that performance remains Optimal, durable and long lasting
</a>
</h2>
<div class='post-meta-bottom'>
<span class='post-meta-separator'> • </span>
<span class='post-meta-date'><time datetime='2024-08-12T17:33:57+07:00' title='2024-08-12T17:33:57+07:00'>
12 Aug, 2024
</time></span>
</div>
</div>
</div>
<div class='popular-post'>
<div class='popular-post-thumbnail'>
<a href='https://www.awdev.eu.org/2024/08/strategies-for-promising-future-mass.html'>
<picture class='lazyload'>
<source data-srcset='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiaa_4hCSSFuRq2ouw9EUTJaw3lCZ_v8z0Ti3CpA3tmQppEx-iqdwLga05ZghiXKYLWAlzSB9NtI5qHYDMeP3Aa5yk3KmncVm1m6OyJ_n6BdRrKCr1VRISS6eqMBCh2QK6CyL7v_vs7vrljN5vsVV7Gkb4TyqKtl8O0Qvjv2ixv_fwnvVqMUI62JIr3ozqu/w120-h120-p-k-no-nu/download%20.jpeg' media='(max-width: 420px)' srcset='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAABJJREFUCJlj/P//PwMMMDEgAQBIBgMBiYFHzwAAAABJRU5ErkJggg=='></source>
<img alt='Successful strategies for a promising future mass career' data-src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiaa_4hCSSFuRq2ouw9EUTJaw3lCZ_v8z0Ti3CpA3tmQppEx-iqdwLga05ZghiXKYLWAlzSB9NtI5qHYDMeP3Aa5yk3KmncVm1m6OyJ_n6BdRrKCr1VRISS6eqMBCh2QK6CyL7v_vs7vrljN5vsVV7Gkb4TyqKtl8O0Qvjv2ixv_fwnvVqMUI62JIr3ozqu/w120-h120-p-k-no-nu/download%20.jpeg' height='120' src='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAABJJREFUCJlj/P//PwMMMDEgAQBIBgMBiYFHzwAAAABJRU5ErkJggg==' width='120'/>
</picture>
</a>
</div>
<div class='popular-post-meta'>
<div class='post-meta-top'>
<div class='post-meta-label'>
</div>
<div class='post-meta-comment'>
<a class='comment-link' href='https://www.awdev.eu.org/2024/08/strategies-for-promising-future-mass.html#comments'>
<span class='comment-total'><span class='icon-comment'></span>
<span>0</span></span>
</a>
</div>
</div>
<h2 class='post-title'>
<a href='https://www.awdev.eu.org/2024/08/strategies-for-promising-future-mass.html'>
Successful strategies for a promising future mass career
</a>
</h2>
<div class='post-meta-bottom'>
<span class='post-meta-separator'> • </span>
<span class='post-meta-date'><time datetime='2024-08-10T23:13:05+07:00' title='2024-08-10T23:13:05+07:00'>
10 Aug, 2024
</time></span>
</div>
</div>
</div>
<div class='popular-post'>
<div class='popular-post-thumbnail'>
<a href='https://www.awdev.eu.org/2024/08/investment-ideas.html'>
<picture class='lazyload'>
<source data-srcset='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiTnJ5Wn2fvLwNfD9iM9iapJKeeXsof9-j79KZqn3RWMlTae8tNaL3zfuFApP_EPYxHftStbeKR1giGMM3D4GeIMEooG8n1n9ECSJe__ICI18VQ_m-aXbu-17cpAxZ3SASiWIQRxV-Jte0xuA1-YqwB5GekOhCy8QPZg0cZa3hEKMe8rVyYvWFMck7jfA-j/w120-h120-p-k-no-nu/images%20.jpeg' media='(max-width: 420px)' srcset='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAABJJREFUCJlj/P//PwMMMDEgAQBIBgMBiYFHzwAAAABJRU5ErkJggg=='></source>
<img alt='Read This! 5 profitable and long-term investment ideas' data-src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiTnJ5Wn2fvLwNfD9iM9iapJKeeXsof9-j79KZqn3RWMlTae8tNaL3zfuFApP_EPYxHftStbeKR1giGMM3D4GeIMEooG8n1n9ECSJe__ICI18VQ_m-aXbu-17cpAxZ3SASiWIQRxV-Jte0xuA1-YqwB5GekOhCy8QPZg0cZa3hEKMe8rVyYvWFMck7jfA-j/w120-h120-p-k-no-nu/images%20.jpeg' height='120' src='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAABJJREFUCJlj/P//PwMMMDEgAQBIBgMBiYFHzwAAAABJRU5ErkJggg==' width='120'/>