-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1930 lines (1917 loc) · 253 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html><html class="ltr" dir="ltr" lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:b="http://www.google.com/2005/gml/b" xmlns:data="http://www.google.com/2005/gml/data" xmlns:expr="http://www.google.com/2005/gml/expr"><head>
<!--- Piki Templates All Packed SEO /-->
<meta content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1" name="viewport">
<title>HEMBRAM IT SOLUTIONS PVT.LTD </title>
<meta content="blogger" name="generator">
<link href="favicon.ico" rel="icon" type="image/x-icon">
<link href="favicon.ico" rel="icon" sizes="32x32">
<link href="favicon.ico" rel="icon" sizes="100x100">
<link href="favicon.ico" rel="apple-touch-icon">
<meta content="https://hembramit.blogspot.com/favicon.ico" name="msapplication-TileImage">
<link href="https://hembramit.blogspot.com/" hreflang="x-default" rel="alternate">
<meta content="#f4961e" name="theme-color">
<meta content="#f4961e" name="msapplication-navbutton-color">
<link href="https://hembramit.blogspot.com/" rel="canonical">
<link rel="alternate" type="application/atom+xml" title="HEMBRAM IT SOLUTIONS PVT.LTD - Atom" href="https://hembramit.blogspot.com/feeds/posts/default">
<link rel="alternate" type="application/rss+xml" title="HEMBRAM IT SOLUTIONS PVT.LTD - RSS" href="https://hembramit.blogspot.com/feeds/posts/default?alt=rss">
<link rel="service.post" type="application/atom+xml" title="HEMBRAM IT SOLUTIONS PVT.LTD - Atom" href="https://www.blogger.com/feeds/1874984854597007449/posts/default">
<link rel="me" href="https://www.blogger.com/profile/08335442304795947416">
<meta content="" name="description">
<!-- Metadata for Open Graph protocol available here http://ogp.me/. -->
<meta content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1" name="robots">
<meta content="website" property="og:type">
<meta content="HEMBRAM IT SOLUTIONS PVT.LTD " property="og:title">
<meta content="https://hembramit.blogspot.com/" property="og:url">
<meta content="" property="og:description">
<meta content="HEMBRAM IT SOLUTIONS PVT.LTD " property="og:site_name">
<meta content="https://blogger.googleusercontent.com/img/a/AVvXsEgAApSUJEATVvaGCKq0UAxeMzXfrF1eZGlblckJSuoEf1zv6smRmSSvIvLKrLT0hCZIF47fdmDIROf7CpmeIQZ412QYOMT7_V9KFZpBK-DyCVSI69uc_iHNdiLDwUUlDikrQb9wLnf8EdaW1_RHptBI9O8qycRXbm8c-x3r-V_9BZRa3ByPqghJghYiN2lL=w196-h196" property="og:image">
<meta content="HEMBRAM IT SOLUTIONS PVT.LTD " property="og:title">
<meta content="HEMBRAM IT SOLUTIONS PVT.LTD " name="keywords">
<link href="https://hembramit.blogspot.com/" hreflang="en" rel="alternate">
<meta content="summary_large_image" name="twitter:card">
<meta content="HEMBRAM IT SOLUTIONS PVT.LTD " name="twitter:title">
<meta content="https://hembramit.blogspot.com/" name="twitter:domain">
<meta content="" name="twitter:description">
<meta content="" name="twitter:creator">
<meta content="en_US" property="og:locale">
<meta content="en_GB" property="og:locale:alternate">
<meta content="id_ID" property="og:locale:alternate">
<script type="application/ld+json">{"@context":"http://schema.org","@type":"WebSite","name":"HEMBRAM IT SOLUTIONS PVT.LTD ","url":"https://hembramit.blogspot.com/","potentialAction":{"@type":"SearchAction","target":"https://hembramit.blogspot.com/search?q={search_term_string}","query-input":"required name=search_term_string"}}</script>
<link href="//1.bp.blogspot.com" rel="dns-prefetch">
<link href="//28.2bp.blogspot.com" rel="dns-prefetch">
<link href="//3.bp.blogspot.com" rel="dns-prefetch">
<link href="//4.bp.blogspot.com" rel="dns-prefetch">
<link href="//2.bp.blogspot.com" rel="dns-prefetch">
<link href="//www.blogger.com" rel="dns-prefetch">
<link href="//maxcdn.bootstrapcdn.com" rel="dns-prefetch">
<link href="//fonts.googleapis.com" rel="dns-prefetch">
<link href="//use.fontawesome.com" rel="dns-prefetch">
<link href="//ajax.googleapis.com" rel="dns-prefetch">
<link href="//resources.blogblog.com" rel="dns-prefetch">
<link href="//feeds.feedburner.com" rel="dns-prefetch">
<link href="//cdnjs.cloudflare.com" rel="dns-prefetch">
<link href="//www.google-analytics.com" rel="dns-prefetch">
<link href="//themes.googleusercontent.com " rel="dns-prefetch">
<link href="//pagead2.googlesyndication.com" rel="dns-prefetch">
<link href="//googleads.g.doubleclick.net" rel="dns-prefetch">
<link href="//www.gstatic.com" rel="preconnect">
<link href="//www.googletagservices.com" rel="dns-prefetch">
<link href="//static.xx.fbcdn.net" rel="dns-prefetch">
<link href="//tpc.googlesyndication.com" rel="dns-prefetch">
<link href="//apis.google.com" rel="dns-prefetch">
<link href="//www.facebook.com" rel="dns-prefetch">
<link href="//connect.facebook.net" rel="dns-prefetch">
<link href="//twitter.com" rel="dns-prefetch">
<link href="//www.youtube.com" rel="dns-prefetch">
<link href="//www.pinterest.com" rel="dns-prefetch">
<link href="//www.linkedin.com" rel="dns-prefetch">
<!-- Font Awesome Free 5.15.2 -->
<link href="css/fontawesome.min.css" rel="stylesheet">
<!-- Template Style CSS -->
<style id="page-skin-1" type="text/css"><!--
/*
-----------------------------------------------
Blogger Template Style
Name: Citron Default - Blogger Free Template
Version: 1.5.1.V
Author: Piki Templates
Author Url: https://pikitemplates.com/
Last Update: 16/May/2022
This Theme is Created by pikitemplates.com This work is licensed under a Creative Commons Attribution-NoDerivatives 4.0 International License http://creativecommons.org/licenses/by-nd/4.0/ No One Has Been Permission to Sell Or Distribute this template without Our Permission.
----------------------------------------------- */
/*-- Google Raleway Font Family --*/
@font-face{font-family:'Raleway';font-style:italic;font-weight:600;font-display:swap;src:url(fonts/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4bbLDr4fIA9c.woff2) format('woff2');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;}
@font-face{font-family:'Raleway';font-style:italic;font-weight:600;font-display:swap;src:url(fonts/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4bbLDrcfIA9c.woff2) format('woff2');unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;}
@font-face{font-family:'Raleway';font-style:italic;font-weight:600;font-display:swap;src:url(fonts/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4bbLDrwfIA9c.woff2) format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB;}
@font-face{font-family:'Raleway';font-style:italic;font-weight:600;font-display:swap;src:url(fonts/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4bbLDr0fIA9c.woff2) format('woff2');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;}
@font-face{font-family:'Raleway';font-style:italic;font-weight:600;font-display:swap;src:url(fonts/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4bbLDrMfIA.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
@font-face{font-family:'Raleway';font-style:normal;font-weight:400;font-display:swap;src:url(fonts/1Ptug8zYS_SKggPNyCAIT5lu.woff2) format('woff2');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;}
@font-face{font-family:'Raleway';font-style:normal;font-weight:400;font-display:swap;src:url(fonts/1Ptug8zYS_SKggPNyCkIT5lu.woff2) format('woff2');unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;}
@font-face{font-family:'Raleway';font-style:normal;font-weight:400;font-display:swap;src:url(fonts/1Ptug8zYS_SKggPNyCIIT5lu.woff2) format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB;}
@font-face{font-family:'Raleway';font-style:normal;font-weight:400;font-display:swap;src:url(fonts/1Ptug8zYS_SKggPNyCMIT5lu.woff2) format('woff2');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;}
@font-face{font-family:'Raleway';font-style:normal;font-weight:400;font-display:swap;src:url(fonts/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
@font-face{font-family:'Raleway';font-style:normal;font-weight:500;font-display:swap;src:url(fonts/1Ptug8zYS_SKggPNyCAIT5lu.woff2) format('woff2');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;}
@font-face{font-family:'Raleway';font-style:normal;font-weight:500;font-display:swap;src:url(fonts/1Ptug8zYS_SKggPNyCkIT5lu.woff2) format('woff2');unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;}
@font-face{font-family:'Raleway';font-style:normal;font-weight:500;font-display:swap;src:url(fonts/1Ptug8zYS_SKggPNyCIIT5lu.woff2) format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB;}
@font-face{font-family:'Raleway';font-style:normal;font-weight:500;font-display:swap;src:url(fonts/1Ptug8zYS_SKggPNyCMIT5lu.woff2) format('woff2');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;}
@font-face{font-family:'Raleway';font-style:normal;font-weight:500;font-display:swap;src:url(fonts/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
@font-face{font-family:'Raleway';font-style:normal;font-weight:600;font-display:swap;src:url(fonts/1Ptug8zYS_SKggPNyCAIT5lu.woff2) format('woff2');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;}
@font-face{font-family:'Raleway';font-style:normal;font-weight:600;font-display:swap;src:url(fonts/1Ptug8zYS_SKggPNyCkIT5lu.woff2) format('woff2');unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;}
@font-face{font-family:'Raleway';font-style:normal;font-weight:600;font-display:swap;src:url(fonts/1Ptug8zYS_SKggPNyCIIT5lu.woff2) format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB;}
@font-face{font-family:'Raleway';font-style:normal;font-weight:600;font-display:swap;src:url(fonts/1Ptug8zYS_SKggPNyCMIT5lu.woff2) format('woff2');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;}
@font-face{font-family:'Raleway';font-style:normal;font-weight:600;font-display:swap;src:url(fonts/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
@font-face{font-family:'Raleway';font-style:normal;font-weight:700;font-display:swap;src:url(fonts/1Ptug8zYS_SKggPNyCAIT5lu.woff2) format('woff2');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;}
@font-face{font-family:'Raleway';font-style:normal;font-weight:700;font-display:swap;src:url(fonts/1Ptug8zYS_SKggPNyCkIT5lu.woff2) format('woff2');unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;}
@font-face{font-family:'Raleway';font-style:normal;font-weight:700;font-display:swap;src:url(fonts/1Ptug8zYS_SKggPNyCIIT5lu.woff2) format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB;}
@font-face{font-family:'Raleway';font-style:normal;font-weight:700;font-display:swap;src:url(fonts/1Ptug8zYS_SKggPNyCMIT5lu.woff2) format('woff2');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;}
@font-face{font-family:'Raleway';font-style:normal;font-weight:700;font-display:swap;src:url(fonts/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
/*-- Font Awesome Free 5.15.1 --*/
@font-face{font-family:"Font Awesome 5 Brands";font-display:swap;font-style:normal;font-weight:400;font-display:block;src:url(fonts/fa-brands-400.eot);src:url(fonts/fa-brands-400.eot#iefix) format("embedded-opentype"),url(fonts/fa-brands-400.woff2) format("woff2"),url(fonts/fa-brands-400.woff) format("woff"),url(fonts/fa-brands-400.ttf) format("truetype"),url(images/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands";font-weight:400}
@font-face{font-family:"Font Awesome 5 Free";font-display:swap;font-style:normal;font-weight:400;font-display:block;src:url(fonts/fa-regular-400.eot);src:url(fonts/fa-regular-400.eot#iefix) format("embedded-opentype"),url(fonts/fa-regular-400.woff2) format("woff2"),url(fonts/fa-regular-400.woff) format("woff"),url(fonts/fa-regular-400.ttf) format("truetype"),url(images/fa-regular-400.svg#fontawesome) format("svg")}.far{font-family:"Font Awesome 5 Free";font-weight:400}
@font-face{font-family:"Font Awesome 5 Free";font-display:swap;font-style:normal;font-weight:900;font-display:block;src:url(fonts/fa-solid-900.eot);src:url(fonts/fa-solid-900.eot#iefix) format("embedded-opentype"),url(fonts/fa-solid-900.woff2) format("woff2"),url(fonts/fa-solid-900.woff) format("woff"),url(fonts/fa-solid-900.ttf) format("truetype"),url(images/fa-solid-900.svg#fontawesome) format("svg")}.fa,.far,.fas{font-family:"Font Awesome 5 Free"}.fa,.fas{font-weight:900}
/*-- Reset CSS Start Here --*/
html.rtl {
--body-font: 'Cairo',Arial,sans-serif;
--meta-font: 'Cairo',Arial,sans-serif;
--title-font: 'Cairo',Arial,sans-serif;
--text-font: 'Cairo',Arial,sans-serif;
}
:root{
--body-font:'Raleway', Arial, sans-serif;
--title-font:'Raleway', Arial, sans-serif;
--meta-font:'Raleway', Arial, sans-serif;
--text-font:'Raleway', Arial, sans-serif;
--text-font-color:#505050;
--runs-solid-color:#c1bbbb;
--black-color:#404040;
--hero-color:#aaaaaa;
--main-menu-bg:linear-gradient(45deg, #e07c03, #cdb202);
--snippet-color:#aba4a4;
--solid-border:#ddd;
--featured-posts-title:#333333;
--button-bg-color:#f4961e;
--button-text-color:#ffffff;
--lables-buttons-color:#f4961e;
--lables-text-color:#ffffff;
--email-bg-color:#0723eb;
--email-text-color:#ffffff;
--cloud-bg-color:#f4961e;
--cloud-border-color:#f4961e;
--list-text-color:#333333;
--theme-text-color:#3e3e3e;
--featured-gadgets-title:#e8e8e8;
--placeholder-text-color:#3e3e3e;
--main-menu-text-color:#ffffff;
--sub-menu-text-color:#3a3a3a;
--footer-title-color:#e8e8e8;
--footer-copyright-bg:#0e151d;
--body-color-main:#f4f4f4;
--all-link-color:#112b3e;
--black-text:#343434;
--main-text-color:#101010;
--mobile-menu-bg:#ffffff;
--white-bg:#ffffff;
--block-bg:#ffffff;
--paint-cards:#f7faff;
--featured-posts-title-featured:#ffffff;
--white-label-color:#ffffff;
--color-section:#e07c03;
--color-section1:#cdb202;
--color-section-text:#ffffff;
--bg-cards:#ffffff;
--bg-cards-video:#121212;
--bg-cards-shadow:0px 3px 3px 0 rgb(33 33 33 / 0.03);
--bt-breaking:rgba(0 0 0 / 0.08);
--bt-breaking-text:#626262;
--shadow-top:0 0 20px rgba(0,0,0,.15);
--shadow-top-fixed:5px 5px 8px 0px rgba(224 223 223 / 0.48);
--ads-bg:rgb(143 183 255 / 0.20);
--ads-text:#898989;
--buttons-category-text:#1d1d1d;
--snip-text-color:#eeeeee;
--search-bt-text:#ffffff;
--comments-dec:#333;
--sticky-bg:#f1f1f1;
--input-form:transparent;
--footer-email-title:#ffffff;
--bt-home:#f2f7fb;
--cm-count:#555555;
--shadow-light:0px 2px 5px 1px rgb(0 0 0 / 0.10);
--navigation-runs-text:#4e4e4e;
--sticky-lists:#f7fcff;
--post-snip-data:#707070;
--post-snip-open:#383838;
--ico-relative-hover:#ff0000;
--front-bg-lists:#fff;
--share-author-links:#585858;
--box-posts-share:#f1f1f1;
--title-share:#1c1c1c;
--title-share-fa:#5c5c5c;
--footer-text-color:#d7d7d7;
--footer-about-text:#868686;
--footer-bg-color:#15202b;
--footer-gadgets-title:#e8e8e8;
--main-logo-text-color:#222222;
--submenu-bg-color:#ffffff;
--comment-content:#f6f6f6;
--comment-text:#5e5e5e;
--label-text-color:#2c2c2c;
--pager-text-color:#6d6d6d;
--back-top:rgb(90 90 90 / 0.18);
--box-shadows:rgb(102 102 102 / 0.13);
}
a,abbr,acronym,address,applet,b,big,blockquote,body,caption,center,cite,code,dd,del,dfn,div,dl,dt,em,fieldset,font,form,h1,h2,h3,h4,h5,h6,html,i,iframe,img,ins,kbd,label,legend,li,object,p,pre,q,s,samp,small,span,strike,strong,sub,sup,table,tbody,td,tfoot,th,thead,tr,tt,u,ul,var{padding:0;border:0;outline:0;vertical-align:baseline;background:0;margin:0;text-decoration:none;}
form,textarea,input,button{font-family:var(--body-font);-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:0;box-sizing:border-box}
.CSS_LIGHTBOX{z-index:999999!important}.CSS_LIGHTBOX_ATTRIBUTION_INDEX_CONTAINER .CSS_HCONT_CHILDREN_HOLDER > .CSS_LAYOUT_COMPONENT.CSS_HCONT_CHILD:first-child > .CSS_LAYOUT_COMPONENT{opacity:0}
input,textarea{outline:none}
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
dl,ul{list-style-position:inside;font-weight:400;list-style:none}
button{cursor: pointer;outline: none;}
ul li{list-style:none}
caption,th{text-align:center}
html,body{text-size-adjust:none;-webkit-text-size-adjust:none;-moz-text-size-adjust:none;-ms-text-size-adjust:none}
.separator a{clear:none!important;float:none!important;margin-left:0!important;margin-right:0!important}
#Navbar1,#navbar-iframe,.widget-item-control,a.quickedit,.home-link,.feed-links{display:none!important}
.center{display:table;margin:0 auto;position:relative}
.widget > h2,.widget > h3{display:none}
.widget iframe,.widget img{max-width:100%}
.container{position:relative;max-width: 100%;width: 1080px;}
.center{display:table;margin:0 auto;position:relative}
img{border:0;position:relative}
a,a:visited{text-decoration:none}
.clearfix{clear:both}
.section,.widget,.widget ul{margin:0;padding:0}
a{color:var(--all-link-color)}
a img{border:0}
abbr{text-decoration:none}
.widget>h2,.widget>h3{display:none}
*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
/*-- CSS Variables --*/
.no-items.section{display:none}
h1,h2,h3,h4,h5,h6{font-family:var(--title-font);font-weight:600}
body{position:relative;background:var(--body-color-main);background-repeat:repeat;background-attachment: fixed;background-position:top;background-position:left;font-family:var(--body-font);font-size:14px;font-weight:400;color:var(--black-text);word-wrap:break-word;margin:0;padding:0;font-style:normal;line-height:1.4em}
#outer-wrapper{position:relative;overflow:hidden;width:100%;max-width:100%;margin:0 auto}
.outer-container{display: flex;justify-content: space-between;}
h1{font-size:26px;line-height:28px}
h3{font-size:22px;line-height:21px}
h4{font-size:20px;line-height:18px}
h5{font-size:16px;line-height:16px}
h6{font-size:13px;line-height:13px;margin-bottom:0;margin-top:0}
@media only screen and (min-width:1025px){h1{font-size:42px;line-height:46px}
h2{font-size:36px;line-height:40px}
h3{font-size:28px;line-height:35px}
h4{font-size:21px;line-height:26px}
}
.post-body h1{font-size:28px}
.post-body h2{font-size:24px}
.post-body h3{font-size:21px}
.post-body h4{font-size:18px}
.post-body h5{font-size:16px}
.post-body h6{font-size:13px}
.dark .post-body p{background:transparent!important;color:#fff!important}
.home #feed-view, .search-view #feed-view, .label-view #feed-view{width:100%}
#center-container{position:relative;float:left;width:100%;overflow:hidden;padding:10px 0 0;margin:0}
#feed-view{position:relative;float:left;width:calc(100% - (320px + 5px));box-sizing:border-box;padding:0}
#sidebar-container{position:relative;float:right;width:320px;box-sizing:border-box;padding:0}
.post-filter-image{position:relative;display:block;transition:transform .3s ease}
.snip-thumbnail{position:relative;width:100%;height:100%;display:block;object-fit:cover;z-index:1;opacity:0;transition:opacity .30s ease,transform .30s ease}
.snip-thumbnail.lazy-img{opacity:1}
.row,.row-1{position:relative;}
.post-filter-link:hover .snip-thumbnail{filter: brightness(0.9);}
.background-layer:before{content:'';position:absolute;left:0;right:0;bottom:0;height:66%;background-image:linear-gradient(to bottom,transparent,rgba(0,0,0,0.80));-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:2;opacity:1;margin:0;transition:opacity .25s ease}
.colorful-ico a:before,.social a:before{display:inline-block;font-family:'Font Awesome 5 Brands';font-style:normal;font-weight:400}
.colorful-ico .blogger a:before,.social .blogger:before{content:"\f37d"}
.colorful-ico .behance a:before,.social .behance:before{content:"\f1b4"}
.colorful-ico .digg a:before,.social .digg:before{content:"\f1a6"}
.colorful-ico .instagram a:before,.social .instagram:before{content:"\f16d"}
.colorful-ico .pinterest a:before,.social .pinterest:before{content:"\f0d2"}
.colorful-ico .rss a:before,.social .rss:before{content:'\f09e';font-family:'Font Awesome 5 Free';font-weight:900}
.colorful-ico .google a:before,.social .google:before{content:"\f1a0"}
.colorful-ico .paypal a:before,.social .paypal:before{content:"\f1ed"}
.colorful-ico .microsoft a:before,.social .microsoft:before{content:"\f3ca"}
.colorful-ico .messenger a:before,.social .messenger:before{content:"\f39f"}
.colorful-ico .facebook a:before,.social .facebook:before{content:"\f09a"}
.colorful-ico .facebook-f a:before,.social .facebook-f:before{content:"\f09a"}
.colorful-ico .twitter a:before,.social .twitter:before{content:"\f099"}
.colorful-ico .youtube a:before,.social .youtube:before{content:"\f167"}
.colorful-ico .stack-overflow a:before,.social .stack-overflow:before{content:"\f16c"}
.colorful-ico .github a:before,.social .github:before{content:"\f09b"}
.colorful-ico .linkedin a:before,.social .linkedin:before{content:"\f0e1"}
.colorful-ico .skype a:before,.social .skype:before{content:"\f17e"}
.colorful-ico .stumbleupon a:before,.social .stumbleupon:before{content:"\f1a4"}
.colorful-ico .tumblr a:before,.social .tumblr:before{content:"\f173"}
.colorful-ico .vk a:before,.social .vk:before{content:"\f189"}
.colorful-ico .reddit a:before,.social .reddit:before{content:"\f1a1"}
.colorful-ico .whatsapp a:before,.social .whatsapp:before{content:"\f232"}
.colorful-ico .telegram a:before,.social .telegram:before{content:"\f2c6"}
.colorful-ico .dribbble a:before,.social .dribbble:before{content:"\f17d"}
.colorful-ico .soundcloud a:before,.social .soundcloud:before{content:"\f1be"}
.colorful-ico .twitch a:before,.social .twitch:before{content:"\f1e8"}
.colorful-ico .delicious a:before,.social .delicious:before{content:"\f1a5"}
.colorful-ico .codepen a:before,.social .codepen:before{content:"\f1cb"}
.colorful-ico .snapchat a:before,.social .snapchat:before{content:"\f2ac"}
.colorful-ico .email a:before,.social .email:before{content:'\f0e0';font-family:'Font Awesome 5 Free'}
.colorful-ico .external-link a:before,.social .external-link:before{content:'\f35d';font-family:'Font Awesome 5 Free';font-weight:900}
.colorful a:hover {opacity: 0.8;}
.colorful a.blogger{color:#ff5722}
.colorful a.facebook,.colorful a.facebook-f{color:#3b5999}
.colorful a.twitter{color:#00acee}
.colorful a.youtube{color:#f50000}
.colorful a.messenger{color:#0084ff}
.colorful a.snapchat{color:#ffe700}
.colorful a.telegram{color:#179cde}
.colorful a.instagram{color:#dd277b}
.colorful a.pinterest,.colorful a.pinterest-p{color:#ca2127}
.colorful a.google{color:#0165b4}
.colorful a.apple{color:#000000}
.colorful a.microsoft{color:#0165b4}
.colorful a.dribbble{color:#ea4c89}
.colorful a.linkedin{color:#0077b5}
.colorful a.stumbleupon{color:#eb4823}
.colorful a.vk{color:#4a76a8}
.colorful a.stack-overflow{color:#f48024}
.colorful a.github{color:#24292e}
.colorful a.soundcloud{background:linear-gradient(#ff7400,#ff3400)}
.colorful a.behance{color:#191919}
.colorful a.digg{color:#1b1a19}
.colorful a.delicious{color:#0076e8}
.colorful a.codepen{color:#000}
.colorful a.flipboard{color:#f52828}
.colorful a.reddit{color:#ff4500}
.colorful a.tumblr{color:#365069}
.colorful a.twitch{color:#6441a5}
.colorful a.rss{color:#ffc200}
.colorful a.skype{color:#00aff0}
.colorful a.whatsapp{color:#3fbb50}
.colorful a.discord{color:#7289da}
.colorful a.share{color:var(--hero-color)}
.colorful a.email{color:#888}
.colorful a.external-link{color:#3500e5}
.social-front-hover a.facebook,.social-front-hover a.facebook-f{background:#3b5999}
.social-front-hover a.twitter{background:#00acee}
.social-front-hover a.whatsapp{background:#3fbb50}
.xXvi-mainmenu-logo{display:none}
#top-menu .selectnav{display:none}
.header-room{display:flex;flex-wrap:wrap;flex-direction:row;justify-content:space-between;align-items:center;align-content:center;}
.dark .post-body ol>li:before{color:#eee}
.mega-flex .section{width:50%;}
.mega-mode{position:relative;padding:0 15px;margin-right:10px;text-align:center;border-radius:30px;display:inline-block;align-items:center;z-index:999}
#xXvi-menuflex>.mega-menu{position:unset!important}
.Super-FlexMenu li:hover .BiggerMenu{opacity:1;visibility:visible}
.drop-down>a:after{content:'\f078';float:right;font-family:'Font Awesome 5 Free';font-size:9px;font-weight:900;margin:-1px 0 0 5px}
.BiggerMenu{position:absolute;background-color:var(--block-bg);top:59px;opacity:0;visibility:hidden;width:100%;left:0;box-sizing:border-box;border-radius:4px;right:0;z-index:3333;color:var(--white-bg);height:auto;padding:20px;min-height:100px;box-shadow:0 10px 10px rgb(0 0 0 / 0.07);transition:all .3s ease;}
.Super-FlexMenu li:hover .BiggerMenu{margin-top:1px;opacity:1;visibility:visible}
.mega-box{width:calc((100% - 50px) / 5);box-sizing:border-box;float:left;overflow:hidden;position:relative}
.mega-box:last-child{margin-right:0}
.mega-box .post-filter-link{position:relative;height:100%}
.mega-boxs{display:flex;justify-content:space-between;flex-wrap:wrap}
.mega-boxs .Mega-img-ui{height:180px;display:block;overflow:hidden;border-radius: 4px;}
.mega-boxs .entry-title{font-size:14px;font-weight:600;text-align: left;line-height:1.2em;margin:0}
.flex-section{display:flex;flex-wrap: wrap;width:100%;float:left;align-items:center;justify-content:center;}
.flex-ft{display:flex;justify-content:center;padding: 0 10px;}
#top-ad-placeholder .widget > .widget-title,#bottom-ad-placeholder .widget > .widget-title{display:none}
#top-ad-placeholder,#bottom-ad-placeholder{margin:15px 0;padding:0;width:100%;overflow:hidden;}
.main-ads-pikihome{position:relative;margin:15px 5px}
.main-ads-pikihome .widget{position:relative;float:left;width:100%;line-height:0;margin:0 0 5px}
#post-placeholder{position:relative;box-sizing:border-box;width:100%;height:auto;padding:0 5px;margin:10px 0}
#post-placeholder .widget{position:relative;width:100%;line-height:0;height:auto}
.footer-container{padding:20px;background:var(--footer-copyright-bg);}
.footer-container .footer-copyright{position:relative;font-size:13px;margin:15px 0 0}
.copyright-text{margin:0;color:var(--footer-text-color);}
.footer-container .footer-copyright a{color:var(--footer-text-color)}
.footer-container .footer-copyright a:hover{color:var(--footer-text-color)}
#footer-checks-menu{position:relative;display:block;margin:0}
.footer-checks-menu ul li{position:relative;float:left;margin:0 auto 8px;text-align:center;}
.footer-checks-menu ul li a{float:left;font-size:13px;background:rgb(112 112 112 / 0.16);color:var(--footer-text-color);padding:7px 12px;margin:0 5px;border-radius:15px;}
#footer-checks-menu ul li a:hover{opacity:0.8;}
.sharing-button .facebook a,.sharing-button .facebook-f a{background-color:#3b5999}
.sharing-button .twitter a,.sharing-button .twitter-square a{background-color:#00acee}
.sharing-button .reddit a{background-color:#ff4500}
.sharing-button .pinterest a,.sharing-button .pinterest-p a{background-color:#ca2127}
.sharing-button .linkedin a{background-color:#0077b5}
.sharing-button .whatsapp a{background-color:#3fbb50}
.sharing-button .email a{background-color:#888}
.xXvi-mainmenu .fa{color:#FFF! important}
#xXvi-menusuper{position:relative;float:left;width:100%;height:auto;margin:0}
.xXvi-mainmenuWorks .container{margin:0 auto;}
.xXvi-mainmenuWorks-wrap,.xXvi-mainmenuWorks{position:relative;background:var(--main-menu-bg);float:left;z-index: 990;width:100%;height:60px;box-sizing:border-box;padding:0;margin:0;box-shadow:var(--bg-cards-shadow);}
.SuperLogo-wrap{position:relative;box-sizing: border-box;width:100%;float:left;margin:0 30px 0 0;padding:0;}
.header-room img{display:block;width:auto;height:auto;max-height:45px;margin:0 0 0 10px;}
.show-menu-space{display:none;color:var(--main-menu-text-color);height:40px;font-size:17px;padding:0 15px;}
.header-section{position:relative;display:flex;flex-wrap:wrap;justify-content:space-between;float:left;width:100%;margin:0;}
.header-left{position:static;display:flex;margin:0;align-items: center;}
.rtl .header-right{left:14px;right: unset;}
.header-right{position:absolute;top:0;right:14px;margin:0;z-index: 11;backdrop-filter: blur(8px);overflow: hidden;}
.header-room h1{display:block;font-size:25px;color:var(--main-logo-text-color);height:30px;line-height:30px;overflow:hidden;padding:0;margin:0}
.header-room h1 a{color:var(--main-logo-text-color)}
.header-room #title-header{display:none;visibility:hidden}
.header-room .LinkList .widget-content{display:flex;justify-content:space-between;align-items:center;}
.xXvi-mainmenuWorks.show{top:0;margin:0;}
.xXvi-mainmenuWorks.fixed-nos.show{background:var(--main-menu-bg)}
.main-menu-wrap{position:static;height:56px;margin:0}
#Super-FlexMenu .widget,#Super-FlexMenu .widget>.widget-title{display:none}
#Super-FlexMenu .show-menu{display:block}
#Super-FlexMenu{position:static;height:56px;z-index:10}
#Super-FlexMenu ul>li{position:relative;display: flex;flex-shrink: 0;}
#xXvi-menuflex>li>a{position:relative;display:block;height:56px;font-size:14px;color:var(--main-menu-text-color);font-weight:600;text-transform:capitalize;line-height:56px;padding:0 10px;margin:0}
#xXvi-menuflex>li>a i{margin:0 3px 0 0;font-size:16px;color:var(--button-bg-color)}
#xXvi-menuflex>li>a:hover{opacity:0.8}
#Super-FlexMenu ul>li>ul{position:absolute;float:left;left:0;top:60px;width:180px;background:var(--submenu-bg-color);z-index:99999;visibility:hidden;opacity:0;-webkit-transform:translateY(-10px);transform:translateY(-10px);padding:0;box-shadow:0 2px 5px 0 rgba(0,0,0,0.15),0 2px 10px 0 rgba(0,0,0,0.17)}
#Super-FlexMenu ul>li>ul>li>ul{position:absolute;top:0;left:100%;-webkit-transform:translateX(-10px);transform:translateX(-10px);margin:0}
#Super-FlexMenu ul>li>ul>li{display:block;float:none;position:relative}
#Super-FlexMenu ul>li>ul>li a{position:relative;display:block;height:36px;font-size:13px;color:var(--sub-menu-text-color);line-height:36px;font-weight:600;box-sizing:border-box;padding:0 15px;margin:0;border-bottom:1px solid rgba(155,155,155,0.07)}
#Super-FlexMenu ul>li>ul>li:last-child a{border:0}
#Super-FlexMenu ul>li>ul>li:hover>a{opacity:0.8}
#Super-FlexMenu ul>li.sub-tab>a:after,#Super-FlexMenu ul>li.sub-has>a:after{content:'\f078';float:right;font-family:'Font Awesome 5 Free';font-size:9px;font-weight:900;margin:1px 0 0 5px}
#Super-FlexMenu ul>li>ul>li.sub-tab>a:after{content:'\f054';float:right;margin:0}
#Super-FlexMenu ul>li:hover>ul,#Super-FlexMenu ul>li>ul>li:hover>ul{visibility:visible;opacity:1;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform:translate(0);transform:translate(0)}
#Super-FlexMenu ul ul{transition:all .35s ease}
.loading-icon{width:100%;height:100%;display:flex ;justify-content:center;align-items:center;}
.loading-icon:after{content:"";width:40px;height:40px;border-radius:50%;border:2px solid var(--main-text-color);border-right:2px solid #c1c1c1;display:inline-block;animation:runload 0.6s infinite}
@-webkit-keyframes runload{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}
to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}
}
@keyframes runload{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}
to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}
}
.loading-frame{-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both}
@keyframes fadeIn{from{opacity:0}
to{opacity:1}
}
.run-time{animation-name:fadeIn}
@keyframes fadeInUp{from{opacity:0;transform:translate3d(0,5px,0)}
to{opacity:1;transform:translate3d(0,0,0)}
}
.load-time{animation-name:fadeInUp}
.overlay{visibility:hidden;opacity:0;position:fixed;top:0;left:0;right:0;bottom:0;z-index:1000;margin:0;transition:all .25s ease}
.show-menu-space:before{content:"\f0c9";font-family:'Font Awesome 5 Free';font-size:20px;font-weight:900}
#menu-space{display:none;position:fixed;width:80%;height:100%;top:0;left:0;bottom:0;background:var(--mobile-menu-bg);overflow:auto;z-index:1010;left:0;-webkit-transform:translateX(-100%);transform:translateX(-100%);visibility:hidden;box-shadow:3px 0 7px rgba(0,0,0,0.1);-webkit-transition:all .5s cubic-bezier(.79,.14,.15,.86);-moz-transition:all .5s cubic-bezier(.79,.14,.15,.86);-o-transition:all .5s cubic-bezier(.79,.14,.15,.86);transition:all .5s cubic-bezier(.79,.14,.15,.86)}
.spring-open #menu-space{-webkit-transform:translateX(0);transform:translateX(0);visibility:visible;opacity:.99;-webkit-transition:all .5s cubic-bezier(.79,.14,.15,.86);-moz-transition:all .5s cubic-bezier(.79,.14,.15,.86);-o-transition:all .5s cubic-bezier(.79,.14,.15,.86);transition:all .5s cubic-bezier(.79,.14,.15,.86)}
.area-runs{display:flex;padding:10px 0;margin:0 10px 0 0;opacity:0;transition:all ease-in-out .3s;justify-content:flex-end;}
#menu-space{transition:all .6s ease-in-out}
.hide-xXvi-mainmenu:hover{opacity:0.8;}
.hide-xXvi-mainmenu{display:block;color:var(--main-menu-text-color);font-size:14px;line-height:28px;text-align:center;cursor:pointer;z-index:20;background:rgb(137 137 137 / 0.10);border-radius:4px;padding:0 12px;transition:transform ease-out .2s;}
.hide-xXvi-mainmenu:before{content:"\f00d";font-family:'Font Awesome 5 Free';font-weight:900}
.spring-open .area-runs,.spring-open .menu-space-flex{opacity:1}
.menu-space-flex{display:flex;flex-direction:column;opacity:0;justify-content:space-between;float:left;width:100%;height:calc(100% - 8%);transition:all ease-in-out .3s}
.social-mobile ul{margin: 0 0 0 15px;float: left;}
.post-inner-data.flex{display:flex;align-content:center;}
.post-inner-user{position:relative;float:left;}
span.author-image{position:relative;display:block;height:40px;width:40px;}
span.author-image img{border-radius:50%;}
.xXvi-mainmenu{position:relative;float:left;width:100%;box-sizing:border-box;padding:0 25px}
ul#xXvi-menuflex{display:flex;height:56px;margin: 0 0 0 15px;}
.xXvi-mainmenu>ul{margin:0}
#Super-FlexMenu .fa{padding:0 5px}
.xXvi-mainmenu .fa{margin:5px;padding:auto}
.xXvi-mainmenu .m-sub{display:none;padding:0}
.xXvi-mainmenu ul li{position:relative;display:block;overflow:hidden;float:left;width:100%;font-size:14px;font-weight:600;margin:0;padding:0}
.xXvi-mainmenu>ul li ul{overflow:hidden}
.xXvi-mainmenu>ul>li{border-bottom:1px solid rgb(181 181 181 / 0.20)}
.xXvi-mainmenu>ul>li.sub-tab>a:after,.xXvi-mainmenu>ul>li>ul>li.sub-tab>a:after{font-family:'Font Awesome 5 Free';font-weight:900;content:"\f078";font-size:12px;position:absolute;right:0;margin-right:10px;height:100%;flex-direction:row;align-items:center;justify-content:center}
.rtl .xXvi-mainmenu>ul>li.sub-tab>a:after,.rtl .xXvi-mainmenu>ul>li>ul>li.sub-tab>a:after{left:0;right:unset;}
.xXvi-mainmenu ul li.sub-tab.show>a:after{content:'\f077'}
.xXvi-mainmenu ul li a:hover,.xXvi-mainmenu ul li.sub-tab.show>a,.xXvi-mainmenu ul li.sub-tab.show>.submenu-toggle{color:fff}
.xXvi-mainmenu>ul>li>ul>li a{display:block;font-size:13px;font-weight:600;color:var(--sub-menu-text-color);padding:5px 0 5px 15px;}
.xXvi-mainmenu>ul>li>ul>li a:before{content:"\2022";font-family:'Font Awesome 5 Free';font-style:normal;font-weight:700;color:rgb(88 88 88 / 0.42);font-size:15px;padding-right:5px}
.xXvi-mainmenu>ul>li>ul>li>ul>li>a{padding:5px 0 5px 30px}
.xXvi-mainmenu ul>li>.submenu-toggle:hover{opacity:0.8;}
.fixed-nos{position:fixed;top:-80px;left:0;width:100%;z-index:990;box-shadow: none;transition:top .17s ease}
.spring-open .fixed-nos{top:0}
.spring-open{overflow:hidden;left:0;right:0}
.search-wrap{position:relative;display:flex;height:56px;align-items:center;margin:0;}
#search-flex{display:none;position:absolute;top:0;left:0;width:100%;height:60px;box-sizing:border-box;background-color:rgb(255 255 255 / 0.24);backdrop-filter:saturate(100%) blur(10px);padding:0 20px;margin:0;z-index:25;box-shadow:0px 0px 3px 1px rgb(0 0 0 / 0.04);}
.search-flex-container{display:flex;justify-content:space-between;align-items:center;position:relative;float:right;width:100%;height:100%;background-color:rgba(0,0,0,0);overflow:hidden;margin:0;animation:animateSearch .20s ease}
.search-flex-container .search-form{position:relative;height:34px;background-color:rgb(139 139 139 / 0.16);flex:1;padding: 0 0 0 10px;border:0;border-radius: 4px 0 0 4px;}
.search-flex-container .search-input{position:relative;width:100%;height:35px;background-color:rgba(0,0,0,0);font-size:14px;color:var(--search-bt-text);font-weight:400;padding:0 15px 0 0;border:0;}
.search-flex-container .search-input:focus,.search-flex-container .search-input::placeholder{color:var(--search-bt-text);outline:none}
.search-flex-container .search-input:focus,.search-flex-container .search-input::placeholder{color:var(--search-bt-text);outline:none}
.search-flex-container .search-input::placeholder{opacity:.70}
.search-hidden:after{content:'\f00d';font-family:'Font Awesome 5 Free';font-weight:900;margin:0;}
@-webkit-keyframes animateSearch{0%{width:80%;opacity:0}
100%{width:100%;opacity:1}}
.search-flex-close{width:34px;height:34px;border-radius:0 4px 4px 0;background:rgb(139 139 139 / 0.16);color:var(--search-bt-text);font-size:14px;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:transform ease-out .2s;z-index:20;padding:0;margin:0;}
.search-flex-close:hover{opacity:0.8;}
.search-button-flex{color:var(--main-menu-text-color);top:0;right:0;width:40px;height:40px;font-size:16px;text-align:center;line-height:40px;cursor:pointer;z-index:20;padding:0;margin:0;transition:margin .25s ease;}
.search-button-flex:before{content:"\f002";font-family:'Font Awesome 5 Free';font-weight:900}
input.search-input{background-color:transparent;border:0;text-align:start;font-size:35px;padding:20px;color:#fff;-webkit-transition:all .3s ease-out;-moz-transition:all .3s ease-out;-ms-transition:all .3s ease-out;-o-transition:all .3s ease-out;transition:all .3s ease-out}
input.search-input[type=text]{width:83%;height:60px;display:block}
.search-msg{text-align:center;font-size:18px;color:rgba(255,255,255,0.96);padding:5px 0;margin:10px 0;border-bottom:1px dashed rgba(255 255 255 / 0.36)}
.search-input{position:relative;padding:20px;padding-bottom:10px}
.search-input input{border-radius:5px;padding:5px 10px;width:98%;border:2px solid #eee}
.paint-category{display:flex;justify-content:space-between;flex-wrap:wrap;;margin: 0 10px 25px;}
.paint-category .widget{width:calc((100% - 75px) / 6);float:left;background:var(--bg-cards);margin:8px 0;height:60px;overflow:hidden;display:flex;align-items:center;position:relative;border-radius:50px;box-shadow:-1px 4px 8px 0 rgb(0 0 0 / 0.10);transition:all .3s ease;}
a.paint-title{display:flex;width:100%;box-sizing:border-box;align-items:center;}
.paint-category .widget:nth-child(1):hover{background:linear-gradient(190deg,#b9c7ff,#1573ff);box-shadow:0px 10px 15px -8px rgb(44 124 243 / 0.76);}
.paint-category .widget:nth-child(2):hover{background:linear-gradient(190deg,#edc7c7,#fd4785);box-shadow:0px 10px 15px -8px rgb(255 65 65 / 0.76);}
.paint-category .widget:nth-child(3):hover{background:linear-gradient(190deg,#e8fff5,#0fbc9e);box-shadow:0px 10px 15px -8px rgb(37 195 167 / 0.76);}
.paint-category .widget:nth-child(4):hover{background:linear-gradient(190deg,#fddbff,#af3fff);box-shadow:0px 10px 15px -8px rgb(182 76 255 / 0.75);}
.paint-category .widget:nth-child(5):hover{background:linear-gradient(190deg,#ffe8a0,#fd7900);box-shadow:0px 10px 15px -8px rgb(253 130 13 / 0.75);}
.paint-category .widget:nth-child(6):hover{background:linear-gradient(190deg,#ecf0ff,#4d94ff);box-shadow:0px 10px 15px -8px rgb(91 156 255 / 0.75);}
.paint-category-img{position:relative;display:block;overflow:hidden;width:40%;margin:0;}
.paint-category-img img{position:relative;display:block;height:40px;width:40px;border-radius:50%;object-fit:cover;margin:0 0 0 6px;padding:6px;}
.rtl .paint-category-img img{margin:0 6px 0 0;}
.rtl .paint-category-title h2{margin:0 0 0 10px;}
#Image1 .paint-category-img img{background:rgb(0 114 255 / 13%)}
#Image2 .paint-category-img img{background:rgb(255 0 0 / 13%)}
#Image3 .paint-category-img img{background:rgb(0 255 96 / 23%)}
#Image4 .paint-category-img img{background:rgb(164 0 255 / 13%)}
#Image5 .paint-category-img img{background:rgb(255 125 0 / 23%)}
#Image6 .paint-category-img img{background:rgb(0 114 255 / 13%)}
.paint-category-title{position:relative;display:block;width:calc(60% - 0px);padding:0;}
.paint-category-title h2{display:block;line-height:18px;height:18px;overflow:hidden;font-family:var(--title-font);color:var(--theme-text-color);font-size:13px;text-align:center;text-transform:capitalize;margin: 0 10px 0 0;}
.paint-title:hover .paint-category-title h2{color:#fff;}
div#mega-wrap{position:relative;background:linear-gradient(45deg,var(--color-section),var(--color-section1));overflow: hidden;}
.color-section .widget{display:flex;justify-content:space-between;margin:0 auto;align-items:center;}
.color-wrapper{position:relative;width:calc(60% - 1em);overflow:hidden;z-index:2;}
.color-image{position:relative;width:40%;z-index:2;}
.color-section .flexi-title h3{display:block;font-family:var(--title-font);font-size:30px;color:var(--white-bg);font-weight:700;line-height:1.4em;margin:0 0 15px;}
.color-caption{font-family:var(--text-font);color:var(--color-section-text);font-size:14px;font-weight:500;line-height:1.5em;margin:0;}
.color-section{margin:26px 15px 10%;}
.color-section .color-search .search-input::placeholder{color:rgba(255 255 255 / 0.52);}
.color-image img{position:relative;display:block;width:100%;min-height:180px;max-height:365px;object-fit:cover;overflow:hidden;margin:auto;}
.color-search{position:relative;flex:1;margin-top:30px;padding:0;float:left;width:70%;}
.color-search .search-form{position:relative;width:100%;height:50px;background-color:rgb(255 255 255 / 0.12);overflow:hidden;display:flex;justify-content:space-between;border-radius:8px}
.color-search .search-input{position:relative;flex:1;width:100%;height:50px;color:var(--color-section-text);background-color:rgba(0,0,0,0);font-family:inherit;font-size:14px;font-weight:400;padding:0 0 0 15px;}
.color-search .search-action{position:relative;background-color:rgba(0,0,0,0);font-family:inherit;height:50px;color:var(--color-section-text);font-size:16px;font-weight:400;line-height:32px;text-align:center;cursor:pointer;padding:0 15px;border:0;opacity:.65}
.color-search .search-action:before{display:block;content:'\f002';font-family:'Font Awesome 5 Free';font-weight:900}
.color-hero{position:absolute;z-index:1;bottom:-10px;left:0;height:auto;width:100%;background-size:cover;}
svg#color-wave{fill:var(--body-color-main);position:absolute;bottom:-10px;left:0;right:0;}
div#mega-flex0,#mega-flex1{background:var(--bg-cards);}
.head-title{margin:10px 0 20px;}
.head-title .widget:after{left:0;margin:0 auto;position:absolute;right:0;bottom:3px;background-image:linear-gradient(to right,rgb(255 255 255 / 0),var(--button-bg-color),rgba(0,0,0,0));content:"";height:1px;width:37%;}
.head-title .widget{margin:0 0 15px;}
.head-title .widget-title{position:relative;display:block;text-align:center;margin:0 auto;}
.head-title .widget-title h3{display:block;color:var(--main-text-color);font-size:19px;margin:10px 0 0;}
.head-title .widget-content{text-align:center;}
.tint-category{display:flex;justify-content:space-between;margin:0 10px 25px;flex-wrap:wrap;}
.tint-category .widget{width:calc((100% - 50px) / 3);float:left;background:var(--paint-cards);padding:0;margin:15px 0;overflow:hidden;position:relative;border-radius:14px;border:1px solid rgb(109 109 109 / 0.10);transition:all .3s ease;}
.tint-category-img a{position:relative;display:flex;height:120px;width:120px;margin:40px auto 15px;overflow:hidden;border:1px solid rgb(0 0 0 / 0.06);border-radius:70% 30% 30% 70% / 60% 40% 60% 40%;transition:.5s;box-shadow:0px 0px 6px 3px rgb(33 33 33 / 0.06);align-items:center;}
#Image8 .tint-category-img a{background: rgb(255 50 50 / 0.08);}
#Image9 .tint-category-img a{background: rgb(124 255 50 / 0.08);}
#Image10 .tint-category-img a{background: rgb(50 164 255 / 0.08);}
#Image11 .tint-category-img a{background: rgb(219 50 255 / 0.08);}
#Image12 .tint-category-img a{background: rgb(255 222 50 / 0.08);}
#Image13 .tint-category-img a{background: rgb(50 255 208 / 0.08);}
.tint-category-img img{position:relative;width:65%;height:65%;display:flex;object-fit:cover;text-align:center;border-radius:50%;margin:auto;justify-content:center;align-items:center;align-content:center;}
.tint-category-img a:hover{border-radius:50%;}
.tint-category-title{position:relative;border-radius:21px;width:80%;margin:0 auto;padding:3px 0;}
.tint-category-title h2{display:block;width:100%;line-height:18px;font-family:var(--title-font);font-size:17px;font-weight: 700;text-align:center;margin:10px 0;}
.tint-category-title h2 a{color:var(--theme-text-color);}
.tint-category-img a:hover,.tint-category-title h2 a:hover{opacity:0.8;}
.tint-category-caption{position:relative;display:block;font-size:13px;font-weight:600;color:var(--theme-text-color);text-align:center;margin:0 10px 30px;opacity: 0.7;}
.rotating-box{position:absolute;top:0;left:0;width:100%;height:100%;z-index:1;}
.rotating-box li{position:absolute;list-style:none;display:block;width:40px;height:40px;border-radius:18%;background-color:rgba(255,255,255,0.10);bottom:-160px;-webkit-animation:square 25s infinite;animation:square 25s infinite;-webkit-transition-timing-function:linear;transition-timing-function:linear;}
.rotating-box li:nth-child(1){left:10%;}
.rotating-box li:nth-child(2){left:20%;width:80px;height:80px;animation-delay:2s;animation-duration:17s;}
.rotating-box li:nth-child(3){left:25%;animation-delay:4s;}
.rotating-box li:nth-child(4){left:40%;width:60px;height:60px;animation-duration:22s;background-color:rgba(255,255,255,0.25);}
.rotating-box li:nth-child(5){left:70%;}
.rotating-box li:nth-child(6){left:80%;width:100px;height:100px;animation-delay:3s;background-color:rgba(255,255,255,0.2);}
.rotating-box li:nth-child(7){left:32%;width:80px;height:80px;animation-delay:7s;}
.rotating-box li:nth-child(8){left:55%;width:20px;height:20px;animation-delay:15s;animation-duration:40s;}
.rotating-box li:nth-child(9){left:25%;width:10px;height:10px;animation-delay:2s;animation-duration:40s;background-color:rgba(255,255,255,0.3);}
.rotating-box li:nth-child(10){left:90%;width:80px;height:80px;animation-delay:11s;}
@-webkit-keyframes square{0%{transform:translateY(0);}
100%{transform:translateY(-700px) rotate(600deg);}
}
@keyframes square{0%{transform:translateY(0);}
100%{transform:translateY(-700px) rotate(600deg);}
}
#hidden-widget-container,.hide,.hidden-widgets{display:none;visibility:hidden}
.post-snip{color:var(--post-snip-data);font-size:12px;font-weight:400;padding:0}
span.post-author{font-weight: 500;margin:0 0 0 4px;}
span.post-author:not(.entery-category-fly span.post-author){color:var(--lables-buttons-color);}
.sidebar .PopularPosts .gaint .post-snip{--post-snip-data:var(--snip-text-color);--label-text-color:var(--snip-text-color);}
.entery-category-box{overflow:hidden;}
.sidebar .popular-post .entery-category-box{padding: 7px 0 0;}
span.post-tag{width:fit-content;display:flex;align-items:center;height:18px;background-color:var(--lables-buttons-color);font-size:10px;color:var(--lables-text-color);font-weight:500;line-height:0;padding:1px 8px 0;border-radius:2px;z-index:2;}
img.post-author-image{position:relative;display:inline-block;height:20px;width:20px;border-radius:50%;vertical-align:middle;}
.rtl img.post-author-image{margin: 0 0 0 5px;}
span.post-author:after{position:relative;display:inline-block;content:"in";margin:0 3px;color:var(--post-snip-data)}
.post-inner-username{display:flex;flex-direction:column;margin:0 0 0 10px;}
.all-flex{display:flex;justify-content:space-between;align-items:center;padding:0 0 12px;border-bottom:1px solid rgb(100 100 100 / 0.12)}
.post-inner-comments.flex{position:relative;overflow:hidden;margin:0 5px 0;display:flex;align-items:center;align-content:center;}
.post-times{position:relative;overflow:hidden;margin:4px 0 0;}
span.post-author-times{position:relative;display:block;font-size:12px;color:var(--theme-text-color);}
span.post-author-times i{margin:0 4px 0 0;}
.rtl span.post-author-times i{margin:0 0 0 4px;}
.post-times span.post-date{position:relative;font-size:12px;color:var(--post-snip-data);}
span#readTime{position:relative;font-size:12px;color:var(--post-snip-data);}
span#readTime:before{content:"\f017";font-family:'Font Awesome 5 Free';font-size:13px;margin:0 3px 0 5px;}
.post-times span.post-date:before{content:"\f272";font-family:'Font Awesome 5 Free';font-size:13px;margin:0 5px 0 0;}
.rtl .post-times span.post-date:before{margin:0 0 0 5px;}
.post-snip .post-date:before{font-family:'Font Awesome 5 Free';font-weight:400;margin:0 3px 0 0}
.item .post-snip .post-author:before{content:'By -';margin:0 3px 0 0;font-weight:normal;}
.item .post-snip .post-date:before{content:'\f017'}
.post-snip a{color:#333;transition:color .40s}
.post-snip .author-image{overflow:hidden;position:relative;display:inline-block;width:25px;vertical-align:middle;height:25px;background-color:var(--runs-author-color);padding:1px;margin:0 3px 0 0;border:1px solid rgba(0 0 0 / 0.25);border-radius:100%;box-shadow:0px 0px 4px 3px rgba(0 0 0 / 0.06);}
.piki-ads{display:block;overflow: hidden;background-color:var(--ads-bg);text-align:center;line-height:85px;font-size:13px;font-style:italic;color:var(--ads-text);border-radius:6px;}
.piki-ads-res{display:block;background-color:var(--ads-bg);text-align:center;line-height:205px;font-size:13px;font-style:italic;color:var(--ads-text);border-radius:6px;}
.post-filter .entry-title,.grid-bottom .bottom-posts .entry-title,.related-wrap-ui .entry-title,.xXvi-related .entry-title{display:block;width:100%;text-decoration:none;font-weight:700;line-height:1.3em;padding:5px 0;margin:0}
.post-filter .entry-title,.grid-bottom .bottom-posts .entry-title{font-size:14px;}
.post-filter .entry-title,.grid-bottom .bottom-posts .entry-title{margin:10px 0 0;line-height: 18px;}
.post-filter .entry-title,.grid-bottom .bottom-posts .entry-title{height:34px;overflow:hidden;}
.xXvi-related .entry-title,.related-wrap-ui .entry-title{font-size:14px;}
.entry-title a{display:block;color:var(--featured-posts-title)}
.entry-title a:hover{opacity:0.8}
.StickyBox{position:fixed;top:0;right:0;bottom:0;left:0;width:100%;height:100%;display:flex;align-items:center;justify-content:center;opacity:0;visibility:hidden;transform: translate3d(0,72%,0);transition: all .2s ease;z-index:15151515;}
.show-share .StickyBox{opacity:1;visibility:visible;transform: translate3d(0,0,0);}
.StickyTab{display:flex;flex-direction:row;align-content:center;justify-content:space-between;align-items:center;width:100%;box-sizing:border-box;padding:0 0 20px;margin:0 0 10px;color:var(--title-share);border-bottom:1px solid rgb(92 92 92 / 0.17);}
.StickyType{position:relative;display:block;float:left;font-size:15px;font-weight: 700;}
.copy-section{width:100%;}
.copy-section .title{font-size:14px;font-weight:700;padding:0 20px;}
.copy-post{display:flex;align-items:center;align-content:center;box-sizing:border-box;position:relative;justify-content:center;margin:10px 20px 0;}
.copy-post:before{content:'\f0c1';font-weight:600;font-family:'Font Awesome 5 Free';position:absolute;left:12px;font-size:15px;color:var(--theme-text-color)}
.rtl .copy-post:before{left:initial;right:12px;}
.copy-post.copied:before{content:'\f560';color:#16c900;}
.copy-post input#showlink{color:#6b6b6b;background: transparent;width:100%;height:35px;padding:0 0 0 38px;border:1px solid rgb(133 133 133 / 0.20);border-radius:5px 0 0 5px;}
.rtl .copy-post input#showlink{padding:0 38px 0 0;border-radius:0 5px 5px 0;}
.copy-post button{background:var(--button-bg-color);color:var(--button-text-color);height:35px;width:80px;border:none;cursor:pointer;border-radius:0 5px 5px 0;}
.rtl .copy-post button{border-radius:5px 0 0 5px;}
.StickyTab label{position:relative;display:block;font-size:20px;cursor:pointer;color:var(--title-share)}
.StickyDemo{width:100%;max-width:500px;max-height:90%;display:flex;margin:0 auto;padding:20px 20px 35px;background-color:var(--bg-cards);border-radius:8px;overflow:hidden;position:relative;box-shadow:0 10px 8px -8px rgb(0 0 0 / 0.12);flex-direction:column;align-content:center;align-items:center;justify-content:space-between;}
.share-wrapper-icons.colorful-ico{display:flex;flex-wrap:wrap;list-style:none;margin:0 0 10px;padding:10px 0 20px;border-bottom:1px solid rgb(133 133 133 / 0.20);}
.share-wrapper-icons.colorful-ico li{list-style:none;width:25%;text-align:center;}
.share-wrapper-icons.colorful-ico li a{display:block;width:80px;height:40px;line-height:25px;font-size:11px;margin:6px auto;padding:15px 0;border-radius:2px;background:var(--box-posts-share);border:1px solid rgb(116 116 116 / 0.09);text-align:center;cursor:pointer;}
.share-wrapper-icons.colorful-ico li a:hover{opacity:0.8}
.messageDone span{position:absolute;left:0;right:0;bottom:-70px;font-size:12px;display:block;width:190px;margin:0 auto 20px;padding:8px;border-radius:3px;background-color:rgb(0 0 0 / 0.63);color:#fefefe;line-height:20px;text-align:center;opacity:0;-webkit-animation:slidein 2s ease forwards;animation:slidein 2s ease forwards;}
div#messageDone{display:block;padding:20px 0 0;}
.share-wrapper-icons.colorful-ico a:before{font-size:24px;text-align:center;margin:0 auto;display:block;}
.show-share .overlay{filter:blur(2.5px);background-color:rgba(27,27,37,0.5);z-index:151515;backdrop-filter:saturate(100%) blur(2.5px);visibility:visible;opacity:1;}
.sidebar .PopularPosts .gaint h2.entry-title{color:var(--featured-posts-title-featured)}
.piki-main-hero{display:flex;flex-wrap:wrap;justify-content:space-between;}
a.simple-viewmore:hover{opacity:0.8}
span.post-tag-fly{position:absolute;left:5px;bottom:5px;background-color:var(--lables-buttons-color);font-size:10px;color:var(--lables-text-color);font-weight:500;text-transform:uppercase;padding:1px 8px 0;border-radius:4px;z-index:2;}
.entery-category-fly{position:absolute;left:0;bottom:0;z-index:11;width:100%;box-sizing:border-box;padding:5px 10px 10px}
.related-box-featured{position:relative;margin:0 0 30px;clear:both}
.BiggerRelated{display:flex;justify-content:space-between;flex-wrap:wrap;margin:10px 0 0;}
.related-runs{position:relative;margin:0 0 25px;clear:both;display:block;padding:15px;background:var(--bg-cards);border:1px solid rgb(109 109 109 / 0.16);border-radius:4px;}
.xXvi-related .entry-title a{position:relative;display:block;font-size:14px;line-height:17px;}
.related-runs .related-box{width:31%;position:relative;margin:0}
a.post-filter-inner.gaint{position:relative;display:block;overflow:hidden;}
.entery-category{position:relative;overflow:hidden;padding:10px;}
.related-box-featured{position:relative;margin:0 0 30px;clear:both}
.related-box{width:calc((100% - 10px) / 3);position:relative;margin:0}
.related-box .related-box-thumb .post-filter-link{position:relative;width:100%;height:100%;display:block;overflow:hidden}
.related-box .related-box-thumb{width:100%;height:130px;display:block;overflow:hidden;border-radius: 4px;}
.blog-posts .widget-title,.bottom-widget .widget-title,.title-wrap,.related-runs .widget-title{display:flex;justify-content:space-between;align-items:center;}
a.simple-viewmore{color:var(--theme-text-color);font-size:13px;font-weight:600;}
.post-tag-color{display:block;color:var(--lables-buttons-color);font-size:13px;font-weight:600;}
.blog-posts .widget-title,.title-wrap,.bottom-widget .widget-title,.sidebar .widget-title,.related-runs .widget-title{position:relative;float:none;width:100%;height:32px;box-sizing:border-box;margin:0 0 14px;}
.blog-posts .widget-title h3,.bottom-widget .widget-title h3,.sidebar .widget-title h3,.title-wrap h3,.related-runs .widget-title h3{position:relative;float:left;font-family:var(--title-font);height:32px;font-size:13px;color:var(--theme-text-color);text-transform:uppercase;font-weight:700;line-height:32px;border-left: 3px solid var(--button-bg-color);padding:0 12px;margin:0;}
.rtl .blog-posts .widget-title h3,.rtl .bottom-widget .widget-title hr,.rtl .sidebar .widget-title h3,.rtl .related-runs .widget-title h3{float:right;}
.sidebar .PopularPosts .gaint h2.entry-title{font-size:16px;}
.error-status{display:block;text-align:center;font-size:13px;color:var(--theme-text-color);padding:35px 0;font-weight:600}
.error-status b{font-weight:600}
.wait{font-size:14px;text-align:center;height:300px;line-height:300px;display:flex;justify-content:center;align-items:center}
div#bottom-section{background:var(--bg-cards);padding: 25px 0;}
.bottom-widget{position:relative;display:block;box-sizing:border-box;margin:0 10px 0;}
.grid-bottom{display:flex;flex-wrap:wrap;justify-content:space-between;}
.grid-bottom .bottom-posts{position: relative;width:calc((100% - 60px) / 3);margin: 20px 0 120px}
.bottom-img{position:relative;height:100%;width:100%;display:block;display:block;overflow:hidden;}
.bottom-img .post-filter-link{position:relative;width:100%;height:210px;display:block;overflow:hidden;background:var(--bg-cards);border: 1px solid rgb(109 109 109 / 0.16);border-radius: 10px;}
.related-runs .related-box{width:31%;position:relative;margin:0;}
.BiggerSidebarOk{position:relative;float:left;width:100%;display:grid;grid-template-columns:repeat(1,1fr);grid-gap:20px;}
.BiggerSidebarOk .sidebarui-posts{position:relative;display:block;}
.BiggerSidebarOk .sidebarui-posts .glax-img{position:relative;float:left;width:115px;height:85px;margin:0;overflow:hidden;border-radius:4px;}
.BiggerSidebarOk .sidebarui-posts .entry-title{font-size:14px;display:block;font-weight:600;line-height:1.3em;margin:0;}
.featured-meta{position:relative;overflow:hidden;box-sizing:border-box;padding:5px 10px;}
.queryMessage{display:block;font-size:15px;font-weight:600;padding:0 0 0 10px;border-radius:4px;margin:0 0 5px;color:var(--theme-text-color);overflow:hidden;}
.queryMessage .query-info{margin:0 5px}
.queryMessage .search-query{font-weight:bold;text-transform:uppercase}
.queryMessage .query-info:before{content:'\f054';font-family:'Font Awesome 5 Free';float:left;font-size:11px;font-weight:900;margin:0 5px 0 0;}
.queryEmpty{font-size:13px;font-weight:500;text-align:center;padding:10px 0;margin:0 0 20px}
.dark table,.dark td{border-color:rgba(255,255,255,0.1)}
.share-top{position:relative;display:block;margin:0 10px;font-size:15px;color:var(--featured-posts-title);background:rgb(128 128 128 / 0.07);width:35px;height:28px;line-height:28px;text-align:center;cursor:pointer;border:1px solid rgb(129 129 129 / 0.19);border-radius:3px;}
.post-inner-area .post-snip{color:var(--theme-text-color);padding:10px 5px 10px;font-size:13px;border-bottom:1px solid #ccc}
.comment-bubble{margin-top:4px;color:var(--cm-count)}
.comment-bubble:after{content:"\f27a";font-family:'Font Awesome 5 Free';font-size:15px;font-weight:400;margin-left:5px}
.rtl .comment-bubble:after{margin:0 0 0 5px}
.post-inner-area{position:relative;float:left;width:100%;overflow:hidden;padding:15px 10px 20px;box-sizing:border-box;margin:0 0 10px;background:var(--bg-cards);border:1px solid rgb(109 109 109 / 0.16);border-radius:4px;}
.post-filter-wrap{position:relative;float:left;display:block;padding:10px 0;border-radius:4px;box-sizing:border-box;overflow:hidden;}
.blog-post{display:block;word-wrap:break-word}
.post-filter-wrap .grid-posts{display:grid;grid-template-columns:1fr 1fr 1fr;grid-column-gap:20px;margin:0;}
.post-filter .post-filter-inner.video-nos:after,.post-filter-link.video-nos:after{content:"\f04b";font-family:'Font Awesome 5 Free';font-size:10px;width:27px;height:27px;line-height:27px;border-radius:6px;font-weight:900;background:var(--ico-relative-hover);color:#fff;opacity:.7;align-items:center;top:50%;right:50%;transform:translate(50%,-50%);position:absolute;z-index:111;padding:0 0 0 2px;margin:0;text-align:center;transition:background .30s ease}
.type-video .post-filter-link.video-nos:hover:after{background:#fe1111;}
.feat-posts .post-filter-link.video-nos:after,.PopularPosts .post:not(.post-0) .post-filter-link.video-nos:after{transform: translate(50%,-50%) scale(.4);}
.type-video .post-filter-link.video-nos:after{opacity:1;border-radius:100%;height:58px;line-height:58px;width:58px;}
.post-filter{position:relative;float:left;box-sizing:border-box;padding:0;margin:5px;}
.post-filter .post-filter-image .post-filter-inner{position:relative;display:block;width:100%;height:100%;margin:0 0 100px;border-radius:10px;background:var(--bg-cards);border:1px solid rgb(109 109 109 / 0.16);overflow:hidden;}
.super-category{position:absolute;bottom:-85px;left:0;right:0;text-align:center;display:block;overflow:hidden;background:var(--bg-cards);border:1px solid rgb(109 109 109 / 0.16);z-index:1;border-radius:10px;padding:15px 15px;margin:0 auto;width:96%;box-sizing:border-box;box-shadow:1px 1px 3px 2px rgb(143 143 143 / 0.05)}
.post-filter .post-filter-image .post-filter-link{position:relative;width:100%;height:210px;display:block;overflow:hidden;}
.label-news-flex{color:var(--label-text-color);font-size:12px;line-height:15px;font-weight:400;white-space:nowrap;width:auto;overflow:hidden;padding:5px 0 0;margin:0;}
#feed-view #main{position:relative;box-sizing:border-box;margin:0 10px 26px}
#footer-form-section{position:relative;overflow:hidden;background:linear-gradient(45deg,var(--color-section),var(--color-section1));padding:30px 0 55px;}
#footer-form-section .sibForm .widget-content{display:flex;background-color:transparent;border:none;align-items:center;align-content:center;border:none;}
#footer-form-section .sibForm:after{content:none}
.footer-email-inner{position:relative;display:block;width:40%;overflow:hidden;}
.footer-email{width:calc(60% - 1em);}
.footer-email-inner form{position:relative;display:flex;align-items:center;justify-content:center;align-content:center;margin:0 auto;}
.footer-email-inner .follow-by-email-address{position:relative;display:block;background:transparent;border:1px solid rgb(248 248 248 / 0.51);border-radius:15px 0 0 15px;width:400px;padding:15px;color:var(--footer-email-title);}
.rtl .follow-by-email-address{border-radius:0 15px 15px 0}
.rtl span.bt-footer{border-radius:15px 0 0 15px}
#footer-checks-menu ul{display:flex;flex-wrap:wrap;justify-content:center;}
#footer-form-section .sibForm .footer-email-inner .follow-by-email-address::placeholder{color:var(--footer-email-title);opacity:0.67;}
#footer-form-section:before{position:absolute;background:url(images/Piki%2BFrame_1.png) no-repeat scroll left bottom;left:0;top:0px;content:"";width:150px;height:375px;}
#footer-form-section:after{position:absolute;background:url(images/Piki%2BFrame.png) no-repeat scroll left top;right:0;top:0;content:"";width:150px;height:375px;transform:rotate(180deg);}
#footer-form-section .follow-by-email-submit{background:transparent;border:none;padding:14px 8px;font-weight:600;font-size:15px;cursor:pointer;}
#footer-form-section .follow-by-email-submit:hover{opacity:0.8}
#footer-form-section .sibForm .footer-email-caption{font-size:24px;line-height:30px;margin: 0 auto 10px;;}
#footer-form-section .footer-email-title{--theme-text-color:var(--footer-email-title);margin: 0;}
#footer-form-section .sibForm .footer-email-caption,#footer-form-section .Follow-by-alert{--post-snip-data:var(--footer-email-title);}
span.bt-footer{position:relative;color:#2e2e2e;display:flex;background:#fff;border-radius:0 15px 15px 0;border:1px solid #fff;padding:0 15px;align-items:center;}
span.bt-footer i{font-size:20px;vertical-align:middle;}
.Footer-adv{position:relative;display:flex;flex-direction:row;padding:25px 0;margin:0;align-items:center;justify-content:space-between;}
.Footer-adv .widget{position:relative;float:left;box-sizing:border-box;margin:0 auto}
.Footer-adv .Image{width: calc(100% - 320px);padding:0 25px 0 0}
.Footer-adv .Image .widget-content{position:relative;float:left;margin:0;width:100%}
.Footer-adv .about-content .widget-title{position:relative;display:block;text-align: center;box-sizing:border-box;}
.Footer-adv .about-content{display:flex;float:left;padding:0;box-sizing:border-box}
.Footer-adv .Image .no-image .about-content{max-width:100%;padding:0 30px 0 0}
.Footer-adv .Image .image-caption{float: left;font-size:13px;margin:0;color:var(--footer-about-text)}
.Footer-adv .colorful-ico li, .social-mobile .colorful-ico li{float:left;margin:0 7px 0 0}
.Footer-adv .colorful-ico li:last-child, .social-mobile .colorful-ico li:last-child{margin:0}
.Footer-adv .colorful-ico li a, .social-mobile .colorful-ico li a{display:block;width:25px;height:25px;font-size:13px;background:rgb(153 153 153 / 0.08);border:1px solid rgb(117 117 117 / 0.30);border-radius: 4px;text-align:center;line-height:25px;margin:5px 0;}
.Footer-adv .footer-logo{display:flex;margin:0 auto;align-items:center;justify-content:center;}
.Footer-adv .footer-logo a{float:left;position:relative;margin:0 0 10px;}
.Footer-adv .footer-logo img{width:auto;height:auto;max-height:40px;}
.bio-data{position:relative;float:left;width:70%;margin:0 15px;}
.bio-data h3{display:block;color:var(--footer-title-color);font-size:15px;line-height:20px;margin:0 0 5px;}
.Footer-adv .Image .image-caption{float:left;font-size:13px;margin:0;color:var(--footer-about-text);}
.social-mobile{float:left;width:100%;position:relative;box-sizing:border-box;}
.post-snippet{position:relative;color:var(--post-snip-data);float:left;font-size:13px;line-height:1.6em;font-weight:400;margin:7px 0 0}
a.read-more{display:inline-block;background:var(--button-bg-color);color:var(--button-text-color);padding:5px 15px;font-size:13px;font-weight:500;margin:15px 0 0;transition:color .30s ease}
a.read-more:hover{opacity:0.8}
.CSS_LAYOUT_COMPONENT{color:rgba(0,0,0,0)!important}
#breadcrumb{font-size:13px;font-weight:400;color:#aaa;margin:0 0 10px}
#breadcrumb a{color:#aaa;transition:color .40s}
#breadcrumb a:hover{opacity:0.8}
#breadcrumb a,#breadcrumb em{display:inline-block}
#breadcrumb .delimiter:after{content:'\f054';font-family:'Font Awesome 5 Free';font-size:8px;font-weight:900;font-style:normal;vertical-align:middle;margin:0 3px}
.item-post h1.entry-title{color:var(--theme-text-color);text-align:left;font-size:25px;line-height:1.5em;font-weight:600;position:relative;display:block;margin:0 0 15px;padding:0}
.static_page .item-post h1.entry-title{margin:0;border-bottom:1px solid rgb(100 100 100 / 0.66)}
.item-post .post-body{width:100%;font-family:var(--text-font);color:var(--text-font-color);font-size:15px;line-height:1.8em;padding:0;margin:0}
.item-post .post-body img{max-width:100%}
.main .widget{margin:0}
.main .Blog{border-bottom-width:0}
.comment-list{display:flex;flex-direction:column;}
.comment-list .comments-box{position:relative;width:100%;padding:0 0 15px;margin:0 0 15px;border-bottom:1px solid rgb(100 100 100 / 0.12);}
.comment-list .engine-link{display:flex;}
.comment-list .comment-image{width:35px;height:35px;z-index:1;margin:0 12px 0 0;border-radius:50%;}
.rtl .comment-list .comment-image{margin: 0 0 0 12px;}
.comment-image{display:block;position:relative;overflow:hidden;background-color:#eee;z-index:5;color:transparent!important;}
.comment-list .comment-hero{flex:1;}
.comment-list .entry-title{font-size:14px;color:var(--main-text-color);display:block;font-weight:600;line-height:1.3em;margin:0;}
.comment-list .comment-snippet{font-size:12px;color:var(--comments-dec);margin:5px 0 0;}
.post-footer{position:relative;float:left;width:100%;margin:0}
.label-container{overflow:hidden;height:auto;position:relative;margin:0 0 20px;padding:0}
.label-container a,.label-container span{float:left;height:19px;font-size:14px;line-height:19px;font-weight:600;margin:0;padding:0 5px}
.label-container span{color:var(--main-text-color)}
.label-container span:before{content:'\f02c';font-family:'Font Awesome 5 Free';font-weight:900;margin:0 5px 0 0;}
.label-container a{color:var(--theme-text-color);margin:0 5px 5px;transition:all .30s ease}
.label-container a:hover{opacity:0.8;border-radius: 4px;transition:all .20s ease;}
.rtl .label-container, .rtl .label-head.Label, .rtl .feed-share, .rtl .navigation-runs{float:right;}
ul.share-runs{position:relative}
.share-runs li{float:left;overflow:hidden;margin:5px 5px 0 0}
.share-runs li a{display:block;height:45px;line-height:45px;padding:0 10px;color:#fff;font-size:13px;font-weight:600;cursor:pointer;text-align:center;box-sizing:border-box;border:1px solid rgb(110 110 110 / 0.33);border-radius:3px}
ul.share-runs.colorful-ico.social-front-hover a:not(.show-hid a):before{font-size:18px;vertical-align:middle;margin: 0 5px 0 0;}
.rtl ul.share-runs.colorful-ico.social-front-hover a:not(.show-hid a):before{margin: 0 0 0 5px;}
ul.share-failed.colorful-ico.social-front-hover a:before{margin:0 5px 0 0;}
.share-runs li.share-icon span{position:relative;height:45px;line-height:45px;padding:0 5px;font-size:16px;color:var(--theme-text-color);cursor:auto;margin:0 5px 0 0}
.share-runs li.share-icon span:after{content:'Share:';position:relative;height:6px;font-size:17px;font-weight:600}
.share-runs li a span{font-size:14px;padding:0 15px}
.share-runs li a:hover{opacity:.8;}
.share-runs .show-hid a{font-size:18px;color:var(--featured-posts-title);padding:0 14px;line-height:42px;}
.share-runs .show-hid a:before{content:'\f1e0';font-family:'Font Awesome 5 Free';font-weight:900}
.feed-share{position:relative;clear:both;overflow:hidden;line-height:0;margin:0 0 30px}
ul.navigation-runs{position:relative;box-sizing: border-box;width:100%;overflow:hidden;display:block;padding:0 10px;border-bottom:1px solid rgb(100 100 100 / 0.12);margin:0 0 30px}
.navigation-runs li{display:inline-block;width:50%}
.navigation-runs .post-prev{float:left;text-align:left;box-sizing:border-box;padding:0 0 5px}
.navigation-runs .post-next{float:right;text-align:right;box-sizing:border-box;border-left:1px solid rgb(100 100 100 / 0.12);padding:0 0 5px}
.navigation-runs li a{color:var(--theme-text-color);line-height:1.4em;display:block;overflow:hidden;transition:color .40s}
.navigation-runs li:hover a{opacity:0.8}
.navigation-runs li span{display:block;font-size:11px;color:#aaa;font-weight:600;text-transform:uppercase;padding:0 0 2px}
.navigation-runs .post-prev span:before{content:"\f053";float:left;font-family:'Font Awesome 5 Free';font-size:10px;font-weight:900;text-transform:none;margin:0 2px 0 0}
.navigation-runs .post-next span:after{content:"\f054";float:right;font-family:'Font Awesome 5 Free';font-size:10px;font-weight:900;text-transform:none;margin:0 0 0 2px}
.navigation-runs p{font-size:12px;font-weight:600;color:var(--navigation-runs-text);line-height:1.4em;margin:0}
.navigation-runs .post-MenuNews-open p{color:#aaa}
.post-body h1,.post-body h2,.post-body h3,.post-body h4,.post-body h5,.post-body h6{color:var(--theme-text-color);font-weight:600;margin:0 0 15px}
.xXvi-author{position:relative;display:block;overflow:hidden;padding:10px 20px;margin:10px 0 20px;background:var(--bg-cards);border:1px solid rgb(109 109 109 / 0.16);border-radius:4px;}
.xXvi-author .author-avatar{float:left;width:100%;height:100%}
.xXvi-author .avatar-container{float:left;margin:10px 20px 0 0;height:70px;width:70px;overflow: hidden;border-radius: 50%;}
.xXvi-author .avatar-container .author-avatar.lazy-img{opacity:1}
.author-name{overflow:visible;display:inline-block;font-size:18px;font-weight:600;line-height:20px;margin:1px 0 3px}
.author-name span{color:var(--theme-text-color)}
.author-name a{color:var(--main-text-color);transition:opacity .40s}
.author-name a:after{content:"\f058";float:right;font-family:'Font Awesome 5 Free';font-size:14px;line-height:21px;color:#0093e6;font-weight:900;text-transform:none;margin:0 0 0 4px;}
.author-name a:hover{opacity:.8}
.author-description{overflow:hidden}
.author-description span{display:block;overflow:hidden;font-size:13px;color:var(--black-text);font-weight:400;line-height:1.6em}
.author-description span br{display:none}
.author-description a{display:none;margin:0}
ul.description-links{display:none;padding:0 1px}
ul.description-links.show{display:block}
.description-links li{float:left;margin:12px 12px 0 0}
.description-links li a{display:block;font-size:20px;color:var(--share-author-links);line-height:1;box-sizing:border-box;padding:0}
.description-links li a:hover{opacity:0.8}
#blog-pager{position:relative;display:flex;margin:10px auto 30px;justify-content:center;align-items:center;align-content:center;}
.blog-pager a,.blog-pager span{min-width:32px;height:32px;box-sizing:border-box;padding:0 10px;margin:0 5px 0 0;transition:all .17s ease;}
.blog-pager span.page-dots{min-width:20px;font-size:16px;color:var(--pager-text-color);font-weight:400;line-height:32px;padding:0}
.blog-pager .page-of{display:none;width:auto;float:right;border-color:rgba(0,0,0,0);margin:0}
.blog-pager .page-active,.blog-pager a:hover{background-color:rgb(157 157 157 / 0.20);color:var(--theme-text-color);border-color:rgb(157 157 157 / 0.50)}
.blog-pager .page-prev:before,.blog-pager .page-next:before{font-family:'Font Awesome 5 Free';font-size:11px;font-weight:900}
.blog-pager .page-prev:before{content:'\f053'}
.blog-pager .page-next:before{content:'\f054'}
.blog-pager .blog-pager-newer-link,.blog-pager .blog-pager-older-link{float:left;display:inline-block;width:auto;padding:0 10px;margin:0}
.blog-pager .blog-pager-older-link{float:right}
#blog-pager .load-more{display:inline-block;height:34px;background-color:var(--button-bg-color);font-size:14px;color:var(--button-text-color);font-weight:400;line-height:34px;box-sizing:border-box;padding:0 30px;margin:0;border:1px solid rgba(0,0,0,.1);border-bottom-width:2px;border-radius:2px}
#blog-pager .load-more:hover{opacity:0.8}
#blog-pager .load-more.no-more{background-color:rgba(155,155,155,0.05);color:var(--button-bg-color)}
#blog-pager .loading,#blog-pager .no-more{display:none}
#blog-pager .loading .loader{position:relative;height:100%;overflow:hidden;display:block;margin:0}
#blog-pager .loading .loader{height:34px}
#blog-pager .no-more.show{display:inline-block}
#blog-pager .loading .loader:after{width:26px;height:26px;margin:-15px 0 0 -15px}
#blog-pager .loading .loader:after{content:'';position:absolute;top:50%;left:50%;width:28px;height:28px;margin:-16px 0 0 -16px;border:2px solid var(--button-bg-color);border-right-color:rgba(155,155,155,0.2);border-radius:100%;animation:spinner 1.1s infinite linear;transform-origin:center}
@-webkit-keyframes spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}
to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}
}@keyframes spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}
to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}
}.archive #blog-pager,.home .blog-pager .blog-pager-newer-link,.home .blog-pager .blog-pager-older-link{display:none}
.loading-frame{-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both}
@keyframes fadeIn{from{opacity:0}
to{opacity:1}
}.run-time{animation-name:fadeIn}
@keyframes fadeInUp{from{opacity:0;transform:translate3d(0,5px,0)}
to{opacity:1;transform:translate3d(0,0,0)}
}.load-time{animation-name:fadeInUp}
.loading-frame{-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both}
@keyframes fadeIn{from{opacity:0}
to{opacity:1}
}.run-time{animation-name:fadeIn}
@keyframes fadeInUp{from{opacity:0;transform:translate3d(0,5px,0)}
to{opacity:1;transform:translate3d(0,0,0)}
}.load-time{animation-name:fadeInUp}
@-webkit-keyframes slidein{0%{opacity:0}
20%{opacity:1;bottom:0}
50%{opacity:1;bottom:0}
80%{opacity:1;bottom:0}
100%{opacity:0;bottom:-70px;visibility:hidden}
}
@keyframes slidein{0%{opacity:0}
20%{opacity:1;bottom:0}
50%{opacity:1;bottom:0}
80%{opacity:1;bottom:0}
100%{opacity:0;bottom:-70px;visibility:hidden}
}
.archive #blog-pager,.home .blog-pager .blog-pager-newer-link,.home .blog-pager .blog-pager-older-link{display:none}
.xXvi-comments{display:none;overflow:hidden;padding:15px;margin:0 0 10px;box-sizing:border-box;background:var(--bg-cards);border:1px solid rgb(109 109 109 / 0.16);border-radius:4px;}
.comments-msg-alert{position:relative;font-size:13px;font-weight:600;color:var(--cm-count);font-style:italic;margin:0 0 17px;}
.xXvi-comments .comments-title{margin:0 0 20px}
.all-comments{float:right;position:relative;color:var(--cm-count)}
.comments-system-disqus .comments-title,.comments-system-facebook .comments-title{margin:0}
#comments{margin:0}
.comments{display:block;clear:both;margin:0;color:var(--theme-text-color)}
.comments .comment-thread>ol{padding:0}
.comments>h3{font-size:13px;font-weight:600;font-style:italic;padding-top:1px}
.comments .comments-content .comment{position:relative;list-style:none;padding:10px}
.comment-thread .comment{position:relative;border:1px solid rgb(126 126 126 / 0.16);background:rgba(45 45 45 / 0.02);margin:10px 0 0;border-radius: 4px;}
.facebook-tab,.fb_iframe_widget_fluid span,.fb_iframe_widget iframe{width:100%!important}
.comments .item-control{position:static}
.comments .avatar-image-container{float:left;overflow:hidden;position:absolute}
.comments .avatar-image-container{height:35px;max-height:35px;width:35px;top:15px;left:15px;max-width:35px;border-radius:100%}
.comments .avatar-image-container img{width:100%;height:100%;}
.comments .comment-block,.comments .comments-content .comment-replies{margin:0 0 0 50px}
.comments .comments-content .inline-thread{padding:0}
.comments .comment-actions{float:left;width:100%;position:relative;margin:0}
.comments .comments-content .comment-header{font-size:15px;display:block;overflow:hidden;clear:both;margin:0 0 3px;padding:0 0 5px;}
.comments .comments-content .comment-header a{float:left;width:100%;color:var(--theme-text-color);transition:color .40s}
.comments .comments-content .comment-header a:hover{opacity:0.8}
.comments .comments-content .user{float:left;font-style:normal;font-weight:600}
.comments .comment .comment-actions a.comment-reply:before{content:"\f064";font-family:'Font Awesome 5 Free';font-size:10px;color:#838383;font-weight:600;text-transform:none;margin:0 5px 0 0;}
.comments .comments-content .icon.blog-author:after{content:"\f3ed";font-family:'Font Awesome 5 Free';font-size:14px;color:#0093e6;font-weight:900;text-transform:none;margin:0 0 0 4px}
.comments .comments-content .comment-content{float:left;font-family:var(--text-font);font-size:13px;color:var(--comment-text);font-weight:500;text-align:left;line-height:1.4em;width:100%;padding:20px 0px 20px 8px;background:rgb(110 110 110 / 0.08);margin:5px 0 9px;border-radius:3px;}
.comment-content .video-frame{position:relative;width:100%;padding:0;padding-top:56%}
.comment-content .video-frame iframe{position:absolute;top:0;left:0;width:100%;height:100%}
.comments .comment .comment-actions a{margin-right:5px;padding:2px 5px;color:var(--main-text-color);font-weight:600;font-size:13px;transition:all .30s ease}
.comments .comment .comment-actions a:hover{color:#333;text-decoration:none}
.comments .comments-content .datetime{position:relative;padding:0 1px;margin:4px 0 0;display:block}
.comments .comments-content .datetime a{color:#888;font-size:11px;float:left;}
.comments .comments-content .datetime a:hover{color:#aaa}
.comments .thread-toggle{margin-bottom:4px}
.comments .thread-toggle .thread-arrow{height:7px;margin:0 3px 2px 0}
.comments .thread-count a,.comments .continue a{transition:opacity .40s}
.comments .thread-count a:hover,.comments .continue a:hover{opacity:.8}
.comments .thread-expanded{padding:5px 0 0}
.comments .thread-chrome.thread-collapsed{display:none}
.comments .continue.hidden, .comments .comment-replies .continue .comment-reply{display:none;}
.comments #top-continue a{float:left;width:100%;height:35px;line-height:35px;background-color:var(--button-bg-color);font-size:14px;color:var(--button-text-color);font-weight:400;text-align:center;padding:0;margin:25px 0 0;border-radius:4px;}
.thread-expanded .thread-count a,.loadmore{display:none;}
.comments .comments-content .comment-thread{margin:0}
.comments .comments-content .loadmore.loaded{margin:0;padding:0}
#show-comment-form,.comments #top-continue a{float:left;width:100%;height:36px;background-color:var(--button-bg-color);font-size:15px;color:#fbfbfb;font-weight:400;line-height:36px;text-align:center;box-sizing: border-box;padding:0 30px;margin:25px 0 0;border-radius:4px;}
.btn{position:relative;border:0;}
.comment-section-visible #show-comment-form{display:none}
.comments .comment-replybox-thread,.no-comments .comment-form{display:none;}
.comment-section-visible .comments .comment-replybox-thread,.comment-section-visible .no-comments .comment-form{display:block;}
.comments #top-ce.comment-replybox-thread,.comments.no-comments .comment-form{background-color:var(--widget-bg);padding:5px 16px;margin:20px 0 0;border-radius:4px;}
.comment-thread .comment .comment{background:var(--comment-content);border:0;}
.comments .comments-content .loadmore,.comments .comments-content .loadmore.loaded,.xXvi-comments.comments-system-facebook .all-comments,.xXvi-comments.comments-system-disqus .all-comments{display:none}
blockquote{position:relative;font-style:italic;float:left;color:var(--black-color);margin-left:0;padding:10px 15px;width:100%;box-sizing:border-box;background:rgb(72 72 72 / 0.09);border-top-left-radius:20px;border-bottom-right-radius:20px;}
blockquote:before{content:'\f10d';color:rgb(133 133 133 / 0.23);display:inline-block;font-family:'Font Awesome 5 Free';font-size:28px;position:absolute;font-style:normal;font-weight:900;}
blockquote:after{content:'\f10e';color:rgb(133 133 133 / 0.23);display:inline-block;font-family:'Font Awesome 5 Free';font-size:28px;position:absolute;font-style:normal;font-weight:900;}
.post-body ul{line-height:1.5em;font-weight:400;padding:0 0 0 15px;margin:10px 0}
.post-body li{margin:5px 0;padding:0;line-height:1.5em}
.post-body ol>li{counter-increment:piki;list-style:none}
.post-body ol>li:before{display:inline-block;content:counters(piki,'.')'.';margin:0 5px 0 0}
.post-body ol{counter-reset:piki;padding:0 0 0 15px;margin:10px 0}
.post-body ul li{list-style:disc inside}
.post-body u{text-decoration:underline}
.post-body table{width:100%;overflow-x:auto;text-align:left;margin:0;border-collapse:collapse;border:1px solid rgb(155 155 155 / 0.17);}
.post-body strike{text-decoration:line-through}
.post-body .video-frame{position:relative;width:100%;padding:50% 0 0;}
.post-body .video-frame iframe{position:absolute;top:0;left:0;width:100%;height:100%;}
.widget .post-body li{margin:5px 0;padding:0;line-height:1.2}
.rtl .widget .post-body li{text-align:right;}
.contact-form{overflow:hidden}
div#footer-wrapper .contact-form-widget form{color:#fff;}
.contact-form .widget-title{display:none}
.contact-form .contact-form-name{width:calc(50% - 5px)}
.contact-form .contact-form-email{width:calc(50% - 5px);float:right}
.sidebar .widget{position:relative;overflow:hidden;box-sizing:border-box;padding:15px;margin:0 0px 25px;background:var(--bg-cards);border: 1px solid rgb(109 109 109 / 0.16);border-radius: 5px;}
.sidebar .widget-content{float:left;width:100%;margin:0;box-sizing:border-box;padding:0}
div#footer-ads{margin:0;position:relative;overflow:hidden;}
ul.socialFilter{margin:0 -5px}
.socialFilter a:before{font-style:normal;line-height:40px;-webkit-font-smoothing:antialiased;margin-right:-12px;width:40px;height:40px;text-align:center;float:left;border-right:1px solid rgb(161 161 161 / 0.32);font-size:22px;vertical-align:middle}
.socialFilter li{float:left;width:50%;box-sizing:border-box;padding:0 5px;margin:10px 0 0}
.socialFilter li:nth-child(1),.socialFilter li:nth-child(2){margin-top:0}
.socialFilter li a{display:block;height:40px;color:var(--share-author-links);background:var(--bg-cards);box-shadow:var(--shadow-light);font-size:12px;font-weight:600;text-align:center;line-height:40px;border-radius:4px;}
.list-label li{position:relative;display:block;padding:7px 0;}
.list-label li a{display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:var(--list-text-color);font-size:12px;font-weight:600;text-transform:capitalize;transition:all .30s ease}
.list-label li a:hover{opacity:0.8;padding-left:25px;transition:all .30s ease}
.Text .widget-content{font-family:var(--text-font);font-size:14px;font-weight: 600;color:var(--main-text-color);margin:0;opacity: 0.6;}
.list-label .label-count{position:relative;float:right;color:var(--theme-text-color);font-size:11px;font-weight:600;text-align:center;line-height:16px}
.cloud-label li{position:relative;float:left;margin:0 5px 5px 0}
.cloud-label li a{display:block;height:26px;overflow: hidden;color:var(--cloud-bg-color);font-size:12px;border-radius:4px;line-height:26px;font-weight:600;padding:0 10px;border:1px solid var(--cloud-border-color);transition:all .30s ease}
.cloud-label li a:hover{background-color:rgb(96 96 96 / 0.14);color:#585858;border-color:rgb(52 52 52 / 0.24);transition:all .20s ease;}
.cloud-label .label-count{display:none}
.sibForm .widget-content{position:relative;border: 1px solid rgb(112 112 112 / 0.15);z-index: 11;text-align:center;font-weight:600;box-sizing:border-box;padding:20px 20px 5px;border-radius:4px;}
.sibForm:after{content:'';display:block;position:absolute;bottom:0;right:0;width:100px;height:100px;opacity: 0.20;background:var(--button-bg-color);border-radius:100px 0 0;}
.sibForm .follow-by-email-caption, .footer-email-caption{font-size:13px;letter-spacing: 1px;color: var(--post-snip-data);line-height:1.5em;margin:0 0 15px;display:block;padding:0 10px;overflow:hidden}
.sibForm .follow-by-email:before{content: '\f0f3'; position: absolute; font-family: 'Font Awesome 5 Free'; color:var(--email-text-color); top: 0; left: 50%; width: 34px; overflow: hidden; height: 34px; background-color:var(--email-bg-color); font-size: 15px;font-weight: 900; line-height: 36px; text-align: center; transform: translate(-50%,-30%); margin: 0; border-radius: 50%;}
.sibForm .follow-by-email-inner{position:relative}
.follow-by-email-title,.footer-email-title{font-size:17px; font-weight:700; padding:7px ;margin:15px 0px;color:var(--theme-text-color)}
.sibForm .follow-by-email-inner .follow-by-email-address{width:100%;height:32px;color:var(--theme-text-color);background:var(--input-form);font-size:11px;font-family:inherit;padding:0 10px;margin:0 0 10px;box-sizing:border-box;border:1px solid rgb(122 122 122 / 0.53);border-radius: 4px;transition:ease .40s}
.sibForm .follow-by-email-inner .follow-by-email-address:focus{border:1px solid var(--email-bg-color);}
.sibForm .follow-by-email-inner .follow-by-email-address::placeholder{color:var(--placeholder-text-color);opacity:0.67;}
.sibForm .follow-by-email-inner .follow-by-email-submit{width:100%;height:32px;font-family:inherit;border-radius:4px;font-size:11px;color:var(--email-text-color);background-color:var(--email-bg-color);text-transform:uppercase;text-align:center;font-weight:500;cursor:pointer;margin:0;border:0;transition:opacity .30s ease}
.sibForm .follow-by-email-inner .follow-by-email-submit:hover{opacity:.8;}
.Follow-by-alert{position:relative;display:block;color: var(--post-snip-data);font-size:12px;text-align:center;margin:10px 0 0;}
.rtl .comments-msg-alert{float:right}
#ArchiveList ul.flat li{color:var(--theme-text-color);font-size:13px;font-weight:400;padding:7px 0;border-bottom:1px dotted #eaeaea}
#ArchiveList ul.flat li:first-child{padding-top:0}
#ArchiveList ul.flat li:last-child{padding-bottom:0;border-bottom:0}
#ArchiveList .flat li>a{display:block;color:var(--theme-text-color);transition:color .40s}
#ArchiveList .flat li>a:hover{opacity:0.8}
#ArchiveList .flat li>a:before{content:"\f054";font-family:'Font Awesome 5 Free';float:left;color:#161619;font-size:7px;font-weight:400;margin:5px 2px 0 0;display:inline-block;transition:color .30s}
#ArchiveList .flat li>a>span{position:relative;background-color:var(--main-text-color);color:#fff;float:right;width:16px;height:16px;font-size:10px;font-weight:400;text-align:center;line-height:15px}
.sidebar .PopularPosts .post{position: relative;overflow:hidden;margin:0 0 12px}
.sidebar .PopularPosts .post-filter-inner{position:relative;display:block;width:115px;height:80px;float:left;overflow:hidden;border-radius: 4px;margin:0 12px 0 0}
.sidebar .PopularPosts .post-filter-inner.gaint{width:100%;height:257px;margin: 0}
.sidebar .PopularPosts .gaint .entery-category{float:left;margin:0;}
.sidebar .PopularPosts .entry-title{overflow:hidden;font-size:13px;font-weight:600;position:relative;line-height:1.4em;margin:0}
.sidebar .PopularPosts .entery-category-box .entry-title{height: 38px;overflow: hidden;}
.sidebar .PopularPosts .entry-title a{display:block;padding:0;transition:color .40s}
.PopularPosts .post-date:before{font-size:10px}
.FeaturedPost .post-filter-link{display:block;position:relative;width:100%;height:170px;overflow:hidden;margin:0 0 10px;}
.FeaturedPost .entry-title{font-size:14px;font-weight:600;overflow:hidden;line-height:1.2em;margin:0}
.FeaturedPost .entry-title a{color:var(--theme-text-color);display:block;transition:color .30s ease}
.contact-form-widget form{font-weight:600;margin:15px}
.contact-form-name{float:left;width:100%;height:30px;font-family:inherit;color: var(--theme-text-color);background: rgb(217 217 217 / 0.07);font-size:13px;line-height:30px;box-sizing:border-box;padding:5px 10px;margin:0 0 10px;border:1px solid rgb(139 139 139 / 0.32);border-radius:2px}
.contact-form-email{float:left;width:100%;height:30px;font-family:inherit;color: var(--theme-text-color);background: rgb(217 217 217 / 0.07);font-size:13px;line-height:30px;box-sizing:border-box;padding:5px 10px;margin:0 0 10px;border:1px solid rgb(139 139 139 / 0.32);border-radius:2px}
.contact-form-email-message{float:left;width:100%;max-width:100%;min-width:100%;font-family:inherit;color: var(--theme-text-color);background: rgb(217 217 217 / 0.07);font-size:13px;box-sizing:border-box;padding:5px 10px;margin:0 0 10px;border:1px solid rgb(139 139 139 / 0.32);border-radius:2px}
.contact-form-button-submit{float:left;width:100%;height:30px;background-color:var(--button-bg-color);font-size:13px;color:var(--button-text-color);line-height:30px;cursor:pointer;box-sizing:border-box;padding:0 10px;margin:10px 0;border:0;border-radius:2px;transition:background .30s ease}
.contact-form-button-submit:hover{opacity:0.8}
.contact-form-error-message-with-border{float:left;width:100%;background-color:#fbe5e5;font-size:11px;text-align:center;line-height:11px;padding:3px 0;margin:10px 0;box-sizing:border-box;border:1px solid #fc6262}
.contact-form-success-message-with-border{float:left;width:100%;background-color:#eaf6ff;font-size:11px;text-align:center;line-height:11px;padding:3px 0;margin:10px 0;box-sizing:border-box;border:1px solid #5ab6f9}
.contact-form-cross{margin:0 0 0 3px}
.contact-form-error-message,.contact-form-success-message{margin:0}
.BlogSearch .search-form{display:flex;padding:0;border-radius:4px;}
.BlogSearch .search-input{float:left;width:75%;height:40px;background-color:rgb(153 153 153 / 0.13);color:var(--theme-text-color);font-weight:400;font-size:13px;line-height:30px;border-radius: 4px 0 0 4px;box-sizing:border-box;padding:5px 10px}
.rtl .BlogSearch .search-input{border-radius: 0 4px 4px 0;}
.rtl .BlogSearch .search-action{border-radius: 4px 0 0 4px;}
.BlogSearch .search-action{float:right;width:25%;height:40px;font-family:inherit;font-size:13px;line-height:40px;cursor:pointer;box-sizing:border-box;background-color:var(--button-bg-color);color:var(--button-text-color);padding:0 5px;border:0;border-radius:0 4px 4px 0;transition:background .30s ease}
.BlogSearch .search-action:hover{opacity:0.8}
.Profile .profile-img{float:left;width:70px;height:70px;margin:0 15px 0 0;border-radius:50%;transition:all .30s ease}
.team-member{position:relative;display:block;overflow:hidden;float:left;width:100%;box-sizing:border-box;margin:0 0 15px;}
.team-member .team-member-img{position:relative;display:block;float:left;margin:0;}
.team-flex,.profile-datablock{position:relative;display:block;overflow:hidden;}
.team-flex a,.profile-datablock a{position:relative;display:block;font-size:14px;font-weight:600;color:var(--main-menu-text-color);margin:0;}
.profile-textblock{position:relative;display:block;font-size:12px;color:var(--post-snip-data)}
.Profile .profile-info >.profile-link{color:var(--theme-text-color);font-size:11px;margin:5px 0 0}
.Profile .profile-info >.profile-link:hover{opacity:0.8}
.Profile .profile-datablock .profile-textblock a{position:relative;overflow:hidden;display:block;float:left;margin:13px 0;}
.Profile .profile-info ul.description-links.show{display:flex;justify-content:center;}
.Profile .profile-datablock .profile-textblock{position:relative;display:block;z-index:11;float:left;overflow:hidden;}
.profile-data.location:before{content:"\f3c5";font-family:'Font Awesome 5 Free';font-size:15px;font-weight:600;vertical-align:middle;}
a.user-image{position:relative;display:block;overflow:hidden;float:left;z-index:1;}
.profile-data.location{position:relative;font-size:13px;color:var(--button-bg-color);text-align:center;margin:10px auto 0;float:left;width:100%;box-sizing:border-box;}