-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
2105 lines (2082 loc) · 40.1 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*-----------------------------------------------------------------------------------
Template Name: academia education bootstrap template
Template URI: http://bootexperts.com
Description: This is html5 template
Author: BootExperts
Author URI: http://bootexperts.com
Version: 1.0
-----------------------------------------------------------------------------------
CSS INDEX
===================
*** Theme Default CSS (body, link color, section etc)
1. header area css
2. nav menu css
3. slider area css
4. about area css
5. service area css
6. courses area css
7. single courses css
8. teacher area css
9. offer area css
10. priging area css
11. share area css
12.News area css
13. footer area css
14. footer bottom css
15. banner css
16. home 2 css
17. home 3 css
18.faq area css
19.gellary area css
20.404 area css
21.about top banner page css
22. banner area css
23.News Bulletin css
23.1 single news blutin css
24. blog area css
25.contact area css
26. breadcrumb css
-----------------------------------------------------------------------------------*/
/*----------------------------------------*/
/* 1. Theme default CSS
/*----------------------------------------*/
html, body {height: 100%;}
body {
font-family: 'Montserrat', sans-serif;
font-size: 14px;
line-height: 1.42857143;
color: #373737;
background-color: #ffffff;
font-family: 'Montserrat Light', arial;
}
input,
button,
select,
textarea {
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
.floatleft {float:left}
.floatright {float:right}
.alignleft {float:left;margin-right:15px;margin-bottom: 15px}
.alignright {float:right;margin-left:15px;margin-bottom: 15px}
.aligncenter {display:block;margin:0 auto 15px}
a:focus {outline:0px solid}
img {max-width:100%;height:auto}
.fix {overflow:hidden}
p {margin:0 0 10px;font-family: 'Montserrat', sans-serif; font-family:Helvetica,Arial,sans-serif;}
h1, h2, h3, h4, h5, h6 {
margin: 10px 0 10px;color:#2d2d2d;font-family: 'Montserrat', sans-serif;font-size:18px;
}
h5{
font-size:14px;
}
a {
color: #01bafd;font-family: 'Montserrat', sans-serif;
text-decoration: none;
}
a:hover,
a:focus {
color: #0195ca;
text-decoration: none;
}
a:focus {
}
figure {
margin: 0;
}
ul{
list-style: outside none none;
margin: 0;
padding: 0
}
small, .small {
font-size: 85%;
}
ul,li,a{
font-family: 'Montserrat', sans-serif;
}
.clear{clear:both}
body {}
.pd0{
padding:0px;
}
.pdr0{
padding-right:0px;
}
.pdrl{
padding-left:0px;
}
/*====================
header area css
=====================*/
.header_area{
color: #636363;
padding-bottom: 20px;
padding-top: 20px;
background:#fff;
}
.social_icon{margin-right:10px;}
.social_icon a.icon-set i {
border: 1px solid transparent;
display: block;
padding: 9px 5px;
text-align: center;
}
.social_icon p
{
margin:0px;
}
select.form-lan {
border: 1px solid #01bafd;
border-radius: 0;
outline: 0 none;
padding: 6px 15px;
text-align: center;
text-transform: capitalize;
transition: all 0.3s ease 0s;
}
.social_icon p a{
display:inline-block;
}
.phone_address p{margin:5px 0 0}
.phone_address span {
margin-left: 15px;
}
/*====================
2. nav menu css
=====================*/
.nav_area {background:#141414;} .menu ul {
}
.menu ul li {
float:left;
position:relative;
}
.menu ul li > a {
display:block;
text-transform: uppercase;
color: #fff;
font-weight: bold;
-moz-transition: .3s;
-webkit-transition: .3s;
-o-transition: .3s;
-ms-transition: .3s;
transition: .3s;
padding:15px 17px;
}
.menu ul li:hover a {
color: #fff;
background: #02BAFF;
}
.menu ul ul {
background: #01bafd none repeat scroll 0 0;
left: 0;
position: absolute;
top: 100%;
width: 200px;
z-index: 999;
transform-origin: 0 0 0;
-webkit-transform-origin: 0 0 0;
-moz-transform-origin: 0 0 0;
-o-transform-origin: 0 0 0;
-ms-transform-origin: 0 0 0;
transform: scaleY(0);
-webkit-transform: scaleY(0);
-moz-transform: scaleY(0);
-o-transform: scaleY(0);
-ms-transform: scaleY(0);
transition: .5s;
-webkit-transition: .5s;
-moz-transition: .5s;
-o-transition: .5s;
-ms-transition: .5s;
opacity:0;
}
.menu ul ul li{
display:block;
float:none;
}
.menu ul ul li a {
font-size: 12px;
font-weight: normal;
padding: 12px 15px;
}
.menu ul ul li a:hover{
background:rgb(1,149,202);
}
.menu ul li:hover ul{
opacity:1;
transform: scaleY(1);
-webkit-transform: scaleY(1);
-moz-transform: scaleY(1);
-o-transform: scaleY(1);
-ms-transform: scaleY(1);
}
.home-3 .menu ul ul li > a {
color: #fff;
}
/*serch form css*/
.form_control {
background: #000 none repeat scroll 0 0;
border: 0 none;
color: #fff;
height: 50px; box-shadow: 0 0 9px #fff;
margin-right:5px;
padding-left:10px;
}
.home-2 .form_control {
background: #fff none repeat scroll 0 0;
box-shadow: 0 0 2px #01bafd;color:#666;
}
.form_control:focus{
box-shadow: 0 0 5px #fff;
}
.home-3 .form_control{
box-shadow: 0 0 5px rgb(2, 186, 255);
}
.home-3 .form_control{
color:#666;
padding-left:10px;
}
.form_control{
display:none;
}
.search-box{}
.search-box input{}
.search-box .search-open {
display: block;
float: right;
text-align: right;
width: 19px;
margin-right:15px;
}
.search-box .search-open i {
color:#fff;
cursor: pointer;
font-size: 16px;
line-height: 50px;
opacity: 1;
}
.search-box .search-open i:hover {
color: #333;
}
.home-2 .search-box .search-open {
margin-right:15px;
}
.home-2 .search-box .search-open i {
color: #fff;
}
/*----------------------------------------*/
/*3. Slider area css
/*----------------------------------------*/
.slide_wrap_area{
position:relative;
}
.home-2.nav_area {
left: 0;
position: absolute;
right: 0;
top: 25px;
z-index: 9999;
background:transparent;
}
.slider-wrap.home-1-slider {
height: 600px;
overflow: hidden;
}
.nivo-caption {
background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
height: 100%;
opacity: 1;
}
.slide-text {
height: 100%;
margin-left: 0px;
width: 100%;
}
.cap-title h1 {
color: #fff;
font-size: 62px;
font-weight: 700;
margin-left: 0;
text-transform: capitalize;
}
.cap-dec {
margin-bottom: 35px;
}
.cap-dec h2 {
color: #fff;
font-size: 28px;
}
.cap-readmore {
}
.cap-readmore a {
background: #02baff none repeat scroll 0 0;
color: #fff;
font-size: 18px;
padding: 16px 26px;
text-transform: uppercase;
transition:.5s;
}
.cap-readmore a:hover {
background:#fff;
box-shadow:0 1px 2px rgba(43, 59, 93, 0.29), 0 0 13px rgba(43, 59, 93, 0.29);
color:#02baff;
}
i.nivo-prev-icon,
i.nivo-next-icon {
background: #314e6c none repeat scroll 0 0;
}
.home-1-slider i.nivo-prev-icon,
.home-1-slider i.nivo-next-icon {
background: rgba(0,0,0,.8);
border: 1px solid rgba(0,0,0,.8);
color: #fff;
font-size: 25px;
height: 40px;
line-height: 38px;
text-align: center;
width: 40px;
-webkit-transition: .5s;
-moz-transition: .5s;
-o-transition: .5s;
-ms-transition: .5s;
transition: .5s;
border-radius:50%;
}
i.nivo-prev-icon:hover,
i.nivo-next-icon:hover {
background: #000;
border-color: #000;
}
.slider-wrap:hover i.nivo-prev-icon,
.slider-wrap:hover i.nivo-next-icon {
transform: scale(1);
-webkit-transform: scale(1);
-moz-transform: scale(1);
-o-transform: scale(1);
-ms-transform: scale(1);
opacity: 1;
}
.nivo-controlNav {
position: absolute;
width: 100%;
bottom: 0;
z-index: 9999;
}
.nivo-directionNav a {
cursor: pointer;
position: absolute;
top: 35%;
z-index: 9;
}
.nivo-prevNav {
left: 5px;
}
.nivo-nextNav {
right: 5px;
}
.nivo-control {
background: #e2e2e2 none repeat scroll 0 0;
border-radius: 4px;
display: inline-block;
height: 15px;
margin: 0 5px;
text-indent: -99999px;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-o-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
width: 15px;
}
.nivo-control.active {
background: #314E6C;
}
.slide1-text.slide-text {
margin-top: 0;
}
.nivo-prevNav i:hover,
.nivo-nextNav i:hover
{
background: #01bafd none repeat scroll 0 0;
border-color: #01bafd;
}
.nivoSlider img {}
/*slider 1 css */
.slider_area{
background: #02baff none repeat scroll 0 0;overflow: hidden;
}
.slide_text {
background: #02baff none repeat scroll 0 0;
color: #fff;
padding: 48px 0 48px 30px;
}
.slide_title {
animation-delay: 0.1s;
color: #fff;
font-size: 48px;
font-weight: bold;
padding-right: 20px; margin-top: 46px;
text-transform: uppercase;
}
.home-4 .slide_title {
margin-top: 0px;
}
.slide_ptext{
font-size: 21px;
font-weight: 200;
margin-bottom: 15px;
}
.slide_readmore {
background-color: #01bafd;
border: 1px solid #fff;
color: #ffffff;
display: inline-block;
padding: 10px 20px;
text-transform: uppercase;font-size: 18px;
transition:1s;
}
.slide_readmore:hover{
background-color: #fff;
color:#01bafd;
border-color:#fff;
}
.slide_tab{
background:rgb(45,45,45);
}
.slide_tab:after{
clear:both;
display:block;
content:"";
}
.nav_style li {
float:left;
width: 20%;
position:relative;
}
.nav_style li a {
color: #fff;
display: inline-block;
font-size: 13px;
height: 75px;
padding: 19px 0 0 59px;
}
.nav > li > a:focus, .nav > li > a:hover{background:transparent;}
.nav_style li::before {
border: 1px solid #656565;
border-radius: 50%;
content: "";
height: 15px;
left: 20px;
position: absolute;
top: 30%;
width: 15px;
}
.nav_style li.active{
background:#000;
}
.nav_style li.active::before{
background:rgb(2,186,255);border: 1px solid rgb(2,186,255);
}
.slide_nav_menu{
overflow:hidden;
}
/*================
about area css
===================*/
.about_area{
padding: 50px 0 0px;
background:#fff;
}
.module-title{
font-family: 'Montserrat', sans-serif;
font-size: 24px; margin-bottom: 25px;
font-weight: normal; color: inherit;
}
.module-title > span {
display: block;
font-family: 'Montserrat', sans-serif;
font-size: 62px;
font-weight: bold;
margin-left: -4px; text-transform: uppercase;
}
.content-inner p{}
.video-wrapper {
background-image: url("img/video-img-1.jpg");
background-repeat: no-repeat;
box-shadow: 0 1px 2px rgba(43, 59, 93, 0.29);
margin-top: 15px;
min-height: 400px;
position: relative;
transition: all 0.2s ease-in-out 0s;
-webkit-transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
-o-transition: all 0.2s ease-in-out 0s;
-ms-transition: all 0.2s ease-in-out 0s;
visibility: visible;
width: 100%;
margin-bottom:40px;
}
.video-wrapper .vidwrap::before {
color: rgba(247, 247, 247, 0.5);
content: "";
cursor: pointer;
font: 100px/1 FontAwesome;
left: 45%;
position: absolute;
top: 40%;
transition: all 0.2s ease-in-out 0s;
z-index: 2;
}
/*================
service area css
===================*/
.service_area{
text-align:center;
padding:50px 0px;
background:#fff;
}
.service_item{
padding-top: 30px;
}
.service_item span{
font-size:80px;
transition:1s;
}
.service_item:hover span{
color:#02BAFF;
}
.service_item h2{
}
.service_item p{
}
.home-3.service_area {
padding: 30px 0 50px;
}
.iframe1{
width:100%;
height:250px;
}
/*================
courses area css
===================*/
.courses_area {
background: #f7f7f7 url("img/transparent-back-1.png") no-repeat scroll 100% 0;
padding-bottom: 50px;
padding-top: 80px;
}
.course_item {
background: #ffffff none repeat scroll 0 0;
border-radius: 0;
box-shadow: 0 1px 2px rgba(43, 59, 93, 0.29);
line-height: 1.42857;
margin-bottom: 30px;
transition: all 0.2s ease-in-out 0s;
-webkit-transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
-o-transition: all 0.2s ease-in-out 0s;
-ms-transition: all 0.2s ease-in-out 0s;
overflow:hidden;
}
.course_item:hover {
box-shadow: 0 1px 2px rgba(43, 59, 93, 0.29), 0 0 13px rgba(43, 59, 93, 0.29);
}
.courses_thumb{
position:relative;
}
.courses_thumb_text a {
color: #fff;
}
.courses_thumb_text{
color: #ffffff;
font-family: 'Montserrat', sans-serif;
font-size: 36px;
position: absolute;
text-align: center;
top: 35%;
width: 100%;
z-index: 1;
}
.courses_thumb_text p{}
.courses_content{
padding: 20px;
}
.courses_content h2{ margin: 10px 0 5px;font-weight: normal;}
.courses_content h2 a{color: #2d2d2d;}
.courses_content p{
font-weight: normal;
margin-top: 10px;
}
.text_uppercase {text-transform:uppercase;}
/*====================
single courses css
=====================*/
.met-box {
background: #ffffff none repeat scroll 0 0;
border-radius: 0;
box-shadow: 0 1px 2px rgba(43, 59, 93, 0.29);
line-height: 1.42857;
margin-bottom: 20px;
padding: 20px;
transition: all 0.2s ease-in-out 0s;
-webkit-transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
-o-transition: all 0.2s ease-in-out 0s;
-ms-transition: all 0.2s ease-in-out 0s;
}
.vedio_tutoria{
padding: 0px;
margin-top:20px;
}
.inner_video {
padding:20px;
}
.met-box figure{
}
.met-box h4,
.met-box h3{
font-size:24px; color: #636363;
}
.met-box span {
font-size: 14px;
height: 30px;
line-height: 30px;
padding-right: 18px;
text-align: center;
width: 50px;
}
/*================
teacher area css
===================*/
.teacher_area {
background: rgb(247, 247, 247) none repeat scroll 0 0;
}
.single_teacher_item{
width:25%;
float:left;
position:relative;
}
.teacher_thumb{
position:relative;
}
.teacher_thumb::before {
box-shadow: 0 -200px 200px -100px rgba(69, 69, 69, 0.75) inset;
content: "";
height: 100%;
position: absolute;
width: 100%;
}
.thumb_text > h2 {
color: #fff;
font-size: 18px;
}
.thumb_text{
bottom: 0;
padding: 0 20px;
position: absolute;color:#fff;
width: 100%;
}
.teacher_content{
background: rgba(1, 186, 253, 1) none repeat scroll 0 0;
color: #fff;
opacity: 0;
padding: 67px 40px;
text-align: center;
z-index: 2;
height: 100%;
position: absolute;
transition: all 0.4s ease-in-out 0s;
-webkit-transition: all 0.4s ease-in-out 0s;
-moz-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
-ms-transition: all 0.4s ease-in-out 0s;
width: 100%;
left:0;
top:0px;
}
.teacher_content > p {
margin-top: 10px;
}
.social_icons{
}
.social_icons a {
border-radius: 50%;
color: #fff;
display: inline-block;
font-size: 16px;
font-style: normal;
height: 37px;
line-height: 37px;
width: 37px; margin-top:10px;
}
.social_icons a i{
}
.fb {
background: #3B5998;
}
.tw {
background: #00ACED;
}
.go {
background: #DD4B39;
}
.lin {
background: #0177B5;
}
.pin:hover {
background: #CB2027;
}
.single_teacher_item:hover .teacher_content{
box-shadow: 0 45px 100px rgba(14, 21, 47, 0.4), 0 16px 40px rgba(14, 21, 47, 0.4);
opacity: 1;
transform: scale(1.1);
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-o-transform: scale(1.1);
-ms-transform: scale(1.1);
opacity:1;
}
.home-2 .teacher_content {
padding: 80px 60px 0;
}
/*================
offer area css
===================*/
.offer_area {
background-image: url("img/home1/team/action-bg.jpg");
background-repeat: no-repeat;
background-size: cover;
clear: both;
color: #ffffff;
font-size: 16px;
padding: 185px 0 180px;
position: relative;
width: auto;
}
.offer_area::before {
bottom: 0;
box-shadow: 800px 0 500px -150px rgba(0, 0, 0, 0.5) inset;
content: "";
display: block;
height: 100%;
position: absolute;
width: 100%;
}
.offer_content > p {
font-size: 20px;
}
.readmorep {
margin-top: 40px;
}
.readmore {
background-color: #01bafd;
border-color: #01a7e4;
border-radius: 0;
color: #ffffff;
display: inline-block;
font-size: 18px;
line-height: 1.33;
margin-top: 30px;
padding: 10px 18px;text-transform:uppercase;
transition:1s;
}
.readmore:hover{
background:#fff;
color:#01bafd;
}
.read_more.bmore {
font-size: 20px;
padding: 15px 20px;
}
.offer-title {
color: inherit;
font-family: "Montserrat",sans-serif;
font-size: 29px;
font-weight: normal;
margin-bottom: 15px;
}
.offer-title > span {
display: block;
font-family: "Montserrat",sans-serif;
font-size: 53px;
font-weight: bold;
text-transform: uppercase;
}
.media-box {
float: right;
margin-top: 44%;
}
.video-button {
color: #ffffff;
display: block;
font-family: monosterbold;
font-size: 27px;
font-weight: bold;
margin-top: 10px;
position: relative;
}
.video-button:hover{
color:#fff;
background:transparent;
}
/*================
priging area css
===================*/
.priging_area {
background: #f7f7f7 none repeat scroll 0 0;
color: #373737;
padding-top: 80px;
padding-bottom: 95px;
}
.priging_thumb a{
position:relative;
display:block;
}
.priging_thumb a{
}
.priging_item {
margin-bottom: 30px;
}
.priging_content{}
.priging_content > h2 {
margin: 20px 0 10px;
}
.priging_content a {
background-color: #01bafd;
border-color: #01a7e4;
color: #ffffff;
display: inline-block;
padding: 10px 30px;
text-transform: uppercase;
transition:1s;
-webkit-transition:1s;
-ms-transition:1s;
-o-transition:1s;
-moz-transition:1s;
}
.priging_content a:hover{
background:#0195CA;
}
.readmore:hover{
box-shadow: 0 1px 2px rgba(43, 59, 93, 0.29), 0 0 13px rgba(43, 59, 93, 0.29);
}
.learnmore {
margin: 61px 0 0;
text-align: center;
}
.readmore.read3 {
font-size: 27px;
margin-top: 20px;
padding: 10px 15px;
}
.read_more.buttonc {
border: medium none;
line-height: 18px;
margin-top: 0px;
padding: 10px 30px;
}
.single_priging_area {
padding: 100px 0 10px;
}
.store_title {
font-size: 54px;
font-weight: bold;
}
.priging_content .store_title{
margin-top:-10px;
}
.label_right{
margin-left:10px;
}
.log-dis{
list-style:disc ;
}
.i_box.input_box40 input{
width:40%;
}
/*================
share area css
===================*/
.share_area {
background: #fff none repeat scroll 0 0;
padding: 95px 0 95px;
}
.share-item {
overflow: hidden;
}
.share-container{}
.share-container > div{}
.share-container > div:nth-child(1) .share-item {
background:#3b5997;
}
.share-container > div:nth-child(1) .share-item:hover {
background:#263960;
}
.share-container > div:nth-child(2) .share-item {
background:#29c5f6;
}
.share-container > div:nth-child(2) .share-item:hover{
background:#089cca;
}
.share-container > div:nth-child(3) .share-item {
background:#de332c;
}
.share-container > div:nth-child(3) .share-item:hover {
background:#a41f1a;
}
.share-container > div:nth-child(4) .share-item {
background:#006dc0;
}
.share-container > div:nth-child(4) .share-item:hover {
background:#004274;
}
.brand_content{
}
.brand_content a {
color: #fff;
position: relative;
}
.brand_content i {
color: #fff;
font-size: 5em;
left: 0;
margin-right: 20px;
position: absolute;
top: 37px;
}
.content_left_tw i{
left:-21px;
}
.content_left_in i{
left:-7px;
}
.content_left_pn i{
left:-23px;
}
.icone_text {
margin-left: 20%;
padding: 15px 15px 10px;
}
.icone_text h5{
color:#fff;
}
.icone_text > p {
padding-top: 7px;
}
/*================
News area css
===================*/
.news_area {
background: #fff none repeat scroll 0 0;
padding: 80px 0 0;
}
.single_news_item{
background: #ffffff none repeat scroll 0 0;
box-shadow: 0 1px 2px rgba(43, 59, 93, 0.29);
line-height: 1.42857;
transition: all 0.2s ease-in-out 0s;
-webkit-transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
-o-transition: all 0.2s ease-in-out 0s;
-ms-transition: all 0.2s ease-in-out 0s;
margin-bottom:15px;
}
.news_content {
padding:15px;
}
.date{
font-size:11px;