-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices.css
More file actions
120 lines (118 loc) · 2.48 KB
/
services.css
File metadata and controls
120 lines (118 loc) · 2.48 KB
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
*{
margin:0;
padding:0;
box-sizing: border-box;
}
span{
display: inline-block;
text-decoration: none;
color: inherit;
}
.section-head{
margin-bottom: 60px;
}
.section-head h4{
position: relative;
padding: 0;
color:#f91942;
line-height: 1;
letter-spacing: 0.3px;
font-size:34px;
font-weight:700;
text-align: center;
text-transform: none;
margin-bottom: 30px;
}
.section-head h4::before{
content:'';
width:60px;
height:3px;
background:#f91942;
position:absolute;
bottom:-10px;
left:0;
right:0;
margin:0 auto;
}
.section-head h4 span{
font-weight: 700;
padding-bottom: 5px;
color:#2f2f2f;
}
.section-head p{
color:#818181;
font-size: 16px;
line-height: 28px;
text-align: center;
}
.item{
background:#fff;
text-align: center;
padding:30px 25px;
box-shadow: 0 0 25px rgba(0,0,0,0.07);
border-radius: 20px;
margin-bottom: 30px;
border:5px solid rgba(0,0,0,0.07);
-webkit-transition:all 0.5s ease 0s;
transition:all 0.5s ease 0s;
}
.item:hover{
background:#f91942;
box-shadow: 0 8px 20px 0 rgba(0,0,0,0.2);
-webkit-transition:all 0.5s ease 0s;
transition:all 0.5s ease 0s;
}
.item:hover .item,
.item:hover span.icon{
background:#fff;
border-radius: 10px;
-webkit-transition:all 0.5s ease 0s;
transition:all 0.5s ease 0s;
}
.item:hover h6,
.item:hover p{
color:#fff;
-webkit-transition:all 0.5s ease 0s;
transition:all 0.5s ease 0s;
}
.item .icon{
font-size:40px;
margin-bottom: 25px;
color:#f91942;
width:90px;
height:90px;
line-height: 96px;
border-radius: 50px;
}
.item .feature_box_col_one{
background:rgba(247,198,5,0.2);
color:#f91942;
}
.item .feature_box_col_two{
background: rgba(255, 77, 28, 0.15);
color:#f91942;
}
.item .feature_box_col_three{
background:rgba(0,147,38,0.15);
color:#f91942;
}
.item .feature_box_col_four{
background:rgba(0,108,255,0.15);
color:#f91942;
}
.item .feature_box_col_five{
background:rgba(146,39,255,0.15);
color:#f91942;
}
.item .feature_box_col_six{
background:rgba(23,39,246,0.15);
color:#f91942;
}
.item p{
font-size: 15px;
line-height: 26px;
}
.item h6{
margin-bottom: 20px;
color:#2f2f2f;
}