-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdxn.html
1368 lines (1346 loc) · 156 KB
/
dxn.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 dir='rtl' lang='ar' 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='../../../external.html?link=http://www.google.com/2005/gml/expr'>
<!-- Mirrored from aymnal.blogspot.com/2022/01/dxn.html by HTTrack Website Copier/3.x [XR&CO'2017], Mon, 10 Oct 2022 12:03:41 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=UTF-8" /><!-- /Added by HTTrack -->
<head prefix='og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# article: http://ogp.me/ns/article#'>
<meta content='s3hmYlHQe3GIfn7TT-f4mdMtZ6OMju-d8DMESmnFn5w' name='google-site-verification'/>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async='async' src='../../../external.html?link=https://www.googletagmanager.com/gtag/js?id=G-VCQYNV8BNF'></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-VCQYNV8BNF');
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async='async' src='../../../external.html?link=https://www.googletagmanager.com/gtag/js?id=G-8E4PFDNN1P'></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-8E4PFDNN1P');
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async='async' src='../../../external.html?link=https://www.googletagmanager.com/gtag/js?id=G-8E4PFDNN1P'></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-8E4PFDNN1P');
</script>
<script async='async' custom-element='amp-auto-ads' src='../../../external.html?link=https://cdn.ampproject.org/v0/amp-auto-ads-0.1.js'>
</script>
<script async='async' crossorigin='anonymous' src='../../../external.html?link=https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-9742139951555584'></script>
<script async='async' crossorigin='anonymous' src='../../../external.html?link=https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-7665145534978149'></script>
<script async='async' crossorigin='anonymous' src='../../../external.html?link=https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-7665145534978149'></script>
<script async='async' custom-element='amp-auto-ads' src='../../../external.html?link=https://cdn.ampproject.org/v0/amp-auto-ads-0.1.js'>
</script>
<script async='async' custom-element='amp-auto-ads' src='../../../external.html?link=https://cdn.ampproject.org/v0/amp-auto-ads-0.1.js'>
</script>
<!-- Defult metatags -->
<link href='dxn.html' rel='canonical'/>
<link href='../../favicon.ico' rel='icon' type='image/x-icon'/>
<meta content='width=device-width, initial-scale=1.0, shrink-to-fit=no' name='viewport'/>
<title>ماهي شركه dxn</title>
<meta content='3199397239271129121' id='gels'/>
<meta content='#3560ab' name='theme-color'/>
<meta content='#3560ab' name='msapplication-navbutton-color'/>
<link rel="alternate" type="application/atom+xml" title="حلول متكامله لحياه افضل الصحه والثراء المالي - Atom" href="../../index40aa.html" />
<link rel="alternate" type="application/rss+xml" title="حلول متكامله لحياه افضل الصحه والثراء المالي - RSS" href="../../index40aa.html" />
<link rel="service.post" type="application/atom+xml" title="حلول متكامله لحياه افضل الصحه والثراء المالي - Atom" href="../../../external.html?link=https://www.blogger.com/feeds/3199397239271129121/posts/default" />
<link rel="alternate" type="application/atom+xml" title="حلول متكامله لحياه افضل الصحه والثراء المالي - Atom" href="../../feeds/5076432662343064404/comments/default" />
<meta content='حلول متكامله لحياه افضل الصحه والثراء المالي' name='description'/>
<meta content='https://aymnal.blogspot.com/2022/01/dxn.html' property='og:url'/>
<meta content='ماهي شركه dxn' name='twitter:title' property='og:title'/>
<meta content='حلول متكامله لحياه افضل الصحه والثراء المالي' name='twitter:description' property='og:description'/>
<meta content='ماهي شركه dxn' property='og:title'/>
<meta content='حلول متكامله لحياه افضل الصحه والثراء المالي' property='og:description'/>
<meta content='https://blogger.googleusercontent.com/img/a/AVvXsEj_aoCJjK2B3RiBJQpjJM96aAUYQpfNK7I_dBibJLax1Pc-Uwkhi5vxKpwFEoO4YAovAr5EFFaiQhx1adxyoHqWP_--BRCL7wVkhPOb_KKlMzhzBB53iVh-aeUf5h_BJhIiWj6AVj2kZs7oljZRmidy65vjg-gpMZ_s8TTD9jf5tXKVCE7mjMIEMW2h=w1200-h630-p-k-no-nu' name='twitter:image' property='og:image'/>
<meta content='https://blogger.googleusercontent.com/img/a/AVvXsEj_aoCJjK2B3RiBJQpjJM96aAUYQpfNK7I_dBibJLax1Pc-Uwkhi5vxKpwFEoO4YAovAr5EFFaiQhx1adxyoHqWP_--BRCL7wVkhPOb_KKlMzhzBB53iVh-aeUf5h_BJhIiWj6AVj2kZs7oljZRmidy65vjg-gpMZ_s8TTD9jf5tXKVCE7mjMIEMW2h=w1200-h630-p-k-no-nu' property='og:image'/>
<meta content='600' property='og:image:width'/>
<meta content='315' property='og:image:height'/>
<meta content='summary_large_image' name='twitter:card'/>
<meta content='article' property='og:type'/>
<meta content='حلول متكامله لحياه افضل الصحه والثراء المالي' name='twitter:domain' property='og:site_name'/>
<link href='dxn.html' rel='dns-prefetch'/><link href='../../../external.html?link=http://www.blogger.com/' rel='dns-prefetch'/><link href='../../../external.html?link=http://1.bp.blogspot.com/' rel='dns-prefetch'/><link href='../../../external.html?link=http://2.bp.blogspot.com/' rel='dns-prefetch'/><link href='../../../external.html?link=http://3.bp.blogspot.com/' rel='dns-prefetch'/><link href='../../../external.html?link=http://4.bp.blogspot.com/' rel='dns-prefetch'/><link href='../../../external.html?link=http://pagead2.googlesyndication.com/' rel='dns-prefetch'/><link href='../../../external.html?link=http://accounts.google.com/' rel='dns-prefetch'/><link href='../../../external.html?link=http://resources.blogblog.com/' rel='dns-prefetch'/><link href='../../../external.html?link=http://www.google.com/' rel='dns-prefetch'/><link href='../../../external.html?link=http://ajax.googleapis.com/' rel='dns-prefetch'/><link href='../../../external.html?link=http://fonts.googleapis.com/' rel='dns-prefetch'/>
<!-- Required -->
<meta content='' name='twitter:site'/>
<meta content='' name='twitter:creator'/>
<meta content='' property='fb:pages'/>
<meta content='' property='fb:app_id'/>
<meta content='' property='fb:admins'/>
<link href='#' rel='publisher'/>
<!-- Template Skin -->
<style id='page-skin-1' type='text/css'><!--
/*
Seoplus Blogger Template Free
developers: https://www.seoplus.dev/
Version : 5
Updated : 18 May, 2020
information: https://www.seoplus-template.com/
Facebook: https://www.facebook.com/SeoPlusDev/
*/
/*=================
Icons Svg
===================*/
.Sp-Normal .moreLink:before, .post-outer .moreLink:before, a.Lapel-Link:before, a.thumb.not-pl:after {background: no-repeat center url("data:image/svg+xml;charset=utf8,%3Csvg aria-hidden='true' focusable='false' data-prefix='fal' data-icon='external-link-alt' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23fff' d='M440,256H424a8,8,0,0,0-8,8V464a16,16,0,0,1-16,16H48a16,16,0,0,1-16-16V112A16,16,0,0,1,48,96H248a8,8,0,0,0,8-8V72a8,8,0,0,0-8-8H48A48,48,0,0,0,0,112V464a48,48,0,0,0,48,48H400a48,48,0,0,0,48-48V264A8,8,0,0,0,440,256ZM480,0h-.06L383.78.17c-28.45,0-42.66,34.54-22.58,54.62l35.28,35.28-265,265a12,12,0,0,0,0,17l8.49,8.49a12,12,0,0,0,17,0l265-265,35.28,35.27c20,20,54.57,6,54.62-22.57L512,32.05A32,32,0,0,0,480,0Zm-.17,128.17-96-96L480,32Z'%3E%3C/path%3E%3C/svg%3E")}
.recent-comments .comment .leave-comm:before, .bottomaa:after {background: no-repeat center url("data:image/svg+xml;charset=utf8,%3Csvg aria-hidden='true' focusable='false' data-prefix='fal' data-icon='external-link-alt' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%236f6f6f' d='M440,256H424a8,8,0,0,0-8,8V464a16,16,0,0,1-16,16H48a16,16,0,0,1-16-16V112A16,16,0,0,1,48,96H248a8,8,0,0,0,8-8V72a8,8,0,0,0-8-8H48A48,48,0,0,0,0,112V464a48,48,0,0,0,48,48H400a48,48,0,0,0,48-48V264A8,8,0,0,0,440,256ZM480,0h-.06L383.78.17c-28.45,0-42.66,34.54-22.58,54.62l35.28,35.28-265,265a12,12,0,0,0,0,17l8.49,8.49a12,12,0,0,0,17,0l265-265,35.28,35.27c20,20,54.57,6,54.62-22.57L512,32.05A32,32,0,0,0,480,0Zm-.17,128.17-96-96L480,32Z'%3E%3C/path%3E%3C/svg%3E");}
.icon.fa-reddit,.fa.fa-reddit {background: no-repeat center url("data:image/svg+xml;charset=utf8,%3Csvg aria-hidden='true' focusable='false' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23fff' d='M440.3 203.5c-15 0-28.2 6.2-37.9 15.9-35.7-24.7-83.8-40.6-137.1-42.3L293 52.3l88.2 19.8c0 21.6 17.6 39.2 39.2 39.2 22 0 39.7-18.1 39.7-39.7s-17.6-39.7-39.7-39.7c-15.4 0-28.7 9.3-35.3 22l-97.4-21.6c-4.9-1.3-9.7 2.2-11 7.1L246.3 177c-52.9 2.2-100.5 18.1-136.3 42.8-9.7-10.1-23.4-16.3-38.4-16.3-55.6 0-73.8 74.6-22.9 100.1-1.8 7.9-2.6 16.3-2.6 24.7 0 83.8 94.4 151.7 210.3 151.7 116.4 0 210.8-67.9 210.8-151.7 0-8.4-.9-17.2-3.1-25.1 49.9-25.6 31.5-99.7-23.8-99.7zM129.4 308.9c0-22 17.6-39.7 39.7-39.7 21.6 0 39.2 17.6 39.2 39.7 0 21.6-17.6 39.2-39.2 39.2-22 .1-39.7-17.6-39.7-39.2zm214.3 93.5c-36.4 36.4-139.1 36.4-175.5 0-4-3.5-4-9.7 0-13.7 3.5-3.5 9.7-3.5 13.2 0 27.8 28.5 120 29 149 0 3.5-3.5 9.7-3.5 13.2 0 4.1 4 4.1 10.2.1 13.7zm-.8-54.2c-21.6 0-39.2-17.6-39.2-39.2 0-22 17.6-39.7 39.2-39.7 22 0 39.7 17.6 39.7 39.7-.1 21.5-17.7 39.2-39.7 39.2z'%3E%3C/path%3E%3C/svg%3E");}
.fa-facebook, .facebook .topaa:before{background:no-repeat center url("data:image/svg+xml;charset=utf8,%3Csvg aria-hidden='true' data-prefix='fab' data-icon='facebook-f' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 264 512' class='svg-inline--fa fa-facebook-f fa-w-9'%3E%3Cpath fill='%23fff' d='M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229' class=''%3E%3C/path%3E%3C/svg%3E")}
.fa-twitter, .twitter .topaa:before{background:no-repeat center url("data:image/svg+xml;charset=utf8,%3Csvg aria-hidden='true' data-prefix='fab' data-icon='twitter' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='svg-inline--fa fa-twitter fa-w-16'%3E%3Cpath fill='%23fff' d='M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z' class=''%3E%3C/path%3E%3C/svg%3E")}
.fa-tumblr {background: no-repeat center url("data:image/svg+xml;charset=utf8,%3Csvg aria-hidden='true' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512' %3E%3Cpath fill='%23fff' d='M309.8 480.3c-13.6 14.5-50 31.7-97.4 31.7-120.8 0-147-88.8-147-140.6v-144H17.9c-5.5 0-10-4.5-10-10v-68c0-7.2 4.5-13.6 11.3-16 62-21.8 81.5-76 84.3-117.1.8-11 6.5-16.3 16.1-16.3h70.9c5.5 0 10 4.5 10 10v115.2h83c5.5 0 10 4.4 10 9.9v81.7c0 5.5-4.5 10-10 10h-83.4V360c0 34.2 23.7 53.6 68 35.8 4.8-1.9 9-3.2 12.7-2.2 3.5.9 5.8 3.4 7.4 7.9l22 64.3c1.8 5 3.3 10.6-.4 14.5z' class=''%3E%3C/path%3E%3C/svg%3E");}
.fa-whatsapp {background: no-repeat center url("data:image/svg+xml;charset=utf8,%3Csvg aria-hidden='true' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' %3E%3Cpath fill='%23fff' d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z' class=''%3E%3C/path%3E%3C/svg%3E");}
.fa-youtube {background: no-repeat center url("data:image/svg+xml;charset=utf8,%3Csvg aria-hidden='true' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512' %3E%3Cpath fill='%23fff' d='M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z' class=''%3E%3C/path%3E%3C/svg%3E");}
.fa-behance {background: no-repeat center url("data:image/svg+xml;charset=utf8,%3Csvg aria-hidden='true' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512' %3E%3Cpath fill='%23fff' d='M232 237.2c31.8-15.2 48.4-38.2 48.4-74 0-70.6-52.6-87.8-113.3-87.8H0v354.4h171.8c64.4 0 124.9-30.9 124.9-102.9 0-44.5-21.1-77.4-64.7-89.7zM77.9 135.9H151c28.1 0 53.4 7.9 53.4 40.5 0 30.1-19.7 42.2-47.5 42.2h-79v-82.7zm83.3 233.7H77.9V272h84.9c34.3 0 56 14.3 56 50.6 0 35.8-25.9 47-57.6 47zm358.5-240.7H376V94h143.7v34.9zM576 305.2c0-75.9-44.4-139.2-124.9-139.2-78.2 0-131.3 58.8-131.3 135.8 0 79.9 50.3 134.7 131.3 134.7 61.3 0 101-27.6 120.1-86.3H509c-6.7 21.9-34.3 33.5-55.7 33.5-41.3 0-63-24.2-63-65.3h185.1c.3-4.2.6-8.7.6-13.2zM390.4 274c2.3-33.7 24.7-54.8 58.5-54.8 35.4 0 53.2 20.8 56.2 54.8H390.4z' class=''%3E%3C/path%3E%3C/svg%3E");}
.fa-flickr {background: no-repeat center url("data:image/svg+xml;charset=utf8,%3Csvg aria-hidden='true' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' %3E%3Cpath fill='%23fff' d='M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM144.5 319c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5zm159 0c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5z' class=''%3E%3C/path%3E%3C/svg%3E");}
.fa-blogger {background: no-repeat center url("data:image/svg+xml;charset=utf8,%3Csvg aria-hidden='true' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' %3E%3Cpath fill='%23fff' d='M446.6 222.7c-1.8-8-6.8-15.4-12.5-18.5-1.8-1-13-2.2-25-2.7-20.1-.9-22.3-1.3-28.7-5-10.1-5.9-12.8-12.3-12.9-29.5-.1-33-13.8-63.7-40.9-91.3-19.3-19.7-40.9-33-65.5-40.5-5.9-1.8-19.1-2.4-63.3-2.9-69.4-.8-84.8.6-108.4 10C45.9 59.5 14.7 96.1 3.3 142.9 1.2 151.7.7 165.8.2 246.8c-.6 101.5.1 116.4 6.4 136.5 15.6 49.6 59.9 86.3 104.4 94.3 14.8 2.7 197.3 3.3 216 .8 32.5-4.4 58-17.5 81.9-41.9 17.3-17.7 28.1-36.8 35.2-62.1 4.9-17.6 4.5-142.8 2.5-151.7zm-322.1-63.6c7.8-7.9 10-8.2 58.8-8.2 43.9 0 45.4.1 51.8 3.4 9.3 4.7 13.4 11.3 13.4 21.9 0 9.5-3.8 16.2-12.3 21.6-4.6 2.9-7.3 3.1-50.3 3.3-26.5.2-47.7-.4-50.8-1.2-16.6-4.7-22.8-28.5-10.6-40.8zm191.8 199.8l-14.9 2.4-77.5.9c-68.1.8-87.3-.4-90.9-2-7.1-3.1-13.8-11.7-14.9-19.4-1.1-7.3 2.6-17.3 8.2-22.4 7.1-6.4 10.2-6.6 97.3-6.7 89.6-.1 89.1-.1 97.6 7.8 12.1 11.3 9.5 31.2-4.9 39.4z' class=''%3E%3C/path%3E%3C/svg%3E");}
.fa-wordpress {background: no-repeat center url("data:image/svg+xml;charset=utf8,%3Csvg aria-hidden='true' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' %3E%3Cpath fill='%23fff' d='M256 8C119.3 8 8 119.2 8 256c0 136.7 111.3 248 248 248s248-111.3 248-248C504 119.2 392.7 8 256 8zM33 256c0-32.3 6.9-63 19.3-90.7l106.4 291.4C84.3 420.5 33 344.2 33 256zm223 223c-21.9 0-43-3.2-63-9.1l66.9-194.4 68.5 187.8c.5 1.1 1 2.1 1.6 3.1-23.1 8.1-48 12.6-74 12.6zm30.7-327.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-21.9 0-58.7-2.8-58.7-2.8-12-.7-13.4 17.7-1.4 18.4 0 0 11.4 1.4 23.4 2.1l34.7 95.2L200.6 393l-81.2-241.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-4.2 0-9.1-.1-14.4-.3C109.6 73 178.1 33 256 33c58 0 110.9 22.2 150.6 58.5-1-.1-1.9-.2-2.9-.2-21.9 0-37.4 19.1-37.4 39.6 0 18.4 10.6 33.9 21.9 52.3 8.5 14.8 18.4 33.9 18.4 61.5 0 19.1-7.3 41.2-17 72.1l-22.2 74.3-80.7-239.6zm81.4 297.2l68.1-196.9c12.7-31.8 17-57.2 17-79.9 0-8.2-.5-15.8-1.5-22.9 17.4 31.8 27.3 68.2 27.3 107 0 82.3-44.6 154.1-110.9 192.7z' class=''%3E%3C/path%3E%3C/svg%3E");}
.fa-tumblr {background: no-repeat center url("data:image/svg+xml;charset=utf8,%3Csvg aria-hidden='true' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512' %3E%3Cpath fill='%23fff' d='M309.8 480.3c-13.6 14.5-50 31.7-97.4 31.7-120.8 0-147-88.8-147-140.6v-144H17.9c-5.5 0-10-4.5-10-10v-68c0-7.2 4.5-13.6 11.3-16 62-21.8 81.5-76 84.3-117.1.8-11 6.5-16.3 16.1-16.3h70.9c5.5 0 10 4.5 10 10v115.2h83c5.5 0 10 4.4 10 9.9v81.7c0 5.5-4.5 10-10 10h-83.4V360c0 34.2 23.7 53.6 68 35.8 4.8-1.9 9-3.2 12.7-2.2 3.5.9 5.8 3.4 7.4 7.9l22 64.3c1.8 5 3.3 10.6-.4 14.5z' class=''%3E%3C/path%3E%3C/svg%3E");}
.fa-telegram {background: no-repeat center url("data:image/svg+xml;charset=utf8,%3Csvg aria-hidden='true' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' %3E%3Cpath fill='%23fff' d='M446.7 98.6l-67.6 318.8c-5.1 22.5-18.4 28.1-37.3 17.5l-103-75.9-49.7 47.8c-5.5 5.5-10.1 10.1-20.7 10.1l7.4-104.9 190.9-172.5c8.3-7.4-1.8-11.5-12.9-4.1L117.8 284 16.2 252.2c-22.1-6.9-22.5-22.1 4.6-32.7L418.2 66.4c18.4-6.9 34.5 4.1 28.5 32.2z' class=''%3E%3C/path%3E%3C/svg%3E");}
.fa-skype {background: no-repeat center url("data:image/svg+xml;charset=utf8,%3Csvg aria-hidden='true' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' %3E%3Cpath fill='%23fff' d='M424.7 299.8c2.9-14 4.7-28.9 4.7-43.8 0-113.5-91.9-205.3-205.3-205.3-14.9 0-29.7 1.7-43.8 4.7C161.3 40.7 137.7 32 112 32 50.2 32 0 82.2 0 144c0 25.7 8.7 49.3 23.3 68.2-2.9 14-4.7 28.9-4.7 43.8 0 113.5 91.9 205.3 205.3 205.3 14.9 0 29.7-1.7 43.8-4.7 19 14.6 42.6 23.3 68.2 23.3 61.8 0 112-50.2 112-112 .1-25.6-8.6-49.2-23.2-68.1zm-194.6 91.5c-65.6 0-120.5-29.2-120.5-65 0-16 9-30.6 29.5-30.6 31.2 0 34.1 44.9 88.1 44.9 25.7 0 42.3-11.4 42.3-26.3 0-18.7-16-21.6-42-28-62.5-15.4-117.8-22-117.8-87.2 0-59.2 58.6-81.1 109.1-81.1 55.1 0 110.8 21.9 110.8 55.4 0 16.9-11.4 31.8-30.3 31.8-28.3 0-29.2-33.5-75-33.5-25.7 0-42 7-42 22.5 0 19.8 20.8 21.8 69.1 33 41.4 9.3 90.7 26.8 90.7 77.6 0 59.1-57.1 86.5-112 86.5z' class=''%3E%3C/path%3E%3C/svg%3E");}
.fa-sitemap {background: no-repeat center url("data:image/svg+xml;charset=utf8,%3Csvg aria-hidden='true' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512' %3E%3Cpath fill='%23fff' d='M104 272h192v48h48v-48h192v48h48v-57.59c0-21.17-17.22-38.41-38.41-38.41H344v-64h40c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32H256c-17.67 0-32 14.33-32 32v96c0 8.84 3.58 16.84 9.37 22.63S247.16 160 256 160h40v64H94.41C73.22 224 56 241.23 56 262.41V320h48v-48zm168-160V48h96v64h-96zm336 240h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm-16 112h-64v-64h64v64zM368 352h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm-16 112h-64v-64h64v64zM128 352H32c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm-16 112H48v-64h64v64z' class=''%3E%3C/path%3E%3C/svg%3E");}
.fa-instagram {background: no-repeat center url("data:image/svg+xml;charset=utf8,%3Csvg aria-hidden='true' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' %3E%3Cpath fill='%23fff' d='M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z' class=''%3E%3C/path%3E%3C/svg%3E");}
.fa-linkedin {background: no-repeat center url("data:image/svg+xml;charset=utf8,%3Csvg aria-hidden='true' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' %3E%3Cpath fill='%23fff' d='M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z' class=''%3E%3C/path%3E%3C/svg%3E");}
.fa-pinterest {background: url("data:image/svg+xml;charset=utf8,%3Csvg aria-hidden='true' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512' %3E%3Cpath fill='%23fff' d='M204 6.5C101.4 6.5 0 74.9 0 185.6 0 256 39.6 296 63.6 296c9.9 0 15.6-27.6 15.6-35.4 0-9.3-23.7-29.1-23.7-67.8 0-80.4 61.2-137.4 140.4-137.4 68.1 0 118.5 38.7 118.5 109.8 0 53.1-21.3 152.7-90.3 152.7-24.9 0-46.2-18-46.2-43.8 0-37.8 26.4-74.4 26.4-113.4 0-66.2-93.9-54.2-93.9 25.8 0 16.8 2.1 35.4 9.6 50.7-13.8 59.4-42 147.9-42 209.1 0 18.9 2.7 37.5 4.5 56.4 3.4 3.8 1.7 3.4 6.9 1.5 50.4-69 48.6-82.5 71.4-172.8 12.3 23.4 44.1 36 69.3 36 106.2 0 153.9-103.5 153.9-196.8C384 71.3 298.2 6.5 204 6.5z' class=''%3E%3C/path%3E%3C/svg %3E") no-repeat center ;}
.fa-google-play {background: no-repeat center url("data:image/svg+xml;charset=utf8,%3Csvg aria-hidden='true' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' %3E%3Cpath fill='%23fff' d='M325.3 234.3L104.6 13l280.8 161.2-60.1 60.1zM47 0C34 6.8 25.3 19.2 25.3 35.3v441.3c0 16.1 8.7 28.5 21.7 35.3l256.6-256L47 0zm425.2 225.6l-58.9-34.1-65.7 64.5 65.7 64.5 60.1-34.1c18-14.3 18-46.5-1.2-60.8zM104.6 499l280.8-161.2-60.1-60.1L104.6 499z' class=''%3E%3C/path%3E%3C/svg%3E");}
/*=================
Variables
===================*/
<Group description="أساسي" selector="body">
<amp-auto-ads type="adsense"
data-ad-client="ca-pub-9742139951555584">
</amp-auto-ads>
<amp-auto-ads type="adsense"
data-ad-client="ca-pub-7665145534978149">
</amp-auto-ads>
<amp-auto-ads type="adsense"
data-ad-client="ca-pub-7665145534978149">
</amp-auto-ads>
<Variable name="keycolor" description="لون الجرادينت المساعد" type="color" default="#1e3c72"/>
<Variable name="step.color" description="اللون ألاساسي" type="color" default="#3560ab"/>
<Variable name="grad.color" description="لون النص فوق اللون الاساسي" type="color" default="#ffffff"/>
<Variable name="body.background.color" description="لون تبويب المدونة في الهاتف" type="color" default="#3560ab"/>
<Variable name="body.background" description="خلفية المدونة" type="background" color='#f7f7f7' default="$(color)
url() no-repeat fixed top right"/>
<Variable name="body.text.font" description="Font" type="font" default="400 15px 'Segoe UI'" hideEditor="true"/>
<Variable name="body.link.color" description="Link color" type="color" default="#000" hideEditor="true"/>
<Variable name="Box.Title.bg" description="خلفية العناوين الاساسية" type="color" default="#e6e6e6" hideEditor="true"/>
</Group>
<Group description="الهيدر" selector="#sp-header" >
<Variable name="H.Bg" description="خلفية الهيدر" type="color" default="#fff"/>
<Variable name="H.Link" description="لون الروابط" type="color" default="#000"/>
<Variable name="H.Icon.Sh" description="لون ايقونة البحث" type="color" default="#fff"/>
<Variable name="H.Icon.Color" description="لون سهم القائمة المنسدلة" type="color" default="#3560ab"/>
<Variable name="H.Link.font" description="خط وحجم الخط للروابط" type="font" default="400 14px 'Segoe UI'" />
<Variable name="H.mons.Color" description="لون روابط القايمة المسندلة" type="color" default="#525252"/>
<Variable name="H.mons.bg" description="لون خلفية القايمة المنسدلة" type="color" default="#fff"/>
<Variable name="H.mons.border" description="لون فواصل القايمة المنسدلة" type="color" default="#e6e6e6"/>
<Variable name="H.mons.hover" description="تاثير مرور الروابط القايمة المنسدلة" type="color" default="#3560ab"/>
</Group>
<Group description="المشاركات" selector=".site" >
<Variable name="Hpost.Title.Color" description="لون العناوين" type="color" default="#444"/>
<Variable name="Hpost.Short.Content.Color" description="لون وصف الموضوع القصير" type="color" default="#777"/>
<Variable name="Hpost.Items" description="لون روابط الميتا بوست" type="color" default="#777"/>
<Variable name="Hpost.Hover" description="لون التاثير المرور" type="color" default="#194ca9"/>
</Group>
<Group description="الموضوع" selector=".post-amp" >
<Variable name="posts.background.color" description="Post background color" type="color" default="#fff" hideEditor="true"/>
<Variable name="posts.title.color" description="Post title color" type="color" default="#393939" />
<Variable name="posts.title.font" description="Post title font" type="font" default="400 21px 'Segoe UI'" />
<Variable name="posts.text.font" description="Post text font" type="font" default="400 14px 'Segoe UI'" />
<Variable name="posts.text.color" description="Post text color" type="color" default="#000" />
<Variable name="posts.link.color" description="Post link color" type="color" default="#194ca9" />
</Group>
<Group selector='.post .post-outer' description="جميع محتويات الموضوع">
<Variable name="posts.meta.color" description="لون معلومات الموضوع اسفل العنوان" type="color" default="#585858" />
<Variable name="posts.meta.border" description="لون البوردر لمعلومات المضوع اسفل العنوان" type="color" default="#f5f5f5" />
<Variable name="posts.img.border" description="لون بوردر الصورة" type="color" default="#eee" />
<Variable name="posts.num.bg" description="خلفية التعداد الرقمي" type="color" default="#eee" />
<Variable name="posts.num.color" description="لون رقم التعداد الرقمي" type="color" default="#000" />
<Variable name="posts.num.border" description="لون بوردر التعداد الرقمي" type="color" default="#ccc" />
<Variable name="posts.h2.bg" description="خلفية العنوان h2" type="color" default="#eee" />
<Variable name="posts.h2.color" description="لون خط العنوان h2" type="color" default="#000" />
<Variable name="posts.h2.border" description="لون فاصل اسفل عنوان h2" type="color" default="#d8d8d8" />
<Variable name="posts.h2.font" description="خط العنوان h2" type="font" default="400 21px 'Segoe UI'" />
<Variable name="posts.h3.bg" description="لون خلفية العنوان h3" type="color" default="#eee" />
<Variable name="posts.h3.color" description="لون خط العنوان h3" type="color" default="#000" />
<Variable name="posts.h3.border" description="لون فاصل اسفل عنوان h3" type="color" default="#d8d8d8" />
<Variable name="posts.h3.font" description="خط العنوان h3" type="font" default="400 19px 'Segoe UI'" />
<Variable name="posts.h4.bg" description="خلفية العنوان h4" type="color" default="#eee" />
<Variable name="posts.h4.color" description="لون خط العنوان h4" type="color" default="#000" />
<Variable name="posts.h4.border" description="لون فاصل اسفل عنوان h4" type="color" default="#d8d8d8" />
<Variable name="posts.h4.font" description="خط العنوان h4" type="font" default="400 17px 'Segoe UI'" />
<Variable name="posts.border" description="لون فواصل عناصر اسفل الموضوع" type="color" default="#eeeeee" />
<Variable name="posts.tags.bg" description="خلفية القسم" type="color" default="#eee" />
<Variable name="posts.tags.color" description="لون القسم" type="color" default="#292929" />
<Variable name="posts.tags.hover.bg" description="خلفية القسم عند التمرير" type="color" default="#3560ab" />
<Variable name="posts.tags.hover.color" description="لون القسم عند التمرير" type="color" default="#fff" />
<Variable name="posts.au.bg" description="خلفية اضافة الكاتب" type="color" default="#f4f4f4" />
<Variable name="posts.au.border" description="لون البوردر اضافة الكاتب" type="color" default="#eee" />
<Variable name="posts.comment.border" description="لون بوردر التعليقات" type="color" default="#ccc" />
<Variable name="posts.comment.link" description="لون الروابط في التعليقات" type="color" default="#000fc1" />
<Variable name="posts.comment.button" description="لون زر ارسل تعليق" type="color" default="#eeeeee" />
<Variable name="posts.comment.icon" description="لون ايقونة عنوان التعليقات" type="color" default="#335ea8" />
<Variable name="posts.comment.title" description="لون نص عنوان التعليقات" type="color" default="#3e3e3e" />
<Variable name="posts.comment.massg" description="لون رسالة التعليقات" type="color" default="#757575" />
</Group>
<Group selector='.post-outer' description="خواص الفريال">
<Variable name="posts.read.more.color" description="لون خط خاصية شاهد المزيد" type="color" default="#313131" />
<Variable name="posts.read.more.bg" description="لون خلفية زر خاصية شاهد المزيد" type="color" default="#f7f7f7" />
<Variable name="posts.read.more.border" description="لون بوردر خاصية شاهد المزيد" type="color" default="#ccc" />
<Variable name="posts.next.prev.border" description="لون بوردر خاصية تقسيم المقال" type="color" default="#eee" />
<Variable name="posts.next.prev.bg" description="لون خلفية خاصية تقسيم المقال" type="color" default="#f7f7f7" />
</Group>
<Group selector='body' description="ضبط العروض">
<Variable name="content.width" description="Content width" type="length" min="640px" max="1300px" default="1100px"/>
<Variable name="sidebar.width" description="Sidebar width" type="length" min="150px" max="480px" default="320px"/>
</Group>/**/
ul{margin:0;padding:0}
*{text-decoration:none;margin:0;padding:0;outline:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
*,:before,:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
.clear{clear:both}
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,acronym,address,big,cite,code,del,dfn,em,font,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{border:0;font-family:inherit;font-size:100%;font-style:inherit;color:inherit;font-weight:inherit;margin:0;outline:0;padding:0;vertical-align:baseline}
img{max-width:100%;position:relative}
*:not(.notran),:not(.notran):after,:not(.notran):before{-webkit-transition: .3s ease-in-out;-o-transition: .3s ease-in-out;-moz-transition: .3s ease-in-out;transition: .3s ease-in-out;}
.cookie-choices-info{opacity: 0.9;z-index:999999999999999999!important;position:fixed!important;top:auto!important;bottom:5px!important;padding:0!important;right:5px!important;width:300px!important;text-align:center!important;font:400 15px 'Segoe UI'!important;border-radius:3px;box-shadow:0 1px 3px rgba(32,33,36,0.1)}
.cookie-choices-info:hover {opacity: 1;}
.cookie-choices-info .cookie-choices-inner{font-size:13px!important}
.cookie-choices-info .cookie-choices-text{font-size:14px!important;text-align:justify!important}
.cookie-choices-info .cookie-choices-buttons{display:block!important}
a.cookie-choices-button,a#cookieChoiceDismiss{background:#fff;color:#000!important;padding:5px 10px!important;border-radius:2px;margin:0 0 4px!important;display:block!important;font-size:13px!important;font-weight:normal!important}
@media screen and (max-width:450px){.cookie-choices-info{width:200px!important}.cookie-choices-info span.cookie-choices-text{font-size:12px!important}a.cookie-choices-button,a#cookieChoiceDismiss{display:inline-block!important;width:48%;margin-left:1%!important}}
.PLHolder {opacity: 0.9}
.PLHolder img {opacity: 0;}
body,input{font: 400 15px 'Segoe UI'}
body{background:#f7f7f7 url() no-repeat fixed top right;background-size: cover;}
.container,.floar .lap {width: 100%;max-width: 1100px;margin: 0 auto;}
.main-amm,.site .widget{display:block;background:#fff;clear:both;border-radius:0;padding:20px;border:1px solid #e6e6e6;overflow:hidden;margin:0 0 15px}
.headline{display:block;clear:both;margin-bottom:15px;position:relative}
.headline:before{content:"";background:#e6e6e6;height:1px;width:100%;display:block;position:absolute;top:50%;z-index:1}
.headline .title{display:inline-block;padding:6px 20px 6px;background:#3560ab;color:#ffffff;font-size:13px;font-weight:normal;border-radius:30px;z-index:999999;position:relative}
a.Lapel-Link{background:#3560ab;color:#ffffff;float:left;padding:6px 20px 6px;font-size:13px;border-radius:30px;z-index:999999;position:relative}
.Lapel-Link:hover{padding:6px 20px 6px 35px}
.Lapel-Link:hover:before{opacity:1;transition:0.3s ease-out;left:10px;top:7px}
.title:before{content:"";position:absolute;left:-5px;background:#fff;height:8px;width:5px;top:40%}
a.Lapel-Link:after{content:"";position:absolute;right:-5px;background:#fff;height:8px;width:5px;top:40%}
footer .headline:before{display:none}
.Wigetdisabled{display:block;overflow:hidden;font-size:13px;padding:10px;text-align:center;color:#721c24;background-color:#f8d7da;border-color:#f5c6cb;border:1px solid;border-radius:2px}
/* == animation == */
a.PLHolder.thumb:before{content:"";opacity:1;display:inline-block;position:absolute;right:0;left:0;top:0;bottom:0;background-color:#3560ab;background-repeat:no-repeat;background-size:1000px 900px;animation:bs-lazy-anim 1.01s infinite linear forwards;background-image:linear-gradient(to right,#3560ab 0,#3560ab 20%,#1e3c72 40%,#3560ab 100%);animation-direction:reverse}
a.PLHolder.thumb:after{background-size:300% 300%;animation:mg-gr-anim 5.5s ease-in infinite;opacity:.8;transition:all .35s ease;content:'';position:absolute;background:-webkit-linear-gradient(to right,#1e3c72,#3560ab);background:-moz-linear-gradient(to right,#1e3c72,#3560ab);background:-o-linear-gradient(to right,#1e3c72,#3560ab);background:linear-gradient(to right,#1e3c72,#3560ab);top:0;left:0;right:0;bottom:0}
@keyframes bs-lazy-anim{from{background-position:-800px 0}to{background-position:400px 0}}
.Sp-posts1 .rnav-title a:hover ,
.Sp-posts3 .rnav-title a:hover ,
.Sp-posts4 .rnav-title a:hover ,
.Sp-posts6 .rnav-title a:hover ,
.Sp-posts5 .rnav-title a:hover ,
.shreet h3.rnav-title a:hover ,
.Sp-Normal .rnav-title a:hover ,
.Sp-slide .rnav-title a:hover ,
.Sp-3colList .rnav-title a:hover ,
.PopularPosts h3.post-title a:hover ,
.widget.FeaturedPost .post-title a:hover,
.items a:hover ,
nav.nav-par ul li a:hover,
.posttitle:hover,
ul.clear li a:hover,
.post-outer .posts-titles a:hover {
color: #194ca9 !important;
}
iframe {display: initial;max-width: 100%;}
/* =================
= Hidden Items
================= */
#Settings ,
.widget .widget-item-control a img,
.widget-item-control,.blog-feeds,
.status-msg-body ,
.date-header ,
.post-feeds ,
.status-msg-border ,
nav.nav-par li ,
.hiden ,
.open.nav2 ,
.open.nav1 ,
.moreLink ,
.hideee ,
span.category a:not(:first-of-type),
div#blog-pager
{display:none !important}
/*=================
Posts
===================*/
.post-random {
margin: 15px 0 25px;
overflow: hidden;
clear: both;
display: block;
text-align: right;
}
div#main {
overflow: hidden;
}
.post div#Blog1, .post .post-outer, .post .post-body {
overflow: initial!important;
}
.contpotg, .spconten {
overflow: hidden;
}
.post-outer{display:block;overflow:hidden;padding-bottom:20px;border-bottom:1px solid #eeeeee;margin-bottom:20px;position:relative}
.post-outer .thumb{width:300px;height:180px}
.post-home{width:calc((100% - 315px) / 1);float:right}
.post-outer .items{display:block!important;clear:both;padding:8px 0;border-top:1px solid #eee;border-bottom:1px solid #eee;vertical-align:middle;font-size:11px;color:#777}
.post-outer .items{display:inline-block;vertical-align:middle;font-size:11px;color:#777777}
.post-outer .items a,.post-outer .items span{font-size:12px;display:inline-block;color:#777777;margin-left:3px}
.post-outer .posts-titles a{line-height:1.5em;margin-bottom:7px;display:block;max-height:4.6em;font-size:16px;color:#444444}
.post-outer .posts-titles{height:inherit;clear:both;font-size:16px;overflow:hidden}
.post-outer .Short_content{color:#777777;line-height:1.7em;margin:5px 0;font-size:12px}
.post-outer:last-of-type{padding-bottom: 0;border-bottom: 0;margin-bottom: 0;}
.thumb img{object-fit: cover;display:block;width:100%;height:100%}
.thumb{float:right;width:300px;height:300px;margin-left:15px;display:block;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;overflow:hidden;position:relative}
h3.rnav-title a{color:#444444;line-height:1.3em}
.rnav-title{clear:both;font-size:16px;overflow:hidden;height:4em}
.blocker{display:block;overflow:hidden;margin-top:15px}
.r-r{vertical-align:top}
.r-r{float:right;width:calc((100% - 320px - 15px) / 1)}
#Postcs7,#Postcs3{margin-right:15px}
.sides{width:calc((100% - 15px) / 2);float:right}
a.thumb.not-pl:before{content:"";position:absolute;background:linear-gradient(to bottom,rgba(0,0,0,0.15) 6%,rgba(0,0,0,0.68) 100%);height:100%;width:100%;display:block;z-index:99;transition:opacity 0.3s ease;opacity:0}
a.thumb.not-pl:after{content:"";z-index:99;position:absolute;display:block;transition:opacity 0.3s ease;opacity:0}
a.thumb.not-pl:hover:after{opacity:0.9!important}
/* iteam post */
.atags{display:block;margin:0 0 5px}
.atags a{font-size:13px;background:#3560ab;color:#ffffff;padding:3px 15px;border-radius:1px;margin:0 0 0 5px;display:inline-block}
.post-amp .entry-title.topic-title{padding-right: 5px;border-right: 3px solid #3560ab;overflow:hidden;font:400 21px 'Segoe UI';line-height:1.7em;color:#393939}
.post-body{font:400 14px 'Segoe UI';line-height:24px;overflow:hidden;color:#000000}
.post-body a{color:#194ca9}
.post-meta{margin-top:10px;border:2px dotted #f5f5f5;border-right:0;border-left:0;padding:4px 0;margin-bottom:5px;color:#585858;font-size:13px}
.headbost,span.p-author.h-card.vcard,.article-timeago,.article-author,a.timestamp-link{display:inline-block;vertical-align:middle}
.headbost svg{width:14px!important;height:14px!important;margin-left:3px;vertical-align:middle}
.post-meta a{color:#585858}
.post-meta span,.post-meta .post-date{font-size:13px}
.post-body img{padding:5px;border:1px solid #eeeeee;border-radius:3px;width:auto;height:auto;display:inline;max-width:100%}
.shareButton a{display:inline-block;vertical-align:middle;min-width:auto;margin:0 5px 5px 0;padding:0;width:calc((100% - 46px) / 6);position:relative;cursor:pointer;border-radius:3px}
.shareButton .icon{height:15px;width:15px;float:right}
.shareButton a:first-of-type{margin-right:0}
.shareButton .facebook span{background-color:#3b5998}
.shareButton .twitter span{background-color:#1da1f2}
.shareButton .pinterest span{background-color:#cc2127}
.shareButton .ic-phone span{background-color:#2ea625}
.shareButton .ic-reddit span{background-color:#ff4500}
.shareButton .ic-linkedin span{background-color:#0073b1}
.shareButton a span{display:block;padding:8px 10px;font-size:12px;color:#fff;box-shadow:0 90px 75px 1px rgba(255,255,255,0.1) inset;border-radius:3px;text-align:center;overflow:hidden}
.PagePrakediv a{border-radius:30px;font-size:14px;width:150px;margin:0 auto 0;font-family:'Segoe UI'}
.amp-tags{font-size:13px;font-weight:bold}
.amp-tags a{color:#292929;font-size:13px;margin:0 0 0 5px;font-weight:normal;padding:5px 10px;background:#eeeeee;border-radius:2px;transition:all 0s;display:inline-block}
.widget{overflow:hidden}
.amp-tags a:hover{background:#3560ab;color:#ffffff}
.amp-tags svg{width:11px;height:11px;margin-left:4px;vertical-align:middle;transition:all 0s}
.edit-post a{font-size:11px;text-align:center;padding:5px 8px;border-radius:1px;background-color:#3560ab;margin:0 auto 3px;color:#ffffff;vertical-align:top}
.commint-cont{display:inline-block;vertical-align:middle;color:#585858;font-size:13px;float:left}
.commint-cont svg{width:15px;height:15px;display:inline-block;vertical-align:middle;margin-left:4px;margin-top:-1px}
.blog-admin{display:none}
.atags .blog-admin{float:left;vertical-align:top;overflow:hidden;margin-top:0!important}
.page .atags{overflow:hidden}
.page .atags .blog-admin{float:right}
.topic-nav,.reaction-buttons,section#comments,.amp-tags,.shareButton,.RelatedPosts,.author-profile{display:block;padding:15px 0 0;margin-top:15px;border-top:2px dotted #eeeeee}
.reactions-label{display:inline-block;vertical-align:top;color:#343434;font-size:14px}
.reactions-label svg.icon{color:#1f3d74;width:16px;height:16px;margin-top:1px;margin-left:0}
iframe.reactions-iframe{height:20px;display:inline-block;vertical-align:sub}
#FancyAllItems *{-moz-transition:none;-webkit-transition:none;transition:none}
.post-body strike{text-decoration:line-through}
.post-body u{text-decoration:underline}
.post-body ul li,.post-body ol li{margin-bottom:3px;padding-bottom:3px}
.post-body ul,.post-body ol{padding-right:30px}
.post-body ol li:before{list-style:disc;content:counter(li);font-size:13px;padding:0 5px;line-height:1.3rem;width:24px;display:inline-block;text-align:center;background:#eeeeee;border-radius:3px;margin-left:8px;border:1px solid #cccccc;color:#000000}
.post-body ol li{counter-increment:li;list-style:none;font-size:13px}
.post-body ol{padding-right:5px}
.post-body h2,.post-body h3,.post-body h4{padding:13px 20px 13px 13px;border-radius:3px;margin:5px 0 10px}
.post-body h4{background:#eeeeee;font:400 17px 'Segoe UI';border-bottom:1px solid #d8d8d8;color:#000000}
.post-body h3{background:#eeeeee;font:400 19px 'Segoe UI';border-bottom:1px solid #d8d8d8;color:#000000}
.post-body h2{background:#eeeeee;font:400 21px 'Segoe UI';padding:14px 20px 14px 13px;border-bottom:1px solid #d8d8d8;color:#000000}
.PagePrakediv a{display:block;overflow:hidden;padding:10px;text-align:center;background:#f7f7f7;border:1px dashed #cccccc;color:#313131}
.post-body blockquote{color:#545454;font-size:100%;background-color:#efefef;border-left:none;padding:50px 20px 40px;margin:40px 0 30px 0;position:relative;text-align:center;clear:both}
.PagePrakediv{margin-top: 15px;display:block;overflow:hidden}
.post-body blockquote:before {content: "";background: url("data:image/svg+xml;charset=utf8,%3Csvg aria-hidden='true' data-prefix='far' data-icon='quote-right' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath fill='%23777' d='M200 32H72C32.3 32 0 64.3 0 104v112c0 39.7 32.3 72 72 72h56v8c0 22.1-17.9 40-40 40h-8c-26.5 0-48 21.5-48 48v48c0 26.5 21.5 48 48 48h8c101.5 0 184-82.5 184-184V104c0-39.7-32.3-72-72-72zm24 264c0 75-61 136-136 136h-8v-48h8c48.5 0 88-39.5 88-88v-56H72c-13.2 0-24-10.8-24-24V104c0-13.2 10.8-24 24-24h128c13.2 0 24 10.8 24 24v192zM504 32H376c-39.7 0-72 32.3-72 72v112c0 39.7 32.3 72 72 72h56v8c0 22.1-17.9 40-40 40h-8c-26.5 0-48 21.5-48 48v48c0 26.5 21.5 48 48 48h8c101.5 0 184-82.5 184-184V104c0-39.7-32.3-72-72-72zm24 264c0 75-61 136-136 136h-8v-48h8c48.5 0 88-39.5 88-88v-56H376c-13.2 0-24-10.8-24-24V104c0-13.2 10.8-24 24-24h128c13.2 0 24 10.8 24 24v192z' %3E%3C/path%3E%3C/svg%3E") center no-repeat;width: 20px;height: 20px;display: inline-block;vertical-align: middle;margin: 0 0px 3px 10px;}
.post-body blockquote:before{position:absolute;top:0;left:50%;margin-top:-45px;margin-left:-40px;width:80px;height:80px;background-color:#fff;line-height:90px;border-radius:50%;text-align:center;background-size:35px;background-position-y:30px}
.TocList{margin-bottom:5px}
td.tr-caption{font-size:12px}
/* topic-nav */
.texxattt{display:inline-block;color:#ffffff;font-size:10px;background:#3560ab;padding:2px 5px;border-radius:2px;margin-bottom:3px}
.posttitle{font-size:14px;color:#353535 !important;width:100%;display:block;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}
.newPost,.oldPost{padding-left: 10px;float:right;width:50%;padding-right:10px;border-right:3px solid #3560ab}
.topic-nav-cont{overflow:hidden}
.post-random .newPost .posttitle{width:100%;position:relative;padding:5px 0 2px}
.post-random .newPost{float:none;width:100%;margin-bottom:0}
.post-random .newPost:not(:first-of-type) .texxattt{display:none!important}
.post-random .texxattt{font-size:13px;margin-top:0;margin-bottom:0;padding:3px 10px;transform:skew(2deg);margin-right:-11px;border-radius:0}
.post-random .newPost .posttitle:before{content:"*";vertical-align:middle;display:inline-block;margin-bottom:-4px;color:#3560ab;margin-left:3px}
.post-random * {line-height: initial !important;}
.post-random {margin: 10px 0;}
/* comments */
li.comment{padding:10px 5px 0;margin:10px 0;border:1px solid #eee;box-shadow:none!important;display:block;border-right:0;border-left:0;border-bottom:0}
.avatar-image-container{position:absolute;width:45px;height:45px;border-radius:50%;text-align:center;margin-top:0;margin-right:5px}
.avatar-image-container img{border-radius:100%;height:40px;width:40px;background:transparent url(../../../4.bp.blogspot.com/-ci3XMoAMGzg/WiCTxCLLWeI/AAAAAAAAPjI/UkV1sBTKC7EamOC_UmMJ4cQCv4xNNI82QCLcBGAs/s1600/log.jpg) no-repeat center;background-size:40px;overflow:hidden}
.comment-header{display:inline-block;overflow:hidden;clear:both;margin-right:60px}
span.datetime,cite.user{display:block;overflow:hidden;clear:both;font-size:13px;float:right}
span.datetime a,cite.user a{color:#666!important;font-weight:normal!important}
.comment-content{padding:10px 15px 13px;font-size:13px;cursor:text;font-weight:100;color:#000;overflow:hidden;border-top:1px dashed #eee}
.comment-actions.secondary-text a{padding:0 20px 1px;margin:5px 0;background:#f9f9f9;border:1px solid #e8e8e8;border-right: 0;font-size:13px}
span.datetime a,cite.user a{font-size:13px}
.comment-reply{border-radius:0 3px 3px 0;border-left:0!important}
.datetime.secondary-text a,.comment-actions.secondary-text a{color:#000}
.comments span.item-control a{border-radius:3px 0 0 3px!important}
.comment-reply {border: 1px solid #e8e8e8 !important;}
.comment-replies{margin-top:10px!important;margin-bottom:0!important;padding-right:40px}
.comments .comments-content .inline-thread{padding:0!important}
span.thread-toggle.thread-expanded,.comment-replies .comment-replies,.thread-count,.continue,.loadmore.loaded,.hidden{display:none}
.comment-thread ol{padding:0}
.comment-replies li.comment:first-of-type{margin-top:20px!important}
.comment-replies li.comment{border:0;padding-bottom:2px;box-shadow:none;padding:0;margin-top:25px!important}
.comment-replybox-single{padding-right:40px;display:block;clear:both;overflow:hidden}
.comment-replies span.item-control a {border-radius: 3px!important;border: 1px solid #e8e8e8;}
.comment-form{min-height: 205px;padding:20px;border:1px dashed #cccccc}
#comments .comments-info{margin-bottom:15px;overflow:hidden;font-size:12px}
#comments .comments-info .comments-count{float:right;padding:5px 0;font-size:14px;position:relative;color:#3e3e3e}
#comments .comments-info .go-respond b{float:right;padding:5px 15px;margin:0 25px;background-color:#eeeeee;color:#3e3e3e;position:relative;overflow:hidden;font-size:13px}
#comments .small-icon{color:#335ea8;width:20px;height:20px;display:inline-block;vertical-align:middle;margin-top:4px}
.comments-info svg.small-icon{width:15px!important;margin-left:5px!important;margin-top:0!important}
a#commnetLinkS{font-size:13px;cursor:pointer;font-weight:bold;color:#000fc1}
h4#comment-post-message{display:inline-block;vertical-align:middle;font-size:14px;margin-right:5px;color:#3e3e3e}
.conart p{display:block;overflow:hidden;font-size:13px;margin-top:5px;color:#757575}
iframe#comment-editor{border-top:1px dashed #cccccc;border-bottom:1px dashed #cccccc;margin-top:20px;box-sizing:content-box}
.comment-replybox-thread #comment-editor{display:none!important}
/* author profile */
.author-profile{border-top:0;padding:30px;position:relative;border-radius:0;background-color:#f4f4f4;border:1px solid #eeeeee}
.gfvg{display:-ms-flexbox;display:-webkit-flex;display:flex;-ms-flex-wrap:none;-webkit-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-align:stretch;-webkit-align-items:stretch;align-items:stretch}
.dshdsgn{display:block;box-sizing:border-box;width:100%;padding:0 10px;margin:0 auto;position:relative;vertical-align:top;font-size:1rem;padding-left:15px;padding-right:110px;min-height:80px}
.authorph img{border-radius:100%;border:1px solid #ccc}
.authorph.PLHolder{width:80px;height:80px;background:#ccc;border-radius:100%}
.authorph{width:80px;height:80px;right:0;left:auto;top:0;margin:0 auto;position:absolute;z-index:3}
.author-name{margin-bottom:.75rem}
.author-desc{font-size:13px;color:#4a4a4a}
a.g-profile{display:block;color:#000;font-size:18px}
a.g-profile span{color:#3b5999;font-weight:bold}
/* buttons */
/* nextprev */
.page-navigation{margin-top: 15px;display:block;overflow:hidden;background:#f7f7f7;padding:5px 10px;border:1px solid #eeeeee}
#siki_next,#siki_prev{background:#fff;display:inline-block;cursor:pointer;border:2px solid #1e3c72;border-left:8px solid #1e3c72;border-radius:35px;margin:3px!important;transition:all 0.3s}
float:right;border-left:7px double #fff;border-radius:0 5px 5px 0}
.siki-next-prev a{display:block}
#siki_prev span:nth-child(1){float:left;font-size:15px;line-height:35px;padding:0 30px 0 10px;position:relative}
.siki-next-prev span{font-size:30px;color:#585858}
#siki_prev span:nth-child(2){float:right;line-height:45px}
#siki_next{float:left;border:2px solid #1e3c72;border-right:8px solid #1e3c72;border-radius:35px;margin:0}
#siki_next span:nth-child(1):before{display:block;width:1.5em;height:1.5em;content:"";top:7px;left:4px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' viewBox='0 0 129 129' enable-background='new 0 0 129 129'%3E%3Cg%3E%3Cg%3E%3Cpath d='m64.5,122.6c32,0 58.1-26 58.1-58.1s-26-58-58.1-58-58,26-58,58 26,58.1 58,58.1zm0-108c27.5,5.32907e-15 49.9,22.4 49.9,49.9s-22.4,49.9-49.9,49.9-49.9-22.4-49.9-49.9 22.4-49.9 49.9-49.9z' fill='%23264079' %3E%3C/path%3E%3Cpath d='m70,93.5c0.8,0.8 1.8,1.2 2.9,1.2 1,0 2.1-0.4 2.9-1.2 1.6-1.6 1.6-4.2 0-5.8l-23.5-23.5 23.5-23.5c1.6-1.6 1.6-4.2 0-5.8s-4.2-1.6-5.8,0l-26.4,26.4c-0.8,0.8-1.2,1.8-1.2,2.9s0.4,2.1 1.2,2.9l26.4,26.4z' fill='%23264079'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");position:absolute}
#siki_next span:nth-child(2){float:left;line-height:45px}
#siki_next span:nth-child(1){float:right;font-size:15px;line-height:35px;padding:0 10px 0 30px;position:relative}
#siki-page-number{text-align:center;color:#292929;font-size:14px;position:absolute;right:calc((100% - 110px) / 2);left:calc((100% - 110px) / 2);display:inline-block;align-items:center;width:110px;padding:15px 0 0}
#siki_prev span:nth-child(1):before{display:block;width:1.5em;height:1.5em;content:"";top:7px;right:4px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' viewBox='0 0 129 129' enable-background='new 0 0 129 129'%3E%3Cg%3E%3Cg%3E%3Cpath d='M64.5,122.6c32,0,58.1-26,58.1-58.1S96.5,6.4,64.5,6.4S6.4,32.5,6.4,64.5S32.5,122.6,64.5,122.6z M64.5,14.6 c27.5,0,49.9,22.4,49.9,49.9S92,114.4,64.5,114.4S14.6,92,14.6,64.5S37,14.6,64.5,14.6z' fill='%23264079'%3E%3C/path%3E%3Cpath d='m51.1,93.5c0.8,0.8 1.8,1.2 2.9,1.2 1,0 2.1-0.4 2.9-1.2l26.4-26.4c0.8-0.8 1.2-1.8 1.2-2.9 0-1.1-0.4-2.1-1.2-2.9l-26.4-26.4c-1.6-1.6-4.2-1.6-5.8,0-1.6,1.6-1.6,4.2 0,5.8l23.5,23.5-23.5,23.5c-1.6,1.6-1.6,4.2 0,5.8z' fill='%23264079'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");position:absolute}
#siki_prev:hover{border:2px solid #1e3c72;border-left:2px solid #1e3c72;border-right:8px solid #1e3c72}
#siki_next:hover{border:2px solid #1e3c72;border-left:8px solid #1e3c72;border-right:2px solid #1e3c72}
/* related-posts */
.post .Sp-posts1 .Short_content{display:none}
.post .Sp-posts1 a.thumb{height:150px}
.post .Sp-posts1 .items{display:none!important}
.post .Sp-posts1 h3.rnav-title a{font-size:14px!important;max-height: 3em;height:3em}
.post .Sp-posts1 .posts{padding:10px;border:1px solid #eee;margin-left:15px!important;width:calc((100% - 30px) / 3);margin-bottom:15px}
.post .Sp-posts1 .posts:last-of-type{margin-left:0!important}
.post .Sp-posts1 .posts:nth-last-of-type(1),.post .Sp-posts1 .posts:nth-last-of-type(2),.post .Sp-posts1 .posts:nth-last-of-type(3){margin-bottom:0!important}
.Sp-posts1 .posts {
display: inline-block;
border-radius: 2px;
position: relative;
vertical-align: top;
}
.Sp-posts1 a.thumb {
margin: 0;
width: 100%;
height: 200px;
position: relative;
}
.Sp-posts1 .posts:nth-of-type(3), .posts:nth-of-type(6) {
margin-left: 0 !important;
}
/* == PostsNormal == */
.Sp-Normal .moreLink,.post-outer .moreLink{
display:inline-block !important;margin-top:5px;position:relative;font-size:14px;
background:#3560ab;
color:#fff;padding:7px 15px 7px 15px;border-radius:2px}
.post .post-outer .moreLink {display: none!important;}
.Sp-Normal .moreLink:hover,.post-outer .moreLink:hover{padding:7px 10px 7px 30px}
.Sp-Normal .moreLink:before,.post-outer .moreLink:before,a.Lapel-Link:before{width:16px;height:16px;content:"";position:absolute;left:7px;top:8px;color:#000;padding:5px;display:block;opacity:0;transition:0.2s ease-out}
.Sp-Normal .moreLink:hover:before,.post-outer .moreLink:hover:before{opacity:1;transition:0.3s ease-out}
.Sp-Normal .posts{display:block;overflow:hidden;padding-bottom:20px;border-bottom:1px solid #eeeeee;margin-bottom:20px;position:relative}
.Sp-Normal .Short_content{color:#777777;line-height:1.7em;margin:5px 0;font-size:12px}
.Sp-Normal .items{display:inline-block;vertical-align:middle;font-size:11px;color:#777777}
.Sp-Normal .thumb{width:300px;height:180px}
.Sp-Normal .cont{width:calc((100% - 315px) / 1);float:right}
.Sp-Normal .posts .items{display:block!important;clear:both;padding:8px 0;border-top:1px solid #eee;border-bottom:1px solid #eee;vertical-align:middle;font-size:11px;color:#777777}
.Sp-Normal .items a,.Sp-Normal .items span{font-size:12px;display:inline-block;color:#777777;margin-left:3px}
.Sp-Normal h3.rnav-title{height:inherit}
.Sp-Normal h3.rnav-title a{line-height:1.5em;margin-bottom:7px;display:block;max-height:4.6em;font-size:16px}
.Sp-Normal .posts:last-of-type{margin-bottom:0;padding-bottom:0;border-bottom:0}
.Sp-Normal .posts a.thumb.not-pl:after,.post-outer a.thumb.not-pl:after,.widget.FeaturedPost a.item-thumbnail.thumb.not-pl:after{width:28px;height:28px;top:43%;right:45%}
.icon[data-icon="clock"]{vertical-align:-3px!important}
/* ads-post */
#ret-a3lan #h403{text-align:center;display:block;font-size:13px;padding:15px 0 0;margin-top:15px;border-top:2px dotted #eeeeee}
.SeoPlusAds {
margin: 15px 0;
text-align: center;
display: block;
clear: both;
}
div#bot-a3lan, div#top-a3lan, div#ret-a3lan {
overflow: initial;
}
/* ArchivePage */
h2.Category-ArchivePage {background: #3560ab;display: inline-block;padding: 0;border-radius: 30px;}
h2.Category-ArchivePage a {color: #ffffff;display: inline-block;padding: 5px 25px;font-size: 15px;}
ul.clear li {color: #3560ab;}
ul.clear li a {font-weight: bold;color: #121212;font-size: 13px;}
.caregory-div:not(:first-of-type) {margin-top: 10px;padding-top: 10px;border-top: 1px solid #eee;}
/* smoothscroll top */
.smoothscroll-top{position:fixed;opacity:0;visibility:hidden;overflow:hidden;text-align:center;z-index:99;background-color:#3560ab;color:#ffffff;right:1%;bottom:-25px;transition:all 0.3s ease-in-out;transition-delay:0.2s;font-weight:100;font-size:18px;display:flex;width:35px;height:35px;align-items:center;border-radius:2px}
.smoothscroll-top.show{visibility:visible;cursor:pointer;opacity:1;bottom:1.5%}
.smoothscroll-top svg{margin:0 11px;display:block}
/*=================
الهيدر
===================*/
header#sp-header{display:block;position:relative;margin-bottom:20px;height:97px}
.head-pz{height:97px;width:100%;position:fixed;background:#ffffff;-webkit-box-shadow:0 1px 3px rgba(32,33,36,0.1);box-shadow:0 1px 3px rgba(32,33,36,0.1);top:0;right:0;left:0;z-index:999999999}
.par-tp{display:block;width:100%;clear:both;height:35px;position:fixed;top:0;right:0;left:0;max-width:1100px;margin:0 auto}
.floar{color:#ffffff;width:77%;float:left;display:block;clear:both;position:relative;font-size:13px;padding:0 15px 0 0}
.floar:before{background:#3560ab;color:#ffffff;width:2000px;display:block;clear:both;position:absolute;border-bottom-left-radius:5px;transform:skewX(30deg);right:0;content:"";transform:skewX(-30deg);border-bottom-right-radius:5px;height:35px}
div#pages{float:right;margin:8.5px 0;font-size:12px;position:relative}
div#pages li{display:inline-block;padding:0 5px}
.floar a{color:#ffffff;font-size:12px}
.par-tp.active{top:-35px}
.par-bottm.active{top:35px}
.head-pz.active{height:72px;opacity:0.8}
.head-pz.active:hover{opacity:1}
.par-bottm.active nav.nav-par{top:-30px;width:calc((100% - 280px) /1)!important}
div#top-social-L{margin-left:0;float:left;z-index:999;position:relative;margin-top:4px}
#top-social-L ul li{display:inline-block}
#top-social-L li:first-of-type{margin-right:0}
#top-social-L li{display:inline-block;vertical-align:middle;margin-right:2px}
#top-social-L li a{display:block;padding:6px;border-radius:3px}
.par-bottm{display:block;clear:both;position:fixed;top:35px;right:0;left:0;width:100%;position:relative}
.logo{float:right;display:block;position:relative}
div#logo{font-size:1.5em;position:relative;top:-25px;z-index:9999;width:250px;height:70px}
div#header-inner{width:250px;height:70px;display:table-cell;vertical-align:middle}
img#Header1_headerimg{max-height:70px;margin:0 auto}
.icon{width:13px;margin-left:3px;display:inline-block;vertical-align:middle}
nav.nav-par{float:left;width:calc((100% - 320px) /1)!important;position:relative;top:0}
div#menu{height:62px;display:flex;align-items:center}
nav.nav-par li.ma{display:inline-block!important}
nav.nav-par ul li{margin-left:12px;margin-right:-4px}
nav.nav-par ul li a{color:#000000;position:relative;font:400 14px 'Segoe UI';display:block;padding:10px 0 10px}
li.ma.pluselink ul:not(.ma2ul){display:block;position:absolute;right:-5px;width:180px;background:#ffffff;top:40px;border-radius:3px;box-shadow:0 1px 3px rgba(32,33,36,0.1);border:1px solid #e6e6e6;z-index:9999999;opacity:0;visibility:hidden;transition:.2s ease;transform:scale(0)}
li.ma.pluselink:hover ul:not(.ma2ul){opacity:1;visibility:visible;transform:scale(1)}
li.ma.pluselink ul:not(.ma2ul):before{content:"";width:16px;height:16px;position:absolute;background:#ffffff;top:-8px;right:20%;z-index:-1;transform:rotate(45deg);border:1px solid #e6e6e6}
li.ma.pluselink span.icon{color:#3560ab;width:10px;position:absolute;top:8px;left:-20px;right:auto;transform:rotate(180deg);line-height:1}
li.ma.pluselink:hover span.icon{transform:rotate(0);top:10px}
.pluselink2 span.icon{width:8px!important;left:5px!important;top:7px!important;transform:rotate(90deg)!important;right:auto!important}
.pluselink2:hover span.icon{left:8px!important}
li.ma.pluselink,li.ma2.pluselink2{position:relative}
li.ma.pluselink li{display:block!important;margin:0!important}
li.ma.pluselink li a{color:#525252;font-size:12px;padding:8px 25px 8px 10px;margin:0!important;border-bottom:1px solid #e6e6e6;background:#ffffff;display:block;position:relative}
li.ma.pluselink li a:hover:before{background:#3560ab}
li.ma.pluselink li a:before{content:"";width:8px;height:8px;position:absolute;background:#ffffff;top:13px;right:10px;z-index:999;transform:rotate(45deg);border:1px solid #e6e6e6}
li.ma2.pluselink2 ul.ma2ul{display:block;position:absolute;right:100%;width:180px;background:#ffffff;top:0;opacity:0;visibility:hidden;transition:.2s ease;transform:translateX(-30px);border-radius:3px;box-shadow:0 1px 3px rgba(32,33,36,0.1);border:1px solid #e6e6e6;z-index:9999999}
li.ma2.pluselink2:hover ul.ma2ul{transform:translateX(0);opacity:1;visibility:visible}
li.ma2.pluselink2 ul.ma2ul:before{content:"";width:16px;height:16px;position:absolute;background:#ffffff;top:8px;right:-7px;z-index:-1;transform:rotate(45deg);border:1px solid #e6e6e6}
li.ma.pluselink li:last-of-type a{border-bottom:0}
li.ma.pluselink {margin-left: 25px;}
.par-bottm.active #logo{width:230px;height:50px}
.par-bottm.active #header-inner{width:230px;height:50px}
.par-bottm.active #Header1_headerimg{max-height:50px}
/* =========
= Aside & footer
========= */
div#Topa3lan-sc div#HTML1{background:transparent;padding:0;border:0;margin:0}
#sidepar-wid{transition: none !important;width:320px;float:left;margin-right:15px;vertical-align:top}
footer{overflow:hidden;display:block;clear:both;background:#fff;padding:15px 0 0;border-top:1px solid #e6e6e6}
.mid-top-footer .footer-col{float:right;width:calc((100% - 60px) / 3);margin-left:30px}
footer .headline{background:transparent;border-bottom:1px solid #eee}
footer .headline .title{background:transparent;color:#121212;padding:0 3px 7px;border-bottom:1px solid #ccc;border-left:transparent;font-size:15px;border-radius:0!important}
div#footer-col3{margin-left:0;padding-left:0;border-left:0}
.mid-top-footer .footer-col .widget{margin-bottom:30px;vertical-align:top}
.mid-top-footer .footer-col .widget:last-of-type{margin-bottom:15px}
.bottom-footer{position: relative;z-index: 99999;display:block;overflow:hidden;clear:both;padding:10px 0;box-shadow:0 -1px 25px -16px #000;margin-top:0;background:#fff}
footer .container{display:block;overflow:hidden}
.yemen a{font-size:13px;font-weight:bold;color:#345ea9;letter-spacing:0;vertical-align:middle}
.yemen{min-height: 32px;font-size:13px;float:right;display:flex;align-items:center}
.yemen a:not(#7qok){font-size:initial;font-weight:normal;color:transparent;letter-spacing:0;vertical-align:middle;width:27px;height:27px;overflow:hidden}
.yemen span{font-size:13px;vertical-align:middle;margin-left:3px}
.shmal{float:left;font-size:13px;margin-top:5px}
/* recent-comments Widget */
.recent-comments .comment .leave-comm:before{width:8px;height:8px;content:"";position:absolute;right:2px;top:2px;color:#000;padding:5px;display:block;transition:0.2s ease-out}
.recent-comments{overflow:hidden}
aside .recent-comments .comment{border-bottom:1px solid #eeeeee}
.recent-comments .comment{margin-bottom:15px;padding-bottom:15px;overflow:hidden}
.recent-comments .comment:last-child{margin-bottom:0;border-bottom:0;padding-bottom:0}
.comments-img-wrap{border:3px solid #eeeeee}
.comments-img-wrap{float:right;width:50px;height:50px;border-radius:100px;margin-left:15px;overflow:hidden}
.recent-comments .comment .comm{float:right;width:calc(100% - 65px)}
.recent-comments .comment .comm-author{color:#999999}
.recent-comments .comment p{color:#444444}
.recent-comments .comment .comm-author{text-overflow:ellipsis;white-space:nowrap;font-size:12px;font-weight:700;float:right;height:21px;margin-left:10px;overflow:hidden}
.recent-comments .comment .details{float:left;overflow:hidden}
.recent-comments .comment .details span{margin-left:0;font-size:9.5px;display:inline-block;vertical-align:top;color:#999999}
.recent-comments .comment p{text-align:right;width:95%;margin:0 0 2px;font-size:10px;max-height:18px;line-height:1.8em;overflow:hidden;font-weight:700;white-space:nowrap;text-overflow:ellipsis}
.recent-comments .comment .leave-comm{display:block;padding:0 15px;overflow:hidden;font-size:10px;position:relative;color:#6f6f6f;font-weight:bold}
/* social bottom footer */
.shmal .social-static.social li {display: inline-block;vertical-align: middle;margin-right: 2px;}
footer .social-static.social a[title='twitter'], aside .social-static.social a[title='twitter'], .mop-icon .social-static.social a[title='twitter'] {background: #1da1f2;}
footer .social-static.social a[title='reddit'], aside .social-static.social a[title='reddit'], .mop-icon .social-static.social a[title='reddit'] {background: #ff6933;}
footer .social-static.social a[title='whatsapp'], aside .social-static.social a[title='whatsapp'], .mop-icon .social-static.social a[title='whatsapp'] {background: #128C7E;}
footer .social-static.social a[title='facebook'], aside .social-static.social a[title='facebook'], .mop-icon .social-static.social a[title='facebook'] {background: #4267b2;}
footer .social-static.social a[title='sitemap'], aside .social-static.social a[title='sitemap'], .mop-icon .social-static.social a[title='sitemap'] {background: #3560ab;}
footer .social-static.social a[title='pinterest'], aside .social-static.social a[title='pinterest'], .mop-icon .social-static.social a[title='pinterest'] {background-color:#cc2127}
footer .social-static.social a[title='linkedin'], aside .social-static.social a[title='linkedin'], .mop-icon .social-static.social a[title='linkedin'] {background-color:#0976b4}
footer .social-static.social a[title='youtube'], aside .social-static.social a[title='youtube'], .mop-icon .social-static.social a[title='youtube'] {background-color:#e52d27}
footer .social-static.social a[title='spotify'], aside .social-static.social a[title='spotify'], .mop-icon .social-static.social a[title='spotify'] {background-color:#1ed760}
footer .social-static.social a[title='snapchat'], aside .social-static.social a[title='snapchat'], .mop-icon .social-static.social a[title='snapchat'] {background-color:#f5d602}
footer .social-static.social a[title='flickr'], aside .social-static.social a[title='flickr'], .mop-icon .social-static.social a[title='flickr'] {background-color:#FF0084}
footer .social-static.social a[title='wordpress'], aside .social-static.social a[title='wordpress'], .mop-icon .social-static.social a[title='wordpress'] {background-color:#207297}
footer .social-static.social a[title='blogger'], aside .social-static.social a[title='blogger'], .mop-icon .social-static.social a[title='blogger'] {background-color:#e96734}
footer .social-static.social a[title='instagram'], aside .social-static.social a[title='instagram'], .mop-icon .social-static.social a[title='instagram'] {background-color:#7c38af;background:radial-gradient(circle at 0 130%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%)}
footer .social-static.social a[title='behance'], aside .social-static.social a[title='behance'], .mop-icon .social-static.social a[title='behance'] {background-color:#009fff}
footer .social-static.social a[title='soundcloud'], aside .social-static.social a[title='soundcloud'], .mop-icon .social-static.social a[title='soundcloud'] {background-color:#FF5419}
footer .social-static.social a[title='messenger'], aside .social-static.social a[title='messenger'], .mop-icon .social-static.social a[title='messenger'] {background-color:#0084ff}
footer .social-static.social a[title='google-play'], aside .social-static.social a[title='google-play'], .mop-icon .social-static.social a[title='google-play'] {background-color:#3d9dab}
footer .social-static.social a[title='telegram'], aside .social-static.social a[title='telegram'], .mop-icon .social-static.social a[title='telegram'] {background-color:#32AEE1}
footer .social-static.social a[title='tumblr'], aside .social-static.social a[title='tumblr'], .mop-icon .social-static.social a[title='tumblr'] {background-color:#3e5a70}
.social-static.social i.fa {opacity: 0.9;display: block;width: 15px;height: 15px;}
aside .social-static.social li{float:right;vertical-align:middle;list-style:none;width:calc((100% - 4px) / 4);margin-left:1px;margin-bottom:1px}
.social-static.social i.fa:hover{opacity:1}
div#footer-social i.fa{opacity:1}
aside .social-static.social li a{border-radius:0;text-align:center;height:50px;display:flex;align-items:center}
aside .social-static.social i.fa, .mop-icon .social-static.social i.fa{opacity:1;width:22px;height:22px;margin:0 auto}
.social-static.social {display: block;overflow: hidden;vertical-align: middle;}
.shmal .social-static.social li a {display: block;padding: 6px;border-radius: 3px;}
.shmal .social-static.social li:first-of-type {margin-right: 0;}
/* aside linklist */
aside .LinkList ul li,footer .LinkList ul li,aside .PageList ul li,footer .PageList ul li{list-style:none;display:block}
aside .LinkList ul li a:hover::before,footer .LinkList ul li a:hover::before,aside .PageList ul li a:hover::before,footer .PageList ul li a:hover::before{background:#3560ab}
aside .LinkList ul li a,footer .LinkList ul li a,aside .PageList ul li a,footer .PageList ul li a{color:#525252;font-size:12px;padding:8px 25px 8px 10px;margin:0!important;border-bottom:1px solid #e6e6e6;background:#ffffff;display:block;position:relative}
aside .LinkList ul li:last-of-type a,footer .LinkList ul li:last-of-type a,aside .PageList ul li:last-of-type a,footer .PageList ul li:last-of-type a{padding-bottom:0;border-bottom:0}
aside .LinkList ul li a::before,footer .LinkList ul li a::before,aside .PageList ul li a::before,footer .PageList ul li a::before{content:"";width:8px;height:8px;position:absolute;background:#ffffff;top:13px;right:10px;z-index:999;transform:rotate(45deg);border:1px solid #e6e6e6}
aside .LinkList ul li a:hover:before,footer .LinkList ul li a:hover:before,aside .PageList ul li a:hover:before,footer .PageList ul li a:hover:before{background:#3560ab}
aside .LinkList ul li:first-of-type a,footer .LinkList ul li:first-of-type a,aside .PageList ul li:first-of-type a,footer .PageList ul li:first-of-type a{padding-top:0}
aside .LinkList ul li:first-of-type a::before,footer .LinkList ul li:first-of-type a::before,aside .PageList ul li:first-of-type a::before,footer .PageList ul li:first-of-type a::before{top:5px}
/* Label Widget */
.widget .list-label-widget-content ul{padding-right:20px}
.widget .list-label-widget-content ul li{font-size:14px;color:#1f1f1f;margin-bottom:5px;padding:4px 0;padding-bottom:7px;list-style:decimal;border-bottom:1px dashed #eee}
.widget .list-label-widget-content ul li a{color:#3e3e3e;font-size:13px;.cloud-label-widget-contentdisplay:block;padding:2px}
.widget .list-label-widget-content ul li:last-of-type{margin-bottom:0;border-bottom:0;padding-bottom:0}
span.label-count{float:left;color:#585858;text-align:center}
.widget.Label .cloud-label-widget-content span.label-size{float:right;width:calc((100% - 10px) / 2);vertical-align:middle;display:block;margin-bottom:10px}
.widget.Label .cloud-label-widget-content span.label-size a.label-name{padding:10px 10px;display:block;border-radius:30px;text-align:center;font-size:13px;color:#565656;border:1px solid #e6e6e6;background:#f7f7f7}
.widget.Label .cloud-label-widget-content span.label-size:nth-of-type(odd){margin-left:10px}
.widget.Label .cloud-label-widget-content span.label-size:nth-last-of-type(1),.widget.Label .cloud-label-widget-content span.label-size:nth-last-of-type(2){margin-bottom:0}
.widget.Label .cloud-label-widget-content span.label-size a:hover,.shareButton a:hover,.PagePrakediv a:hover{box-shadow:0 5px 14px rgba(0,0,0,0.15),0 1px 5px rgba(0,0,0,0.12)}
/* profile */
img.profile-img{border-radius:100%;border:1px solid #eee;margin:0 auto 15px;text-align:center;display:block}
.profile-info a.profile-link.g-profile{background:#eee;color:#000;display:inline-block;font-size:14px;border:1px solid #ccc;padding:5px 15px;border-radius:2px;margin-bottom:8px;margin-top:0}
dd.profile-textblock{font-size:12px;color:#383838}
.profile-info a.profile-link{display:none}
/* BlogSearch */
.BlogSearch input {border: 1px solid #f3f3f3;background: transparent;font-size: 13px;padding: 10px;border-radius: 3px;display: inline-block;width: 55px;}
.BlogSearch input.search-action:hover {background: #3560ab;color: #ffffff;}
input.search-action{cursor: pointer;}
.search-input{display:inline-block;width:calc((100% - 60px) / 1)}
.search-input input{display:block;width:100%}
/* BlogArchive */
div#ArchiveList ul.hierarchy{padding-right:30px}
div#ArchiveList ul.hierarchy ul.hierarchy{padding-right:15px}
div#ArchiveList ul.hierarchy ul.hierarchy ul.hierarchy li:not(:last-of-type){margin-bottom:5px;padding-bottom:5px}
div#ArchiveList ul.hierarchy li a, div#ArchiveList ul.flat li a{color:#121212}
div#ArchiveList ul.hierarchy ul.hierarchy ul.hierarchy li:first-of-type{margin-top:5px;padding-top:5px}
div#ArchiveList ul.hierarchy li{font-size:11px}
div#ArchiveList ul.hierarchy li a:hover, div#ArchiveList ul.flat li a:hover{color:#194ca9}
div#ArchiveList .hierarchy-title{font-size:13px;margin-bottom:5px;padding-bottom:5px;border-bottom:1px solid #f7f7f7}
div#ArchiveList .hierarchy-title span.post-count, div#ArchiveList ul.flat li span.post-count{float:left;width:25px;padding:0 0;text-align:center;background:#eee;border-radius:3px;border:1px solid #ccc;font-size:12px;font-weight:normal}
div#ArchiveList ul.flat {padding-right: 30px;}
div#ArchiveList ul.flat li:not(:last-of-type) {margin-bottom: 5px;padding-bottom: 5px;}
div#ArchiveList ul.flat li {font-size: 13px;}
/* FeaturedPost Widget */
.widget.FeaturedPost .post-title{margin-bottom:3px}
.widget.FeaturedPost .post-title a{font-size:16px;display:block;line-height:1.7em;max-height:4.5em;overflow:hidden;color:#444444;font-weight:normal}
.widget.FeaturedPost p.snippet-item.r-snippetized{color:#777777;line-height:1.7em;margin:5px 0;font-size:12px}
.widget.FeaturedPost .item-thumbnail.thumb{width:100%;min-height:150px;margin:0;height:auto}
/* PopularPosts Widget */
.PopularPosts a.item-thumbnail.thumb{width:90px;height:70px;margin-left:10px}
.PopularPosts h3.post-title{width:calc((100% - 100px) / 1);float:left;overflow:hidden;margin-top:1px;text-align:right;max-height:4em}
.PopularPosts h3.post-title a{font-size:13px;color:#444444}
.PopularPosts article.post{display:block;overflow:hidden;clear:both;margin-bottom:15px;padding-bottom:15px;border-bottom:1px solid #eee}
.PopularPosts article.post:last-of-type{margin-bottom:0;padding-bottom:0;border-bottom:0}
/* FollowByEmail Widget */
.widget.FollowByEmail .follow-by-email-inner:before {content: "";height: 160px;width: 100%;text-align: center;display: block;background:center no-repeat url("data:image/svg+xml;charset=utf8,%3Csvg aria-hidden='true' data-prefix='fal' data-icon='envelope-open' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='svg-inlin'%3E%3Cpath fill='%23585858' d='M349.32 52.26C328.278 35.495 292.938 0 256 0c-36.665 0-71.446 34.769-93.31 52.26-34.586 27.455-109.525 87.898-145.097 117.015A47.99 47.99 0 0 0 0 206.416V464c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V206.413a47.989 47.989 0 0 0-17.597-37.144C458.832 140.157 383.906 79.715 349.32 52.26zM464 480H48c-8.837 0-16-7.163-16-16V206.161c0-4.806 2.155-9.353 5.878-12.392C64.16 172.315 159.658 95.526 182.59 77.32 200.211 63.27 232.317 32 256 32c23.686 0 55.789 31.27 73.41 45.32 22.932 18.207 118.436 95.008 144.714 116.468a15.99 15.99 0 0 1 5.876 12.39V464c0 8.837-7.163 16-16 16zm-8.753-216.312c4.189 5.156 3.393 12.732-1.776 16.905-22.827 18.426-55.135 44.236-104.156 83.148-21.045 16.8-56.871 52.518-93.318 52.258-36.58.264-72.826-35.908-93.318-52.263-49.015-38.908-81.321-64.716-104.149-83.143-5.169-4.173-5.966-11.749-1.776-16.905l5.047-6.212c4.169-5.131 11.704-5.925 16.848-1.772 22.763 18.376 55.014 44.143 103.938 82.978 16.85 13.437 50.201 45.69 73.413 45.315 23.219.371 56.562-31.877 73.413-45.315 48.929-38.839 81.178-64.605 103.938-82.978 5.145-4.153 12.679-3.359 16.848 1.772l5.048 6.212z' %3E%3C/path%3E%3C/svg%3E");margin: 0 auto;}
input.follow-by-email-address{display:block;width:100%;height:40px;margin:15px 0;border-radius:3px;border:1px solid #efefef;text-align:center}
input.follow-by-email-submit{background:#eee;border:1px solid #ccc;padding:10px;border-radius:3px;width:100%;text-align:center;color:#6b6b6b;font-size:12px;cursor:pointer}
input.follow-by-email-address::placeholder{font-weight:normal;font-size:14px}
/* redirectPage css */
.ccontenr{height:250px;width:250px;margin:0 auto;text-align:center;border-radius:100%;border:20px solid #f8f8f8;position:relative;border-bottom-color:transparent}
.two{display:flex;align-items:center;text-align:center;justify-content:center;height:100%;font-size:45px;position:relative;top:-8px}
.border1{position:absolute;top:-20px;left:-20px;right:-20px;width:250px;height:250px;border:20px solid transparent;border-radius:50%;border-bottom-color:#3560ab}
.border2{position:absolute;top:-20px;left:-20px;right:-20px;width:250px;height:250px;border:20px solid transparent;border-radius:50%;border-bottom-color:#3560ab}
.border3{position:absolute;top:-20px;left:-20px;right:-20px;width:250px;height:250px;border:20px solid transparent;border-radius:50%;border-bottom-color:#3560ab}
.border4{position:absolute;top:-19px;left:-20px;right:-20px;width:250px;height:250px;border:20px solid transparent;border-radius:50%;border-bottom:23px solid #fff}
.safgasdg{height:245px;width:270px;margin:0 auto;border:0;overflow:hidden}
.zr{position:absolute;bottom:-10px;right:0;left:0;z-index:999999;border-style:solid;border-width:5px;border-color:rgba(0,0,0,0.03);display:inline-block;background-color:#f8f8f8;padding:5px 15px;width:160px;font-size:14px;margin:0 auto;border-radius:50px;color:#d2d2d2!important;text-decoration:none}
.run{cursor:progress}
.act{cursor:pointer;color:#3c5b92!important;border-color:#3560ab;border-style:double;transition:all 0.3s}
a.zr.act:hover{border-color:#3560ab;background:#3560ab;color:#fff!important}
.dis{cursor:no-drop;background-color:#ffcfcf;color:#de6262!important}
/* contact US */
#contact-form{padding:20px;border:1px dashed #eee}
div#Pagecontactus{margin:10px 0}
#ContactForm1_contact-form-name,#ContactForm1_contact-form-email,#ContactForm1_contact-form-email-message{margin:5px auto;border:1px solid #d6d6d6;transition:all .5s ease-out;width:100%;border-radius:2px;padding:8px 15px;margin-bottom:10px;background:transparent;font:400 14px 'Segoe UI'}
input#ContactForm1_contact-form-name{margin-top:0}
#ContactForm1_contact-form-submit{background:#eee;cursor:pointer;font-weight:bold;float:right;padding:8px 15px;color:#3c3c3c;margin:0 0;font-size:13px;border:1px solid #d4d4d4}
div#ContactForm1_contact-form-error-message img{vertical-align:middle;margin-right:3px}
textarea#ContactForm1_contact-form-email-message{margin-bottom:5px}
#ContactForm1_contact-form-name:focus,#ContactForm1_contact-form-email:focus,#ContactForm1_contact-form-email-message:focus{outline:none;border-color:rgb(60,91,146);border-style:solid}
/* search-box */
.stxk{position:fixed;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,0.58);z-index:999999999999;-webkit-box-shadow:0 1px 15px 5px rgba(32,33,36,0.1);box-shadow:0 1px 15px 5px rgba(32,33,36,0.1)}
.stxk{display:none}
.search-box{text-align:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 auto;overflow:hidden;top:0;left:0;right:0;bottom:0}
.search-box-fix{width:100%;margin:0 auto;height:100%;max-width:600px;background:transparent;vertical-align:middle;display:table-cell;position:fixed;max-height:150px;right:0;top:30%;bottom:0;left:0;z-index:999999999999999;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:center;}
.search-wrap{width:90%;height:100%;display:table;margin:0 auto;text-align:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0 20px;position:relative}
.search-fo{width:100%;height:100%;vertical-align:middle;display:table-cell}
.search-field{text-align:center;-webkit-appearance:none;padding:10px;border:none!important;background:transparent;width:100%;border-bottom:2px dashed #9e9e9e!important;font-size:30px;font-weight:bold;font-family:monospace;color:#fff}
.search-submit,.search-submit2{background:#2c82c9;-webkit-transition:.3s;-o-transition:.3s;transition:.3s;display:inline-block;margin:15px 0 -5px 0;width:45px;height:45px;position:relative;padding:7px 0;color:#ffffff;border-radius:5px;border:0!important}
.search-submit{background:#eee;border:1px solid #ccc;width:45px;height:45px;border-radius:50%;border:1px solid #ccc!important}
a.search-submit2 svg{margin:5px 0!important;width:30px!important;height:30px!important}
a.search-submit2{position:absolute;left:-15px;top:-15px;margin:0;border-radius:50%;background:transparent}
a.search-submit2 svg{margin:5px 0 0 0!important;vertical-align:-1px}
.search-box{display:none}
input.search-field::placeholder{color:#9e9e9e}
.textst{font-size:40px;color:#fff;position:relative;top:-20px}
header#sp-header .widget{overflow:initial}
.post-body a[imageanchor]{margin:0 auto!important}
.open.nav1,.search{display:flex;position:relative;float:left;margin:1px 0;background:#3560ab;width:30px;height:31px;text-align:center;align-items:center;border-radius:3px;top:14px;margin-right:5px}
a.op-one svg,.search svg{color:#ffffff;margin:0 9px;width:13px!important;height:13px}
.par-bottm.active .open.nav1,.par-bottm.active .search{top:-15px}
.search svg{position:relative;top:2px}
.pos-t-t{position:fixed;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,0.58);z-index:999999999;-webkit-box-shadow:0 1px 15px 5px rgba(32,33,36,0.1);box-shadow:0 1px 15px 5px rgba(32,33,36,0.1)}
.pos-t-t{display:none}
.mop-pages,.mop-links{margin-bottom:15px}
.mop-icon{margin-top:15px;margin-bottom:15px}
.closebtn{text-align:right;position:absolute;top:0;left:0;font-size:23px;z-index:9999;height:55px;display:block;float:left;line-height:53px;color:#484848;width:100%;padding:0 20px 0 10px}
.closebtn svg{width:1.3em;height:1.3em;margin-top:12px}
.sidenav{height:100vh;width:250px;position:fixed;top:0;right:-260px;background-color:#ffffff;overflow-x:hidden;transition:0.3s;z-index:999999999999999999999999;padding-top:45px;padding-right:10px;padding-left:10px;padding-bottom:45px;max-width:100%}
.sidenav.open {right: 0;}
.mop-icon .social-static.social li{float:right;vertical-align:middle;list-style:none;width:calc((100% - 4px) / 4);margin-left:1px;margin-bottom:1px}
.mop-icon .social-static.social li a{border-radius:0;text-align:center;height:50px;display:flex;align-items:center}
.mop-links #menu{overflow:hidden;clear:both;height:inherit;width:inherit;display:block}
.mop-pages #PageList1{overflow:hidden;clear:both;height:inherit;width:inherit;display:block}
.mop-pages ul,.mop-links ul{padding-right:30px}
.mop-pages ul li,.mop-links ul li{list-style:circle;font-size:13px}
.mop-pages ul li:hover,.mop-links ul li:hover{list-style:disc}
.mop-pages ul li a,.mop-links ul li a{color:#131313;display:block;padding-bottom:7px;margin-bottom:7px;border-bottom:1px solid #eee;font-size:13px}
.mop-links ul::before{display:none!important}
.mop-links li ul li a{padding-right:13px!important}
.mop-links li ul li a::before{right:0!important}
.mop-links .ma2.pluselink2 ul.ma2ul{transform:none!important;opacity:1!important;visibility:visible!important;position:relative!important;box-shadow:none!important;top:0!important;right:auto!important;width:auto!important;border:none!important;padding-right:10px!important}
.mop-links li.ma2.pluselink2 li a::before{transform:none!important}
.mop-links .pluselink span.icon,.mop-links .pluselink2 span.icon{top: 8px !important;transform:none!important}
.mop-links .ma.pluselink ul:not(.ma2ul){position:relative!important;right:auto!important;left:auto!important;top:auto!important;width:auto!important;background:transparent!important;box-shadow:none!important;border:none!important;transform:none!important;visibility:visible!important;opacity:1!important;padding-right:0!important;margin-right:-10px!important}
.mop-links li.ma.pluselink span.icon{left:0!important;top:0!important}
.mop-links .pluselink2:hover span.icon{left:0!important}
.mop-links li.ma2.pluselink2 span.icon {top: 8px !important;}
.loadMore{margin-top:15px;text-align:center;overflow:hidden;display:block;clear:both}
.noMorePosts,div#loader,.loadMore .loadMorePosts a{width:130px;background:#3560ab;color:#fff;display:block;margin:0 auto;position:relative;font-size:14px;border-radius:1px;padding:8px 13px;text-align:right}
.loadMore .loadMorePosts a:before,.noMorePosts:before,div#loader:before{content:"";width:27px;height:27px;display:block;background:#ffffff;position:absolute;left:5px;bottom:4px;border-radius:100%}
svg.icon-load{position:absolute;left:7.1px;bottom:5px;width:22px;height:22px;color:#3560ab}
div#loader svg.icon-load{bottom:7px;left:8px;width:21px;height:21px}
.noMorePosts{width:150px!important}
.noMorePosts svg.icon-load{width:19px;height:19px;bottom:8px;left:9px}
table {max-width: 100%;}
.titlewrapper .title{position: relative;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;width:250px}
.descriptionwrapper{display:none}
div#E3lanat{position:absolute;z-index:-1;opacity:0;visibility:hidden}
.toctitle{display:block;font-size:17px;padding-bottom:6px;border-bottom:1px solid #eee;margin-bottom:6px;position:relative;padding-right:16px}
.topcs7v{margin:15px 0;padding:15px 10px;border:1px solid #eee}
ul#tocList{padding-right:30px}
ul#tocList li{list-style:circle;margin-bottom:3px;padding-bottom:3px;border-bottom:1px solid #f7f7f7}
ul#tocList li:hover{list-style:disc}
ul#tocList li:last-of-type{margin-bottom:0;padding-bottom:0;border-bottom:0}
ul#tocList li a{color:#3560ab;font-size:13px;display:block}
ul#tocList li a:hover{color:#000}
.toctitle:before{content:"*";color:#3560ab;padding-left:5px;line-height:1em;position:absolute;right:5px;top:8px}
.hideensa{overflow:hidden;display:block;clear:both}
svg.svg-inline--fa.fa-exclamation-triangle.fa-w-18{width:200px;margin:0 auto 0;display:block;height:200px;color:#3560ab}
/*=================
New Worck
===================*/
.trelists{float:right;width:calc((100% - 30px) / 3)}
div#Postnw5,div#Postnw2{margin:0 15px}
.bocker{overflow:hidden;display:block;clear:both;position:relative}
div#main .HTML{clear: both;position: initial !important;padding: 0 20px !important;margin:0;border:0;background:transparent;}
.shreet .thumb,.shreet .Short_content{display:none}
.shreet h3.rnav-title{height:initial}
.shreet .Posts-byCategory {display: flex;position: absolute; right: 100%;transition: none !important;}
.shreet h3.rnav-title a:before {margin-left: 5px;content:'';background: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fal' data-icon='file-alt' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='%23444' d='M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zm-22.6 22.7c2.1 2.1 3.5 4.6 4.2 7.4H256V32.5c2.8.7 5.3 2.1 7.4 4.2l83.9 83.9zM336 480H48c-8.8 0-16-7.2-16-16V48c0-8.8 7.2-16 16-16h176v104c0 13.3 10.7 24 24 24h104v304c0 8.8-7.2 16-16 16zm-48-244v8c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm0 64v8c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm0 64v8c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12z'%3E%3C/path%3E%3C/svg%3E") center no-repeat;display: inline-block;vertical-align: middle;width: 13px;height: 13px;}
#shreeta5bar .headline,.shreet{margin:0}
#shreeta5bar .headline:before{display:none}
#shreeta5bar .headline{flex-shrink:0;margin-left:15px}
.shreet{position:relative;width:100%;height:40px;display:flex;overflow:hidden;align-items:center}
.shreet h3.rnav-title a{font-size:14px;display:block;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}
div#shreeta5bar .Label{box-shadow:0 0 1px 0 #d6d6d6;border:1px solid #ebebeb;padding:0 10px;height:60px;background:#fff;display:flex;align-items:center;flex-flow:nowrap;flex:1 100%}
#shreeta5bar .headline .title{float:right;height:35px;line-height:35px;padding:0 20px 0 50px;padding-top:0;padding-bottom:0;padding-right:50px;padding-left:20px;background:#3560ab;color:#ffffff;font-size:14px;position:relative;z-index:1}
.shreet .items a.author,.shreet .items span.Date{display:none}
.shreet .posts{padding-left:15px}
.shreet span.category{display:none}
#shreeta5bar .headline .title:before{display:none}
#shreeta5bar .headline .title:before {content: "";position: absolute;right: 17px;top: 7px;width: 20px;height: 20px;background: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fal' data-icon='newspaper' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath fill='%23fff' d='M552 64H88c-13.234 0-24 10.767-24 24v8H24c-13.255 0-24 10.745-24 24v280c0 26.51 21.49 48 48 48h504c13.233 0 24-10.767 24-24V88c0-13.233-10.767-24-24-24zM32 400V128h32v272c0 8.822-7.178 16-16 16s-16-7.178-16-16zm512 16H93.258A47.897 47.897 0 0 0 96 400V96h448v320zm-404-96h168c6.627 0 12-5.373 12-12V140c0-6.627-5.373-12-12-12H140c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12zm20-160h128v128H160V160zm-32 212v-8c0-6.627 5.373-12 12-12h168c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12H140c-6.627 0-12-5.373-12-12zm224 0v-8c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0-64v-8c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0-128v-8c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0 64v-8c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12z' class=''%3E%3C/path%3E%3C/svg%3E") center no-repeat;display: block;}
h3.rnav-title svg {float: right;vertical-align: middle;width: 13px;height: 13px;margin-left: 5px;margin-top: 2px;}
/*=================
responsev
===================*/
@media screen and (max-width:1100px){
div#top-social-L{margin-left:0}
.floar{width:75%}
.Sp-posts4 .posts:nth-of-type(1) .cont,.Sp-posts6 .posts .cont{margin:-80px 5% 0;width:90%}
.post-home,.Sp-Normal .cont{text-align: right;width:calc((100% - 295px) / 1)}
.post-outer .thumb,.Sp-Normal .thumb{width:280px}
.Sp-posts1 .posts{width:calc((100% - 30px) / 3);margin-left:15px;margin-right:0!important;margin-bottom:15px}
.Sp-posts1 .items a,.Sp-posts1 .items span{margin-left:0}
}
@media screen and (max-width:992px){
.open.nav1,.search{display:flex!important;top:-15px!important;position:absolute;z-index:9999999}
.open.nav1{right:3%!important}
.search{left:3%}
.PopularPosts a.item-thumbnail.thumb{width:80px;height:70px}
.PopularPosts h3.post-title{width:calc((100% - 90px) / 1)}
#sidepar-wid{width:250px}
.r-r{width:calc((100% - 250px - 15px) / 1)}
.par-tp{top:-335px!important}
nav.nav-par{display:none}
.shareButton .icon{height:13px;width:13px;margin-top:2px}
.Sp-slide .posts:nth-of-type(1){right:27.5%;width:45%}
.Sp-slide .posts:nth-of-type(2),.Sp-slide .posts:nth-of-type(4){right:-45%;padding:0 0 0 15px;width:27.5%}
.Sp-slide .posts:nth-of-type(3),.Sp-slide .posts:nth-of-type(5){padding:0 15px 0 0;width:27.5%}
.par-bottm #Header1_headerimg{max-height:50px;text-align:center}
.par-bottm #header-inner{width:auto;height:50px;margin:0 auto;text-align:center;display:block}
header#sp-header .widget{overflow:initial;text-align:center;margin:0 auto}
.par-bottm #logo{width:200px;height:50px;text-align:center;margin:0 auto}
.logo{float:none}
.head-pz{opacity:1}
header#sp-header,.head-pz{height:72px!important}
.par-bottm.active #logo{width:200px}
.par-bottm.active #header-inner{width:200px}
}
@media screen and (max-width:860px){
.trelists {float: none;width:100%}
.Sp-3colList .posts:nth-last-of-type(1),.Sp-3colList .posts:nth-last-of-type(2){margin-bottom:0!important;border-bottom:0!important;padding-bottom:0!important}
.Sp-slide .posts:not(:first-of-type) .rnav-title{padding:0 5px;max-height:initial!important;height:inherit!important}
.Sp-slide .posts:not(:first-of-type){vertical-align: top;height:inherit!important}
.mid-top-footer .footer-col{width:calc((100% - 30px) / 3);margin-left:15px}
.Sp-3colList .posts:nth-child(odd){margin-left:15px!important}
.Sp-3colList .posts{overflow:hidden;width:calc((100% - 15px) / 2);margin:0 0;vertical-align:top;display:inline-block;margin-bottom:15px!important;padding-bottom:15px!important;border-bottom:1px solid #eee!important}
.r-r,#sidepar-wid{position: static !important;float:none;width:100%!important;margin:0}
.Sp-slide .posts:nth-of-type(1){height:300px;right:0;width:100%;float:none;padding:0;margin-bottom:15px}
.Sp-slide .posts:nth-of-type(1) .thumb{height:300px}
.Sp-slide .posts:not(:first-of-type){margin:0 0 0 15px;width:calc((100% - 45px) / 4);padding:0!important;float:none;display:inline-block;right:0!important;left:0!important}
.Sp-slide .posts:last-of-type{margin-left:0!important}
}
@media screen and (max-width:720px){
.titlewrapper .title {width: auto;top: 5px;}
.headline .title{padding:8px 20px 6px}
a.Lapel-Link{padding:8px 20px 6px}
.Lapel-Link:hover{padding:8px 20px 6px 35px}
footer{padding:15px}
.mid-top-footer .footer-col .widget{margin-bottom:30px}
.mid-top-footer .footer-col{float:none;width:100%;margin-left:0!important}
.bottom-footer{padding:0;box-shadow:none}
.bottom-footer .yemen{display: block !important;float:none;text-align:center;margin-bottom:10px}
.yemen a[title="SeoPlus Template"] {display: inline-block !important;}
.bottom-footer .shmal{float:none;margin-top:0;margin:0 auto;text-align:center}
.shareButton a:nth-of-type(4){margin-right:0}
.shareButton a{width:calc((100% - 20px) / 3)}
}
@media screen and (max-width:640px){
.textst{font-size:35px}
.sides{width:100%;float:none;margin:0!important}
.Sp-posts5 .posts:nth-of-type(1){margin-left:0;padding-left:0;width:100%;display:block;margin-bottom:15px;border-left:0;height:initial}
.Sp-posts5 .posts:nth-of-type(1) a.thumb{width:100%;height:250px;margin-left:0}
.Sp-posts5 .posts{margin-left:15px;float:none}
.Sp-posts5 .posts:nth-of-type(3),.Sp-posts5 .posts:nth-of-type(5){margin-left:0}
.Sp-posts5 .posts:nth-last-of-type(1),.Sp-posts5 .posts:nth-last-of-type(2){margin-bottom:0;padding-bottom:0;border-bottom:0}
.Sp-posts5 .posts:nth-of-type(1) h3.rnav-title a{font-size:16px}
.Sp-posts1 .posts:nth-of-type(odd),.post .Sp-posts1 .posts:nth-of-type(odd){margin-left:15px!important}
.Sp-posts1 .posts,.post .Sp-posts1 .posts{width:calc((100% - 15px) / 2);margin-left:0!important;margin-right:0!important;margin-bottom:15px!important}
.Sp-posts1 .posts:nth-last-of-type(1),.Sp-posts1 .posts:nth-last-of-type(2),.post .Sp-posts1 .posts:nth-last-of-type(1),.post .Sp-posts1 .posts:nth-last-of-type(2){margin-bottom:0!important}
.Sp-slide .posts:nth-of-type(3),.Sp-slide .posts:nth-of-type(5){margin-left:0!important}
.Sp-slide .posts:not(:first-of-type){width:calc((100% - 15px) / 2);margin-bottom:15px}
.Sp-slide .posts:nth-last-of-type(1),.Sp-slide .posts:nth-last-of-type(2){margin-bottom:0}
.post-home,.Sp-Normal .cont{width:calc((100% - 195px) / 1)}
.post-outer .thumb,.Sp-Normal .thumb{width:180px}
.Sp-Normal span.category,.post-outer span.category{display:none!important}
.Sp-posts2 .posts{width:calc((100% - 2px) / 2)}
}
@media screen and (max-width:550px){
.topic-nav-cont .newPost, .topic-nav-cont .oldPost {float: none;width: 100%;}
.topic-nav-cont .newPost {margin-bottom: 5px;}
.Sp-3colList .posts:nth-child(odd){margin-left:0!important}
.Sp-posts5 .posts:not(:last-of-type),.Sp-posts5 .posts:nth-last-of-type(2),.Sp-3colList .posts,.Sp-3colList .posts:nth-last-of-type(2){margin-left:0;float:none;width:100%;margin-bottom:15px!important;padding-bottom:15px!important;border-bottom:1px solid #eee!important}
.Sp-posts5 .posts:nth-last-of-type(1){width:100%}
}
@media screen and (max-width:480px){
.post-outer .thumb,.Sp-Normal .thumb{width:50vw;margin-bottom:15px;width:100%;float:none}
.post-home,.Sp-Normal .cont{width:100%;float:none}
.Sp-Normal span.category,.post-outer span.category{display:inline-block!important}
.Sp-slide .posts:nth-of-type(1) .cont{top: -110px;margin:-80px 15px 0}
.Sp-slide .items a,.Sp-slide .items span{font-size:11px}
.Sp-slide .items a svg{width:11px}
.reactions-label{display:block;text-align:center;margin-bottom:15px}
iframe.reactions-iframe{height:20px;display:block;vertical-align:middle;text-align:center;margin:0 auto}
.author-profile{padding:15px}
.authorph{width:80px;height:80px;right:0;left:0;top:0;margin:0 auto;position:relative;z-index:3;margin-bottom:15px}
.dshdsgn{padding-left:0;padding-right:0;min-height:80px;text-align:center}
#siki-page-number{font-size:12px;padding:15px 0}
.siki-next-prev span{font-size:13px!important}
div#rx-options{float:right!important}
}
@media screen and (max-width:360px){
.Sp-posts2 .posts{width:100%;margin-left:0!important}
.shareButton a{width:calc((100% - 7px) / 2);margin-right:0!important}
.commint-cont,.atags .blog-admin{float:none}
.Sp-posts1 .posts,.Sp-posts1 .posts:nth-last-of-type(2),.post .Sp-posts1 .posts,.post .Sp-posts1 .posts:nth-last-of-type(2){margin:0 0 15px!important;width:100%!important;display:block;overflow:hidden}
.Sp-slide .posts:not(:first-of-type){width:100%;margin:0 0 15px!important}
.Sp-slide .posts:nth-last-of-type(1){margin-bottom:0!important}
.post .Sp-posts1 .posts:nth-last-of-type(3){margin-bottom:15px!important}
}
--></style>
<script>/*<![CDATA[*/
var _0x205f=['cmVs','JyA+PGltZyBhbHQ9Jw==','JyBjbGFzcz0nUExIb2xkZXIgdGh1bWInIGhyZWY9Jw==','PC9hPjwvaDM+PC9kaXY+PC9kaXY+','d3JpdGU=','aHJlZg==','bWVkaWEkdGh1bWJuYWls','aHR0cHM6Ly8yLmJwLmJsb2dzcG90LmNvbS8tTDNwaDZhc1NUcTQvWENKb1pwMHZIcEkvQUFBQUFBQUFBd00vSHpWXzc1MVQzdG9zVGtzVTFtODlEckMzbFk2SGxzczlBQ0s0QkdBWVlDdy9zMTYwMC1ydy1lOTAvZGVmYXVsdC5wbmc=','bGluaw==','YWx0ZXJuYXRl','PGRpdiBjbGFzcz0nUG9zdHMtYnlDYXRnb3J5Jz4=','ZGl2','ZmVlZA==','dXJs','Y29udGVudA==','Y3JlYXRlRWxlbWVudA==','PGRpdiBjbGFzcz0ncG9zdHMnPjxhIHRpdGxlPSc=','aW1n','Z2V0QXR0cmlidXRl','JyBkYXRhLXNyYz0n','aW5uZXJIVE1M','PC9kaXY+','ZW50cnk=','dGl0bGU=','JyAvPjwvYT48ZGl2IGNsYXNzPSdjb250Jz48aDMgY2xhc3M9J3JuYXYtdGl0bGUnPjxhIHRpdGxlPSc=','bGVuZ3Ro','JyBocmVmPSc='];(function(_0x1a5d4f,_0x205fda){var _0x53b8f1=function(_0x19e6cc){while(--_0x19e6cc){_0x1a5d4f['push'](_0x1a5d4f['shift']());}};_0x53b8f1(++_0x205fda);}(_0x205f,0xd2));var _0x53b8=function(_0x1a5d4f,_0x205fda){_0x1a5d4f=_0x1a5d4f-0x0;var _0x53b8f1=_0x205f[_0x1a5d4f];if(_0x53b8['yCDXKD']===undefined){(function(){var _0x455c63;try{var _0x48d442=Function('return\x20(function()\x20'+'{}.constructor(\x22return\x20this\x22)(\x20)'+');');_0x455c63=_0x48d442();}catch(_0xc18596){_0x455c63=window;}var _0x4f79f9='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';_0x455c63['atob']||(_0x455c63['atob']=function(_0x142388){var _0x25b810=String(_0x142388)['replace'](/=+$/,'');var _0x4303b2='';for(var _0x358360=0x0,_0x1e5e48,_0x44b9fe,_0x4aac50=0x0;_0x44b9fe=_0x25b810['charAt'](_0x4aac50++);~_0x44b9fe&&(_0x1e5e48=_0x358360%0x4?_0x1e5e48*0x40+_0x44b9fe:_0x44b9fe,_0x358360++%0x4)?_0x4303b2+=String['fromCharCode'](0xff&_0x1e5e48>>(-0x2*_0x358360&0x6)):0x0){_0x44b9fe=_0x4f79f9['indexOf'](_0x44b9fe);}return _0x4303b2;});}());_0x53b8['OBmmwF']=function(_0x385c70){var _0x403ca4=atob(_0x385c70);var _0x1fda95=[];for(var _0x5e9ab5=0x0,_0x208e25=_0x403ca4['length'];_0x5e9ab5<_0x208e25;_0x5e9ab5++){_0x1fda95+='%'+('00'+_0x403ca4['charCodeAt'](_0x5e9ab5)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x1fda95);};_0x53b8['udZnCM']={};_0x53b8['yCDXKD']=!![];}var _0x19e6cc=_0x53b8['udZnCM'][_0x1a5d4f];if(_0x19e6cc===undefined){_0x53b8f1=_0x53b8['OBmmwF'](_0x53b8f1);_0x53b8['udZnCM'][_0x1a5d4f]=_0x53b8f1;}else{_0x53b8f1=_0x19e6cc;}return _0x53b8f1;};function prst(_0x32e59b){document[_0x53b8('0xa')](_0x53b8('0x10'));for(var _0x17d676=0x0;_0x17d676<0x14;_0x17d676++){var _0x17a163=_0x32e59b['feed'][_0x53b8('0x1')][_0x17d676],_0x4e375f='';if(_0x17d676==_0x32e59b[_0x53b8('0x12')][_0x53b8('0x1')][_0x53b8('0x4')])break;for(var _0x532f94,_0x57fd17,_0x4aed35,_0x54ec58,_0x201687,_0x37e3b0=0x0;_0x37e3b0<_0x17a163[_0x53b8('0xe')][_0x53b8('0x4')];_0x37e3b0++)if(_0x53b8('0xf')==_0x17a163[_0x53b8('0xe')][_0x37e3b0][_0x53b8('0x6')]){_0x4e375f=_0x17a163[_0x53b8('0xe')][_0x37e3b0][_0x53b8('0xb')];break;}''!=_0x4e375f&&(_0x54ec58='',_0x54ec58=_0x17a163[_0x53b8('0xc')]&&_0x17a163['media$thumbnail'][_0x53b8('0x13')]&&''!=_0x17a163[_0x53b8('0xc')]['url']?_0x17a163[_0x53b8('0xc')][_0x53b8('0x13')]:(_0x532f94='',(_0x57fd17=document[_0x53b8('0x15')](_0x53b8('0x11')))[_0x53b8('0x1a')]=_0x17a163[_0x53b8('0x14')]['$t'],(_0x4aed35=_0x57fd17['querySelector'](_0x53b8('0x17')))&&(_0x532f94=_0x4aed35[_0x53b8('0x18')]('src')),_0x532f94||_0x53b8('0xd')),_0x201687=_0x17a163[_0x53b8('0x2')]['$t'],document[_0x53b8('0xa')](_0x53b8('0x16')+_0x201687+_0x53b8('0x8')+_0x4e375f+_0x53b8('0x7')+_0x201687+_0x53b8('0x19')+_0x54ec58+_0x53b8('0x3')+_0x201687+_0x53b8('0x5')+_0x4e375f+'\x27>'+_0x201687+_0x53b8('0x9')));}document[_0x53b8('0xa')](_0x53b8('0x0'));}
/*]]>*/</script>
<link href='../../../www.blogger.com/dyn-css/authorization2074.css' media='none' onload='if(media!='all')media='all'' rel='stylesheet'/><noscript><link href='../../../www.blogger.com/dyn-css/authorization2074.css' rel='stylesheet'/></noscript>
<meta name='google-adsense-platform-account' content='ca-host-pub-1556223355139109'/>
<meta name='google-adsense-platform-domain' content='blogspot.com'/>
<script data-ad-client="ca-pub-9742139951555584" data-ad-host="ca-host-pub-1556223355139109" async src="../../../external.html?link=https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- data-ad-client=ca-pub-9742139951555584 -->
</head>
<body class='post'>
<div class='hideee section' id='sittings'><div class='widget HTML' data-version='2' id='HTML2'><style>.par-tp {max-width: 100%;overflow: hidden;}.open.nav1, .search {top: -5px;}div#top-social-L{margin-left: 0}nav.nav-par{position:relative;top:-19px}.par-bottm{top:70px}header#sp-header{height:127px}.head-pz{height:127px}.floar:before{width:100%;transform:none;border-radius:0}.floar{width:100%}
@media screen and (max-width:992px){.head-pz {height: 97px;}header#sp-header {height: 97px;}.par-bottm {top: 35px;}}
</style></div>
<div class='widget HTML' data-version='2' id='HTML4'>
<style>.r-r {float: none;width: 100%;}aside#sidepar-wid {display: none;}</style>
</div>
<div class='widget HTML' data-version='2' id='HTML7'>
<style> body * {user-select: none !important;}</style>
</div>
<div class='widget HTML' data-version='2' id='HTML11'>
<style>
.head-pz,.par-bottm,.par-tp{position:absolute}
</style>
<div id='StopSitkyHeadar'></div>
</div>
<div class='widget HTML' data-version='2' id='HTML16'>
<style>/*<![CDATA[*/
@import url('../../../external.html?link=https://fonts.googleapis.com/css2?family=Tajawal:wght@500&display=swap');
body *{font-family: 'Tajawal', sans-serif!important}
/*]]>*/</style>
</div>
</div>
<div class='spconten'>
<header id='sp-header'>
<div class='head-pz'>
<div class='par-tp'>
<div class='floar'>
<div class='lap'>
<div class='section' id='pages'><div class='widget PageList' data-version='2' id='PageList1'>
<div class='widget-content'>
<ul>
<li>
<a href='../../../external.html?link=https://wsend.co/967774388821'>اتصل بنا</a>
</li>
<li>
<a href='../../../external.html?link=https://draft.blogger.com/blog/post/edit/3199397239271129121/8849682710613094025'>سياسه الخصوصيه</a>
</li>
<li>
<a href='../../../external.html?link=https://www.dxnarabia.com/pws/822029119'>للتسجيل واخذ رقم العضويه اون لاين </a>
</li>
<li>
<a href='../../../external.html?link=https://t.me/joinchat/AAAAAEhBwOT4x6Th_Tepgg'>عمولات الاعضاء الشهريه</a>
</li>
</ul>
</div>
</div></div>
<div class='section' id='top-social-L'><div class='widget LinkList' data-version='2' id='LinkList3'>
<div class='social-static social'>
<li><a href='../../../external.html?link=https://www.facebook.com/profile.php?id=100023910851021' rel='nofollow noopener' target='_blank' title='فيس بوك'><i class='fa fa-فيس بوك'></i></a></li>
<li><a href='../../../external.html?link=https://youtu.be/s95AGp2n488*' rel='nofollow noopener' target='_blank' title='يوتيوب'><i class='fa fa-يوتيوب'></i></a></li>
</div>
</div></div>
</div>
</div>
</div>
<div class='par-bottm'>
<div class='container'>
<div class='logo'>
<div class='section' id='logo'><div class='widget Header' data-version='1' id='Header1'>
<div id='header-inner'>
<div class='titlewrapper'>
<h2 class='title' style='background: transparent; border-width: 0px'>
<a href='../../index.html'>