This repository was archived by the owner on Aug 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 604
Expand file tree
/
Copy pathfeatures-services.css
More file actions
121 lines (103 loc) · 2.28 KB
/
features-services.css
File metadata and controls
121 lines (103 loc) · 2.28 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
.FeatureServices {
background-color: white;
padding-top: 100px;
padding-bottom: 130px;
}
.FeatureServices h2 {
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
.FeatureServices p {
font-size: 20px;
font-weight: 300;
color: #617283;
max-width: 870px;
text-align: center;
line-height: 1.3;
margin: 40px auto 60px;
}
.FeatureServices-logos {
background-size: auto 75px;
height: 75px;
background-position: calc(50% - 170px);
}
@media (max-width: 1599px) {
.FeatureServices-logos {
background-position: calc(50% - 100px);
}
}
.FeatureServices-cols {
display: flex;
margin-top: 80px;
margin-bottom: 30px;
}
.FeatureServices-cols--imageWrapper {
width: 50%;
margin-right: 45px;
}
.FeatureServices-cols--imageWrapper img {
width: 100%;
max-width: 550px;
}
.FeatureServices-cols h3 {
font-size: 20px;
font-weight: 600;
color: #515151;
max-width: 250px;
line-height: 1.5;
margin-bottom: 20px;
margin-top: 25px;
}
.FeatureServices-cols p {
font-size: 14px;
color: #989898;
line-height: 1.8;
max-width: 405px;
margin-right: 15px;
}
.FeatureServices--list .slick-track{
display: flex;
align-items: center;
}
.FeatureServices--list-item {
margin: 0 20px;
opacity: 0.3;
cursor: pointer;
outline: none;
-webkit-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
-moz-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
-ms-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
-o-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.FeatureServices--list-item:hover, .FeatureServices--list-item.slick-current {
opacity: 1;
}
@media (max-width: 991px) {
.FeatureServices-cols {
flex-direction: column-reverse;
text-align: center;
align-items: center;
margin-top: 30px;
}
.FeatureServices-cols p, .FeatureServices-cols h3 {
text-align: center;
max-width: none;
margin: 0 50px;
}
.FeatureServices-cols--imageWrapper {
min-width: 100% !important;
margin: 0;
margin-top: 20px;
margin-bottom: 20px;
}
.FeatureServices-logos {
background-position: calc(50% + 125px);
}
}
@media (max-width: 768px) {
.FeatureServices-cols p, .FeatureServices-cols h3 {
margin: 0 15px;
}
}