-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
490 lines (418 loc) · 7.06 KB
/
main.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
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
position: fixed;
background: transparent;
top: 0;
z-index: 1;
left: 0;
right: 0;
transition: background-color, box-shadow 0.25s ease;
}
.header__scrolled {
background-color: white;
box-shadow: 0 12px 34px -11px rgb(65 62 101 / 10%);
}
.header__logo {
height: 30px;
}
header a {
font-size: 15px;
font-weight: 600;
margin-right: 25px;
}
body {
font-family: 'Raleway', sans-serif;
color: #213053;
margin: 0;
}
a {
text-decoration: none;
color: #213053;
}
button {
font-family: 'Raleway', sans—serif;
font-size: 15px;
color: #fff;
background-color: #23a030;
border: none;
border-radius: 15px;
cursor: pointer;
box-shadow: 0 16px 36px rgb(52 213 68 / 22%);
padding: 15px;
}
.about {
position: relative;
display: flex;
justify-content: space-around;
align-items: center;
padding-top: 200px;
padding-bottom: 115px;
background: url('img/back.png') no-repeat;
background-position: center;
background-size: cover;
}
.orb-canvas{
position: absolute;
top: 0;
right: 0;
height: 100%;
}
.about__image {
width: 500px;
}
@keyframes rotation {
0%{
transform: rotate(0deg);
}
100%{
transform: rotate(360deg);
}
}
.about__sun_image {
width: 100px;
height: 100px;
animation: rotation 10s linear infinite;
position: absolute;
}
.about h1 {
font-size: 70px;
line-height: 76px;
}
.about p {
font-size: 18px;
line-height: 30px;
opacity: 0.8;
}
.about button {
font-size: 18px;
border-radius: 20px;
padding: 20px 25px;
margin-top: 20px;
}
.about__info {
max-width: 550px;
}
.features {
background-color: #fff;
padding: 115px 60px;
}
.cards {
display: grid;
grid-gap: 50px;
grid-template-columns: 1fr 1fr 1fr;
}
.card {
padding: 35px 40px 25px 40px;
background: #FFFFFF;
border: 1px solid #d9e4e6;
border-radius: 5px;
}
.card p {
font-size: 16px;
line-height: 22px;
opacity: 0.8;
}
.card__logo {
height: 100px;
width: 100px;
font-size: 32px;
font-weight: 700;
background: #eaeff9;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
}
.card__logo.yellow {
color: #ffb406;
}
.card__logo.red {
color: #ad1714;
}
.card__logo.green {
color: #22a030;
}
.features__border {
width: 100%;
border: 1px solid #E6EAF4;
margin-top: 50px;
margin-bottom: 0px;
}
.features__feedback {
display: flex;
}
.features__feedback-left {
margin-right: 10px;
}
.features__feedback-left h2 {
font-size: 48px;
}
.features__feedback-left p {
font-size: 18px;
line-height: 26px;
opacity: 0.7;
}
.features__feedback-right {
display: flex;
align-items: center;
}
.features__box {
padding: 30px 40px 25px 40px;
color: white;
border-radius: 25px;
}
.features__box h3 {
margin-top: 0px;
margin-bottom: 20px;
font-size: 48px;
}
.features__savings-box {
height: 60%;
background-color: #dc5e26;
box-shadow: 0 6px 0 rgb(221 95 38 / 20%);
margin-right: 30px;
}
.features__rate-box {
height: 60%;
background-color: #1D263A;
box-shadow: 0 6px 0 rgb(29 38 58 / 20%);
}
.stars {
color: #ff7039;
}
.promo {
display: flex;
}
.promo__image {
background-image: url(img/promo.jpeg);
width: 50%;
flex-shrink: 0;
background-size: cover;
background-position: center;
}
.promo__right {
background-color: #dd5f26;
padding: 160px 60px;
}
.promo__text {
background-color: white;
padding: 30px 40px;
font-size: 20px;
line-height: 22px;
font-weight: 500;
border-radius: 25px;
}
.promo__text p::before {
content: '';
display: inline-block;
width: 10px;
height: 10px;
border-radius: 10px;
background-color: #ec6b29;
margin-right: 10px;
}
.promo__button-wrap {
display: flex;
justify-content: center;
}
.promo__text button {
background-color: #107b1c;
margin-top: 20px;
font-size: 18px;
font-weight: 600;
box-shadow: 0 16px 36px rgb(16 122 28 / 30%);
padding: 15px 30px;
}
.promo__text button i {
margin-left: 20px;
font-size: 15px;
}
.promo__text p {
opacity: 80%;
}
.form__container {
width: 550px;
}
.form {
display: flex;
justify-content: center;
align-items: center;
background-color: #1D263A;
color: #fff;
padding-top: 115px;
padding-bottom: 115px;
text-align: center;
}
.form h1 {
font-size: 48px;
}
.form p {
font-size: 18px;
opacity: 0.65;
}
.form__group {
display: flex;
flex-direction: column;
text-align: left;
}
.form form {
display: grid;
grid-gap: 20px;
margin-top: 60px;
}
.form label {
font-size: 18px;
font-weight: 600;
margin-bottom: 15px;
}
.form input {
font-size: 18px;
color: #213053;
height: 60px;
padding: 0 20px 0 20px;
border-radius: 15px;
border: none;
}
.form select {
font-size: 18px;
color: #213053;
height: 60px;
padding: 0 20px 0 20px;
border-radius: 15px;
border: none;
}
.form__submit {
font-size: 18px;
font-weight: 600;
margin-top: 40px;
}
select {
appearance: none;
outline: none;
}
input {
outline: none;
}
button:hover {
background-color: #f6980c;
box-shadow: 0 16px 36px rgba(246 152 12 / 20%);
transition: background-color 0.3s ease-in;
}
footer {
padding: 90px 20px 90px 20px;
font-size: 16px;
font-weight: 600;
}
.footer__container {
display: flex;
justify-content: center;
}
.footer__copyright {
margin-top: 40px;
text-align: center;
opacity: 0.5;
}
.footer__group {
padding-right: 80px;
}
.footer__links {
display: flex;
flex-direction: column;
padding-bottom: 15px;
}
.footer__links h3{
font-size: 16px;
opacity: 0.7;
padding-bottom: 30px;
}
@media (max-width: 720px) {
header {
padding: 10px;
}
.header__logo {
height: 20px;
}
header a {
margin-right: 10px;
}
.about {
flex-direction: column-reverse;
padding: 50px 10px;
}
.about h1 {
font-size: 36px;
line-height: 40px;
}
.form {
padding: 50px 10px;
}
.form h1 {
font-size: 36px;
}
footer {
padding: 50px 10px;
}
.footer__container {
flex-direction: column;
}
.about__image {
width: 280px;
}
.about__sun_image {
width: 75px;
height: 75px;
}
.features {
padding: 50px 10px;
}
.cards {
grid-template-columns: auto;
}
.features__feedback {
flex-direction: column;
}
.features__feedback-left {
margin-right: 0;
}
.features__feedback-left h2 .features__box h3 {
font-size: 36px;
}
.features__feedback-right {
flex-direction: column;
align-items: initial;
}
.features__savings-box {
margin-right: 0;
margin-bottom: 30px;
}
.promo {
flex-direction: column-reverse;
}
.promo__right {
padding: 50px 10px;
}
.promo__right {
width: 100%;
height: 500px;
}
}
@media (max-width: 1024px) {
.about {
padding-left: 20px;
padding-right: 20px;
}
.about h1 {
font-size: 36px;
line-height: 40px;
}
.about__image {
width: 280px;
}
.about__sun_image {
width: 75px;
height: 75px;
}
}