-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathstyle.css
3164 lines (2554 loc) · 280 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
/*
Theme Name: Divi
Theme URI: http://www.elegantthemes.com/gallery/divi/
Version: 2.1.2
Description: Smart. Flexible. Beautiful. Divi is the most powerful theme in our collection.
Author: Elegant Themes
Author URI: http://www.elegantthemes.com
*/
/*------------------------------------------------*/
/*-----------------[RESET]------------------------*/
/*------------------------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/ */
/* v1.0 | 20080212 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend { margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; }
body { line-height: 1; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after,q:before, q:after { content: ''; content: none; }
blockquote { margin: 20px 0 30px; border-left: 5px solid; padding-left: 20px; }
/* remember to define focus styles! */
:focus { outline: 0; }
/* remember to highlight inserts somehow! */
ins { text-decoration: none; }
del { text-decoration: line-through; }
/* tables still need 'cellspacing="0"' in the markup */
table { border-collapse: collapse; border-spacing: 0; }
article, aside, footer, header, hgroup, nav, section { display: block; }
/*------------------------------------------------*/
/*-----------------[BASIC STYLES]-----------------*/
/*------------------------------------------------*/
@font-face {
font-family: 'ETmodules';
src:url('fonts/ETmodules_v2.eot');
src:url('fonts/ETmodules_v2.eot?#iefix') format('embedded-opentype'),
url('fonts/ETmodules_v2.ttf') format('truetype'),
url('fonts/ETmodules_v2.woff') format('woff'),
url('fonts/ETmodules_v2.svg#ETmodules') format('svg');
font-weight: normal;
font-style: normal;
}
body { font-family: 'Open Sans', Arial, sans-serif; font-size: 14px; color: #666; background-color: #fff; line-height: 1.7em; font-weight: 500; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body.et_fixed_nav.et_boxed_layout #page-container { padding-top: 80px; }
body.page-template-page-template-blank-php #page-container { padding-top: 0 !important; }
body.et_cover_background { -moz-background-size: cover !important; -webkit-background-size: cover !important; background-size: cover !important; background-position: top center !important; background-repeat: no-repeat !important; background-attachment: fixed; }
a { text-decoration: none; color: #7EBEC5; }
a:hover { text-decoration: none; }
.clear { clear: both; }
.ui-tabs-hide { display: none; }
br.clear { margin: 0px; padding: 0px; }
h1, h2, h3, h4, h5, h6 { color: #333; padding-bottom: 10px; line-height: 1em; font-weight: 500; }
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { color: inherit; }
h1 { font-size: 30px; }
h2 { font-size: 26px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }
p { padding-bottom: 1em; line-height: 1.7em; }
p:last-of-type { padding-bottom: 0; }
strong { font-weight: bold; }
cite, em, i { font-style: italic; }
pre, code { font-family: Courier New, monospace; margin-bottom: 10px; }
ins { text-decoration: none; }
sup, sub { height: 0; line-height: 1; position: relative; vertical-align: baseline; }
sup { bottom: 0.8em; }
sub { top: 0.3em; }
dl { margin: 0 0 1.5em 0; }
dl dt { font-weight: bold; }
dd { margin-left: 1.5em;}
blockquote p { padding-bottom: 0px; }
input { -webkit-appearance: none; }
input[type=checkbox] { -webkit-appearance: checkbox; }
input[type=radio] { -webkit-appearance: radio; }
input[type=text],input.text, input.title, textarea, select { background-color:#fff; border:1px solid #bbb; padding: 2px; color: #4e4e4e; }
input[type=text]:focus, input.text:focus, input.title:focus, textarea:focus, select:focus { border-color:#2D3940; color: #3e3e3e; }
input[type=text], input.text, input.title, textarea, select { margin: 0; }
textarea { padding: 4px; }
img#about-image { float: left; margin: 3px 8px 8px 0px; }
.clearfix:after, .et_vertical_nav #page-container:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; }
* html .clearfix { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */
/*------------------------------------------------*/
/*---------------[MAIN LAYOUT INFO]---------------*/
/*------------------------------------------------*/
img { max-width: 100%; height: auto; }
#ie8 img { width: auto; }
embed, iframe, object, video { max-width: 100%; }
.et_pb_section_video_bg embed, .et_pb_section_video_bg iframe, .et_pb_section_video_bg object, .et_pb_section_video_bg video { max-width: none; }
.et_pb_section_video_bg .mejs-video { left:50%; position: absolute; }
.et_pb_pricing_table_button, .et_pb_promo_button, a.et_pb_more_button, .et_pb_newsletter_button, .comment-reply-link, .form-submit input, .et_pb_contact_submit, .et_pb_contact_reset, .single_add_to_cart_button .button { font-size: 20px; font-weight: 500; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; padding: 6px 20px; line-height: 1.7em; background: transparent; border: 2px solid; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; -moz-transition: all 0.2s; -webkit-transition: all 0.2s; transition: all 0.2s; position: relative;}
.et_pb_promo_button:hover, a.et_pb_more_button:hover, .et_pb_newsletter_button:hover { background: rgba( 255, 255, 255, 0.2 ); border: 2px solid transparent; padding: 6px 34px 6px 14px !important; }
.et_pb_pricing_table_button:hover, .et_pb_bg_layout_light .et_pb_promo_button:hover, .et_pb_bg_layout_light .et_pb_more_button:hover, .et_pb_bg_layout_light .et_pb_newsletter_button:hover, .comment-reply-link:hover, .form-submit input:hover, .et_pb_contact_submit:hover, .et_pb_contact_reset:hover { background: rgba( 0, 0, 0, 0.05 ); border: 2px solid transparent; padding: 6px 34px 6px 14px !important; }
.form-submit input:hover, .et_pb_contact_submit:hover, .et_pb_contact_reset:hover { padding: 6px 20px !important; }
.et_pb_pricing_table_button:after, .et_pb_promo_button:after, a.et_pb_more_button:after, .et_pb_newsletter_button:after, .comment-reply-link:after { font-size: 32px; line-height: 1em; content:"\35"; opacity: 0; position: absolute; margin-left: -20px; -moz-transition: all 0.2s; -webkit-transition: all 0.2s; transition: all 0.2s; top: 7px; right: 5px; }
.et_pb_pricing_table_button:hover:after, .et_pb_promo_button:hover:after, a.et_pb_more_button:hover:after, .et_pb_newsletter_button:hover:after, .comment-reply-link:hover:after { opacity: 1; margin-left: 0; }
.entry-content table { border: 1px solid #eee; margin: 0 0 15px 0; text-align: left; width: 100%; }
.entry-content tr th, .entry-content thead th { color: #555; font-weight: bold; padding: 9px 24px; }
.entry-content tr td { border-top: 1px solid #eee; padding: 6px 24px; }
#left-area ul, .entry-content ul, .comment-content ul { list-style-type: disc; padding: 0 0 23px 16px; line-height: 26px; }
#left-area ol, .entry-content ol, .comment-content ol { list-style-type: decimal; list-style-position: inside; padding: 0 0 23px 0; line-height: 26px; }
#left-area ul li ul, .entry-content ul li ol, .comment-content ul li ul, .comment-content ul li ol { padding: 2px 0px 2px 20px; }
#left-area ol li ul, .entry-content ol li ol, .comment-content ol li ul, .comment-content ol li ol { padding: 2px 0px 2px 35px; }
ol.commentlist, .comment .children { list-style: none !important; line-height: 1.7em !important; padding: 0 !important; }
.comment-content ul { padding: 0 0 23px 16px !important; line-height: 26px !important;}
.comment-content ol { line-height: 26px !important; !important; }
#left-area ul.products, .et_post_gallery { padding: 0 !important; line-height: 1.7 !important; list-style: none !important; }
.gallery-item a { display: block; }
.gallery-item a, .gallery-caption { width: 90%; }
.entry-content address, .comment-content address { line-height: 24px; margin-bottom: 12px; }
#reviews .commentlist { padding-bottom: 0 !important; }
.woocommerce-info a { color: #fff !important; }
input#coupon_code { padding: 14px !important; }
table.cart th, #main-content table.cart th, table.cart td, #main-content table.cart td, table.cart tr, #main-content table.cart tr, #content-area table tr, #content-area table td, #content-area table th { padding: .857em 0.587em; max-width: 100px; }
.cart_table_item .quantity { margin: 0 !important; width: 100px !important; }
.shop_table .actions .submit { float: right; }
.shop_table .actions .checkout-button { clear: both; }
.col2-set.addresses { margin-top: 20px; }
#main-content .cart-subtotal td { border-top: none; }
.woocommerce-checkout #main-content .cart-subtotal td { border-top: 1px solid #eee; }
table.cart td.actions .button.alt, #main-content table.cart td.actions .button.alt { margin: 19px 0 9px; }
table.cart td.actions .checkout-button { margin: 0 !important; }
table.shop_table { margin-bottom: 30px !important; }
.cart_totals h2, .shipping_calculator h2 { margin-bottom: 10px; }
.container { text-align: left; margin: 0 auto; width: 1080px; position: relative; }
body.admin-bar.et_fixed_nav #main-header, body.admin-bar.et_fixed_nav #top-header { top: 32px; }
body.et-wp-pre-3_8.admin-bar.et_fixed_nav #main-header, body.et-wp-pre-3_8.admin-bar.et_fixed_nav #top-header { top: 28px; }
body.et_fixed_nav.et_secondary_nav_enabled #main-header { top: 34px; }
body.admin-bar.et_fixed_nav.et_secondary_nav_enabled #main-header { top: 66px; }
p.demo_store { bottom: 0 !important; top: auto !important; z-index: 100000; }
.et_fixed_nav #page-container { padding-top: 80px; }
.et_fixed_nav.et_secondary_nav_enabled #page-container { padding-top: 114px; }
#top-header { font-size: 12px; line-height: 13px; z-index: 100000; }
#top-header .container { padding-top: 10px; }
.et_fixed_nav #top-header { top: 0; left: 0; right: 0; }
.et_duplicate_social_icons { display: none; }
#main-header { line-height: 23px; font-weight: 500; top: 0; background-color: #fff; width: 100%; padding: 18px 0 0 0; min-height: 43px; box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); -moz-transition: all 0.2s ease-in-out; -webkit-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; position: relative; z-index: 99999; }
.et_fixed_nav #main-header, .et_fixed_nav #top-header { position: fixed; }
.et-fixed-header { padding: 10px 0 0 0 !important; min-height: 30px !important; box-shadow: 0 0 7px rgba(0, 0, 0, 0.1) !important; -moz-box-shadow: 0 0 7px rgba(0, 0, 0, 0.1) !important; -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.1) !important; }
.et_header_style_centered #main-header .container { text-align: center; }
.et_header_style_centered #logo, .et_header_style_centered #et-top-navigation, .et_header_style_centered nav#top-menu-nav, .et_header_style_centered #top-menu { float: none; }
.et_header_style_centered #et_top_search { float: none; display: inline-block !important; }
.et_header_style_centered #et_search_icon:before { left: 3px; top: -13px;}
.et_header_style_centered .et-search-form { top: 20px; }
.et_header_style_centered .et-fixed-header .et-search-form { top: 21px; }
.et_header_style_centered nav#top-menu-nav { display: inline-block; }
.et_header_style_centered #top-menu > li > a { padding-bottom: 14px; }
.et_header_style_centered .nav li ul { top: 37px; }
.et_header_style_centered #top-menu li.mega-menu > ul { top: 114px; }
.et_header_style_centered .et-fixed-header #top-menu li.mega-menu > ul { top: 96px; }
.et_header_style_centered #logo { padding: 10px 0 8px; }
#main-header.et-fixed-header nav#top-menu-nav { padding-top: 4px;}
.et-fixed-header #top-menu > li > a { padding-bottom: 15px;}
#logo { float: left; -moz-transition: all 0.2s ease-in-out; -webkit-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; margin-bottom: 18px; }
.et_fixed_nav #logo { max-height: 43px; margin-bottom: 0; }
.et-fixed-header #logo { max-height: 30px; }
#et-info { float: left; padding-bottom: 10px; }
#et-secondary-menu { float: right; padding-bottom: 10px; }
.et_nav_text_color_light, .et_nav_text_color_light #et-secondary-nav a, .et_nav_text_color_light .et-social-icon a,.et_nav_text_color_light #et-info a { color: rgba( 255, 255, 255, 0.6 ); }
.et_nav_text_color_dark, .et_nav_text_color_dark #et-secondary-nav a, .et_nav_text_color_dark .et-social-icon a,.et_nav_text_color_dark #et-info a { color: rgba( 0, 0, 0, 0.5 ); }
.et-cart-info { color: inherit; }
#top-header .et-cart-info { margin-left: 15px; }
#et-top-navigation .et-cart-info { float: left; margin: 12px 0 0 22px; }
.et_vertical_nav #et-top-navigation .et-cart-info { margin-left: 0; }
.et_header_style_centered #et-top-navigation .et-cart-info { float: none; }
.et-fixed-header #et-top-navigation .et-cart-info { margin-top: 10px; }
#et-info-phone, #et-info-email, .et-cart-info span { position: relative; }
#et-info-phone:before { content: "\e090"; position: relative; top: 2px; margin-right: 2px; }
#et-info-phone { margin-right: 13px; }
#et-info-email:before { content: "\e076"; margin-right: 4px; }
#top-header .et-social-icons { float: none; display: inline-block; }
#et-secondary-menu .et-social-icons { margin-right: 20px; }
#top-header .et-social-icons li { margin-left: 12px; margin-top: -2px; }
#top-header .et-social-icon a { font-size: 14px; }
.et_nav_text_color_light .et-social-icon a:hover, .et_nav_text_color_light #et-secondary-nav a:hover, .et_nav_text_color_light .et-cart-info:hover { color: rgba(255, 255, 255, 1) !important; }
.et_nav_text_color_dark .et-social-icon a:hover, .et_nav_text_color_dark #et-secondary-nav a:hover, .et_nav_text_color_dark .et-cart-info:hover { color: rgba(0, 0, 0, 0.7) !important; }
#et-secondary-nav, #et-secondary-nav li { display: inline-block }
#et-secondary-nav li { margin-right: 15px; }
#et-secondary-nav > li:last-child { margin-right: 0; }
.et-cart-info span:before { content: "\e07a"; margin-right: 10px; }
#main-header nav#top-menu-nav { padding-top: 10px;}
nav#top-menu-nav, #top-menu { float: left; }
#top-menu li { display: inline-block; font-size: 14px; padding-right: 22px; }
#top-menu > li:last-child { padding-right: 0; }
#top-menu a { color: #666; text-decoration: none; display: block; position: relative; }
#top-menu a:hover { color: #333; }
#top-menu li.current-menu-item > a { font-weight: 500; }
#top-menu li > a { padding-bottom: 29px;}
.et_nav_text_color_light #top-menu > li > a { color: rgba( 255, 255, 255, 0.7 ); }
.et_nav_text_color_light #top-menu > li > a:hover { color: rgba( 255, 255, 255, 1 ); }
.et_nav_text_color_light #top-menu li.current-menu-ancestor > a, .et_nav_text_color_light #top-menu li.current-menu-item > a { color: #fff; }
#et_top_search { float: right; margin: 16px 0 0 22px; position: relative; display: block; width: 18px; }
.et_vertical_nav #et_top_search { margin-left: 0; }
.et-search-form { box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); top: 46px; right: 0; display: none; position: absolute; z-index: 1000; background: #fff; border-top: 3px solid #7EBEC5; padding: 20px;}
form.et-search-form.et-hidden { display: none !important; }
.et-fixed-header .et-search-form { top: 26px; }
.et-fixed-header #et_search_icon:before { margin-top: -8px; }
.et_header_style_centered .et-fixed-header #et_search_icon:before { margin-top: 0;}
.et-search-form input { width: 280px; padding: 10px 20px; background-color: #F8F8F8; border: none; color: #333;}
.et_nav_text_color_light .et-search-form input { background-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); }
.et-full-width-slide-featured-image { float: left; padding-right: 60px; }
.et-full-width-left-image .et-full-width-slide-description, .et-full-width-right-video .et-full-width-slide-description { float: left; width: 410px; }
.et-full-width-left-image .et-full-width-slide-description { margin-right: 100px; }
.et-full-width-right-video .et-full-width-slide-description { margin-left: 100px; padding-right: 60px; }
.et_pb_slide_video { float: left; width: 510px; padding-top: 200px; }
.et_pb_blurb_content { max-width: 550px; margin: 0 auto; position: relative; }
.et_pb_blurb_content p:last-of-type { padding-bottom: 0px;}
.et_pb_main_blurb_image { text-align: center; margin-bottom: 30px; }
.et_pb_blurb h4 { padding-bottom: 5px;}
.et_pb_blurb h4 a { text-decoration: none; }
.et_pb_blurb { margin-bottom: 30px;}
.et_pb_pricing {margin-bottom: 30px;}
.et_pb_pricing_table { float: left; width: 25%; border: 1px solid #a1a8aa; background-color: #fcfcfc; padding-bottom: 40px; text-align: center; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; margin-right: -1px; }
.et_pb_pricing_3 .et_pb_pricing_table { width: 33.3%; }
.et_pb_pricing_4 .et_pb_pricing_table { width: 25%; }
.et_pb_pricing_2 .et_pb_pricing_table { width: 50%; }
.et_pb_pricing_1 .et_pb_pricing_table { width: 100%; }
.et_pb_featured_table { background-color: #fff; margin-top: -30px; -moz-box-shadow: 0 0 12px rgba(0, 0, 0, 0.1); -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.1); box-shadow: 0 0 12px rgba(0, 0, 0, 0.1); position: relative; z-index: 100; }
.et_pb_pricing_heading { background-color: #a1a8aa; margin-bottom: 17px; padding: 11px 0 3px; }
.et_pb_featured_table .et_pb_pricing_heading { padding-bottom: 4px; }
.et_pb_pricing_heading h2 { color: #fff; font-size: 22px; }
.et_pb_best_value { color: #fff; font-size: 16px; display: block; padding-bottom: 10px; font-weight: 500; }
.et_pb_featured_table .et_pb_pricing_heading h2 { padding-bottom: 6px; }
.et_pb_pricing li { line-height: 1.6em; padding: 0 0 1em 14px; position: relative; }
.et_pb_pricing_content_top { border-bottom: 1px solid #ccc; padding-bottom: 30px; }
.et_pb_et_price { color: #999; font-size: 16px; }
.et_pb_dollar_sign { font-size: 18px; font-weight: 400; position: relative; top: -34px; }
.et_pb_sum { font-size: 80px; line-height: 82px; font-weight: 300; }
.et_pb_pricing_content { padding: 33px 30px 6px; text-align: left; }
.et_pb_featured_table .et_pb_pricing_content { padding-bottom: 32px; }
.et_pb_pricing li { line-height: 24px; padding: 0 0 28px 14px; position: relative; }
.et_pb_pricing li:before { border-color: #7EBEC5; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; border-style: solid; border-width: 3px; content: ""; left: 0; position: absolute; top: 9px; }
.et_pb_pricing li.et_pb_not_available { color: #ccc; }
.et_pb_pricing li.et_pb_not_available:before { border-color: #ccc; }
.et_pb_pricing li a { font-weight: 500; text-decoration: none; }
.et_pb_pricing_table_button { display: inline-block; color: #fff; }
.et_pb_pricing_table_button:hover { text-decoration: none; }
.et_pb_testimonial { position: relative; padding: 30px 30px 34px; line-height: 1.5; margin-bottom: 30px; }
.et_pb_testimonial.et_pb_testimonial_no_bg { padding: 30px 0 0; }
.et_pb_testimonial p:last-of-type { padding-bottom: 0px; }
.et_pb_testimonial_portrait { float: left; position: relative; -moz-background-size: cover; -webkit-background-size: cover; background-size: cover; width: 90px; height: 90px; background-repeat: no-repeat; background-position: center; }
.et_pb_testimonial_portrait:before { content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3); -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3); box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3); }
.et_pb_testimonial_portrait, .et_pb_testimonial_portrait:before { -moz-border-radius: 90px; -webkit-border-radius: 90px; border-radius: 90px; }
.et_pb_testimonial_portrait img { display: block; height: 90px; width: 90px; border-radius: 90px; }
.et_pb_testimonial_description { padding-left: 120px; }
.et_pb_bg_layout_dark .et_pb_testimonial_description a { color: #fff; }
.et_pb_testimonial_no_image .et_pb_testimonial_description, .et_pb_column_1_3 .et_pb_testimonial_description, .et_pb_column_1_4 .et_pb_testimonial_description, .et_pb_column_3_8 .et_pb_testimonial_description { padding-left: 0; }
.et_pb_testimonial_no_image .et_pb_testimonial_description { padding-left: 0 !important; }
.et_pb_column_1_3 .et_pb_testimonial_portrait, .et_pb_column_1_4 .et_pb_testimonial_portrait, .et_pb_column_3_8 .et_pb_testimonial_portrait { float: none; width: 90px; margin: 0 auto 20px; }
.et-pb-arrow-prev:before, .et-pb-arrow-next:before, .et_pb_testimonial:before, .et_pb_toggle_title:before, .et_overlay:before, #et_search_icon:before, .mobile_menu_bar:before, .et-social-icon a:before, .et_pb_social_icon a.icon:before, .et_pb_font_icon:before, .et_audio_container .mejs-playpause-button button:before, .et_audio_container .mejs-volume-button button:before, .mfp-arrow-left:after, .mfp-arrow-left .mfp-a, .mfp-arrow-right:after, .mfp-arrow-right .mfp-a, #et-info-phone:before, #et-info-email:before, .et-cart-info span:before, .et_pb_pricing_table_button:after, .et_pb_promo_button:after, a.et_pb_more_button:after, .et_pb_newsletter_button:after, .comment-reply-link:after, .form-submit input:after, .et_pb_contact_submit:after, .et_pb_contact_reset:after { font-family: 'ETmodules'; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
#et_search_icon:before { content: "\55"; font-size: 17px; left: 0; position: absolute; top: -3px; }
#et_search_icon:hover { cursor: pointer; }
.et_pb_testimonial:before { content: "\7c"; font-size: 32px; left: 50%; position: absolute; top: -16px; background: #f5f5f5; margin-left: -16px; -moz-border-radius: 31px; -webkit-border-radius: 31px; border-radius: 31px; }
.et_pb_testimonial.et_pb_testimonial_no_bg:before { background: inherit; }
.et_pb_testimonial.et_pb_icon_off:before { display: none; }
.et_pb_testimonial_author { margin-top: 16px; font-weight: 700; display: block; }
.et_pb_testimonial_author a { color: inherit; }
.et-promo { background-color: #1f6581; padding: 40px 0 25px; }
.et-promo-description, .et-newsletter-description { float: left; padding: 0 60px; }
.et-promo-description { width: 754px; }
.et-promo-description h3, .et-newsletter-description h3 { color: #fff; font-size: 26px; padding-bottom: 13px; }
.et-promo-description p, .et-newsletter-description p { color: #fff; }
.et-promo-button { padding-right: 60px; display: inline-block; font-weight: 500; font-size: 20px; color: #fff; background-color: rgba(0, 0, 0, 0.35); -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; padding: 14px 20px; margin-top: 20px; float: left; }
.et-newsletter { background-color: #68909d; padding: 40px 0; }
.et-newsletter-description { width: 640px; }
.et-newsletter-form { float: left; width: 260px; padding-right: 60px; }
.et-newsletter-form p input { padding: 10px 18px; font-family: 'Open Sans', Arial, sans-serif; font-size: 16px; color: #666; background-color: #fff; font-weight: 400; width: 86%; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; }
.et-newsletter-button { display: block; font-size: 16px; color: #fff; background-color: rgba(0, 0, 0, 0.2); -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; padding: 13px 20px; }
.et_pb_bg_layout_light .et_pb_newsletter_form input {background-color: #f5f5f5;}
.et_pb_counter_title { font-size: 12px; padding-bottom: 1px; display: block; }
.et_pb_bg_layout_light .et_pb_counter_title { color: #999; }
.et_pb_counter_container { background-color: #dddddd; color: #fff; margin-bottom: 10px; overflow: hidden; position: relative; display: block; }
.et_pb_counter_amount { opacity: 0; float: left; font-size: 12px; text-align: right; padding: 1px 3% 1px 1px; display: block; }
.et_pb_post { margin-bottom: 60px; }
.et_pb_post_main_image { margin-bottom: 10px; }
.et_pb_post h2 { margin-top: 30px; }
.et_pb_post h2 a, .et_pb_portfolio_item h3 a { text-decoration: none; }
.et_pb_post .post-meta { margin-bottom: 6px; }
.et_pb_post .post-meta, .et_pb_portfolio_item .post-meta { font-size: 14px; }
.et_pb_post .post-meta a, .et_pb_portfolio_item .post-meta a { text-decoration: none; }
.et_pb_bg_layout_light .et_pb_post .post-meta, .et_pb_bg_layout_light .et_pb_portfolio_item .post-meta, .et_pb_bg_layout_light .et_pb_post .post-meta a, .et_pb_bg_layout_light .et_pb_portfolio_item .post-meta a, .et_pb_bg_layout_light .et_pb_post p { color: #666; }
.et_pb_bg_layout_dark .et_pb_post .post-meta, .et_pb_bg_layout_dark .et_pb_portfolio_item .post-meta, .et_pb_bg_layout_dark .et_pb_post .post-meta a, .et_pb_bg_layout_dark .et_pb_portfolio_item .post-meta a, .et_pb_bg_layout_dark .et_pb_post p { color: inherit; }
.et_pb_post .more { color: #82c0c7; text-decoration: none; }
.et_pb_blog_grid_wrapper { overflow: hidden; }
.et_pb_blog_grid { margin-right: -60px; }
.et_pb_blog_grid .et_pb_post { margin: 0 60px 60px 0; width: 280px; border: 1px solid #d8d8d8; float: left; padding: 19px; background-color: #fff; word-wrap: break-word; }
.et_pb_column_3_8 .et_pb_blog_grid .et_pb_post { width: 329px; }
.et_pb_column_1_4 .et_pb_blog_grid .et_pb_post { width: 185px; }
.et_pb_bg_layout_dark.et_pb_blog_grid .et_pb_post { border-color: rgba(0, 0, 0, 0.1); }
.et_pb_image_container, .et_pb_blog_grid .et_main_video_container, .et_pb_blog_grid .et_audio_content, .et_pb_blog_grid .et_pb_post .et_pb_slider { margin: -20px -20px 10px; }
.et_pb_image_container img, .et_pb_post a img { vertical-align: bottom; }
.et_pb_blog_grid .et_pb_no_thumb h2 { margin-top: 0; }
.et_pb_blog_grid .et_audio_content { margin-bottom: 0; }
.et_pb_image { margin-bottom: 30px;}
.et_pb_blog_grid h2 { font-size: 18px; margin-top: 19px; }
body.single .et_audio_content { margin-bottom: -6px; }
.et_pb_image_sticky { margin-bottom: 0px !important; display: inherit; }
.et_pb_row:last-child .et_pb_image_sticky:last-child { margin-bottom: -50px !important; }
.et_pb_filterable_portfolio_grid, .et_pb_gallery_grid { display: none; }
.et_pb_filterable_portfolio .et_pb_portfolio_item.active, .et_pb_gallery_grid .et_pb_gallery_item { opacity: 1; -webkit-animation: fadeLeft 1s 1 cubic-bezier(0.77,0,.175,1); -moz-animation: fadeLeft 1s 1 cubic-bezier(0.77,0,.175,1); -o-animation: fadeLeft 1s 1 cubic-bezier(0.77,0,.175,1); animation: fadeLeft 1s 1 cubic-bezier(0.77,0,.175,1);}
.et_pb_portfolio_item { margin-bottom: 42px; }
.et_pb_portfolio_item img { margin-bottom: 9px; }
.et_pb_portfolio_grid .et_pb_portfolio_item h2, .et_pb_column_1_3 .et_pb_post h2, .et_pb_column_1_4 .et_pb_post h2 { font-size: 18px; }
.et_section_regular .et_pb_column_4_4 .et_pb_portfolio_grid .et_pb_portfolio_item:nth-child(4n), .et_pb_column_3_4 .et_pb_portfolio_grid .et_pb_portfolio_item:nth-child(3n), .et_pb_column_2_3 .et_pb_portfolio_grid .et_pb_portfolio_item:nth-child(3n), .et_pb_column_1_2 .et_pb_portfolio_grid .et_pb_portfolio_item:nth-child(2n), .et_gallery_item:nth-child(3n) { margin-right: 0; }
.et_gallery_item:nth-child(3n+1) { clear: both; }
.et_pb_column_4_4 .et_pb_portfolio_grid .et_pb_portfolio_item, .et_pb_column_3_4 .et_pb_portfolio_grid .et_pb_portfolio_item, .et_pb_column_1_2 .et_pb_portfolio_grid .et_pb_portfolio_item, .et_gallery_item { float: left; width: 225px; margin: 0 60px 42px 0; }
.et_pb_column_4_4 .et_pb_portfolio_grid .et_pb_portfolio_item img, .et_pb_column_3_4 .et_pb_portfolio_grid .et_pb_portfolio_item img, .et_pb_column_2_3 .et_pb_portfolio_grid .et_pb_portfolio_item img, .et_pb_column_1_2 .et_pb_portfolio_grid .et_pb_portfolio_item img, .et_pb_column_1_3 .et_pb_portfolio_grid .et_pb_portfolio_item img, .et_pb_column_1_4 .et_pb_portfolio_grid .et_pb_portfolio_item img { margin-bottom: 2px; }
.et_pb_column_1_4 .et_pb_audio_module_content h2, .et_pb_column_1_4 .et_pb_post h2, .et_pb_column_4_4 .et_pb_portfolio_grid .et_pb_portfolio_item h2, .et_pb_column_3_4 .et_pb_portfolio_grid .et_pb_portfolio_item h2, .et_pb_column_2_3 .et_pb_portfolio_grid .et_pb_portfolio_item h2, .et_pb_column_1_2 .et_pb_portfolio_grid .et_pb_portfolio_item h2, .et_pb_column_1_3 .et_pb_portfolio_grid .et_pb_portfolio_item h2, .et_pb_column_1_4 .et_pb_portfolio_grid .et_pb_portfolio_item h2 { font-size: 16px; }
.et_pb_column_4_4 .et_pb_portfolio_grid .et_pb_portfolio_item .post-meta, .et_pb_column_3_4 .et_pb_portfolio_grid .et_pb_portfolio_item .post-meta, .et_pb_column_2_3 .et_pb_portfolio_grid .et_pb_portfolio_item .post-meta, .et_pb_column_1_2 .et_pb_portfolio_grid .et_pb_portfolio_item .post-meta, .et_pb_column_1_3 .et_pb_portfolio_grid .et_pb_portfolio_item .post-meta, .et_pb_column_1_4 .et_pb_portfolio_grid .et_pb_portfolio_item .post-meta { margin-top: -5px; }
.et_pb_column_2_3 .et_pb_portfolio_grid .et_pb_portfolio_item { float: left; width: 195px; margin: 0 57px 42px 0; }
.et_pb_column_1_3 .et_pb_portfolio_grid .et_pb_portfolio_item, .et_pb_column_1_4 .et_pb_portfolio_grid .et_pb_portfolio_item { float: none; margin: 0 0 42px 0; }
.et_pb_column_3_8 .et_pb_portfolio_grid .et_pb_portfolio_item { width: 368px; }
.et_pb_column_1_3 .et_pb_portfolio_grid .et_pb_portfolio_item { width: 320px; }
.et_pb_column_1_4 .et_pb_portfolio_grid .et_pb_portfolio_item { width: 225px; }
.et_pb_filterable_portfolio .et_pb_portfolio_item { max-width: 100%; }
.et_pb_column_3_4 .et_pb_portfolio_grid .et_pb_portfolio_item:nth-child(4n+1) { clear: none !important; }
.et_pb_widget_area_left { border-right: 1px solid #e2e2e2; padding-bottom: 30px;}
.et_pb_column_4_4 .et_pb_widget_area_left { border-right: none; }
.et_pb_widget { float: left; margin: 0 90px 40px 0; }
.et_pb_column_4_4 .et_pb_widget_area_left .et_pb_widget:nth-child(4n), .et_pb_column_3_4 .et_pb_widget_area_left .et_pb_widget:nth-child(3n), .et_pb_column_2_3 .et_pb_widget_area_left .et_pb_widget:nth-child(2n), .et_pb_column_1_2 .et_pb_widget_area_left .et_pb_widget:nth-child(2n), .et_pb_column_4_4 .et_pb_widget_area_right .et_pb_widget:nth-child(4n) { margin-right: 30px; }
.et_pb_column_4_4 .et_pb_widget_area_left .et_pb_widget, .et_pb_column_4_4 .et_pb_widget_area_right .et_pb_widget { width: 195px; }
.et_pb_column_3_4 .et_pb_widget_area_left .et_pb_widget, .et_pb_column_3_4 .et_pb_widget_area_right .et_pb_widget { width: 194px; }
.et_pb_column_2_3 .et_pb_widget_area_left .et_pb_widget, .et_pb_column_2_3 .et_pb_widget_area_right .et_pb_widget { width: 289px; }
.et_pb_column_1_2 .et_pb_widget_area_left .et_pb_widget, .et_pb_column_1_2 .et_pb_widget_area_right .et_pb_widget { width: 194px; }
.et_pb_column_1_3 .et_pb_widget_area_left .et_pb_widget, .et_pb_column_1_4 .et_pb_widget_area_left .et_pb_widget { width: auto; margin-right: 30px; }
.et_pb_column_1_3 .et_pb_widget, .et_pb_column_1_4 .et_pb_widget { float: none; }
.et_pb_widget a { text-decoration: none; color: #666; }
.et_pb_widget_area .et_pb_widget a { color: inherit; }
.et_pb_widget select { width: 100%; height: 28px; }
.et_pb_bg_layout_light .et_pb_widget li a { color: #666; }
.et_pb_bg_layout_dark .et_pb_widget li a { color: inherit; }
.et_pb_widget li a:hover { color: #82c0c7; }
.et_pb_widget ul li { margin-bottom: 6px; }
.et_pb_widget ul li ul li { margin-left:15px; }
.tagcloud a {font-size: 12px !important; padding: 2px 8px; background: rgba(0,0,0,.05); display: inline-block; margin-bottom: 4px; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px;-moz-transition: all 0.2s ease-in-out; -webkit-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; }
.tagcloud a:hover { background: rgba(0,0,0,.15);}
.et_pb_widget_area_right { border-left: 1px solid #e2e2e2; }
.et_pb_widget_area_left, .et_pb_widget_area_right { border-color: rgba(0, 0, 0, 0.1); }
.et_pb_column_4_4 .et_pb_widget_area_right { border-left: none; }
.et_pb_column_3_4 .et_pb_widget_area_right .et_pb_widget, .et_pb_column_2_3 .et_pb_widget_area_right .et_pb_widget, .et_pb_column_1_2 .et_pb_widget_area_right .et_pb_widget, .et_pb_column_1_3 .et_pb_widget_area_right .et_pb_widget, .et_pb_column_1_4 .et_pb_widget_area_right .et_pb_widget { margin: 0 0 40px 30px; }
.et_pb_column_4_4 .et_pb_widget:nth-child(4n+1),
.et_pb_column_3_4 .et_pb_widget:nth-child(3n+1),
.et_pb_column_2_3 .et_pb_widget:nth-child(2n+1),
.et_pb_column_1_2 .et_pb_widget:nth-child(2n+1)
{
clear: both;
}
.et_pb_promo { padding: 40px 60px; text-align: center; margin-bottom: 30px; }
.et_pb_promo_description { padding-bottom: 20px; }
.et_pb_promo_description p:last-of-type { padding-bottom: 0px;}
.et_pb_promo_button { display: inline-block; color: inherit; }
.et_pb_promo_button:hover, .et_pb_newsletter_button:hover { text-decoration: none; }
.et_pb_column_1_2 .et_pb_promo, .et_pb_column_1_3 .et_pb_promo, .et_pb_column_1_4 .et_pb_promo { padding: 40px; }
.et_pb_newsletter { padding: 40px 0; margin-bottom: 30px; }
.et_pb_newsletter_description { width: 640px; float: left; padding: 0 60px; }
.et_pb_newsletter_description p:last-of-type { padding-bottom: 0px;}
.et_pb_newsletter_form { float: left; width: 260px; padding-right: 60px; }
.et_pb_newsletter_form p input { font-size: 14px; border: none !important; padding: 14px 4% !important; font-size: 16px; color: #666; background-color: #fff; width: 92%; font-weight: 400; -moz-border-radius: 3px !important; -webkit-border-radius: 3px !important; border-radius: 3px !important; }
.et_pb_newsletter_form p .et_pb_signup_error { border: 1px solid #f00 !important; }
.et_pb_newsletter_result { margin-bottom: 18px; display: none; }
.et_pb_newsletter_button { display: block; color: inherit; padding: 6px 0; width: 100%; text-align: center; box-sizing: border-box;}
.et_pb_login_form .et_pb_newsletter_button, .et_pb_feedburner_form .et_pb_newsletter_button { margin: 0; width: 100%; cursor: pointer; }
.et_pb_login_form form, .et_pb_feedburner_form form { text-align: left; }
.et_pb_login_form ::-webkit-input-placeholder, .et_pb_feedburner_form ::-webkit-input-placeholder { color: #666; }
.et_pb_login_form ::-moz-placeholder, .et_pb_feedburner_form ::-moz-placeholder { color: #666; }
.et_pb_login_form :-ms-input-placeholder, .et_pb_feedburner_form :-ms-input-placeholder { color: #666; }
.et_pb_column_3_4 .et_pb_newsletter_description { width: 354px; }
.et_pb_column_2_3 .et_pb_newsletter_description { width: 258px; }
.et_pb_column_1_2 .et_pb_newsletter_description, .et_pb_column_1_2 .et_pb_newsletter_form { width: 388px; }
.et_pb_column_1_2 .et_pb_newsletter_description { padding-bottom: 25px; }
.et_pb_column_1_2 .et_pb_newsletter_form { padding-left: 60px; }
.et_pb_column_1_3 .et_pb_newsletter, .et_pb_column_1_4 .et_pb_newsletter, .et_pb_column_3_8 .et_pb_newsletter { padding: 30px 0; }
.et_pb_column_1_3 .et_pb_newsletter_description, .et_pb_column_1_3 .et_pb_newsletter_form { width: 260px; }
.et_pb_column_3_8 .et_pb_newsletter_description, .et_pb_column_3_8 .et_pb_newsletter_form { width: 307px; }
.et_pb_column_1_3 .et_pb_newsletter_description, .et_pb_column_1_4 .et_pb_newsletter_description, .et_pb_column_3_8 .et_pb_newsletter_description { padding: 0 30px; }
.et_pb_column_1_3 .et_pb_newsletter_form, .et_pb_column_1_4 .et_pb_newsletter_form, .et_pb_column_3_8 .et_pb_newsletter_form { padding-left: 30px; }
.et_pb_column_1_3 .et_pb_newsletter_description, .et_pb_column_1_4 .et_pb_newsletter_description, .et_pb_column_3_8 .et_pb_newsletter_description { padding-bottom: 15px; }
.et_pb_column_1_4 .et_pb_newsletter_description, .et_pb_column_1_4 .et_pb_newsletter_form { width: 165px; }
.et_pb_column_1_4 .et_pb_newsletter_form p input { width: 90% }
.et_pb_all_tabs > div, .et_pb_toggle_close .et_pb_toggle_content { display: none; }
.et_pb_toggle_content { padding-top: 20px; }
.et_pb_toggle_content p:last-of-type { padding-bottom: 0px;}
.et_pb_all_tabs .et_pb_active_content { display: block; }
.et_pb_tabs { border: 1px solid #d9d9d9; margin-bottom: 30px;}
.et_pb_tabs_controls { border-bottom: 1px solid #d9d9d9; background-color: #f4f4f4; }
.et_pb_tabs_controls li { float: left; padding: 5px 30px 3px; border-right: 1px solid #d9d9d9; font-weight: 600; position: relative; cursor: pointer; }
.et_pb_tabs_controls li:last-child { border-right: none; }
.et_pb_tabs_controls li a { text-decoration: none; color: #666; }
.et_pb_tabs_controls li.et_pb_tab_active { padding: 4px 30px 4px; background-color: #fff; bottom: -1px; }
.et_pb_tab_active a { color: #333!important; }
.et_pb_tab p:last-of-type { padding-bottom: 0px;}
.et_pb_all_tabs { padding: 24px 30px; background: #fff; }
.et_pb_column_1_3 .et_pb_tabs_controls, .et_pb_column_1_4 .et_pb_tabs_controls { border-bottom: none; }
.et_pb_column_1_3 .et_pb_tabs_controls li, .et_pb_column_1_4 .et_pb_tabs_controls li, .et_pb_column_3_8 .et_pb_tabs_controls li { float: none; border-right: none; border-bottom: 1px solid #d9d9d9; }
.et_pb_toggle { border: 1px solid #d9d9d9; margin-bottom: 30px; }
.et_pb_toggle_close { background-color: #f4f4f4; padding: 20px; }
.et_pb_toggle_open { padding: 20px; background: #FFF; }
.et_pb_toggle h5.et_pb_toggle_title { cursor: pointer; position: relative; padding: 0 30px 0 0; }
.et_pb_toggle_close h5.et_pb_toggle_title { color: #666; }
.et_pb_toggle_open h5.et_pb_toggle_title { color: #333; }
.et_pb_toggle_title:before { content: "\e050"; position: absolute; right: 0px; font-size: 16px; color: #ccc; }
.et_pb_toggle_open .et_pb_toggle_title:before { content: "\e04f"; }
.et_pb_map { height: 440px; width: 100%; position: relative; }
.et_pb_map_container { margin: 0 0 30px 0; }
.et_pb_fullwidth_section .et_pb_map_container { margin: 0; }
.et_pb_map_container img { max-width: inherit; }
.et_pb_map_pin { display: none; visibility: hidden; }
.et_pb_column_4_4 .et_pb_map { width: 1080px; }
.et_pb_column_3_4 .et_pb_map { width: 795px; }
.et_pb_column_2_3 .et_pb_map { height: 390px; width: 700px; }
.et_pb_column_1_2 .et_pb_map { height: 280px; width: 510px; }
.et_pb_column_3_8 .et_pb_map { height: 276px; width: 368px; }
.et_pb_column_1_3 .et_pb_map { height: 240px; width: 320px; }
.et_pb_column_1_4 .et_pb_map { height: 170px; width: 225px; }
.et-pb-arrow-prev, .et-pb-arrow-next { position: absolute; top: 50%; z-index: 100; font-size: 48px; color: #fff; margin-top: -24px; -moz-transition: all 0.2s ease-in-out; -webkit-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; opacity: 0; }
.et_pb_bg_layout_light .et-pb-arrow-prev, .et_pb_bg_layout_light .et-pb-arrow-next { color: #333; }
.et_pb_bg_layout_light .et-pb-controllers .et-pb-active-control { background-color: #333; }
.et_pb_bg_layout_light .et-pb-controllers a { background-color: rgba(0, 0, 0, 0.3); }
.format-gallery .et-pb-arrow-prev, .format-gallery .et-pb-arrow-next { color: #fff; }
.format-gallery .et-pb-controllers a { background-color: rgba(255, 255, 255, 0.5); }
.et-pb-controllers .et-pb-active-control { background-color: #fff !important; }
.et-pb-arrow-prev:hover, .et-pb-arrow-next:hover { text-decoration: none; }
.et-pb-arrow-prev span, .et-pb-arrow-next span { display: none; }
.et-pb-arrow-prev { left: -22px; }
.et-pb-arrow-next { right: -22px; }
.et-pb-arrow-prev:before { content: "\34"; }
.et-pb-arrow-next:before { content: "\35"; }
.et_pb_slider:hover .et-pb-arrow-prev, .et_mobile_device .et-pb-arrow-prev { left: 22px; opacity: 1; }
.et_pb_slider:hover .et-pb-arrow-next, .et_mobile_device .et-pb-arrow-next { right: 22px; opacity: 1; }
.format-gallery .et_pb_slider:hover .et-pb-arrow-prev { left: 0; }
.format-gallery .et_pb_slider:hover .et-pb-arrow-next { right: 0; }
.et_pb_column_1_3 .et_pb_slider:hover .et-pb-arrow-prev, .et_pb_column_1_4 .et_pb_slider:hover .et-pb-arrow-prev { left: 0px; }
.et_pb_column_1_3 .et_pb_slider:hover .et-pb-arrow-next, .et_pb_column_1_4 .et_pb_slider:hover .et-pb-arrow-prev { right: 0px; }
.et_pb_column_1_4 .et_pb_slider .et_pb_slide { min-height: 170px; }
.et_pb_column_1_4 .et_pb_slider .et_pb_slide a.et_pb_more_button { display: none; }
.et_pb_column_1_4 .et_pb_slider:hover .et-pb-arrow-next { right: 0px; }
#sidebar { padding-bottom: 1px; }
.et_right_sidebar #left-area { float: left; width: 795px; margin-right: 60px; }
.et_right_sidebar #sidebar { float: left; width: 224px; }
#sidebar .et_pb_widget { float: none; margin: 0 0 30px 30px; }
#main-content .container { padding-top: 58px; }
#main-content .container:before { content: ''; position: absolute; top: 0; height: 100%; width: 1px; background-color: #e2e2e2; }
.et_right_sidebar #main-content .container:before { right: 224px; }
.et_left_sidebar #main-content .container:before { left: 224px; }
.et_full_width_page #main-content .container:before, .et_full_width_portfolio_page #main-content .container:before { display: none; }
.et_full_width_page #left-area { float: none; width: 100%; }
#left-area { padding-bottom: 23px; }
#left-area .post-meta { font-size: 14px; padding-bottom: 15px; }
#left-area .post-meta a { text-decoration: none; color: #666; }
#left-area .et_featured_image { padding-bottom: 7px; }
.single .post { padding-bottom: 25px; }
.et_left_sidebar #left-area { float: right; width: 795px; margin-left: 60px; }
.et_left_sidebar #sidebar { float: left; width: 224px; }
.et_left_sidebar #sidebar .et_pb_widget { float: none; margin: 0 30px 30px 0; }
.single-project #left-area { padding-bottom: 50px; }
.et_pb_contact_main_title { font-size: 26px; font-weight: 500; padding-bottom: 16px; }
.et_pb_contact_left { width: 100%; float: left; }
.et_pb_contact_right { float: right; width: auto; margin: 8px 15px 0 0; text-align: right; }
.et_pb_contact_form_label { display: none; }
.et_pb_contact_form_container {padding-bottom:30px;}
.et_pb_contact_left p { width: 48.5%; float: left; margin-right: 3%; padding-bottom: 20px; }
.et_pb_contact_left p:last-child { margin-right: 0; }
.et_pb_contact p input, .et_pb_contact p textarea { background-color: #eee; border: none!important; width: 100% !important; -moz-border-radius: 0 !important; -webkit-border-radius: 0 !important; border-radius: 0 !important; font-size: 14px; color: #999 !important; padding: 16px !important; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
.et_pb_contact_right p input { width: 45px!important; padding: 16px !important; }
.et_pb_contact_message { min-height: 150px; }
.et_pb_contact_submit, .et_pb_contact_reset { font-family: inherit; display: block; float: right; margin: 8px auto 0; cursor: pointer; }
.et_pb_column_3_8 .et_pb_contact_left p, .et_pb_column_1_3 .et_pb_contact_left p, .et_pb_column_1_4 .et_pb_contact_left p { width: 100%; float: none; margin-right: 0; }
.et_pb_contact p .et_contact_error { border: 1px solid red !important; }
.et_pb_countdown_timer .et_pb_countdown_timer_container { margin: 0 0 30px; text-align: center; padding: 40px; }
.et_pb_countdown_timer .title { font-size: 22px; font-weight: 500; margin: 0 0 30px; padding: 0; text-align: center; }
.et_pb_countdown_timer .section { margin-right: 15px; display: inline-block; }
.et_pb_countdown_timer .seconds { margin-right: 0; }
.et_pb_countdown_timer .section.values { width: 76px; }
.et_pb_countdown_timer .section.days { width: 124px; }
.et_pb_countdown_timer .section p { font-size: 64px; line-height: 64px; padding-bottom: 0px; text-align: center; display: inline-block; }
.et_pb_countdown_timer .section.zero p { opacity: 0.40; }
.et_pb_countdown_timer .section p.label { text-align: center; font-size: 14px; line-height: 25px; display: block; }
.et_pb_countdown_timer .sep { position: relative; top: -28px; }
.et_pb_column_1_2 .et_pb_countdown_timer .sep, .et_pb_column_1_3 .et_pb_countdown_timer .sep, .et_pb_column_1_4 .et_pb_countdown_timer .sep, .et_pb_column_3_8 .et_pb_countdown_timer .sep { top: -22px; }
.et_pb_column_1_2 .et_pb_countdown_timer .section { margin-right: 5px; }
.et_pb_column_1_2 .et_pb_countdown_timer .section.values { width: 57px; }
.et_pb_column_1_2 .et_pb_countdown_timer .section.days { width: 80px; }
.et_pb_column_1_2 .et_pb_countdown_timer .section p { font-size: 48px; line-height: 48px; }
.et_pb_column_1_2 .et_pb_countdown_timer .section p.label { font-size: 12px; line-height: 20px; }
.et_pb_column_1_3 .et_pb_countdown_timer .et_pb_countdown_timer_container, .et_pb_column_3_8 .et_pb_countdown_timer .et_pb_countdown_timer_container { padding: 40px 20px; }
.et_pb_column_1_3 .et_pb_countdown_timer .section, .et_pb_column_1_4 .et_pb_countdown_timer .section, .et_pb_column_3_8 .et_pb_countdown_timer .section { margin-right: 0; }
.et_pb_column_1_3 .et_pb_countdown_timer .section.values, .et_pb_column_3_8 .et_pb_countdown_timer .section.values { width: 42px; }
.et_pb_column_1_3 .et_pb_countdown_timer .section.days, .et_pb_column_3_8 .et_pb_countdown_timer .section.days { width: 50px; }
.et_pb_column_1_3 .et_pb_countdown_timer .section p, .et_pb_column_3_8 .et_pb_countdown_timer .section p { font-size: 28px;line-height: 28px; }
.et_pb_column_1_3 .et_pb_countdown_timer .section p.label, .et_pb_column_3_8 .et_pb_countdown_timer .section p.label {font-size: 11px; line-height: 19px; }
.et_pb_column_1_3 .et_pb_countdown_timer .title, .et_pb_column_3_8 .et_pb_countdown_timer .title { font-size: 18px; margin-bottom: 20px; }
.et_pb_column_1_4 .et_pb_countdown_timer .et_pb_countdown_timer_container { padding: 20px 0; }
.et_pb_column_1_4 .et_pb_countdown_timer .section { margin-right: 4px; }
.et_pb_column_1_4 .et_pb_countdown_timer .section.values { width: 25px; }
.et_pb_column_1_4 .et_pb_countdown_timer .section.days { width: 30px; }
.et_pb_column_1_4 .et_pb_countdown_timer .section p { font-size: 20px; line-height: 20px; }
.et_pb_column_1_4 .et_pb_countdown_timer .section p.label { font-size: 11px; line-height: 19px; }
.et_pb_column_1_4 .et_pb_countdown_timer .title { font-size: 16px; margin: 0 0 20px 0; }
.et_pb_circle_counter, .et_pb_number_counter { width: 225px; margin: 0 auto 30px; position: relative; text-align: center; }
.et_pb_circle_counter canvas { position: absolute; top: 0; left: 0; }
.et_pb_circle_counter .percent, .et_pb_number_counter .percent { position: relative; z-index: 2; }
.et_pb_circle_counter .percent p, .et_pb_number_counter .percent p { visibility: hidden; }
.et_pb_circle_counter .percent{ height: 225px; }
.et_pb_circle_counter .percent p { font-size: 40px; font-weight: 500; line-height: 225px;}
.et_pb_circle_counter h3, .et_pb_number_counter h3 { padding: 20px 0 0 0; font-size: 16px; }
.et_pb_number_counter { width:auto; }
.et_pb_number_counter canvas { display: none; visibility: hidden; }
.et_pb_number_counter .percent { height: 72px; }
.et_pb_number_counter .percent p { font-size: 72px; line-height: 72px; font-weight: 500; }
p.woocommerce-result-count { font-weight: 500; font-size: 14px; color: #999; padding-bottom: 40px; }
.orderby { background-color: #ececec; border: none; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; color: #666!important; font-size: 12px; padding: 4px 8px; font-weight: 500; font-family: 'Open Sans', Arial, sans-serif; }
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product { width: 225px!important; margin: 0 60px 53px 0!important; }
.woocommerce ul.products li.product.last, .woocommerce-page ul.products li.product.last { margin-right: 0!important; }
.woocommerce ul.products li.product a img, .woocommerce-page ul.products li.product a img {
-moz-box-shadow: none !important; -webkit-box-shadow: none !important; box-shadow: none !important; margin: 0 0 9px !important; }
.woocommerce ul.products li.product h3, .woocommerce-page ul.products li.product h3 { font-weight: 500; font-size: 16px!important; color: #333; padding: 4px 0 4px!important; }
.woocommerce ul.products li.product .price, .woocommerce-page ul.products li.product .price, .woocommerce ul.products li.product .price del, .woocommerce-page ul.products li.product .price del { color: #666!important; font-size: 14px!important; margin: 0!important; }
.woocommerce ul.products li.product .onsale, .woocommerce-page ul.products li.product .onsale { left: 10px !important; margin: 0 !important; right: auto !important; }
.woocommerce span.onsale, .woocommerce-page span.onsale { z-index: 2; background: #ef8f61!important; -moz-border-radius: 3px!important; -webkit-border-radius: 3px!important; border-radius: 3px!important; -moz-box-shadow: none !important; -webkit-box-shadow: none !important; box-shadow: none !important; color: #fff; font-size: 20px!important; font-weight: 500!important; left: 10px!important; line-height: inherit!important; margin: 0!important; min-height: 0!important; min-width: 0!important; padding: 6px 18px!important; position: absolute; text-shadow: none!important; top: 10px!important; }
.woocommerce .woocommerce-pagination ul.page-numbers, .woocommerce-page .woocommerce-pagination ul.page-numbers { list-style: none !important; padding: 0 !important; }
.woocommerce .products .star-rating, .woocommerce-page .products .star-rating { margin: 4px 0 .3em 0 !important; }
.woocommerce .star-rating:before, .woocommerce-page .star-rating:before { content: "\53\53\53\53\53" !important; color: #ccc !important; }
.woocommerce div.product div.images, .woocommerce-page div.product div.images, .woocommerce #content div.product div.images, .woocommerce-page #content div.product div.images { width: 510px !important; }
.woocommerce div.product div.images img, .woocommerce-page div.product div.images img, .woocommerce #content div.product div.images img, .woocommerce-page #content div.product div.images img {
-moz-box-shadow: none !important; -webkit-box-shadow: none !important; box-shadow: none !important; }
.woocommerce div.product div.images div.thumbnails, .woocommerce-page div.product div.images div.thumbnails, .woocommerce #content div.product div.images div.thumbnails, .woocommerce-page #content div.product div.images div.thumbnails { padding-top: 20px !important; }
.woocommerce div.product div.images div.thumbnails a, .woocommerce-page div.product div.images div.thumbnails a, .woocommerce #content div.product div.images div.thumbnails a, .woocommerce-page #content div.product div.images div.thumbnails a { margin-right: 20px !important; width: 156px !important; margin-bottom: 20px; }
.entry-summary .entry-title { padding-bottom: 14px!important; }
.entry-summary p.price span { font-size: 26px!important; }
.entry-summary p.price del { color:#999; margin-right: 10px; }
.woocommerce div.product form.cart, .woocommerce-page div.product form.cart, .woocommerce #content div.product form.cart, .woocommerce-page #content div.product form.cart { margin: 24px 0 39px !important; }
.woocommerce div.product form.cart div.quantity, .woocommerce-page div.product form.cart div.quantity, .woocommerce #content div.product form.cart div.quantity, .woocommerce-page #content div.product form.cart div.quantity { margin: 0 20px 0 0 !important; -moz-border-radius: 3px !important; -webkit-border-radius: 3px !important; border-radius: 3px !important; width: 100px!important }
.woocommerce .quantity input.qty, .woocommerce-page .quantity input.qty, .woocommerce #content .quantity input.qty, .woocommerce-page #content .quantity input.qty { font-weight: 500 !important; font-size: 20px!important; color: #fff!important; -moz-box-shadow: none !important; -webkit-box-shadow: none !important; box-shadow: none !important; border: none!important; background-color: #b8c5c6!important; height: 47px!important; width: 70px !important; }
.woocommerce .quantity .plus, .woocommerce-page .quantity .plus, .woocommerce #content .quantity .plus, .woocommerce-page #content .quantity .plus, .woocommerce .quantity .minus, .woocommerce-page .quantity .minus, .woocommerce #content .quantity .minus, .woocommerce-page #content .quantity .minus { background: #fff !important; -moz-box-shadow: none !important; -webkit-box-shadow: none !important; box-shadow: none !important; color: #BCC8C9 !important; font-size: 20px !important; font-weight: 300!important; height: 24px!important; text-decoration: none!important; text-shadow: none !important; width: 30px !important; border-bottom-left-radius: 0 !important; border-top-left-radius: 0 !important; border: 1px solid #BCC8C9 !important; }
.woocommerce #content .quantity, .woocommerce .quantity, .woocommerce-page #content .quantity, .woocommerce-page .quantity { width: 100px; margin: 0; }
.woocommerce a.button.alt, .woocommerce-page a.button.alt, .woocommerce button.button.alt, .woocommerce-page button.button.alt, .woocommerce input.button.alt, .woocommerce-page input.button.alt, .woocommerce #respond input#submit.alt, .woocommerce-page #respond input#submit.alt, .woocommerce #content input.button.alt, .woocommerce-page #content input.button.alt,
.woocommerce a.button, .woocommerce-page a.button, .woocommerce button.button, .woocommerce-page button.button, .woocommerce input.button, .woocommerce-page input.button, .woocommerce #respond input#submit, .woocommerce-page #respond input#submit, .woocommerce #content input.button, .woocommerce-page #content input.button { border: none !important; -moz-border-radius: 3px !important; -webkit-border-radius: 3px !important; border-radius: 3px !important; color: #FFFFFF; font-size: 20px !important; font-weight: 500 !important; text-shadow: none !important; -moz-box-shadow: none !important; -webkit-box-shadow: none !important; box-shadow: none !important; padding: 13px 24px 14px!important; color: #fff !important; }
.et_pb_widget .buttons a { margin-top: 10px !important; }
.woocommerce ul.cart_list li, .woocommerce ul.product_list_widget li, .woocommerce-page ul.cart_list li, .woocommerce-page ul.product_list_widget li { padding: 6px 0; }
.woocommerce #reviews a.button, .woocommerce #respond input#submit, .woocommerce-page #respond input#submit { color: #fff !important; font-size: 16px !important; }
.woocommerce #reviews #comments ol.commentlist li, .woocommerce-page #reviews #comments ol.commentlist li { margin-bottom: 40px !important; }
.product_meta { border-top: 1px solid #dadada; font-size: 14px; color: #666; padding-top: 6px; }
.posted_in a { font-weight: 500; color: #82c0c7; text-decoration: none; }
.product .related h2 { font-size: 26px!important; padding-bottom: 16px; }
.et_right_sidebar.woocommerce div.product div.images, .et_right_sidebar.woocommerce-page div.product div.images, .et_right_sidebar.woocommerce #content div.product div.images, .et_right_sidebar.woocommerce-page #content div.product div.images, .et_left_sidebar.woocommerce div.product div.images, .et_left_sidebar.woocommerce-page div.product div.images, .et_left_sidebar.woocommerce #content div.product div.images, .et_left_sidebar.woocommerce-page #content div.product div.images { width: 367px !important; }
.et_right_sidebar.woocommerce div.product div.images div.thumbnails a, .et_right_sidebar.woocommerce-page div.product div.images div.thumbnails a, .et_right_sidebar.woocommerce #content div.product div.images div.thumbnails a, .et_right_sidebar.woocommerce-page #content div.product div.images div.thumbnails a, .et_left_sidebar.woocommerce div.product div.images div.thumbnails a, .et_left_sidebar.woocommerce-page div.product div.images div.thumbnails a, .et_left_sidebar.woocommerce #content div.product div.images div.thumbnails a, .et_left_sidebar.woocommerce-page #content div.product div.images div.thumbnails a { width: 109px !important; margin-bottom: 20px; }
div.product div.images div.thumbnails a.last { margin-right: 0 !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs:before, .woocommerce-page div.product .woocommerce-tabs ul.tabs:before, .woocommerce #content div.product .woocommerce-tabs ul.tabs:before, .woocommerce-page #content div.product .woocommerce-tabs ul.tabs:before { border-bottom-color: #d9d9d9; }
body.woocommerce .woocommerce-tabs { border: 1px solid #d9d9d9; margin-bottom: 45px; }
body.woocommerce div.product .woocommerce-tabs ul.tabs, body.woocommerce #content-area div.product .woocommerce-tabs ul.tabs { margin: 0 !important; padding: 0 !important; background: #f4f4f4; }
body.woocommerce div.product .woocommerce-tabs ul.tabs li, body.woocommerce #content-area div.product .woocommerce-tabs ul.tabs li, body.woocommerce div.product .woocommerce-tabs ul.tabs li.active, body.woocommerce #content-area div.product .woocommerce-tabs ul.tabs li.active { background: none; -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0; border: none; background: #f4f4f4; border-right: 1px solid #d9d9d9; padding: 0; -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; margin: 0 -2px; }
body.woocommerce #content-area div.product .woocommerce-tabs ul.tabs li.active { background: #fff !important; }
body.woocommerce div.product .woocommerce-tabs ul.tabs li a, body.woocommerce #content-area div.product .woocommerce-tabs ul.tabs li a { color: #666666 !important; padding: 4px 22px !important; }
body.woocommerce div.product .woocommerce-tabs ul.tabs li:before, body.woocommerce #content-area div.product .woocommerce-tabs ul.tabs li:before, body.woocommerce div.product .woocommerce-tabs ul.tabs li:after, body.woocommerce #content-area div.product .woocommerce-tabs ul.tabs li:after { display: none; }
body.woocommerce div.product .woocommerce-tabs ul.tabs li.active a, body.woocommerce #content-area div.product .woocommerce-tabs ul.tabs li.active a { color: #000 !important; }
body.woocommerce div.product .woocommerce-tabs .panel, body.woocommerce #content-area div.product .woocommerce-tabs .panel { padding: 30px; margin: 0; }
.woocommerce #reviews #comments ol.commentlist li .comment-text, .woocommerce-page #reviews #comments ol.commentlist li .comment-text { border: none !important; padding: 0 !important; margin: 0 0 0 100px !important; }
.woocommerce #reviews #comments ol.commentlist li img.avatar, .woocommerce-page #reviews #comments ol.commentlist li img.avatar { width: auto !important; padding: 0 !important; border: none !important; }
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta, .woocommerce-page #reviews #comments ol.commentlist li .comment-text p.meta { font-size: inherit !important; margin: 0 0 2px !important; padding: 0 !important; }
.woocommerce #reviews .commentlist .star-rating { float: none !important; margin-bottom: 6px !important; }
.woocommerce #reviews #comments h2, .woocommerce-page #reviews #comments h2 { margin-bottom: 30px !important; }
.woocommerce-message, .woocommerce-error, .woocommerce-info { border: none !important; -moz-box-shadow: none !important; -webkit-box-shadow: none !important; box-shadow: none !important; text-shadow: none !important; font-size: 18px !important; color: #fff !important; padding: 15px !important; }
.woocommerce-message:before, .woocommerce-error:before, .woocommerce-info:before { display: none !important; color: #FFF !important; }
.woocommerce-page #reviews #commentform, .woocommerce-page #review_form #respond p.form-submit { padding-bottom: 0; margin-bottom: 0; }
#left-area .woocommerce-message .button, #left-area .woocommerce-error .button, #left-area .woocommerce-info .button { color: #fff !important; font-size: 18px !important; font-weight: normal !important; margin: 5px 0 !important; padding: 0 !important; }
.archive.et_left_sidebar.woocommerce ul.products li.product, .archive.et_right_sidebar.woocommerce ul.products li.product { width: 195px !important; }
.archive.et_left_sidebar.woocommerce ul.products li.first, .archive.et_right_sidebar.woocommerce ul.products li.first { clear: none !important; }
.archive.et_left_sidebar.woocommerce ul.products li.product.last, .archive.et_right_sidebar.woocommerce ul.products li.product.last { margin-right: 60px !important; }
.archive.et_left_sidebar.woocommerce ul.products li.product:nth-child(3n), .archive.et_right_sidebar.woocommerce ul.products li.product:nth-child(3n) { margin-right: 0px !important; clear: right !important;}
.archive.et_left_sidebar.woocommerce ul.products li.product:nth-child(3n+1), .archive.et_right_sidebar.woocommerce ul.products li.product:nth-child(3n+1) { clear: both !important; }
.archive.et_full_width_page.woocommerce ul.products li.product { width: 220px !important; }
.et_vertical_nav.archive.et_left_sidebar.woocommerce ul.products li.product, .et_vertical_nav.archive.et_right_sidebar.woocommerce ul.products li.product { width: 190px !important; margin-right: 40px !important;}
.et_vertical_nav.archive.et_full_width_page.woocommerce ul.products li.product { width: 190px !important; }
.et_main_title { padding-bottom: 12px; }
.et_main_title h1 { display: inline-block; padding-right: 2px; }
.et_main_title .et_project_categories { font-size: 14px; }
.et_main_title .et_project_categories a { text-decoration: none; color: #666; }
.et_pb_post .entry-content, .project .entry-content { padding-top: 30px; }
.et_project_meta { margin: 23px 0 14px; border-top: 1px solid #e2e2e2; padding: 15px 0 39px; border-bottom: 1px solid #e2e2e2; }
.et_full_width_portfolio_page .et_project_meta { margin-bottom: 0; }
.et_project_meta_title { display: block; font-weight: 700; color: #333; }
.et_project_meta p { padding-bottom: 15px; }
.et_project_meta p a { text-decoration: none; color: #666; }
.nav-single a { text-decoration: none; color: #82c0c7; font-size: 14px; font-weight: 400; }
.nav-previous { float: left; }
.nav-next { float: right; }
.single .et_pb_post { margin-bottom: 27px; }
.et_full_width_portfolio_page .et_project_meta { float: left; width: 225px; margin-top: 43px; border-bottom: none; }
.et_full_width_portfolio_page .entry-content { margin-bottom: 43px; }
.et_pb_pagebuilder_layout .entry-content { margin-bottom: 0 !important; padding-top: 0; }
.et_full_width_portfolio_page .nav-single { border-top: 1px solid #e2e2e2; padding-top: 13px; }
.et_shop_image, .et_portfolio_image { position: relative; display: block; }
.et_overlay { z-index: 3; position: absolute; top: 0; left: 0; display: block; width: 100%; height: 100%; background: rgba(255, 255, 255, 0.9); opacity: 0; -moz-transition: all 0.3s; -webkit-transition: all 0.3s; transition: all 0.3s; border: 1px solid #e5e5e5; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; -o-backface-visibility: hidden; backface-visibility: hidden; -webkit-transform: translate3d(0,0,0); }
.et_overlay:before { content: '\e050'; position: absolute; top: 55%; left: 50%; margin: -14px 0 0 -14px; font-size: 32px; -moz-transition: all 0.4s; -webkit-transition: all 0.4s; transition: all 0.4s; }
.et_overlay:hover:before { top: 50%;}
#ie7 .et_overlay, #ie8 .et_overlay { display: none; }
.et_shop_image:hover .et_overlay, .et_portfolio_image:hover .et_overlay, .et_pb_fullwidth_portfolio .et_pb_portfolio_image:hover .et_overlay, .et_pb_fullwidth_portfolio .et_pb_portfolio_image:hover .meta, .et_pb_gallery_image:hover .et_overlay { opacity: 1; }
.et_pb_slider.et_pb_gallery_fullwidth span.et_overlay { display: none; }
.et_portfolio_image img { vertical-align: bottom; margin-bottom: 0 !important; }
.et_pb_portfolio_item h2 { margin-top: 10px; }
.et_pb_section_video_bg .mejs-overlay-loading { display: none !important; }
.main_title { margin-bottom: 20px; }
.et-social-icons { float: right; }
.et-social-icons li { display: inline-block; margin-left: 20px; }
.et-social-icon a { display: inline-block; font-size: 24px; position: relative; text-align: center; transition: color 300ms ease 0s; color: #666; text-decoration: none; }
.et-social-icon span { display: none; }
.et_pb_fullwidth_menu #top-menu-nav, .et_pb_fullwidth_menu #top-menu-nav > ul { float: none; }
.et_pb_fullwidth_menu #top-menu-nav > ul { padding: 20px 0 0 !important; line-height: 1.7em; }
.et_pb_fullwidth_menu #top-menu-nav > ul > li.mega-menu > ul { top: 82px; }
.et_pb_fullwidth_menu #top-menu-nav > ul ul { padding: 20px; text-align: left; }
.et_pb_bg_layout_dark #top-menu-nav > ul > li > a { color: #fff; }
.et_pb_bg_layout_dark #top-menu-nav > ul > li > a:hover { color: rgba(255,255,255,0.8); }
.et_pb_forgot_password { font-size: 12px; margin-top: -5px; }
.et_pb_forgot_password a { color: #fff; text-decoration: underline; }
.et_pb_bg_layout_light .et_pb_forgot_password a { color: #666; }
.et_pb_team_member { margin-bottom: 30px; }
.et_pb_column_4_4 .et_pb_team_member_description, .et_pb_column_3_4 .et_pb_team_member_description, .et_pb_column_2_3 .et_pb_team_member_description { margin-left: 350px; }
.et_pb_column_3_8 .et_pb_team_member_description, .et_pb_team_member_no_image .et_pb_team_member_description { margin-left: 0 !important; }
.et_pb_team_member_image { float: left; width: 320px; margin-right: 30px; }
.et_pb_team_member_description h4 { padding-bottom: 0; }
.et_pb_member_position { color: #aaa; padding-bottom: 7px; }
.entry-content .et_pb_member_social_links { list-style-type: none; margin-top: 20px; padding: 0; }
.et_pb_member_social_links li { display: inline-block; margin-right: 15px; }
.et_pb_member_social_links a { display: inline-block; font-size: 16px; position: relative; text-align: center; transition: color 300ms ease 0s; color: #b2b2b2; text-decoration: none; }
.et_pb_member_social_links span { display: none; }
.et_pb_facebook_icon:before { content: '\e093'; }
.et_pb_twitter_icon:before { content: '\e094'; }
.et_pb_google_icon:before { content: '\e096'; }
.et_pb_linkedin_icon:before { content: "\e09d"; }
.et_pb_column_1_2 .et_pb_team_member_image, .et_pb_column_1_3 .et_pb_team_member_image, .et_pb_column_1_4 .et_pb_team_member_image, .et_pb_column_3_8 .et_pb_team_member_image { float: none; width: auto; margin: 0 0 12px; text-align: center; }
.et_quote_content, .et_link_content, .et_audio_content, .et_pb_audio_module_content { text-align: center; word-wrap: break-word; position: relative; }
.et_link_content, .et_audio_content, .et_pb_audio_module_content, .et_quote_content { padding: 50px 60px; }
.et_quote_content blockquote { padding:0; margin:0; border: none; }
.et_quote_content blockquote p, .et_quote_content blockquote cite, .et_link_content h2, .et_link_content a.et_link_main_url, .et_audio_content h2, .et_pb_audio_module_content h2 { color: #fff !important; }
.et_pb_text_color_dark .et_quote_content blockquote p, .et_pb_text_color_dark .et_quote_content blockquote cite, .et_pb_text_color_dark .et_link_content h2, .et_pb_text_color_dark .et_link_content a.et_link_main_url, .et_pb_text_color_dark .et_audio_content h2, .et_pb_text_color_dark .et_pb_audio_module_content h2, .et_pb_text_color_dark .et_audio_module_meta { color: #666 !important; }
.et_pb_text_color_dark.et_quote_content blockquote p, .et_pb_text_color_dark.et_quote_content blockquote cite, .et_pb_text_color_dark.et_link_content h2, .et_pb_text_color_dark.et_link_content a.et_link_main_url, .et_pb_text_color_dark.et_audio_content h2, .et_pb_text_color_dark.et_pb_audio_module_content h2 { color: #bbb !important; }
.et_pb_text_color_dark.et_quote_content, .et_pb_text_color_dark.et_link_content, .et_pb_text_color_dark.et_audio_content { background-color: #e8e8e8; }
.et_quote_main_link { position: absolute; text-indent: -9999px; width: 100%; height: 100%; display: block; top: 0; left: 0; }
.et_quote_content blockquote p, .et_link_content h2, .et_audio_content h2, .et_pb_audio_module_content h2 { font-size: 26px; margin-top: 0; }
.et_quote_content blockquote p, .et_link_content h2, .et_audio_content h2 { line-height: 44px; }
.et_audio_content h2 { margin-bottom: 20px; }
.et_pb_column_1_2 .et_audio_content h2, .et_pb_column_1_3 .et_audio_content h2, .et_pb_column_3_8 .et_audio_content h2, .et_pb_column_1_4 .et_audio_content h2, .et_pb_blog_grid .et_audio_content h2 { margin-bottom: 9px; margin-top: 0; }
.et_quote_content blockquote cite, .et_link_content a.et_link_main_url { font-size: 18px; font-weight: 200; }
.et_quote_content blockquote cite { font-style: normal; }
.et_pb_column_2_3 .et_quote_content { padding: 50px 42px 45px; }
.et_pb_column_2_3 .et_link_content, .et_pb_column_2_3 .et_audio_content, .et_pb_column_2_3 .et_pb_audio_module_content { padding: 40px 40px 45px; }
.et_pb_column_1_2 .et_quote_content { padding: 35px 40px; }
.et_pb_column_1_2 .et_link_content, .et_pb_column_1_2 .et_audio_content { padding: 35px 40px; }
.et_pb_column_1_2 .et_pb_audio_module_content { padding: 40px 40px 35px; }
.et_pb_column_1_2 .et_quote_content blockquote p, .et_pb_column_1_2 .et_link_content h2, .et_pb_column_1_2 .et_audio_content h2, .et_pb_column_1_2 .et_pb_audio_module_content h2 { font-size: 26px; }
.et_pb_column_1_2 .et_quote_content blockquote p, .et_pb_column_1_2 .et_link_content h2, .et_pb_column_1_2 .et_audio_content h2 { line-height: 32px; }
.et_pb_column_1_2 .et_quote_content blockquote cite, .et_pb_column_1_2 .et_link_content a.et_link_main_url { font-size: 14px; }
.et_pb_column_1_3 .et_quote_content, .et_pb_column_3_8 .et_quote_content, .et_pb_column_1_4 .et_quote_content, .et_pb_blog_grid .et_quote_content { padding: 35px 30px 32px; }
.et_pb_column_1_3 .et_quote_content blockquote p, .et_pb_column_3_8 .et_quote_content blockquote p, .et_pb_column_1_4 .et_quote_content blockquote p, .et_pb_blog_grid .et_quote_content blockquote p, .et_pb_column_1_3 .et_link_content h2, .et_pb_column_3_8 .et_link_content h2, .et_pb_column_1_4 .et_link_content h2, .et_pb_blog_grid .et_link_content h2, .et_pb_column_1_3 .et_audio_content h2, .et_pb_column_3_8 .et_audio_content h2, .et_pb_column_1_4 .et_audio_content h2, .et_pb_blog_grid .et_audio_content h2 { font-size: 18px; line-height: 26px; }
.et_pb_column_3_8 .et_pb_audio_module_content h2, .et_pb_column_1_3 .et_pb_audio_module_content h2 { font-size: 20px; }
.et_pb_column_1_3 .et_quote_content blockquote cite, .et_pb_column_3_8 .et_quote_content blockquote cite, .et_pb_column_1_4 .et_quote_content blockquote cite, .et_pb_blog_grid .et_quote_content blockquote cite, .et_pb_column_1_3 .et_link_content a.et_link_main_url, .et_pb_column_3_8 .et_link_content a.et_link_main_url, .et_pb_column_1_4 .et_link_content a.et_link_main_url, .et_pb_blog_grid .et_link_content a.et_link_main_url { font-size: 14px; }
.et_pb_column_1_3 .et_link_content, .et_pb_column_3_8 .et_link_content, .et_pb_column_1_4 .et_link_content, .et_pb_blog_grid .et_link_content, .et_pb_column_1_3 .et_audio_content, .et_pb_column_1_4 .et_audio_content, .et_pb_column_3_8 .et_audio_content, .et_pb_blog_grid .et_audio_content { padding: 35px 20px; }
.et_pb_column_3_8 .et_pb_audio_module_content, .et_pb_column_1_3 .et_pb_audio_module_content { padding: 40px 20px 35px; }
.et_pb_column_1_4 .et_pb_audio_module_content { padding: 30px 20px 25px; }
.et_pb_column_1_4 .et_audio_content .mejs-controls div.mejs-horizontal-volume-slider, .et_pb_column_1_4 .et_audio_content .mejs-controls .mejs-horizontal-volume-total, .et_pb_column_1_4 .et_pb_audio_module_content .mejs-controls div.mejs-horizontal-volume-slider, .et_pb_column_1_4 .et_pb_audio_module_content .mejs-controls .mejs-horizontal-volume-total { width: 33px; }
.et_pb_blog_grid .et_link_content, .et_pb_blog_grid .et_quote_content { margin: -20px -20px 19px; }
.et_pb_blog_grid .et_audio_content { margin-bottom: 19px; }
.et_audio_container .mejs-container, .et_audio_container .mejs-embed, .et_audio_container .mejs-embed body, .et_audio_container .mejs-container .mejs-controls { background: none; }
.et_audio_container .mejs-time.mejs-currenttime-container, .et_audio_container .mejs-controls .mejs-time-rail .mejs-time-loaded { display: none !important; }
.et_audio_container .mejs-time.mejs-currenttime-container.custom { display: block !important;}
.et_audio_container .mejs-controls .mejs-time-rail .mejs-time-total, .et_audio_container .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total { background: rgba(255, 255, 255, 0.5); border-radius: 5px; height: 4px; margin-top: 8px; }
.et_pb_text_color_dark .et_audio_container .mejs-controls .mejs-time-rail .mejs-time-total, .et_pb_text_color_dark .et_audio_container .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total { background: rgba(153, 153, 153, 0.5); }
.et_audio_container .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total { margin-top: 2px; }
.et_audio_container .mejs-controls .mejs-time-rail .mejs-time-current, .et_audio_container .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current { background: #fff; height: inherit; border-radius: 5px; }
.et_pb_text_color_dark .et_audio_container .mejs-controls .mejs-time-rail .mejs-time-current, .et_pb_text_color_dark .et_audio_container .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current { background: #999; }
.et_audio_container .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current { top: 13px; }
.et_audio_container .mejs-controls .mejs-time-rail .mejs-time-handle, .et_audio_container .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-handle { display: block; top: -3px; border: none; width: 10px; }
.et_audio_container .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-handle { background: #FFF; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; height: 10px; position: absolute; top: 10px; }
.et_audio_container .mejs-container .mejs-controls .mejs-time span { font-size: 18px; font-weight: 200; }
.et_audio_container .mejs-controls div.mejs-horizontal-volume-slider { height: 4px; }
.et_audio_container .mejs-playpause-button button, .et_audio_container .mejs-volume-button button { background: none !important; margin-left: 0 !important; width: 30px !important; height: 30px !important; }
.et_audio_container .mejs-playpause-button button:before { content: "\45"; font-size: 32px; left: 0; top: -8px; }
.et_audio_container .mejs-playpause-button button:before, .et_audio_container .mejs-volume-button button:before { position: absolute; color: #fff; }
.et_pb_text_color_dark .et_audio_container .mejs-playpause-button button:before, .et_pb_text_color_dark .et_audio_container .mejs-volume-button button:before { color: #666; }
.et_pb_text_color_dark .mejs-controls .mejs-time-rail .mejs-time-handle, .et_pb_text_color_dark .et_audio_container .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-handle { background: #666; }
.et_pb_text_color_dark .mejs-container .mejs-controls .mejs-time span { color: #999; }
.et_audio_container .mejs-playpause-button { margin-right: 3px !important; }
.et_audio_container .mejs-controls .mejs-button button:focus { outline: none; }
.et_audio_container .mejs-playpause-button.mejs-pause button:before { content: "\60"; }
.et_audio_container .mejs-volume-button button:before { content: "\e068"; font-size: 18px; top: -1px; left: 4px; }
.et_pb_column_1_3 .et_audio_container .mejs-container .mejs-controls .mejs-time span, .et_pb_column_3_8 .et_audio_container .mejs-container .mejs-controls .mejs-time span, .et_pb_column_1_4 .et_audio_container .mejs-container .mejs-controls .mejs-time span, .et_pb_blog_grid .et_audio_container .mejs-container .mejs-controls .mejs-time span { font-size: 14px; }
.et_pb_column_1_4 .et_audio_container .mejs-time.mejs-currenttime-container.custom { margin-right: 9px !important; }
.et_pb_column_1_3 .et_audio_container .mejs-time.mejs-currenttime-container.custom { margin-right: -1px !important; }
.et_pb_column_3_8 .et_audio_container .mejs-time.mejs-currenttime-container.custom { margin-right: 0px !important; margin-left: 9px; }
.et_pb_column_1_4 .et_audio_container .mejs-time.mejs-currenttime-container.custom { margin-right: 0px !important; }
.et_pb_post .et_pb_slide { min-height: 600px; background-size: cover !important; }
.et_pb_column_3_4 .et_pb_post .et_pb_slide { min-height: 442px; }
.et_pb_column_2_3 .et_pb_post .et_pb_slide { min-height: 390px; }
.et_pb_column_1_2 .et_pb_post .et_pb_slide { min-height: 284px; }
.et_pb_column_1_3 .et_pb_post .et_pb_slide, .et_pb_column_3_8 .et_pb_post .et_pb_slide { min-height: 180px; }
.et_pb_column_1_4 .et_pb_post .et_pb_slide { min-height: 125px; }
.et_pb_blog_grid .et_pb_post .et_pb_slide { min-height: 180px; }
.et_full_width_page .et_gallery_item:nth-child(3n) { margin-right: 60px; }
.et_full_width_page .et_gallery_item:nth-child(3n+1) { clear: none; }
.et_full_width_page .et_gallery_item:nth-child(4n) { margin-right: 0; }
.et_full_width_page .et_gallery_item:nth-child(4n+1) { clear: both; }
.et_pb_audio_module { margin-bottom: 30px; position: relative; }
.et_pb_audio_cover_art { position: absolute; top: 0; left: 0; height: 100%; width: 220px; -moz-background-size: cover; -webkit-background-size: cover; background-size: cover; background-repeat: no-repeat; background-position: center; }
.et_pb_audio_module_content { margin-left: 220px; }
.et_pb_audio_module_content h2 { margin-bottom: -5px; }
.et_audio_module_meta { margin-bottom: 17px; color: #fff; }
.et_pb_column_2_3 .et_pb_audio_cover_art { width: 180px; }
.et_pb_column_2_3 .et_pb_audio_module_content { margin-left: 180px; }
.et_pb_column_1_2 .et_pb_audio_cover_art, .et_pb_column_3_8 .et_pb_audio_cover_art, .et_pb_column_1_3 .et_pb_audio_cover_art, .et_pb_column_1_4 .et_pb_audio_cover_art { float: none; width: 100%; position: relative; }
.et_pb_column_1_2 .et_pb_audio_module_content, .et_pb_column_3_8 .et_pb_audio_module_content, .et_pb_column_1_3 .et_pb_audio_module_content, .et_pb_column_1_4 .et_pb_audio_module_content { margin-left: 0; }
.et_pb_column_1_4 .et_audio_module_meta { font-size: 12px; }
.et_pb_audio_no_image .et_pb_audio_module_content { margin-left: 0; }
.et_pb_column_1_2 .et_pb_audio_cover_art { height: 380px; }
.et_pb_column_3_8 .et_pb_audio_cover_art { height: 275px; }
.et_pb_column_1_3 .et_pb_audio_cover_art { height: 240px; }
.et_pb_column_1_4 .et_pb_audio_cover_art { height: 170px; }
/*------------------------------------------------*/
/*---------------[DROPDOWN MENU]------------------*/
/*------------------------------------------------*/
#et-top-navigation { float: right; }
.nav li { position: relative; }
.nav li ul { position: absolute; top: 52px; left: -27px; padding: 20px; }
.et-fixed-header .nav li ul { top: 38px; }
.et-fixed-header .nav li li ul { top : -3px ;}
.nav li ul { z-index: 9999; width: 200px; background: #fff; visibility: hidden; opacity: 0; border-top: 3px solid #7EBEC5; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); }
.nav li ul { -webkit-transform: translate3d(0,0,0); text-align: left; }
.nav li.et-hover > ul { visibility: visible; }
.nav li:hover > ul, .nav li.et-hover > ul { -moz-transition: opacity .2s ease-in-out; -webkit-transition: opacity .2s ease-in-out; transition: opacity .2s ease-in-out; }
.nav li:hover > ul { opacity: 1; visibility: visible; }
.nav li li { padding: 0; margin:0; }
.nav li li ul { z-index: 1000; top: -3px; left: 220px; }
.nav li:hover { visibility: inherit; /* fixes IE7 'sticky bug' */ }
.nav li li a, .et_mobile_menu li a { font-size: 14px; -moz-transition: all 0.2s ease-in-out; -webkit-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; }
.nav ul li a:hover, .et_mobile_menu li a:hover { color: #111; background-color: rgba(0,0,0,0.03); }
.et_nav_text_color_light .nav ul li a:hover, .et_nav_text_color_light .et_mobile_menu li a:hover { color: #fff !important; }
#top-menu li li a { padding: 10px 20px; width: 160px; }
.et_nav_text_color_light #top-menu li li a { color: rgba( 255, 255, 255, 0.7 ); }
.et_nav_text_color_light #top-menu li li a:hover { color: rgba( 255, 255, 255, 1 ); }
#et-secondary-nav li { position: relative; text-align: right; }
#et-secondary-nav li > a { padding-bottom: 8px; }
#et-secondary-nav > li > a { padding-bottom: 12px; }
#et-secondary-nav li ul { position: absolute; top: 23px; left: -132px; padding: 20px; }
#et-secondary-nav li ul ul { top: -20px; left: -209px; }
#et-secondary-nav li ul li { display: block; margin-left: -20px; padding-left: 20px; }
#et-secondary-nav li ul { z-index: 999999; background: #fff; visibility: hidden; opacity: 0; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); }
#et-secondary-nav li ul { -webkit-transform: translate3d(0,0,0); }
#et-secondary-nav li.et-hover > ul { visibility: visible; }
#et-secondary-nav li:hover > ul, #et-secondary-menu li.et-hover > ul { -moz-transition: opacity .2s ease-in-out; -webkit-transition: opacity .2s ease-in-out; transition: opacity .2s ease-in-out; }
#et-secondary-nav li:hover > ul { opacity: 1; visibility: visible; }
#et-secondary-nav li li { padding: 0; margin: 0; }
#et-secondary-nav li:hover { visibility: inherit; /* fixes IE7 'sticky bug' */ }
#et-secondary-nav li li a { width: 150px; font-size: 12px; line-height: 1em; margin-right: 0; padding: 10px; display: block; -moz-transition: all 0.2s ease-in-out; -webkit-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; }
#et-secondary-nav ul li a:hover { background-color: rgba(0,0,0,0.03); }
/*---------------[DROPDOWN ARROWS]------------------*/
#top-menu .menu-item-has-children > a:first-child:after, #et-secondary-nav .menu-item-has-children > a:first-child:after { transform:rotate(90deg); -ms-transform:rotate(90deg); -webkit-transform:rotate(90deg); -moz-transform:rotate(90deg); content: ' >\0000a0'; font-size: 9px; position: absolute; right: 0; top: 2px; }
#top-menu .menu-item-has-children > a:first-child, #et-secondary-nav .menu-item-has-children > a:first-child { padding-right: 14px;}
#top-menu li li.menu-item-has-children > a:first-child:after { right: 20px;}
/*---------------[MEGA MENU]------------------*/
#top-menu li.mega-menu { position: inherit; }
#top-menu li.mega-menu > ul { top: 62px; padding: 30px 20px; position: absolute !important; width: 1040px !important; left:0 !important;}
#top-menu li.mega-menu ul li { margin: 0; float: left!important; display: block !important; padding: 0 !important; }
#top-menu li.mega-menu li > ul { padding: 0px; border: none; left: auto; top: auto; width: 240px !important; position: relative; }
#top-menu li.mega-menu li ul { visibility: visible; opacity: 1; display: none; }
#top-menu li.mega-menu.et-hover li ul { display: block; }
#top-menu li.mega-menu:hover > ul { opacity: 1 !important; visibility: visible !important; }
#top-menu li.mega-menu > ul > li > a:first-child { padding-top: 0 !important; font-weight: bold; border-bottom: 1px solid rgba(0,0,0,0.03); }
#top-menu li.mega-menu > ul > li > a:first-child:hover { background-color: transparent !important; }
#top-menu li.mega-menu li > a { width: 200px !important; }
#top-menu li.mega-menu > ul > li { margin: 0 10px; }
#top-menu li.mega-menu .menu-item-has-children > a:first-child:after { display: none; }
.et-fixed-header #top-menu li.mega-menu > ul { top: 42px; }
/*---------------[MOBILE MENU]------------------*/
.et_mobile_menu { position: absolute; left: 0; top: 62px; padding: 5%; background: #fff; width: 90%; visibility: visible; opacity: 1; display: none; z-index: 9999; border-top: 3px solid #7EBEC5; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); }
.et-fixed-header .et_mobile_menu { top: 41px; }
.et_mobile_menu li ul { visibility: visible !important; display: block !important; padding-left: 10px; }
.et_mobile_menu li li { padding-left: 5%;}
.et_mobile_menu li a { border-bottom: 1px solid rgba(0,0,0,0.03); color: #666; padding: 10px 5%; width: 90%; display: block; }
.et_nav_text_color_light .et_mobile_menu li a { color: rgba( 255, 255, 255, 0.7 ); }
.et_mobile_menu .menu-item-has-children > a { font-weight: bold; background-color: rgba(0,0,0,0.03); }
.et_mobile_menu li .menu-item-has-children > a { background-color: transparent; }
#et_mobile_nav_menu { float: right; display: none; }
.mobile_menu_bar { position: relative; }
.mobile_menu_bar:before { content: "\61"; font-size: 32px; left: 0; position: relative; top: 0; }
.et-fixed-header .mobile_menu_bar:before { top: -6px; }
/*------------------------------------------------*/
/*-------------------[COMMENTS]-------------------*/
/*------------------------------------------------*/
#comment-wrap { padding-top: 75px; }
.single-project #comment-wrap { padding-top: 0px; }
.comment-body { position: relative; padding: 0 110px 0 100px; margin-bottom: 48px; min-height: 87px; }
.comment_avatar { left: 0; position: absolute; top: 7px; }
.comment_avatar img { display: block; height: auto; max-width: 100%; width: auto; }
.comment_postinfo { margin-bottom: 8px; }
span.fn, span.fn a { color: #000; font-weight: 700; text-decoration: none; font-size: 16px; display: inline-block; }
span.comment_date { color: #000; font-size: 14px; font-weight: 300; }
.comment-reply-link { position: absolute; top: 7px; right: 0; display: block; color: #fff; }
.comment-reply-link:hover, .form-submit:hover { text-decoration: none; }
.comment .children { margin-left: 100px; padding-left: 0 !important; }
.comment #respond { margin: -30px 0 0; }
#respond { padding-top: 17px; }
#commentform { padding-bottom: 60px; }
#commentform input[type="text"] { width: 47%; }
#commentform textarea { width: 100%; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; }
#commentform textarea, #commentform input[type="text"] { padding: 12px; color: #999; background-color: #eee; border: none; font-size: 18px; }
.form-submit { float: right; }
.form-submit input { display: block; }
#reply-title small { display: block; font-size: 14px; font-weight: 400; }
/*------------------------------------------------*/
/*---------------------[FOOTER]-------------------*/
/*------------------------------------------------*/
#footer-widgets { padding-top: 80px; }
.footer-widget { float: left; width: 225px; margin: 0 60px 50px 0; color: #fff; }
.last { margin-right: 0; }
#main-footer .et_pb_widget { margin: 0; }
#footer-widgets .fwidget { padding-bottom: 15px; }
#footer-widgets .footer-widget li { padding: 0 0 10px 14px; position: relative; }
#footer-widgets .footer-widget li:before { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; border-style: solid; border-width: 3px; content: ""; left: 0; position: absolute; top: 9px; }
#footer-widgets .footer-widget li a { color: #fff; text-decoration: none; }
#footer-widgets .footer-widget li a:hover { color: rgba(255, 255, 255, 0.7); }
#footer-bottom { background-color: #1f1f1f; background-color: rgba(0, 0, 0, 0.32); padding: 15px 0 5px; }
#footer-info { text-align: left; color: #666; padding-bottom: 10px; float: left; }
#footer-info a { font-weight: 700; color: #666; }
#et-footer-nav { background-color: rgba(255,255,255,0.05); }
.bottom-nav { padding: 15px 0; }
.bottom-nav li { display: inline-block; font-size: 14px; padding-right: 22px; }
.bottom-nav a { color: #bbb; }
.bottom-nav a:hover { color: rgba(187, 187, 187, 0.7); }
/*------------------------------------------------*/
/*--------------------[SIDEBAR]-------------------*/
/*------------------------------------------------*/
.widget_search .screen-reader-text { display: none;}
.widget_search #s{ color: #666 !important; width:58%; padding:6px 3% 7px 3%; margin:0; -webkit-border-top-left-radius: 3px; -webkit-border-bottom-left-radius: 3px; -moz-border-radius-topleft: 3px; -moz-border-radius-bottomleft: 3px; border-top-left-radius: 3px; border-bottom-left-radius: 3px; border-color: #ddd; }
.widget_search #searchform { position: relative; }
.widget_search #searchsubmit{ font-family: 'Raleway', Arial, sans-serif; font-size: 12px ; font-weight: 400 !important; color:#666; background-color: #ddd; width:34%; max-width: 90px; margin: 0 0 0 -4px; padding: 11px 10px 10px 10px !important; border: none; -webkit-border-top-right-radius: 3px; -webkit-border-bottom-right-radius: 3px; -moz-border-radius-topright: 3px; -moz-border-radius-bottomright: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; line-height: 14px; width: 63px; height: 31px !important; position: absolute; right: 5px; top: 0; line-height: 1; }
.osx .widget_search #searchsubmit { height: 30px !important; }
.osx.gecko .widget_search #searchsubmit { height: 29px !important; }
.safari .widget_search #searchsubmit { right: 8px; }
.osx.safari .widget_search #searchsubmit { height: 28px !important; }
.gecko .widget_search #searchsubmit { padding: 7px 10px 10px 10px !important;}
.ie .widget_search #searchsubmit { height: 30px !important; }