-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
331 lines (284 loc) · 5.91 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: PP mori;
color: #fff;
}
html,
body {
height: 100%;
width: 100%;
}
#main {
background-color: #0f0d0d;
cursor: none;
}
/* Custom cursor start */
#custom-cursor {
padding: 10px;
font-size: 10px;
font-weight: 600;
border-radius: 50%;
position: fixed;
background-color: #edbfff;
z-index: 10;
mix-blend-mode: difference;
transition: top linear 0.1s left linear 0.1s background-image ease 0.5s;
background-position: center;
background-size: cover;
}
/* Custom cursor end */
/* Navbar start */
#nav {
height: 55px;
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
padding-inline: 30px;
position: fixed;
mix-blend-mode: difference;
z-index: 20;
}
#nav img.logo {
height: 26px;
}
#nav .nav-links {
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
}
#nav .nav-links h4 {
font-size: 13px;
font-weight: 500;
text-transform: uppercase;
}
#nav .nav-links h4:first-of-type {
border-bottom: 1.5px solid #fff;
}
#nav .nav-right .circle {
width: 20px;
height: 20px;
border-radius: 50%;
background-color: #fff;
}
/* Navbar end */
/* Hero section start */
#hero-section {
min-height: 100vh;
width: 100%;
position: relative;
z-index: 11;
padding-top: 12vw;
}
#hero-section .header h1.title {
font-size: 8vw;
font-weight: 400;
transform-origin: left;
}
#hero-section .header h1.title:first-of-type {
margin-left: 6vw;
}
#hero-section .header h1.title:last-of-type {
margin-left: 25vw;
}
#hero-section .video-wrapper video {
width: 60%;
margin-top: 10vw;
position: relative;
left: 50%;
transform: translate(-50%, 0);
}
/* Hero section end */
/* About us start */
#about-us-section {
min-height: 100vh;
width: 100%;
padding: 150px 5vw;
border-bottom: 2px solid #000;
position: relative;
z-index: 11;
}
#about-us-section h1.title {
font-size: 7vw;
font-weight: 300;
color: #111;
margin-bottom: 5vw;
}
#about-us-section .about-us-wrapper {
height: 60%;
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
}
#about-us-section .about-us-wrapper .about-us-left {
width: 40%;
}
#about-us-section .about-us-wrapper .about-us-left h2 {
font-size: 4vw;
font-weight: 300;
text-transform: uppercase;
color: #111;
line-height: 1;
}
#about-us-section .about-us-wrapper .about-us-right {
width: 24%;
}
#about-us-section .about-us-wrapper .about-us-right p {
font-size: 27px;
color: #111;
}
#about-us-section .about-us-wrapper .about-us-right button {
width: 100%;
background-color: #edbfff;
border-radius: 50px;
border: none;
padding: 10px 0;
margin-top: 10px;
color: #000;
cursor: pointer;
}
/* About us end */
/* Our work start */
#our-work-section {
min-height: 100vh;
width: 100%;
padding-top: 100px;
position: relative;
z-index: 11;
}
#our-work-section h1 {
font-size: 7vw;
font-weight: 300;
color: #111;
margin-left: 100px;
}
#our-work-section .row {
display: flex;
align-items: flex-start;
justify-content: space-between;
}
#our-work-section .first-row img {
height: 475px;
margin-top: 100px;
}
#our-work-section .first-row video {
height: 420px;
margin-top: 100px;
}
#our-work-section .row .description {
display: flex;
align-items: flex-end;
gap: 10px;
margin-top: 8px;
}
#our-work-section .row .row-left .description {
justify-content: flex-end;
}
#our-work-section .row .row-right .description {
justify-content: flex-start;
}
#our-work-section .row .description h6 {
color: #111;
font-size: 16px;
line-height: 0.8;
}
#our-work-section .row .description p {
color: #111;
font-size: 12px;
}
/* Our work end */
/* Our services start */
#our-services-section {
min-height: 100vh;
width: 100%;
position: relative;
z-index: 11;
padding: 250px 100px;
}
#our-services-section .service {
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
#our-services-section .service .text {
height: 8vw;
overflow: hidden;
}
#our-services-section .service .text h1 {
font-size: 7.3vw;
transition: all ease-out 0.5s;
position: relative;
z-index: 12;
}
#our-services-section .service img {
position: absolute;
width: 400px;
opacity: 0;
transition: all ease-out 0.5s;
transform: translateY(10%) rotate(2deg);
}
#our-services-section .service img:nth-child(1) {
left: 2%;
}
#our-services-section .service img:nth-child(3) {
right: 2%;
}
#our-services-section .service:hover h1 {
transform: translateY(-100%);
color: #edbfff;
}
#our-services-section .service:hover img {
opacity: 1;
transform: translateY(0) rotate(0);
}
/* Our services end */
/* Our clients start */
#our-clients-section {
min-height: 100vh;
width: 100%;
position: relative;
z-index: 11;
padding: 150px 100px;
}
#our-clients-section h2 {
font-size: 6vw;
text-transform: uppercase;
margin-bottom: 50px;
}
#our-clients-section .client-work {
display: flex;
align-items: center;
justify-content: space-between;
height: 100px;
padding-inline: 20px;
border-top: 1.5px solid #dadada;
}
#our-clients-section .client-work:last-child {
border-bottom: 1.5px solid #dadada;
}
#image-preview {
width: 470px;
height: 370px;
position: fixed;
z-index: 12;
transition: background-image ease 0.5s;
background-position: center;
background-size: cover;
opacity: 0;
}
/* Our clients end */
/* Footer start */
footer{
min-height: 30vh;
width: 100%;
background-color: #edbfff;
font-size: 1.5vw;
text-align: center;
padding: 15px;
}
/* Footer end */