-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
executable file
·2173 lines (1955 loc) · 179 KB
/
style.css
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
/*
Template: Webster - Responsive Multi-purpose HTML5 Template
Author: potenzaglobalsolutions.com
Version: 4.0
Design and Developed by: potenzaglobalsolutions.com
NOTE: This is main stylesheet of template, This file contains the styling for the actual Template.
*/
/*================================================
[ Table of contents ]
================================================
:: Header
- topbar
- search
- Cart
- FullWidth
- Light
- Dark
- Left-menu
- Logo-center
- Fancy
- fancy without-topbar
- Side menu icon
- Vertical header
- One page Header
:: Slider (all home page main sliders )
:: - Slider-parallax one page
:: - Mobile slider
:: Background
:: Home page section
:: Decolines
:: Awesome features
:: Feature Step
:: About Us
:: Resume
:: Portfolio
:: - Portfolio item
:: - Portfolio-item-2
:: - Portfolio single page
:: Our Blog
:: Our services
:: Creativity
:: Our History
:: Our Service Objects
:: Sidebar
:: About me
:: Team page
:: Error 404
:: Coming soon
:: Register
:: Login
:: maintenance
:: Our clients
:: Process
:: Careers
:: Sitemap
:: Privacy-policy
:: Page sidebar
:: Terms and conditions
:: Footer
:: Boxed
v1.2
:: index portfolio 4
:: index portfolio 04 about
:: index portfolio single
======================================
[ End table content ]
======================================*/
/*************************
Header
*************************/
.default { background: transparent; z-index: 9999; position: absolute; width: 100%; }
/*topbar*/
.topbar { border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding: 14px 0; }
.topbar ul li { display: inline-block; color: #fff; font-size: 13px; font-weight: normal; margin-right: 10px; }
.topbar ul li:last-child { margin-right: 0px; }
.topbar ul li a { color: #fff; font-size: 13px; font-weight: normal; font-style: normal; }
.topbar-call { transition:all 0.5s ease-in-out; -webkit-transition:all 0.5s ease-in-out; -o-transition:all 0.5s ease-in-out; -ms-transition:all 0.5s ease-in-out; -moz-transition:all 0.5s ease-in-out; }
.topbar-call ul li i { margin-right: 5px; color: #84ba3f; }
.topbar-call ul li a { margin-right: 30px; color: #ffffff; }
.topbar-social { position: relative; transition:all 0.5s ease-in-out; -webkit-transition:all 0.5s ease-in-out; -o-transition:all 0.5s ease-in-out; -ms-transition:all 0.5s ease-in-out; -moz-transition:all 0.5s ease-in-out; }
.topbar-social ul li a { margin-left: 5px; }
.topbar-social ul li a span { margin-right: 5px; font-size: 12px; }
.topbar-social ul li:last-child a span { margin-right: 0; }
.topbar ul li a:hover { color: #84ba3f;}
/*menu*/
.menu-bar { float: right; }
.mega-menu .menu-links { float: left; }
.search-cart { display: inline-block; }
.search-cart i.icon { color: #ffffff; line-height: 20px; font-size: 14px; transition: 0.5s ease-in-out; -webkit-transition: 0.5s ease-in-out; -moz-transition: 0.5s ease-in-out; -o-transition: 0.5s ease-in-out; }
.search-cart i.icon:hover { color: #84ba3f; }
.search-cart .search { display: inline-block; padding-right: 15px; padding-left: 10px; }
.search-cart .shpping-cart { display: inline-block; }
.shpping-cart a { position: relative; }
.shpping-cart strong.item { display: block; position: absolute; top: -7px; left: auto; right: -8px; font-size: 10px; color: #ffffff; width: 16px; height: 16px;line-height: 16px; text-align: center; background-color: #84ba3f; border-radius: 50%; }
/*search*/
.search .search-btn { display: block; height: 20px; line-height: 21px; position: relative; text-indent: -9999px; width: 14px; color: #ffffff; -o-transition: color 300ms ease 0s; -moz-transition: color 300ms ease 0s; -ms-transition: color 300ms ease 0s; -webkit-transition: color 300ms ease 0s; transition: color 300ms ease 0s; -webkit-transition: 0.5s ease-in-out; -moz-transition: 0.5s ease-in-out; -o-transition: 0.5s ease-in-out; transition: 0.5s ease-in-out; }
.search .search-btn:before { content: ""; font-family: "FontAwesome"; font-size: 14px; font-weight: normal; left: 0; position: absolute; text-indent: 0; top: 0; }
.search .search-btn:hover { color: #84ba3f; }
.search.search-open .search-btn:before { content: ""; }
.search-box { background: #fff; display: block; margin: 0; opacity: 0 !important; padding: 15px; position: absolute; right: 0; top: 100%; transition: visibility 300ms ease 0s, opacity 300ms ease 0s; visibility: hidden; width: 327px; z-index: 888; border-radius: 3px; -webkit-transform: rotateX(90deg); transform: rotateX(90deg); -webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0; transform-origin: 0 0; transition: all 400ms ease; }
.search.search-open .search-box { opacity: 1 !important;visibility: visible !important; -webkit-transform: rotateX(0deg); transform: rotateX(0deg); box-shadow: 0 0 50px rgba(0,0,0,.1); }
.search .search-box input { background: transparent; border:1px solid #eceff8; padding-left: 15px; border-radius: 3px; }
.search .search-box input:focus { background: transparent; border:1px solid #eceff8; }
.search .search-box button { background: transparent; border: none; cursor: pointer; font-size: 15px; position: absolute; right: 27px; top: 27px; transition: 0.5s ease-in-out; -webkit-transition: 0.5s ease-in-out; -moz-transition: 0.5s ease-in-out; -o-transition: 0.5s ease-in-out; }
.search .search-box button:hover { color: #84ba3f; }
/*cart*/
.cart { opacity: 0; visibility: hidden; background: #fff; box-shadow: 0 0 50px rgba(0,0,0,.1); position: absolute; margin-top: 0px; right: 0; width: 300px; border: 1px solid #eceff8; border-radius: 3px; -webkit-transform: rotateX(90deg); transform: rotateX(90deg); -webkit-transform-origin: 0 0; -ms-transform-origin: 0 0;
transform-origin: 0 0; transition: all 400ms ease;}
.cart.cart-open {-webkit-transform: rotateX(0deg); transform: rotateX(0deg);opacity: 1; visibility: visible; }
.cart:before { bottom: 100%; right: 8px; border: solid transparent; content: " "; height: 0; width: 0; position: absolute; pointer-events: none; border-color: rgba(194, 225, 245, 0);
border-bottom-color: #fff; border-width: 6px; margin-left: -8px; }
.cart-title { border-bottom: 1px dashed rgba(0, 0, 0, 0.2); padding: 20px; }
.cart-item { border-bottom: 1px dashed rgba(0, 0, 0, 0.2); padding: 20px; position: relative; }
.cart-item .cart-image { display: table-cell; padding-right: 15px; }
.cart-item .cart-image img { height: 40px; }
.cart-item .cart-name { display: table-cell; vertical-align: top; }
.cart-item .cart-name a { display: block; color: #323232; }
.cart-item .cart-name a:hover { color: #84ba3f; }
.cart-item .cart-name span { color: #323232; display: inline-block; }
.cart-item .cart-name strong { padding-left: 30px; }
.cart-price del { font-size: 14px; background: transparent; color: #323232; padding-left: 0; }
.cart-price ins { text-decoration: none; color: #84ba3f; font-size: 16px;font-weight: bold; }
.cart-total { padding: 20px; text-align: center; background: #f7f7f7; }
.cart-total h6 { text-align: center; }
.cart-total a { display: inline-block; margin-top: 20px; padding: 6px 18px; margin: 0; }
.cart-total a.button { display: inline-block; }
.cart-total .button + .button { margin: 0; }
.cart-item .cart-close { position: absolute; right: 20px; top: 20px; }
.cart-item .cart-close a { font-size: 14px; }
.cart-item .cart-close a:hover { color: #323232; }
/*mega-menu */
.mega-menu .menu-logo { padding: 25px 0 25px; }
.mega-menu .menu-logo img { height: 40px; }
.mega-menu .drop-down-multilevel.right-menu { right: 0px; }
.mega-menu > section.menu-list-items { padding: 0; }
.mega-menu .menu-links > li > a { text-transform: uppercase; font-size: 14px; font-weight: 500; line-height: 20px; }
.mega-menu .menu-links > li.active .drop-down-multilevel a { color: #555555; }
.mega-menu .menu-links > li.active .drop-down-multilevel a:hover { color: #84ba3f; }
.mega-menu .menu-links > li.active .drop-down a { color: #323232; }
.mega-menu .menu-links > li.active .drop-down li.active a { color: #84ba3f; }
.mega-menu .menu-links > li.active .drop-down a:hover { color: #84ba3f; }
.mega-menu .menu-links > li.active .drop-down li.active a i { color: #84ba3f; }
.mega-menu .menu-links > li.active .drop-down a i:hover { color: #84ba3f; }
.mega-menu .menu-links > li.active .drop-down-multilevel li.active a { color: #84ba3f; background: #f7f7f7; }
.mega-menu .menu-links > li.active .drop-down-multilevel li.active .drop-down-multilevel li a { color: #323232; background:transparent; }
.mega-menu .menu-links > li.active .drop-down-multilevel li.active .drop-down-multilevel li a:hover { color: #84ba3f; }
.mega-menu .menu-links > li.active .drop-down-multilevel li.active .drop-down-multilevel li.active a { color: #84ba3f; background: #f7f7f7; }
.mega-menu .menu-links > li.active .drop-down-multilevel li.active .drop-down-multilevel li.active .drop-down-multilevel li a { color: #323232; background:transparent; }
.mega-menu .menu-links > li.active .drop-down-multilevel li.active .drop-down-multilevel li a .drop-down-multilevel li a:hover { color: #84ba3f; }
.mega-menu .menu-links > li.active .drop-down-multilevel li.active .drop-down-multilevel li.active .drop-down-multilevel li.active a { color: #84ba3f; background: #f7f7f7; }
.mega-menu .menu-links > li.active .drop-down-multilevel li.active i { color: #84ba3f; }
.mega-menu .menu-links > li.active .drop-down-multilevel li.active .drop-down-multilevel li.active i { color: #84ba3f; }
.mega-menu .menu-links > li.active .drop-down-multilevel li.active .drop-down-multilevel li a i { color: #323232; }
.mega-menu .menu-links > li.active .drop-down-multilevel li.active:hover .drop-down-multilevel li a:hover i { color: #84ba3f; }
.mega-menu .menu-links > li.active .drop-down-multilevel li.active .drop-down-multilevel li.active .drop-down-multilevel li a:hover { color: #84ba3f; }
.mega-menu .row { margin-left: 0px; margin-right: 0px; }
.mega-menu .col-md-12 { padding-left: 0px; padding-right: 0px; }
.mega-menu.desktopTopFixed .menu-logo { padding: 0px; }
.mega-menu.desktopTopFixed .search-cart i.icon { line-height: 20px; }
.mega-menu.desktopTopFixed .menu-list-items .menu-logo > li > a img { height: 30px; }
.mega-menu .badge { color: #ffffff; }
.mega-menu .drop-down-multilevel li.activeTriggerMobile { background: #fafafa; }
/*fullWidth*/
.header.fullWidth .container-fluid { padding: 0 60px; }
/*light*/
.header.light { background: #ffffff; position: relative; box-shadow: 0 0 15px rgba(0, 0, 0, 0.05); z-index: 999; }
.header.light .topbar ul li { color: #323232; }
.header.light .topbar ul li a { color: #323232; }
.header.light .mega-menu .menu-links > li > a { color: #323232; }
.header.light .mega-menu .menu-links > li > a:hover { color: #84ba3f; }
.header.light .mega-menu .menu-links > li.active > a { color: #84ba3f; }
.header.light .topbar { border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
.header.light .search-cart i.icon { color: #323232; }
.header.light .search-cart i.icon:hover { color: #84ba3f; }
.header.light .mega-menu.desktopTopFixed .menu-list-items { background: #ffffff; }
.header.light .search .search-btn { color: #323232; }
.header.light .search .search-btn:hover { color: #84ba3f; }
/*dark*/
.header.dark { background: #323232; position: relative; }
.header.transparent { background: rgba(0, 0, 0, 0.4); position: absolute; width: 100%; z-index: 999; }
/*left-menu*/
.header.left-menu .menu-bar { float: none; }
.header.left-menu .menu-links { padding-left: 30px; }
.header.left-menu .search-cart { float: right; }
/*logo-center*/
.header.logo-center .mega-menu { min-height: 170px; }
.header.logo-center .menu-logo { float: none; display: block; text-align: center; }
.header.logo-center .mega-menu .menu-logo > li > a { float: none; }
.header.logo-center .mega-menu .menu-logo > li { float: none; line-height: 0; }
.header.logo-center .mega-menu img { float: none; margin: 0 auto; }
.header.logo-center .menu-bar { float: none; }
.header.logo-center .search-cart { float: right; }
.header.logo-center .mega-menu.desktopTopFixed .menu-logo { float: left; display: inline-block; }
.header.logo-center .mega-menu.desktopTopFixed .menu-logo > li > a { float: left; }
.header.logo-center .mega-menu.desktopTopFixed img { float: left; margin: 0 auto; }
.header.logo-center .mega-menu.desktopTopFixed .menu-bar { float: right; border-top: 0px solid rgba(0, 0, 0, 0.1); }
.header.logo-center .mega-menu.desktopTopFixed .search-cart { float: right; }
/*fancy */
.header.fancy { background: transparent; position: relative; border-bottom: 0; }
.header.fancy .topbar { background: #84ba3f; padding: 15px 0px 70px; }
.header.fancy .topbar .topbar-right li a:hover { color: #323232; }
.header.fancy .search-cart i.icon { color: #323232; line-height: 20px; }
.header.fancy .topbar-call ul li i { color: #ffffff; }
.header.fancy .mega-menu .menu-logo { padding: 26px 0px; }
.header.fancy .menu { position: absolute; width: 100%; top: 30px; }
.header.fancy .topbar + .menu { top: 60px; }
.header.fancy .mega-menu > section.menu-list-items { background: #ffffff; padding: 0px 25px; box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1); }
.header.fancy .mega-menu.desktopTopFixed > section.menu-list-items { border-bottom: 1px solid #f6f6f6; }
.header.fancy .topbar ul li a:hover { color: #323232;}
.header.fancy .mega-menu .menu-links > li > a { color: #323232; line-height: 20px; }
.header.fancy .mega-menu .menu-links > li > a:hover { color: #84ba3f; }
.header.fancy .mega-menu .menu-links > li.active > a { color: #84ba3f; }
.header.fancy .mega-menu.desktopTopFixed .menu-links > li > a { color: #ffffff; }
.header.fancy .mega-menu.desktopTopFixed .menu-links > li > a { color: #323232; }
.header.fancy .mega-menu.desktopTopFixed .menu-logo { padding: 0; }
.header.fancy .mega-menu.desktopTopFixed .menu-list-items .menu-links > li > a { line-height: 20px; }
.header.fancy .mega-menu.desktopTopFixed .menu-list-items .menu-logo > li > a img { height: 30px; }
.header.fancy .mega-menu.desktopTopFixed .search-cart i.icon { line-height: 20px; }
.header.fancy .search-cart i.icon:hover { color: #84ba3f; }
.header.fancy .search .search-btn { color: #323232; }
.header.fancy .search .search-btn:hover { color: #84ba3f; }
.header.fancy .mega-menu.desktopTopFixed .drop-down.grid-col-5 { width: 21.66666666666667%; }
.header.fancy .search-box { margin-top: -6px; }
/*fancy without-topbar*/
.header.fancy.without-topbar .menu { top: 30px; }
.header.burger .menu-icon { font-size: 30px; color: #323232; }
.header.burger .menu-icon:hover { color: #84ba3f; }
.header.burger { position: absolute; z-index: 999; width: 100%; padding: 30px 30px; }
.header.burger .logo { display: inline-block; }
.header.burger .logo img { height: 50px; }
/*side-menu-icon*/
.side-menu-icon { display: inline-block; }
.side-menu-icon .menu-icon { font-size: 16px; color: #ffffff; padding-left: 15px; }
.side-menu-icon .menu-icon:hover { color: #84ba3f; }
/*************************
header text-dark
*************************/
.header.text-dark .topbar ul li { color: #323232; }
.header.text-dark .topbar ul li a { color: #323232; }
.header.text-dark .topbar ul li a:hover { color: #84ba3f; }
.header.text-dark .mega-menu .menu-links > li > a { color: #323232; }
.header.text-dark .mega-menu .menu-links > li > a:hover { color: #84ba3f; }
.header.text-dark .mega-menu .menu-links > li.active > a { color: #84ba3f; }
.header.text-dark .topbar { border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
.header.text-dark .search-cart i.icon { color: #323232; }
.header.text-dark .search-cart i.icon:hover { color: #84ba3f; }
.header.text-dark .mega-menu.desktopTopFixed .menu-list-items { background: #ffffff; }
.header.text-dark .search .search-btn { color: #323232; }
.header.text-dark .search .search-btn:hover { color: #84ba3f; }
.header.text-dark .mega-menu .drop-down-multilevel { background: #323232; }
.header.text-dark .mega-menu .drop-down.menu-bg, .header.text-dark .mega-menu .drop-down-tab-bar { background: rgba(50, 50, 50, 1) url(../images/objects/menu-bg.png);
background-repeat: no-repeat; background-position: 120% 0; }
.header.text-dark .mega-menu .drop-down, .header.text-dark .mega-menu .drop-down-tab-bar { background: #323232; }
.header.text-dark .mega-menu .drop-down a, .header.text-dark .mega-menu .drop-down-tab-bar a { color: #ffffff; }
.header.text-dark .mega-menu .drop-down i.fa, .header.text-dark .mega-menu .drop-down-tab-bar i.fa { color: #ffffff; }
.header.text-dark .mega-menu .drop-down a:hover i.fa, .header.text-dark .mega-menu .drop-down-tab-bar a:hover i.fa { color: #84ba3f; }
.header.text-dark .mega-menu .menu-links > li.active .drop-down a { color: #ffffff; }
.header.text-dark .mega-menu .menu-links > li.active .drop-down li.active a { color: #84ba3f; }
.header.text-dark .mega-menu .menu-links > li.active .drop-down li a:hover { color: #84ba3f; }
.header.text-dark .mega-menu .drop-down a:hover, .header.text-dark .mega-menu .drop-down-tab-bar a:hover { color: #84ba3f; }
.header.text-dark .mega-menu .menu-links > li.active .drop-down-multilevel a, .header.text-dark .mega-menu .drop-down-multilevel a { color: #ffffff; }
.header.text-dark .mega-menu .menu-links > li.active .drop-down-multilevel li.active a, .header.text-dark .mega-menu .drop-down-multilevel li:hover { background: #282828; }
.header.text-dark .mega-menu .drop-down.menu-shop-bg { background: rgba(50, 50, 50, 1) url(../images/objects/menu-shop-bg.jpg) !important; background-repeat: no-repeat; background-position: right;}
.header.text-dark .mega-menu .menu-links > li.active .drop-down-multilevel a:hover, .header.text-dark .mega-menu .drop-down-multilevel a:hover { color: #84ba3f; }
.header.text-dark .mega-menu .menu-links > li.active .drop-down-multilevel li.active a { color: #84ba3f; background: #282828; }
.header.text-dark .mega-menu .menu-links > li.active .drop-down-multilevel li.active .drop-down-multilevel li a { color: #ffffff; background:transparent; }
.header.text-dark .mega-menu .menu-links > li.active .drop-down-multilevel li.active .drop-down-multilevel li a:hover { color: #84ba3f; }
.header.text-dark .mega-menu .menu-links > li.active .drop-down-multilevel li.active .drop-down-multilevel li.active a { color: #84ba3f; background: #282828; }
.header.text-dark .mega-menu .menu-links > li.active .drop-down-multilevel li.active .drop-down-multilevel li.active .drop-down-multilevel li a { color: #ffffff; background:transparent; }
.header.text-dark .mega-menu .menu-links > li.active .drop-down-multilevel li.active .drop-down-multilevel li a .drop-down-multilevel li a:hover { color: #84ba3f; }
.header.text-dark .mega-menu .menu-links > li.active .drop-down-multilevel li.active .drop-down-multilevel li.active .drop-down-multilevel li.active a { color: #84ba3f; background: #282828; }
.header.text-dark .mega-menu .menu-links > li.active .drop-down-multilevel li.active i { color: #84ba3f; }
.header.text-dark .mega-menu .menu-links > li.active .drop-down-multilevel li.active .drop-down-multilevel li.active i { color: #84ba3f; }
.header.text-dark .mega-menu .menu-links > li.active .drop-down-multilevel li.active .drop-down-multilevel li a i { color: #ffffff; }
.header.text-dark .mega-menu .menu-links > li.active .drop-down-multilevel li.active:hover .drop-down-multilevel li a:hover i { color: #84ba3f; }
.header.text-dark .mega-menu .menu-links > li.active .drop-down-multilevel li.active .drop-down-multilevel li.active .drop-down-multilevel li a:hover { color: #84ba3f; }
.header.text-dark .mega-menu .menu-links > li.active .drop-down-multilevel li.active .drop-down-multilevel li.active a { color: #84ba3f;
background: #282828; }
.header.text-dark .mega-menu .drop-down-multilevel i.fa-indicator { color: #ffffff; }
.header.text-dark .mega-menu .drop-down-multilevel a:hover i.fa-indicator { color: #84ba3f; }
.header.text-dark .mega-menu .drop-down-multilevel li.active a i.fa-indicator { color: #84ba3f; }
/*dark-dropdown*/
.header.dark-dropdown .mega-menu .drop-down-multilevel { background: #323232; }
.header.dark-dropdown .mega-menu .drop-down.menu-bg, .header.dark-dropdown .mega-menu .drop-down-tab-bar { background: rgba(50, 50, 50, 1) url(../images/objects/menu-bg.png);
background-repeat: no-repeat; background-position: 120% 0; }
.header.dark-dropdown .mega-menu .drop-down, .header.dark-dropdown .mega-menu .drop-down-tab-bar { background: #323232; }
.header.dark-dropdown .mega-menu .drop-down a, .header.dark-dropdown .mega-menu .drop-down-tab-bar a { color: #ffffff; }
.header.dark-dropdown .mega-menu .drop-down i.fa, .header.dark-dropdown .mega-menu .drop-down-tab-bar i.fa { color: #ffffff; }
.header.dark-dropdown .mega-menu .drop-down a:hover i.fa, .header.dark-dropdown .mega-menu .drop-down-tab-bar a:hover i.fa { color: #84ba3f; }
.header.dark-dropdown .mega-menu .menu-links > li.active .drop-down a { color: #ffffff; }
.header.dark-dropdown .mega-menu .menu-links > li.active .drop-down li.active a { color: #84ba3f; }
.header.dark-dropdown .mega-menu .menu-links > li.active .drop-down li a:hover { color: #84ba3f; }
.header.dark-dropdown .mega-menu .drop-down a:hover, .header.dark-dropdown .mega-menu .drop-down-tab-bar a:hover { color: #84ba3f; }
.header.dark-dropdown .mega-menu .menu-links > li.active .drop-down-multilevel a, .header.dark-dropdown .mega-menu .drop-down-multilevel a { color: #ffffff; }
.header.dark-dropdown .mega-menu .menu-links > li.active .drop-down-multilevel li.active a, .header.dark-dropdown .mega-menu .drop-down-multilevel li:hover { background: #282828; }
.header.dark-dropdown .mega-menu .drop-down.menu-shop-bg { background: rgba(50, 50, 50, 1) url(../images/objects/menu-shop-bg.jpg) !important; background-repeat: no-repeat; background-position: right;}
.header.dark-dropdown .mega-menu .menu-links > li.active .drop-down-multilevel a:hover, .header.dark-dropdown .mega-menu .drop-down-multilevel a:hover { color: #84ba3f; }
.header.dark-dropdown .mega-menu .menu-links > li.active .drop-down-multilevel li.active a { color: #84ba3f; background: #282828; }
.header.dark-dropdown .mega-menu .menu-links > li.active .drop-down-multilevel li.active .drop-down-multilevel li a { color: #ffffff; background:transparent; }
.header.dark-dropdown .mega-menu .menu-links > li.active .drop-down-multilevel li.active .drop-down-multilevel li a:hover { color: #84ba3f; }
.header.dark-dropdown .mega-menu .menu-links > li.active .drop-down-multilevel li.active .drop-down-multilevel li.active a { color: #84ba3f; background: #282828; }
.header.dark-dropdown .mega-menu .menu-links > li.active .drop-down-multilevel li.active .drop-down-multilevel li.active .drop-down-multilevel li a { color: #ffffff; background:transparent; }
.header.dark-dropdown .mega-menu .menu-links > li.active .drop-down-multilevel li.active .drop-down-multilevel li a .drop-down-multilevel li a:hover { color: #84ba3f; }
.header.dark-dropdown .mega-menu .menu-links > li.active .drop-down-multilevel li.active .drop-down-multilevel li.active .drop-down-multilevel li.active a { color: #84ba3f; background: #282828; }
.header.dark-dropdown .mega-menu .menu-links > li.active .drop-down-multilevel li.active i { color: #84ba3f; }
.header.dark-dropdown .mega-menu .menu-links > li.active .drop-down-multilevel li.active .drop-down-multilevel li.active i { color: #84ba3f; }
.header.dark-dropdown .mega-menu .menu-links > li.active .drop-down-multilevel li.active .drop-down-multilevel li a i { color: #ffffff; }
.header.dark-dropdown .mega-menu .menu-links > li.active .drop-down-multilevel li.active:hover .drop-down-multilevel li a:hover i { color: #84ba3f; }
.header.dark-dropdown .mega-menu .menu-links > li.active .drop-down-multilevel li.active .drop-down-multilevel li.active .drop-down-multilevel li a:hover { color: #84ba3f; }
.header.dark-dropdown .mega-menu .menu-links > li.active .drop-down-multilevel li.active .drop-down-multilevel li.active a { color: #84ba3f;
background: #282828; }
.header.dark-dropdown .mega-menu .drop-down-multilevel i.fa-indicator { color: #ffffff; }
.header.dark-dropdown .mega-menu .drop-down-multilevel a:hover i.fa-indicator { color: #84ba3f; }
.header.dark-dropdown .mega-menu .drop-down-multilevel li.active a i.fa-indicator { color: #84ba3f; }
/*label*/
.header .label.label-default, .header .label.label-primary, .header .label.label-success, .header .label.label-info, .header .label.label-warning, .header .label.label-danger { color: #fff; padding: 0px 5px; line-height: 14px; display: inline-block; }
/*onepagenav*/
#onepagenav .mega-menu .menu-links > li > a { text-transform: capitalize; }
.vertical-menu #onepagenav.menu .mega-menu .menu-links > li { display: block; float: none; }
.vertical-menu #onepagenav.menu .mega-menu .menu-links > li > a{ display: block; }
/*************************
topbar-dark
*************************/
.header.topbar-dark .topbar { background: #323232; }
.header.topbar-dark .topbar .topbar-call ul li a, .header.topbar-dark .topbar ul li, .header.topbar-dark .topbar ul li a { color: #ffffff !important; }
/*************************
one page
*************************/
header.one-page { position: absolute; width: 100%; z-index: 999; }
.navbar-inverse { background: transparent; border: 0; }
.navbar-brand { height: auto; padding: 25px 0; }
.navbar .navbar-brand img { height: 40px; }
.navbar { min-height: 80px; }
.navbar-nav { float: right; }
.navbar-inverse .navbar-nav>li { padding: 35px 15px; }
.navbar-inverse .navbar-nav>li>a { color: #ffffff; padding: 0; text-transform: capitalize; }
.navbar-inverse .navbar-nav>li>a:hover { color: #84ba3f; }
.navbar.affix { width: 100%; background: #323232; }
.navbar.affix { width: 100%; background: #323232; }
.navbar { min-height: inherit !important; }
.navbar.affix .navbar-brand img { height: 30px; }
.navbar.affix .navbar-brand { padding: 15px 0; }
.navbar.affix .navbar-nav>li { padding: 20px 15px; }
.navbar-nav>li>a { transition: all 0.5s ease-in-out; -webkit-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; -ms-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; }
/*vertical-header*/
.vertical-header .container-fluid { padding: 0 80px; }
.menu-responsive { display: none; }
.vertical-header .navbar { overflow-y: scroll; overflow-x: hidden; height: 100%;}
.vertical-header { padding-left: 260px; }
.header.vertical-menu { position: fixed; left: 0; top: 0; width: 260px; min-height: 100%; background: #212121; z-index: 999; -o-transition: all 1s; -webkit-transition: all 1s;
transition: all 1s; }
.header.vertical-menu .menu-bar { float: none; }
.mega-menu.vertical-left, .mega-menu.vertical-right { float: none; }
.menu-widgets { position: absolute; bottom: 20px; }
.menu-widgets .social-icons.social-border li a { border:2px solid; line-height: 30px; }
.navbar-inverse .navbar-nav>.active>a, .navbar-inverse .navbar-nav>.active>a:focus, .navbar-inverse .navbar-nav>.active>a:hover { background: transparent; color: #84ba3f; }
header.one-page.vertical-menu { position: fixed; left: 0; top: 0; height: 100%; background: #212121; width: 260px; padding: 30px; }
header.one-page.vertical-menu .navbar-header { float: none; margin-bottom: 20px; }
header.one-page.vertical-menu .navbar-nav { float: none; }
header.one-page.vertical-menu .navbar-nav>li { display: block; float: none; }
header.one-page.vertical-menu .navbar-inverse .navbar-nav>li { padding: 15px 0px; }
header.one-page.vertical-menu .navbar-collapse { padding: 0; }
header.one-page.vertical-menu .menu-widgets { padding: 0px; }
header.one-page.light { position: relative; background: #ffffff; }
header.one-page.light .navbar { margin-bottom: 0; }
header.one-page.light .navbar-inverse .navbar-nav>li>a { color: #323232; }
header.one-page.light .navbar-inverse .navbar-nav>li>a:hover { color: #84ba3f; }
header.one-page.light .navbar-inverse .navbar-nav>.active>a, header.one-page.light .navbar-inverse .navbar-nav>.active>a:focus, header.one-page.light .navbar-inverse .navbar-nav>.active>a:hover { background: transparent; color: #84ba3f; }
header.one-page.light .navbar-inverse .navbar-collapse, header.one-page.light .navbar-inverse .navbar-form { background: #ffffff; }
header.one-page.light .navbar.affix { background: #ffffff; box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1); }
header.one-page.light .navbar-inverse .navbar-nav.hover-effect-01>li>a { padding: 5px 10px; -o-transition: all 0.6s ease-out; -ms-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out; transition: all 0.6s ease-out; }
header.one-page.light .navbar-inverse .navbar-nav.hover-effect-01>li>a:hover, header.one-page.light .navbar-inverse .navbar-nav.hover-effect-01>.active>a { -webkit-box-shadow: inset 178px 0px 0px 0px #84ba3f; -o-box-shadow: inset 178px 0px 0px 0px #84ba3f; -ms-box-shadow: inset 178px 0px 0px 0px #84ba3f; -moz-box-shadow: inset 178px 0px 0px 0px #84ba3f; box-shadow: inset 178px 0px 0px 0px #84ba3f; color: #fff; -webkit-transition: all 0.9s ease-in; -moz-transition: all 0.9s ease-in; -ms-transition: all 0.9s ease-in; -o-transition: all 0.9s ease-in; transition: all 0.9s ease-in; }
.one-page.nav-center .navbar-collapse.collapse { text-align: center; }
.one-page.nav-center .navbar-nav { float: none; display: inline-block; }
.one-page.transparent { background: rgba(0, 12, 27, 0.5); }
.one-page.transparent .navbar { margin-bottom: 0; }
/*dark-text*/
.one-page.dark-text .navbar-inverse .navbar-nav>li>a { color: #323232; }
.one-page.dark-text .navbar-inverse .navbar-nav>li>a:hover { color: #d12326; }
.one-page.dark-text .navbar-inverse .navbar-nav>.active>a, .one-page.dark-text .navbar-inverse .navbar-nav>.active>a:focus, .one-page.dark-text .navbar-inverse .navbar-nav>.active>a:hover { color: #d12326; }
.one-page.dark-text .navbar.affix { background: #ffffff; box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1); }
/*mega menu vertical*/
.vertical-menu .menu .menu-logo { padding: 50px 20px; }
.vertical-menu .menu .mega-menu .menu-links > li > a { padding: 0 23px; }
.vertical-menu .menu-widgets { padding: 20px; }
@media (min-width: 992px) {
.mega-menu { min-height: inherit; }
.header.light .mega-menu { min-height: 90px; }
.mega-menu > section.menu-list-items { float: none; }
.mega-menu > section.menu-list-items > .container,
.mega-menu > section.menu-list-items > .container > .row,
.mega-menu > section.menu-list-items > .container > .row > div { height: 100%; }
.mega-menu > section.menu-list-items .menu-bar { height: 100%; }
.mega-menu > section.menu-list-items .menu-bar > ul{ display: table !important; height: 100%; }
.mega-menu > section.menu-list-items .menu-bar > ul > li { display: table-cell; vertical-align: middle; float: none; }
.mega-menu .drop-down, .mega-menu .drop-down-tab-bar, .mega-menu .drop-down-multilevel { top: 100%; }
.mega-menu > section.menu-list-items .search-cart { height: 100%; }
.mega-menu > section.menu-list-items .search-cart .search { vertical-align: middle; display: table; height: 100%; float: left; }
.header .search .search-btn { display: table-cell; vertical-align: middle; position: relative; width: 10px; float: none; clear: both; height: 100%; }
.search .search-btn:before { top: 50%; -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%); -ms-transform: translateY(-50%); -o-transform: translateY(-50%); transform: translateY(-50%); }
.search-cart .shpping-cart { display: table; float: left; height: 100%; }
.shpping-cart a { position: relative; display: table-cell; vertical-align: middle; }
.shpping-cart strong.item { display: block; position: absolute; top: 50%; border-radius: 50%; -webkit-transform: translateY(-50%); -o-transform: translateY(-50%); -ms-transform: translateY(-50%); -moz-transform: translateY(-50%); transform: translateY(-50%); margin-top: -10px; }
.cart { top: 100%; }
.mega-menu > section.menu-list-items > .container-fluid,
.mega-menu > section.menu-list-items > .container-fluid > .row,
.mega-menu > section.menu-list-items > .container-fluid > .row > div { height: 100%; }
.logo-center .mega-menu > section.menu-list-items .menu-bar > ul { height: auto; }
.logo-center .mega-menu > section.menu-list-items .menu-bar > ul > li { display: inline-block; }
.logo-center .mega-menu > section.menu-list-items .search-cart { height: auto; }
.logo-center .mega-menu > section.menu-list-items .menu-bar { height: auto; }
.logo-center .mega-menu .drop-down, .logo-center .mega-menu .drop-down-tab-bar, .logo-center .mega-menu .drop-down-multilevel { top: auto; }
.logo-center .mega-menu .menu-links > li > a { line-height: 72px; }
.logo-center.header .search .search-btn { line-height: 72px; }
.logo-center .search-cart i.icon { line-height: 72px; }
.logo-center .mega-menu.desktopTopFixed .menu-list-items .menu-links > li > a { line-height: 60px; }
.logo-center .mega-menu.desktopTopFixed .search .search-btn { line-height: 60px; }
.logo-center .mega-menu.desktopTopFixed .search-cart i.icon { line-height: 60px; }
.logo-center .search .search-btn:before { top: inherit; transform: inherit; }
.logo-center .search-cart .shpping-cart { float: right; }
.vertical-menu .mega-menu > section.menu-list-items .menu-bar { height: auto; }
.vertical-menu .mega-menu > section.menu-list-items .menu-bar > ul > li { display: block; }
.search-cart .side-menu-icon { display: table; float: left; height: 100%; }
.side-menu-icon .menu-icon { position: relative; display: table-cell; vertical-align: middle; }
.header.light .mega-menu { min-height: 90px; }
nav#menu.desktopTopFixed { min-height: 90px; }
}
/*************************************
Slider (all home page main sliders )
**************************************/
.rev-slider { overflow: hidden; position: relative; }
.slotholder { filter: none !important; }
.tp-half-one { opacity: 1 !important; visibility: visible !important; transform: inherit !important; }
/*slider 01*/
#rev_slider_267_1_wrapper .tp-loader.spinner2{ background-color: #FFFFFF !important; }
#rev_slider_267_1 .zeus.tparrows{cursor:pointer; min-width:70px; min-height:70px; position:absolute; display:block; z-index:100; border-radius:50%; overflow:hidden; background:rgba(0,0,0,0.1)}#rev_slider_267_1 .zeus.tparrows:before{font-family:"revicons"; font-size:20px; color:rgb(255,255,255); display:block; line-height:70px; text-align:center; z-index:2; position:relative}#rev_slider_267_1 .zeus.tparrows.tp-leftarrow:before{content:"\e824"}#rev_slider_267_1 .zeus.tparrows.tp-rightarrow:before{content:"\e825"}#rev_slider_267_1 .zeus .tp-title-wrap{background:rgba(0,0,0,0.5); width:100%; height:100%; top:0px; left:0px; position:absolute; opacity:0; transform:scale(0); -webkit-transform:scale(0); transition:all 0.3s; -webkit-transition:all 0.3s; -moz-transition:all 0.3s; border-radius:50%}#rev_slider_267_1 .zeus .tp-arr-imgholder{width:100%; height:100%; position:absolute; top:0px; left:0px; background-position:center center; background-size:cover; border-radius:50%; transform:translatex(-100%); -webkit-transform:translatex(-100%); transition:all 0.3s; -webkit-transition:all 0.3s; -moz-transition:all 0.3s}#rev_slider_267_1 .zeus.tp-rightarrow .tp-arr-imgholder{transform:translatex(100%); -webkit-transform:translatex(100%)}#rev_slider_267_1 .zeus.tparrows:hover .tp-arr-imgholder{transform:translatex(0); -webkit-transform:translatex(0); opacity:1}#rev_slider_267_1 .zeus.tparrows:hover .tp-title-wrap{transform:scale(1); -webkit-transform:scale(1); opacity:1}
/*slider 02*/
#rev_slider_268_1_wrapper .tp-loader.spinner2{ background-color: #FFFFFF !important; }
#rev_slider_268_1 .dione.tparrows{color:#000; height:100%; width:90px; background:transparent; background:rgba(0,0,0,0); line-height:100%; transition:all 0.3s;-webkit-transition:all 0.3s}#rev_slider_268_1 .dione.tparrows:hover{background:rgba(0,0,0,0.45)}#rev_slider_268_1 .dione .tp-arr-imgwrapper{width:90px; left:0px; position:absolute; height:100%; top:0px; overflow:hidden}#rev_slider_268_1 .dione.tp-rightarrow .tp-arr-imgwrapper{left:auto;right:0px}#rev_slider_268_1 .dione .tp-arr-imgholder{background-position:center center;background-size:cover;width:90px;height:100%;top:0px;visibility:hidden;transform:translatex(-50px);-webkit-transform:translatex(-50px);transition:all 0.3s;-webkit-transition:all 0.3s;opacity:0;left:0px}#rev_slider_268_1 .dione.tparrows.tp-rightarrow .tp-arr-imgholder{right:0px; left:auto; transform:translatex(50px); -webkit-transform:translatex(50px)}#rev_slider_268_1 .dione.tparrows:before{color:255,255,255;position:absolute;line-height:30px;margin-left:-22px;top:50%;left:50%;font-size:30px;margin-top:-15px;transition:all 0.3s;-webkit-transition:all 0.3s}#rev_slider_268_1 .dione.tparrows.tp-rightarrow:before{margin-left:6px}#rev_slider_268_1 .dione.tparrows:hover:before{transform:translatex(-20px);-webkit-transform:translatex(-20px);opacity:0}#rev_slider_268_1 .dione.tparrows.tp-rightarrow:hover:before{transform:translatex(20px);-webkit-transform:translatex(20px)}#rev_slider_268_1 .dione.tparrows:hover .tp-arr-imgholder{transform:translatex(0px);-webkit-transform:translatex(0px);opacity:1;visibility:visible}
/*slider 03*/
#rev_slider_269_1_wrapper .tp-loader.spinner2{ background-color: #FFFFFF !important; }
/*slider 04*/
#rev_slider_270_1_wrapper .tp-loader.spinner2{ background-color: #FFFFFF !important; }
.hermes.tparrows{cursor:pointer;background:rgba(0,0,0,0.5);width:30px;height:110px;position:absolute;display:block;z-index:100}.hermes.tparrows:before{font-family:"revicons";font-size:15px;color:rgb(255,255,255);display:block;line-height:110px;text-align:center; transform:translatex(0px); -webkit-transform:translatex(0px); transition:all 0.3s; -webkit-transition:all 0.3s}.hermes.tparrows.tp-leftarrow:before{content:"\e824"}.hermes.tparrows.tp-rightarrow:before{content:"\e825"}.hermes.tparrows.tp-leftarrow:hover:before{transform:translatex(-20px); -webkit-transform:translatex(-20px); opacity:0}.hermes.tparrows.tp-rightarrow:hover:before{transform:translatex(20px); -webkit-transform:translatex(20px); opacity:0}.hermes .tp-arr-allwrapper{overflow:hidden; position:absolute;width:180px; height:140px; top:0px; left:0px; visibility:hidden; -webkit-transition:-webkit-transform 0.3s 0.3s; transition:transform 0.3s 0.3s; -webkit-perspective:1000px; perspective:1000px}.hermes.tp-rightarrow .tp-arr-allwrapper{right:0px;left:auto}.hermes.tparrows:hover .tp-arr-allwrapper{visibility:visible}.hermes .tp-arr-imgholder{width:180px;position:absolute; left:0px;top:0px;height:110px; transform:translatex(-180px); -webkit-transform:translatex(-180px); transition:all 0.3s; transition-delay:0.3s}.hermes.tp-rightarrow .tp-arr-imgholder{transform:translatex(180px); -webkit-transform:translatex(180px)}.hermes.tparrows:hover .tp-arr-imgholder{transform:translatex(0px); -webkit-transform:translatex(0px)}.hermes .tp-arr-titleholder{top:110px; width:180px; text-align:left; display:block; padding:0px 10px; line-height:30px; background:#000; background:rgba(0,0,0,0.75); color:rgb(255,255,255); font-weight:600; position:absolute; font-size:12px; white-space:nowrap; letter-spacing:1px; -webkit-transition:all 0.3s; transition:all 0.3s; -webkit-transform:rotatex(-90deg); transform:rotatex(-90deg); -webkit-transform-origin:50% 0; transform-origin:50% 0; box-sizing:border-box}.hermes.tparrows:hover .tp-arr-titleholder{-webkit-transition-delay:0.6s; transition-delay:0.6s; -webkit-transform:rotatex(0deg); transform:rotatex(0deg)}
/*slider 05*/
#rev_slider_271_1_wrapper .tp-loader.spinner2{ background-color: #FFFFFF !important; }
.erinyen.tparrows{cursor:pointer; background:rgba(0,0,0,0.5); min-width:70px; min-height:70px; position:absolute; display:block; z-index:100; border-radius:50%}.erinyen.tparrows:before{font-family:"revicons"; font-size:20px; color:rgb(255,255,255); display:block; line-height:70px; text-align:center; z-index:2; position:relative}.erinyen.tparrows.tp-leftarrow:before{content:"\e824"}.erinyen.tparrows.tp-rightarrow:before{content:"\e825"}.erinyen .tp-title-wrap{position:absolute; z-index:1; display:inline-block; background:rgba(0,0,0,0.5); min-height:70px; line-height:70px; top:0px; margin-left:0px; border-radius:35px; overflow:hidden; transition:opacity 0.3s; -webkit-transition:opacity 0.3s; -moz-transition:opacity 0.3s; -webkit-transform:scale(0); -moz-transform:scale(0); transform:scale(0); visibility:hidden; opacity:0}.erinyen.tparrows:hover .tp-title-wrap{-webkit-transform:scale(1); -moz-transform:scale(1); transform:scale(1); opacity:1; visibility:visible}.erinyen.tp-rightarrow .tp-title-wrap{right:0px; margin-right:0px;margin-left:0px; -webkit-transform-origin:100% 50%; border-radius:35px; padding-right:20px; padding-left:10px}.erinyen.tp-leftarrow .tp-title-wrap{padding-left:20px; padding-right:10px}.erinyen .tp-arr-titleholder{letter-spacing:3px; position:relative; -webkit-transition:-webkit-transform 0.3s; transition:transform 0.3s; transform:translatex(200px); text-transform:uppercase; color:rgb(255,255,255); font-weight:600; font-size:13px; line-height:70px; white-space:nowrap; padding:0px 20px; margin-left:11px; opacity:0}.erinyen .tp-arr-imgholder{width:100%; height:100%; position:absolute; top:0px; left:0px; background-position:center center; background-size:cover}.erinyen .tp-arr-img-over{width:100%; height:100%; position:absolute; top:0px; left:0px; background:rgba(0,0,0,0.51)}.erinyen.tp-rightarrow .tp-arr-titleholder{transform:translatex(-200px); margin-left:0px; margin-right:11px}.erinyen.tparrows:hover .tp-arr-titleholder{transform:translatex(0px); -webkit-transform:translatex(0px); transition-delay:0.1s; opacity:1}
/*slider 06*/
#rev_slider_272_1_wrapper .tp-loader.spinner2{ background-color: #FFFFFF !important; }
.custom.tparrows{cursor:pointer;background:#000;background:rgba(0,0,0,0.5);width:40px;height:40px;position:absolute;display:block;z-index:100}.custom.tparrows:hover{background:#000}.custom.tparrows:before{font-family:"revicons";font-size:15px;color:#fff;display:block;line-height:40px;text-align:center}.custom.tparrows.tp-leftarrow:before{content:"\e824"}.custom.tparrows.tp-rightarrow:before{content:"\e825"}
/*slider 07*/
#rev_slider_273_1_wrapper .tp-loader.spinner2{ background-color: #FFFFFF !important; }
.erinyen.tparrows{cursor:pointer; background:rgba(0,0,0,0.5); min-width:70px; min-height:70px; position:absolute; display:block; z-index:100; border-radius:50%}.erinyen.tparrows:before{font-family:"revicons"; font-size:20px; color:rgb(255,255,255); display:block; line-height:70px; text-align:center; z-index:2; position:relative}.erinyen.tparrows.tp-leftarrow:before{content:"\e824"}.erinyen.tparrows.tp-rightarrow:before{content:"\e825"}.erinyen .tp-title-wrap{position:absolute; z-index:1; display:inline-block; background:rgba(0,0,0,0.5); min-height:70px; line-height:70px; top:0px; margin-left:0px; border-radius:35px; overflow:hidden; transition:opacity 0.3s; -webkit-transition:opacity 0.3s; -moz-transition:opacity 0.3s; -webkit-transform:scale(0); -moz-transform:scale(0); transform:scale(0); visibility:hidden; opacity:0}.erinyen.tparrows:hover .tp-title-wrap{-webkit-transform:scale(1); -moz-transform:scale(1); transform:scale(1); opacity:1; visibility:visible}.erinyen.tp-rightarrow .tp-title-wrap{right:0px; margin-right:0px;margin-left:0px; -webkit-transform-origin:100% 50%; border-radius:35px; padding-right:20px; padding-left:10px}.erinyen.tp-leftarrow .tp-title-wrap{padding-left:20px; padding-right:10px}.erinyen .tp-arr-titleholder{letter-spacing:3px; position:relative; -webkit-transition:-webkit-transform 0.3s; transition:transform 0.3s; transform:translatex(200px); text-transform:uppercase; color:rgb(255,255,255); font-weight:600; font-size:13px; line-height:70px; white-space:nowrap; padding:0px 20px; margin-left:11px; opacity:0}.erinyen .tp-arr-imgholder{width:100%; height:100%; position:absolute; top:0px; left:0px; background-position:center center; background-size:cover}.erinyen .tp-arr-img-over{width:100%; height:100%; position:absolute; top:0px; left:0px; background:rgba(0,0,0,0.51)}.erinyen.tp-rightarrow .tp-arr-titleholder{transform:translatex(-200px); margin-left:0px; margin-right:11px}.erinyen.tparrows:hover .tp-arr-titleholder{transform:translatex(0px); -webkit-transform:translatex(0px); transition-delay:0.1s; opacity:1}
/*slider 10*/
#rev_slider_275_1_wrapper .tp-loader.spinner2{ background-color: #FFFFFF !important; }
#rev_slider_275_1 .zeus .tp-bullet{box-sizing:content-box; -webkit-box-sizing:content-box; border-radius:50%; background-color:rgba(0,0,0,0); -webkit-transition:opacity 0.3s ease; transition:opacity 0.3s ease; width:13px;height:13px; border:2px solid rgb(255,255,255)}#rev_slider_275_1 .zeus .tp-bullet:after{content:""; position:absolute; width:100%; height:100%; left:0; border-radius:50%; background-color:rgb(255,255,255); -webkit-transform:scale(0); transform:scale(0); -webkit-transform-origin:50% 50%; transform-origin:50% 50%; -webkit-transition:-webkit-transform 0.3s ease; transition:transform 0.3s ease}#rev_slider_275_1 .zeus .tp-bullet:hover:after,#rev_slider_275_1 .zeus .tp-bullet.selected:after{-webkit-transform:scale(1.2); transform:scale(1.2)}#rev_slider_275_1 .zeus .tp-bullet-image,#rev_slider_275_1 .zeus .tp-bullet-imageoverlay{width:135px; height:60px; position:absolute; background:#000; background:rgba(0,0,0,0.5); bottom:13px; margin-bottom:10px; transform:translateX(-50%); -webkit-transform:translateX(-50%); box-sizing:border-box; background-size:cover; background-position:center center; visibility:hidden; opacity:0; -webkit-backface-visibility:hidden; backface-visibility:hidden; -webkit-transform-origin:50% 50%; transform-origin:50% 50%; -webkit-transition:all 0.3s ease; transition:all 0.3s ease; border-radius:4px}#rev_slider_275_1 .zeus .tp-bullet-title,#rev_slider_275_1 .zeus .tp-bullet-imageoverlay{z-index:2; -webkit-transition:all 0.5s ease; transition:all 0.5s ease; transform:translateX(-50%); -webkit-transform:translateX(-50%)}#rev_slider_275_1 .zeus .tp-bullet-title{color:rgb(255,255,255); text-align:center; line-height:15px; font-size:13px; font-weight:600; z-index:3; visibility:hidden; opacity:0; -webkit-backface-visibility:hidden; backface-visibility:hidden; -webkit-transform-origin:50% 50%; transform-origin:50% 50%; -webkit-transition:all 0.3s ease; transition:all 0.3s ease; position:absolute; bottom:45px; width:135px; vertical-align:middle}#rev_slider_275_1 .zeus .tp-bullet:hover .tp-bullet-title,#rev_slider_275_1 .zeus .tp-bullet:hover .tp-bullet-image,#rev_slider_275_1 .zeus .tp-bullet:hover .tp-bullet-imageoverlay{opacity:1; visibility:visible; -webkit-transform:translateY(0px) translateX(-50%); transform:translateY(0px) translateX(-50%)}#rev_slider_275_1 .zeus.nav-dir-vertical .tp-bullet-image,#rev_slider_275_1 .zeus.nav-dir-vertical .tp-bullet-imageoverlay{bottom:auto; margin-right:10px; margin-bottom:0px; right:13px; transform:translateX(0px) translateY(-50%); -webkit-transform:translateX(0px) translateY(-50%)}#rev_slider_275_1 .zeus.nav-dir-vertical .tp-bullet:hover .tp-bullet-image{transform:translateX(0px) translateY(-50%); -webkit-transform:translateX(0px) translateY(-50%)}#rev_slider_275_1 .zeus.nav-dir-vertical .tp-bullet-title,#rev_slider_275_1 .zeus.nav-dir-vertical .tp-bullet-imageoverlay{z-index:2; -webkit-transition:all 0.5s ease; transition:all 0.5s ease; transform:translateX(0px) translateY(-50%); -webkit-transform:translateX(0px) translateY(-50%)}#rev_slider_275_1 .zeus.nav-dir-vertical .tp-bullet-title{bottom:auto; right:100%; margin-right:10px}#rev_slider_275_1 .zeus.nav-dir-vertical .tp-bullet:hover .tp-bullet-title,#rev_slider_275_1 .zeus.nav-dir-vertical .tp-bullet:hover .tp-bullet-image,#rev_slider_275_1 .zeus.nav-dir-vertical .tp-bullet:hover .tp-bullet-imageoverlay{transform:translateX(0px) translateY(-50%); -webkit-transform:translateX(0px) translateY(-50%)}#rev_slider_275_1 .zeus.nav-dir-vertical.nav-pos-hor-left .tp-bullet-image,#rev_slider_275_1 .zeus.nav-dir-vertical.nav-pos-hor-left .tp-bullet-imageoverlay{bottom:auto; margin-left:10px; margin-bottom:0px; left:13px; transform:translateX(0px) translateY(-50%); -webkit-transform:translateX(0px) translateY(-50%)}#rev_slider_275_1 .zeus.nav-dir-vertical.nav-pos-hor-left .tp-bullet:hover .tp-bullet-image{transform:translateX(0px) translateY(-50%); -webkit-transform:translateX(0px) translateY(-50%)}#rev_slider_275_1 .zeus.nav-dir-vertical.nav-pos-hor-left .tp-bullet-title,#rev_slider_275_1 .zeus.nav-dir-vertical.nav-pos-hor-left .tp-bullet-imageoverlay{z-index:2; -webkit-transition:all 0.5s ease; transition:all 0.5s ease; transform:translateX(0px) translateY(-50%); -webkit-transform:translateX(0px) translateY(-50%)}#rev_slider_275_1 .zeus.nav-dir-vertical.nav-pos-hor-left .tp-bullet-title{bottom:auto; left:100%; margin-left:10px}#rev_slider_275_1 .zeus.nav-dir-horizontal.nav-pos-ver-top .tp-bullet-image,#rev_slider_275_1 .zeus.nav-dir-horizontal.nav-pos-ver-top .tp-bullet-imageoverlay{bottom:auto; top:13px; margin-top:10px; margin-bottom:0px; left:0px; transform:translateY(0px) translateX(-50%); -webkit-transform:translateX(0px) translateX(-50%)}#rev_slider_275_1 .zeus.nav-dir-horizontal.nav-pos-ver-top .tp-bullet:hover .tp-bullet-image{transform:scale(1) translateY(0px) translateX(-50%); -webkit-transform:scale(1) translateY(0px) translateX(-50%)}#rev_slider_275_1 .zeus.nav-dir-horizontal.nav-pos-ver-top .tp-bullet-title,#rev_slider_275_1 .zeus.nav-dir-horizontal.nav-pos-ver-top .tp-bullet-imageoverlay{z-index:2; -webkit-transition:all 0.5s ease; transition:all 0.5s ease; transform:translateY(0px) translateX(-50%); -webkit-transform:translateY(0px) translateX(-50%)}#rev_slider_275_1 .zeus.nav-dir-horizontal.nav-pos-ver-top .tp-bullet-title{bottom:auto; top:13px; margin-top:20px}
/*index-cafe*/
#rev_slider_9_1 .uranus.tparrows{width:50px; height:50px; background:rgba(255,255,255,0)}#rev_slider_9_1 .uranus.tparrows:before{width:50px; height:50px; line-height:50px; font-size:40px; transition:all 0.3s;-webkit-transition:all 0.3s}#rev_slider_9_1 .uranus.tparrows:hover:before{opacity:0.75}
/*index-construction*/
#rev_slider_19_1_wrapper .tp-loader.spinner2{ background-color: #FFFFFF !important; }
#rev_slider_19_1 .metis.tparrows{background:rgba(255,255,255,1); padding:10px; transition:all 0.3s; -webkit-transition:all 0.3s; width:60px; height:60px; box-sizing:border-box}#rev_slider_19_1 .metis.tparrows:hover{background:rgba(255,255,255,0.75)}#rev_slider_19_1 .metis.tparrows:before{color:rgb(0,0,0); transition:all 0.3s; -webkit-transition:all 0.3s}#rev_slider_19_1 .metis.tparrows:hover:before{transform:scale(1.5)}
/*index-consulting*/
#rev_slider_264_1_wrapper .tp-loader.spinner2{ background-color: #FFFFFF !important; }
.hermes.tparrows{cursor:pointer;background:rgba(0,0,0,0.5);width:30px;height:110px;position:absolute;display:block;z-index:100}.hermes.tparrows:before{font-family:"revicons";font-size:15px;color:rgb(255,255,255);display:block;line-height:110px;text-align:center; transform:translatex(0px); -webkit-transform:translatex(0px); transition:all 0.3s; -webkit-transition:all 0.3s}.hermes.tparrows.tp-leftarrow:before{content:"\e824"}.hermes.tparrows.tp-rightarrow:before{content:"\e825"}.hermes.tparrows.tp-leftarrow:hover:before{transform:translatex(-20px); -webkit-transform:translatex(-20px); opacity:0}.hermes.tparrows.tp-rightarrow:hover:before{transform:translatex(20px); -webkit-transform:translatex(20px); opacity:0}.hermes .tp-arr-allwrapper{overflow:hidden; position:absolute;width:180px; height:140px; top:0px; left:0px; visibility:hidden; -webkit-transition:-webkit-transform 0.3s 0.3s; transition:transform 0.3s 0.3s; -webkit-perspective:1000px; perspective:1000px}.hermes.tp-rightarrow .tp-arr-allwrapper{right:0px;left:auto}.hermes.tparrows:hover .tp-arr-allwrapper{visibility:visible}.hermes .tp-arr-imgholder{width:180px;position:absolute; left:0px;top:0px;height:110px; transform:translatex(-180px); -webkit-transform:translatex(-180px); transition:all 0.3s; transition-delay:0.3s}.hermes.tp-rightarrow .tp-arr-imgholder{transform:translatex(180px); -webkit-transform:translatex(180px)}.hermes.tparrows:hover .tp-arr-imgholder{transform:translatex(0px); -webkit-transform:translatex(0px)}.hermes .tp-arr-titleholder{top:110px; width:180px; text-align:left; display:block; padding:0px 10px; line-height:30px; background:#000; background:rgba(0,0,0,0.75); color:rgb(255,255,255); font-weight:600; position:absolute; font-size:12px; white-space:nowrap; letter-spacing:1px; -webkit-transition:all 0.3s; transition:all 0.3s; -webkit-transform:rotatex(-90deg); transform:rotatex(-90deg); -webkit-transform-origin:50% 0; transform-origin:50% 0; box-sizing:border-box}.hermes.tparrows:hover .tp-arr-titleholder{-webkit-transition-delay:0.6s; transition-delay:0.6s; -webkit-transform:rotatex(0deg); transform:rotatex(0deg)}
/*index-interior-design*/
#rev_slider_261_1_wrapper .tp-loader.spinner2{ background-color: #FFFFFF !important; }
.hebe.tparrows{cursor:pointer; background:rgba(255,255,255,1); min-width:70px; min-height:70px; position:absolute; display:block; z-index:100}.hebe.tparrows:hover{}.hebe.tparrows:before{font-family:"revicons"; font-size:30px; color:rgba(0,0,0,0.5); display:block; line-height:70px; text-align:center; -webkit-transition:color 0.3s; -moz-transition:color 0.3s; transition:color 0.3s; z-index:2; position:relative; background:rgba(255,255,255,1); min-width:70px; min-height:70px}.hebe.tparrows.tp-leftarrow:before{content:"\e824"}.hebe.tparrows.tp-rightarrow:before{content:"\e825"}.hebe.tparrows:hover:before{color:#000}.tp-title-wrap{position:absolute; z-index:0; display:inline-block; background:#000; background:rgba(0,0,0,0.75); min-height:60px; line-height:60px; top:-10px; margin-left:0px; -webkit-transition:-webkit-transform 0.3s; transition:transform 0.3s; transform:scalex(0); -webkit-transform:scalex(0); transform-origin:0% 50%; -webkit-transform-origin:0% 50%}.hebe.tp-rightarrow .tp-title-wrap{right:0px; -webkit-transform-origin:100% 50%}.hebe.tparrows:hover .tp-title-wrap{transform:scalex(1); -webkit-transform:scalex(1)}.hebe .tp-arr-titleholder{position:relative; text-transform:uppercase; color:rgb(255,255,255); font-weight:600; font-size:12px; line-height:90px; white-space:nowrap; padding:0px 20px 0px 90px}.hebe.tp-rightarrow .tp-arr-titleholder{margin-left:0px; padding:0px 90px 0px 20px}.hebe.tparrows:hover .tp-arr-titleholder{transform:translatex(0px); -webkit-transform:translatex(0px); transition-delay:0.1s; opacity:1}.hebe .tp-arr-imgholder{width:90px; height:90px; position:absolute; left:100%; display:block; background-size:cover; background-position:center center; top:0px; right:-90px}.hebe.tp-rightarrow .tp-arr-imgholder{right:auto;left:-90px}
/*index-medical*/
#rev_slider_289_1 .metis.tparrows{background:rgba(255,255,255,1); padding:10px; transition:all 0.3s; -webkit-transition:all 0.3s; width:60px; height:60px; box-sizing:border-box}#rev_slider_289_1 .metis.tparrows:hover{background:rgba(255,255,255,0.75)}#rev_slider_289_1 .metis.tparrows:before{color:rgb(0,0,0); transition:all 0.3s; -webkit-transition:all 0.3s}#rev_slider_289_1 .metis.tparrows:hover:before{transform:scale(1.5)}
/*index shop 02*/
.hermes.tparrows{cursor:pointer;background:rgba(0,0,0,0.5);width:30px;height:110px;position:absolute;display:block;z-index:100}.hermes.tparrows:before{font-family:"revicons";font-size:15px;color:rgb(255,255,255);display:block;line-height:110px;text-align:center; transform:translatex(0px); -webkit-transform:translatex(0px); transition:all 0.3s; -webkit-transition:all 0.3s}.hermes.tparrows.tp-leftarrow:before{content:"\e824"}.hermes.tparrows.tp-rightarrow:before{content:"\e825"}.hermes.tparrows.tp-leftarrow:hover:before{transform:translatex(-20px); -webkit-transform:translatex(-20px); opacity:0}.hermes.tparrows.tp-rightarrow:hover:before{transform:translatex(20px); -webkit-transform:translatex(20px); opacity:0}.hermes .tp-arr-allwrapper{overflow:hidden; position:absolute;width:180px; height:140px; top:0px; left:0px; visibility:hidden; -webkit-transition:-webkit-transform 0.3s 0.3s; transition:transform 0.3s 0.3s; -webkit-perspective:1000px; perspective:1000px}.hermes.tp-rightarrow .tp-arr-allwrapper{right:0px;left:auto}.hermes.tparrows:hover .tp-arr-allwrapper{visibility:visible}.hermes .tp-arr-imgholder{width:180px;position:absolute; left:0px;top:0px;height:110px; transform:translatex(-180px); -webkit-transform:translatex(-180px); transition:all 0.3s; transition-delay:0.3s}.hermes.tp-rightarrow .tp-arr-imgholder{transform:translatex(180px); -webkit-transform:translatex(180px)}.hermes.tparrows:hover .tp-arr-imgholder{transform:translatex(0px); -webkit-transform:translatex(0px)}.hermes .tp-arr-titleholder{top:110px; width:180px; text-align:left; display:block; padding:0px 10px; line-height:30px; background:#000; background:rgba(0,0,0,0.75); color:rgb(255,255,255); font-weight:600; position:absolute; font-size:12px; white-space:nowrap; letter-spacing:1px; -webkit-transition:all 0.3s; transition:all 0.3s; -webkit-transform:rotatex(-90deg); transform:rotatex(-90deg); -webkit-transform-origin:50% 0; transform-origin:50% 0; box-sizing:border-box}.hermes.tparrows:hover .tp-arr-titleholder{-webkit-transition-delay:0.6s; transition-delay:0.6s; -webkit-transform:rotatex(0deg); transform:rotatex(0deg)}
/*index gym*/
#rev_slider_260_1 .zeus.tparrows{cursor:pointer; min-width:70px; min-height:70px; position:absolute; display:block; z-index:100; border-radius:50%; overflow:hidden; background:rgba(0,0,0,0.1)}#rev_slider_260_1 .zeus.tparrows:before{font-family:"revicons"; font-size:20px; color:rgb(255,255,255); display:block; line-height:70px; text-align:center; z-index:2; position:relative}#rev_slider_260_1 .zeus.tparrows.tp-leftarrow:before{content:"\e824"}#rev_slider_260_1 .zeus.tparrows.tp-rightarrow:before{content:"\e825"}#rev_slider_260_1 .zeus .tp-title-wrap{background:rgba(0,0,0,0.5); width:100%; height:100%; top:0px; left:0px; position:absolute; opacity:0; transform:scale(0); -webkit-transform:scale(0); transition:all 0.3s; -webkit-transition:all 0.3s; -moz-transition:all 0.3s; border-radius:50%}#rev_slider_260_1 .zeus .tp-arr-imgholder{width:100%; height:100%; position:absolute; top:0px; left:0px; background-position:center center; background-size:cover; border-radius:50%; transform:translatex(-100%); -webkit-transform:translatex(-100%); transition:all 0.3s; -webkit-transition:all 0.3s; -moz-transition:all 0.3s}#rev_slider_260_1 .zeus.tp-rightarrow .tp-arr-imgholder{transform:translatex(100%); -webkit-transform:translatex(100%)}#rev_slider_260_1 .zeus.tparrows:hover .tp-arr-imgholder{transform:translatex(0); -webkit-transform:translatex(0); opacity:1}#rev_slider_260_1 .zeus.tparrows:hover .tp-title-wrap{transform:scale(1); -webkit-transform:scale(1); opacity:1}
/*mobile app*/
.hesperiden.tparrows{cursor:pointer;background:rgba(0,0,0,0.5);width:40px;height:40px;position:absolute;display:block;z-index:100; border-radius:50%}.hesperiden.tparrows:hover{background:rgba(0,0,0,1)}.hesperiden.tparrows:before{font-family:"revicons";font-size:20px;color:rgb(255,255,255);display:block;line-height:40px;text-align:center}.hesperiden.tparrows.tp-leftarrow:before{content:"\e82c"; margin-left:-3px}.hesperiden.tparrows.tp-rightarrow:before{content:"\e82d"; margin-right:-3px}
/*construction*/
#rev_slider_263_1_wrapper .tp-loader.spinner2{ background-color: #FFFFFF !important; }
/*spa*/
#rev_slider_292_1_wrapper .tp-loader.spinner4{ background-color: #e9457a !important; }
/*************************************
slider-parallax one page
**************************************/
.slider-parallax { height: 86vh; position: relative; }
.slider-content-middle { position: absolute; display: inline-block; width: 100%; top: 50%; left: 0; -webkit-transform: translate(0,-50%); -moz-transform: translate(0,-50%);
-ms-transform: translate(0,-50%);-o-transform: translate(0,-50%); transform: translate(0,-50%); }
/*scroll-down*/
.scroll-down { text-align: center; width: 34px; height: 58px; display: inline-block; border-radius: 20px; border:2px solid #fff; position: absolute; left: 50%; bottom: 60px;
margin-left: -17px; line-height: 50px; }
.scroll-down i { height: 10px; width: 4px; background: #fff; display: inline-block; border-radius: 3px; -webkit-animation-name:fadebounce; -moz-animation-name:fadebounce; -ms-animation-name:fadebounce; -o-animation-name:fadebounce; animation-name:fadebounce; -webkit-animation-duration:3s; -moz-animation-duration:3s; -ms-animation-duration:3s; -o-animation-duration:3s;
animation-duration:3s; -webkit-animation-iteration-count:infinite; -moz-animation-iteration-count:infinite; -ms-animation-iteration-count:infinite; -o-animation-iteration-count:infinite;
animation-iteration-count:infinite; }
@-moz-keyframes fadebounce {
0% { -moz-transform:translateY(0); transform:translateY(0); opacity:1; }
50% { -moz-transform:translateY(25px); transform:translateY(25px); opacity:1; }
100% { -moz-transform:translateY(0); transform:translateY(0); opacity:1; }
}
@-webkit-keyframes fadebounce {
0% { -webkit-transform:translateY(0); transform:translateY(0); opacity:1; }
50% { -webkit-transform:translateY(25px); transform:translateY(25px); opacity:1; }
100% { -webkit-transform:translateY(0); transform:translateY(0); opacity:1; }
}
@-o-keyframes fadebounce {
0% { -o-transform:translateY(0); transform:translateY(0); opacity:1; }
50% {-o-transform:translateY(25px);transform:translateY(25px);opacity:1; }
100% {-o-transform:translateY(0);transform:translateY(0);opacity:1; }
}
@-ms-keyframes fadebounce {
0% { -ms-transform:translateY(0); transform:translateY(0); opacity:1; }
50% { -ms-transform:translateY(25px); transform:translateY(25px); opacity:1; }
100% {-ms-transform:translateY(0); transform:translateY(0); opacity:1; }
}
@keyframes fadebounce {
0% { transform:translateY(0); opacity:1; }
50% {transform:translateY(25px);opacity:1; }
100% {transform:translateY(0);opacity:1; }
}
/*personal-typer-banner*/
.personal-typer-banner span.sub-text { font-size: 22px; line-height: 22px; margin-bottom: 16px; display: block; }
.personal-typer-banner b { border-bottom: 2px solid #84ba3f; }
.personal-typer-banner h1 { font-size: 100px; line-height: 100px; font-weight: 600; color: #84ba3f; }
.personal-typer-banner h1 span { color: #ffffff; font-size: 50px; display: inline-block; transform: rotate(-90deg); line-height: 50px; position: relative; top: -11px; left: -20px; }
.personal-typer-banner h2 { border-left: 3px solid #84ba3f; padding-left: 10px; margin-top: 20px; }
/*typer-banner*/
.typer-banner h1 { font-size: 100px; line-height: 100px; font-weight: 600; }
.typer-banner p { font-size: 22px; line-height: 22px; }
.slider-content .typer { color: #84ba3f !important; }
/*popup-video-banner*/
.popup-video-banner h1 { font-size:60px; line-height:80px; font-weight: 400; }
.popup-video-banner a span{ margin-left: 6px; width: 50px; height: 50px; line-height: 50px; display: inline-block; text-align: center; background: #ffffff; color: #84ba3f; border-radius: 50%; transition: all 0.5s ease-in-out; -webkit-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; -ms-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; }
.popup-video-banner a:hover span { background: #84ba3f; color: #ffffff; }
.popup-video-banner a strong { padding-left:10px; display: inline-block; }
/*video-background-banner*/
#video-background.bg-overlay-black-50:before { z-index: 0; }
.video-background-banner h1 { font-size: 80px; line-height: 80px; font-weight: 600; text-transform: uppercase; }
.video-background-banner .slider-content { border:20px solid #84ba3f; width: 50%; margin: 0 auto; padding: 60px 30px; }
.video-background-banner .slider-content span { font-size: 22px; line-height: 22px; color: #ffffff; display: block; margin-bottom: 20px; }
.video-background-banner .slider-content p { font-size: 18px; line-height: 22px; color: #ffffff; margin-top: 20px; }
/* portfolio-banner*/
.portfolio-banner h1 { font-size: 80px; line-height: 80px; font-weight: 600; }
.portfolio-banner .slider-content { background: #ffffff; width: 50%; margin: 0 auto; padding: 60px 30px; box-shadow: 0 0 80px 0 rgba(0, 0, 0, 0.02); }
.portfolio-banner .slider-content span { text-transform: uppercase; letter-spacing: 10px; font-size: 18px; line-height: 18px; display: block; margin-bottom: 20px; font-weight: 600; }
.portfolio-banner .slider-content span i { line-height: 20px; }
.portfolio-banner .slider-content h1 { font-size: 70px; margin-bottom: 0; }
/*************************************
Background
**************************************/
/*images background*/
.white-bg { background: #fff; }
.gray-bg { background: #f7f7f7; }
.dark-gray-bg { background: #666666; }
.theme-bg { background: #84ba3f; }
.black-bg { background: #323232; }
.dark-theme-bg { background: #050801; }
.bg-overlay-black-10:before { background: rgba(0, 0, 0, 0.1); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; }
.bg-overlay-black-20:before { background: rgba(0, 0, 0, 0.2); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; }
.bg-overlay-black-30:before { background: rgba(0, 0, 0, 0.3); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; }
.bg-overlay-black-40:before { background: rgba(0, 0, 0, 0.4); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; }
.bg-overlay-black-50:before { background: rgba(0, 0, 0, 0.5); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; }
.bg-overlay-black-60:before { background: rgba(0, 0, 0, 0.6); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; }
.bg-overlay-black-70:before { background: rgba(0, 0, 0, 0.7); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; }
.bg-overlay-black-80:before { background: rgba(0, 0, 0, 0.8); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; }
.bg-overlay-black-90:before { background: rgba(0, 0, 0, 0.9); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; }
.bg-overlay-white-10:before { background: rgba(255, 255, 255, 0.1); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; }
.bg-overlay-white-20:before { background: rgba(255, 255, 255, 0.2); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; }
.bg-overlay-white-30:before { background: rgba(255, 255, 255, 0.3); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; }
.bg-overlay-white-40:before { background: rgba(255, 255, 255, 0.4); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; }
.bg-overlay-white-50:before { background: rgba(255, 255, 255, 0.5); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; }
.bg-overlay-white-60:before { background: rgba(255, 255, 255, 0.6); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; }
.bg-overlay-white-70:before { background: rgba(255, 255, 255, 0.7); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; }
.bg-overlay-white-80:before { background: rgba(255, 255, 255, 0.8); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; }
.bg-overlay-white-90:before { background: rgba(255, 255, 255, 0.9); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; }
.bg-overlay-theme-20:before { background: rgba(132,186,63, 0.2); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; }
.bg-overlay-theme-50:before { background: rgba(132,186,63, 0.5); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; }
.bg-overlay-theme-70:before { background: rgba(132,186,63, 0.7); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; }
.bg-overlay-theme-90:before { background: rgba(132,186,63, 0.9); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; }
.bg-overlay-black-10, .bg-overlay-black-20, .bg-overlay-black-30, .bg-overlay-black-40, .bg-overlay-black-50, .bg-overlay-black-60, .bg-overlay-black-70, .bg-overlay-black-80, .bg-overlay-black-90, .bg-overlay-white-10, .bg-overlay-white-20, .bg-overlay-white-30, .bg-overlay-white-40, .bg-overlay-white-50, .bg-overlay-white-60, .bg-overlay-white-70, .bg-overlay-white-80, .bg-overlay-white-90, .bg-overlay-theme-20, .bg-overlay-theme-50, .bg-overlay-theme-70, .bg-overlay-theme-90 { position: relative; }
/*************************************
home page section
**************************************/
.our-service-home { padding-bottom: 230px; }
.custom-content { margin-top: -220px; background: #84ba3f; position: relative; z-index: 9; padding: 50px;}
/*************************************
decolines
**************************************/
.decolines { pointer-events: none; position: absolute; width: 100%; height: 100%; top: 0;left: 0; pointer-events: none; }
.decolines--fixed { position: fixed; width: 100vw;height: 100vh; }
.decoline { position: absolute; }
/*************************************
feature step
**************************************/
.feature-step h1 { font-size: 60px; }
.feature-step h3 { font-weight: 300; margin: 30px 0px 20px; }
.feature-step a { font-size: 14px; color: #84ba3f; }
.feature-step a:hover { color: #323232; }
.feature-step-2-box { padding: 70px 30px; z-index: 99; position: relative; }
.feature-step-2.bg-01 { background: url(../images/blog/05.jpg); background-repeat: no-repeat; background-size: cover; }
.feature-step-2.bg-02 { background: url(../images/blog/06.jpg); background-repeat: no-repeat; background-size: cover; }
.feature-step-2.bg-03 { background: url(../images/blog/09.jpg); background-repeat: no-repeat; background-size: cover; }
.feature-step-2.bg-overlay-black-50:before { z-index: 0; }
.feature-step-2 .feature-step-2-title-left h1 { font-size: 75px; line-height: 60px; color: #ffffff; }
.feature-step-2 h3 { margin-bottom: 0; }
.feature-step-2 h2{font-weight: 200; position: relative; padding-bottom: 10px; font-size: 28px; }
.feature-step-2 img {display: block; width: 100%;}
.feature-step-2 .button { margin-top: 20px; }
.feature-step-2 .feature-step-2-title-left {opacity: 0.5; display: table-cell; padding-right: 26px; }
.feature-step-2-title-2-right { display: table-cell; vertical-align: top; }
.feature-step-2.black-bg .feature-step-2-box, .feature-step-2.theme-bg .feature-step-2-box{position: inherit; top: inherit; transform: inherit; display: inline-block;}
.service-blog { padding-top: 50px; padding-right: 25px; margin-bottom: 100px; }
.service-blog p { position: relative; z-index: 9; margin-top: 20px; margin-bottom: 20px; }
.service-blog b {position: absolute; z-index: 0; top: -35px; font-family: 'Poppins', sans-serif; right: 0; font-size:300px; color: #dde1eb; line-height: normal; opacity: 0.3;}
.service-blog ul { border-right: 6px solid #84ba3f; padding-right: 20px; }
.service-blog li { color: #626262; font-size: 16px; line-height: 22px; padding: 2px 0 7px; }
.service-blog.left b { left: 0; right: inherit;}
.service-blog.left ul{ border-left:6px solid #84ba3f; border-right:0 none;padding-left:20px;padding-right:0; }
/*split-section*/
.split-section { position: relative; z-index: 10; }
.split-section .img-holder { position: absolute; top: 0; width: 100%; height: 100%; }
.split-section .img-side.img-right { right: 0; }
.split-section .img-side.img-left { left: 0; }
.split-section .img-side { right: 0; padding: 0; position: absolute!important; top: 0px; height: 100%; overflow: hidden; z-index: 100; }
.our-awesome-core .img-side { top: 20px; }
/*************************************
about us
**************************************/
.who-we-are-left .owl-carousel .owl-dots { bottom: 26px; position: absolute; }
.who-we-are-left .owl-carousel.owl-theme .owl-dots .owl-dot span { width: 13px; height: 13px; border-radius: 50%; }
/*************************************
resume
**************************************/
.resume-page .container-fluid { padding: 0 70px; }
.resume-block .resume-icon { float: left; margin-right: 30px; }
.resume-block .resume-icon span { font-size: 30px; line-height: 50px; color: #84ba3f; }
.resume-block .resume-name { display: table-cell; }
.resume-block .resume-name span { color: #9ea8b6; font-size: 16px; }
.resume-contact .g-map { padding-top: 120%; }
.resume-contact .contact-form-main { padding: 80px 80px; }
.resume-contact .footer-widget-social a i { color: #ffffff; background: rgba(43, 43, 43, 0.12); width: 45px; height: 45px; line-height: 45px; }
.resume-contact .footer-widget-social a i:hover { background: rgba(43, 43, 43, 0.19); }
/*************************************
portfolio
*************************************/
.isotope-filters { display: table; margin:0 auto 50px; text-align: center; }
.isotope-filters.text-left { display: block; margin: 30px 0; text-align: left; }
.isotope-filters button { margin: 4px; cursor: pointer; padding: 6.5px 25px; font-size: 15px; border-radius: 3px; background: transparent; color: #363636; font-weight: 500; border: 1px solid #ccc;text-transform: capitalize; transition:all 0.3s ease-in-out; -webkit-transition:all 0.3s ease-in-out; -o-transition:all 0.3s ease-in-out; -ms-transition:all 0.3s ease-in-out; -webkit-transition:all 0.3s ease-in-out; }
.isotope-filters button:focus { outline: none; outline-style: none; outline-offset:0; }
.isotope-filters button.active, .isotope-filters button:hover { background: #84ba3f; color: #fff; border-color: #84ba3f; }
.isotope-filters button+button { margin-left: 10px; }
.isotope, .masonry { margin: 0 -15px 0 0; }
.isotope .grid-item img { width: 100%; }
.isotope.columns-1 .grid-item { width: 100%; padding: 0 15px 15px 0; }
.isotope.columns-2 .grid-item { width: 50%; padding: 0 15px 15px 0; }
.isotope.columns-3 .grid-item { width: 33.33333333%; padding: 0 15px 15px 0; }
.isotope.columns-4 .grid-item { width: 25%; padding: 0 15px 15px 0; }
.isotope.columns-5 .grid-item { width: 20%; padding: 0 15px 15px 0; }
.isotope.no-padding .grid-item { padding: 0 !important; }
.masonry.no-padding .masonry-item { padding: 0 !important; }
.masonry .masonry-item img { width: 100%; }
.masonry.columns-2 .masonry-item { width: 50%; padding: 0 15px 15px 0; }
.masonry.columns-3 .masonry-item { width: 33.33333333%; padding: 0 15px 15px 0; }
.masonry.columns-4 .masonry-item { width: 25%; padding: 0 15px 15px 0; }
.masonry.columns-5 .masonry-item { width: 20%; padding: 0 15px 15px 0; }
.isotope.columns-4 .portfolio-item .portfolio-overlay h4 { font-size: 16px; }
.isotope.columns-4 .portfolio-item .portfolio-overlay h6 { display: none; }
.isotope.columns-5 .portfolio-item .portfolio-overlay h4 { font-size: 16px; }
.isotope.columns-5 .portfolio-item .portfolio-overlay h6 { display: none; }
.masonry.columns-4 .portfolio-item .portfolio-overlay h4 { font-size: 16px; }
.masonry.columns-4 .portfolio-item .portfolio-overlay h6 { display: none; }
.masonry.columns-5 .portfolio-item .portfolio-overlay h4 { font-size: 16px; }
.masonry.columns-5 .portfolio-item .portfolio-overlay h6 { display: none; }
/*filters-vertical*/
.filters-vertical { margin: 0; }
.filters-vertical button{ display: block; margin: 0; border: none; padding: 6.5px 0px; text-align: left;}
.filters-vertical.isotope-filters button+button{ margin: 0; }
.isotope-filters.filters-vertical button.active, .isotope-filters.filters-vertical button:hover{ color: #84ba3f; background: transparent;}
.portfolio-item.rs-hero:before{content: none; }
.portfolio-item.rs-hero{ box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.07); }
/*************************************
portfolio item
**************************************/
.portfolio-title { padding: 100px 60px 30px; }
.portfolio-title span { display: block; }
.portfolio-item { width: 100%; position: relative; overflow: hidden; color: #fff; width: 100%; border: 0; position: relative; }
.portfolio-item img { width: 100%; -webkit-transition: transform 0.35s; -o-transition: transform 0.35s; -ms-transition: transform 0.35s; -moz-transition: transform 0.35s; transition: transform 0.35s; -webkit-backface-visibility: hidden; -o-backface-visibility: hidden; -ms-backface-visibility: hidden; -moz-backface-visibility: hidden; backface-visibility: hidden;}
.portfolio-item .portfolio-overlay { width: 100%; background: #84ba3f; padding: 10px 0px; position: absolute; bottom:-80px; display: block; margin-top: 0; float: left; z-index: 9; text-align: left; padding-left: 30px; left: 0; transition: all 0.5s ease-in-out; -webkit-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -ms-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; }
.portfolio-item .portfolio-overlay h4 { font-weight: 600; margin-bottom: 5px; }
.portfolio-item .portfolio-overlay a:hover { color: #323232; }
.portfolio-item .portfolio-overlay span { font-weight: 400; font-size: 14px; }
.portfolio-item .portfolio-overlay span a { color: #ffffff; }
.portfolio-item .portfolio-overlay span a:hover { color: #323232; }
.portfolio-item a.popup{position: absolute; right: 20px; top: -20px; color: #fff; z-index: 9; display: inline-block; width: 40px; height: 40px; background: #fff; color: #626262; border-radius: 50%; margin-right: 10px; padding-left: 0px; text-align: center; line-height: 40px; opacity: 0; transition: all 0.5s ease-in-out; -webkit-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -ms-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out;}
.portfolio-item a.popup:hover { background: #84ba3f; color: #ffffff; }
.portfolio-item:hover img { -webkit-transform:scale(1.20); -moz-transform:scale(1.20); -ms-transform:scale(1.20); -o-transform:scale(1.20); transform:scale(1.20); }
.portfolio-item:hover a.popup{ opacity: 1; top: 20px; }
.portfolio-item:before { content: ''; display: inline-block; width: 100%; height: 100%; position: absolute; top: 0; left: 0; z-index: 1; background-size: 115%;
-webkit-transition: all 0.7s cubic-bezier(.68,.11,.13,.98); -moz-transition: all 0.7s cubic-bezier(.68,.11,.13,.98); transition: all 0.7s cubic-bezier(.68,.11,.13,.98);
-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
.owl-carousel .owl-item .portfolio-item img { width: 100%; }
.portfolio-item.only-popup { width: 100%; text-align: center; }
.portfolio-item.only-popup a.popup { display: inline-block; left: 50%; margin-left: -20px; position: absolute; text-align: center; top: 50%; transform: translateY(-50%); -webkit-transform: translateY(-50%); -o-transform: translateY(-50%); -ms-transform: translateY(-50%); -moz-transform: translateY(-50%); }
.portfolio-item:hover .portfolio-overlay { bottom: 0; }
/* no-title */
.no-title .portfolio-item .portfolio-overlay { position: inherit; bottom: inherit; background: #f6f7f8; }
.no-title .portfolio-item .portfolio-overlay a, .no-title .portfolio-item .portfolio-overlay span { color: #323232; }
.no-title .portfolio-item .portfolio-overlay a:hover { color: #84ba3f; }
/*portfolio pupup*/
.mfp-bottom-bar { display: none; }
.portfolio-home .isotope { margin-bottom: 0; }
.corporate-02-portfolio .portfolio-item .portfolio-overlay a:hover { color: rgba(255,255,255,.7); }
.corporate-02-portfolio .portfolio-item .portfolio-overlay span a:hover { color: rgba(255,255,255,.7); }
/*************************************
portfolio-item-2
**************************************/
.portfolio-item-2 { width: 100%; overflow: hidden; position: relative; }
.portfolio-item-2:before { background: transparent; }
.portfolio-item-2 .portfolio-hover { padding: 20px; position: absolute; z-index: 99; bottom: 0px; left: 0; right: 0; bottom: 0; height: 100%; width: 100%; opacity: 0; transition: all 0.5s ease-in-out; -webkit-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -ms-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; }
.portfolio-item-2 .portfolio-hover .hover-name { position: absolute; bottom: -10px; transition: all 0.5s ease-in-out; -webkit-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -ms-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; }
.portfolio-item-2 .portfolio-hover .hover-name span { font-size: 14px; color: #fff; display: block; }
.portfolio-item-2 .portfolio-hover .hover-name a { font-size: 22px; text-transform: uppercase; color: #fff; display: block; margin-top: 5px; }
.portfolio-item-2 .portfolio-hover .hover-name a:hover { color: #84ba3f; }
.portfolio-item-2 .portfolio-hover .hover-icon { position: absolute; bottom: -10px; right: 30px; transition: all 0.8s ease-in-out; -webkit-transition: all 0.8s ease-in-out; -moz-transition: all 0.8s ease-in-out; -ms-transition: all 0.8s ease-in-out; -o-transition: all 0.8s ease-in-out; }
.portfolio-item-2 .portfolio-hover .hover-icon a { color: #fff; }
.portfolio-item-2 .portfolio-hover .hover-icon a:hover { color: #84ba3f; }
.portfolio-item-2:hover .portfolio-hover { opacity: 1; background: rgba(0, 0, 0, 0.9); }
.portfolio-item-2 img { opacity: 1; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; -o-transition: all 1s ease; -ms-transition: all 1s ease; transition: all 1s ease; }
.portfolio-item-2:hover img { opacity: 0.1; -webkit-transform:scale(1.10); -moz-transform:scale(1.10); -ms-transform:scale(1.10); -o-transform:scale(1.10); transform:scale(1.10); }
.portfolio-item-2:hover .portfolio-hover .hover-name { bottom: 30px; }
.portfolio-item-2:hover .portfolio-hover .hover-icon { bottom: 40px; }
.no-title .portfolio-item-2 { overflow: visible; }
.no-title .portfolio-item-2 .portfolio-hover { position: inherit; border: inherit; opacity: 1; background: #f6f7f8; clear: both; }
.no-title .portfolio-item-2:hover .portfolio-hover { bottom: inherit; background: inherit; background: #f6f7f8; }
.no-title .portfolio-item-2 .portfolio-hover .hover-name { bottom: inherit; position: inherit; display: inline-block; clear: both; }
.no-title .portfolio-item-2 .portfolio-hover .hover-icon { bottom: inherit; position: inherit; display: inline-block; float: right; padding-top: 20px; text-align: right;}
.no-title .portfolio-item-2:hover .portfolio-hover .hover-name { bottom: inherit; }
.no-title .portfolio-item-2:hover .portfolio-hover .hover-icon { bottom: inherit; }
.no-title .portfolio-item-2:hover img { opacity: 1; -webkit-transform:inherit; -moz-transform:inherit; -ms-transform:inherit; -o-transform:inherit; transform:inherit; }
.no-title .portfolio-item-2 .portfolio-hover .hover-icon a, .no-title .portfolio-item-2 .portfolio-hover .hover-name span, .no-title .portfolio-item-2 .portfolio-hover .hover-name a { color: #323232; }
.no-title .portfolio-item-2 .portfolio-hover .hover-icon a:hover, .no-title .portfolio-item-2 .portfolio-hover .hover-name a:hover { color: #84ba3f; }
/*************************************
Portfolio single page
**************************************/
/*tags*/
.tags h5 { display: inline-block; padding-right: 20px; }
.tags ul { display: inline-block; }
.tags li { display: inline-block; }
.tags li a { background: #f6f7f8; color: #323232; border-radius: 3px; padding: 8px 16px; line-height: 40px; font-size: 14px; margin-right: 2px; }
.tags li a:hover { box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1); background: #ffffff; }
/*share*/
.share .social ul { display: inline-block; }
.share .social ul li { display: inline-block; padding: 0px 6px; }
.share .social ul li a:hover { color: #353535; }
/*port-meta*/
.port-meta ul { margin-bottom: 30px; }
.port-meta li { margin-bottom: 20px; font-size: 16px; }
.port-meta li b { color: #84ba3f; width: 200px; font-weight: 400; width: 100px; display: inline-block; }
.port-meta li span { font-weight: normal; }
.port-info p { margin-bottom: 0px; }
/*port-navigation*/
.port-navigation { padding: 20px 0; border-bottom:1px dashed #d0d0d0; border-top: 1px dashed #d0d0d0;}
.port-navigation a { color: #626262; }
.port-arrow { height: 74px; width: 40px; text-align: center; background: #f7f7f7; display: inline-block;}
.port-arrow i { text-align: center; font-size: 25px; line-height: 75px;}
.port-photo { width: 124px; height: 77px; display: inline-block; }
.port-photo img { width: 100%; }
/*port-post*/
.port-post { background: #f7f7f7; padding: 15px; }
.port-post-photo { width: 170px; display: inline-block; float: left; margin-right: 20px; }
.port-post-photo img { width: 100%; }
/*port-post-info*/
.port-post-info { padding-left: 190px;}
.port-post-info h3 { display: inline-block; font-size: 24px; }
.port-post-info span { color: #626262; }
.port-post-social strong { font-size: 14px; }
.port-post-social a { color: #626262; margin-left: 8px; font-size: 14px; }
.port-post-social a:hover { color: #84ba3f; }
.port-post-info p { margin-top: 10px; }
.port-singal .owl-carousel .owl-item img { width: 100%; }
/*************************************
Our Blog
**************************************/
/*Blog 1*/
.blog-box { padding: 30px; border:1px solid #ddd; position: relative; z-index: 1; }
.blog-info { position: relative; z-index: 9; }
.blog-info span { color: #626262; font-size: 14px; margin-right: 6px; }
.blog-info h4 { font-weight: 600; font-size: 18px;}
.blog-box .post-format-icon{text-align: right; position: relative; z-index: 9}
.blog-box .post-format-icon i { padding-right: 0; font-size: 35px; color: #e1e1e1; }
.blog-info p { padding: 0px 0 10px; font-size: 14px; }
.blog-box .post-category a { display: inline-block; padding: 5px 15px; font-size: 12px; font-weight: 500; border-radius: 3px; color:#fff; background-color: #84ba3f; -webkit-transition: all 0.3s ease; -moz-transition: ll 0.3s ease; transition: all 0.3s ease; margin-bottom: 20px; }
a.blog-btn { text-align: center; font-size: 14px; color: #84ba3f; display: block; padding-bottom: 12px; position: relative; z-index: 1; }
a.blog-btn i { margin-left: 10px; -webkit-transition: all 0.3s ease-out 0s; -moz-transition: all 0.3s ease-out 0s; -ms-transition: all 0.3s ease-out 0s; -o-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; }
.blog-box .border { position: absolute; background: #84ba3f; height: 0px; bottom: 0; left: 0; z-index: 0; width: 100%; -webkit-transition: all 0.3s ease-out 0s; -moz-transition: all 0.3s ease-out 0s; -ms-transition: all 0.3s ease-out 0s; -o-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; }
.blog-box .blog-box-img { bottom: 0; left: 0; opacity: 0; position: absolute; right: 0; top: 0; z-index: 0; -webkit-transition: all 0.3s ease-out 0s; -moz-transition: all 0.3s ease-out 0s; -ms-transition: all 0.3s ease-out 0s; -o-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; background-size: cover; background-position: center center; }
.blog-box:hover .blog-box-img, .blog-box.active .blog-box-img { opacity: 1; -webkit-transition: all 0.3s ease-out 0s; -moz-transition: all 0.3s ease-out 0s; -ms-transition: all 0.3s ease-out 0s; -o-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; }
.blog-1:hover h4, .blog-1:hover i, .blog-1:hover span, .blog-1:hover p, .blog-1:hover a.blog-btn, .blog-1.active h4, .blog-1.active i, .blog-1.active span, .blog-1.active p, .blog-1.active a.blog-btn,.blog-1:hover .post-category a,.blog-1:hover .post-format-icon i,.blog-1.active .post-category a,.blog-1.active .post-format-icon i { color: #fff; }
.blog-box:hover .blog-box-img:before, .blog-box.active .blog-box-img:before { background: rgba(0, 0, 0, 0.6); color: #fff; content: ""; display: inline-block; height: 100%;
left: 0; position: absolute; top: 0; width: 100%; z-index: 1; }
.blog-box.blog-2 {padding: 0; position: relative; border:none; transition: all 0.5s ease 0s; height: 100%; }
.blog-box.blog-2 .blog-info{background: #ffffff; padding: 30px;}
.blog-box.blog-2.gray-bg .blog-info {background: #f7f7f7; }
.blog-box.blog-2 .blog-box-img{opacity: 1;}
.blog-box.blog-2 .post-format-icon{position: absolute; right: 30px; top: 30px;}
.blog-box.blog-2 .button.icon-color{text-transform: capitalize; float: right;}
.blog-box.blog-2:hover { box-shadow: 0 0 30px rgba(0, 0, 0, 0.07);}
.blog-box.blog-2.gray-bg:hover { box-shadow: none;}
.blog-box.blog-2.transparent .blog-info { background: transparent; padding: 30px 0; }
.blog-box.blog-2.transparent .blog-info span { color: #ffffff; }
/***************************
blog
***************************/
.blog-entry { box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.06); -webkit-transition: all 0.5s ease-out 0s; -moz-transition: all 0.5s ease-out 0s; -ms-transition: all 0.5s ease-out 0s; -o-transition: all 0.5s ease-out 0s; transition: all 0.5s ease-out 0s; }
.blog-entry:hover { box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1); }
.blog-entry .entry-image img { width: 100%; }
.blog-entry .blog-detail { background: #ffffff; padding: 30px; border-top: 0px; }
.blog-entry .blog-detail .entry-title a { font-size: 22px; font-weight: 500; line-height: 24px; color: #353535; line-height: 28px; }
.blog-entry .blog-detail .entry-title a:hover { color: #84ba3f; }
.blog-entry .entry-meta ul li { display: inline-block; margin-right: 12px; }
.blog-entry .entry-meta ul li i { color: #84ba3f; padding-right: 6px; }
.blog-entry .entry-meta ul li a { color: #353535; line-height: 0px; padding-right: 5px; }
.blog-entry .entry-meta ul li a i { padding-right: 6px; color: #84ba3f; }
.blog-entry .entry-meta ul li a:hover { color: #84ba3f; }
.blog-entry .social strong { display: inline-block; margin-right: 10px; }
.blog-entry .entry-button { display: inline-block;}
.blog-entry .social ul { display: inline-block; }
.blog-entry .social ul li { display: inline-block; padding: 0px 6px; }
.blog-entry .social ul li a:hover { color: #353535; }
.blog-entry .entry-share { margin-top: 20px; display: block; }
/*blog-entry blockquote*/
.blog-entry.blockquote { background: #84ba3f; border: 0px; padding: 36px 30px; }
.blog-entry.blockquote blockquote { background: #84ba3f; border-left: 0px; color: #ffffff; padding: 0px; position: relative; margin-top: 0 !important; padding-top: 60px; }
.blog-entry.blockquote blockquote:before { content: "\201C"; font-family: Georgia, serif; font-size: 100px; font-weight: bold; color: #ffffff; position: absolute; left: 0px; top: -20px; }
.blog-entry.blockquote .blog-detail { border: 0px; background: #84ba3f; padding: 0px; }
.blog-entry.blockquote .blog-detail .entry-title a { color: #ffffff; }
.blog-entry.blockquote .blog-detail .entry-title a:hover { color: #323232; }
.blog-entry.blockquote .social ul li a { color: #ffffff; }
.blog-entry.blockquote .social ul li a:hover { color: #323232; }
.blog-entry.blockquote .entry-meta ul li a { color: #ffffff; }
.blog-entry.blockquote .entry-meta ul li i { color: #ffffff; }
.blog-entry.blockquote .entry-meta ul li a i { color: #ffffff !important; }
.blog-entry.blockquote .entry-meta ul li a:hover { color: #323232; }
.blog-entry.blockquote .button.arrow.white:hover { color: #323232; }
/*video vimeo and youtube*/
.js-video { height: 0; padding-top: 25px; padding-bottom: 54%; position: relative; overflow: hidden; }
.js-video.widescreen { padding-bottom: 34.34%; }
.js-video embed, .js-video iframe, .js-video object, .js-video video { top: 0; left: 0; width: 100%; height: 100%; position: absolute; border: none; }
.js-video.big { padding-top: 30px; }
.blog-entry .grid-post li { float: left; width: 50%; border-right: 4px solid #fff; border-bottom: 4px solid #fff; list-style: none; }
.blog-entry .grid-post li img { width: 100%; }
.blog-entry .grid-post li .portfolio-item { width: 100%; }
/*blog-entry-audio*/
.blog-entry .blog-entry-audio { padding: 136px 20px; background: url(../images/blog/04.jpg) no-repeat; background-position: center center; background-size: cover; }
/*blog pages*/
/*blog-grid-3-column*/
.blog-grid-3-column .blog-entry .blog-entry-audio { padding: 63px 20px; }
.blog-grid-2-sidebar .blog-entry .blog-entry-audio { padding: 96px 20px; }
/*************************************
our services
**************************************/
.service-image-holder { position: relative; height: 496px; }
.service-image-holder .section-title-2 { display: inline-block; left: 0; position: absolute; text-align: center; top: 50%; transform: translateY(-50%); -webkit-transform: translateY(-50%); -o-transform: translateY(-50%); -ms-transform: translateY(-50%); -moz-transform: translateY(-50%); width: 100%; }
.services-text-box { background:#fff; padding: 10% 15%;}
.services-text-box-black { background:#363636; padding: 80px 50px !important; }
.services-text-box-green { background:#84ba3f; padding: 80px 50px !important; }
/*************************************
creativity
**************************************/
.creativity h1 { line-height: 65px; text-transform: uppercase; font-size: 50px; font-weight: bold; }
.creativity p { font-size: 30px; }
.creativity .button { display: inline-block; float: none; }
.contact-map iframe { width: 100%; height: 100%; }
#formmessage {display: none;}
.contact-form .section-field { position: relative; width: 31.3%; margin-right: 3%; float: left; }
.contact-form .section-field:nth-child(3) { margin-right: 0px; }
.contact-form .section-field:nth-child(6) { margin-right: 0px; }
.contact-box.contact-box-top { margin-top: -1px; position: relative; }
.touch-in .contact-box { box-shadow: 0 0 30px rgba(0, 0, 0, 0.09); display: inline-block; margin-bottom: 0; padding: 60px 20px; width: 100%;}
.contact-box i { background: #84ba3f; width: 80px; height: 80px; text-align: center; line-height: 80px; border-radius: 5px; font-size: 34px; color: #ffffff; display: inline-block;}
.contact-form .form-control {position: relative; width: 100%; margin-bottom: 20px; }
.section-field.textarea{width: 100%;}
.g-recaptcha.section-field {width: 100%; margin-bottom: 20px; }
.contact-form textarea.form-control {width: 100%; }
.contact-box .contact-icon { display: table-cell; padding-right: 20px; }
.contact-box .contact-icon i { background: transparent; line-height: normal; font-size: 34px; height: auto; width: auto;}
.contact-box.theme-bg .contact-icon i{color: #ffffff !important;}
.contact-box .contact-info { display: table-cell; vertical-align: top; padding: 0; background: none;}
.contact-2 .addresss-info p, .contact-2 .addresss-info i, .contact-2 .addresss-info li{color: #ffffff;}
.contact-2 .contact-add{padding: 80px 0}
.contact-2 .contact-add i{font-size: 40px;}
.contact-3 .g-map { padding-top: 101%; }
.contact-2 .g-map { padding-top: 100%; }
.map-side { left: 0; overflow: hidden; padding: 0; position: absolute; top: 0; z-index: 9;}
.map-side.map-right {left: auto; right: 0;}
.contact-3 .contact-add{padding: 80px 15px; }
.contact-3 .contact-add i{font-size: 40px; color: #84ba3f;}
.contact-3 .contact-form .section-field {width: 100%;}
.contact-social ul li { display: inline-block; }
.contact-social ul li a { display: block; width: 30px; height: 30px; line-height: 30px; text-align: center; color: #323232; background: #eceff8; font-size: 14px; border-radius: 3px; margin-right: 5px; }
.contact-social ul li a:hover { background: #353535 !important; color: #fff;}
.contact-3 .theme-bg.contact-add i{color: #ffffff !important;}
.footer-contact .footer-nav ul li a { color: #353535; }
.footer-contact .footer-nav ul li a:hover { color: #2046f2; }
.footer-contact .contact-box .contact-icon i { background: transparent; color: #84ba3f; margin-bottom: 10px; }
.footer.footer-topbar hr { border-color: #d9d9d9; }
.footer.footer-topbar img#logo-footer { height: 34px; margin-bottom: 10px; }
.footer-contact .social ul { background: #f6f7f8; }
.footer-contact .social ul li a i { color: #353535; }
.footer-contact .social ul li a i:hover { color: #2046f2; }
.footer-contact .usefull-link ul li a { color: #353535; }
.footer-contact .usefull-link ul li a:hover { color: #2046f2; }
.footer-contact { box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1); margin-bottom: 80px; margin-top: -220px; padding: 60px 0; }
.footer-contact .contact-box { text-align: center; }