-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
352 lines (259 loc) · 6.69 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
/* import fonts from fonts.css file */
@import url(/fonts.css);
/* css variables */
@import url(_variables.css);
/* import global styling */
@import url(_global.css);
/* start navigation */
.header_area .main-menu .navbar .navbar-brand{
padding: 0 2rem 0 5rem;
}
.header_area .main-menu .navbar{
padding: 1rem 20rem ;
}
.header_area .main-menu .nav-item .nav-link{
font: normal 500 15px/2px var(--roboto);
text-transform: uppercase;
padding: 1.7rem;
color: var(--title-color);
}
.header_area .main-menu .navbar-nav .active a{
background: var(--gradient-color);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.header_area .main-menu .navbar-nav a:hover{
background: var(--gradient-color);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
/* end navigation */
/* Banner Area */
.site-main .site-banner {
background: url(./img/banner/home-banner.png) no-repeat 0% 50%;
}
.site-main .site-banner .site-title h3{
padding-top: 35%;
font-weight: 500;
}
.site-main .site-banner .site-title h3::after{
content: " ";
height: 2px;
width: 18vw;
background: black;
display: inline-block;
margin-left: 5%;
transform: translateY(-10px);
}
.site-main .site-banner .site-title h1{
font-size: 5rem;
}
.site-main .site-banner .site-title h4{
font-size: 1.5rem;
}
.site-main .site-banner .banner-image > img{
padding: 7rem 0;
width: 90rem;
}
/* End Banner Area */
/* Start About Area */
.site-main .about-area{
padding: 8rem 5rem;
}
.site-main .about-area .about-title h2 > span{
display: block;
font: normal bold 49px/ 60px var(--roboto);
letter-spacing: 21px;
}
.site-main .about-area .about-title .paragraph > p{
padding: .4rem 0;
}
/* End About Area */
/* Start Brand Area */
.site-main .brand-area{
padding: 1rem 20rem;
margin-bottom: 4rem;
}
.site-main .brand-area .first-row .col-lg-4{
display: flex;
justify-content: center;
}
.site-main .brand-area .first-row .col-lg-4 > .single-brand{
border: 1px solid var(--border-color);
text-align: center;
padding: 1.8rem 0rem;
margin: .9rem 0;
width: 180px;
height: 100px;
cursor: pointer;
transition: transform .4s ease;
}
.site-main .brand-area .first-row .col-lg-4 > .single-brand > img{
width: 70%;
}
.site-main .brand-area .first-row .col-lg-4 > .single-brand:hover{
box-shadow: var(--box-shadow);
transform: scale(1.1);
}
.site-main .brand-area .experience-area{
padding-left: 1rem;
}
.site-main .brand-area .experience-area span{
display: block;
}
.site-main .brand-area .experience-area .years-area{
background: url(img/client-info-bg.png) no-repeat 45px 20px;
padding: 2rem 0;
width: 40rem;
height: 18rem;
padding-left: 8rem;
position: relative;
}
.site-main .brand-area .experience-area .bg-panel{
position: absolute;
left: -190px; top: 0%;
background: #e029290a;
width: 400px;
height: 400px;
margin-left: 340px;
z-index: -1;
}
.site-main .brand-area .experience-area .years-area .years{
font: normal bold 84px/40px var(--roboto);
color: var(--primary-color2);
z-index: 2;
}
.site-main .brand-area .experience-area .years-area h2 > span{
font: normal 600 22px/30px var(--roboto);
}
.site-main .brand-area .experience-area .call-area{
padding-left: 10rem;
}
/* End Brand Area */
/* Services Area */
.site-main .services-area{
padding: 7rem 2rem;
}
.site-main .services-area .services-title{
padding: 0 14rem;
}
.site-main .services-area .services-title h1{
font-size: 35px;
}
.site-main > .services-area .services{
background: rgba(248, 252, 253, 0.973);
padding: 2rem 0;
width: 16rem;
margin: 5rem .5rem;
transition: box-shadow .7s ease;
}
.site-main > .services-area .services:hover{
box-shadow: var(--box-shadow);
}
/* End Services Area */
/* Project Area */
.site-main .project-area{
padding: 4rem 0;
}
.site-main .project-area .button-group button{
background: transparent;
border: none;
font: normal 500 16px/130px var(--roboto);
text-transform: uppercase;
}
.site-main .project-area .button-group button + button{
padding-left: 3rem;
}
.site-main .project-area .grid .our-project > .title h4{
font: normal 700 25px/12px var(--roboto);
}
.site-main .project-area .grid .our-project .img a:hover img{
filter: brightness(1.1) drop-shadow(1px 8px 30px #b1afaf);
}
/* End Project Area */
/* About Me */
.site-main .about-area .about-title p{
padding: 1rem 7rem;
}
.site-main .about-area .client{
background: #ffffff10;
box-shadow: var(--box-shadow);
margin: 3rem 0rem;
}
.site-main .about-area .client .client-img{
padding: 2rem;
}
.site-main .about-area .client .about-client{
padding-top: 2rem;
}
.site-main .about-area .client .about-client h4{
font: normal 500 21px/ 20px var(--roboto);
}
.site-main .about-area .client .about-client p{
font-size: 14px;
}
.site-main .about-area .owl-carousel .owl-item{
display: flex;
justify-content: center;
padding: 0 1.5rem;
}
.site-main .about-area .owl-carousel .owl-dots .owl-dot.active span{
background: var(--primary-color);
width: 12px;
height: 12px;
}
/* End About Me */
/* Subscribe me */
.site-main .subscribe-us-area .subscribe{
background: url(img/subscribe-bg.png) no-repeat;
padding: 10rem 0;
margin: 3rem auto;
}
.site-main .subscribe-us-area .subscribe .subscribe-title h4{
font: normal 700 30px/ 30px var(--roboto);
color: whitesmoke;
}
.site-main .subscribe-us-area .subscribe .subscribe-title p{
color: whitesmoke;
padding: 1rem 4rem;
}
.site-main .subscribe-us-area .subscribe form .input-textbox input{
width: 400px;
padding: 1.5rem 1rem;
border: 1px solid whitesmoke;
background: transparent;
color: white;
font: normal 500 17px/20px var(--roboto);
}
.site-main .subscribe-us-area .subscribe form .input-textbox input::placeholder{
color: whitesmoke;
}
.site-main .subscribe-us-area .subscribe form .btn-submit button{
background: whitesmoke;
color: #000;
padding: .7rem 2rem;
}
/* End subscribe me */
/* Footer Area */
footer.footer-area{
padding: 5rem 0;
background: url(img/footer-bg.png) no-repeat;
}
footer.footer-area .social h5{
font: normal 500 23px/ 30px var(--roboto);
}
footer.footer-area .social a > i{
font-size:22px;
padding: 2rem;
color: var(--border-color);
}
footer.footer-area .social a:hover > i{
color: var(--primary-color);
}
@font-face{
font-family: "Roboto";
src: 'fonts/Roboto/Roboto-Regular.ttf';
}
/* End Footer */