-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
1327 lines (1027 loc) · 105 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
@charset "utf-8";
/* CSS Document */
@import url(http://fonts.googleapis.com/css?family=Josefin+Sans:100,300,400,100italic,300italic);
@import url(https://fonts.googleapis.com/css?family=PT+Sans+Narrow:400,700);
@import "css/reset.css";
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.General Styles
1.1. Body
1.2. Fonts
1.3. Headings
1.4. Text Elements
1.5. Forms
1.6. Transition
1.7. Box sizing
1.8. Images
1.9. Tables
1.10. Widgets
1.11. Definition Lists
1.12. Woocommerce
2.Layout
2.1. Wrapper
2.2. Container
2.3. Header
2.4. Main
2.4.1. BREAD-CRUMB
2.4.2. Fullwidth - Page Title
2.4.3. Portfolio
2.4.4. Blog
2.4.5. Frames
2.4.6. About Us
2.4.7. Contact Us
2.4.8. Recent Gallery
2.4.9. Shop
2.5. Footer
3.Back To Top
4.Retina Ready
/*----*****---- << 1.General Styles >> ----*****----*/
/*----*****---- << 1.1. Body >> ----*****----*/
/*----*****---- << Rating Star Font >> ----*****----*/
.nobr { white-space: nowrap}
@font-face {
font-family: 'star';
src: url('fonts/star.eot');
src: url('fonts/star.eot?#iefix') format('embedded-opentype'), url('fonts/star.woff') format('woff'), url('fonts/star.ttf') format('truetype'), url('fonts/star.svg#star') format('svg');
font-weight: normal;
font-style: normal
}
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
body { font-size: 16px; font-weight: normal; line-height: 28px;}
/*----*****---- << 1.2. Fonts >> ----*****----*/
body, p, input, textarea, .mailchimp-form p input, input[type="submit"], input[type="button"], .about-details p, .breadcrumb h2 span, .dt-sc-service-content p, .shop-dropdown ul li span, .shop-dropdown span span,
.project-details ul.client-details li span, .project-details ul.client-details li p { font-family: 'PT Sans Narrow', sans-serif;}
.main-title h1, .main-title h2, .main-title h3, .main-title h4, .main-title h5, .main-title h6, .main-title h3, .entry-details .entry-title h3, .about-section h3, .breadcrumb h2, blockquote q, .post-author-details .author-desc p, .total-overlay-sticky #navigation .sub-menu a, .total-overlay-sticky .menu.type2 > li > a, header nav ul li a, header .copyrights { font-family: 'Josefin Sans', sans-serif; font-weight: 100;}
@media screen and (-webkit-min-device-pixel-ratio:0) { /* Safari only override */
::i-block-chrome, .main-title h1, .main-title h2, .main-title h3, .main-title h4, .main-title h5, .main-title h6, .main-title h3, .entry-details .entry-title h3, .about-section h3, .breadcrumb h2, blockquote q, .post-author-details .author-desc p,
.total-overlay-sticky #navigation .sub-menu a, .total-overlay-sticky .menu.type2 > li > a, header nav ul li a, header .copyrights { font-weight: 300; }
}
.dt-sc-ico-content h6, textarea { font-family: Arial, Helvetica, sans-serif;}
/*----*****---- << 1.3. Headings >> ----*****----*/
h1, h2, h3, h4, h5, h6 { font-weight:normal; line-height:30px; margin-bottom:20px; text-transform: uppercase; }
h1{ font-size:36px; }
h2{ font-size:30px; }
h3{ font-size:26px; }
h4{ font-size:20px; }
h5{ font-size:18px; }
h6{ font-size:16px; margin-bottom:20px; }
/*----*****---- << 1.4. Text Elements >> ----*****----*/
a { text-decoration:none; }
a img{ border:none; }
img { max-width: 100%; }
.hidden, .aligncenter.hidden, img.aligncenter.hidden {display:none;}
strong{ font-weight: bold; }
em{ font-style: italic; }
address { display:block; margin:10px 0px 20px; }
abbr { border-bottom:1px dotted #868686; cursor:help; }
ins { background:#FFF9C0; color:#868686; }
sub, sup { font-size:75%; position:relative; vertical-align:baseline; }
sub { bottom: -3px; }
sup { top: -5px; }
p { line-height:28px; margin-bottom:10px; }
ul, ol, pre, code{ margin-bottom:20px; }
ul, .menu.type2 ul { list-style-type:none; list-style-position:inside; }
ul li { padding-bottom:10px; }
ul li ul { list-style-type:disc; padding-left:20px; margin:10px 0px 0px; }
ul ul ul { margin-bottom:0px; list-style-type:circle; }
ol{ list-style-type:decimal; list-style-position:outside; }
ol li { padding-bottom:10px; padding-left: 5px; }
ol li ol { margin-bottom:0px; list-style-type:lower-alpha; }
ol ol ol { margin-bottom:0px; list-style-type:lower-roman; }
blockquote p { margin-bottom:0px; }
blockquote cite { float:right; margin:10px 0px 0px; font-size:14px; }
blockquote, q { float: none; quotes: inherit !important;}
blockquote.alignleft { margin-right:20px; text-align:left; width:30%; float:left; }
blockquote.alignright { margin-left:20px; text-align:left; width:30%; float:right; }
blockquote.aligncenter { width:100%; text-align:center; }
pre, code{ border-left:3px solid #f8cc6e; background-color:#e6e2d6; display:block; padding:10px; font-size:11px; font-family: monospace; width:96.5%; overflow:auto; }
hr{ border:none; height:1px; margin:30px 0; float: left; width:100%; }
/* due to IE <HR> margin bugs I had to made classed and apply them to div to achieve the effect of a <HR> */
.dt-sc-hr { background:url(images/splitter.png); height:10px; width:100%; clear:both; display:block; float:left; margin:40px 0px; position:relative; z-index:1; }
.dt-sc-hr.top, .hr-border.top { width:97%; }
.dt-sc-hr.top, .hr-border.top { background-position:right center; text-align:right; }
.dt-sc-hr.top a, .hr-border.top a { color:#999589; background:transparent; font-size:11px; line-height:16px; padding-left:5px; position:absolute; right:-21px; top:-5px; }
.dt-sc-one-half pre, .dt-sc-one-half code { width:94.7%; }
.clear { float:none; clear:both; margin:0px; padding:0px; }
.float-right { float:right; }
.float-left { float:left; }
.middle-align { text-align:center; }
.hidden { display:none; }
.post-edit-link { background:#e5e5e5; color:#5a5a5a; float:right; clear:both; margin:20px 0px 0px; line-height:24px; padding:0px 10px; font-size:12px; }
.post-edit-link:hover { background:#4C4C4C; color:#ffffff; text-shadow:0px 1px 0px #0e4b6e; }
/*----*****---- << 1.5. Forms >> ----*****----*/
input[type="text"], input[type="password"], input[type="email"], input[type="url"], input[type="tel"], input[type="number"], input[type="range"], input[type="date"], input[type="search"], textarea, input.text { -moz-appearance: none;
display: inline-block; font-size: 13px; margin: 0; padding: 16px 15px; width: 100%;}
fieldset{ border:1px solid #eaeaea; padding:15px; margin:0 0 20px 0; }
legend{ font-weight: bold; }
.error, input.error[type="text"], input.error[type="email"], input.error[type="password"], textarea.error, input.error[type="tel"] { border-color: #F92C2C; }
#footer .widget .mailchimp-form input.error[type="email"] { border:1px solid #F92C2C; }
.error-msg, .success-msg { border: 1px solid; float: left; display: inline-block; padding: 5px 15px 5px 35px; position: relative; clear: both;}
.error-msg { border-color:#ff9999; color: #d01313; }
.success-msg { border-color:#77be32; color: #77be32; }
.error-msg:before, .success-msg:before { font-family: FontAwesome; font-size: 17px; font-style: normal; font-weight: normal; left: 13px; position: absolute; text-decoration: inherit; top: 5px; }
.error-msg:before { content:"\f00d"; color:#c54228; }
.success-msg:before { content:"\f00c"; color:#77be32; }
input[type=submit], input[type=button] { -webkit-appearance: none; }
/*----*****---- << 1.6. Transition >> ----*****----*/
a, .portfolio, .dt-sc-button, .submit, .portfolio figure::before, .menu a::before, .menu a::after, .menu li a span, .menu li a:hover span, .dt-sc-dropcap-bordered, .portfolio figcaption::before, .portfolio figure figcaption, .portfolio figure:hover
figcaption, h5.dt-sc-toggle, h5.dt-sc-toggle-accordion, .dt-sc-toggle-frame-set .dt-sc-toggle-accordion:hover::before, .dt-sc-toggle-accordion.active a, .dt-sc-toggle-accordion.active:before, .dt-sc-toggle.active a, .dt-sc-toggle.active:before,
h5.dt-sc-toggle::before, h5.dt-sc-toggle-accordion::before, .dt-sc-icon-content-wrapper .dt-sc-icon-wrapper .dt-sc-icon i, .dt-sc-icon-content-wrapper:hover .dt-sc-icon-wrapper .dt-sc-icon i, .dt-sc-icon-content-wrapper .dt-sc-ico-content p,
.dt-sc-icon-content-wrapper .dt-sc-ico-content p a, .dt-sc-icon-content-wrapper:hover .dt-sc-ico-content p, .dt-sc-icon-content-wrapper:hover .dt-sc-ico-content p a, .dt-sc-icon-content-wrapper .dt-sc-ico-content,
.dt-sc-icon-content-wrapper:hover .dt-sc-ico-content, .blog-entry .entry-metadata p a i, .entry-details .entry-metadata p, .blog-items .blog-entry::after, .blog-items .blog-entry::before, .blog-items .blog-entry::before,
.blog-items .blog-entry:hover::before, .blog-items .blog-entry:focus::before, .blog-items .blog-entry:active::before,.comment .author-metadata p span, .comment .author-metadata p:hover span, #commentform .submit .button,
.enquiry-form .submit .button, .dt-sc-contact-details span, .products .product-title, .products .product-thumb::after, .products .product-thumb::before, .active.shop-dropdown ul li span, .shop-dropdown ul li span::before, .tagcloud a,
.tagcloud a:hover, .woocommerce .quantity .plus, .woocommerce .quantity .minus, .woocommerce-page .quantity .plus, .woocommerce-page .quantity .minus, .woocommerce .button, .woocommerce-page .button, .button,
.cart-wrapper .cart-thumb-categories li .product > img, .type2.dt-sc-button, .type2.dt-sc-button:after, .dt-sc-button.with-icon i.fa, .dt-sc-button.with-icon i.fa::after, .widget.widget_categories ul li span, .widget.widget_archive ul li span,
.widget.widget_categories ul li, .widget.widget_archive ul li, .widget.widget_categories ul li:hover:before, .widget.widget_archive ul li:hover:before, .widget ul li::before, .blog-items .blog-entry, .blog-items .blog-entry:hover, header,
.header.nav-is-visible, header nav a, header .social-icons a, header .close, header .close:before, header .close:after,.header-bar .share-mini .icons a, .button-small, .header-bar .share-mini .show, .header-bar .menu-nav span,
.header-bar .menu-nav span:before, .header-bar .menu-nav span:after, header nav ul.menu.type3 li a span.arrow::before, .dt-sc-portfolio-container .portfolio figure img, .dt-sc-portfolio-container .portfolio figure:hover img, .dt-sc-contact-info a:hover
{ -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; }
header, .header-bar, .mCSB_scrollTools {
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}
/*----*****---- << 1.7. Box sizing >> ----*****----*/
input[type="text"], input[type="password"], input[type="email"], input[type="url"], input[type="tel"], input[type="number"], input[type="range"], input[type="date"], input[type="search"], textarea, input.text, .portfolio-detail, .portfolio-title,
.widget ul.tweet_list p, .entry-post-content, ul.commentlist li .comment-details, .side-nav-container ul li, .products .product-container, .intro-text, .author-desc, .widget ul.tweet_list li, .products .product-title a,
.products .product-title { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
/*----*****---- << 1.8. Images >> ----*****----*/
img { max-width:100%; }
.wp-caption { background:#C4C1AE; border:1px solid #C4C1AE; margin-bottom:10px; margin-top:10px; max-width:96%; padding:5px 7px 7px 5px; }
.wp-caption img { display:block; margin: 0 auto; padding:6px; max-width:98%; }
.wp-caption .wp-caption-text { text-align:center; padding-top:0px; margin:0px; }
img.size-auto, img.size-large, img.size-full, img.size-medium { max-width:99.6%; height: auto; }
.alignleft, img.alignleft { display: inline; float: left; margin-right: 15px; }
.alignright, img.alignright { display: inline; float: right; margin-left: 15px; text-align:right; }
.aligncenter, img.aligncenter { clear: both; display: block; margin-left: auto; margin-right: auto; text-align:center; }
.alignleft, .alignright, .aligncenter, .alignnone, img.alignleft, img.alignright, img.aligncenter { margin-bottom:20px; }
.align-center { margin:0 auto; display:block; }
/*----*****---- << 1.9. Tables >> ----*****----*/
table { border-collapse:separate; border-spacing:0; margin-bottom:20px; width:100%; clear:both; border:1px solid; border-bottom:0px; border-right:0px; }
th { border-right:1px solid; border-bottom: 1px solid; padding:17px 15px; font-size:16px; line-height:normal; font-weight:bold; text-transform:uppercase; text-align:center; }
td { border-right:1px solid; border-bottom:1px solid; font-size:14px; line-height:normal; text-align:center; padding:13px 15px; }
/*----*****---- << 010. Widgets >> ----*****----*/
.widget { float:left; width:100%; padding:0px 0px 50px; margin:0px; }
.widget:last-child { padding: 0; }
.widget .widgettitle { position:relative; display:inline-block; width:100%; margin-bottom:40px; }
.widget .widgettitle h3, .megamenu-child-container > ul.sub-menu > li > .widgettitle > a { position:relative; text-transform:capitalize; font-size:22px; font-weight:100; float:left; clear:both; padding-right:10px; margin-bottom:5px; line-height: normal; }
.secondary-sidebar .widget .widgettitle { font-weight:bold; font-size:22px; text-transform:uppercase; }
.widget ul { float:left; width:100%; margin:0px; padding:0px; }
.widget ul li { display:block; clear:both; }
.widget ul li a { display:block; }
.widget ul ul { margin-top:10px; }
.widget ul li { position:relative; padding:0px 0px 0px 25px; }
.widget ul li:before { font-family:FontAwesome; font-style:normal; font-weight:normal; text-decoration:inherit; font-size:14px; position:absolute; top:0px; left:0px; content: "\f0c1"; }
.widget.widget_nav_menu ul li:before { content:"\f105"; }
.widget.widget_pages ul li:before { content: "\f0e7"; }
.widget.widget_categories ul li, .widget.widget_archive ul li { padding-left:30px; margin-bottom: 5px; padding-bottom: 5px; line-height:30px; border-bottom:3px double; }
.widget.widget_archive ul li { padding-left:25px; }
.widget.widget_categories ul li:last-child { border-bottom: 3px double; }
.widget.widget_categories ul li:before { content:""; left:5px; }
.widget.widget_categories ul li span, .widget.widget_archive ul li span { position: absolute; right: 0; bottom: 0; width: 25px; height: 25px; border: 3px double; float: left; line-height: 21px; text-align: center; font-size: 14px; }
.widget.widget_categories ul li:hover, .widget.widget_archive ul li:hover { border-bottom: 3px double;}
.widget.widget_categories ul li a { display:block; }
.widget.widget_categories ul li:hover span, .widget.widget_archive ul li:hover span { border: 3px double; }
.widget.tweetbox ul li:before { content:""; }
.widget.tweetbox ul li { border:none; padding-left:0px; }
.widget.tweetbox ul li .tweet-time, .widget.tweetbox ul li a:hover { color:#ac9d8e; }
.widget.tweetbox ul li:hover:before { color:#37251b !important; }
.widget.tweetbox ul li .tweet-thumb { margin:5px 15px 0px 0px; float:left; }
.widget.widget_tweetbox ul li .tweet_time a, #footer .widget.widget_tweetbox ul li .tweet_time a { font-style:italic; }
#footer .widget.widget_tweetbox ul li .tweet_time a:hover { color:#fff; }
.widget .recent-posts-widget ul li { padding:0px; position:relative; }
.widget .recent-posts-widget ul li:before { content:""; }
#footer .widget .recent-posts-widget li:before { background:#fff; content:""; display:inline-block; width:0; height:100%; position:absolute; left:0; bottom:0; z-index:-1 }
#footer .widget .recent-posts-widget li:hover:before { width:100%; }
#footer .widget .recent-posts-widget ul li:hover h4 a, #footer .widget .recent-posts-widget ul li:hover .entry-metadata .date { color:#000; }
.widget .recent-posts-widget ul li, .widget.widget_popular_entries ul li { padding:0px 0px 25px; border:none; line-height:normal; }
.widget.widget_popular_entries ul li:last-child { padding:0px; }
.widget .recent-posts-widget ul li .entry-thumb, .widget.widget_popular_entries ul li .entry-thumb { float:left; margin:0px 20px 10px 0px; width:69px; height:69px; padding:0px; }
.widget.widget_popular_entries .recent-gallery-widget ul li a { height: auto; margin: 0 0 10px; width: auto;}
.widget.widget_popular_entries ul li h5 { display: inline-block; font-size: 16px; line-height: 20px; margin: 0; font-weight:700; text-transform: none;}
.widget .recent-posts-widget ul li h4, .widget.widget_popular_entries ul li h6 { font-size:15px; line-height:20px; text-transform:none; margin:0px 0px 12px 0px; display:inline-block; }
.widget .recent-posts-widget ul li .entry-details { padding-left:75px; margin:0px; }
.widget .recent-posts-widget ul li .entry-details .entry-title { margin:0px 0px 10px; position:relative; top:5px; }
.widget .recent-posts-widget ul li .entry-metadata .date { display:table; letter-spacing:0px; font-size:13px; }
.widget .recent-posts-widget ul li .entry-metadata .date .day { display:table-cell; vertical-align:middle; line-height:16px; }
.widget .recent-posts-widget ul li .entry-metadata .date span { position:inherit; }
.widget .recent-posts-widget ul li .entry-details .entry-metadata p, .widget .recent-posts-widget ul li .entry-details .entry-metadata p a { display:inline; }
.widget .recent-posts-widget ul li .entry-details .entry-metadata p a span, .widget .recent-posts-widget ul li .entry-details .entry-metadata span { color:#ac9d8e; }
.widget .recent-posts-widget ul li .entry-body { clear:both; }
.widget .recent-posts-widget ul li .entry-body p { margin:0px; }
.widget .recent-posts-widget ul li .entry-details .entry-metadata { margin-bottom:10px; margin-top:0px; }
.widget.widget_text ul li:before { content:none; }
.widget.widget_text ul li { padding-left:0; font-size:13px; border-bottom:1px solid #222; line-height:30px; }
.widget_popular_entries.widget li { padding:0; }
.widget_popular_entries.widget li:before { content:none; }
.widget.widget_recent_entries ul li { margin-bottom:10px; }
footer .widget.widget_recent_entries ul li { padding:10px; border:1px solid #222; }
.widget.widget_recent_entries ul li span.post-date { color: #bdbdbd; font-size:13px; }
.widget.widget_recent_entries ul li span.post-date:before { content: "\f073"; font-family:FontAwesome; margin-right:7px; }
.widget.widget_recent_comments ul li:before { content:"\f0e6"; }
.widget.widget_archive ul li:before { content:""; }
.widget.widget_ratings-widget ul li:before { content:"\f006"; }
.widget.widget_sensei_lesson_component ul li:before { content:"\f02d"; }
.widget.widget_meta ul li:before { content:"\f044"; }
.widget.widget_recent_comments ul li a, .widget.tweetbox ul li a { display:inline; }
.widget.widget_search #searchform { float: left; position: relative; width: 100%;}
.widget_search #searchform p.input-text { margin: 0;}
.widget .dt-sc-social-icons li { padding:0; clear:none; }
.widget .dt-sc-social-icons li a { width:48px; height:48px; line-height:48px; }
.widget .dt-sc-social-icons li:hover a { color:#fff; }
.widget .dt-sc-social-icons li:before { content: none; }
.widget.widget_tag_cloud .tagcloud a, .widget.widget_product_tag_cloud .tagcloud a { margin:0px 1px 10px 0px; text-transform: uppercase; font-size: 12px; display:inline-block; padding:10px 20px; position:relative; }
.widget #wp-calendar caption { font-weight:300; font-size:16px; margin-bottom:10px; }
.widget #wp-calendar th { padding:10px; }
.widget #wp-calendar td { padding:9px 10px; }
.widget.flickrbox .flickr-widget div { float:left; max-width:75px; margin:0px 7px 7px 0px; }
.widget.flickrbox .flickr-widget div a { display:block; line-height:0px; }
.widget.flickrbox .flickr-widget div img { height:auto; transition: opacity .5s ease-in-out; -moz-transition: opacity .5s ease-in-out; -webkit-transition: opacity .5s ease-in-out; opacity:1; filter:alpha(opacity=100); }
.widget.flickrbox .flickr-widget div img:hover { opacity:0.4; filter:alpha(opacity=40); }
.widget.widget_text .textwidget ul.dt-sc-fancy-list li:before { top: 1px; }
.widget.quick_links ul li a { font-weight:500; }
.widget.quick_links ul li a:hover { color:#3a3a3a; }
.widget-intro-text { background:#f4f4f4; padding:20px 30px; }
.widget-intro-text .dt-sc-button { font-weight:bold; }
.widget-intro-text .dt-sc-button.medium { background-image:none; }
.widget.quick_links li { border-top:1px solid #f4f4f4; line-height:35px; }
.widget.quick_links li:last-child { border-bottom:1px solid #f4f4f4; }
/*----*****---- << 1.11. Definition Lists >> ----*****----*/
dl { margin:0px 20px; }
dl.gallery-item { margin:0px; }
.gallery-caption { margin-bottom:10px; }
.gallery-item img { border:2px solid #C4C1AE !important; }
dt { font-weight:bold; font-size:14px; margin-bottom:10px; }
dd { margin-bottom:20px; line-height:20px; }
/*----*****---- << 1.12. Woocommerce >> ----*****----*/
.woocommerce form { float: left; margin: 0 0 50px; width: 100%;}
.woocommerce table.shop_table, .woocommerce-page table.shop_table { border-collapse: separate; margin: 0 -1px 24px 0; text-align: left; width: 100%; }
.woocommerce table { border-left: 1px solid; border-top: 1px solid;}
.woocommerce td span { font-size: 16px;}
.woocommerce .product-name > p { color: #cccccc;}
.woocommerce .quantity .plus:hover, .woocommerce .quantity .minus:hover, .woocommerce-page .quantity .plus:hover, .woocommerce-page .quantity .minus:hover { background: rgba(0, 0, 0, 0); }
.woocommerce .quantity .qty, .woocommerce-page .quantity .qty { color: #FFFFFF;}
.woocommerce table.cart a.remove:hover, .woocommerce-page table.cart a.remove:hover, .woocommerce #content table.cart a.remove:hover, .woocommerce-page #content table.cart a.remove:hover { color: #ff0000;}
.woocommerce input[type="submit"], .woocommerce input[type="reset"], .woocommerce input[type="button"]{ cursor: pointer;}
.woocommerce table.cart th, .woocommerce-page table.cart th, .woocommerce #content table.cart th, .woocommerce-page #content table.cart th, .woocommerce table.cart td, .woocommerce-page table.cart td, .woocommerce #content table.cart td, .woocommerce-page #content table.cart td { vertical-align: middle; }
.woocommerce table.shop_table th, .woocommerce-page table.shop_table th { font-size: 16px; font-weight: 400; line-height: 18px; padding: 15px 12px; }
.woocommerce table.cart .product-thumbnail, .woocommerce-page table.cart .product-thumbnail, .woocommerce #content table.cart .product-thumbnail, .woocommerce-page #content table.cart .product-thumbnail { min-width: 32px; }
.woocommerce table.shop_table td, .woocommerce-page table.shop_table td { padding: 15px 35px; vertical-align: middle; }
.woocommerce table.shop_table td h6 { margin: 0; }
.woocommerce table.cart td.actions, .woocommerce-page table.cart td.actions, .woocommerce #content table.cart td.actions, .woocommerce-page #content table.cart td.actions { text-align: right; }
.woocommerce .cart-collaterals .coupon { float:left; display:inline-block; margin-right:20px; width: 50%; }
.woocommerce .cart-collaterals .coupon .input-text { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; float: left; line-height: 1em; margin: 0; outline: 0 none; padding: 0px 20px 0px; width: 80px; }
.woocommerce .cart-collaterals .coupon .input-text { height: 50px; width: 445px; -webkit-appearance: none; -moz-appearance: none; }
.woocommerce table.cart td.actions, .woocommerce-page table.cart td.actions { padding:6px 0px 30px 125px; float:right; }
.woocommerce table.cart td.actions-space { border-bottom:none; }
.woocommerce table.cart tr { position:relative; }
.woocommerce .cart-collaterals:after, .woocommerce-page .cart-collaterals:after { clear: both; content: ""; display: block; }
.woocommerce .cart-collaterals, .woocommerce-page .cart-collaterals { width: 100%; margin: 0 0 60px 0; }
.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals { float: right; text-align: right; width: 48%; }
.woocommerce .cart-collaterals .cart_totals .dt-sc-button { font-weight: 400;}
.woocommerce .cart-collaterals .cart_totals table, .woocommerce-page .cart-collaterals .cart_totals table { border-collapse: separate; border-radius: 5px; margin: 0 0 30px 0; padding: 0; }
.woocommerce .cart-collaterals .cart_totals table tr:first-child th, .woocommerce-page .cart-collaterals .cart_totals table tr:first-child th, .woocommerce .cart-collaterals .cart_totals table tr:first-child td,
.woocommerce-page .cart-collaterals .cart_totals table tr:first-child td { border-top: 0 none; }
.woocommerce .cart-collaterals .cart_totals tr td, .woocommerce-page .cart-collaterals .cart_totals tr td, .woocommerce .cart-collaterals .cart_totals tr th, .woocommerce-page .cart-collaterals .cart_totals tr th { padding: 12px; font-size:14px;
font-weight: 400; text-align: left; }
.woocommerce .cart-collaterals .cart_totals th { border-bottom-width: 1px; font-size: 13px; }
.woocommerce form .form-row-wide, .woocommerce-page form .form-row-wide { clear:both; margin: 0 0 6px; }
.woocommerce form .form-row:after, .woocommerce-page form .form-row:after { clear: both; content: ""; display: block; }
.selection-box:before { border-left: 7px solid transparent; border-right: 7px solid transparent; border-top: 7px solid #fff; bottom: 0; height: 0; margin: auto; right: 17px; top: 3px; z-index: 1; }
.selection-box:before, .selection-box:after { content: ""; pointer-events: none; position: absolute; }
.selection-box:after { height: 50px; right: 0; top: 0px; width: 50px; }
.woocommerce-billing-fields .shop-dropdown > span, .woocommerce-shipping-fields .shop-dropdown > span { color: #666666; font-size: 13px; font-weight: 100;}
.woocommerce form .form-row, .woocommerce-page form .form-row { margin: 0 0 14px; position:relative; }
.selection-box { clear: both; position: relative; background-color: #f8f8f8; }
.woocommerce form .form-row select, .woocommerce-page form .form-row select { cursor: pointer; margin: 0; width: 100%; }
select { -moz-appearance: none; border: 1px solid #eaeaea; border-radius: 0; color: #92a7bb; cursor: pointer; height: 50px; margin: 0px; text-indent: 0.01px; text-overflow: ""; width: 100%; padding: 0px 10px 0px 10px; line-height:43px; }
select option { background-color: #f8f8f8; padding: 15px 0px 14px 10px; }
.woocommerce .cart-collaterals .shipping_calculator, .woocommerce-page .cart-collaterals .shipping_calculator { clear: right; float: right; margin: 30px 0 0; text-align: right; width: 48%; }
.woocommerce .button, .woocommerce-page .button, .button { font-size: 14px; padding: 15px 11px 15px; border:none; min-height:50px; backface-visibility: hidden; text-transform: uppercase; }
.woocommerce .quantity .plus, .woocommerce .quantity .minus, .woocommerce-page .quantity .plus, .woocommerce-page .quantity .minus { border-radius: 0; float: left; display: inline-block; height: 50px; border: 1px solid #555555; background-color:#4d4b4b;
font-size:20px; }
.woocommerce .quantity .qty, .woocommerce-page .quantity .qty { background-color: #4d4b4b; float: left; height: 50px; width: 70px; border-style: solid; border-width: 1px 0 1px 0px; text-align: center; margin:0; border-color:#555555;
-moz-appearance: textfield; -webkit-appearance: textfield; appearance: textfield; float:left; z-index:1; position:relative; }
table.shop_table .quantity .plus, table.shop_table .quantity .minus, .product .summary .quantity .qty, .product .summary .quantity .plus, .product .summary .quantity .minus { display: inline-block; padding:0px 18px; color:#999999; }
.woocommerce .quantity, .woocommerce-page .quantity { width: auto; display: inline-block; }
.woocommerce td.product-quantity, .woocommerce-page td.product-quantity { min-width: 80px; }
.woocommerce table.shop_table .product-subtotal span { font-size:20px; }
.woocommerce table.cart a.remove, .woocommerce-page table.cart a.remove, .woocommerce #content table.cart a.remove, .woocommerce-page #content table.cart a.remove { display: block; font-size: 35px; font-weight: bold; text-align: center;
text-decoration: none; }
.woocommerce .cart_totals h3 { text-align:left; }
.woocommerce .cart_totals .total .amount { font-size:20px; }
.woocommerce .cart-collaterals .cart_totals table { border-radius:0px; }
.woocommerce form .form-row input.input-text, .woocommerce-page form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce-page form .form-row textarea { box-sizing: border-box; margin: 0; outline: 0 none; width: 100%;
padding:16px 10px; resize: vertical; }
@media screen and (-webkit-min-device-pixel-ratio:0) { /* Safari only override */
::i-block-chrome, .woocommerce form .form-row input.input-text, .woocommerce-page form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce-page form .form-row textarea{ resize: none;}
}
.woocommerce .woocommerce-shipping-fields .form-row textarea { height: 145px;}
.woocommerce div.product, .woocommerce-page div.product, .woocommerce #content div.product, .woocommerce-page #content div.product { margin-bottom: 0; position: relative; }
.woocommerce div.product div.images, .woocommerce-page div.product div.images, .woocommerce #content div.product div.images, .woocommerce-page #content div.product div.images { float: left; margin-bottom: 2em; width: 49%; }
.product .yith_magnifier_zoom_wrap { position: relative; z-index: 1; }
.yith_magnifier_zoom { display: block; position: relative; }
.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 { display: block; height: auto;
transition: all 0.2s ease-in-out 0s; border:1px solid #eaeaea; }
.woocommerce div.product div.images div.thumbnails:after, .woocommerce-page div.product div.images div.thumbnails:after, .woocommerce #content div.product div.images div.thumbnails:after,
.woocommerce-page #content div.product div.images div.thumbnails:after { clear: both; content: ""; display: block; }
.single-product .thumbnails ul { clear: both; display: block; width: 100%; }
.product .images .thumbnails .yith_magnifier_gallery li, .product .images .thumbnails .yith_magnifier_gallery li.last { margin:0 14px 0 0; }
.product .images .thumbnails .yith_magnifier_gallery li:last-child { margin:0; }
.single-product .thumbnails ul li { display: inline-block; margin: 0 5px; width: 80px; padding:0; }
.woocommerce div.product div.summary, .woocommerce-page div.product div.summary, .woocommerce #content div.product div.summary, .woocommerce-page #content div.product div.summary { float: right; margin-bottom: 2em; width: 42%; }
.woocommerce div.product div.images, .woocommerce-page div.product div.images, .woocommerce #content div.product div.images, .woocommerce-page #content div.product div.images { float: left; margin-bottom: 2em; width: 54%; }
.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: 1em; }
.product .summary { position: relative; }
.single-product .summary h1 { font-size: 24px; text-transform: none; margin-bottom:10px; }
.woocommerce-product-rating { clear: both; float: left; margin: 0; padding: 0 0 10px; width: 100%; }
.woocommerce .star-rating, .woocommerce-page .star-rating { float:none; overflow: hidden; position: relative; height: 1em; line-height: 1em; font-size: 1em; width: 5.4em; font-family: FontAwesome; display:block; margin-bottom:15px; }
.woocommerce .star-rating:before, .woocommerce-page .star-rating:before { content: "\f006 \f006 \f006 \f006 \f006"; color: #1e2b38; top: 0; left: 0; position: absolute; }
.woocommerce .star-rating span, .woocommerce-page .star-rating span { overflow: hidden; float: left; top: 0; left: 0; position: absolute; padding-top: 1.5em }
.woocommerce .star-rating span:before, .woocommerce-page .star-rating span:before { content: "\f005 \f005 \f005 \f005 \f006"; top: 0; position: absolute; left:0; color:#1e2b38; }
.woocommerce .products .star-rating, .woocommerce-page .products .star-rating { display: block; margin: 0 0 .5em; float: none; }
.woocommerce-product-rating .price { font-size:24px; display:inline-block; margin-bottom:15px; }
.woocommerce-review-link { color:#616161; float:right; border-bottom:1px solid #898989; }
.summary .description { float:left; width:100%; font-size:14px; margin-bottom:20px; }
.summary .project-details ul.client-details li { border-bottom:1px solid #eaeaea; padding-bottom:10px; margin-bottom:10px; }
.summary .project-details ul.client-details li:last-child { border-bottom:none; }
.summary .cart { display: inline-block; margin-right: 10px; margin-top: 20px; }
.woocommerce #content div.product form.cart div.quantity, .woocommerce div.product form.cart div.quantity, .woocommerce-page #content div.product form.cart div.quantity, .woocommerce-page div.product form.cart div.quantity { float: left;
margin: 0 10px 0 0; }
.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 { float: left; width: 48%; }
.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 { float: right; width: 48%; }
.woocommerce .col2-set:after, .woocommerce-page .col2-set:after { clear: both; content: ""; display: block; }
.woocommerce .col2-set, .woocommerce-page .col2-set { width: 100%; margin-bottom: 10px; }
.woocommerce form .form-row label, .woocommerce-page form .form-row label { font-weight: normal; padding-bottom: 5px; }
.woocommerce .cart-collaterals .coupon label { display: none;}
.woocommerce form .form-row label, .woocommerce-page form .form-row label { display: block; }
.woocommerce form .form-row-first, .woocommerce-page form .form-row-first, .woocommerce form .form-row-last, .woocommerce-page form .form-row-last { float: left; overflow: visible; width: 48%; }
.woocommerce form .form-row.form-row-first { margin-right:22px; }
.woocommerce form .form-row.validate-required.woocommerce-invalid .chzn-single, .woocommerce-page form .form-row.validate-required.woocommerce-invalid .chzn-single, .woocommerce form .form-row.validate-required.woocommerce-invalid .chzn-drop,
.woocommerce-page form .form-row.validate-required.woocommerce-invalid .chzn-drop, .woocommerce form .form-row.validate-required.woocommerce-invalid input.input-text, .woocommerce-page form .form-row.validate-required.woocommerce-invalid input.input-text,
.woocommerce form .form-row.validate-required.woocommerce-invalid select, .woocommerce-page form .form-row.validate-required.woocommerce-invalid select { border-color: #fb7f88; }
.woocommerce #payment, .woocommerce-page #payment { border-radius: 5px; }
.woocommerce #payment ul.payment_methods, .woocommerce-page #payment ul.payment_methods { border-bottom: 1px solid; list-style: outside none none; margin: 0; padding: 1em; text-align: left;}
.woocommerce #payment ul.payment_methods li input, .woocommerce-page #payment ul.payment_methods li input { margin: 0 1em 0 0; }
.woocommerce #payment ul.payment_methods li, .woocommerce-page #payment ul.payment_methods li { font-weight: normal; line-height: 2em; margin: 0; text-align: left; padding-bottom:10px; position:relative;}
.woocommerce #payment div.payment_box, .woocommerce-page #payment div.payment_box { background: #4d4b4b; }
.woocommerce #payment div.payment_box, .woocommerce-page #payment div.payment_box { border-radius: 5px; box-sizing: border-box; font-size: 13px; line-height: 25px; margin: 7px 0 15px; padding: 2em 2%;
position: relative; width: 100%;}
.woocommerce #payment div.payment_box::after, .woocommerce-page #payment div.payment_box::after { -moz-border-bottom-colors: none; -moz-border-left-colors: none; -moz-border-right-colors: none; -moz-border-top-colors: none; border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #4d4b4b; border-image: none; border-style: solid; border-width: 8px; content: ""; display: block; left: 0; margin: -10px 0 0 25px; position: absolute; top: -3px;}
.woocommerce #payment div.payment_box p:last-child, .woocommerce-page #payment div.payment_box p:last-child { margin-bottom: 0; }
.woocommerce #payment ul.payment_methods li img, .woocommerce-page #payment ul.payment_methods li img { margin: -2px 0 0 0.5em; position: relative; vertical-align: middle; }
.woocommerce #payment div.form-row, .woocommerce-page #payment div.form-row { display: inline-block; margin: 0; padding: 1%; text-align: right; width: 100%;}
.woocommerce input[type="checkbox"], .woocommerce input[type="radio"] { display:none; }
.woocommerce form .form-row label span, .woocommerce-shipping-fields label span { border:1px solid; cursor: pointer; display: inline-block; height: 16px; position: relative; top: 4px; transition: all 0.5s ease 0s;
-webkit-transition: all 0.5s ease 0s; -moz-transition: all 0.5s ease 0s; -ms-transition: all 0.5s ease 0s; -o-transition: all 0.5s ease 0s; width: 16px; z-index: 1; padding-bottom:0; margin-right:10px; }
.woocommerce .payment_methods label span:before { background-color: #FFFFFF; border-radius: 100px; cursor: pointer; display: inline-block; height: 10px; transition: all 0.5s ease 0s; width: 10px; z-index: 1; position:absolute; top:0px; left:0px;
right:0px; bottom: 0px; margin: auto; content:""; -webkit-transition: all 0.5s ease 0s; -moz-transition: all 0.5s ease 0s; -ms-transition: all 0.5s ease 0s; -o-transition: all 0.5s ease 0s; }
.woocommerce .payment_methods label span { background-color:#fbfbfb; border:1px solid #eaeaea; position:absolute; width:18px; height:18px; border-radius:100px; position:relative; display:inline-block; margin-right:10px; top:5px; }
.woocommerce-shipping-fields h3, .woocommerce-billing-fields h3, #order_review_heading { font-size:24px; }
.woocommerce-shipping-fields h3, .woocommerce-billing-fields h3 { margin-bottom:30px; }
#order_review_heading { margin-bottom:25px; clear:both; }
.woocommerce-info { float: left; margin-bottom: 12px; width: 100%; }
.woocommerce-tabs .panel ul li { border-bottom:1px solid #eaeaea; padding:10px 20px 10px 0px; }
.woocommerce-tabs .panel ul li:last-child { border:none; }
.woocommerce-tabs .panel ul li .fa { margin-right:5px; }
.woocommerce-tabs .panel ul li span { color:#2c3e50; font-weight:bold; width:150px; float:left; }
.woocommerce-tabs .panel ul { display:inline-block; }
.woocommerce-tabs .panel h6 { margin-bottom:15px; }
.woocommerce-tabs .panel .thumb { float:left; margin:0px 30px 0px 0px; }
.woocommerce-tabs .panel { background:#f8f8f8; float:left; clear:both; width:90%; margin:-1px 0px 0px -1px; padding:20px 5% 35px; }
.woocommerce-tabs ul.tabs li a.current { background:#f8f8f8; border:0px; position:relative; z-index:1; margin-left:-1px; }
.woocommerce-tabs ul.tabs li:first-child a { border-left:1px solid #eaeaea; }
.woocommerce-tabs ul.tabs li a { border:1px solid #d9d9d9; border-width:1px 1px 0px 0px; border-style:solid; border-color:#eaeaea; float:left; margin:0px; padding:0px 25px; background:#ffffff; text-align:center; font-weight:400; color:#2c3e50; line-height:60px; font-size:16px; font-family:'lato', sans-serif; }
.woocommerce-tabs ul.tabs li { float:left; display:inline; margin:0px; padding:0px; }
.woocommerce-tabs ul.tabs { float:left; margin:0px; padding:0px; width:100%; }
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button { -webkit-appearance: none; }
#ship-to-different-address { margin-bottom: 23px; }
/*----*****---- << 2. Layout >> ----*****----*/
/*----*****---- << 2.1 Wrapper >> ----*****----*/
.wrapper { clear: both; float: left; margin: 0px; padding: 0px; width: 100%; }
.inner-wrapper { float: left; margin: 0; padding: 0; width: 100%;}
.boxed { background-attachment: fixed; }
.boxed .wrapper { width:1260px; margin:0 auto; float:none; }
.boxed #header-wrapper .header { width:1260px; margin:0 auto; }
.boxed .is-sticky #header-wrapper { width: 1260px;}
.boxed .header .menu-container { width: 1200px; }
.boxed #header-wrapper #main-menu { left: 0; margin: 0 auto; right: 0; width: 1260px;}
.boxed #header-wrapper #main-menu ul li.menu-item-simple-parent ul { width: 200px; }
.boxed .slider-container { margin: 0; }
.boxed .portfolio-grid { padding: 60px 20px 20px 50px; }
.boxed .portfolio figure::after { border: 20px solid #ffffff; }
.boxed .portfolio figure figcaption .portfolio-detail .views{ padding: 0 10px 0 5px; }
.boxed .portfolio figure figcaption .portfolio-detail .portfolio-title { padding: 0 0 0 5px; }
.boxed .portfolio figure figcaption .portfolio-detail p { font-size: 11px; }
.boxed .blog-section .blog-entry .entry-details .entry-title { margin: 20px 0; }
.boxed .blog-section .blog-entry .entry-details .entry-body { padding: 0 20px; }
.boxed .blog-section .blog-entry .entry-details .entry-title h3 { margin: 0; }
.boxed ul.commentlist li .comment-author { z-index: 1; }
.boxed .shop-grid .sorting-products .dt-sc-one-fifth { width: 32%; }
.boxed .shop-grid .sorting-products .dt-sc-one-fifth:nth-child(4n) { margin: 0; }
.boxed .shop-dropdown ul li { z-index: 1099 !important; }
.boxed #main { padding-left: 0px; }
/*----*****---- << Float >> ----*****----*/
body, html { height: 100%; min-height: 100%; width: 100%;}
.wrapper, #header, .banner, .shadow, .main-title, .content, .content-main, footer, .copyright, .location iframe { float:left; width:100%; }
.wrapper, .inner-wrapper { width: 100%; height: 100%; }
/*----*****---- << Header >> ----*****----*/
#header { display: block; margin: 0; padding: 0; width: 100%; z-index: 1; }
#header-wrapper { float: left; margin: 0; padding: 0; width: 100%; position: fixed; z-index: 9999;}
header { clear: both; float: left; padding: 0; position: relative; width: 100%; z-index: 1;}
/****** Mobile Menu *****/
#main-menu ul > li > .megamenu-child-container { display:none; }
.menu-item-widget-area-container { margin: 0; padding: 0; width: 100%; }
.menu-item-widget-area-container .widget { display: inline; padding: 0; }
.menu-item-widget-area-container ul { margin: 0; padding: 0; }
.menu-item-widget-area-container .widget ul li { color:#1e1e1e; display:block; border-bottom:1px dashed #ededed; margin-bottom:10px; }
.menu-item-widget-area-container .widget ul li a { color:#1e1e1e; font-size:13px; text-transform:uppercase; font-weight:normal; }
.megamenu-child-container > ul.sub-menu > li > p { margin-bottom:30px; }
.dt-menu-expand { cursor: pointer; display: none !important; font-size: 20px !important; font-weight: bold; height: 40px; line-height: 36px !important; padding: 10px 15px !important; position: absolute !important; right: 0; text-align: center; top: 0;
width: 40px; }
.dt-menu-toggle { color: #ffffff; cursor: pointer; display: none; font-size: 16px; font-weight: bold; padding: 10px 15px; text-transform: uppercase; }
.dt-menu-toggle-icon:before, .dt-menu-toggle-icon:after { background-color:#ffffff; content: ""; height: 2px; left: 0; position: absolute; top: -5px; width: 20px; }
.dt-menu-toggle-icon:after { top:5px; }
.dt-menu-toggle-icon { background-color: #ffffff; display: inline-block; float: right; height: 2px; margin-top: 10px; position: relative; text-align: left; width: 20px; }
/*----*****---- << 2.2 Container >> ----*****----*/
.container { clear: both; margin: 0 auto; position: relative; width: 1200px; }
.menu-container { width: 1700px; }
#primary { width:870px; float:left; }
#primary.with-right-sidebar { margin-right:30px; }
#primary.with-left-sidebar { margin-left:30px; float:right; }
#primary.content-full-width { margin-left:0; margin-right:0; width:100%; }
#secondary { float:left; width:270px; }
#secondary.secondary-has-right-sidebar { float: right;}
/*----*****---- << 2.3. Header >> ----*****----*/
#logo { display: inline; float: left; line-height: 0; margin: 0; padding: 30px 0; width: auto;}
.header { width: 90%; margin: 0 auto; -webkit-transition: -webkit-transform 0.5s; -moz-transition: -moz-transform 0.5s; transition: transform 0.5s; -webkit-transform: translateZ(0); -moz-transform: translateZ(0); -ms-transform: translateZ(0);
-o-transform: translateZ(0); transform: translateZ(0); -webkit-backface-visibility: hidden; backface-visibility: hidden; }
.header:after { content: ""; display: table; clear: both; }
.header.nav-is-visible, .header-animate { background: rgba(0, 0, 0, 0.5);}
.header{ position: absolute;}
.header.nav-is-visible .logo, .header-animate .logo { margin: 20px 0;}
.header.nav-is-visible .menu-trigger, .header-animate .menu-trigger { margin: 28px 0;}
.logo { float: left; margin-top: 45px; }
#main-menu { position: fixed; top: 0; left: 0; width: 100%; margin:0; background-color: #000000; visibility: hidden; -webkit-perspective: 1000px; -moz-perspective: 1000px; perspective: 1000px; -webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%); -ms-transform: translateY(-100%); -o-transform: translateY(-100%); transform: translateY(-100%); -webkit-transition: -webkit-transform 0.5s 0s, visibility 0s 0.5s; -moz-transition:
-moz-transform 0.5s 0s, visibility 0s 0.5s; transition: transform 0.5s 0s, visibility 0s 0.5s; z-index: 1; }
#main-menu.nav-is-visible { visibility: visible; -webkit-transform: translateY(0); -moz-transform: translateY(0); -ms-transform: translateY(0); -o-transform: translateY(0); transform: translateY(0);
-webkit-transition: -webkit-transform 0.5s 0s, visibility 0.5s 0s; -moz-transition: -moz-transform 0.5s 0s, visibility 0.5s 0s; transition: transform 0.5s 0s, visibility 0.5s 0s; }
/* MENU TYPE-3 STARTS*/
/*Scroll bar*/
body .mCSB_container { margin-right: 0!important; }
.mCSB_scrollTools .mCSB_draggerRail{ display: none!important; }
.mCSB_scrollTools { opacity: 0!important; }
.mCSB_scrollTools.active, .mCSB_scrollTools:hover { opacity: 1!important; }
.gallery-masonry-h .mCSB_container, .portfolio-striped .mCSB_container { height: 100%; position: relative; }
header .mCSB_container, .has-page-simple .mCSB_container, .page-fullscreen .mCSB_container { position: relative; min-height: 100%; }
/*Basic*/
#header-wrapper header { position: fixed; top: 0; left: -300px; opacity: 0; width: 300px; z-index: 9999; height: 100%; overflow-y: hidden; }
#header-wrapper header.active { left: 0; opacity: 1; }
#header-wrapper header .header-container { position: relative; display: table; height: 100%; width: 100%; }
#header-wrapper header .header-inner { display: table-cell; vertical-align: middle; padding: 150px 20px; }
#header-wrapper header .close-btn { display: block; position: absolute; top: 25px; left: 50%; margin: 0 auto; width: 20px; height: 20px; }
#header-wrapper header .close { display: inline-block; position: absolute; top: 7px; left: 3px; width: 20px; height: 2px; }
#header-wrapper header .close:before, header .close:after { content: ''; position: absolute; width: 100%; height: 2px; left: 0; -webkit-transform-origin: center center; -moz-transform-origin: center center; -ms-transform-origin: center center;
-o-transform-origin: center center; transform-origin: center center; }
#header-wrapper header .close:before { top: -6px; -webkit-transform: rotate(45deg) translate(4px,9px); -moz-transform: rotate(45deg) translate(3px,8px); -ms-transform: rotate(45deg) translate(3px,8px); -o-transform: rotate(45deg) translate(3px,8px);
transform: rotate(45deg) translate(3px,8px);}
#header-wrapper header .close:after { bottom: -9px; -webkit-transform: rotate(-45deg) translate(2px,-8px); -moz-transform: rotate(-45deg) translate(3px,-8px); -ms-transform: rotate(-45deg) translate(3px,-8px);
-o-transform: rotate(-45deg) translate(3px,-8px);
transform: rotate(-45deg) translate(3px,-8px); }
#header-wrapper header .logo-container { display: block; left: 0; margin: 0 auto; position: absolute; right: 0; text-align: center; top: 80px;}
#header-wrapper header .logo-container img { max-width: 100%; }
#header-wrapper header .social-icons { bottom: 80px; left: 0; margin: 0 auto; position: absolute; right: 0; text-align: center; width: 100%;}
#header-wrapper header .social-icons a { display: inline-block; font-size: 14px; margin: 0 10px;}
#header-wrapper header .header-inner .copyrights { bottom: 35px; display: block; font-size: 12px; font-weight: 500; left: 0; margin: 0 auto; position: absolute; right: 0; text-align: center; }
/*Menu*/
header nav { text-align: center; margin: 0px; }
header nav ul.menu.type3 { list-style: none; margin-left: 0; padding: 0; }
header nav ul.menu.type3 li ul.sub-menu { margin: 0; padding: 0; }
header nav ul.menu.type3 li { display: block; position: relative; list-style-type: none; padding: 10px 0; }
header nav ul.menu.type3 li a { display: inline-block; padding: 0px; position: relative; font-size: 16px; text-transform: uppercase; font-weight: 400; }
header nav ul.menu.type3 li a span.fa { color: inherit; display: inline-block; font-size: 15px; line-height: inherit; margin: 0 0 0 20px; position: absolute; top: 2px;}
header nav ul.menu.type3 li a.active span.fa { transform: rotate(180deg); -moz-transform: rotate(180deg); -webkit-transform: rotate(180deg); top: 5px;}
/*Dropdown*/
header nav > ul.menu.type3 ul { display: none; }
header nav > ul.menu.type3 ul li a { font-size: 12px; font-weight: 500; padding: 0; line-height: 20px; letter-spacing: 1.5px; }
header nav > ul.menu.type3 ul li:last-child { padding-bottom: 5px;}
header nav ul.menu.type3 li ul li { padding: 5px 0;}
header nav ul.menu.type3 li a.active span.arrow::before { top:2px; transform: rotate(180deg); -moz-transform: rotate(180deg); -webkit-transform: rotate(180deg); }
header nav ul.menu.type3 li a span.arrow::before { content: ""; font-family: fontawesome; margin: 0; position: absolute; right: 0; top: 0px; backface-visibility: hidden; transform: rotate(0deg); -moz-transform: rotate(0deg); -webkit-transform: rotate(0deg);}
header nav ul.menu.type3 li a span.arrow { display: inline-block; width: 20px; }
/*Header bar*/
.header-bar { display: none; position: fixed; left: -50px; opacity: 0; top: 0; height: 100%; width: 50px; padding: 25px 15px; z-index: 999; }
.header-bar.active { left: 0; opacity: 1; }
.header-bar .menu-nav { display: block; position: relative; margin-bottom: 15px; width: 20px; height: 22px; }
.header-bar .menu-nav span { display: block; position: absolute; margin-top: -4px; top: 50%; left: 0; width: 100%; height: 2px; }
.header-bar .menu-nav span:before, .header-bar .menu-nav span:after { display: block; content: ""; position: absolute; top: -7px; left: 0; width: 100%; height: 2px; }
.header-bar .menu-nav span:after { top: 7px; }
.header-bar .logo-mini { font-weight: 700; bottom: 50%; left: 0; margin: 0 auto; position: absolute; right: 0; text-align: center; width: 20px; transform: translate(0%, 50%); -moz-transform: translate(0%, 50%) -webkit-transform: translate(0%, 50%);
-ms-transform: translate(0%, 50%);}
.header-bar .logo-mini > span { font-size: 23px; word-wrap: break-word; display: block; }
.header-bar .logo-mini i { color: #c11b17; font-style: normal; font-weight: 300; }
.header-bar .logo-mobile { display: none; top: 14px; font-size: 15px; left: 20px; height: 20px; width: auto; line-height: 20px; letter-spacing: 0.5px; position: absolute; z-index: 1001; }
.header-bar .logo-mobile img { max-height: 100%; width: auto; vertical-align: text-bottom; }
.header-bar .logo-mobile p span { color: #c11b17; }
.header-bar .share-mini { position: absolute; bottom: 25px; left: 50%; margin-left: -10px; }
.header-bar .share-mini .show { font-size: 20px; }
.header-bar .share-mini .icons { position: absolute; top: -8px; left: 18px; width: 200px; padding-left: 15px; font-size: 0; display: none; }
.header-bar .share-mini .icons a { display: block; float: left; width: 50px; height: 40px; line-height: 40px; text-align: center; font-size: 14px; position: relative; }
/* MENU TYPE-3 ENDS */
/*----*****---- << 2.4 Main >> ----*****----*/
#main { float: left; margin: 0; position: relative; padding-left: 50px; width: 100%; box-sizing: border-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; }
.slider-container { backface-visibility: hidden; margin: 0 0 20px; display: table; float: left; height: 100%; min-height: 100%; overflow: hidden; position: relative; vertical-align: middle; width: 100%;}
.slider { background-image:url(http://placehold.it/1920x1000&text=Banner+Image); background-repeat: no-repeat; backface-visibility: hidden; display: table; float: left; height: 100%; width: 100%; }
.slider-container .container, .slider-container .parallax { position: static; }
.slider::before, .slider::after { border: 1px solid #1c1c1c; bottom: 0; content: ""; left: 0; margin: 15px; position: absolute; right: 0; top: 0;}
.slider::before { margin: 15px; }
.slider::after { margin: 10px; }
.slider.parallax .caption { display: table-cell; left: 50%; position: absolute; text-align: center; top: 50%; transform: translate(-50%, -50%); vertical-align: middle; width: 100%;}
.fullwidth-section { clear: both; float: left; margin: 0; padding: 0; width: 100%;}
.parallax { background-attachment: fixed; background-color: #000000; background-position: center top; background-repeat: no-repeat; padding: 100px 0; margin: 0; color: #ffffff; position: relative;}
.parallax-img { background: url(images/parallax-img.jpg); background-size: cover; background-attachment: fixed; background-repeat: no-repeat;}
.dark-skin .parallax-img { background: url(images/parallax-img-dark.jpg); background-size: cover; background-attachment: fixed; background-repeat: no-repeat;}
.parallax-img:after, .map-parallax:after { background: url(images/copy-right-shape.png) no-repeat center center; content: ""; height: 149px; left: 0; margin: 0 auto; position: absolute; right: 0; bottom:0; width: 100%;}
.slider-container{ display: block\9; /* IE9 only override */}
@media screen and (-webkit-min-device-pixel-ratio:0) { /* Safari only override */
::i-block-chrome, .parallax { position: static;}
}
/*----*****---- << 2.4.1. BREAD-CRUMB >> ----*****----*/
.breadcrumb { clear: both; float: left; padding: 120px 0 10px; position: relative; width: 100%;}
.breadcrumb h2 { display: inline-block; font-size: 35px; margin: 40px 0; font-weight: 300; text-transform: capitalize;}
.breadcrumb h2 span { color: #ececec; font-size: 35px; font-weight: 700; letter-spacing: 0px; text-transform: uppercase;}
.breadcrumb .user-summary { display: inline-block; float: right; margin: 15px 0; text-transform: uppercase;}
.breadcrumb .account-links, .breadcrumb .user-summary .cart-count { display: inline-block; padding: 30px 0; vertical-align: middle;}
.breadcrumb .user-summary .account-links a, .breadcrumb .user-summary .cart-count a { font-size: 14px; margin: 0 15px 0 0; padding: 0;}
/*----*****---- << 2.4.2. Fullwidth - Page Title >> ----*****----*/
.main-title { float:left; width:100%; margin: 0 0 50px; padding:0; text-align: center; position:relative; }
.main-title::before { background: url("images/title-line.png") no-repeat; bottom: -15px; content: ""; display: block; float: left; height: 20px; left: 0; margin: 10px auto 0; position: absolute; right: 0; width: 100%; background-position: center center; }
.main-title h1, .main-title h2, .main-title h3, .main-title h4, .main-title h5, .main-title h6 { display: block; margin-bottom: 5px; line-height: normal; text-transform: uppercase; }
.main-title h1 { font-size:85px; }
.main-title h2 { font-size:70px; }
.main-title h3 { font-size:60px; }
.main-title h4 { font-size:50px; }
.main-title h5 { font-size:40px; }
.main-title h6 { font-size:30px; }
.main-title p { font-style: italic;}
.main-title.alignright, .main-title.alignleft, .main-title.aligncenter { margin: 0 0 25px;}
.sub-title { float:left; width:100%; margin: 0 0 50px; padding:0; position:relative; }
.sub-title::before { background: url("images/sub-title.png") no-repeat; bottom: -20px; content: ""; display: block; float: left; height: 20px; left: 0; margin: 10px auto 0; position: absolute; right: 0; width: 100%;}
.center.sub-title::before { background: url("images/title-line.png") no-repeat scroll 50% center;}
.right.sub-title::before { transform: rotate(180deg); -moz-transform: rotate(180deg); -webkit-transform: rotate(180deg);}
/*----*****---- << 2.4.3. Portfolio >> ----*****----*/
.dt-sc-sorting-container { border-left: 0 none; clear: both; display: inline-block; float: left; line-height: normal; margin: 10px 0 60px 0; padding: 0; text-align: center; width: 100%;}
.dt-sc-sorting-container a { cursor: pointer; display: inline-block; font-size: 14px; font-weight: normal; line-height: normal; margin-right: 5px; margin-bottom: 0; outline: medium none; padding: 15px 30px; position: relative; text-transform: uppercase; z-index: 1;}
.portfolio-grid { padding: 80px 40px 40px 80px; width:100%; float: left; box-sizing: border-box; }
.portfolio-fullwidth { background: url("http://placehold.it/1920x1440&text=Portfolio+Bg+Image") repeat; float: left; width: 100%; margin-bottom: 80px;}
.dt-sc-portfolio-container { clear: both; float: left; margin: 0; padding: 0; width: 100%;}
.dt-sc-portfolio-container .portfolio { overflow: hidden; position: relative; margin-bottom: 40px;}
.dt-sc-portfolio-container .portfolio figure { border: 15px solid; box-sizing: border-box; float: left; width: 100%; overflow: hidden; position: relative;}
.dt-sc-portfolio-container .portfolio figure { border-bottom-color: #000000; border-top-color: #2e2e2e; border-left-color: #2e2e2e; border-right-color: #000000;}
.dt-sc-portfolio-container .portfolio figure img { float: left; }
.dt-sc-portfolio-container .portfolio img { max-width: 100%; width: 100%; transform: scale(1.2); -moz-transform: scale(1.2); -webkit-transform: scale(1.2);}
.portfolio figure::after { border: 35px solid #ffffff; bottom: 0; content: ""; left: 0; position: absolute; right: 0; top: 0; box-shadow: 0 0 5px 0 #000000 inset; -moz-box-shadow: 0 0 5px 0 #000000 inset;
-webkit-box-shadow: 0 0 5px 0 #000000 inset;}
.portfolio figure:hover img { transform: scale(1); -moz-transform: scale(1); -webkit-transform: scale(1); }
.portfolio figure figcaption { background-color: rgba(0, 0, 0, 0.8); cursor: pointer; float: left; height: 100%; left: 0; opacity: 0; position: absolute; top: 0; width: 100%; }
.portfolio figure:hover figcaption { opacity: 1; top: 0; }
.portfolio figure figcaption .portfolio-detail { background-color: rgba(0, 0, 0, 0); border: medium none; clear: both; cursor: default; display: inline-block; margin: 0; min-height: 48px; padding: 0; position: absolute; text-align: center; top: 50%;
width: 100%; z-index: 1; transform: translateY(-50%); -moz-transform: translateY(-50%); -webkit-transform: translateY(-50%); }
.portfolio figure figcaption .portfolio-detail .views { background-color: rgba(0, 0, 0, 0); border: medium none; color: #FFFFFF; display: inline-block; float: none; font-size: 14px; height: 100%; margin: 0 -4px 0 0; padding: 0 25px; position: relative;
text-align: center; transform: translateX(-25%); -moz-transform: translateX(-25%); -webkit-transform: translateX(-25%); transition: all 0.35s ease-in-out 0s; -moz-transition: all 0.35s ease-in-out 0s; -webkit-transition: all 0.35s ease-in-out 0s; }
.portfolio figure figcaption .portfolio-detail .views:after { background: #ffffff; bottom: 5px; content: ""; position: absolute; right: 0; top: 5px; width: 1px; }
.portfolio figure figcaption .portfolio-detail .portfolio-title { display: inline-block; float: none; min-height: 0; padding: 0 15px 0 25px; text-align: left; width: auto; transform: translateY(100%); -moz-transform: translateY(100%);
-webkit-transform: translateY(100%); transition: all 0.35s ease-in-out 0s; -moz-transition: all 0.35s ease-in-out 0s; -webkit-transition: all 0.35s ease-in-out 0s; }
.portfolio figure:hover figcaption .portfolio-detail .views { transform: translateX(0%); -moz-transform: translateX(0%); -webkit-transform: translateX(0%); }
.portfolio figure:hover figcaption .portfolio-detail .portfolio-title { transform: translateY(10%); -moz-transform: translateY(10%); -webkit-transform: translateY(10%); }
.portfolio figure:hover figcaption .portfolio-detail .views, .portfolio figure:hover figcaption .portfolio-detail .portfolio-title { opacity: 1; }
.portfolio figure figcaption .portfolio-detail .views a { color:#FFFFFF; font-size: 16px; margin: 5px 0 0; display: block; }
.portfolio figure figcaption .portfolio-detail .views span { color:#FFFFFF; padding-bottom: 7px; display: inline-block; }
.portfolio figure figcaption .portfolio-detail h5 { font-weight: bold; margin: 0; transition: all 0.35s ease-in-out 0.1s; -moz-transition: all 0.35s ease-in-out 0.1s; -webkit-transition: all 0.35s ease-in-out 0.1s; }
.portfolio figure figcaption .portfolio-detail h5::after { border-bottom: 1px solid #ffffff; bottom: 0; content: ""; left: 0; margin: 0 auto; position: absolute; width: 20%; }
.portfolio figure figcaption .portfolio-detail h5, .portfolio figure figcaption .portfolio-detail p { text-transform: uppercase; transform: translateY(100%); -moz-transform: translateY(100%); -webkit-transform: translateY(100%); }
.portfolio figure figcaption .portfolio-detail p { display: inline-block; font-size: 12px; margin: 2px 0 0; transition: all 0.35s linear 0.2s; -moz-transition: all 0.35s linear 0.2s; -webkit-transition: all 0.35s linear 0.2s; }
.portfolio figure:hover figcaption .portfolio-detail h5, .portfolio figure:hover figcaption .portfolio-detail p { transform: translateY(0%); -moz-transform: translateY(0%); -webkit-transform: translateY(0%); }
.loadmore { display: inline-block; font-size: 14px; font-weight: 500; margin: 0 0 40px; position: relative; text-transform: uppercase;}
.loadmore.dt-sc-button.medium.with-icon i.fa::after { left: 56px;}
/*----*****---- << 2.4.4. Blog >> ----*****----*/
.bx-wrapper { position:relative; margin:0px; padding:0px; *zoom: 1; border-radius:0px; behavior: url(PIE.htc); height:auto\0/; }
.bx-wrapper img { width:100%; display: block;border-radius:0px; behavior: url(PIE.htc); }
.bx-wrapper ul { float: left; }
.bx-wrapper ul li { margin: 0; padding: 0; position: relative; float:left; display: block; }
.bx-wrapper ul li::before { border: 1px solid; bottom: 0; content: ""; left: 0; margin: 2%; position: absolute; right: 0; top: 0;}
.bx-controls { position:absolute; right: 2px; left:0; margin:0px auto; text-align:center; width:100%; top:50%; z-index:999; transform: translateY(-50%); -moz-transform: translateY(-50%); -webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%); -o-transform: translateY(-50%); }
.bx-controls a { display:inline-block; padding:18px; text-align: center; font-size:0px; line-height:0px; width:auto; }
.bx-controls .bx-prev, .bx-controls .bx-next { position: relative; }
.bx-controls-direction { width:100%;}
.bx-controls .bx-prev { left:0; float:left;}
.bx-controls .bx-next { right:0px; float:right;}
.inner-page .bx-controls .bx-next { right:2px;}
#blog.inner-page .bx-controls .bx-next { right:0px;}
#primary.with-sidebar .bx-controls .bx-next { right:0px; float:right; }
::i-block-chrome, .bx-controls a { padding:18px 0px; }
.bx-controls .bx-prev:before { content:"\f104"; font-family:FontAwesome; font-style:normal; font-weight:normal; text-decoration:inherit; font-size:20px; position:absolute; left:0px; right:0; }
.bx-controls .bx-next:before { content:"\f105"; font-family:FontAwesome; font-style:normal; font-weight:normal; text-decoration:inherit; font-size:20px; position:absolute; left:0px; right:0; }
.blog-section { width: 100%; float: left; position: relative; overflow: hidden; }
.fullwidth-section .blog-section:first-child { margin-top: 50px; }
.fullwidth-section .blog-section:last-child { margin-bottom: 65px; }
.blog-section .blog-entry { float:left; clear:both; margin:0; width:100%; padding: 0; border: none; }
.blog-section .blog-entry .entry-thumb { width: 50%; margin:0; padding:0px; float:left; }
.blog-section .blog-entry .entry-thumb a { display:block; width:100%; margin:0px; padding:0px; line-height:0; }
.blog-section .blog-entry .entry-thumb img { width:100%; height:auto; }
.blog-section .blog-entry .entry-details { position: absolute; margin: 0; padding: 0; top: 50%; right: 0%; transform: translate(0%, -50%); -moz-transform: translate(0%, -50%); -webkit-transform: translate(0%, -50%); width: 100%;
display: table-cell; vertical-align: middle; float:left; width: 50%; text-align: center; }
.blog-section .blog-entry .entry-details .entry-title { float: left; margin: 0 0 7px 0; padding: 0; width: 100%; }
.blog-section .blog-entry .entry-details .entry-title h3 { display: inline-block; float: none; font-size: 50px; line-height: normal; text-transform: uppercase; width: 100%; }
.blog-section .blog-entry .entry-details .entry-body { float: left; margin: 0 0 30px; padding: 0 160px;}
.blog-section .blog-entry .entry-details .dt-sc-button { text-transform: uppercase; margin: 0; }
.blog-section .blog-entry.type2 .entry-thumb { float: right; }
.blog-section .blog-entry.type2 .entry-details { left: 0%; }
/*----*****---- << Blog-inner-page >> ----*****----*/
.blog-entry { float:left; clear:both; margin:0px 0px 20px; width:100%; border-bottom:1px solid; padding: 0 0 35px; }
.blog-items .blog-entry { padding: 4%; width: 100%; border:none; position: relative; border: 1px solid;}
.blog-items .blog-entry:hover::before, .blog-items .blog-entry:focus::before, .blog-items .blog-entry:active::before { transform: scaleX(0); -moz-transform: scaleX(0); -webkit-transform: scaleX(0);
transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66); -moz-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66); -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);}
.blog-items .blog-entry::before { bottom: 0; content: ""; left: 0; position: absolute; right: 0; top: 0; transform: scaleX(1); -moz-transform: scaleX(1); -webkit-transform: scaleX(1); transform-origin: 50% 50% 0;
-moz-transform-origin: 50% 50% 0; -webkit-transform-origin: 50% 50% 0; transition-duration: 0.5s; -moz-transition-duration: 0.5s; -webkit-transition-duration: 0.5s; transition-property: transform; -webkit-transition-property: transform;
-moz-transition-property: transform; transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66); -moz-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66); -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
z-index: -1;}
.blog-items .blog-entry:hover, .blog-items .blog-entry:focus, .blog-items .blog-entry:active { border: 1px solid;}
.blog-items .blog-entry { backface-visibility: hidden; display: inline-block; position: relative; transform: translateZ(0px); -moz-transform: translateZ(0px); -webkit-transform: translateZ(0px); transition-duration: 0.3s;
-webkit-transition-duration: 0.3s; -moz-transition-duration: 0.3s; transition-property: color; -webkit-transition-property: color; -moz-transition-property: color; vertical-align: middle;}
.entry-thumb { width:100%; margin:0px 0px 25px 0px; padding:0px; float:left; }
.entry-thumb a { display:block; float:left; width:100%; margin:0px; padding:0px; line-height:0; }
.entry-thumb img { width:100%; height:auto; }
.entry-details { float:left; width:100%; margin:0px; }
.entry-details .entry-metadata { display:block; margin:0px 0px 15px; width:100%; font-weight:400; }
.entry-details .entry-metadata i { margin-right:5px; }
.entry-details .entry-metadata p { border-right: 1px solid #404040; display:inline-block; float:left; margin: 0 15px 10px 0; padding:0 16px 0px 0px; line-height:16px; text-transform:none; font-size:13px; }
.entry-details .entry-metadata p:last-child, .with-sidebar .blog-post .dt-sc-tabs-container .widget .recent-posts-widget ul li .entry-metadata p:last-child, .post-author-details p:last-child, .comment .author-metadata p:last-child { border: none;}
.entry-details .entry-metadata span, .entry-details .entry-metadata p a { display:inline-block; }
.entry-details .entry-metadata span { margin:0px 5px; }
.entry-details .entry-metadata p.tags { width: auto; }
.entry-details .entry-title h4 { font-size: 20px; text-transform: capitalize;}
.entry-body { display: inline-block; width: 100%; font-weight:400; margin: 0 0 15px; }
.entry-body blockquote, .entry-body blockquote q { font-size:16px; color:#a8a8a8; font-weight:500; line-height:29px; text-transform:none; font-style:italic; padding:0 }
.entry-body blockquote:before, .entry-body blockquote q:after { content:none; }
.entry-body ul.tick { margin:10px 0px; }
.entry-body ul.tick li { list-style:none; position:relative; padding-left:20px; line-height:15px;}
.entry-body ul.tick li:before { content: "\f05a"; font-family:FontAwesome; position:absolute; left:0; color:#353535; }
article.blog-entry .entry-thumb audio, article.blog-entry .entry-thumb video { width:100%; color:#ddd; margin-top:5px; }
.post-nav-container {float: left; width: 100%; margin: 50px 0; }
.post-nav-container .post-prev-link { float: left;}
.post-nav-container .post-next-link { float: right;}
.page-with-sidebar .post-nav-container .post-prev-link { margin-left: 20px;}
.page-with-sidebar .post-nav-container .post-next-link { margin-right: 20px;}
.blog-post { display: inline-block; float: left; margin-bottom: 30px; position: relative; width: 100%;}
.blog-post .entry-details .entry-title h3 { font-weight: 300;}
.blog-post .entry-title h3 a { font-size: 40px; text-transform: capitalize;}
.blog-post .entry-details .entry-metadata p { padding: 0 15px 0 0;}
.blog-post .entry-details .entry-metadata { width: auto; margin:0 0 10px;}
.blog-post .dt-sc-tabs-container .widget .recent-posts-widget ul li .entry-thumb { margin: 0 12px 10px 0;}
.blog-post .dt-sc-tabs-container .widget .recent-posts-widget ul li .entry-metadata p { border: none; display: block; float: none; width: 100%;}
.blog-post .entry-details .entry-body > p { margin-bottom: 35px;}
.blog-post .entry-details .dt-sc-tabs-frame-content .widget { padding: 0;}
.blog-post .dt-sc-tabs-container { margin: 5px 0 0; }
blockquote { clear: left; display: block; font-style: italic; line-height: normal; border-left: 10px double; border-right: 8px solid; margin: 0 0 25px 0; padding: 10px 15% 0 20%; position: relative;}
.entry-details blockquote span { float: left; font-size: 50px; left: 12%; position: absolute; top: 12px;}
blockquote q{ font-size: 25px; font-weight: 700;}
blockquote h6 { display: block; font-style: normal; margin-bottom: 5px; margin-top: 15px;}
blockquote a { font-size: 14px; font-style: normal; line-height: normal;}
.post-author-details { float: left; margin-bottom: 30px; width: 100%; padding: 30px 0; border-bottom: 1px solid; border-top: 1px solid;}
.author-desc { float: left; padding: 0 40px; font-size: 16px; position: relative;}
.post-author-details .author-desc p span { display: inline-block; font-size: 18px; left: 0; position: absolute; top: 5px;}
.author-desc > p { margin: 0;}
.author-metadata { float: right;}
.author-metadata a { display: inline-block;}
.post-author-details .author-desc p { border-right: none; font-size: 18px; font-weight: 300; line-height: 25px;}
.post-author-details p, .comment .author-metadata > p { border-right: 1px solid #404040; float: left; font-size: 13px; line-height: 16px; margin: 0 15px 0 0; padding: 0 15px 0 0;}
.post-author-details p:last-child, .comment .author-metadata > p:last-child { margin: 0; padding: 0; }
.post-author-details p span, .comment .author-metadata p span { margin: 0 15px 0 0;}
.commententries { display: inline-block; margin: 0; padding: 0; width: 100%;}
.commententries h4, #respond h3, .post-author-details h3 { font-size: 20px;}
.commententries h4, #respond h3 { clear: both; margin: 0; padding: 0; width: 100%;}
.commententries ul.commentlist { border-top: 0 none; float: left; list-style: outside none none; margin: 20px 0 20px; padding: 0 0 20px; width: 100%;}
ul.commentlist li { clear: both; display: block; float: none; list-style: outside none none; line-height: normal; margin: 0 0 30px; padding: 0 0 0 100px; border-bottom: 1px solid; position: relative;}
ul.commentlist li ul.children { border: medium none; clear: both; float: left; margin: 30px 0; padding: 0; width: 100%;}
ul.commentlist li .respond { margin-left: 69px;}
ul.commentlist li .comment-author { left: 0; position: absolute; top: 0; z-index: -1;}
ul.commentlist li .comment-author img { border-radius: 2px; float: left; margin: 0; max-height: 85px;}
ul.commentlist li .comment-author img, ul.commentlist li .comment-author img { max-width: 85px;}
ul.commentlist li .author-name { float: left; font-size: 16px; font-weight: normal; margin-right: 15px;}
ul.commentlist li .comment-details { display: block; margin:0 0 30px;}
ul.commentlist li .commentmetadata { display:inline-block; font-size: 13px; font-style: italic; font-weight: 400; line-height: 22px; text-decoration: none; }
ul.commentlist li .commentmetadata > span { display: inline-block; margin-right: 15px;}
.bypostauthor { float: left;}
ul.commentlist li .comment-body { margin: 0; padding: 0;}
ul.commentlist li .comment-content { border-radius: 5px; margin: 10px 0; padding: 0 10px 20px 0;}
ul.commentlist li .reply { float: right; font-weight: 400; margin: 0; text-align: center; text-transform: uppercase;}
ul.commentlist li .reply a { display: block; margin-top: 0; padding: 10px 13px; text-transform: none;}
ul.commentlist li .reply a .fa { margin-left: 3px;}
.comment .author-metadata { float: left;}
#commentform p input, #commentform textarea, .enquiry-form p input, .enquiry-form textarea { font-size: 18px; padding: 17px 15px;}
#commentform textarea, .enquiry-form textarea { height:190px; padding:15px 15px; width:100%; font-size: 18px; resize: vertical; }
#commentform p, .enquiry-form p { margin-bottom:0; }
.form-submit input[type="submit"] { border:1px solid #000; color:#000; }
.form-submit input[type="submit"]:hover { background:#000; color:#fff; }
#respond, form#commentform, .widget.widget_newsletter .mailchimp-form { float: left; width: 100%; margin: 10px 0 0;}
#respond #commentform p.textarea { width: 100%;}
#respond #commentform p.submit { text-align: right;}
#respond #commentform .submit .button, .enquiry-form .submit .button { cursor: pointer; float: none; font-size: 14px; margin: 0; padding: 16px 16px 18px; text-transform: uppercase;}
.enquiry-form p label.error, .enquiry-form p label.error, #respond #commentform p label.error { bottom: 5%; color: #ff0000; float: right; font-size: 14px; padding: 0 2% 0 0; position: absolute; right: 0;}
.newsletter { width:100%; float:left; margin-bottom: 30px;}
.newsletter .newsletter-text { float:right; line-height:24px; }
.newsletter .newsletter-text i { float: left; margin-bottom: 20px; margin-right: 25px; margin-top: 10px; font-size:24px;}
/*----*****---- << Blog Slider >> ----*****----*/
.blog-entry .bx-wrapper img { width: auto; }
.blog-entry .bx-controls { margin: auto; position: absolute; left: 0; transform: translate( 0,-50%); -moz-transform: translate( 0,-50%); -webkit-transform: translate( 0,-50%); top: 50%; }
.blog-entry .bx-controls a, .blog-entry .bx-controls a, .blog-entry .bx-controls .bx-controls-direction a { padding:18px; width:auto; }
::i-block-chrome, .blog-section .blog-entry .bx-controls .bx-controls-direction a { padding:18px 0px; }
/*----*****---- << 2.4.5. Frames >> ----*****----*/
.frame-grid { padding: 40px; width:100%; float: left; box-sizing: border-box; position: relative; }
.frame-grid .frame-sorting { border-left: 0 none; clear: both; display: inline-block; float: left; line-height: normal; margin: 40px 0; padding: 0; text-align: center; width: 100%;}
.frame-grid .frame-sorting a { cursor: pointer; display: inline-block; font-size: 14px; font-weight: normal; line-height: normal; margin-right: 5px; outline: medium none;
padding: 15px 30px; position: relative; text-transform: uppercase; z-index: 1;}
.frame-grid .frame-fullwidth { float: left; width: 100%; margin: 0;}
.frame-grid .frame-thumb { float: left; margin: 0; padding: 0; width: 50%;}
.frame-grid .frame-details { position: absolute; margin: 0; padding: 0; top: 50%; right: 0%; transform: translate(0%, -50%); -moz-transform: translate(0%, -50%); -webkit-transform: translate(0%, -50%); width: 100%;
display: table-cell; vertical-align: middle; float:left; width: 50%; text-align: center; }
.frame-grid .frame-details .frame-content { box-sizing: border-box; float: left; margin: 0; padding: 0 80px; width: 100%;}
.dt-sc-frame-container { clear: both; float: left; margin: 0; padding: 0; width: 100%;}
.dt-sc-frame-container .frame { overflow: hidden; position: relative; margin-bottom: 18px;}
.dt-sc-frame-container .frame figure { padding: 10px; box-sizing: border-box; float: left; width: 100%;}
.dt-sc-frame-container .frame > figure::before { bottom: 0; content: ""; float: left; height: 100%; left: 0; position: absolute; right: 0; top: 0; width: 100%;}
.dt-sc-frame-container .frame.ceramic > figure::before { background-image: url("images/gold-frame.png"); background-repeat: no-repeat; background-position: center center; background-size: 100% 100%; }
.dt-sc-frame-container .frame.wooden > figure::before { background-image: url("images/wooden-frame.png"); background-repeat: no-repeat; background-position: center center; background-size: 100% 100%; }
.dt-sc-frame-container .frame.steel > figure::before { background-image: url("images/steel-frame.png"); background-repeat: no-repeat; background-position: center center; background-size: 100% 100%; }
.dt-sc-frame-container .frame.plastic > figure::before { background-image: url("images/plastic-frame.png"); background-repeat: no-repeat; background-position: center center; background-size: 100% 100%; }
.dt-sc-frame-container .frame img { max-width: 100%; width: 100%;}
.boxed .dt-sc-frame-container .frame figure { padding: 0; }
/*----*****---- << 2.4.6. About Us >> ----*****----*/
.about-section { float: left; padding:0; margin: 40px 0 50px; width: 100%;}
.about-section h3 { float: left; font-size: 40px; margin-bottom: 15px; padding: 0; text-transform: uppercase; width: 100%;}
.about-section p { float: left; margin-bottom: 50px; width: 100%;}
.mailchimp-form, #commentform, .enquiry-form { position:relative; margin-top:5px; float:left; width: 100%;}
.mailchimp-form .submit, #searchform .submit { position:absolute; right: 0; top: 0; padding: 16px 16px 18px; min-height:50px; border-radius:0px 1px 1px 0px; font-size:16px; cursor: pointer;}
.mailchimp-form p, #commentform p, .enquiry-form p, #searchform p { width:100%; margin:0 0 18px 0; padding:0; float:left; box-sizing: border-box; }
.mailchimp-form p input, #searchform p input { margin: 0; padding: 17px 0 17px 50px; font-size: 16px; float:left; }
.mailchimp-form p input[type="email"], #comment p input[type="email"], .enquiry-form p input[type="email"], #searchform p input[type="email"] { width:100%; border:none;}
.enquiry-form p input.error, .enquiry-form p textarea.error, .enquiry-form p input.error:hover, .enquiry-form p textarea.error:hover, #commentform p input.error, #commentform p textarea.error, #commentform p input.error:hover,
#commentform p textarea.error:hover, .mailchimp-form p input.error { color: #ff0000; position: relative;}
.error, input.error[type="text"], input.error[type="email"], input.error[type="password"], textarea.error, input.error[type="tel"] { border-color: #f92c2c;}
.input-text { position: relative; display: inline-block; margin: 0; width: 100%; vertical-align: top; overflow: hidden;}