-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMongolias-fuel-shortage.html
1001 lines (500 loc) · 76.3 KB
/
Mongolias-fuel-shortage.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 lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-E17DR95NKH"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-E17DR95NKH');
</script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- <title>Mongolia is running on fumes</title> -->
<!-- <meta name='description' content='Telling Mongolia's story through data.'> -->
<link rel="canonical" href="https://mongoliandatastories.com/Mongolias-fuel-shortage">
<link rel="alternate" type="application/rss+xml" title="Mongolian Data Stories" href="/feed.xml">
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Darker+Grotesque:wght@500;600;700;800&display=swap" rel="stylesheet">
<!-- Ionicons -->
<link href="https://unpkg.com/ionicons@4.2.2/dist/css/ionicons.min.css" rel="stylesheet">
<style>
/*!------------------------------------------------------------------
[MAIN STYLESHEET]
-------------------------------------------------------------------*/.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.show{display:block}.hide{display:none}.invisible{visibility:hidden}.list-reset{list-style-type:none;margin:0;padding:0}.clearfix::after,.clearfix ::before{content:"";display:table;clear:both}.screen-reader-text{clip:rect(1px, 1px, 1px, 1px);height:1px;overflow:hidden;position:absolute !important;width:1px;word-wrap:normal !important}/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}h1{font-size:2em;margin:0.67em 0}hr{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;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:-0.25em}sup{top:-0.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}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:0.35em 0.75em 0.625em}legend{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"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-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}body,h1,h2,h3,h4,h5,h6,p,blockquote,pre,dl,dd,ol,ul,fieldset,legend,figure,hr{margin:0;padding:0}li>ul,li>ol{margin-bottom:0}table{border-collapse:collapse;border-spacing:0}h1,h2,h3,h4,h5,h6,ul,ol,dl,blockquote,p,address,hr,table,fieldset,figure,pre{margin-bottom:30px}ul,ol,dd{margin-left:20px}.highlight{background:#f6f7f9}.highlighter-rouge .highlight{background:#eef}.highlight .c{color:#998;font-style:italic}.highlight .err{color:#a61717;background-color:#e3d2d2}.highlight .k{font-weight:bold}.highlight .o{font-weight:bold}.highlight .cm{color:#998;font-style:italic}.highlight .cp{color:#999;font-weight:bold}.highlight .c1{color:#998;font-style:italic}.highlight .cs{color:#999;font-weight:bold;font-style:italic}.highlight .gd{color:#000;background-color:#fdd}.highlight .gd .x{color:#000;background-color:#faa}.highlight .ge{font-style:italic}.highlight .gr{color:#a00}.highlight .gh{color:#999}.highlight .gi{color:#000;background-color:#dfd}.highlight .gi .x{color:#000;background-color:#afa}.highlight .go{color:#888}.highlight .gp{color:#555}.highlight .gs{font-weight:bold}.highlight .gu{color:#aaa}.highlight .gt{color:#a00}.highlight .kc{font-weight:bold}.highlight .kd{font-weight:bold}.highlight .kp{font-weight:bold}.highlight .kr{font-weight:bold}.highlight .kt{color:#458;font-weight:bold}.highlight .m{color:#099}.highlight .s{color:#d14}.highlight .na{color:#008080}.highlight .nb{color:#0086B3}.highlight .nc{color:#458;font-weight:bold}.highlight .no{color:#008080}.highlight .ni{color:#800080}.highlight .ne{color:#900;font-weight:bold}.highlight .nf{color:#900;font-weight:bold}.highlight .nn{color:#555}.highlight .nt{color:#6565ff}.highlight .nv{color:#008080}.highlight .ow{font-weight:bold}.highlight .w{color:#bbb}.highlight .mf{color:#099}.highlight .mh{color:#099}.highlight .mi{color:#099}.highlight .mo{color:#099}.highlight .sb{color:#e03460}.highlight .sc{color:#e03460}.highlight .sd{color:#e03460}.highlight .s2{color:#e03460}.highlight .se{color:#e03460}.highlight .sh{color:#e03460}.highlight .si{color:#e03460}.highlight .sx{color:#e03460}.highlight .sr{color:#009926}.highlight .s1{color:#e03460}.highlight .ss{color:#990073}.highlight .bp{color:#999}.highlight .vc{color:#008080}.highlight .vg{color:#008080}.highlight .vi{color:#008080}.highlight .il{color:#099}.container{max-width:1440px;padding-left:20px;padding-right:20px;margin:0 auto}.container-big{max-width:1600px;padding-left:20px;padding-right:20px;margin:0 auto}.row{display:flex;flex-wrap:wrap;flex:0 1 auto;flex-direction:row;box-sizing:border-box;margin-left:-10px;margin-right:-10px}.col{padding-left:10px;padding-right:10px}[class^="col-"]{flex:auto}.col-0{width:0%}.col-1{width:8.3333333333%}.col-2{width:16.6666666667%}.col-3{width:25%}.col-4{width:33.3333333333%}.col-5{width:41.6666666667%}.col-6{width:50%}.col-7{width:58.3333333333%}.col-8{width:66.6666666667%}.col-9{width:75%}.col-10{width:83.3333333333%}.col-11{width:91.6666666667%}.col-12{width:100%}.push-0{margin-left:0%}.push-1{margin-left:8.3333333333%}.push-2{margin-left:16.6666666667%}.push-3{margin-left:25%}.push-4{margin-left:33.3333333333%}.push-5{margin-left:41.6666666667%}.push-6{margin-left:50%}.push-7{margin-left:58.3333333333%}.push-8{margin-left:66.6666666667%}.push-9{margin-left:75%}.push-10{margin-left:83.3333333333%}.push-11{margin-left:91.6666666667%}.push-12{margin-left:100%}.pull-0{margin-right:0%}.pull-1{margin-right:8.3333333333%}.pull-2{margin-right:16.6666666667%}.pull-3{margin-right:25%}.pull-4{margin-right:33.3333333333%}.pull-5{margin-right:41.6666666667%}.pull-6{margin-right:50%}.pull-7{margin-right:58.3333333333%}.pull-8{margin-right:66.6666666667%}.pull-9{margin-right:75%}.pull-10{margin-right:83.3333333333%}.pull-11{margin-right:91.6666666667%}.pull-12{margin-right:100%}@media (max-width: 992px){.col-d-0{width:0%}.col-d-1{width:8.3333333333%}.col-d-2{width:16.6666666667%}.col-d-3{width:25%}.col-d-4{width:33.3333333333%}.col-d-5{width:41.6666666667%}.col-d-6{width:50%}.col-d-7{width:58.3333333333%}.col-d-8{width:66.6666666667%}.col-d-9{width:75%}.col-d-10{width:83.3333333333%}.col-d-11{width:91.6666666667%}.col-d-12{width:100%}.push-d-0{margin-left:0%}.push-d-1{margin-left:8.3333333333%}.push-d-2{margin-left:16.6666666667%}.push-d-3{margin-left:25%}.push-d-4{margin-left:33.3333333333%}.push-d-5{margin-left:41.6666666667%}.push-d-6{margin-left:50%}.push-d-7{margin-left:58.3333333333%}.push-d-8{margin-left:66.6666666667%}.push-d-9{margin-left:75%}.push-d-10{margin-left:83.3333333333%}.push-d-11{margin-left:91.6666666667%}.push-d-12{margin-left:100%}.pull-d-0{margin-right:0%}.pull-d-1{margin-right:8.3333333333%}.pull-d-2{margin-right:16.6666666667%}.pull-d-3{margin-right:25%}.pull-d-4{margin-right:33.3333333333%}.pull-d-5{margin-right:41.6666666667%}.pull-d-6{margin-right:50%}.pull-d-7{margin-right:58.3333333333%}.pull-d-8{margin-right:66.6666666667%}.pull-d-9{margin-right:75%}.pull-d-10{margin-right:83.3333333333%}.pull-d-11{margin-right:91.6666666667%}.pull-d-12{margin-right:100%}}@media (max-width: 768px){.col-t-0{width:0%}.col-t-1{width:8.3333333333%}.col-t-2{width:16.6666666667%}.col-t-3{width:25%}.col-t-4{width:33.3333333333%}.col-t-5{width:41.6666666667%}.col-t-6{width:50%}.col-t-7{width:58.3333333333%}.col-t-8{width:66.6666666667%}.col-t-9{width:75%}.col-t-10{width:83.3333333333%}.col-t-11{width:91.6666666667%}.col-t-12{width:100%}.push-t-0{margin-left:0%}.push-t-1{margin-left:8.3333333333%}.push-t-2{margin-left:16.6666666667%}.push-t-3{margin-left:25%}.push-t-4{margin-left:33.3333333333%}.push-t-5{margin-left:41.6666666667%}.push-t-6{margin-left:50%}.push-t-7{margin-left:58.3333333333%}.push-t-8{margin-left:66.6666666667%}.push-t-9{margin-left:75%}.push-t-10{margin-left:83.3333333333%}.push-t-11{margin-left:91.6666666667%}.push-t-12{margin-left:100%}.pull-t-0{margin-right:0%}.pull-t-1{margin-right:8.3333333333%}.pull-t-2{margin-right:16.6666666667%}.pull-t-3{margin-right:25%}.pull-t-4{margin-right:33.3333333333%}.pull-t-5{margin-right:41.6666666667%}.pull-t-6{margin-right:50%}.pull-t-7{margin-right:58.3333333333%}.pull-t-8{margin-right:66.6666666667%}.pull-t-9{margin-right:75%}.pull-t-10{margin-right:83.3333333333%}.pull-t-11{margin-right:91.6666666667%}.pull-t-12{margin-right:100%}}@media (max-width: 576px){.col-m-0{width:0%}.col-m-1{width:8.3333333333%}.col-m-2{width:16.6666666667%}.col-m-3{width:25%}.col-m-4{width:33.3333333333%}.col-m-5{width:41.6666666667%}.col-m-6{width:50%}.col-m-7{width:58.3333333333%}.col-m-8{width:66.6666666667%}.col-m-9{width:75%}.col-m-10{width:83.3333333333%}.col-m-11{width:91.6666666667%}.col-m-12{width:100%}.push-m-0{margin-left:0%}.push-m-1{margin-left:8.3333333333%}.push-m-2{margin-left:16.6666666667%}.push-m-3{margin-left:25%}.push-m-4{margin-left:33.3333333333%}.push-m-5{margin-left:41.6666666667%}.push-m-6{margin-left:50%}.push-m-7{margin-left:58.3333333333%}.push-m-8{margin-left:66.6666666667%}.push-m-9{margin-left:75%}.push-m-10{margin-left:83.3333333333%}.push-m-11{margin-left:91.6666666667%}.push-m-12{margin-left:100%}.pull-m-0{margin-right:0%}.pull-m-1{margin-right:8.3333333333%}.pull-m-2{margin-right:16.6666666667%}.pull-m-3{margin-right:25%}.pull-m-4{margin-right:33.3333333333%}.pull-m-5{margin-right:41.6666666667%}.pull-m-6{margin-right:50%}.pull-m-7{margin-right:58.3333333333%}.pull-m-8{margin-right:66.6666666667%}.pull-m-9{margin-right:75%}.pull-m-10{margin-right:83.3333333333%}.pull-m-11{margin-right:91.6666666667%}.pull-m-12{margin-right:100%}}@media (max-width: 992px){.col-d-0{width:0%}.col-d-1{width:8.3333333333%}.col-d-2{width:16.6666666667%}.col-d-3{width:25%}.col-d-4{width:33.3333333333%}.col-d-5{width:41.6666666667%}.col-d-6{width:50%}.col-d-7{width:58.3333333333%}.col-d-8{width:66.6666666667%}.col-d-9{width:75%}.col-d-10{width:83.3333333333%}.col-d-11{width:91.6666666667%}.col-d-12{width:100%}.push-d-0{margin-left:0%}.push-d-1{margin-left:8.3333333333%}.push-d-2{margin-left:16.6666666667%}.push-d-3{margin-left:25%}.push-d-4{margin-left:33.3333333333%}.push-d-5{margin-left:41.6666666667%}.push-d-6{margin-left:50%}.push-d-7{margin-left:58.3333333333%}.push-d-8{margin-left:66.6666666667%}.push-d-9{margin-left:75%}.push-d-10{margin-left:83.3333333333%}.push-d-11{margin-left:91.6666666667%}.push-d-12{margin-left:100%}.pull-d-0{margin-right:0%}.pull-d-1{margin-right:8.3333333333%}.pull-d-2{margin-right:16.6666666667%}.pull-d-3{margin-right:25%}.pull-d-4{margin-right:33.3333333333%}.pull-d-5{margin-right:41.6666666667%}.pull-d-6{margin-right:50%}.pull-d-7{margin-right:58.3333333333%}.pull-d-8{margin-right:66.6666666667%}.pull-d-9{margin-right:75%}.pull-d-10{margin-right:83.3333333333%}.pull-d-11{margin-right:91.6666666667%}.pull-d-12{margin-right:100%}}@media (max-width: 768px){.col-t-0{width:0%}.col-t-1{width:8.3333333333%}.col-t-2{width:16.6666666667%}.col-t-3{width:25%}.col-t-4{width:33.3333333333%}.col-t-5{width:41.6666666667%}.col-t-6{width:50%}.col-t-7{width:58.3333333333%}.col-t-8{width:66.6666666667%}.col-t-9{width:75%}.col-t-10{width:83.3333333333%}.col-t-11{width:91.6666666667%}.col-t-12{width:100%}.push-t-0{margin-left:0%}.push-t-1{margin-left:8.3333333333%}.push-t-2{margin-left:16.6666666667%}.push-t-3{margin-left:25%}.push-t-4{margin-left:33.3333333333%}.push-t-5{margin-left:41.6666666667%}.push-t-6{margin-left:50%}.push-t-7{margin-left:58.3333333333%}.push-t-8{margin-left:66.6666666667%}.push-t-9{margin-left:75%}.push-t-10{margin-left:83.3333333333%}.push-t-11{margin-left:91.6666666667%}.push-t-12{margin-left:100%}.pull-t-0{margin-right:0%}.pull-t-1{margin-right:8.3333333333%}.pull-t-2{margin-right:16.6666666667%}.pull-t-3{margin-right:25%}.pull-t-4{margin-right:33.3333333333%}.pull-t-5{margin-right:41.6666666667%}.pull-t-6{margin-right:50%}.pull-t-7{margin-right:58.3333333333%}.pull-t-8{margin-right:66.6666666667%}.pull-t-9{margin-right:75%}.pull-t-10{margin-right:83.3333333333%}.pull-t-11{margin-right:91.6666666667%}.pull-t-12{margin-right:100%}}@media (max-width: 576px){.col-m-0{width:0%}.col-m-1{width:8.3333333333%}.col-m-2{width:16.6666666667%}.col-m-3{width:25%}.col-m-4{width:33.3333333333%}.col-m-5{width:41.6666666667%}.col-m-6{width:50%}.col-m-7{width:58.3333333333%}.col-m-8{width:66.6666666667%}.col-m-9{width:75%}.col-m-10{width:83.3333333333%}.col-m-11{width:91.6666666667%}.col-m-12{width:100%}.push-m-0{margin-left:0%}.push-m-1{margin-left:8.3333333333%}.push-m-2{margin-left:16.6666666667%}.push-m-3{margin-left:25%}.push-m-4{margin-left:33.3333333333%}.push-m-5{margin-left:41.6666666667%}.push-m-6{margin-left:50%}.push-m-7{margin-left:58.3333333333%}.push-m-8{margin-left:66.6666666667%}.push-m-9{margin-left:75%}.push-m-10{margin-left:83.3333333333%}.push-m-11{margin-left:91.6666666667%}.push-m-12{margin-left:100%}.pull-m-0{margin-right:0%}.pull-m-1{margin-right:8.3333333333%}.pull-m-2{margin-right:16.6666666667%}.pull-m-3{margin-right:25%}.pull-m-4{margin-right:33.3333333333%}.pull-m-5{margin-right:41.6666666667%}.pull-m-6{margin-right:50%}.pull-m-7{margin-right:58.3333333333%}.pull-m-8{margin-right:66.6666666667%}.pull-m-9{margin-right:75%}.pull-m-10{margin-right:83.3333333333%}.pull-m-11{margin-right:91.6666666667%}.pull-m-12{margin-right:100%}}@media (max-width: 992px){.col-d-0{width:0%}.col-d-1{width:8.3333333333%}.col-d-2{width:16.6666666667%}.col-d-3{width:25%}.col-d-4{width:33.3333333333%}.col-d-5{width:41.6666666667%}.col-d-6{width:50%}.col-d-7{width:58.3333333333%}.col-d-8{width:66.6666666667%}.col-d-9{width:75%}.col-d-10{width:83.3333333333%}.col-d-11{width:91.6666666667%}.col-d-12{width:100%}.push-d-0{margin-left:0%}.push-d-1{margin-left:8.3333333333%}.push-d-2{margin-left:16.6666666667%}.push-d-3{margin-left:25%}.push-d-4{margin-left:33.3333333333%}.push-d-5{margin-left:41.6666666667%}.push-d-6{margin-left:50%}.push-d-7{margin-left:58.3333333333%}.push-d-8{margin-left:66.6666666667%}.push-d-9{margin-left:75%}.push-d-10{margin-left:83.3333333333%}.push-d-11{margin-left:91.6666666667%}.push-d-12{margin-left:100%}.pull-d-0{margin-right:0%}.pull-d-1{margin-right:8.3333333333%}.pull-d-2{margin-right:16.6666666667%}.pull-d-3{margin-right:25%}.pull-d-4{margin-right:33.3333333333%}.pull-d-5{margin-right:41.6666666667%}.pull-d-6{margin-right:50%}.pull-d-7{margin-right:58.3333333333%}.pull-d-8{margin-right:66.6666666667%}.pull-d-9{margin-right:75%}.pull-d-10{margin-right:83.3333333333%}.pull-d-11{margin-right:91.6666666667%}.pull-d-12{margin-right:100%}}@media (max-width: 768px){.col-t-0{width:0%}.col-t-1{width:8.3333333333%}.col-t-2{width:16.6666666667%}.col-t-3{width:25%}.col-t-4{width:33.3333333333%}.col-t-5{width:41.6666666667%}.col-t-6{width:50%}.col-t-7{width:58.3333333333%}.col-t-8{width:66.6666666667%}.col-t-9{width:75%}.col-t-10{width:83.3333333333%}.col-t-11{width:91.6666666667%}.col-t-12{width:100%}.push-t-0{margin-left:0%}.push-t-1{margin-left:8.3333333333%}.push-t-2{margin-left:16.6666666667%}.push-t-3{margin-left:25%}.push-t-4{margin-left:33.3333333333%}.push-t-5{margin-left:41.6666666667%}.push-t-6{margin-left:50%}.push-t-7{margin-left:58.3333333333%}.push-t-8{margin-left:66.6666666667%}.push-t-9{margin-left:75%}.push-t-10{margin-left:83.3333333333%}.push-t-11{margin-left:91.6666666667%}.push-t-12{margin-left:100%}.pull-t-0{margin-right:0%}.pull-t-1{margin-right:8.3333333333%}.pull-t-2{margin-right:16.6666666667%}.pull-t-3{margin-right:25%}.pull-t-4{margin-right:33.3333333333%}.pull-t-5{margin-right:41.6666666667%}.pull-t-6{margin-right:50%}.pull-t-7{margin-right:58.3333333333%}.pull-t-8{margin-right:66.6666666667%}.pull-t-9{margin-right:75%}.pull-t-10{margin-right:83.3333333333%}.pull-t-11{margin-right:91.6666666667%}.pull-t-12{margin-right:100%}}@media (max-width: 576px){.col-m-0{width:0%}.col-m-1{width:8.3333333333%}.col-m-2{width:16.6666666667%}.col-m-3{width:25%}.col-m-4{width:33.3333333333%}.col-m-5{width:41.6666666667%}.col-m-6{width:50%}.col-m-7{width:58.3333333333%}.col-m-8{width:66.6666666667%}.col-m-9{width:75%}.col-m-10{width:83.3333333333%}.col-m-11{width:91.6666666667%}.col-m-12{width:100%}.push-m-0{margin-left:0%}.push-m-1{margin-left:8.3333333333%}.push-m-2{margin-left:16.6666666667%}.push-m-3{margin-left:25%}.push-m-4{margin-left:33.3333333333%}.push-m-5{margin-left:41.6666666667%}.push-m-6{margin-left:50%}.push-m-7{margin-left:58.3333333333%}.push-m-8{margin-left:66.6666666667%}.push-m-9{margin-left:75%}.push-m-10{margin-left:83.3333333333%}.push-m-11{margin-left:91.6666666667%}.push-m-12{margin-left:100%}.pull-m-0{margin-right:0%}.pull-m-1{margin-right:8.3333333333%}.pull-m-2{margin-right:16.6666666667%}.pull-m-3{margin-right:25%}.pull-m-4{margin-right:33.3333333333%}.pull-m-5{margin-right:41.6666666667%}.pull-m-6{margin-right:50%}.pull-m-7{margin-right:58.3333333333%}.pull-m-8{margin-right:66.6666666667%}.pull-m-9{margin-right:75%}.pull-m-10{margin-right:83.3333333333%}.pull-m-11{margin-right:91.6666666667%}.pull-m-12{margin-right:100%}}img[data-action="zoom"]{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in}.zoom-img,.zoom-img-wrap{position:relative;z-index:666;-webkit-transition:all 300ms;-o-transition:all 300ms;transition:all 300ms}img.zoom-img{cursor:pointer;cursor:-webkit-zoom-out;cursor:-moz-zoom-out}.zoom-overlay{z-index:420;background:#fff;position:fixed;top:0;left:0;right:0;bottom:0;pointer-events:none;opacity:0;-webkit-transition:opacity 300ms;-o-transition:opacity 300ms;transition:opacity 300ms}@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none){.zoom-overlay{-webkit-backdrop-filter:saturate(180%) blur(10px);backdrop-filter:saturate(180%) blur(10px);background:rgba(255,255,255,0.8)}}.zoom-overlay-open .zoom-overlay{opacity:1}.zoom-overlay-open,.zoom-overlay-transitioning{cursor:default}.animate{animation:animateElement cubic-bezier(0.3, 0.45, 0.45, 0.95) 0.75s;animation-duration:.85s;animation-iteration-count:1;transition:transform .2s}@keyframes animateElement{0%{opacity:0;transform:translate(0px, 50px)}100%{opacity:1;transform:translate(0px, 0px)}}.slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{position:relative;overflow:hidden;display:block;margin:0;padding:0}.slick-list:focus{outline:none}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-track,.slick-slider .slick-list{-webkit-transform:translate3d(0, 0, 0);-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-o-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.slick-track{position:relative;left:0;top:0;display:block;margin-left:auto;margin-right:auto}.slick-track:before,.slick-track:after{content:"";display:table}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{float:left;height:100%;min-height:1px;display:none}[dir="rtl"] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}*,*::after,*::before{box-sizing:border-box}body{font-family:"Raleway",sans-serif;font-size:20px;font-weight:400;line-height:1.4;color:#12111b;background-color:#fff;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;overflow-x:hidden}body.is-in::after{visibility:hidden;opacity:0;pointer-events:none}body::after{content:"";position:fixed;left:0;top:0;width:100%;height:100%;background-color:#fff;z-index:15;transition:1s}body input,body textarea{border:1px solid #f8f8f8;outline:none}@media only screen and (max-width: 576px){body{font-size:18px}}::placeholder{color:#6b6a79}*::selection{color:#fff;background-color:#02C4EC}h1,h2,h3,h4,h5,h6{font-family:"Raleway",sans-serif;font-weight:700;line-height:1.4em;color:#12111b}h1{font-size:36px}h2{font-size:28px}h3{font-size:24px}h4{font-size:20px}h5{font-size:18px}h6{font-size:16px}blockquote{position:relative;padding:20px 20px 20px 50px;margin-bottom:0;font-family:"Raleway",sans-serif;font-size:31px;line-height:38px;font-weight:800;color:#12111b}blockquote:before{content:'\201C';position:absolute;font-family:"Raleway",sans-serif;top:0.2em;left:-0.01em;font-size:3.5em;color:#02C4EC}blockquote p{margin-bottom:15px}blockquote cite{font-size:15px;font-weight:600;letter-spacing:1px;text-transform:uppercase;font-style:normal;color:#12111b}blockquote cite:before{content:'\2014' '\00a0'}@media only screen and (max-width: 576px){blockquote{padding:20px 20px 20px 35px;font-size:21px;line-height:28px}}pre{overflow:auto;padding:15px;font-size:14px;white-space:pre-wrap;word-wrap:break-word;word-break:break-all}code[class*=language-],pre[class*=language-]{white-space:pre-wrap;word-break:break-all;line-height:inherit}img,.zoom-img-wrap{max-width:100%;height:auto;vertical-align:middle}img+em,.zoom-img-wrap+em{display:block;margin-top:10px;font-size:14px;font-style:normal;font-weight:600;text-transform:uppercase;text-align:center}a{text-decoration:none;color:#12111b;transition:all 0.3s}a:hover{color:#02C4EC}hr{display:block;width:100%;height:1px;margin:50px 0;border:0;background:rgba(18,17,27,0.1)}.table-container{display:block;max-width:100%;overflow-x:auto}table{font-size:12px;color:#12111b;width:100%;border-width:1px;border-color:#12111b;border-collapse:collapse}table th{padding:10px;font-size:18px;text-align:left;border:1px solid #12111b;color:#fff;font-weight:700;background-color:#12111b}table tr{background-color:#f8f8f8;transition:all .3s ease}table tr:nth-child(even){background-color:transparent}table td{padding:10px;font-size:16px;font-weight:600;border:1px solid #12111b}table tr:hover{background-color:#02C4EC}.gallery-box{margin-bottom:30px}.gallery-box em{display:block;margin:10px 0 30px;font-size:14px;font-style:normal;font-weight:600;text-transform:uppercase;text-align:center}.gallery-box em a{text-decoration:underline;border-bottom:none}.gallery{display:grid;grid-template-columns:repeat(3, auto);justify-content:center;align-content:center;grid-gap:10px}.gallery img{width:100%;height:auto}.hero{margin-bottom:50px}.hero .row{align-items:center}@media only screen and (max-width: 768px){.hero{margin-bottom:20px}}.author .author__avatar{display:block;width:120px;height:120px;margin-bottom:10px;border-radius:50%;overflow:hidden}.author .author__name{margin-bottom:5px;font-size:31px;line-height:1;font-weight:800}.author .author__job{font-size:63px;line-height:58px;font-weight:800}@media only screen and (max-width: 992px){.author .author__name{font-size:24px}.author .author__job{margin-bottom:20px;font-size:38px;line-height:33px}}@media only screen and (max-width: 768px){.author{margin:20px 0}}.single-author .author{width:100%;max-width:500px;margin:0 auto;text-align:center}.single-author .author .author__avatar{margin:0 auto 10px}.single-author .author .social__list{justify-content:center}.top{position:fixed;bottom:25px;right:-100px;z-index:5;width:35px;height:35px;font-size:16px;line-height:35px;text-align:center;border-radius:50%;box-shadow:0px 1px 4px rgba(0,0,0,0.15);color:#12111b;background-color:#fff;cursor:pointer;transition:all .25s ease}.top:hover{color:#02C4EC}.top.is-active{right:30px}@media only screen and (max-width: 768px){.top{bottom:15px}.top.is-active{right:25px}}.header{width:100%;padding:35px 0;transition:all 0.3s}@media only screen and (max-width: 992px){.header{padding:25px 0}}.header__inner{position:relative;display:flex;justify-content:space-between;align-items:center}.logo__link{position:relative;font-family:"Raleway",sans-serif;font-size:27px;font-weight:600;color:#12111b;text-decoration:none;letter-spacing:2px}.logo__link:hover{color:#12111b}.logo__image{max-height:40px}.main-nav{width:100%;max-width:1300px;margin:0 auto}.main-nav__box{display:flex;align-items:center;width:80%;padding-top:200px;margin:0 auto}.main-nav__box .nav__icon-close{position:absolute;top:20px;right:40px;z-index:5;display:flex;align-items:center;justify-content:center;font-size:30px;width:40px;height:40px;text-align:center;line-height:40px;color:#12111b;transition:all .25s ease;cursor:pointer}.main-nav__box .nav__icon-close:hover{transform:rotate(90deg);color:#12111b}@media only screen and (max-width: 768px){.main-nav__box{padding-top:100px}.main-nav__box .nav__icon-close{top:22px;right:42px}}@media only screen and (max-width: 576px){.main-nav__box{width:90%}}.navigation{display:flex;align-items:center}.top-nav{margin-right:25px}.top-nav .nav__list .nav__item{display:inline-block;margin-right:25px}.top-nav .nav__list .nav__item:last-child{margin-right:0}.top-nav .nav__list .nav__item .nav__link{position:relative;padding:0 3px;font-size:18px;font-weight:500;text-decoration:none;color:#6b6a79}.top-nav .nav__list .nav__item .nav__link:hover{color:#12111b}.top-nav .nav__list .nav__item .nav__link:hover::after{transform:translate3d(0px, 0px, 0px) scale3d(1, 1, 1)}.top-nav .nav__list .nav__item .nav__link::after{content:"";position:absolute;left:0;bottom:0px;z-index:-1;display:block;width:100%;height:38%;transform-origin:50% 100%;transform:translate3d(0px, 0px, 0px) scale3d(1, 0, 1);background-color:rgba(2,196,236,0.3);transition:all .2s ease}@media only screen and (max-width: 992px){.top-nav{display:none}}.mobile-nav .nav__list .nav__item{display:block;margin-bottom:35px;text-align:center}.mobile-nav .nav__list .nav__item:last-child{margin-bottom:0}.mobile-nav .nav__list .nav__item .nav__link{position:relative;padding:0 3px;font-size:23px;font-weight:700;color:#12111b}.mobile-nav .nav__list .nav__item .nav__link:hover::after{transform:translate3d(0px, 0px, 0px) scale3d(1, 1, 1)}.mobile-nav .nav__list .nav__item .nav__link::after{content:"";position:absolute;left:0;bottom:0px;z-index:-1;display:block;width:100%;height:38%;transform-origin:50% 100%;transform:translate3d(0px, 0px, 0px) scale3d(1, 0, 1);background-color:rgba(2,196,236,0.3);transition:all .2s ease}@media only screen and (max-width: 576px){.mobile-nav .nav__list .nav__item{margin-bottom:20px}}.nav-buttons{display:flex;align-items:center;font-size:22px;color:#12111b}.nav-buttons .nav__icon-menu{display:none}@media only screen and (max-width: 992px){.nav-buttons .nav__icon-menu{display:block}}.nav-buttons .nav__icon{cursor:pointer}.nav-buttons .nav__icon:first-child{margin-right:15px}.menu-overlay{position:fixed;top:0;left:0;right:0;bottom:0;z-index:100;opacity:0;visibility:hidden;background-color:#fff;transition:all 0.5s ease-in-out}.menu-overlay.is-open{opacity:1;visibility:visible}@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none){.menu-overlay{-webkit-backdrop-filter:saturate(180%) blur(10px);backdrop-filter:saturate(180%) blur(10px);background-color:rgba(255,255,255,0.9)}}@media only screen and (min-width: 992px){.menu-overlay{display:none}}.nav-grid{width:100%;height:75vh;overflow-y:auto}.nav-grid__item{margin-bottom:30px}@media only screen and (max-width: 768px){.nav-grid__item{height:auto}}.nav-grid__title{position:relative;margin-bottom:50px;padding-bottom:15px;font-size:30px;font-weight:700;text-align:center;color:#12111b}.nav-grid__title::after{content:"";position:absolute;left:50%;bottom:0;transform:translate(-50%, -50%);display:block;width:25px;height:2px;background-color:#12111b}@media only screen and (max-width: 768px){.nav-grid__title{margin-bottom:30px}}.search{position:fixed;top:0;left:0;right:0;bottom:0;z-index:100;opacity:0;visibility:hidden;background-color:#fff;transition:all 0.5s ease-in-out}.search.is-visible{opacity:1;visibility:visible}@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none){.search{-webkit-backdrop-filter:saturate(180%) blur(10px);backdrop-filter:saturate(180%) blur(10px);background-color:rgba(255,255,255,0.9)}}.search__box{position:relative;max-width:550px;width:100%;margin:0 auto;padding-top:200px}.search__box .search__close{position:absolute;right:0;top:175px;padding:0 5px;font-size:30px;line-height:1;color:#12111b;transition:all .25s;cursor:pointer}.search__box .search__close:hover{transform:rotate(90deg);color:#000}@media only screen and (max-width: 768px){.search__box .search__close{top:75px}}@media only screen and (max-width: 768px){.search__box{width:80%;padding-top:100px}}@media only screen and (max-width: 576px){.search__box{width:90%}}.search__group{position:relative;margin-bottom:30px}.search__group .search__text{width:100%;height:auto;padding:0 25px 10px 0;font-family:"Raleway",sans-serif;font-size:38px;font-weight:800;line-height:1;border:0;border-bottom:5px solid #12111b;color:#12111b;background-color:transparent}.search__group .search__text::-webkit-input-placeholder{color:#12111b}.search__group .search__text::placeholder{color:#12111b}.search__group .search__text::-ms-clear{display:none}@media only screen and (max-width: 576px){.search__group .search__text{font-size:30px}}.search-results-list{height:55vh;padding:0 0 25px 0;list-style:circle;font-weight:700;color:#12111b;overflow:auto;white-space:normal}.search-results-list .search-results__item{display:flex;align-items:center;padding-bottom:12px;margin-bottom:12px;border-bottom:1px solid rgba(18,17,27,0.1)}.search-results-list .search-results__image{position:relative;display:inline-block;margin-right:15px;min-width:80px;height:80px;border-radius:50%;background-size:cover;background-color:#f8f8f8;background-position:center;background-repeat:no-repeat;transition:.3s filter ease}.search-results-list .search-results__image:hover{filter:saturate(1.5)}.search-results-list .search-results__link{position:relative;display:block;padding:10px 0 10px 0;font-family:"Raleway",sans-serif;font-size:21px;line-height:24px;font-weight:700;color:#12111b;transition:all .15s ease-in-out}.search-results-list .search-results__link:hover{color:#02C4EC}.search-results-list .search-results-date{font-size:13px;line-height:16px;font-weight:600;text-transform:uppercase;color:#6b6a79}.search-results-list .no-results{list-style:none}.search-results-list .no-results h3{font-size:21px}.load-more{margin:0 auto}.load-more-section{margin:30px auto;text-align:center}@media only screen and (max-width: 576px){.load-more-section{margin:20px auto}}.load-more-posts{padding:20px 40px;border:1px solid #eee;color:#12111b;background-color:#f1f1f1}.load-more-posts:hover{background-color:#e4e4e4}.footer-widgets{padding:80px 0;margin-top:20px;background-color:#f8f8f8}.footer-widgets .row .col{flex-grow:1}.footer-widgets .row .col:last-child>.widget{padding-right:0}@media only screen and (max-width: 768px){.footer-widgets{padding:80px 0 0}}@media only screen and (max-width: 576px){.footer-widgets{padding:50px 0 0}}@media only screen and (max-width: 768px){.widget{margin-bottom:50px}}.widget__title{position:relative;margin-bottom:20px;font-size:26px;line-height:1;font-weight:800;color:#12111b}@media only screen and (max-width: 992px){.widget__title{font-size:24px}}.footer-logo{margin-bottom:20px;font-size:27px;line-height:33px;font-weight:800;color:#12111b;text-transform:uppercase;letter-spacing:1px;transition:none}.footer-logo:hover a{color:#12111b}.footer-desc{margin-bottom:25px;font-size:18px;line-height:26px;font-weight:500;color:#6b6a79}.recent-posts{position:relative;display:flex;padding-right:15px;margin-bottom:15px}.recent-posts:last-child{margin-bottom:0}@media only screen and (max-width: 992px){.recent-posts{padding-right:0}}.recent-posts__header{margin-right:15px}.recent-posts__image{position:relative;display:block;margin-right:15px;min-width:80px;height:80px;border-radius:50%;background-size:cover;background-position:center;background-repeat:no-repeat;transition:.3s filter ease}.recent-posts__image:hover{filter:saturate(1.5)}.recent-posts__title{margin-bottom:0;font-size:21px;line-height:24px;font-weight:700}.recent-posts__title a{color:#12111b}.recent-posts__title a:hover{box-shadow:0 -1px 0 0 #02C4EC inset,0 -2px 0 0 #02C4EC inset}.recent-posts__date{margin-bottom:5px;font-size:13px;line-height:16px;font-weight:600;text-transform:uppercase;color:#6b6a79}.subscribe-subtitle{width:100%;margin-bottom:20px;font-size:18px;line-height:26px;color:#6b6a79}@media only screen and (max-width: 768px){.subscribe-subtitle{max-width:100%}}.subscribe-group-top{display:flex;align-items:center;padding-bottom:10px}.subscribe-group-top .subscribe-email{position:relative;width:100%;height:50px;padding:15px;font-family:"Raleway",sans-serif;font-size:17px;line-height:50px;font-weight:500;color:#12111b;background-color:#fff;border:1px solid #eee;outline:0;-webkit-appearance:none;box-sizing:border-box;transition:border-color .2s ease-in-out;cursor:text}.subscribe-group-top .subscribe-email::placeholder{font-size:17px}.subscribe-group-top .subscribe-email:focus{color:#12111b;border-color:#02C4EC}.subscribe-group-top .subscribe-button{margin:0 0 0 10px;border-radius:3px}@media only screen and (max-width: 576px){.subscribe-group-top{flex-direction:column}.subscribe-group-top .subscribe-email{text-align:center}.subscribe-group-top .subscribe-button{width:100%;margin:10px 0 0 0}}.footer{position:relative;padding:30px 0;border-top:1px solid #eee;background-color:#f8f8f8}.copyright{font-size:16px;font-weight:600;text-align:center;color:#6b6a79}.social{text-align:center}.social .social__list{display:flex;flex-wrap:wrap;align-items:center}.social .social__item{display:inline-block;margin-left:10px}.social .social__item:first-child{margin-left:0}.social .social__link{position:relative;display:flex;justify-content:center;align-items:center;width:45px;height:45px;font-size:19px;line-height:45px;border-radius:50%;color:#16151f;background-color:#fff;box-shadow:0px 1px 4px rgba(0,0,0,0.15);transition:all 0.3s ease;overflow:hidden}.social .social__link::after{content:"";position:absolute;transform:translate(0, 45px);width:45px;height:45px;border-radius:50%;background-color:#02C4EC;transition:all 0.3s ease}.social .social__link:hover{transform:translateY(-4px);box-shadow:0px 5px 12px rgba(0,0,0,0.17);color:#fff}.social .social__link:hover::after{transform:translate(0) scale(1.2)}.social .social__link i{z-index:1;display:inline-block;padding:2px;margin:auto}@media only screen and (max-width: 992px){.social{margin-bottom:5px}.social .social__item{margin-bottom:10px}.social .social__link{width:35px;height:35px;line-height:35px;font-size:16px}}.button{display:inline-block;white-space:nowrap;vertical-align:middle;font-family:"Raleway",sans-serif;font-size:14px;font-weight:800;text-transform:uppercase;letter-spacing:1px;border:none;border-radius:3px;outline:none;-webkit-appearance:none;text-align:center;text-decoration:none;transition:all 0.2s ease;cursor:pointer}.button--primary{padding:0px 1.8rem;height:50px;line-height:50px;color:#fff;background-color:#12111b}.button--primary:hover{color:#fff;background-color:#02afd3}.button--big{display:block;width:100%}.slider .article{margin:0}.slider .article:hover{transform:none}.slider .article__inner{flex-direction:column;padding-top:35%}.slider__inner{position:relative}.slider__inner .slick-track{margin-left:0}.slider__inner .main-slider__item a{outline:none}.slider__inner .slider-buttons{position:relative;z-index:1;display:flex;justify-content:space-between;align-items:center;margin:0 30px 10% 30px;outline:none;pointer-events:none}.slider__inner .slider-buttons .main__item-prev,.slider__inner .slider-buttons .main__item-next{width:35px;height:35px;font-size:16px;line-height:35px;text-align:center;border-radius:2px;outline:none;border:1px solid rgba(255,255,255,0.3);border-radius:50%;color:#fff;box-shadow:0 1px 4px rgba(0,0,0,0.12);transition:all 0.3s;pointer-events:visible;cursor:pointer}.slider__inner .slider-buttons .main__item-prev:hover,.slider__inner .slider-buttons .main__item-next:hover{border-color:#fff}@media only screen and (max-width: 576px){.slider__inner .slider-buttons{margin:0 20px 5% 20px}.slider__inner .slider-buttons .main__item-prev,.slider__inner .slider-buttons .main__item-next{width:30px;height:30px;line-height:30px}}.article{align-items:stretch;flex-grow:1;margin-bottom:20px}.article:hover{transform:translateY(-2px)}.article:hover .article__image img{filter:saturate(1.7)}@media only screen and (max-width: 576px){.article{min-height:280px}}.article__inner{position:relative;display:flex;width:100%;height:100%;padding-top:45%;border-radius:8px;transform:translate(0);overflow:hidden}.article__inner .featured-post{position:absolute;top:0;right:0;z-index:10;width:45px;height:45px;display:flex;justify-content:center;align-items:center;font-size:21px;color:#fff;user-select:none}.article__inner .featured-post i{position:relative}.article__title{margin:10px 0 15px;max-width:500px;font-size:35px;line-height:37px;font-weight:800}.article__title a{color:#fff}.article__title a:hover{box-shadow:0 -1px 0 0 #02C4EC inset,0 -3px 0 0 #02C4EC inset}@media only screen and (max-width: 992px){.article__title{font-size:31px;line-height:33px}}@media only screen and (max-width: 576px){.article__title{margin:5px 0 10px;font-size:24px;line-height:26px}}.article__image{position:absolute;top:0;display:block;width:100%;height:100%;border-radius:8px;user-select:none;background-color:#f8f8f8}.article__image::after{content:"";display:block;position:absolute;top:0;left:0;width:100%;height:100%;border-radius:8px;background:linear-gradient(rgba(0,0,0,0), rgba(53,53,53,0.7));pointer-events:none}.article__image img{position:absolute;top:0;width:100%;height:100%;object-fit:cover;pointer-events:none;transition:filter .3s ease}.article__content{z-index:1;width:100%;margin-top:auto;padding:0 30px 30px}@media only screen and (max-width: 576px){.article__content{padding:0 20px 20px}}.article__meta{display:flex;align-items:center;flex-wrap:wrap;justify-content:flex-start;color:#fff}.article-tags{display:flex;flex-wrap:wrap;align-items:center}.article-tags__box{position:relative;display:flex;flex-wrap:wrap;align-items:center;margin-right:-3px;line-height:1}.article-tags__box .article__tag{position:relative;font-size:14px;font-weight:700;text-transform:uppercase;color:#fff}.article-tags__box .article__tag:hover{color:#02C4EC}.article-tags__box .article__tag::after{content:",";margin:0 2px;display:inline-block;color:#fff}.article-tags__box .article__tag:last-child::after{content:""}.article__date{font-size:14px;text-transform:uppercase;font-weight:700;color:rgba(255,255,255,0.7)}.article__date::before{content:"";position:relative;bottom:0.2rem;display:inline-block;height:3px;width:3px;margin:0 .5rem 0 .5rem;border-radius:50%;background-color:#fff}@media only screen and (max-width: 576px){.article__date{display:none}}.article__author{display:flex;align-items:center}.article__author-image{display:inline-block;width:20px;height:20px;margin-right:5px;border-radius:50%;border:1px solid rgba(255,255,255,0.6);background-size:cover;background-position:center;background-repeat:no-repeat;background-color:#12111b}.article__author-link{position:relative;padding-right:8px;font-size:14px;line-height:20px;text-transform:uppercase;font-weight:700;color:#fff}.article__author-link:hover{color:#fff}.article__author-link:hover::before{width:115%}.article__author-link::before{content:"";position:absolute;left:-15%;z-index:-1;display:block;height:100%;width:0;border-radius:0 15px 15px 0;background-color:#02C4EC;transition:all .25s ease}.article__author span{color:rgba(255,255,255,0.8)}.post{position:relative;margin-bottom:30px}.post-image{position:absolute;top:0;width:100%;height:100%;object-fit:cover;user-select:none}.image-box{position:relative;padding-top:50%;min-height:280px;border-radius:8px;overflow:hidden;background-color:#f8f8f8}@media only screen and (max-width: 992px){.image-box{padding-top:55%}}@media only screen and (max-width: 768px){.image-box{padding-top:65%}}.post-tags{position:relative;display:flex;flex-wrap:wrap;align-items:center;margin-right:-3px;line-height:1}.post-tags .post-tags__tag{position:relative;font-size:15px;font-weight:700;text-transform:uppercase;color:#12111b}.post-tags .post-tags__tag:hover{color:#02C4EC}.post-tags .post-tags__tag::after{content:",";margin:0 2px;display:inline-block;color:#12111b}.post-tags .post-tags__tag:last-child::after{content:""}.post-head{margin:40px 0}@media only screen and (max-width: 576px){.post-head{margin:25px 0}}.post-title{margin:10px 0 15px;font-size:63px;line-height:65px;font-weight:800;text-align:center}@media only screen and (max-width: 768px){.post-title{font-size:48px;line-height:50px}}@media only screen and (max-width: 576px){.post-title{font-size:33px;line-height:35px}}.post__meta{display:flex;align-items:center;flex-wrap:wrap;justify-content:center;color:#12111b}.post__author{display:flex;align-items:center;justify-content:center}.post__author-image{display:inline-block;width:20px;height:20px;margin-right:5px;border-radius:50%;background-size:cover;background-position:center;background-repeat:no-repeat;background-color:#f8f8f8}.post__author-link{font-size:15px;text-transform:uppercase;font-weight:700;color:#12111b}.post__author-link:hover{color:#12111b}.post__author span{margin-right:5px;font-size:15px;text-transform:uppercase;font-weight:700}.post__date{font-size:15px;text-transform:uppercase;font-weight:700;color:#12111b}.post__date::before{content:"";position:relative;bottom:0.2rem;display:inline-block;height:3px;width:3px;margin:0 .5rem 0 .5rem;border-radius:50%;background-color:#12111b}.post__content a{border-bottom:2px solid #02C4EC}.post__share{margin:50px 0}.post__share .share__list{display:flex;justify-content:center;align-items:center;flex-wrap:wrap}.post__share .share__item{margin-right:10px;text-align:center}.post__share .share__item:last-child{margin-right:0}.post__share .share__link{display:flex;align-items:center;justify-content:center;width:40px;height:40px;font-size:16px;line-height:1;border-radius:50%;color:#fff;transition:all 0.3s}.post__share .share__link .share-name::before{content:"";position:relative;top:0;display:inline-block;margin:0 8px;width:1px;height:9px;background-color:rgba(255,255,255,0.5)}.post__share .share__link.share__facebook{background-color:#3b5998}.post__share .share__link.share__facebook:hover{background-color:#2d4373}.post__share .share__link.share__twitter{background-color:#55acee}.post__share .share__link.share__twitter:hover{background-color:#2795e9}.post__share .share__link.share__linkedin{background-color:#0077b5}.post__share .share__link.share__linkedin:hover{background-color:#005582}.post__share .share__link.share__pinterest{background-color:#bd081c}.post__share .share__link.share__pinterest:hover{background-color:#8c0615}@media only screen and (max-width: 576px){.post__share{margin:30px 0}.post__share .share__item{margin-right:5px}.post__share .share__link{width:30px;height:30px;font-size:15px}}.related-posts{display:none}.related-posts.is-related{display:block}.related-title{margin-bottom:30px;padding-bottom:30px;font-size:24px;line-height:1;font-weight:800;border-bottom:1px solid #eee}.show-comments{text-align:center}.disqus-button{margin:50px 0;padding:20px 40px;border:1px solid #eee;background-color:#f1f1f1}.disqus-button:hover{background-color:#e4e4e4}@media only screen and (max-width: 576px){.disqus-button{margin:20px 0}}#disqus_thread iframe{margin:50px 0}@media only screen and (max-width: 576px){#disqus_thread iframe{margin:20px 0}}.page{position:relative;margin-bottom:30px}.page-title{font-size:63px;line-height:65px;font-weight:800;text-align:center}@media only screen and (max-width: 768px){.page-title{font-size:48px;line-height:50px}}@media only screen and (max-width: 576px){.page-title{margin-bottom:0;font-size:33px;line-height:35px}}.page-image{position:absolute;top:0;width:100%;height:100%;object-fit:contain;user-select:none}.image-box{position:relative;padding-top:50%;overflow:hidden;background-color:#f8f8f8}@media only screen and (max-width: 992px){.image-box{padding-top:55%}}@media only screen and (max-width: 768px){.image-box{padding-top:65%}}.page-head{margin:40px 0}@media only screen and (max-width: 576px){.page-head{margin:25px 0}}.page__content a{border-bottom:2px solid #02C4EC}.archive-box{position:relative;transform:translate(0);margin-bottom:20px;text-align:center;border-radius:8px;overflow:hidden}.archive-box::before{content:"";display:block;position:absolute;top:0;left:0;z-index:1;width:100%;height:100%;background:linear-gradient(rgba(0,0,0,0), rgba(53,53,53,0.7))}.archive-text{position:relative;z-index:5;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:8vw 20px;min-height:280px}.archive-meta{font-size:21px;font-weight:700;color:rgba(255,255,255,0.8)}.archive-title{margin:0;font-size:63px;line-height:45px;font-weight:800;color:#fff}@media only screen and (max-width: 576px){.archive-title{font-size:43px;line-height:38px}}.tag-slider{position:absolute;overflow:hidden;top:0;left:0;width:100%;height:100%}.tag-slider div{height:100%}.tag-slider .tag-slider__item{height:100%;background-position:center;background-size:cover;background-repeat:no-repeat}.contact-description{text-align:center}.form__group{margin-bottom:20px}.form__label{display:inline-block;margin-bottom:5px;font-family:"Raleway",sans-serif;font-size:16px;font-weight:600}.form__input{width:100%;padding:15px;font-family:"Raleway",sans-serif;font-size:18px;border:1px solid #e1e1e1;transition:all 0.3s}.form__input:focus{border-color:#02C4EC}textarea.form__input{resize:none}
</style>
<!-- Begin Jekyll SEO tag v2.7.1 -->
<title>Mongolia is running on fumes | Mongolian Data Stories</title>
<meta name="generator" content="Jekyll v4.2.0" />
<meta property="og:title" content="Mongolia is running on fumes" />
<meta name="author" content="Robert Ritz" />
<meta property="og:locale" content="en_US" />
<meta name="description" content="Just yesterday I learned that there has been a gasoline “shortage” for a few weeks in Mongolia. I put shortage in quotation marks because it seems the government and average citizens did not immediately agree on the reality of the situation." />
<meta property="og:description" content="Just yesterday I learned that there has been a gasoline “shortage” for a few weeks in Mongolia. I put shortage in quotation marks because it seems the government and average citizens did not immediately agree on the reality of the situation." />
<link rel="canonical" href="https://mongoliandatastories.com/Mongolias-fuel-shortage" />
<meta property="og:url" content="https://mongoliandatastories.com/Mongolias-fuel-shortage" />
<meta property="og:site_name" content="Mongolian Data Stories" />
<meta property="og:image" content="https://mongoliandatastories.com/images/fuel-shortage/cover.jpg" />
<meta property="og:type" content="article" />
<meta property="article:published_time" content="2021-09-21T00:00:00+08:00" />
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:image" content="https://mongoliandatastories.com/images/fuel-shortage/cover.jpg" />
<meta property="twitter:title" content="Mongolia is running on fumes" />
<script type="application/ld+json">
{"@type":"BlogPosting","image":"https://mongoliandatastories.com/images/fuel-shortage/cover.jpg","headline":"Mongolia is running on fumes","dateModified":"2021-09-21T00:00:00+08:00","datePublished":"2021-09-21T00:00:00+08:00","mainEntityOfPage":{"@type":"WebPage","@id":"https://mongoliandatastories.com/Mongolias-fuel-shortage"},"author":{"@type":"Person","name":"Robert Ritz"},"description":"Just yesterday I learned that there has been a gasoline “shortage” for a few weeks in Mongolia. I put shortage in quotation marks because it seems the government and average citizens did not immediately agree on the reality of the situation.","url":"https://mongoliandatastories.com/Mongolias-fuel-shortage","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
</head>
<body>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'G-E17DR95NKH', 'auto');
ga('send', 'pageview');
</script>
<!-- begin header -->
<header class="header">
<div class="container">
<div class="row">
<div class="header__inner col col-12">
<div class="logo">
<a class="logo__link" href="/">
Mongolian Data Stories
</a>
</div>
<div class="menu-overlay">
<nav class="main-nav">
<div class="main-nav__box">
<div class="nav__icon-close">
<i class="ion ion-md-close"></i>
</div>
<div class="nav-grid">
<div class="nav-grid__item">
<h2 class="nav-grid__title">Menu</h2>
<div class="mobile-nav">
<ul class="nav__list list-reset">
<li class="nav__item">
<a href="/" class="nav__link">Home</a>
</li>
<li class="nav__item">
<a href="/about/" class="nav__link">About</a>
</li>
<li class="nav__item">
<a href="/contact/" class="nav__link">Contact</a>
</li>
<li class="nav__item">
<a href="https://newsletter.mongoliandatastories.com/" target="_blank" rel="noopener noreferrer" class="nav__link">Newsletter</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</nav>
</div>
<div class="navigation">
<div class="top-nav">
<ul class="nav__list list-reset">
<li class="nav__item">
<a href="/" class="nav__link">Home</a>
</li>
<li class="nav__item">
<a href="/about/" class="nav__link">About</a>
</li>
<li class="nav__item">
<a href="/contact/" class="nav__link">Contact</a>
</li>
<li class="nav__item">
<a href="https://newsletter.mongoliandatastories.com/" target="_blank" rel="noopener noreferrer" class="nav__link">Newsletter</a>
</li>
</ul>
</div>
<div class="nav-buttons">
<i class="nav__icon nav__icon-menu ion ion-md-menu"></i>
<!-- <i class="nav__icon nav__icon-search ion ion-md-search"></i> -->
</div>
</div>
</div>
</div>
</div>
</header>
<!-- end header -->
<div class="search">
<div class="container">
<div class="row">
<div class="col col-12">
<div class="search__box">
<div class="search__close">
<i class="ion ion-md-close"></i>
</div>
<div class="search__group">
<label for="js-search-input" class="screen-reader-text">Search for Blog</label>
<input type="text" id="js-search-input" class="search__text" placeholder="Type to search...">
</div>
<div id="js-results-container" class="search-results-list"></div>
</div>
</div>
</div>
</div>
</div>
<!-- begin content -->
<main class="content" aria-label="Content">
<div class="container">
<div class="row">
<div class="col col-12">
<div class="image-box">
<img class="post-image" src="/images/fuel-shortage/cover.jpg" alt="Mongolia is running on fumes">
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col col-8 col-d-10 push-2 push-d-1 col-t-12 push-t-0">
<!-- begin post -->
<article class="post animate">
<div class="post-head">
<div class="post__author">
<span>By</span>
<a href="/about/" class="post__author-image" style="background-image: url(/images/robert-headshot.jpg)" aria-label="Robert Ritz's Picture"></a> <a href="/about/" class="post__author-link">Robert Ritz</a>
</div>
<h1 class="post-title">Mongolia is running on fumes</h1>
<div class="post__meta">
<div class="post-tags">
<a href="/tag/import" class="post-tags__tag">import</a>
<a href="/tag/economy" class="post-tags__tag">economy</a>
<a href="/tag/fuel" class="post-tags__tag">fuel</a>
<a href="/tag/gasoline" class="post-tags__tag">gasoline</a>
</div>
<span class="post__date">
<time datetime="2021-09-21T00:00:00+08:00">Sep 21, 2021</time>
</span>
</div>
</div>
<div class="post__content">
<p>Just yesterday I learned that there has been a gasoline “shortage” for a few weeks in Mongolia. I put shortage in quotation marks because it seems the government and average citizens did not immediately agree on the reality of the situation.</p>
<p>On September 14, 2021, the Mineral Resources and Petroleum Authority of Mongolia made a <a href="https://montsame.mn/mn/read/275097">statement</a> via the state news agency Montsame unequivocaly stating that there is no shortage of gasoline. This is heavily contrasted by reports on social media of limitations on purchases or outages at some stations.</p>
<blockquote class="twitter-tweet"><p lang="ru" dir="ltr">Хил гааль дээр хэдэн сараар гацсан бараа таваараа татаж чадахгүй, хэдэн колониуд нь бензиний нөөцөө барсан, ковидоор өвдсөн хүмүүст нь эмнэлэг олдохгүй, дарга эрх мэдэлтнүүд нь эзгүй.... бид дижитал үндэстэн <a href="https://t.co/2xxAd3ha80">pic.twitter.com/2xxAd3ha80</a></p>— Seku (@ganaasel) <a href="https://twitter.com/ganaasel/status/1440021463935840257?ref_src=twsrc%5Etfw">September 20, 2021</a></blockquote>
<script async="" src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<p>So what is the actual situation currently in Mongolia? As usual, I like to go to the actual data to see what the reality is.</p>
<h2 id="fuel-reserves">Fuel Reserves</h2>
<p>The Mineral Resources and Petroleum Authority of Mongolia (MRPAM) reports fuel reserves on a monthly basis, and has these reports going back to 2015. Unfortunately the reports are in PDF form, requiring a bit of copy pasting on my part to collect the last two years of data.</p>
<p><img src="/images/fuel-shortage/92-supply.png" alt="" /></p>
<p>We can see that the reserves of AI-92 fuel as of June 2021 are nearly 35% less than June 2020. It is also clear that during the fall reserves are reduced, most likely due to increased vehicle usage as people return to work from their summer vacations.</p>
<p>As far as I can determine the government has not said anything definitive about when imports of AI-92 slowed or stopped. The government did <a href="https://montsame.mn/mn/read/275719">release some information</a> about further dwindling reserves today (September 21, 2021), stating the central region has 4 days of fuel remaining. Other than a mention that no AI-92 fuel will be imported in September, it is not clear what the current import situation is.</p>
<p>Note: I chose to visualize AI-92 fuel as it is the most common fuel used in passenger vehicles in Mongolia. It is also the type of fuel nearly everyone is complaining about shortages of.</p>
<h4 id="reporting-irregularity">Reporting Irregularity</h4>
<p>Typically, the MRPAM posts the reserve statistics one month delayed, but it seems this year they have neglected to post any reserve statistics since July 22nd. By now we should be able to expect the reserve numbers for July and August to have been posted. As of the time of publishing, the government still has not released reserve or import statistics for July or August 2021.</p>
<p>In addition, an irregularity in the reporting popped up as I was going through these monthly reports. On all monthly reports, the MRPAM shows a yearly comparison on the fuel reserve chart, for example showing January 2021 vs January 2020. This allows the report reader to see how the reserves land year over year. This is a good comparison as consumer behavior follows a yearly pattern.</p>
<p>The latest report for June 2021 made a departure from this. Instead of showing a year over year comparison they compared June 2021 vs May 2021. This made the numbers look better on the chart, and conveniently hid the nearly 35% reduction in reserves year over year. The screenshot below from <a href="https://mrpam.gov.mn/public/pages/169/2021.06.stat.report.mon.pdf">Page 25 of the June 2021 report</a> shows this departure from the usual practice.</p>
<p><img src="/images/fuel-shortage/page25.png" alt="" /></p>
<h2 id="fuel-reserve-projection">Fuel Reserve Projection</h2>
<p>Given today’s announcement by the government, we know that the central region of Mongolia has only 4-5 days of fuel remaining. Nevertheless, it may be useful to understand how a fuel reserve projection could be made given imports, reserve numbers, and inferred usage.</p>
<p>MRPAM releases import numbers by fuel type alongside the reserve numbers.</p>
<p><img src="/images/fuel-shortage/import-table.png" alt="" /></p>
<p>A few minutes of copy pasting later I was able to create a nice table with reserves and imports for AI-92. I then took the previous months reserves, added it to the current months imports, and subtracted the current months reserves. This should give us a reasonable estimate of actual usage of AI-92 during that month.</p>
<p><img src="/images/fuel-shortage/est_usage.svg" alt="" /></p>
<p>We can also determine the available reserves at the end of the month given a very similar formula.</p>
<p><img src="/images/fuel-shortage/est_reserve.svg" alt="" /></p>
<p>To extrapolate forward I looked at several different import scenarios where the imports are a <em>percentage of the values from 2020</em>. We will forecast forward using 75%, 85%, and 95% of the import levels from July 2020 to December 2020. We will assume the same level of fuel usage from July 2020 to December 2020.</p>
<p>Stepping forward each month we can do the process listed above and get a projection of AI-92 reserves at the end of each month for each of these scenarios. Keep in mind the projection below assumes 2020 levels of consumption and are based on a percentage of imports from the corresponding month in 2020.</p>
<p><img src="/images/fuel-shortage/projected-92-reserves.png" alt="" /></p>
<p>At 85% of 2020 imports we see reserves emptying in September. At 95% reserves go negative in October and rise again positive in November. Only at 100% of 2020 import levels do the reserves stay above 0. The already lowered reserves from late summer seem to be exacerbating the current import issues.</p>
<p>It is very clear that without imports equal to or larger than 2020 Mongolia’s AI-92 fuel reserve will continue to be near zero for a few months. Of course these projections aren’t a guarantee of what will happen. They are merely scenarios based on past data that we can use to better understand the current situation. I hope you find them useful.</p>
<h2 id="hiding-risk">Hiding Risk</h2>
<p>It seems fairly clear from the analysis above that the current shortage of fuel could have been seen as early as July/August this year. Reserves were so far off their usual level that it was a clear signal of risk. Of course this was a sensitive time politically as back to school preparations began. The government seemed to clearly be trying to exhibit a sense of stability and preparation ahead of the usual fall rush in the city and around the country.</p>
<p>It is important to remember that in December 2020 Mongolia had a <a href="https://mongoliandatastories.com/Australias-loss-Mongolias-gain-coal">large opportunity</a> to significantly increase coal exports to China. China recently banned the import of coal from Australia, giving Mongolia an obvious advantage. Due to COVID-19 outbreaks and customs issues, Mongolia seems to have squandered that opportunity.</p>
<p>You can find the code, data, and Excel spreadsheet for the projections above on the site Github page <a href="https://github.com/robertritz/mongoliandatastories/tree/main/notebooks/Fuel-Shortage">here</a>.</p>
<hr />
<h4 id="mds-newsletter">MDS Newsletter</h4>
<p>Thank you for reading. Mongolian Data Stories has a free newsletter! To receive new articles straight to your inbox so you never miss out, <a href="https://www.getrevue.co/profile/mongoliandatastories">click here to sign up</a>.</p>
</div>
<div class="post__share">
<ul class="share__list list-reset">
<li class="share__item">
<a class="share__link share__facebook" href="https://www.facebook.com/sharer/sharer.php?u=https://mongoliandatastories.com/Mongolias-fuel-shortage"
onclick="window.open(this.href, 'pop-up', 'left=20,top=20,width=500,height=500,toolbar=1,resizable=0'); return false;"
title="Share on Facebook" rel="nofollow"><i class="ion ion-logo-facebook"></i></a>
</li>
<li class="share__item">
<a class="share__link share__twitter" href="https://twitter.com/intent/tweet?text=Mongolia%20is%20running%20on%20fumes&url=https://mongoliandatastories.com/Mongolias-fuel-shortage"
onclick="window.open(this.href, 'pop-up', 'left=20,top=20,width=500,height=500,toolbar=1,resizable=0'); return false;"
title="Share on Twitter" rel="nofollow"><i class="ion ion-logo-twitter"></i></a>
</li>
<li class="share__item">
<a class="share__link share__linkedin" href="https://www.linkedin.com/shareArticle?mini=true&url=https://mongoliandatastories.com/Mongolias-fuel-shortage&title=Mongolia%20is%20running%20on%20fumes&summary=&source=Mongolian%20Data%20Stories"
onclick="window.open(this.href, 'pop-up', 'left=20,top=20,width=500,height=500,toolbar=1,resizable=0'); return false;" title="Share on LinkedIn" rel="nofollow"><i class="ion ion-logo-linkedin"></i></a>
</li>
<li class="share__item">
<a class="share__link share__pinterest" href="http://pinterest.com/pin/create/button/?url=https://mongoliandatastories.com/Mongolias-fuel-shortage&media=https://mongoliandatastories.com/images/fuel-shortage/cover.jpg&description=Mongolia%20is%20running%20on%20fumes"
onclick="window.open(this.href, 'pop-up', 'left=20,top=20,width=900,height=500,toolbar=1,resizable=0'); return false;" title="Share on Pinterest"
rel="nofollow"><i class="ion ion-logo-pinterest"></i></a>
</li>
</ul>
</div>
</article>
<!-- end post -->
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col col-8 col-d-10 push-2 push-d-1 col-t-12 push-t-0">
<!-- begin comments -->
<div class="post__comments" id="disqus_thread"></div>
<div class="show-comments">
<button class="disqus-button button" id="show-comments-button" onclick="disqus();return false;">Comments</button>
</div>
<script>
var disqus_loaded = false;
var disqus_shortname = 'en-mongoliandatastories';
function disqus() {
if (!disqus_loaded) {
disqus_loaded = true;
var e = document.createElement("script");
e.type = "text/javascript";
e.async = true;
e.src = "//" + disqus_shortname + ".disqus.com/embed.js";
(document.getElementsByTagName("head")[0] ||
document.getElementsByTagName("body")[0])
.appendChild(e);
// Hide the button after opening
document.getElementById("show-comments-button").style.display = "none";
}
}
window.addEventListener('scroll', function(e) {
var currentScroll = document.scrollingElement.scrollTop;
var disqus_target = document.getElementById('disqus_thread');
if( disqus_target && (currentScroll > disqus_target.getBoundingClientRect().top - 150) ) {
disqus();
console.log('Disqus loaded.');
}
}, false);
</script>
<noscript>Please enable JavaScript to view the
<a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a>
</noscript>
<!-- end comments -->
</div>
</div>
</div>
<div class="container">
<div class="related-posts section is-related">
<h5 class="related-title">You may also like</h5>
<div class="row grid">
<div class="article col col-4 col-t-12 grid__post animate">
<div class="article__inner">
<a class="article__image" href="/2021-wrap-up">
<img src="/images/economic-stratification/ub-night.png" alt="2021 Wrap-Up - Are Mongolians richer today than in 2011?">
</a>
<div class="article__content">
<div class="article__author">
<a href="/about/" class="article__author-image"
style="background-image: url(/images/robert-headshot.jpg)"
aria-label="Robert Ritz's Picture"></a> <a href="/about/"
class="article__author-link">Robert Ritz</a>
</div>
<h2 class="article__title">
<a href="/2021-wrap-up">2021 Wrap-Up - Are Mongolians richer today than in 2011?</a>
</h2>
<div class="article__meta">
<div class="article-tags">
<div class="article-tags__box">
<a href="/tag/economy" class="article__tag">economy</a>
</div>
</div>
<span class="article__date"><time
datetime="2021-12-31T00:00:00+08:00">Dec 31, 2021</time></span>
</div>
</div>
</div>
</div>
<div class="article col col-4 col-t-12 grid__post animate">
<div class="article__inner">
<a class="article__image" href="/UB-Market-Price-Analysis">
<img src="/images/market_prices/market_cover.jpg" alt="Which grocery store in Ulaanbaatar is cheapest?">
</a>
<div class="article__content">
<div class="article__author">
<a href="/about/" class="article__author-image"
style="background-image: url(/images/robert-headshot.jpg)"
aria-label="Robert Ritz's Picture"></a> <a href="/about/"
class="article__author-link">Robert Ritz</a>
</div>
<h2 class="article__title">
<a href="/UB-Market-Price-Analysis">Which grocery store in Ulaanbaatar is cheapest?</a>
</h2>
<div class="article__meta">
<div class="article-tags">
<div class="article-tags__box">
<a href="/tag/ulaanbaatar" class="article__tag">ulaanbaatar</a>
<a href="/tag/economy" class="article__tag">economy</a>
<a href="/tag/prices" class="article__tag">prices</a>
</div>
</div>
<span class="article__date"><time
datetime="2021-12-01T00:00:00+08:00">Dec 1, 2021</time></span>
</div>
</div>
</div>
</div>
<div class="article col col-4 col-t-12 grid__post animate">
<div class="article__inner">
<a class="article__image" href="/Apartment-Price-Income-Ratio">
<img src="/images/apartment-price-income-ratio/apartment-skyline.jpg" alt="The rent is too darn high. Right?">
</a>
<div class="article__content">
<div class="article__author">
<a href="/about/" class="article__author-image"
style="background-image: url(/images/robert-headshot.jpg)"
aria-label="Robert Ritz's Picture"></a> <a href="/about/"
class="article__author-link">Robert Ritz</a>
</div>
<h2 class="article__title">
<a href="/Apartment-Price-Income-Ratio">The rent is too darn high. Right?</a>
</h2>
<div class="article__meta">
<div class="article-tags">
<div class="article-tags__box">
<a href="/tag/apartments" class="article__tag">apartments</a>
<a href="/tag/housing" class="article__tag">housing</a>
<a href="/tag/salary" class="article__tag">salary</a>
<a href="/tag/economy" class="article__tag">economy</a>
</div>
</div>
<span class="article__date"><time
datetime="2021-10-07T00:00:00+08:00">Oct 7, 2021</time></span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
<!-- end content -->
<div class="top" title="Top"><i class="ion ion-ios-arrow-up"></i></div>
<!-- begin footer-widgets -->
<div class="footer-widgets">
<div class="container">
<div class="row">
<div class="col col-4 col-d-6 col-t-12">
<div class="widget widget-info">
<div class="footer-logo">
<a href="/" class="footer-logo__link">
Mongolian Data Stories
</a>
</div>
<p class="footer-desc">Telling Mongolia's story through data.</p>
<div class="social">
<ul class="social__list list-reset">
<li class="social__item">
<a class="social__link" href="https://twitter.com/MglDataStories" target="_blank"><i class="ion ion-logo-twitter"></i></a>
</li>
</ul>
</div>
</div>
</div>
<div class="col col-4 col-d-6 col-t-12">
<div class="widget widget-recent">
<div class="widget__head">
<h4 class="widget__title">Recent Posts</h4>
</div>
<div class="recent-posts">
<a class="recent-posts__image" href="/Household-income-by-children"
style="background-image: url(/images/wages_by_children/baby_hand.jpg)"></a>
<div class="recent-posts__content">
<div class="recent-posts__date">
<time datetime="2022-01-30T00:00:00+08:00">Jan 30, 2022</time>
</div>
<h6 class="recent-posts__title"><a href="/Household-income-by-children">Do families with more children make less money?</a></h6>
</div>
</div>
<div class="recent-posts">
<a class="recent-posts__image" href="/2021-wrap-up"
style="background-image: url(/images/economic-stratification/ub-night.png)"></a>
<div class="recent-posts__content">
<div class="recent-posts__date">
<time datetime="2021-12-31T00:00:00+08:00">Dec 31, 2021</time>
</div>
<h6 class="recent-posts__title"><a href="/2021-wrap-up">2021 Wrap-Up - Are Mongolians richer today than in 2011?</a></h6>
</div>
</div>
</div>
</div>
<!--
<div class="col col-4 col-d-6 col-t-12">
<div class="widget widget-subscribe">
<div class="widget__head">
<h4 class="widget__title">Newsletter</h4>
</div>
<p class="subscribe-subtitle">Signup to receive new data stories in your email.</p>
<form class="subscribe-form validate"
action="#" method="POST"
id="membedded-subscribe-form" name="membedded-subscribe-form" target="_blank" novalidate>
<div class="subscribe-group">
<div class="subscribe-group-top">
<label class="screen-reader-text" for="mce-EMAIL">Email address <span class="asterisk">*</span></label>
<input class="subscribe-email required email" id="mce-EMAIL" type="text" name="EMAIL" placeholder="Email Address*">
</div>
<div class="subscribe-group-top">
<label class="screen-reader-text" for="mce-NAME">Name</label>
<input class="subscribe-email" type="text" name="NAME" placeholder="Name" id="mce-NAME">
</div>
<div style="display:None">
<ul>
<li><input type="checkbox" value="1" name="group[378690][1]" id="mce-group[378690]-378690-0" checked><label for="mce-group[378690]-378690-0">English</label></li>
<li><input type="checkbox" value="2" name="group[378690][2]" id="mce-group[378690]-378690-1"><label for="mce-group[378690]-378690-1">Mongolian</label></li>
</ul>
</div>
<div>
<button class="subscribe-button button button--primary" id="membedded-subscribe" type="submit"
name="subscribe">Subscribe</button>
</div>
</div>
</form>
</div>
</div>
-->
</div>
</div>
</div>
<!-- end footer-widgets -->
<!-- begin footer -->
<footer class="footer">
<div class="container">
<div class="row">
<div class="col col-12">
<div class="copyright">2022 © <a href="/">Mongolian Data Stories</a>.</div>
</div>
</div>
</div>
</footer>
<!-- end footer -->
<script src="/js/vendors/jquery-3.3.1.min.js"></script>
<script src="/js/vendors/simple-jekyll-search.min.js"></script>
<script>
SimpleJekyllSearch({
searchInput: document.getElementById("js-search-input"),
resultsContainer: document.getElementById("js-results-container"),
json: "/search.json",
searchResultTemplate: '<div class="search-results__item"><a class="search-results__image" href="{url}" style="background-image: url({image})"></a> <a class="search-results__link" href="{url}"><span class="search-results-date"> <time datetime="{date}">{date}</time></span><div class="result-title">{title}</div></a></div>',
noResultsText: '<li class="no-results"><h3>No results found</h3></li>'
});
</script>
<script src="/js/vendors/jquery.fitvids.js"></script>
<script src="/js/vendors/transition.js"></script>
<script src="/js/vendors/zoom.min.js"></script>
<script src="/js/vendors/slick.min.js"></script>
<script src="/js/common.js"></script>
<script>
var base_url = "",
pagination_next_url = base_url + '/page2',
pagination_next_page_number = '',
pagination_available_pages_number = '';
</script>
</body>