-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex-2.html
747 lines (676 loc) · 30.2 KB
/
index-2.html
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
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"
integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="./dist/output.css" />
<title>Professional Portfolio</title>
</head>
<body class="2xl:max-w-screen-2xl 2xl:mx-auto 2xl:bg-primary">
<header
class="p-6 bg-primary text-text relative md:p-16 flex flex-col gap-y-5 lg:gap-y-20"
>
<nav class="p-2 flex justify-between items-center">
<a class="text-accent" href="#">JD</a>
<ul
class="nav sm:flex-row sm:scale-y-100 sm:backdrop-blur-0 sm:static sm:p-2 sm:bg-transparent"
>
<li class="m-2">
<a
class="nav--link sm:hover:text-accent sm:before:bg-accent"
href="#"
>Home</a
>
</li>
<li class="m-2">
<a
class="nav--link sm:hover:text-accent sm:before:bg-accent"
href="#"
>about</a
>
</li>
<li class="m-2">
<a
class="nav--link sm:hover:text-accent sm:before:bg-accent"
href="#"
>Services</a
>
</li>
<li class="m-2">
<a
class="nav--link sm:hover:text-accent sm:before:bg-accent"
href="#"
>Contact</a
>
</li>
</ul>
<div class="hamburger sm:hidden"></div>
<a
class="uppercase border-2 border-accent p-2 text-xs rounded-sm sm:text-lg sm:px-4"
href="#"
>Book Now</a
>
</nav>
<section
class="flex flex-col gap-10 lg:flex-row lg:*:basis-full lg:gap-x-24 xl:gap-x-12"
>
<div
class="flex flex-col gap-y-5 lg:gap-y-12 xl:self-center xl:gap-y-24"
>
<div class="space-y-2 lg:space-y-4">
<h6
class="text-sm pl-6 uppercase relative before before:h-1 before:w-4 before:bg-accent before:top-2/4 before:-translate-y-2/4 before:left-0 lg:text-lg"
>
Professional Photographer
</h6>
<h1 class="text-5xl font-bold lg:text-7xl">John Doe</h1>
</div>
<div
class="flex flex-col gap-y-5 lg:gap-y-8 xl:pl-16 xl:relative xl:before:h-full before xl:before:w-5 xl:before:top-0 xl:before:left-0"
>
<ul class="flex gap-x-5">
<li
class="hover:text-accent transition-colors cursor-pointer lg:text-2xl"
>
<i class="fa-brands fa-facebook"></i>
</li>
<li
class="hover:text-accent transition-colors cursor-pointer lg:text-2xl"
>
<i class="fa-brands fa-twitter"></i>
</li>
<li
class="hover:text-accent transition-colors cursor-pointer lg:text-2xl"
>
<i class="fa-brands fa-dribbble"></i>
</li>
<li
class="hover:text-accent transition-colors cursor-pointer lg:text-2xl"
>
<i class="fa-brands fa-youtube"></i>
</li>
</ul>
<p class="lg:text-lg">
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Pellentesque sodales at nunc quis semper. Class aptent taciti
sociosqu ad litora torquent per conubia nostra, per inceptos
himenaeos. Fusce
</p>
<a
class="uppercase p-2 border-2 border-accent self-start text-xs rounded-sm sm:text-lg sm:px-4"
href="#"
>View Portfolio</a
>
</div>
</div>
<figure
class="lg:max-w-[550px] lg:relative lg:before:absolute lg:before:content-[''] lg:before:border-[20px] lg:before:rounded-sm lg:before:border-accent lg:before:h-96 lg:before:w-96 lg:before:-top-12 lg:before:-left-12 lg:before:-z-10 lg:z-10"
>
<img src="images/showcase.jpg" alt="" />
</figure>
</section>
</header>
<main>
<!-- *-*-*-*-*-*-*-*-*-*-*-*-* Motto -->
<section class="p-6 bg-secondary text-text md:p-16 2xl:rounded-sm">
<div
class="p-2 flex flex-col gap-y-5 lg:w-3/4 lg:mx-auto lg:relative after lg:after:h-2 lg:after:w-16 lg:after:-bottom-6 lg:after:left-2/4 lg:after:-translate-x-2/4"
>
<blockquote
cite="https://www.azquotes.com/author/8044-Martin_Luther_King_Jr/tag/brother"
>
<p
class="before:content-['\201C'] after:content-['\201D'] text-xl text-center lg:text-2xl"
>
We've learned to fly the air like birds, we've learned to swim the
seas like fish, and yet we haven't learned to walk the earth as
brothers and sisters.
</p>
</blockquote>
<p class="text-center font-bold">
— Martin Luther King, Jr., <cite>Love</cite>
</p>
</div>
</section>
<!-- *-*-*-*-*-*-*-*-*-*-*-*-* About me -->
<section
class="p-6 flex flex-col gap-10 bg-primary text-text relative md:p-16 lg:flex-row *:basis-full"
>
<div class="space-y-5 xl:self-center">
<div
class="space-y-8 *:space-y-2 lg:relative after lg:after:h-5 lg:after:w-3/4 lg:after:bottom-0 lg:pb-12"
>
<div>
<h6
class="text-sm pl-6 uppercase relative before before:h-1 before:w-4 before:bg-accent before:top-2/4 before:-translate-y-2/4 before:left-0 lg:text-lg"
>
About me
</h6>
<h2 class="text-2xl capitalize font-bold lg:text-3xl">
Professional Photographer
</h2>
</div>
<div>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit.
Tempora corporis eveniet, doloribus impedit fuga eum accusamus
libero recusandae modi odio, a voluptatem necessitatibus? Eos,
commodi!
</p>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Praesentium doloremque nesciunt quod sapiente voluptates? Natus
nihil ab illum corrupti quos?
</p>
</div>
</div>
<div>
<h3 class="text-lg text-accent font-semibold lg:text-xl">
My Awards
</h3>
<ul class="space-y-1">
<li class="space-x-2">
<i class="fa-solid fa-angles-right text-accent"></i>
<span>Award 1</span>
</li>
<li class="space-x-2">
<i class="fa-solid fa-angles-right text-accent"></i>
<span>Award 2</span>
</li>
<li class="space-x-2">
<i class="fa-solid fa-angles-right text-accent"></i>
<span>Award 3</span>
</li>
</ul>
</div>
</div>
<figure class="lg:max-w-[550px]">
<img src="images/about.jpg" alt="" />
</figure>
</section>
<!-- *-*-*-*-*-*-*-*-*-*-*-*-* Gallery -->
<section
class="p-6 bg-secondary grid md:p-16 md:grid-cols-2 md:grid-rows-3 lg:grid-cols-4 lg:grid-rows-2 2xl:rounded-sm"
>
<figure
class="md:col-span-2 md:row-span-1 lg:col-span-2 lg:row-span-2 relative after after:w-full after:h-full after:z-10 after:top-0 after:left-0 after:bg-accent/60 after:rounded-sm after:backdrop-blur-xs after:scale-x-0 after:transition hover:after:scale-x-100 after:origin-left hover:after:origin-right group"
>
<img src="images/gallery-1.jpg" alt="" />
<figcaption
class="absolute top-2/4 left-2/4 -translate-x-2/4 -translate-y-2/4 origin-left group-hover:origin-right text-text transition z-11 scale-x-0 group-hover:scale-x-100 lg:font-bold xl:text-xl"
>
Gallery Image
</figcaption>
</figure>
<figure
class="relative after after:w-full after:h-full after:z-10 after:top-0 after:left-0 after:bg-accent/60 after:rounded-sm after:backdrop-blur-xs after:scale-x-0 after:transition hover:after:scale-x-100 after:origin-left hover:after:origin-right group"
>
<img src="images/gallery-2.jpg" alt="" />
<figcaption
class="absolute top-2/4 left-2/4 -translate-x-2/4 -translate-y-2/4 origin-left group-hover:origin-right text-text transition z-11 scale-x-0 group-hover:scale-x-100 lg:font-bold xl:text-xl"
>
Gallery Image
</figcaption>
</figure>
<figure
class="relative after after:w-full after:h-full after:z-10 after:top-0 after:left-0 after:bg-accent/60 after:rounded-sm after:backdrop-blur-xs after:scale-x-0 after:transition hover:after:scale-x-100 after:origin-left hover:after:origin-right group"
>
<img src="images/gallery-3.jpg" alt="" />
<figcaption
class="absolute top-2/4 left-2/4 -translate-x-2/4 -translate-y-2/4 origin-left group-hover:origin-right text-text transition z-11 scale-x-0 group-hover:scale-x-100 lg:font-bold xl:text-xl"
>
Gallery Image
</figcaption>
</figure>
<figure
class="relative after after:w-full after:h-full after:z-10 after:top-0 after:left-0 after:bg-accent/60 after:rounded-sm after:backdrop-blur-xs after:scale-x-0 after:transition hover:after:scale-x-100 after:origin-left hover:after:origin-right group"
>
<img src="images/gallery-4.jpg" alt="" />
<figcaption
class="absolute top-2/4 left-2/4 -translate-x-2/4 -translate-y-2/4 origin-left group-hover:origin-right text-text transition z-11 scale-x-0 group-hover:scale-x-100 lg:font-bold xl:text-xl"
>
Gallery Image
</figcaption>
</figure>
<figure
class="relative after after:w-full after:h-full after:z-10 after:top-0 after:left-0 after:bg-accent/60 after:rounded-sm after:backdrop-blur-xs after:scale-x-0 after:transition hover:after:scale-x-100 after:origin-left hover:after:origin-right group"
>
<img src="images/gallery-5.jpg" alt="" />
<figcaption
class="absolute top-2/4 left-2/4 -translate-x-2/4 -translate-y-2/4 origin-left group-hover:origin-right text-text transition z-11 scale-x-0 group-hover:scale-x-100 lg:font-bold xl:text-xl"
>
Gallery Image
</figcaption>
</figure>
</section>
<!-- *-*-*-*-*-*-*-*-*-*-*-*-* Skills -->
<section
class="p-6 flex flex-col gap-y-10 bg-primary text-text md:p-16 lg:gap-x-10 lg:flex-row-reverse *:basis-full"
>
<div class="space-y-5 lg:self-center xl:space-y-10">
<div class="space-y-2">
<h6
class="text-sm pl-6 uppercase relative before before:h-1 before:w-4 before:bg-accent before:top-2/4 before:-translate-y-2/4 before:left-0 lg:text-lg"
>
My Skills
</h6>
<h2 class="text-2xl capitalize font-bold lg:text-3xl">
I am experienced in the following fields
</h2>
</div>
<div class="space-y-2">
<p>
Lorem ipsum dolor recusandae modi odio, a voluptatem Eos, commodi!
</p>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Praesentium doloremque nesciunt
</p>
</div>
<div class="space-y-5 *:space-y-2 xl:space-y-8">
<div>
<h5 class="font-bold text-accent">Photography</h5>
<div
class="h-6 w-full rounded-full bg-secondary relative before before:top-0 before:left-0 before:h-6 before:w-[95%] before:rounded-full z-10 before:-z-10 pl-4"
>
95%
</div>
</div>
<div>
<h5 class="font-bold text-accent">Design Thinking</h5>
<div
class="h-6 w-full rounded-full bg-secondary relative before before:top-0 before:left-0 before:h-6 before:w-[90%] before:rounded-full z-10 before:-z-10 pl-4"
>
90%
</div>
</div>
<div>
<h5 class="font-bold text-accent">Videography</h5>
<div
class="h-6 w-full rounded-full bg-secondary relative before before:top-0 before:left-0 before:h-6 before:w-[80%] before:rounded-full z-10 before:-z-10 pl-4"
>
80%
</div>
</div>
<div>
<h5 class="font-bold text-accent">Social Innovation</h5>
<div
class="h-6 w-full rounded-full bg-secondary relative before before:top-0 before:left-0 before:h-6 before:w-[85%] before:rounded-full z-10 before:-z-10 pl-4"
>
85%
</div>
</div>
</div>
</div>
<figure
class="lg:max-w-[550px] xl:relative before xl:before:top-0 xl:before:left-0 xl:before:h-full xl:before:w-5 xl:pl-20"
>
<img src="images/skills.jpg" alt="" />
</figure>
</section>
<!-- *-*-*-*-*-*-*-*-*-*-*-*-* Portfolio -->
<section
class="p-6 flex flex-col gap-y-10 bg-secondary text-text lg:gap-x-10 lg:flex-row-reverse *:basis-full md:p-16 2xl:rounded-sm"
>
<div class="space-y-5 *:space-y-2 lg:self-center xl:space-y-10">
<div>
<h6
class="text-sm pl-6 uppercase relative before before:h-1 before:w-4 before:bg-accent before:top-2/4 before:-translate-y-2/4 before:left-0 lg:text-lg"
>
My Portfolio
</h6>
<h2 class="text-2xl capitalize font-bold lg:text-3xl">
Recent Works
</h2>
</div>
<div>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Tempora
corporis eveniet, doloribus impedit fuga eum accusamus libero
recusandae modi odio, a voluptatem necessitatibus? Eos, commodi!
</p>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Praesentium doloremque nesciunt quod sapiente voluptates? Natus
nihil ab illum corrupti quos?
</p>
</div>
</div>
<div class="grid gap-y-5 md:grid-cols-12 md:grid-rows-12 md:gap-0">
<figure
class="md:col-start-1 md:col-end-9 md:row-start-1 md:row-end-11 md:transition-all md:hover:scale-110 md:grayscale md:hover:grayscale-0"
>
<img src="images/portfolio-1.jpg" alt="" />
</figure>
<figure
class="md:col-start-7 md:-col-end-1 md:row-start-3 md:-row-end-1 md:transition-transform md:hover:scale-110"
>
<img src="images/portfolio-2.jpg" alt="" />
</figure>
</div>
</section>
<!-- *-*-*-*-*-*-*-*-*-*-*-*-* Services -->
<section
class="p-6 flex flex-col gap-y-10 bg-primary text-text lg:gap-x-10 lg:flex-row-reverse *:basis-full md:p-16"
>
<div class="space-y-5 *:space-y-2 lg:self-center xl:space-y-10">
<div>
<h6
class="text-sm pl-6 uppercase relative before before:h-1 before:w-4 before:bg-accent before:top-2/4 before:-translate-y-2/4 before:left-0 lg:text-lg"
>
why choose me
</h6>
<h2 class="text-2xl capitalize font-bold lg:text-3xl">
Best Services for you
</h2>
</div>
<div>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Tempora
corporis eveniet, doloribus impedit
</p>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Praesentium
</p>
</div>
<a
class="uppercase inline-block p-2 border-2 border-accent self-start text-xs rounded-sm sm:text-lg sm:px-4"
href="#"
>Learn More</a
>
</div>
<div
class="grid gap-5 *:flex *:flex-col *:gap-y-5 *:items-center *:border-2 *:border-accent *:rounded-sm *:p-8 sm:grid-cols-2"
>
<div>
<figure class="h-28">
<img src="images/service-1.png" alt="" />
</figure>
<h5 class="text-xl text-accent text-center">Wedding</h5>
<p class="text-center">
Lorem ipsum dolor sit amet adipisicing elit.
</p>
</div>
<div>
<figure class="h-28">
<img src="images/service-2.png" alt="" />
</figure>
<h5 class="text-xl text-accent text-center">Company Profile</h5>
<p class="text-center">
Lorem ipsum dolor sit amet adipisicing elit.
</p>
</div>
<div>
<figure class="h-28">
<img src="images/service-3.png" alt="" />
</figure>
<h5 class="text-xl text-accent text-center">Model Photoshoot</h5>
<p class="text-center">
Lorem ipsum dolor sit amet adipisicing elit.
</p>
</div>
<div>
<figure class="h-28">
<img src="images/service-4.png" alt="" />
</figure>
<h5 class="text-xl text-accent text-center">Videography</h5>
<p class="text-center">
Lorem ipsum dolor sit amet adipisicing elit.
</p>
</div>
</div>
</section>
<!-- *-*-*-*-*-*-*-*-*-*-*-*-* Testimonials -->
<section
class="p-6 flex flex-col gap-y-10 bg-secondary text-text lg:gap-x-10 lg:flex-row *:basis-full md:p-16 2xl:rounded-sm"
>
<div
class="flex flex-col gap-y-5 xl:gap-y-10 lg:self-center *:space-y-2"
>
<div>
<h6
class="text-sm pl-6 uppercase relative before before:h-1 before:w-4 before:bg-accent before:top-2/4 before:-translate-y-2/4 before:left-0 lg:text-lg"
>
testimonials
</h6>
<h2 class="text-2xl capitalize font-bold lg:text-3xl">
what my cliens say
</h2>
</div>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Tempora
corporis eveniet, doloribus impedit fuga eum accusamus
</p>
<a
class="uppercase inline-block p-2 border-2 border-accent self-start text-xs rounded-sm sm:text-lg sm:px-4"
href="#"
>View Testimonials</a
>
</div>
<div class="flex flex-col gap-y-5">
<figure class="h-8 self-end">
<img src="images/testimonial-quote.png" alt="" />
</figure>
<p
class="p-8 text-primary border-2 border-transparent rounded-sm after after:bg-accent after:h-full after:w-full relative after:top-0 after:left-0 after:rounded-sm after:-z-1 z-1 after:scale-y-100 hover:after:scale-y-0 after:transition-transform hover:text-text hover:border-accent"
>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Porro nisi
delectus reprehenderit magni rerum recusandae vero aliquam,
repudiandae in perspiciatis omnis, repellendus neque sapiente ab
beatae explicabo tempora. Amet, ex.
</p>
<div class="grid grid-cols-2 grid-rows-2 self-start mt-5">
<figure
class="row-span-2 p-2 border-4 border-accent rounded-full animate-bounce"
>
<img
class="size-28 rounded-full object-top"
src="images/client.jpg"
alt=""
/>
</figure>
<h6 class="self-end ml-4 text-accent">Jane Doe</h6>
<p class="ml-4 mt-1">CEO at XYZ</p>
</div>
</div>
</section>
<!-- *-*-*-*-*-*-*-*-*-*-*-*-* News -->
<section
class="p-6 flex flex-col gap-y-10 bg-primary text-text md:p-16 lg:gap-x-10 lg:flex-row-reverse *:basis-full"
>
<div
class="flex flex-col gap-y-5 lg:self-center xl:gap-y-10 *:space-y-2"
>
<div>
<h6
class="text-sm pl-6 uppercase relative before before:h-1 before:w-4 before:bg-accent before:top-2/4 before:-left-0 lg:text-lg"
>
news
</h6>
<h2 class="text-2xl capitalize font-bold lg:text-3xl">
Across the world of Photography
</h2>
</div>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Tempora
corporis eveniet, doloribus impedit fuga eum accusamus Lorem ipsum
dolor sit amet consectetur adipisicing elit. Ab corrupti sapiente
illo sint animi inventore
</p>
<a
class="uppercase p-2 border-2 border-accent self-start text-xs rounded-sm inline-block sm:text-lg sm:px-4"
href="#"
>View News</a
>
</div>
<div
class="grid gap-y-5 sm:grid-cols-2 sm:grid-rows-[min-content] sm:gap-x-5"
>
<div
class="grid sm:grid-rows-subgrid sm:row-span-5 gap-y-4 p-6 rounded-sm bg-secondary shadow-lg shadow-primary border-t-2 border-accent"
>
<figure>
<img src="images/news-1.jpg" alt="" />
</figure>
<h3 class="font-bold text-xl">Model Photoshoot</h3>
<h6 class="text-accent">Dec 24, 2027</h6>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Officia
consectetur obcaecati ut nihil placeat.
</p>
<a
class="uppercase justify-self-start px-6 py-2 border-2 border-accent self-start rounded-sm flex items-center group lg:text-sm"
href="#"
><span>Read More</span>
<i
class="fa-solid fa-angles-right text-accent ml-2 group-hover:translate-x-2 transition-transform"
></i
></a>
</div>
<div
class="grid sm:grid-rows-subgrid sm:row-span-5 gap-y-4 p-6 rounded-sm bg-secondary shadow-lg shadow-primary border-t-2 border-accent"
>
<figure>
<img class="object-[65%]" src="images/news-2.jpg" alt="" />
</figure>
<h3 class="font-bold text-xl">Company Profile</h3>
<h6 class="text-accent">Jan 24, 2028</h6>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Officia
consectetur obcaecati ut nihil placeat.
</p>
<a
class="uppercase justify-self-start px-6 py-2 border-2 border-accent self-start rounded-sm flex items-center group lg:text-sm"
href="#"
><span>Read More</span>
<i
class="fa-solid fa-angles-right text-accent ml-2 group-hover:translate-x-2 transition-transform"
></i
></a>
</div>
</div>
</section>
<!-- *-*-*-*-*-*-*-*-*-*-*-*-* Contact -->
<section
class="p-6 flex flex-col gap-y-10 bg-secondary text-text lg:gap-x-10 lg:flex-row *:basis-full md:p-16 2xl:rounded-sm"
>
<div
class="flex flex-col gap-y-5 xl:gap-y-10 lg:self-center *:space-y-2"
>
<div>
<h6
class="text-sm pl-6 uppercase relative before before:h-1 before:w-4 before:bg-accent before:top-2/4 before:-translate-y-2/4 before:left-0 lg:text-lg"
>
let's talk
</h6>
<h2 class="text-2xl capitalize font-bold lg:text-3xl">
Keep In Touch
</h2>
</div>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Tempora
corporis eveniet, doloribus impedit fuga eum accusamus Lorem ipsum
dolor sit amet consectetur
</p>
<a
class="uppercase inline-block p-2 border-2 border-accent self-start text-xs rounded-sm sm:text-lg sm:px-4"
href="#"
>Let's Chat</a
>
</div>
<figure class="lg:max-w-[550px]">
<img src="images/contact.jpg" alt="" />
</figure>
</section>
</main>
<!-- *-*-*-*-*-*-*-*-*-*-*-*-* Contact Form -->
<footer
class="p-6 flex flex-col gap-y-10 bg-primary text-text md:p-16 lg:gap-x-10 lg:flex-row *:basis-full"
>
<div class="flex flex-col gap-y-5">
<figure>
<img src="images/form.jpg" alt="" />
</figure>
<form
class="flex flex-col gap-y-2 *:px-4 *:py-2 *:rounded-sm *:outline-hidden h-full"
>
<input
class="bg-accent text-text placeholder:text-text/80 h-12 sm:h-16"
type="text"
placeholder="Name"
/>
<input
class="bg-accent text-text placeholder:text-text/80 h-12 sm:h-16"
type="email"
placeholder="Email"
/>
<textarea
class="bg-accent text-text placeholder:text-text/80 h-48 lg:h-full"
placeholder="Message"
></textarea>
<input
class="border-2 border-accent text-text cursor-pointer h-12 sm:h-16"
type="submit"
value="Submit"
/>
</form>
</div>
<div class="flex flex-col gap-y-5 lg:self-center xl:gap-y-10 *:space-y-2">
<div>
<h6
class="text-sm pl-6 uppercase relative before before:h-1 before:w-4 before:bg-accent before:top-2/4 before:-left-0 lg:text-lg"
>
let's talk
</h6>
<h2 class="text-2xl capitalize font-bold lg:text-3xl">
Keep In Touch
</h2>
</div>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Tempora
corporis eveniet, doloribus impedit fuga eum accusamus Lorem
</p>
<div class="grid gap-5 sm:grid-cols-2 lg:grid-cols-1 xl:grid-cols-2">
<div class="grid grid-cols-[112px_1fr] grid-rows-2 gap-x-5 gap-y-2">
<figure class="row-span-2">
<img class="w-28" src="images/contact-icon-1.png" alt="" />
</figure>
<h6 class="self-end text-accent">Phone Number</h6>
<p>123-234-1234</p>
</div>
<div class="grid grid-cols-[112px_1fr] grid-rows-2 gap-x-5 gap-y-2">
<figure class="row-span-2">
<img class="w-28" src="images/contact-icon-2.png" alt="" />
</figure>
<h6 class="self-end text-accent">Email address</h6>
</div>
<div class="grid grid-cols-[112px_1fr] grid-rows-2 gap-x-5 gap-y-2">
<figure class="row-span-2">
<img class="w-28" src="images/contact-icon-3.png" alt="" />
</figure>
<h6 class="self-end text-accent">Websites</h6>
<p>www.cool.com</p>
</div>
<div class="grid grid-cols-[112px_1fr] grid-rows-2 gap-x-5 gap-y-2">
<figure class="row-span-2">
<img class="w-28" src="images/contact-icon-4.png" alt="" />
</figure>
<h6 class="self-end text-accent">Address</h6>
<p>177A Bleecker Street, NY</p>
</div>
</div>
</div>
</footer>
<!-- ----------------------- JS -->
<script src="app.js"></script>
</body>
</html>