-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.css
133 lines (115 loc) · 3.27 KB
/
home.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
.banner {
z-index: 1;
background-attachment: fixed;
min-height: 100vh;
background: url('../img/banner.jpg');
background-size: cover;
background-repeat: no-repeat;
background-position: center;
display: flex;
justify-content: space-between;
align-items: center;
opacity: .8;
}
.banner h2 {
font-size: 3em;
color: #000;
font-weight: 500;
line-height: 1.5em;
}
.banner h2 span {
font-size: 1.5em;
font-weight: 700;
}
.banner p {
font-size: 1.2em;
color: #ffffff;
font-weight: 500;
}
.textBx{
width: 70%;
position: relative;
z-index: 2;
}
.btn {
position: relative;
background: #1789e6;
display: inline-block;
color: #ffffff;
margin-top: 20px;
padding: 10px 30px;
font-size: 18px;
text-transform: uppercase;
text-decoration: none;
letter-spacing: 2px;
font-weight: 500;
}
.content {
display: flex;
justify-content: space-between;
}
.contentBx {
padding-right: 30px;
}
.contentBx h3 {
font-size: 30px;
margin-bottom: 10px;
}
.contentBx p {
font-size: 17px;
font-weight: 540;
line-height: 23px;
}
.w50 {
min-width: 40%;
height: 350px;
}
.w50 img{
height: 100%;
width: 100%;
}
.w50 p{
margin-top: 10px;
line-height: 25px;
padding-right: 20px;
}
img {
max-width: 100%;
}
/* this is services page css */
/* .services {
background: #111;
} */
/* .heading.white {
color: #ffffff;
} */
.services .content {
display: flex;
justify-content: center;
flex-wrap: wrap;
flex-direction: row;
}
.services .content .servicesBx {
padding: 40px 20px;
background: #fff;
color: #000;
max-width: 340px;
margin: 20px;
text-align: center;
transition: 0.5s;
border: 2px solid #2196f3;
border-radius: 10px;
box-shadow: 0px 14px 16px -16px rgb(64, 195, 255);
}
.services .content .servicesBx:hover {
background: #2196f3;
color: #fff;
}
.services .content .servicesBx img {
max-width: 80px;
filter: invert(1);
}
.services .content .servicesBx h2 {
font-size: 20px;
font-weight: 600;
}