-
Notifications
You must be signed in to change notification settings - Fork 0
/
services-1.html
979 lines (832 loc) · 36.4 KB
/
services-1.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
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Google fonts -->
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<!-- Stylesheets -->
<link rel="stylesheet" href="css/vendors.css">
<link rel="stylesheet" href="css/main.css">
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="57x57" href="img/favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="img/favicon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="img/favicon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="img/favicon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="img/favicon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="img/favicon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="img/favicon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="img/favicon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="img/favicon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="img/favicon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="img/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="img/favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="img/favicon/favicon-16x16.png">
<link rel="manifest" href="img/favicon/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="img/favicon/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<title>Stukram</title>
</head>
<body class="preloader-visible" data-barba="wrapper">
<!-- preloader start -->
<div class="preloader js-preloader">
<div class="preloader__bg"></div>
<div class="preloader__progress">
<div class="preloader__progress__inner"></div>
</div>
</div>
<!-- preloader end -->
<!-- cursor start -->
<div class="cursor js-cursor">
<div class="cursor__wrapper">
<div class="cursor__follower js-follower"></div>
<div class="cursor__label js-label"></div>
<div class="cursor__icon js-icon"></div>
</div>
</div>
<!-- cursor end -->
<!-- barba container start -->
<div class="barba-container" data-barba="container">
<!-- to-top-button start -->
<div data-cursor class="backButton js-backButton">
<span class="backButton__bg"></span>
<div class="backButton__icon__wrap">
<i class="backButton__button js-top-button" data-feather="arrow-up"></i>
</div>
</div>
<!-- to-top-button end -->
<main class="">
<!-- header start -->
<header class="header -light -sticky-light js-header">
<!-- header__bar start -->
<div class="header__bar">
<div class="header__logo js-header-logo">
<a data-barba href="home-1.html">
<img class="header__logo__light js-lazy" data-srcset="img/logo/logo-light.png 1x, img/logo/logo-light-x2.png 2x" data-src="img/logo/logo-light.png" alt="Logo">
</a>
<a data-barba href="home-1.html">
<img class="header__logo__dark js-lazy" data-srcset="img/logo/logo-dark.png 1x, img/logo/logo-dark-x2.png 2x" data-src="img/logo/logo-dark.png" alt="Logo">
</a>
</div>
<div class="header__menu js-header-menu">
<button type="button" class="nav-button-open js-nav-open">
<i class="icon" data-feather="menu"></i>
</button>
</div>
</div>
<!-- header__bar end -->
<!-- nav start -->
<nav class="nav js-nav">
<div class="nav__inner js-nav-inner">
<div class="nav__bg js-nav-bg"></div>
<div class="nav__container">
<div class="nav__header">
<button type="button" class="nav-button-back js-nav-back">
<i class="icon" data-feather="arrow-left-circle"></i>
</button>
<button type="button" class="nav-btn-close js-nav-close pointer-events-none">
<i class="icon" data-feather="x"></i>
</button>
</div>
<div class="nav__content">
<div class="nav__content__left">
<div class="navList__wrap">
<ul class="navList js-navList">
<li>
<a data-barba href="home-1-classic.html">
Classic Menu
</a>
</li>
<li class="menu-item-has-children">
<a>Main Pages</a>
<ul class="subnav-list">
<li>
<a data-barba href="home-1.html">Main Slider</a>
</li>
<li>
<a data-barba href="home-2.html">Main Dark</a>
</li>
<li>
<a data-barba href="home-3.html">Simple Slider</a>
</li>
<li>
<a data-barba href="home-4.html">Bold Light</a>
</li>
<li>
<a data-barba href="home-5.html">Static Header Dark</a>
</li>
<li>
<a data-barba href="home-6.html">Personal</a>
</li>
<li>
<a data-barba href="projectSlider-1.html">Project Slider</a>
</li>
</ul>
</li>
<li class="menu-item-has-children">
<a>Inner Pages</a>
<ul class="subnav-list">
<li class="menu-item-has-children">
<a>About</a>
<ul class="subnav-list">
<li>
<a data-barba href="about-1.html">About 1</a>
</li>
<li>
<a data-barba href="about-2.html">About 2</a>
</li>
</ul>
</li>
<li class="menu-item-has-children">
<a>Services</a>
<ul class="subnav-list">
<li>
<a data-barba href="services-1.html">Services 1</a>
</li>
<li>
<a data-barba href="services-2.html">Services 2</a>
</li>
</ul>
</li>
<li class="menu-item-has-children">
<a>404</a>
<ul class="subnav-list">
<li>
<a data-barba href="404-light.html">404 Light</a>
</li>
<li>
<a data-barba href="404-dark.html">404 Dark</a>
</li>
</ul>
</li>
<li class="menu-item-has-children">
<a>Contact</a>
<ul class="subnav-list">
<li>
<a data-barba href="contact-1.html">Contact 1</a>
</li>
<li>
<a data-barba href="contact-2.html">Contact 2</a>
</li>
</ul>
</li>
<li>
<a data-barba href="team.html">Team</a>
</li>
<li>
<a data-barba href="pricing.html">Pricing Plans</a>
</li>
<li>
<a data-barba href="clients.html">Clients</a>
</li>
</ul>
</li>
<li class="menu-item-has-children">
<a>Portfolio</a>
<ul class="subnav-list">
<li>
<a data-barba href="vertical-projects.html">Vertical Projects</a>
</li>
<li>
<a data-barba href="grid-simple-2-col.html">Simple 2 Columns</a>
</li>
<li>
<a data-barba href="grid-masonry-2-col.html">Masonry 2 Columns</a>
</li>
<li>
<a data-barba href="grid-masonry-3-col.html">Masonry 3 Columns</a>
</li>
<li>
<a data-barba href="grid-masonry-4-col.html">Masonry 4 Columns</a>
</li>
<li>
<a data-barba href="grid-fancy-2-col.html">Fancy 2 Columns</a>
</li>
<li>
<a data-barba href="grid-fancy-3-col.html">Fancy 3 Columns</a>
</li>
</ul>
</li>
<li class="menu-item-has-children">
<a>Works</a>
<ul class="subnav-list">
<li>
<a data-barba href="portfolio-single-1.html">Project 1</a>
</li>
<li>
<a data-barba href="portfolio-single-2.html">Project 2</a>
</li>
<li>
<a data-barba href="portfolio-single-3.html">Project 3</a>
</li>
<li>
<a data-barba href="portfolio-single-4.html">Project 4</a>
</li>
<li>
<a data-barba href="portfolio-single-5.html">Project 5</a>
</li>
<li>
<a data-barba href="portfolio-single-6.html">Project 6</a>
</li>
</ul>
</li>
<li class="menu-item-has-children">
<a>Blog</a>
<ul class="subnav-list">
<li>
<a data-barba href="blog-1.html">Blog List</a>
</li>
<li>
<a data-barba href="blog-2.html">Blog 2 cols</a>
</li>
<li>
<a data-barba href="blog-fancy-3-col.html">Blog Fancy 3 cols</a>
</li>
<li>
<a data-barba href="blog-article.html">Blog List Single</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
<div class="nav__content__right">
<div class="nav__info">
<div class="nav__info__item js-navInfo-item">
<h5 class="text-sm tracking-none fw-500">
Address
</h5>
<div class="nav__info__content text-lg text-white mt-16">
<p>
Studio Stukram 1910 Gateway Road, Portland, Oregon 97230
</p>
</div>
</div>
<div class="nav__info__item js-navInfo-item">
<h5 class="text-sm tracking-none fw-500">
Socials
</h5>
<div class="nav__info__content text-lg text-white mt-16">
<a href="#">Behance</a>
<a href="#">Dribbble</a>
<a href="#">Facebook</a>
<a href="#">Twitter</a>
</div>
</div>
<div class="nav__info__item js-navInfo-item">
<h5 class="text-sm tracking-none fw-500">
Contact Us
</h5>
<div class="nav__info__content text-lg text-white mt-16">
<a href="#">hello@stukram.com</a>
<a href="#">+1 202 555 0171</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</nav>
<!-- nav end -->
</header>
<!-- header end -->
<!-- section start -->
<section data-anim-wrap class="layout-pt-xl layout-pb-lg">
<div class="container">
<!-- row start -->
<div class="row">
<div class="col-xl-6 col-md-8">
<div class="sectionHeading -lg">
<div data-anim-child="slide-up delay-1">
<p class="sectionHeading__subtitle text-black">
Company
</p>
</div>
<div data-anim-child="slide-up delay-2">
<h1 class="sectionHeading__title">
Passionate & Flexible
</h1>
</div>
</div>
</div>
</div>
<!-- row end -->
<!-- row start -->
<div class="row mt-40 md:mt-24">
<div class="col-xl-6 col-lg-8 col-md-9">
<div data-anim-child="slide-up delay-3">
<p class="text-lg sm:text-base">
Midst image the creepeth lesser second. In, moved unto likeness, one. One blessed seasons i hath appear saw sixth the third gathered also. Fifth fowl given his god fill. Moved evening beginning.
</p>
</div>
</div>
</div>
<!-- row end -->
<!-- row start -->
<div class="row x-gap-60 y-gap-60 layout-pt-md">
<div class="col-lg-4 col-md-6">
<div data-anim="slide-up delay-5">
<div class="d-flex ml-minus-4">
<div class="px-20 py-20 bg-white shadow-light rounded-full">
<i class="size-md str-width-md text-accent" data-feather="edit"></i>
</div>
</div>
<h3 class="text-2xl fw-500 mt-32">
Web design
</h3>
<p class="mt-20">
The full cycle of services to create and launch a website from scratch or redesign a live website along with.
</p>
<div class="mt-24">
<a data-barba href="#" class="button -icon text-black">
Know More
<i class="icon size-xs str-width-md" data-feather="arrow-right"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div data-anim="slide-up delay-5">
<div class="d-flex ml-minus-4">
<div class="px-20 py-20 bg-white shadow-light rounded-full">
<i class="size-md str-width-md text-accent" data-feather="sliders"></i>
</div>
</div>
<h3 class="text-2xl fw-500 mt-32">
Branding
</h3>
<p class="mt-20">
The full cycle of services to create and launch a website from scratch or redesign a live website along with.
</p>
<div class="mt-24">
<a data-barba href="#" class="button -icon text-black">
Know More
<i class="icon size-xs str-width-md" data-feather="arrow-right"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div data-anim="slide-up delay-5">
<div class="d-flex ml-minus-4">
<div class="px-20 py-20 bg-white shadow-light rounded-full">
<i class="size-md str-width-md text-accent" data-feather="feather"></i>
</div>
</div>
<h3 class="text-2xl fw-500 mt-32">
Mobile apps
</h3>
<p class="mt-20">
The full cycle of services to create and launch a website from scratch or redesign a live website along with.
</p>
<div class="mt-24">
<a data-barba href="#" class="button -icon text-black">
Know More
<i class="icon size-xs str-width-md" data-feather="arrow-right"></i>
</a>
</div>
</div>
</div>
</div>
<!-- row end -->
</div>
</section>
<!-- section end -->
<!-- section start -->
<div class="sectionVideo h-lg">
<div data-parallax="0.7" class="h-full">
<div data-parallax-target class="bg-image js-lazy" data-bg="img/backgrounds/2.jpg"></div>
</div>
<a href="https://www.youtube.com/watch?v=ANYfx4-jyqY" data-cursor data-gallery="gallery1" class="sectionVideo__btn bg-white text-black js-video-button glightbox">
<span class="sectionVideo__btn__inner">
<i class="icon str-width-lg" data-feather="arrow-right"></i>
</span>
</a>
</div>
<!-- section end -->
<!-- section start -->
<section class="layout-pt-lg layout-pb-lg">
<div class="container">
<div class="js-section-slider" data-slider-col="base-2 lg-2 md-1 sm-1" data-gap="40" data-loop data-pagination data-center>
<div class="row justify-content-between align-items-end">
<div class="col-lg-6">
<div class="sectionHeading -md">
<p class="sectionHeading__subtitle">
testimonials
</p>
<h2 class="sectionHeading__title">
Our partners
</h2>
</div>
</div>
<div class="col-auto">
<a href="#" class="button -md -outline-black text-black md:mt-24">
View All
</a>
</div>
</div>
<div class="swiper-wrapper layout-pt-md">
<div class="swiper-slide slider-slide">
<div class="testimonials bg-white py-48 px-48 sm:py-32 sm:px-32 rounded-4 shadow-light">
<h4 class="text-2xl text-whit mb-16">
Customer Support
</h4>
<p class="testimonials__comment text-lg text-dark">
Nor themselves introduced themselves unsatiable devonshire get. They why quit gay cold rose deal park. One same they four did ask busy. Reserved opinions fat him nay position.
</p>
<div class="testimonials__author d-flex align-items-center mt-24">
<div class="size-md mr-16">
<div class="bg-image rounded-full swiper-lazy" data-background="img/testimonials/1.jpg"></div>
</div>
<div>
<h6 class="text-base capitalize fw-600 text-black">
Gareth Grey
</h6>
<h6 class="text-base capitalize fw-400 text-dark mt-4">
graphic designer
</h6>
</div>
</div>
</div>
</div>
<div class="swiper-slide slider-slide">
<div class="testimonials bg-white py-48 px-48 sm:py-32 sm:px-32 rounded-4 shadow-light">
<h4 class="text-2xl text-whit mb-16">
Customer Support
</h4>
<p class="testimonials__comment text-lg text-dark">
Green great Called is so rule evening. For appear winged brought divided. Life fruitful together she'd sixth them evening abundantly herb. Subdue yielding seas open called living life.
</p>
<div class="testimonials__author d-flex align-items-center mt-24">
<div class="size-md mr-16">
<div class="bg-image rounded-full swiper-lazy" data-background="img/testimonials/2.jpg"></div>
</div>
<div>
<h6 class="text-base capitalize fw-600 text-black">
Alyce Hackett
</h6>
<h6 class="text-base capitalize fw-400 text-dark mt-4">
developer
</h6>
</div>
</div>
</div>
</div>
<div class="swiper-slide slider-slide">
<div class="testimonials bg-white py-48 px-48 sm:py-32 sm:px-32 rounded-4 shadow-light">
<h4 class="text-2xl text-whit mb-16">
Customer Support
</h4>
<p class="testimonials__comment text-lg text-dark">
Kind isn't had. Their whose seasons fowl light created they're void is female fowl he second shall that from, firmament you over had brought herb void cattle image form creeping.
</p>
<div class="testimonials__author d-flex align-items-center mt-24">
<div class="size-md mr-16">
<div class="bg-image rounded-full swiper-lazy" data-background="img/testimonials/3.jpg"></div>
</div>
<div>
<h6 class="text-base capitalize fw-600 text-black">
Maegan Leach
</h6>
<h6 class="text-base capitalize fw-400 text-dark mt-4">
UX designer
</h6>
</div>
</div>
</div>
</div>
</div>
<div class="pagination -dark pb-4 mt-56 js-pagination"></div>
</div>
</div>
</section>
<!-- section end -->
<!-- section start -->
<section class="layout-pt-lg layout-pb-lg bg-dark-1">
<!-- container start -->
<div class="container">
<!-- row start -->
<div class="row y-gap-32">
<div class="col-lg-3 col-sm-6">
<div data-anim="slide-up delay-1" class="clientsItem -light -hover ratio ratio-3:2 border-light rounded-4">
<div class="clientsItem__img">
<img class="col-8" src="img/clients/light/1.png" alt="Client">
</div>
<div class="clientsItem__content">
<h5 class="clientsItem__title text-xl">
Sophia & Holden
</h5>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6">
<div data-anim="slide-up delay-1" class="clientsItem -light -hover ratio ratio-3:2 border-light rounded-4">
<div class="clientsItem__img">
<img class="col-8" src="img/clients/light/2.png" alt="Client">
</div>
<div class="clientsItem__content">
<h5 class="clientsItem__title text-xl">
Sophia & Holden
</h5>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6">
<div data-anim="slide-up delay-1" class="clientsItem -light -hover ratio ratio-3:2 border-light rounded-4">
<div class="clientsItem__img">
<img class="col-8" src="img/clients/light/3.png" alt="Client">
</div>
<div class="clientsItem__content">
<h5 class="clientsItem__title text-xl">
Sophia & Holden
</h5>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6">
<div data-anim="slide-up delay-1" class="clientsItem -light -hover ratio ratio-3:2 border-light rounded-4">
<div class="clientsItem__img">
<img class="col-8" src="img/clients/light/4.png" alt="Client">
</div>
<div class="clientsItem__content">
<h5 class="clientsItem__title text-xl">
Sophia & Holden
</h5>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6">
<div data-anim="slide-up delay-1" class="clientsItem -light -hover ratio ratio-3:2 border-light rounded-4">
<div class="clientsItem__img">
<img class="col-8" src="img/clients/light/5.png" alt="Client">
</div>
<div class="clientsItem__content">
<h5 class="clientsItem__title text-xl">
Sophia & Holden
</h5>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6">
<div data-anim="slide-up delay-1" class="clientsItem -light -hover ratio ratio-3:2 border-light rounded-4">
<div class="clientsItem__img">
<img class="col-8" src="img/clients/light/6.png" alt="Client">
</div>
<div class="clientsItem__content">
<h5 class="clientsItem__title text-xl">
Sophia & Holden
</h5>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6">
<div data-anim="slide-up delay-1" class="clientsItem -light -hover ratio ratio-3:2 border-light rounded-4">
<div class="clientsItem__img">
<img class="col-8" src="img/clients/light/7.png" alt="Client">
</div>
<div class="clientsItem__content">
<h5 class="clientsItem__title text-xl">
Sophia & Holden
</h5>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6">
<div data-anim="slide-up delay-1" class="clientsItem -light -hover ratio ratio-3:2 border-light rounded-4">
<div class="clientsItem__img">
<img class="col-8" src="img/clients/light/8.png" alt="Client">
</div>
<div class="clientsItem__content">
<h5 class="clientsItem__title text-xl">
Sophia & Holden
</h5>
</div>
</div>
</div>
</div>
<!-- row end -->
</div>
<!-- container end -->
</section>
<!-- section end -->
<!-- section start -->
<section class="layout-pt-lg layout-pb-lg">
<!-- container start -->
<div class="container">
<!-- row start -->
<div class="row justify-content-center text-center">
<div class="col-xl-7 col-lg-9">
<div class="sectionHeading -lg">
<p class="sectionHeading__subtitle">
pricing
</p>
<h2 class="sectionHeading__title">
Our Pricing
</h2>
</div>
</div>
</div>
<!-- row end -->
<!-- row start -->
<div class="row x-gap-40 y-gap-40 layout-pt-md">
<div class="col-lg-4 col-md-6">
<div class="priceCard py-40 px-40 rounded-base shadow-light">
<div class="priceCard__content">
<h3 class="priceCard__title text-2xl fw-500">
Personal
</h3>
<h3 class="priceCard__price number -md text-black fw-600 mt-24">
$ 39
</h3>
<p class="priceCard__badge text-sm fw-500 mt-32">
Monthly
</p>
<p class="text-black fw-500 mt-24">
Get the current deal without any risk and additional fees.
</p>
<ul class="priceCard__list mt-24">
<li>
<p class="">Unlimited updates & projects</p>
</li>
<li>
<p class="">Custom permissions</p>
</li>
<li>
<p class="line-through">Custom infrastructure</p>
</li>
<li>
<p class="line-through">Custom Design & features</p>
</li>
</ul>
<div class="priceCard__button mt-32">
<a href="#" class="button -sm -outline-black text-black">
Get started
</a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="priceCard py-40 px-40 rounded-base shadow-light bg-dark-1">
<div class="priceCard__content">
<h3 class="priceCard__title text-2xl fw-500 text-white">
Personal
</h3>
<h3 class="priceCard__price number -md text-white fw-600 mt-24">
$ 49
</h3>
<p class="priceCard__badge -light text-white text-sm fw-500 mt-32">
Monthly
</p>
<p class="text-white fw-500 mt-24">
Get the current deal without any risk and additional fees.
</p>
<ul class="priceCard__list mt-24">
<li>
<p class="text-light">Unlimited updates & projects</p>
</li>
<li>
<p class="text-light">Custom permissions</p>
</li>
<li>
<p class="text-light line-through">Custom infrastructure</p>
</li>
<li>
<p class="text-light line-through">Custom Design & features</p>
</li>
</ul>
<div class="priceCard__button mt-32">
<a href="#" class="button -sm -outline-white text-white">
Get started
</a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="priceCard py-40 px-40 rounded-base shadow-light">
<div class="priceCard__content">
<h3 class="priceCard__title text-2xl fw-500">
Personal
</h3>
<h3 class="priceCard__price number -md text-black fw-600 mt-24">
$ 59
</h3>
<p class="priceCard__badge text-sm fw-500 mt-32">
Monthly
</p>
<p class="text-black fw-500 mt-24">
Get the current deal without any risk and additional fees.
</p>
<ul class="priceCard__list mt-24">
<li>
<p class="">Unlimited updates & projects</p>
</li>
<li>
<p class="">Custom permissions</p>
</li>
<li>
<p class="line-through">Custom infrastructure</p>
</li>
<li>
<p class="line-through">Custom Design & features</p>
</li>
</ul>
<div class="priceCard__button mt-32">
<a href="#" class="button -sm -outline-black text-black">
Get started
</a>
</div>
</div>
</div>
</div>
</div>
<!-- row end -->
</div>
<!-- container end -->
</section>
<!-- section end -->
<!-- footer start -->
<footer class="footer -type-1 bg-dark-1">
<!-- container start -->
<div class="container">
<div class="footer__top">
<!-- row start -->
<div class="row y-gap-48 justify-content-between">
<div class="col-lg-auto col-sm-12">
<a href="home-1.html" class="footer__logo text-white">
Stukram.
</a>
</div>
<div class="col-lg-3 col-sm-6">
<h4 class="text-xl fw-500 text-white">
Studio
</h4>
<div class="footer__content text-base text-light mt-16 sm:mt-12">
<p>Studio Stukram 1910 Gateway Road, Portland, Oregon 97230</p>
<p class="mt-8">hello@stukram.com</p>
<p class="mt-8">+1 202 555 0171</p>
</div>
</div>
<div class="col-lg-auto col-sm-4">
<h4 class="text-xl fw-500 text-white">
Links
</h4>
<div class="footer__content text-base text-light mt-16 sm:mt-12">
<div><a data-barba href="blog-1.html" class="button -underline">Blog</a></div>
<div><a data-barba href="about-1.html" class="button -underline mt-4">Abous Us</a></div>
<div><a data-barba href="#" class="button -underline mt-4">Shop</a></div>
<div><a data-barba href="contact-1.html" class="button -underline mt-4">Contacts</a></div>
</div>
</div>
<div class="col-lg-auto col-auto">
<h4 class="text-xl fw-500 text-white">
Follow us
</h4>
<div class="social -bordered mt-16 sm:mt-12">
<a class="social__item text-white border-light" href="#">
<i class="fa fa-twitter"></i>
</a>
<a class="social__item text-white border-light" href="#">
<i class="fa fa-instagram"></i>
</a>
<a class="social__item text-white border-light" href="#">
<i class="fa fa-youtube-play"></i>
</a>
<a class="social__item text-white border-light" href="#">
<i class="fa fa-linkedin"></i>
</a>
</div>
</div>
</div>
<!-- row end -->
</div>
<div class="footer__bottom -light">
<!-- row start -->
<div class="row">
<div class="col">
<div class="footer__copyright">
<p class="text-light">
@ 2020, Stukram. Made with passion by Krellion.
</p>
</div>
</div>
</div>
<!-- row end -->
</div>
</div>
<!-- container end -->
</footer>
<!-- footer end -->
</main>
</div>
<!-- barba container end -->
<!-- JavaScript -->
<script src="js/vendors.js"></script>
<script src="js/main.js"></script>
</body>
</html>