-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
796 lines (791 loc) · 45.5 KB
/
index.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
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
<link rel="stylesheet" href="./assets/css/style.css">
<link rel="stylesheet" href="./assets/css/fontawesome.css">
<!-- GlightBox -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/glightbox/dist/css/glightbox.min.css" />
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap" rel="stylesheet">
<!-- Font Awesome -->
<!-- <link rel="stylesheet" type="text/css" href="//use.fontawesome.com/releases/v5.7.2/css/all.css"> -->
</head>
<body>
<!-- Navbar Section -->
<nav class="navbar navbar-expand-lg navbar-dark menu shadow fixed-top">
<div class="container">
<a class="navbar-brand" href="#">
<img src="./images/logo.png" alt="logo img">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a href="#services" class="nav-link" href="#">Services</a>
</li>
<li class="nav-item">
<a href="#testimonials" class="nav-link" href="#">Testimonials</a>
</li>
<li class="nav-item">
<a href="#faq" class="nav-link" href="#">faq</a>
</li>
<li class="nav-item">
<a href="#portfolio" class="nav-link" href="#">Portfolio</a>
</li>
<li class="nav-item">
<a href="#get-sterted" class="nav-link" href="#">Contact</a>
</li>
</ul>
<button class="rounded-pill btn-rounded" type="button">+380972228344
<span>
<i class="fas fa-phone-alt"></i>
</span>
</button>
</div>
</div>
</nav>
<!-- End of Navbar Section -->
<!-- Intro Section -->
<section id="home" class="intro-section">
<div class="container">
<div class="row align-items-center text-white">
<!-- Intro content -->
<div class="col-md-6 intros text-start">
<h1 class="display-2">
<span class="display-2--intro">Hey! I'm Patrick</span>
<span class="display-2--description lh-base">Lorem ipsum dolor sit, amet consectetur adipisicing elit. Blanditiis facere doloremque quisquam ab doloribus sint minima saepe voluptatum deserunt. Molestias.</span>
</h1>
<button class="rounded-pill btn-rounded" type="button">Get in Touch
<span>
<i class="fas fa-arrow-right"></i>
</span>
</button>
</div>
<!-- Intro video -->
<div class="col-md-6 intros text-center">
<div class="video-box">
<img class="img-fluid" src="./images/art/intro-section-illustration.png" alt="">
<a href="#" class="glightbox position-absolute top-50 start-50 translate-middle">
<span>
<i class="fas fa-play-circle"></i>
</span>
<span class="border-animation border-animation--border-1"></span>
<span class="border-animation border-animation--border-2"></span>
</a>
</div>
</div>
</div>
</div>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320">
<path fill="#fff" fill-opacity="1" d="M0,0L30,32C60,64,120,128,180,165.3C240,203,300,213,360,186.7C420,160,480,96,540,80C600,64,660,96,720,133.3C780,171,840,213,900,197.3C960,181,1020,107,1080,80C1140,53,1200,75,1260,96C1320,117,1380,139,1410,149.3L1440,160L1440,320L1410,320C1380,320,1320,320,1260,320C1200,320,1140,320,1080,320C1020,320,960,320,900,320C840,320,780,320,720,320C660,320,600,320,540,320C480,320,420,320,360,320C300,320,240,320,180,320C120,320,60,320,30,320L0,320Z"></path>
</svg>
</section>
<!-- End of Intro Section -->
<!-- Companies Section -->
<section id="companies" class="companies">
<div class="container">
<div class="row text-center">
<h4 class="fw-bold lead mb-3">Companies trust us</h4>
<div class="heading-line"></div>
</div>
</div>
<!-- Companies content -->
<div class="container">
<div class="row">
<div class="col-md-4 col-lg-2">
<div class="companies__logo-box shadow-sm"><img src="./images/companies/company-1.png" alt="company 1 logo" title="Company 1 Logo" class="img-fluid"></div>
</div>
<div class="col-md-4 col-lg-2">
<div class="companies__logo-box shadow-sm"><img src="./images/companies/company-2.png" alt="company 2 logo" title="Company 2 Logo" class="img-fluid"></div>
</div>
<div class="col-md-4 col-lg-2">
<div class="companies__logo-box shadow-sm"><img src="./images/companies/company-3.png" alt="company 3 logo" title="Company 3 Logo" class="img-fluid"></div>
</div>
<div class="col-md-4 col-lg-2">
<div class="companies__logo-box shadow-sm"><img src="./images/companies/company-4.png" alt="company 4 logo" title="Company 4 Logo" class="img-fluid"></div>
</div>
<div class="col-md-4 col-lg-2">
<div class="companies__logo-box shadow-sm"><img src="./images/companies/company-5.png" alt="company 5 logo" title="Company 5 Logo" class="img-fluid"></div>
</div>
<div class="col-md-4 col-lg-2">
<div class="companies__logo-box shadow-sm"><img src="./images/companies/company-6.png" alt="company 6 logo" title="Company 6 Logo" class="img-fluid"></div>
</div>
</div>
</div>
</section>
<!-- End of Companies Section -->
<!-- Services Section -->
<section id="services" class="services">
<div class="container">
<div class="row text-center">
<h1 class="display-3 fw-bold">Our services</h1>
<div class="heading-line mb-1"></div>
</div>
<!-- Description content -->
<div class="row pt-2 pb-2 mt-0 mb-3">
<div class="col-md-6 border-right">
<div class="bg-white p-3">
<h2 class="fw-bold text-capitalize text-center">
Our services range from initial design to deployment anywhere anytime
</h2>
</div>
</div>
<div class="col-md-6">
<div class="bg-white p-4 text-start">
<p class="fw-light">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Et perferendis modi quaerat, voluptate laboriosam eum, debitis at ab? Impedit vitae iure, aut ipsam explicabo facilis, quidem deserunt labore vero optio.</p>
</div>
</div>
</div>
</div>
<!-- Services content -->
<div class="container">
<!-- Marketing content -->
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12 services mt-4">
<div class="services__content">
<div class="icon d-block fas fa-paper-plane"></div>
<h3 class="display-3--title mt-1">Marketing</h3>
<p class="lh-lg">
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Minus doloremque deserunt incidunt! Ratione, asperiores beatae, distinctio reiciendis sit voluptatum cupiditate omnis maiores nesciunt inventore, ad. Qui perferendis, adipisci.
</p>
<button class="rounded-pill btn-rounded border-primary" type="button">Learn more
<span>
<i class="fas fa-arrow-right"></i>
</span>
</button>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12 services mt-4 text-end">
<div class="services__pic">
<img src="./images/services/service-1.png" alt="Marketing illustration" class="img-fluid">
</div>
</div>
</div>
<!-- Webdev content -->
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12 services mt-4 text-start">
<div class="services__pic">
<img src="./images/services/service-2.png" alt="Web development illustration" class="img-fluid">
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12 services mt-4">
<div class="services__content">
<div class="icon d-block fas fa-code"></div>
<h3 class="display-3--title mt-1">Web development</h3>
<p class="lh-lg">
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Minus doloremque deserunt incidunt! Ratione, asperiores beatae, distinctio reiciendis sit voluptatum cupiditate omnis maiores nesciunt inventore, ad. Qui perferendis, adipisci.
</p>
<button class="rounded-pill btn-rounded border-primary" type="button">Learn more
<span>
<i class="fas fa-arrow-right"></i>
</span>
</button>
</div>
</div>
</div>
<!-- Cloud hosting content -->
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12 services mt-4">
<div class="services__content">
<div class="icon d-block fas fa-cloud-upload-alt"></div>
<h3 class="display-3--title mt-1">Cloud hosting</h3>
<p class="lh-lg">
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Minus doloremque deserunt incidunt! Ratione, asperiores beatae, distinctio reiciendis sit voluptatum cupiditate omnis maiores nesciunt inventore, ad. Qui perferendis, adipisci.
</p>
<button class="rounded-pill btn-rounded border-primary" type="button">Learn more
<span>
<i class="fas fa-arrow-right"></i>
</span>
</button>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12 services mt-4 text-end">
<div class="services__pic">
<img src="./images/services/service-3.png" alt="Cloud hosting illustration" class="img-fluid">
</div>
</div>
</div>
</div>
</section>
<!-- End of Services Section -->
<!-- Testimonials section -->
<section id="testimonials" class="testimonials">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320">
<path fill="#fff" fill-opacity="1" d="M0,224L34.3,213.3C68.6,203,137,181,206,192C274.3,203,343,245,411,250.7C480,256,549,224,617,224C685.7,224,754,256,823,261.3C891.4,267,960,245,1029,208C1097.1,171,1166,117,1234,128C1302.9,139,1371,213,1406,250.7L1440,288L1440,0L1405.7,0C1371.4,0,1303,0,1234,0C1165.7,0,1097,0,1029,0C960,0,891,0,823,0C754.3,0,686,0,617,0C548.6,0,480,0,411,0C342.9,0,274,0,206,0C137.1,0,69,0,34,0L0,0Z"></path>
</svg>
<div class="container">
<div class="row text-center text-white">
<h1 class="display-3 fw-bold">Testimonials</h1>
<hr class="mx-auto" style="width: 100px; height: 3px;">
<p class="lead pt-1">What our clients say</p>
</div>
<!-- Carousel section -->
<div class="row align-items-center">
<div id="carouselExampleCaptions" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-inner">
<!-- Item 1 -->
<div class="carousel-item active">
<!-- testimonials card -->
<div class="testimonials__card">
<p class="lh-lg">
<i class="fas fa-quote-left"></i>
Lorem ipsum dolor, sit amet consectetur adipisicing elit.
Possimus aliquid quae mollitia voluptatum quibusdam est quasi qui eaque, temporibus eveniet, officiis.
<i class="fas fa-quote-right"></i>
<div class="ratings p-1">
<i class="fas fa-star"> </i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</p>
</div>
<!-- testimonials picture -->
<div class="testimonials__picture">
<img src="./images/testimonials/client-1.jpg" alt="client 1 picture" class="img-fluid rounded-circle">
</div>
<!-- tetimonials name -->
<div class="testimonials__name">
<h3>Paul Gomez</h3>
<p class="fw-light">CEO & founder</p>
</div>
</div>
<!-- Item 2 -->
<div class="carousel-item ">
<!-- testimonials card -->
<div class="testimonials__card">
<p class="lh-lg">
<i class="fas fa-quote-left"></i>
Lorem ipsum dolor, sit amet consectetur adipisicing elit.
Possimus aliquid quae mollitia voluptatum quibusdam est quasi qui eaque, temporibus eveniet, officiis.
<i class="fas fa-quote-right"></i>
<div class="ratings p-1">
<i class="fas fa-star"> </i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</p>
</div>
<!-- testimonials picture -->
<div class="testimonials__picture">
<img src="./images/testimonials/client-2.jpg" alt="client 2 picture" class="img-fluid rounded-circle">
</div>
<!-- tetimonials name -->
<div class="testimonials__name">
<h3>Katelyn Bryant</h3>
<p class="fw-light">Finance Manager</p>
</div>
</div>
<!-- Item 3 -->
<div class="carousel-item ">
<!-- testimonials card -->
<div class="testimonials__card">
<p class="lh-lg">
<i class="fas fa-quote-left"></i>
Lorem ipsum dolor, sit amet consectetur adipisicing elit.
Possimus aliquid quae mollitia voluptatum quibusdam est quasi qui eaque, temporibus eveniet, officiis.
<i class="fas fa-quote-right"></i>
<div class="ratings p-1">
<i class="fas fa-star"> </i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</p>
</div>
<!-- testimonials picture -->
<div class="testimonials__picture">
<img src="./images/testimonials/client-3.jpg" alt="client 3 picture" class="img-fluid rounded-circle">
</div>
<!-- tetimonials name -->
<div class="testimonials__name">
<h3>Ashley Jenkins</h3>
<p class="fw-light">Global brand manager</p>
</div>
</div>
<!-- Item 4 -->
<div class="carousel-item ">
<!-- testimonials card -->
<div class="testimonials__card">
<p class="lh-lg">
<i class="fas fa-quote-left"></i>
Lorem ipsum dolor, sit amet consectetur adipisicing elit.
Possimus aliquid quae mollitia voluptatum quibusdam est quasi qui eaque, temporibus eveniet, officiis.
<i class="fas fa-quote-right"></i>
<div class="ratings p-1">
<i class="fas fa-star"> </i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</p>
</div>
<!-- testimonials picture -->
<div class="testimonials__picture">
<img src="./images/testimonials/client-4.jpg" alt="client 4 picture" class="img-fluid rounded-circle">
</div>
<!-- tetimonials name -->
<div class="testimonials__name">
<h3>Scott Rivera</h3>
<p class="fw-light">Brand manager</p>
</div>
</div>
</div>
<div class="text-center">
<button class="btn btn-outline-light fas fa-long-arrow-left" type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide="prev"></button>
<button class="btn btn-outline-light fas fa-long-arrow-right" type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide="next"></button>
</div>
</div>
</div>
</div>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320">
<path fill="#fff" fill-opacity="1" d="M0,224L34.3,213.3C68.6,203,137,181,206,192C274.3,203,343,245,411,250.7C480,256,549,224,617,224C685.7,224,754,256,823,261.3C891.4,267,960,245,1029,208C1097.1,171,1166,117,1234,128C1302.9,139,1371,213,1406,250.7L1440,288L1440,320L1405.7,320C1371.4,320,1303,320,1234,320C1165.7,320,1097,320,1029,320C960,320,891,320,823,320C754.3,320,686,320,617,320C548.6,320,480,320,411,320C342.9,320,274,320,206,320C137.1,320,69,320,34,320L0,320Z"></path>
</svg>
</section>
<!-- End of Testimonials section -->
<!-- Faq section -->
<section id="faq" class="faq">
<div class="container">
<div class="row text-center">
<h1 class="desplay-3 fw-bold text-uppercase">faq</h1>
<div class="heading-line"></div>
<p class="lead">frequently asked questions, get knowledge beforehand</p>
</div>
<!-- Accordion content -->
<div class="row mt-5">
<div class="col-md-12">
<div class="accordion" id="accordionExample">
<!-- Accordion item #1 -->
<div class="accordion-item shadow mb-3">
<h2 class="accordion-header" id="headingOne">
<button class="accordion-button" type="button" data-bs-toggle="collapse" data-bs-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
What are the main features?
</button>
</h2>
<div id="collapseOne" class="accordion-collapse collapse show" aria-labelledby="headingOne" data-bs-parent="#accordionExample">
<div class="accordion-body">
<strong>This is the first item's accordion body.</strong> It is shown by default, until the collapse plugin adds the appropriate classes that we use to style each element. These classes control the overall appearance, as well as the showing and hiding via CSS transitions. You can modify any of this with custom CSS or overriding our default variables. It's also worth noting that just about any HTML can go within the <code>.accordion-body</code>, though the transition does limit overflow.
</div>
</div>
</div>
<!-- Accordion item #2 -->
<div class="accordion-item shadow mb-3">
<h2 class="accordion-header" id="headingTwo">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
Do I have to pay after trial?
</button>
</h2>
<div id="collapseTwo" class="accordion-collapse collapse" aria-labelledby="headingTwo" data-bs-parent="#accordionExample">
<div class="accordion-body">
<strong>This is the second item's accordion body.</strong> It is hidden by default, until the collapse plugin adds the appropriate classes that we use to style each element. These classes control the overall appearance, as well as the showing and hiding via CSS transitions. You can modify any of this with custom CSS or overriding our default variables. It's also worth noting that just about any HTML can go within the <code>.accordion-body</code>, though the transition does limit overflow.
</div>
</div>
</div>
<!-- Accordion item #3 -->
<div class="accordion-item shadow mb-3">
<h2 class="accordion-header" id="headingThree">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
How I can get started after trial?
</button>
</h2>
<div id="collapseThree" class="accordion-collapse collapse" aria-labelledby="headingThree" data-bs-parent="#accordionExample">
<div class="accordion-body">
<strong>This is the third item's accordion body.</strong> It is hidden by default, until the collapse plugin adds the appropriate classes that we use to style each element. These classes control the overall appearance, as well as the showing and hiding via CSS transitions. You can modify any of this with custom CSS or overriding our default variables. It's also worth noting that just about any HTML can go within the <code>.accordion-body</code>, though the transition does limit overflow.
</div>
</div>
</div>
<!-- Accordion item #4 -->
<div class="accordion-item shadow mb-3">
<h2 class="accordion-header" id="headingFour">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseFour" aria-expanded="false" aria-controls="collapseFour">
Can I be refunded if I`m not satisfied?
</button>
</h2>
<div id="collapseFour" class="accordion-collapse collapse" aria-labelledby="headingFour" data-bs-parent="#accordionExample">
<div class="accordion-body">
<strong>This is the third item's accordion body.</strong> It is hidden by default, until the collapse plugin adds the appropriate classes that we use to style each element. These classes control the overall appearance, as well as the showing and hiding via CSS transitions. You can modify any of this with custom CSS or overriding our default variables. It's also worth noting that just about any HTML can go within the <code>.accordion-body</code>, though the transition does limit overflow.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End of Faq section -->
<!-- Portfolio Section -->
<section id="portfolio" class="portfolio">
<div class="container">
<div class="row text-center mt-5">
<h1 class="display-3 fw-bold">Latest work</h1>
<div class="heading-line"></div>
<p class="lead">Lorem ipsum dolor sit amet consectetur adipisicing elit. Porro, voluptates!</p>
</div>
<!-- Filter buttons -->
<div class="row mt-5 mb-4 g-3 text-center">
<div class="col-md-12">
<button class="btn btn-outline-primary" onclick="filterSelection('all')" type="radio">All</button>
<button class="btn btn-outline-primary" onclick="filterSelection('website')" type="radio">websites</button>
<button class="btn btn-outline-primary" onclick="filterSelection('design')" type="button">design</button>
<button class="btn btn-outline-primary" onclick="filterSelection('mockup')" type="button">mockup</button>
</div>
</div>
<!-- Prtfolio items -->
<div class="row">
<div class="col-lg-4 col-md-6 filterDiv website">
<div class="portfolio-box shadow">
<img src="images/portfolio/portfolio-1.jpg" alt="portfolio 1 image" title="portfolio 1 picture" class="img-fluid">
<div class="portfolio-info">
<div class="caption">
<h4>project name goes here 1</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 filterDiv mockup">
<div class="portfolio-box shadow">
<img src="images/portfolio/portfolio-2.jpg" alt="portfolio 2 image" title="portfolio 2 picture" class="img-fluid">
<div class="portfolio-info">
<div class="caption">
<h4>project name goes here 2</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 filterDiv mockup">
<div class="portfolio-box shadow">
<img src="images/portfolio/portfolio-3.jpg" alt="portfolio 3 image" title="portfolio 3 picture" class="img-fluid">
<div class="portfolio-info">
<div class="caption">
<h4>project name goes here 3</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 filterDiv design website">
<div class="portfolio-box shadow">
<img src="images/portfolio/portfolio-4.jpg" alt="portfolio 4 image" title="portfolio 4 picture" class="img-fluid">
<div class="portfolio-info">
<div class="caption">
<h4>project name goes here 4</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 filterDiv website">
<div class="portfolio-box shadow">
<img src="images/portfolio/portfolio-5.jpg" alt="portfolio 5 image" title="portfolio 5 picture" class="img-fluid">
<div class="portfolio-info">
<div class="caption">
<h4>project name goes here 5</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 filterDiv design">
<div class="portfolio-box shadow">
<img src="images/portfolio/portfolio-6.jpg" alt="portfolio 6 image" title="portfolio 6 picture" class="img-fluid">
<div class="portfolio-info">
<div class="caption">
<h4>project name goes here 6</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 filterDiv mockup">
<div class="portfolio-box shadow">
<img src="images/portfolio/portfolio-7.jpg" alt="portfolio 7 image" title="portfolio 7 picture" class="img-fluid">
<div class="portfolio-info">
<div class="caption">
<h4>project name goes here 7</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 filterDiv website mockup">
<div class="portfolio-box shadow">
<img src="images/portfolio/portfolio-8.jpg" alt="portfolio 8 image" title="portfolio 8 picture" class="img-fluid">
<div class="portfolio-info">
<div class="caption">
<h4>project name goes here 8</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 filterDiv website">
<div class="portfolio-box shadow">
<img src="images/portfolio/portfolio-9.jpg" alt="portfolio 9 image" title="portfolio 9 picture" class="img-fluid">
<div class="portfolio-info">
<div class="caption">
<h4>project name goes here 9</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End of Portfolio Section -->
<!-- Get Started Section -->
<section id="get-sterted" class="get-started">
<div class="container">
<div class="row text-center">
<h1 class="display-3 fw-bold text-capitalize">Get started</h1>
<div class="heading-line"></div>
<p class="lh-lg">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nihil voluptatibus maiores excepturi.
</p>
</div>
<div class="row text-white">
<div class="col-12 col-lg-6 gradient shadow p-3">
<div class="cta-info w-100">
<h4 class="display-4 fw-bold text-capitalize">100% satisfaction garanteed</h4>
<p class="lh-lg">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Incidunt alias recusandae libero minima nam fugit magnam possimus autem soluta iusto eligendi assumenda, at numquam ut in tempora, maxime aliquam rerum.
</p>
<h3 class="display-3--brief">What will be the next step?</h3>
<ul class="cta-info__list">
<li>
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round">
<polyline points="20 6 9 17 4 12" />
</svg>
lorem ipsum
</li>
<li>
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round">
<polyline points="20 6 9 17 4 12" />
</svg>
lorem ipsum
</li>
<li>
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round">
<polyline points="20 6 9 17 4 12" />
</svg>
lorem ipsum
</li>
</ul>
</div>
</div>
<div class="col-12 col-lg-6 bg-white p-3">
<div class="form w-100">
<h4 class="display-3--title mb-5">Start your project</h4>
<form action="#" class="row">
<div class="col-lg-6 col-md-6 mb-3">
<input type="text" placeholder="First Name" id="inputFirstName" class="form-control form-control-lg shadow">
</div>
<div class="col-lg-6 col-md-6 mb-3">
<input type="text" placeholder="Last Name" id="inputLastName" class="form-control form-control-lg shadow">
</div>
<div class="col-lg-12 mb-3">
<input type="email" placeholder="Email" id="inputEmail" class="form-control form-control-lg shadow">
</div>
<div class="col-lg-12 mb-3">
<textarea name="message" id="message" placeholder="Message" class="form-control form-control-lg shadow" rows="8"></textarea>
</div>
<div class="text-center d-grid mt-1">
<button type="button" class="btn btn-primary rounded-pill pt-3 pb-3">
Submit
<i class="fas fa-paper-plane"></i>
</button>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- End of Get Started Section -->
<!-- Footer Section -->
<footer class="footer">
<div class="container">
<div class="row">
<!-- MOobile number -->
<div class="col-md-4 col-lg-4 contact-box pt-1 d-md-block d-lg-flex d-flex">
<div class="contact-box__icon">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-phone-call" viewBox="0 0 24 24" stroke-width="1" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<path d="M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2" />
<path d="M15 7a2 2 0 0 1 2 2" />
<path d="M15 3a6 6 0 0 1 6 6" />
</svg>
</div>
<div class="contact-box__info">
<a href="" class="contact-box__info--title">+380972228344</a>
<p class="contact-box__info--subtitle">Mon-Fri 9am-6pm</p>
</div>
</div>
<!-- Email -->
<div class="col-md-4 col-lg-4 contact-box pt-1 d-md-block d-lg-flex d-flex">
<div class="contact-box__icon">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-mail-opened" viewBox="0 0 24 24" stroke-width="1" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<polyline points="3 9 12 15 21 9 12 3 3 9" />
<path d="M21 9v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-10" />
<line x1="3" y1="19" x2="9" y2="13" />
<line x1="15" y1="13" x2="21" y2="19" />
</svg>
</div>
<div class="contact-box__info">
<a href="" class="contact-box__info--title">[email protected]</a>
<p class="contact-box__info--subtitle">Online support</p>
</div>
</div>
<!-- Location -->
<div class="col-md-4 col-lg-4 contact-box pt-1 d-md-block d-lg-flex d-flex">
<div class="contact-box__icon">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-map-2" viewBox="0 0 24 24" stroke-width="1" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<line x1="18" y1="6" x2="18" y2="6.01" />
<path d="M18 13l-3.5 -5a4 4 0 1 1 7 0l-3.5 5" />
<polyline points="10.5 4.75 9 4 3 7 3 20 9 17 15 20 21 17 21 15" />
<line x1="9" y1="4" x2="9" y2="17" />
<line x1="15" y1="15" x2="15" y2="20" />
</svg>
</div>
<div class="contact-box__info">
<a href="" class="contact-box__info--title">Kharkiv, Ukraine</a>
<p class="contact-box__info--subtitle">Kh 61000, UA</p>
</div>
</div>
</div>
</div>
<!-- Social media content -->
<div class="footer-sm">
<div class="container">
<div class="row py-4 text-center ">
<div class="col-lg-5 col-md-6 mb-4 text-white mb-lg-0">Connect with us on social media</div>
<div class="col-lg-6 col-md-6 ">
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-github"></i></a>
<a href="#"><i class="fab fa-linkedin"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
</div>
</div>
</div>
</div>
<!-- Contenr for company info -->
<div class="container mt-5">
<div class="row text-white justify-content-center pb-3 mt-3">
<div class="col-12 col-sm-6 col-lg-6 mx-auto">
<h5 class="text-capitalize fw-bold">Company name</h5>
<hr class="bg-white diasplay-inline-block mb-4" style="width: 60px; height: 2px;">
<p class="lh-lg">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Non nostrum vero reprehenderit, dolorum necessitatibus, adipisci ab dicta!
</p>
</div>
<div class="col-12 col-sm-6 col-lg-2 mb-4 mx-auto">
<h5 class="text-capitalize fw-bold">Products</h5>
<hr class="bg-white diasplay-inline-block mb-4" style="width: 60px; height: 2px;">
<ul class="list-inline company-list">
<li><a href="#">Lorem, ipsum.</a></li>
<li><a href="#">Lorem, ipsum.</a></li>
<li><a href="#">Lorem, ipsum.</a></li>
<li><a href="#">Lorem, ipsum.</a></li>
</ul>
</div>
<div class="col-12 col-sm-6 col-lg-2 mb-4 mx-auto">
<h5 class="text-capitalize fw-bold">useful links</h5>
<hr class="bg-white diasplay-inline-block mb-4" style="width: 60px; height: 2px;">
<ul class="list-inline company-list">
<li><a href="#">Your account</a></li>
<li><a href="#">Become an Affiliate</a></li>
<li><a href="#">Create an account</a></li>
<li><a href="#">Help</a></li>
</ul>
</div>
<div class="col-12 col-sm-6 col-lg-2 mb-4 mx-auto">
<h5 class="text-capitalize fw-bold">contact</h5>
<hr class="bg-white diasplay-inline-block mb-4" style="width: 60px; height: 2px;">
<ul class="list-inline company-list">
<li><a href="#">Lorem, ipsum.</a></li>
<li><a href="#">Lorem, ipsum.</a></li>
<li><a href="#">Lorem, ipsum.</a></li>
<li><a href="#">Lorem, ipsum.</a></li>
</ul>
</div>
</div>
</div>
<!-- Copyright info -->
<div class="footer-bottom py-5">
<div class="container">
<div class="row text-center text-white">
<div class="col-12">
<div class="footer-bottom__copyright">
© Copyright 2022 <a href="#">Multi-purpose company</a> | Created by <a href="">MultiTask</a>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- End of Footer Section -->
<!-- Back to top Button -->
<a href="#" class="shadow btn btn-primary rounded-circle back-to-top">
<i class="fas fa-chevron-up "></i>
</a>
<!-- End of Back to top Button -->
<script src="./main.js"></script>
<!-- JavaScript Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-OERcA2EqjJCMA+/3y+gxIOqMEjwtxJY7qPCqsdltbNJuaOe923+mo//f6V8Qbsw3" crossorigin="anonymous"></script>
<!-- GlightBox -->
<script src="https://cdn.jsdelivr.net/gh/mcstudios/glightbox/dist/js/glightbox.min.js"></script>
<script type="text/javascript">
const lightbox = GLightbox({
'href': 'https://www.youtube.com/watch?v=GaW13eDQO6s&ab_channel=LofiZone',
'type': 'video',
'source': 'youtube', //vimeo, youtube or local
'width': 900,
});
</script>
</body>
</html>