-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1556 lines (1539 loc) · 111 KB
/
index.html
File metadata and controls
1556 lines (1539 loc) · 111 KB
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
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Favicon -->
<link rel="shortcut icon" href="./assets/images/proton-logo.ico" type="image/x-icon">
<!-- Fontawesom Icon -->
<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" />
<!-- Bootstrap -->
<link rel="stylesheet" href="./assets/plugins/bootstrap/bootstrap.min.css">
<!-- Swiper -->
<link rel="stylesheet" href="./assets/plugins/swiper/swiper-bundle.min.css">
<!-- Custom Css -->
<link rel="stylesheet" href="./assets/css/style.css">
<title>Veb Saytlarin Yaradilmasi- Proton.az Sayt Sifarisi</title>
</head>
<body>
<a href="#" class="btn btn-top">
<i data-feather="arrow-up"></i>
</a>
<!-- Search modal start -->
<div class="search-modal-container">
<div class="container">
<form action="">
<div class="row align-items-center">
<div class="col-10">
<div class="form-group">
<input type="text" placeholder="Search here" class="form-control custom-form">
</div>
</div>
<div class="col-2">
<button class="btn btn-main btn-search-form">
<i data-feather="search"></i>
</button>
</div>
</div>
</form>
</div>
</div>
<!-- Search modal end -->
<!-- Header start -->
<header>
<div class="container">
<div class="header">
<div class="logo">
<a href="./index.html">
<img src="./assets/images/proton-logo.svg" alt="">
</a>
</div>
<nav>
<ul class="custom-navbar">
<li class="nav-item mobile-header">
<a href="./index.html" class="logo">
<img src="./assets/images/proton-logo.svg" alt="">
</a>
<button class="btn btn-close">
<i data-feather="x"></i>
</button>
</li>
<li class="nav-item">
<a href="./index.html">Home</a>
</li>
<li class="nav-item">
<a href="./about.html">About us</a>
</li>
<li class="nav-item">
<a href="./portfolio.html">Portfolio</a>
</li>
<li class="nav-item">
<a href="./blog.html">Blog</a>
</li>
<li class="nav-item">
<a href="./contact.html">Contact</a>
</li>
<li>
<ul class="contact-list px-4">
<li>
<a href="mailto:test@yourdomain.com">
test@yourdomain.com
</a>
</li>
<li>
<a href="tel:+994 55 555 55 55">
+994 55 555 55 55
</a>
</li>
<li>
<ul class="social-network">
<li>
<a href="#">
<i data-feather="facebook"></i>
</a>
</li>
<li>
<a href="#">
<i data-feather="instagram"></i>
</a>
</li>
<li>
<a href="#">
<i data-feather="twitter"></i>
</a>
</li>
<li>
<a href="#">
<i data-feather="linkedin"></i>
</a>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</nav>
<div class="d-flex align-items-center gap-2">
<button class="btn btn-search">
<i data-feather="search"></i>
</button>
<button class="btn btn-nav text-white">
<i data-feather="grid"></i>
</button>
<a href="./contact.html"
class="d-none d-lg-flex align-items-center gap-2 btn btn-main dark custom-rounded">
<i class="fa-brands fa-whatsapp"></i>
<span>Contact now</span>
</a>
</div>
</div>
</div>
</header>
<!-- Header end -->
<!-- Banner start-->
<section class="banner-section">
<div class="banner-bg">
<div class="overlay"></div>
<div class="container h-100">
<div class="h-100 row align-items-center justify-content-center position-relative z-1">
<div class="col-12 col-lg-7">
<h1 class="banner-title">
Unleash Digital Potential
</h1>
<p class="inner-text">
We provide professional services to clients in a particular area of expertise. We have a
team of experts in various
fields.
</p>
<form>
<div class="search-form">
<div class="form-group mb-0 mb-lg-3">
<input type="text" id="searchInput" placeholder="Your email address"
class="form-control custom-form">
</div>
<button class="btn btn-main dark">
<i data-feather="send"></i>
</button>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Banner end -->
<!-- Services start -->
<section class="position-relative home-services-section py-5">
<div class="container">
<div class="section-title-box">
<div class="row align-items-center">
<div class="col-12 col-lg-7 mb-5 mb-lg-0">
<h4 class="subtitle">
day-to-day operations
</h4>
<h2 class="section-title">
Empowering excellence
</h2>
</div>
<div class="col-12 col-lg-5">
<div class="swiper-buttons">
<button class="btn swiper-button-prev">
</button>
<button class="btn swiper-button-next">
</button>
</div>
</div>
</div>
</div>
<div class="swiper servicesSwiper">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="service-card">
<div class="service-head py-4">
<div class="icon">
<svg width="47" height="47" viewBox="0 0 47 47" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_268_177)">
<path
d="M12.3537 24.6735C10.3043 23.8439 8.35248 23.0632 6.40068 22.2581C4.08291 21.3066 3.64375 19.3304 5.37598 17.5738C7.03501 15.8903 8.71844 14.2557 10.3775 12.5723C11.1826 11.7428 12.0853 11.45 13.232 11.6208C14.6714 11.8403 16.1353 12.0111 17.5991 12.0843C18.0139 12.1087 18.5263 11.8891 18.819 11.5964C20.1853 10.2545 21.5271 8.91264 22.8202 7.49758C26.8702 3.00844 32.1157 1.15422 37.9467 0.544285C39.5081 0.373502 41.1184 0.324707 42.6798 0.324707C45.144 0.349105 46.681 1.76416 46.5346 4.17952C46.3638 7.27801 46.1199 10.4253 45.5099 13.475C44.7292 17.403 42.8018 20.843 39.8253 23.6244C38.3127 25.0394 36.8 26.4789 35.385 27.9671C35.0434 28.3331 34.8238 28.9918 34.8238 29.5042C34.8726 30.9192 35.2386 32.3343 35.2142 33.7493C35.1898 34.652 34.9214 35.7255 34.3603 36.3843C32.7256 38.2385 30.9202 39.9463 29.1392 41.6785C27.5777 43.1668 25.5527 42.7276 24.6988 40.727C23.9913 39.0436 23.2838 37.3602 22.6982 35.6279C22.3811 34.6764 21.8931 34.5057 20.9904 34.6764C18.8678 35.0912 16.7452 35.4084 14.6226 35.7743C12.0365 36.2379 10.6702 34.8472 11.1094 32.2367C11.5486 29.7481 11.9389 27.284 12.3537 24.6735ZM27.2362 39.9463C28.944 38.2141 30.4566 36.6282 32.0425 35.1156C32.628 34.5545 32.7256 34.0177 32.628 33.2858C32.4085 31.6024 32.1889 29.8945 32.0425 28.2111C32.0181 27.8207 32.2377 27.284 32.5304 26.9912C34.409 25.137 36.3365 23.3316 38.2395 21.5018C40.1669 19.672 41.5087 17.4762 42.387 14.9876C43.6069 11.4988 44.0217 7.88794 43.9485 4.20392C43.9241 3.25241 43.4849 2.88645 42.5822 2.93524C40.8744 3.03283 39.1666 3.00844 37.4831 3.22801C33.2136 3.76476 29.188 4.96024 26.0163 8.05873C23.9425 10.0349 22.0151 12.2063 19.9657 14.2557C19.6241 14.5973 19.0142 14.8656 18.5506 14.8168C16.8184 14.6949 15.0862 14.4265 13.354 14.2557C12.988 14.2313 12.4757 14.2557 12.2317 14.4753C10.4751 16.1343 8.74284 17.8665 6.91302 19.672C8.81603 20.4283 10.4995 21.1114 12.1829 21.7945C14.891 22.8924 15.2326 23.5512 14.7202 26.4301C14.3299 28.6503 13.9883 30.8948 13.5979 33.2126C14.0127 33.1882 14.2811 33.1882 14.5495 33.1638C16.672 32.7978 18.7946 32.4563 20.9172 32.0903C23.1618 31.6999 24.0401 32.1635 24.894 34.2617C25.6503 36.0427 26.3823 37.8969 27.2362 39.9463Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
<path
d="M14.3546 46.5335C14.0374 46.2895 13.5494 46.0944 13.4274 45.7772C13.2811 45.3868 13.2567 44.7037 13.4762 44.4597C15.3792 42.4591 17.3067 40.5073 19.3316 38.6531C19.6 38.4091 20.6003 38.5311 20.8931 38.8483C21.1859 39.1655 21.2591 40.1414 20.9907 40.4341C19.1609 42.4347 17.2091 44.3133 15.2573 46.2164C15.0865 46.3383 14.7449 46.3627 14.3546 46.5335Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
<path
d="M8.62068 26.6742C8.30351 27.1621 8.13273 27.5769 7.83996 27.8941C6.15653 29.6019 4.4731 31.2853 2.76527 32.9687C2.13094 33.6031 1.44781 33.8471 0.740278 33.1883C0.0327498 32.5296 0.22793 31.7977 0.862266 31.1633C2.61889 29.4067 4.32672 27.6257 6.13213 25.9423C6.4737 25.6251 7.18123 25.5275 7.64478 25.6251C8.01074 25.7227 8.25472 26.2838 8.62068 26.6742Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
<path
d="M9.79155 35.5791C11.0358 35.6767 11.6214 36.8478 10.8894 37.6529C9.03523 39.6291 7.10782 41.5321 5.10723 43.3863C4.83885 43.6547 3.76536 43.5571 3.54578 43.2643C3.25301 42.874 3.17982 41.8981 3.44819 41.5809C5.25361 39.6047 7.18102 37.7505 9.08402 35.8963C9.3036 35.6767 9.66957 35.6279 9.79155 35.5791Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
<path
d="M39.2637 12.8404C39.2393 15.6949 36.8971 18.0371 34.0426 18.0127C31.2125 17.9883 28.8459 15.6217 28.8459 12.7916C28.8459 9.91272 31.2613 7.52176 34.1402 7.57056C37.0191 7.64375 39.2881 9.98591 39.2637 12.8404ZM36.6532 12.816C36.6776 11.3766 35.6041 10.2543 34.1646 10.2299C32.7008 10.1811 31.5053 11.3278 31.4809 12.7672C31.4565 14.2067 32.6764 15.4022 34.1158 15.3778C35.5309 15.3534 36.6288 14.2555 36.6532 12.816Z"
fill="#fff"></path>
<path
d="M27.6749 30.1871C27.3822 30.5043 27.1138 31.0166 26.7478 31.1142C26.3087 31.2118 25.7231 31.041 25.3328 30.797C25.04 30.6018 24.918 30.1383 24.7472 29.7723C23.137 26.2835 20.5997 23.7217 17.0864 22.1359C16.8912 22.0139 16.6472 21.9407 16.4521 21.8187C15.7689 21.4284 15.403 20.8672 15.7445 20.1109C16.0861 19.3058 16.7204 19.135 17.55 19.4766C20.3313 20.6233 22.7954 22.2579 24.6252 24.6732C25.6499 26.0151 26.4063 27.5522 27.2846 29.016C27.431 29.3088 27.5042 29.6747 27.6749 30.1871Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
</g>
</svg>
</div>
<div class="count">
01
</div>
</div>
<div class="service-body">
<h3 class="service-title">
instant entry
</h3>
<p class="inner-text">
Lorem ipsum dolor sit amet consectetur adipiscing elit Ut et massa mi. Aliquam in
hendrerit urna.
</p>
<a href="./services.html">
<span>look more</span>
<span>
<i data-feather="arrow-up-right"></i>
</span>
</a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="service-card">
<div class="service-head py-4">
<div class="icon">
<svg width="47" height="47" viewBox="0 0 47 47" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_268_177)">
<path
d="M12.3537 24.6735C10.3043 23.8439 8.35248 23.0632 6.40068 22.2581C4.08291 21.3066 3.64375 19.3304 5.37598 17.5738C7.03501 15.8903 8.71844 14.2557 10.3775 12.5723C11.1826 11.7428 12.0853 11.45 13.232 11.6208C14.6714 11.8403 16.1353 12.0111 17.5991 12.0843C18.0139 12.1087 18.5263 11.8891 18.819 11.5964C20.1853 10.2545 21.5271 8.91264 22.8202 7.49758C26.8702 3.00844 32.1157 1.15422 37.9467 0.544285C39.5081 0.373502 41.1184 0.324707 42.6798 0.324707C45.144 0.349105 46.681 1.76416 46.5346 4.17952C46.3638 7.27801 46.1199 10.4253 45.5099 13.475C44.7292 17.403 42.8018 20.843 39.8253 23.6244C38.3127 25.0394 36.8 26.4789 35.385 27.9671C35.0434 28.3331 34.8238 28.9918 34.8238 29.5042C34.8726 30.9192 35.2386 32.3343 35.2142 33.7493C35.1898 34.652 34.9214 35.7255 34.3603 36.3843C32.7256 38.2385 30.9202 39.9463 29.1392 41.6785C27.5777 43.1668 25.5527 42.7276 24.6988 40.727C23.9913 39.0436 23.2838 37.3602 22.6982 35.6279C22.3811 34.6764 21.8931 34.5057 20.9904 34.6764C18.8678 35.0912 16.7452 35.4084 14.6226 35.7743C12.0365 36.2379 10.6702 34.8472 11.1094 32.2367C11.5486 29.7481 11.9389 27.284 12.3537 24.6735ZM27.2362 39.9463C28.944 38.2141 30.4566 36.6282 32.0425 35.1156C32.628 34.5545 32.7256 34.0177 32.628 33.2858C32.4085 31.6024 32.1889 29.8945 32.0425 28.2111C32.0181 27.8207 32.2377 27.284 32.5304 26.9912C34.409 25.137 36.3365 23.3316 38.2395 21.5018C40.1669 19.672 41.5087 17.4762 42.387 14.9876C43.6069 11.4988 44.0217 7.88794 43.9485 4.20392C43.9241 3.25241 43.4849 2.88645 42.5822 2.93524C40.8744 3.03283 39.1666 3.00844 37.4831 3.22801C33.2136 3.76476 29.188 4.96024 26.0163 8.05873C23.9425 10.0349 22.0151 12.2063 19.9657 14.2557C19.6241 14.5973 19.0142 14.8656 18.5506 14.8168C16.8184 14.6949 15.0862 14.4265 13.354 14.2557C12.988 14.2313 12.4757 14.2557 12.2317 14.4753C10.4751 16.1343 8.74284 17.8665 6.91302 19.672C8.81603 20.4283 10.4995 21.1114 12.1829 21.7945C14.891 22.8924 15.2326 23.5512 14.7202 26.4301C14.3299 28.6503 13.9883 30.8948 13.5979 33.2126C14.0127 33.1882 14.2811 33.1882 14.5495 33.1638C16.672 32.7978 18.7946 32.4563 20.9172 32.0903C23.1618 31.6999 24.0401 32.1635 24.894 34.2617C25.6503 36.0427 26.3823 37.8969 27.2362 39.9463Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
<path
d="M14.3546 46.5335C14.0374 46.2895 13.5494 46.0944 13.4274 45.7772C13.2811 45.3868 13.2567 44.7037 13.4762 44.4597C15.3792 42.4591 17.3067 40.5073 19.3316 38.6531C19.6 38.4091 20.6003 38.5311 20.8931 38.8483C21.1859 39.1655 21.2591 40.1414 20.9907 40.4341C19.1609 42.4347 17.2091 44.3133 15.2573 46.2164C15.0865 46.3383 14.7449 46.3627 14.3546 46.5335Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
<path
d="M8.62068 26.6742C8.30351 27.1621 8.13273 27.5769 7.83996 27.8941C6.15653 29.6019 4.4731 31.2853 2.76527 32.9687C2.13094 33.6031 1.44781 33.8471 0.740278 33.1883C0.0327498 32.5296 0.22793 31.7977 0.862266 31.1633C2.61889 29.4067 4.32672 27.6257 6.13213 25.9423C6.4737 25.6251 7.18123 25.5275 7.64478 25.6251C8.01074 25.7227 8.25472 26.2838 8.62068 26.6742Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
<path
d="M9.79155 35.5791C11.0358 35.6767 11.6214 36.8478 10.8894 37.6529C9.03523 39.6291 7.10782 41.5321 5.10723 43.3863C4.83885 43.6547 3.76536 43.5571 3.54578 43.2643C3.25301 42.874 3.17982 41.8981 3.44819 41.5809C5.25361 39.6047 7.18102 37.7505 9.08402 35.8963C9.3036 35.6767 9.66957 35.6279 9.79155 35.5791Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
<path
d="M39.2637 12.8404C39.2393 15.6949 36.8971 18.0371 34.0426 18.0127C31.2125 17.9883 28.8459 15.6217 28.8459 12.7916C28.8459 9.91272 31.2613 7.52176 34.1402 7.57056C37.0191 7.64375 39.2881 9.98591 39.2637 12.8404ZM36.6532 12.816C36.6776 11.3766 35.6041 10.2543 34.1646 10.2299C32.7008 10.1811 31.5053 11.3278 31.4809 12.7672C31.4565 14.2067 32.6764 15.4022 34.1158 15.3778C35.5309 15.3534 36.6288 14.2555 36.6532 12.816Z"
fill="#fff"></path>
<path
d="M27.6749 30.1871C27.3822 30.5043 27.1138 31.0166 26.7478 31.1142C26.3087 31.2118 25.7231 31.041 25.3328 30.797C25.04 30.6018 24.918 30.1383 24.7472 29.7723C23.137 26.2835 20.5997 23.7217 17.0864 22.1359C16.8912 22.0139 16.6472 21.9407 16.4521 21.8187C15.7689 21.4284 15.403 20.8672 15.7445 20.1109C16.0861 19.3058 16.7204 19.135 17.55 19.4766C20.3313 20.6233 22.7954 22.2579 24.6252 24.6732C25.6499 26.0151 26.4063 27.5522 27.2846 29.016C27.431 29.3088 27.5042 29.6747 27.6749 30.1871Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
</g>
</svg>
</div>
<div class="count">
01
</div>
</div>
<div class="service-body">
<h3 class="service-title">
instant entry
</h3>
<p class="inner-text">
Lorem ipsum dolor sit amet consectetur adipiscing elit Ut et massa mi. Aliquam in
hendrerit urna.
</p>
<a href="./services.html">
<span>look more</span>
<span>
<i data-feather="arrow-up-right"></i>
</span>
</a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="service-card">
<div class="service-head py-4">
<div class="icon">
<svg width="47" height="47" viewBox="0 0 47 47" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_268_177)">
<path
d="M12.3537 24.6735C10.3043 23.8439 8.35248 23.0632 6.40068 22.2581C4.08291 21.3066 3.64375 19.3304 5.37598 17.5738C7.03501 15.8903 8.71844 14.2557 10.3775 12.5723C11.1826 11.7428 12.0853 11.45 13.232 11.6208C14.6714 11.8403 16.1353 12.0111 17.5991 12.0843C18.0139 12.1087 18.5263 11.8891 18.819 11.5964C20.1853 10.2545 21.5271 8.91264 22.8202 7.49758C26.8702 3.00844 32.1157 1.15422 37.9467 0.544285C39.5081 0.373502 41.1184 0.324707 42.6798 0.324707C45.144 0.349105 46.681 1.76416 46.5346 4.17952C46.3638 7.27801 46.1199 10.4253 45.5099 13.475C44.7292 17.403 42.8018 20.843 39.8253 23.6244C38.3127 25.0394 36.8 26.4789 35.385 27.9671C35.0434 28.3331 34.8238 28.9918 34.8238 29.5042C34.8726 30.9192 35.2386 32.3343 35.2142 33.7493C35.1898 34.652 34.9214 35.7255 34.3603 36.3843C32.7256 38.2385 30.9202 39.9463 29.1392 41.6785C27.5777 43.1668 25.5527 42.7276 24.6988 40.727C23.9913 39.0436 23.2838 37.3602 22.6982 35.6279C22.3811 34.6764 21.8931 34.5057 20.9904 34.6764C18.8678 35.0912 16.7452 35.4084 14.6226 35.7743C12.0365 36.2379 10.6702 34.8472 11.1094 32.2367C11.5486 29.7481 11.9389 27.284 12.3537 24.6735ZM27.2362 39.9463C28.944 38.2141 30.4566 36.6282 32.0425 35.1156C32.628 34.5545 32.7256 34.0177 32.628 33.2858C32.4085 31.6024 32.1889 29.8945 32.0425 28.2111C32.0181 27.8207 32.2377 27.284 32.5304 26.9912C34.409 25.137 36.3365 23.3316 38.2395 21.5018C40.1669 19.672 41.5087 17.4762 42.387 14.9876C43.6069 11.4988 44.0217 7.88794 43.9485 4.20392C43.9241 3.25241 43.4849 2.88645 42.5822 2.93524C40.8744 3.03283 39.1666 3.00844 37.4831 3.22801C33.2136 3.76476 29.188 4.96024 26.0163 8.05873C23.9425 10.0349 22.0151 12.2063 19.9657 14.2557C19.6241 14.5973 19.0142 14.8656 18.5506 14.8168C16.8184 14.6949 15.0862 14.4265 13.354 14.2557C12.988 14.2313 12.4757 14.2557 12.2317 14.4753C10.4751 16.1343 8.74284 17.8665 6.91302 19.672C8.81603 20.4283 10.4995 21.1114 12.1829 21.7945C14.891 22.8924 15.2326 23.5512 14.7202 26.4301C14.3299 28.6503 13.9883 30.8948 13.5979 33.2126C14.0127 33.1882 14.2811 33.1882 14.5495 33.1638C16.672 32.7978 18.7946 32.4563 20.9172 32.0903C23.1618 31.6999 24.0401 32.1635 24.894 34.2617C25.6503 36.0427 26.3823 37.8969 27.2362 39.9463Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
<path
d="M14.3546 46.5335C14.0374 46.2895 13.5494 46.0944 13.4274 45.7772C13.2811 45.3868 13.2567 44.7037 13.4762 44.4597C15.3792 42.4591 17.3067 40.5073 19.3316 38.6531C19.6 38.4091 20.6003 38.5311 20.8931 38.8483C21.1859 39.1655 21.2591 40.1414 20.9907 40.4341C19.1609 42.4347 17.2091 44.3133 15.2573 46.2164C15.0865 46.3383 14.7449 46.3627 14.3546 46.5335Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
<path
d="M8.62068 26.6742C8.30351 27.1621 8.13273 27.5769 7.83996 27.8941C6.15653 29.6019 4.4731 31.2853 2.76527 32.9687C2.13094 33.6031 1.44781 33.8471 0.740278 33.1883C0.0327498 32.5296 0.22793 31.7977 0.862266 31.1633C2.61889 29.4067 4.32672 27.6257 6.13213 25.9423C6.4737 25.6251 7.18123 25.5275 7.64478 25.6251C8.01074 25.7227 8.25472 26.2838 8.62068 26.6742Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
<path
d="M9.79155 35.5791C11.0358 35.6767 11.6214 36.8478 10.8894 37.6529C9.03523 39.6291 7.10782 41.5321 5.10723 43.3863C4.83885 43.6547 3.76536 43.5571 3.54578 43.2643C3.25301 42.874 3.17982 41.8981 3.44819 41.5809C5.25361 39.6047 7.18102 37.7505 9.08402 35.8963C9.3036 35.6767 9.66957 35.6279 9.79155 35.5791Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
<path
d="M39.2637 12.8404C39.2393 15.6949 36.8971 18.0371 34.0426 18.0127C31.2125 17.9883 28.8459 15.6217 28.8459 12.7916C28.8459 9.91272 31.2613 7.52176 34.1402 7.57056C37.0191 7.64375 39.2881 9.98591 39.2637 12.8404ZM36.6532 12.816C36.6776 11.3766 35.6041 10.2543 34.1646 10.2299C32.7008 10.1811 31.5053 11.3278 31.4809 12.7672C31.4565 14.2067 32.6764 15.4022 34.1158 15.3778C35.5309 15.3534 36.6288 14.2555 36.6532 12.816Z"
fill="#fff"></path>
<path
d="M27.6749 30.1871C27.3822 30.5043 27.1138 31.0166 26.7478 31.1142C26.3087 31.2118 25.7231 31.041 25.3328 30.797C25.04 30.6018 24.918 30.1383 24.7472 29.7723C23.137 26.2835 20.5997 23.7217 17.0864 22.1359C16.8912 22.0139 16.6472 21.9407 16.4521 21.8187C15.7689 21.4284 15.403 20.8672 15.7445 20.1109C16.0861 19.3058 16.7204 19.135 17.55 19.4766C20.3313 20.6233 22.7954 22.2579 24.6252 24.6732C25.6499 26.0151 26.4063 27.5522 27.2846 29.016C27.431 29.3088 27.5042 29.6747 27.6749 30.1871Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
</g>
</svg>
</div>
<div class="count">
01
</div>
</div>
<div class="service-body">
<h3 class="service-title">
instant entry
</h3>
<p class="inner-text">
Lorem ipsum dolor sit amet consectetur adipiscing elit Ut et massa mi. Aliquam in
hendrerit urna.
</p>
<a href="./services.html">
<span>look more</span>
<span>
<i data-feather="arrow-up-right"></i>
</span>
</a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="service-card">
<div class="service-head py-4">
<div class="icon">
<svg width="47" height="47" viewBox="0 0 47 47" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_268_177)">
<path
d="M12.3537 24.6735C10.3043 23.8439 8.35248 23.0632 6.40068 22.2581C4.08291 21.3066 3.64375 19.3304 5.37598 17.5738C7.03501 15.8903 8.71844 14.2557 10.3775 12.5723C11.1826 11.7428 12.0853 11.45 13.232 11.6208C14.6714 11.8403 16.1353 12.0111 17.5991 12.0843C18.0139 12.1087 18.5263 11.8891 18.819 11.5964C20.1853 10.2545 21.5271 8.91264 22.8202 7.49758C26.8702 3.00844 32.1157 1.15422 37.9467 0.544285C39.5081 0.373502 41.1184 0.324707 42.6798 0.324707C45.144 0.349105 46.681 1.76416 46.5346 4.17952C46.3638 7.27801 46.1199 10.4253 45.5099 13.475C44.7292 17.403 42.8018 20.843 39.8253 23.6244C38.3127 25.0394 36.8 26.4789 35.385 27.9671C35.0434 28.3331 34.8238 28.9918 34.8238 29.5042C34.8726 30.9192 35.2386 32.3343 35.2142 33.7493C35.1898 34.652 34.9214 35.7255 34.3603 36.3843C32.7256 38.2385 30.9202 39.9463 29.1392 41.6785C27.5777 43.1668 25.5527 42.7276 24.6988 40.727C23.9913 39.0436 23.2838 37.3602 22.6982 35.6279C22.3811 34.6764 21.8931 34.5057 20.9904 34.6764C18.8678 35.0912 16.7452 35.4084 14.6226 35.7743C12.0365 36.2379 10.6702 34.8472 11.1094 32.2367C11.5486 29.7481 11.9389 27.284 12.3537 24.6735ZM27.2362 39.9463C28.944 38.2141 30.4566 36.6282 32.0425 35.1156C32.628 34.5545 32.7256 34.0177 32.628 33.2858C32.4085 31.6024 32.1889 29.8945 32.0425 28.2111C32.0181 27.8207 32.2377 27.284 32.5304 26.9912C34.409 25.137 36.3365 23.3316 38.2395 21.5018C40.1669 19.672 41.5087 17.4762 42.387 14.9876C43.6069 11.4988 44.0217 7.88794 43.9485 4.20392C43.9241 3.25241 43.4849 2.88645 42.5822 2.93524C40.8744 3.03283 39.1666 3.00844 37.4831 3.22801C33.2136 3.76476 29.188 4.96024 26.0163 8.05873C23.9425 10.0349 22.0151 12.2063 19.9657 14.2557C19.6241 14.5973 19.0142 14.8656 18.5506 14.8168C16.8184 14.6949 15.0862 14.4265 13.354 14.2557C12.988 14.2313 12.4757 14.2557 12.2317 14.4753C10.4751 16.1343 8.74284 17.8665 6.91302 19.672C8.81603 20.4283 10.4995 21.1114 12.1829 21.7945C14.891 22.8924 15.2326 23.5512 14.7202 26.4301C14.3299 28.6503 13.9883 30.8948 13.5979 33.2126C14.0127 33.1882 14.2811 33.1882 14.5495 33.1638C16.672 32.7978 18.7946 32.4563 20.9172 32.0903C23.1618 31.6999 24.0401 32.1635 24.894 34.2617C25.6503 36.0427 26.3823 37.8969 27.2362 39.9463Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
<path
d="M14.3546 46.5335C14.0374 46.2895 13.5494 46.0944 13.4274 45.7772C13.2811 45.3868 13.2567 44.7037 13.4762 44.4597C15.3792 42.4591 17.3067 40.5073 19.3316 38.6531C19.6 38.4091 20.6003 38.5311 20.8931 38.8483C21.1859 39.1655 21.2591 40.1414 20.9907 40.4341C19.1609 42.4347 17.2091 44.3133 15.2573 46.2164C15.0865 46.3383 14.7449 46.3627 14.3546 46.5335Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
<path
d="M8.62068 26.6742C8.30351 27.1621 8.13273 27.5769 7.83996 27.8941C6.15653 29.6019 4.4731 31.2853 2.76527 32.9687C2.13094 33.6031 1.44781 33.8471 0.740278 33.1883C0.0327498 32.5296 0.22793 31.7977 0.862266 31.1633C2.61889 29.4067 4.32672 27.6257 6.13213 25.9423C6.4737 25.6251 7.18123 25.5275 7.64478 25.6251C8.01074 25.7227 8.25472 26.2838 8.62068 26.6742Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
<path
d="M9.79155 35.5791C11.0358 35.6767 11.6214 36.8478 10.8894 37.6529C9.03523 39.6291 7.10782 41.5321 5.10723 43.3863C4.83885 43.6547 3.76536 43.5571 3.54578 43.2643C3.25301 42.874 3.17982 41.8981 3.44819 41.5809C5.25361 39.6047 7.18102 37.7505 9.08402 35.8963C9.3036 35.6767 9.66957 35.6279 9.79155 35.5791Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
<path
d="M39.2637 12.8404C39.2393 15.6949 36.8971 18.0371 34.0426 18.0127C31.2125 17.9883 28.8459 15.6217 28.8459 12.7916C28.8459 9.91272 31.2613 7.52176 34.1402 7.57056C37.0191 7.64375 39.2881 9.98591 39.2637 12.8404ZM36.6532 12.816C36.6776 11.3766 35.6041 10.2543 34.1646 10.2299C32.7008 10.1811 31.5053 11.3278 31.4809 12.7672C31.4565 14.2067 32.6764 15.4022 34.1158 15.3778C35.5309 15.3534 36.6288 14.2555 36.6532 12.816Z"
fill="#fff"></path>
<path
d="M27.6749 30.1871C27.3822 30.5043 27.1138 31.0166 26.7478 31.1142C26.3087 31.2118 25.7231 31.041 25.3328 30.797C25.04 30.6018 24.918 30.1383 24.7472 29.7723C23.137 26.2835 20.5997 23.7217 17.0864 22.1359C16.8912 22.0139 16.6472 21.9407 16.4521 21.8187C15.7689 21.4284 15.403 20.8672 15.7445 20.1109C16.0861 19.3058 16.7204 19.135 17.55 19.4766C20.3313 20.6233 22.7954 22.2579 24.6252 24.6732C25.6499 26.0151 26.4063 27.5522 27.2846 29.016C27.431 29.3088 27.5042 29.6747 27.6749 30.1871Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
</g>
</svg>
</div>
<div class="count">
01
</div>
</div>
<div class="service-body">
<h3 class="service-title">
instant entry
</h3>
<p class="inner-text">
Lorem ipsum dolor sit amet consectetur adipiscing elit Ut et massa mi. Aliquam in
hendrerit urna.
</p>
<a href="./services.html">
<span>look more</span>
<span>
<i data-feather="arrow-up-right"></i>
</span>
</a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="service-card">
<div class="service-head py-4">
<div class="icon">
<svg width="47" height="47" viewBox="0 0 47 47" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_268_177)">
<path
d="M12.3537 24.6735C10.3043 23.8439 8.35248 23.0632 6.40068 22.2581C4.08291 21.3066 3.64375 19.3304 5.37598 17.5738C7.03501 15.8903 8.71844 14.2557 10.3775 12.5723C11.1826 11.7428 12.0853 11.45 13.232 11.6208C14.6714 11.8403 16.1353 12.0111 17.5991 12.0843C18.0139 12.1087 18.5263 11.8891 18.819 11.5964C20.1853 10.2545 21.5271 8.91264 22.8202 7.49758C26.8702 3.00844 32.1157 1.15422 37.9467 0.544285C39.5081 0.373502 41.1184 0.324707 42.6798 0.324707C45.144 0.349105 46.681 1.76416 46.5346 4.17952C46.3638 7.27801 46.1199 10.4253 45.5099 13.475C44.7292 17.403 42.8018 20.843 39.8253 23.6244C38.3127 25.0394 36.8 26.4789 35.385 27.9671C35.0434 28.3331 34.8238 28.9918 34.8238 29.5042C34.8726 30.9192 35.2386 32.3343 35.2142 33.7493C35.1898 34.652 34.9214 35.7255 34.3603 36.3843C32.7256 38.2385 30.9202 39.9463 29.1392 41.6785C27.5777 43.1668 25.5527 42.7276 24.6988 40.727C23.9913 39.0436 23.2838 37.3602 22.6982 35.6279C22.3811 34.6764 21.8931 34.5057 20.9904 34.6764C18.8678 35.0912 16.7452 35.4084 14.6226 35.7743C12.0365 36.2379 10.6702 34.8472 11.1094 32.2367C11.5486 29.7481 11.9389 27.284 12.3537 24.6735ZM27.2362 39.9463C28.944 38.2141 30.4566 36.6282 32.0425 35.1156C32.628 34.5545 32.7256 34.0177 32.628 33.2858C32.4085 31.6024 32.1889 29.8945 32.0425 28.2111C32.0181 27.8207 32.2377 27.284 32.5304 26.9912C34.409 25.137 36.3365 23.3316 38.2395 21.5018C40.1669 19.672 41.5087 17.4762 42.387 14.9876C43.6069 11.4988 44.0217 7.88794 43.9485 4.20392C43.9241 3.25241 43.4849 2.88645 42.5822 2.93524C40.8744 3.03283 39.1666 3.00844 37.4831 3.22801C33.2136 3.76476 29.188 4.96024 26.0163 8.05873C23.9425 10.0349 22.0151 12.2063 19.9657 14.2557C19.6241 14.5973 19.0142 14.8656 18.5506 14.8168C16.8184 14.6949 15.0862 14.4265 13.354 14.2557C12.988 14.2313 12.4757 14.2557 12.2317 14.4753C10.4751 16.1343 8.74284 17.8665 6.91302 19.672C8.81603 20.4283 10.4995 21.1114 12.1829 21.7945C14.891 22.8924 15.2326 23.5512 14.7202 26.4301C14.3299 28.6503 13.9883 30.8948 13.5979 33.2126C14.0127 33.1882 14.2811 33.1882 14.5495 33.1638C16.672 32.7978 18.7946 32.4563 20.9172 32.0903C23.1618 31.6999 24.0401 32.1635 24.894 34.2617C25.6503 36.0427 26.3823 37.8969 27.2362 39.9463Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
<path
d="M14.3546 46.5335C14.0374 46.2895 13.5494 46.0944 13.4274 45.7772C13.2811 45.3868 13.2567 44.7037 13.4762 44.4597C15.3792 42.4591 17.3067 40.5073 19.3316 38.6531C19.6 38.4091 20.6003 38.5311 20.8931 38.8483C21.1859 39.1655 21.2591 40.1414 20.9907 40.4341C19.1609 42.4347 17.2091 44.3133 15.2573 46.2164C15.0865 46.3383 14.7449 46.3627 14.3546 46.5335Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
<path
d="M8.62068 26.6742C8.30351 27.1621 8.13273 27.5769 7.83996 27.8941C6.15653 29.6019 4.4731 31.2853 2.76527 32.9687C2.13094 33.6031 1.44781 33.8471 0.740278 33.1883C0.0327498 32.5296 0.22793 31.7977 0.862266 31.1633C2.61889 29.4067 4.32672 27.6257 6.13213 25.9423C6.4737 25.6251 7.18123 25.5275 7.64478 25.6251C8.01074 25.7227 8.25472 26.2838 8.62068 26.6742Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
<path
d="M9.79155 35.5791C11.0358 35.6767 11.6214 36.8478 10.8894 37.6529C9.03523 39.6291 7.10782 41.5321 5.10723 43.3863C4.83885 43.6547 3.76536 43.5571 3.54578 43.2643C3.25301 42.874 3.17982 41.8981 3.44819 41.5809C5.25361 39.6047 7.18102 37.7505 9.08402 35.8963C9.3036 35.6767 9.66957 35.6279 9.79155 35.5791Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
<path
d="M39.2637 12.8404C39.2393 15.6949 36.8971 18.0371 34.0426 18.0127C31.2125 17.9883 28.8459 15.6217 28.8459 12.7916C28.8459 9.91272 31.2613 7.52176 34.1402 7.57056C37.0191 7.64375 39.2881 9.98591 39.2637 12.8404ZM36.6532 12.816C36.6776 11.3766 35.6041 10.2543 34.1646 10.2299C32.7008 10.1811 31.5053 11.3278 31.4809 12.7672C31.4565 14.2067 32.6764 15.4022 34.1158 15.3778C35.5309 15.3534 36.6288 14.2555 36.6532 12.816Z"
fill="#fff"></path>
<path
d="M27.6749 30.1871C27.3822 30.5043 27.1138 31.0166 26.7478 31.1142C26.3087 31.2118 25.7231 31.041 25.3328 30.797C25.04 30.6018 24.918 30.1383 24.7472 29.7723C23.137 26.2835 20.5997 23.7217 17.0864 22.1359C16.8912 22.0139 16.6472 21.9407 16.4521 21.8187C15.7689 21.4284 15.403 20.8672 15.7445 20.1109C16.0861 19.3058 16.7204 19.135 17.55 19.4766C20.3313 20.6233 22.7954 22.2579 24.6252 24.6732C25.6499 26.0151 26.4063 27.5522 27.2846 29.016C27.431 29.3088 27.5042 29.6747 27.6749 30.1871Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
</g>
</svg>
</div>
<div class="count">
01
</div>
</div>
<div class="service-body">
<h3 class="service-title">
instant entry
</h3>
<p class="inner-text">
Lorem ipsum dolor sit amet consectetur adipiscing elit Ut et massa mi. Aliquam in
hendrerit urna.
</p>
<a href="./services.html">
<span>look more</span>
<span>
<i data-feather="arrow-up-right"></i>
</span>
</a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="service-card">
<div class="service-head py-4">
<div class="icon">
<svg width="47" height="47" viewBox="0 0 47 47" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_268_177)">
<path
d="M12.3537 24.6735C10.3043 23.8439 8.35248 23.0632 6.40068 22.2581C4.08291 21.3066 3.64375 19.3304 5.37598 17.5738C7.03501 15.8903 8.71844 14.2557 10.3775 12.5723C11.1826 11.7428 12.0853 11.45 13.232 11.6208C14.6714 11.8403 16.1353 12.0111 17.5991 12.0843C18.0139 12.1087 18.5263 11.8891 18.819 11.5964C20.1853 10.2545 21.5271 8.91264 22.8202 7.49758C26.8702 3.00844 32.1157 1.15422 37.9467 0.544285C39.5081 0.373502 41.1184 0.324707 42.6798 0.324707C45.144 0.349105 46.681 1.76416 46.5346 4.17952C46.3638 7.27801 46.1199 10.4253 45.5099 13.475C44.7292 17.403 42.8018 20.843 39.8253 23.6244C38.3127 25.0394 36.8 26.4789 35.385 27.9671C35.0434 28.3331 34.8238 28.9918 34.8238 29.5042C34.8726 30.9192 35.2386 32.3343 35.2142 33.7493C35.1898 34.652 34.9214 35.7255 34.3603 36.3843C32.7256 38.2385 30.9202 39.9463 29.1392 41.6785C27.5777 43.1668 25.5527 42.7276 24.6988 40.727C23.9913 39.0436 23.2838 37.3602 22.6982 35.6279C22.3811 34.6764 21.8931 34.5057 20.9904 34.6764C18.8678 35.0912 16.7452 35.4084 14.6226 35.7743C12.0365 36.2379 10.6702 34.8472 11.1094 32.2367C11.5486 29.7481 11.9389 27.284 12.3537 24.6735ZM27.2362 39.9463C28.944 38.2141 30.4566 36.6282 32.0425 35.1156C32.628 34.5545 32.7256 34.0177 32.628 33.2858C32.4085 31.6024 32.1889 29.8945 32.0425 28.2111C32.0181 27.8207 32.2377 27.284 32.5304 26.9912C34.409 25.137 36.3365 23.3316 38.2395 21.5018C40.1669 19.672 41.5087 17.4762 42.387 14.9876C43.6069 11.4988 44.0217 7.88794 43.9485 4.20392C43.9241 3.25241 43.4849 2.88645 42.5822 2.93524C40.8744 3.03283 39.1666 3.00844 37.4831 3.22801C33.2136 3.76476 29.188 4.96024 26.0163 8.05873C23.9425 10.0349 22.0151 12.2063 19.9657 14.2557C19.6241 14.5973 19.0142 14.8656 18.5506 14.8168C16.8184 14.6949 15.0862 14.4265 13.354 14.2557C12.988 14.2313 12.4757 14.2557 12.2317 14.4753C10.4751 16.1343 8.74284 17.8665 6.91302 19.672C8.81603 20.4283 10.4995 21.1114 12.1829 21.7945C14.891 22.8924 15.2326 23.5512 14.7202 26.4301C14.3299 28.6503 13.9883 30.8948 13.5979 33.2126C14.0127 33.1882 14.2811 33.1882 14.5495 33.1638C16.672 32.7978 18.7946 32.4563 20.9172 32.0903C23.1618 31.6999 24.0401 32.1635 24.894 34.2617C25.6503 36.0427 26.3823 37.8969 27.2362 39.9463Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
<path
d="M14.3546 46.5335C14.0374 46.2895 13.5494 46.0944 13.4274 45.7772C13.2811 45.3868 13.2567 44.7037 13.4762 44.4597C15.3792 42.4591 17.3067 40.5073 19.3316 38.6531C19.6 38.4091 20.6003 38.5311 20.8931 38.8483C21.1859 39.1655 21.2591 40.1414 20.9907 40.4341C19.1609 42.4347 17.2091 44.3133 15.2573 46.2164C15.0865 46.3383 14.7449 46.3627 14.3546 46.5335Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
<path
d="M8.62068 26.6742C8.30351 27.1621 8.13273 27.5769 7.83996 27.8941C6.15653 29.6019 4.4731 31.2853 2.76527 32.9687C2.13094 33.6031 1.44781 33.8471 0.740278 33.1883C0.0327498 32.5296 0.22793 31.7977 0.862266 31.1633C2.61889 29.4067 4.32672 27.6257 6.13213 25.9423C6.4737 25.6251 7.18123 25.5275 7.64478 25.6251C8.01074 25.7227 8.25472 26.2838 8.62068 26.6742Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
<path
d="M9.79155 35.5791C11.0358 35.6767 11.6214 36.8478 10.8894 37.6529C9.03523 39.6291 7.10782 41.5321 5.10723 43.3863C4.83885 43.6547 3.76536 43.5571 3.54578 43.2643C3.25301 42.874 3.17982 41.8981 3.44819 41.5809C5.25361 39.6047 7.18102 37.7505 9.08402 35.8963C9.3036 35.6767 9.66957 35.6279 9.79155 35.5791Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
<path
d="M39.2637 12.8404C39.2393 15.6949 36.8971 18.0371 34.0426 18.0127C31.2125 17.9883 28.8459 15.6217 28.8459 12.7916C28.8459 9.91272 31.2613 7.52176 34.1402 7.57056C37.0191 7.64375 39.2881 9.98591 39.2637 12.8404ZM36.6532 12.816C36.6776 11.3766 35.6041 10.2543 34.1646 10.2299C32.7008 10.1811 31.5053 11.3278 31.4809 12.7672C31.4565 14.2067 32.6764 15.4022 34.1158 15.3778C35.5309 15.3534 36.6288 14.2555 36.6532 12.816Z"
fill="#fff"></path>
<path
d="M27.6749 30.1871C27.3822 30.5043 27.1138 31.0166 26.7478 31.1142C26.3087 31.2118 25.7231 31.041 25.3328 30.797C25.04 30.6018 24.918 30.1383 24.7472 29.7723C23.137 26.2835 20.5997 23.7217 17.0864 22.1359C16.8912 22.0139 16.6472 21.9407 16.4521 21.8187C15.7689 21.4284 15.403 20.8672 15.7445 20.1109C16.0861 19.3058 16.7204 19.135 17.55 19.4766C20.3313 20.6233 22.7954 22.2579 24.6252 24.6732C25.6499 26.0151 26.4063 27.5522 27.2846 29.016C27.431 29.3088 27.5042 29.6747 27.6749 30.1871Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
</g>
</svg>
</div>
<div class="count">
01
</div>
</div>
<div class="service-body">
<h3 class="service-title">
instant entry
</h3>
<p class="inner-text">
Lorem ipsum dolor sit amet consectetur adipiscing elit Ut et massa mi. Aliquam in
hendrerit urna.
</p>
<a href="./services.html">
<span>look more</span>
<span>
<i data-feather="arrow-up-right"></i>
</span>
</a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="service-card">
<div class="service-head py-4">
<div class="icon">
<svg width="47" height="47" viewBox="0 0 47 47" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_268_177)">
<path
d="M12.3537 24.6735C10.3043 23.8439 8.35248 23.0632 6.40068 22.2581C4.08291 21.3066 3.64375 19.3304 5.37598 17.5738C7.03501 15.8903 8.71844 14.2557 10.3775 12.5723C11.1826 11.7428 12.0853 11.45 13.232 11.6208C14.6714 11.8403 16.1353 12.0111 17.5991 12.0843C18.0139 12.1087 18.5263 11.8891 18.819 11.5964C20.1853 10.2545 21.5271 8.91264 22.8202 7.49758C26.8702 3.00844 32.1157 1.15422 37.9467 0.544285C39.5081 0.373502 41.1184 0.324707 42.6798 0.324707C45.144 0.349105 46.681 1.76416 46.5346 4.17952C46.3638 7.27801 46.1199 10.4253 45.5099 13.475C44.7292 17.403 42.8018 20.843 39.8253 23.6244C38.3127 25.0394 36.8 26.4789 35.385 27.9671C35.0434 28.3331 34.8238 28.9918 34.8238 29.5042C34.8726 30.9192 35.2386 32.3343 35.2142 33.7493C35.1898 34.652 34.9214 35.7255 34.3603 36.3843C32.7256 38.2385 30.9202 39.9463 29.1392 41.6785C27.5777 43.1668 25.5527 42.7276 24.6988 40.727C23.9913 39.0436 23.2838 37.3602 22.6982 35.6279C22.3811 34.6764 21.8931 34.5057 20.9904 34.6764C18.8678 35.0912 16.7452 35.4084 14.6226 35.7743C12.0365 36.2379 10.6702 34.8472 11.1094 32.2367C11.5486 29.7481 11.9389 27.284 12.3537 24.6735ZM27.2362 39.9463C28.944 38.2141 30.4566 36.6282 32.0425 35.1156C32.628 34.5545 32.7256 34.0177 32.628 33.2858C32.4085 31.6024 32.1889 29.8945 32.0425 28.2111C32.0181 27.8207 32.2377 27.284 32.5304 26.9912C34.409 25.137 36.3365 23.3316 38.2395 21.5018C40.1669 19.672 41.5087 17.4762 42.387 14.9876C43.6069 11.4988 44.0217 7.88794 43.9485 4.20392C43.9241 3.25241 43.4849 2.88645 42.5822 2.93524C40.8744 3.03283 39.1666 3.00844 37.4831 3.22801C33.2136 3.76476 29.188 4.96024 26.0163 8.05873C23.9425 10.0349 22.0151 12.2063 19.9657 14.2557C19.6241 14.5973 19.0142 14.8656 18.5506 14.8168C16.8184 14.6949 15.0862 14.4265 13.354 14.2557C12.988 14.2313 12.4757 14.2557 12.2317 14.4753C10.4751 16.1343 8.74284 17.8665 6.91302 19.672C8.81603 20.4283 10.4995 21.1114 12.1829 21.7945C14.891 22.8924 15.2326 23.5512 14.7202 26.4301C14.3299 28.6503 13.9883 30.8948 13.5979 33.2126C14.0127 33.1882 14.2811 33.1882 14.5495 33.1638C16.672 32.7978 18.7946 32.4563 20.9172 32.0903C23.1618 31.6999 24.0401 32.1635 24.894 34.2617C25.6503 36.0427 26.3823 37.8969 27.2362 39.9463Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
<path
d="M14.3546 46.5335C14.0374 46.2895 13.5494 46.0944 13.4274 45.7772C13.2811 45.3868 13.2567 44.7037 13.4762 44.4597C15.3792 42.4591 17.3067 40.5073 19.3316 38.6531C19.6 38.4091 20.6003 38.5311 20.8931 38.8483C21.1859 39.1655 21.2591 40.1414 20.9907 40.4341C19.1609 42.4347 17.2091 44.3133 15.2573 46.2164C15.0865 46.3383 14.7449 46.3627 14.3546 46.5335Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
<path
d="M8.62068 26.6742C8.30351 27.1621 8.13273 27.5769 7.83996 27.8941C6.15653 29.6019 4.4731 31.2853 2.76527 32.9687C2.13094 33.6031 1.44781 33.8471 0.740278 33.1883C0.0327498 32.5296 0.22793 31.7977 0.862266 31.1633C2.61889 29.4067 4.32672 27.6257 6.13213 25.9423C6.4737 25.6251 7.18123 25.5275 7.64478 25.6251C8.01074 25.7227 8.25472 26.2838 8.62068 26.6742Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
<path
d="M9.79155 35.5791C11.0358 35.6767 11.6214 36.8478 10.8894 37.6529C9.03523 39.6291 7.10782 41.5321 5.10723 43.3863C4.83885 43.6547 3.76536 43.5571 3.54578 43.2643C3.25301 42.874 3.17982 41.8981 3.44819 41.5809C5.25361 39.6047 7.18102 37.7505 9.08402 35.8963C9.3036 35.6767 9.66957 35.6279 9.79155 35.5791Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
<path
d="M39.2637 12.8404C39.2393 15.6949 36.8971 18.0371 34.0426 18.0127C31.2125 17.9883 28.8459 15.6217 28.8459 12.7916C28.8459 9.91272 31.2613 7.52176 34.1402 7.57056C37.0191 7.64375 39.2881 9.98591 39.2637 12.8404ZM36.6532 12.816C36.6776 11.3766 35.6041 10.2543 34.1646 10.2299C32.7008 10.1811 31.5053 11.3278 31.4809 12.7672C31.4565 14.2067 32.6764 15.4022 34.1158 15.3778C35.5309 15.3534 36.6288 14.2555 36.6532 12.816Z"
fill="#fff"></path>
<path
d="M27.6749 30.1871C27.3822 30.5043 27.1138 31.0166 26.7478 31.1142C26.3087 31.2118 25.7231 31.041 25.3328 30.797C25.04 30.6018 24.918 30.1383 24.7472 29.7723C23.137 26.2835 20.5997 23.7217 17.0864 22.1359C16.8912 22.0139 16.6472 21.9407 16.4521 21.8187C15.7689 21.4284 15.403 20.8672 15.7445 20.1109C16.0861 19.3058 16.7204 19.135 17.55 19.4766C20.3313 20.6233 22.7954 22.2579 24.6252 24.6732C25.6499 26.0151 26.4063 27.5522 27.2846 29.016C27.431 29.3088 27.5042 29.6747 27.6749 30.1871Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
</g>
</svg>
</div>
<div class="count">
01
</div>
</div>
<div class="service-body">
<h3 class="service-title">
instant entry
</h3>
<p class="inner-text">
Lorem ipsum dolor sit amet consectetur adipiscing elit Ut et massa mi. Aliquam in
hendrerit urna.
</p>
<a href="./services.html">
<span>look more</span>
<span>
<i data-feather="arrow-up-right"></i>
</span>
</a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="service-card">
<div class="service-head py-4">
<div class="icon">
<svg width="47" height="47" viewBox="0 0 47 47" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_268_177)">
<path
d="M12.3537 24.6735C10.3043 23.8439 8.35248 23.0632 6.40068 22.2581C4.08291 21.3066 3.64375 19.3304 5.37598 17.5738C7.03501 15.8903 8.71844 14.2557 10.3775 12.5723C11.1826 11.7428 12.0853 11.45 13.232 11.6208C14.6714 11.8403 16.1353 12.0111 17.5991 12.0843C18.0139 12.1087 18.5263 11.8891 18.819 11.5964C20.1853 10.2545 21.5271 8.91264 22.8202 7.49758C26.8702 3.00844 32.1157 1.15422 37.9467 0.544285C39.5081 0.373502 41.1184 0.324707 42.6798 0.324707C45.144 0.349105 46.681 1.76416 46.5346 4.17952C46.3638 7.27801 46.1199 10.4253 45.5099 13.475C44.7292 17.403 42.8018 20.843 39.8253 23.6244C38.3127 25.0394 36.8 26.4789 35.385 27.9671C35.0434 28.3331 34.8238 28.9918 34.8238 29.5042C34.8726 30.9192 35.2386 32.3343 35.2142 33.7493C35.1898 34.652 34.9214 35.7255 34.3603 36.3843C32.7256 38.2385 30.9202 39.9463 29.1392 41.6785C27.5777 43.1668 25.5527 42.7276 24.6988 40.727C23.9913 39.0436 23.2838 37.3602 22.6982 35.6279C22.3811 34.6764 21.8931 34.5057 20.9904 34.6764C18.8678 35.0912 16.7452 35.4084 14.6226 35.7743C12.0365 36.2379 10.6702 34.8472 11.1094 32.2367C11.5486 29.7481 11.9389 27.284 12.3537 24.6735ZM27.2362 39.9463C28.944 38.2141 30.4566 36.6282 32.0425 35.1156C32.628 34.5545 32.7256 34.0177 32.628 33.2858C32.4085 31.6024 32.1889 29.8945 32.0425 28.2111C32.0181 27.8207 32.2377 27.284 32.5304 26.9912C34.409 25.137 36.3365 23.3316 38.2395 21.5018C40.1669 19.672 41.5087 17.4762 42.387 14.9876C43.6069 11.4988 44.0217 7.88794 43.9485 4.20392C43.9241 3.25241 43.4849 2.88645 42.5822 2.93524C40.8744 3.03283 39.1666 3.00844 37.4831 3.22801C33.2136 3.76476 29.188 4.96024 26.0163 8.05873C23.9425 10.0349 22.0151 12.2063 19.9657 14.2557C19.6241 14.5973 19.0142 14.8656 18.5506 14.8168C16.8184 14.6949 15.0862 14.4265 13.354 14.2557C12.988 14.2313 12.4757 14.2557 12.2317 14.4753C10.4751 16.1343 8.74284 17.8665 6.91302 19.672C8.81603 20.4283 10.4995 21.1114 12.1829 21.7945C14.891 22.8924 15.2326 23.5512 14.7202 26.4301C14.3299 28.6503 13.9883 30.8948 13.5979 33.2126C14.0127 33.1882 14.2811 33.1882 14.5495 33.1638C16.672 32.7978 18.7946 32.4563 20.9172 32.0903C23.1618 31.6999 24.0401 32.1635 24.894 34.2617C25.6503 36.0427 26.3823 37.8969 27.2362 39.9463Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
<path
d="M14.3546 46.5335C14.0374 46.2895 13.5494 46.0944 13.4274 45.7772C13.2811 45.3868 13.2567 44.7037 13.4762 44.4597C15.3792 42.4591 17.3067 40.5073 19.3316 38.6531C19.6 38.4091 20.6003 38.5311 20.8931 38.8483C21.1859 39.1655 21.2591 40.1414 20.9907 40.4341C19.1609 42.4347 17.2091 44.3133 15.2573 46.2164C15.0865 46.3383 14.7449 46.3627 14.3546 46.5335Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
<path
d="M8.62068 26.6742C8.30351 27.1621 8.13273 27.5769 7.83996 27.8941C6.15653 29.6019 4.4731 31.2853 2.76527 32.9687C2.13094 33.6031 1.44781 33.8471 0.740278 33.1883C0.0327498 32.5296 0.22793 31.7977 0.862266 31.1633C2.61889 29.4067 4.32672 27.6257 6.13213 25.9423C6.4737 25.6251 7.18123 25.5275 7.64478 25.6251C8.01074 25.7227 8.25472 26.2838 8.62068 26.6742Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
<path
d="M9.79155 35.5791C11.0358 35.6767 11.6214 36.8478 10.8894 37.6529C9.03523 39.6291 7.10782 41.5321 5.10723 43.3863C4.83885 43.6547 3.76536 43.5571 3.54578 43.2643C3.25301 42.874 3.17982 41.8981 3.44819 41.5809C5.25361 39.6047 7.18102 37.7505 9.08402 35.8963C9.3036 35.6767 9.66957 35.6279 9.79155 35.5791Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
<path
d="M39.2637 12.8404C39.2393 15.6949 36.8971 18.0371 34.0426 18.0127C31.2125 17.9883 28.8459 15.6217 28.8459 12.7916C28.8459 9.91272 31.2613 7.52176 34.1402 7.57056C37.0191 7.64375 39.2881 9.98591 39.2637 12.8404ZM36.6532 12.816C36.6776 11.3766 35.6041 10.2543 34.1646 10.2299C32.7008 10.1811 31.5053 11.3278 31.4809 12.7672C31.4565 14.2067 32.6764 15.4022 34.1158 15.3778C35.5309 15.3534 36.6288 14.2555 36.6532 12.816Z"
fill="#fff"></path>
<path
d="M27.6749 30.1871C27.3822 30.5043 27.1138 31.0166 26.7478 31.1142C26.3087 31.2118 25.7231 31.041 25.3328 30.797C25.04 30.6018 24.918 30.1383 24.7472 29.7723C23.137 26.2835 20.5997 23.7217 17.0864 22.1359C16.8912 22.0139 16.6472 21.9407 16.4521 21.8187C15.7689 21.4284 15.403 20.8672 15.7445 20.1109C16.0861 19.3058 16.7204 19.135 17.55 19.4766C20.3313 20.6233 22.7954 22.2579 24.6252 24.6732C25.6499 26.0151 26.4063 27.5522 27.2846 29.016C27.431 29.3088 27.5042 29.6747 27.6749 30.1871Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
</g>
</svg>
</div>
<div class="count">
01
</div>
</div>
<div class="service-body">
<h3 class="service-title">
instant entry
</h3>
<p class="inner-text">
Lorem ipsum dolor sit amet consectetur adipiscing elit Ut et massa mi. Aliquam in
hendrerit urna.
</p>
<a href="./services.html">
<span>look more</span>
<span>
<i data-feather="arrow-up-right"></i>
</span>
</a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="service-card">
<div class="service-head py-4">
<div class="icon">
<svg width="47" height="47" viewBox="0 0 47 47" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_268_177)">
<path
d="M12.3537 24.6735C10.3043 23.8439 8.35248 23.0632 6.40068 22.2581C4.08291 21.3066 3.64375 19.3304 5.37598 17.5738C7.03501 15.8903 8.71844 14.2557 10.3775 12.5723C11.1826 11.7428 12.0853 11.45 13.232 11.6208C14.6714 11.8403 16.1353 12.0111 17.5991 12.0843C18.0139 12.1087 18.5263 11.8891 18.819 11.5964C20.1853 10.2545 21.5271 8.91264 22.8202 7.49758C26.8702 3.00844 32.1157 1.15422 37.9467 0.544285C39.5081 0.373502 41.1184 0.324707 42.6798 0.324707C45.144 0.349105 46.681 1.76416 46.5346 4.17952C46.3638 7.27801 46.1199 10.4253 45.5099 13.475C44.7292 17.403 42.8018 20.843 39.8253 23.6244C38.3127 25.0394 36.8 26.4789 35.385 27.9671C35.0434 28.3331 34.8238 28.9918 34.8238 29.5042C34.8726 30.9192 35.2386 32.3343 35.2142 33.7493C35.1898 34.652 34.9214 35.7255 34.3603 36.3843C32.7256 38.2385 30.9202 39.9463 29.1392 41.6785C27.5777 43.1668 25.5527 42.7276 24.6988 40.727C23.9913 39.0436 23.2838 37.3602 22.6982 35.6279C22.3811 34.6764 21.8931 34.5057 20.9904 34.6764C18.8678 35.0912 16.7452 35.4084 14.6226 35.7743C12.0365 36.2379 10.6702 34.8472 11.1094 32.2367C11.5486 29.7481 11.9389 27.284 12.3537 24.6735ZM27.2362 39.9463C28.944 38.2141 30.4566 36.6282 32.0425 35.1156C32.628 34.5545 32.7256 34.0177 32.628 33.2858C32.4085 31.6024 32.1889 29.8945 32.0425 28.2111C32.0181 27.8207 32.2377 27.284 32.5304 26.9912C34.409 25.137 36.3365 23.3316 38.2395 21.5018C40.1669 19.672 41.5087 17.4762 42.387 14.9876C43.6069 11.4988 44.0217 7.88794 43.9485 4.20392C43.9241 3.25241 43.4849 2.88645 42.5822 2.93524C40.8744 3.03283 39.1666 3.00844 37.4831 3.22801C33.2136 3.76476 29.188 4.96024 26.0163 8.05873C23.9425 10.0349 22.0151 12.2063 19.9657 14.2557C19.6241 14.5973 19.0142 14.8656 18.5506 14.8168C16.8184 14.6949 15.0862 14.4265 13.354 14.2557C12.988 14.2313 12.4757 14.2557 12.2317 14.4753C10.4751 16.1343 8.74284 17.8665 6.91302 19.672C8.81603 20.4283 10.4995 21.1114 12.1829 21.7945C14.891 22.8924 15.2326 23.5512 14.7202 26.4301C14.3299 28.6503 13.9883 30.8948 13.5979 33.2126C14.0127 33.1882 14.2811 33.1882 14.5495 33.1638C16.672 32.7978 18.7946 32.4563 20.9172 32.0903C23.1618 31.6999 24.0401 32.1635 24.894 34.2617C25.6503 36.0427 26.3823 37.8969 27.2362 39.9463Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
<path
d="M14.3546 46.5335C14.0374 46.2895 13.5494 46.0944 13.4274 45.7772C13.2811 45.3868 13.2567 44.7037 13.4762 44.4597C15.3792 42.4591 17.3067 40.5073 19.3316 38.6531C19.6 38.4091 20.6003 38.5311 20.8931 38.8483C21.1859 39.1655 21.2591 40.1414 20.9907 40.4341C19.1609 42.4347 17.2091 44.3133 15.2573 46.2164C15.0865 46.3383 14.7449 46.3627 14.3546 46.5335Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
<path
d="M8.62068 26.6742C8.30351 27.1621 8.13273 27.5769 7.83996 27.8941C6.15653 29.6019 4.4731 31.2853 2.76527 32.9687C2.13094 33.6031 1.44781 33.8471 0.740278 33.1883C0.0327498 32.5296 0.22793 31.7977 0.862266 31.1633C2.61889 29.4067 4.32672 27.6257 6.13213 25.9423C6.4737 25.6251 7.18123 25.5275 7.64478 25.6251C8.01074 25.7227 8.25472 26.2838 8.62068 26.6742Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
<path
d="M9.79155 35.5791C11.0358 35.6767 11.6214 36.8478 10.8894 37.6529C9.03523 39.6291 7.10782 41.5321 5.10723 43.3863C4.83885 43.6547 3.76536 43.5571 3.54578 43.2643C3.25301 42.874 3.17982 41.8981 3.44819 41.5809C5.25361 39.6047 7.18102 37.7505 9.08402 35.8963C9.3036 35.6767 9.66957 35.6279 9.79155 35.5791Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
<path
d="M39.2637 12.8404C39.2393 15.6949 36.8971 18.0371 34.0426 18.0127C31.2125 17.9883 28.8459 15.6217 28.8459 12.7916C28.8459 9.91272 31.2613 7.52176 34.1402 7.57056C37.0191 7.64375 39.2881 9.98591 39.2637 12.8404ZM36.6532 12.816C36.6776 11.3766 35.6041 10.2543 34.1646 10.2299C32.7008 10.1811 31.5053 11.3278 31.4809 12.7672C31.4565 14.2067 32.6764 15.4022 34.1158 15.3778C35.5309 15.3534 36.6288 14.2555 36.6532 12.816Z"
fill="#fff"></path>
<path
d="M27.6749 30.1871C27.3822 30.5043 27.1138 31.0166 26.7478 31.1142C26.3087 31.2118 25.7231 31.041 25.3328 30.797C25.04 30.6018 24.918 30.1383 24.7472 29.7723C23.137 26.2835 20.5997 23.7217 17.0864 22.1359C16.8912 22.0139 16.6472 21.9407 16.4521 21.8187C15.7689 21.4284 15.403 20.8672 15.7445 20.1109C16.0861 19.3058 16.7204 19.135 17.55 19.4766C20.3313 20.6233 22.7954 22.2579 24.6252 24.6732C25.6499 26.0151 26.4063 27.5522 27.2846 29.016C27.431 29.3088 27.5042 29.6747 27.6749 30.1871Z"
fill="#fff" stroke="currentColor" stroke-width="0.486667">
</path>
</g>
</svg>
</div>
<div class="count">
01
</div>
</div>
<div class="service-body">
<h3 class="service-title">
instant entry
</h3>
<p class="inner-text">
Lorem ipsum dolor sit amet consectetur adipiscing elit Ut et massa mi. Aliquam in
hendrerit urna.
</p>
<a href="./services.html">
<span>look more</span>
<span>
<i data-feather="arrow-up-right"></i>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Services end -->
<!-- Projects start -->
<section class="home-projects py-5">
<div class="container">
<div class="section-title-box">
<div class="row align-items-center justify-content-between">
<div class="col-12 col-lg-6">
<h4 class="subtitle">
our projects
</h4>
<h2 class="section-title">
Unlocking Potential Explore Our Projects
</h2>
</div>
<div class="col-12 col-lg-6">
<div class="d-flex mt-3">
<a href="./projects.html" class="btn btn-main dark ms-auto">
more projects
</a>
</div>
</div>
</div>
</div>
</div>
<div class="swiper homeProjectsSwiper">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="project-card">
<div class="project-img">
<a href="./portfolio-detail.html">
<img src="./assets/images/projects/project-02.png" alt="">
</a>
</div>
<div class="card-body">
<a href="./portfolio-detail.html" class="project-title">
<h3>
TechVantage solutions
</h3>
<i data-feather="arrow-up-right"></i>
</a>
<div class="project-prices">
<span class="price new-price">$ 65.00 USD</span>
<span class="price old-price">$ 85.00 USD</span>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="project-card">
<div class="project-img">
<a href="./portfolio-detail.html">
<img src="./assets/images/projects/project-01.png" alt="">
</a>
</div>
<div class="card-body">
<a href="./portfolio-detail.html" class="project-title">
<h3>
TechVantage solutions
</h3>
<i data-feather="arrow-up-right"></i>
</a>
<div class="project-prices">
<span class="price new-price">$ 65.00 USD</span>
<span class="price old-price">$ 85.00 USD</span>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="project-card">
<div class="project-img">
<a href="./portfolio-detail.html">
<img src="./assets/images/projects/project-01.png" alt="">
</a>
</div>
<div class="card-body">
<a href="./portfolio-detail.html" class="project-title">
<h3>
TechVantage solutions
</h3>
<i data-feather="arrow-up-right"></i>
</a>
<div class="project-prices">
<span class="price new-price">$ 65.00 USD</span>
<span class="price old-price">$ 85.00 USD</span>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="project-card">
<div class="project-img">
<a href="./portfolio-detail.html">
<img src="./assets/images/projects/project-01.png" alt="">
</a>
</div>
<div class="card-body">
<a href="./portfolio-detail.html" class="project-title">
<h3>
TechVantage solutions
</h3>
<i data-feather="arrow-up-right"></i>
</a>
<div class="project-prices">
<span class="price new-price">$ 65.00 USD</span>
<span class="price old-price">$ 85.00 USD</span>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="project-card">
<div class="project-img">
<a href="./portfolio-detail.html">
<img src="./assets/images/projects/project-01.png" alt="">
</a>
</div>
<div class="card-body">
<a href="./portfolio-detail.html" class="project-title">
<h3>
TechVantage solutions
</h3>
<i data-feather="arrow-up-right"></i>
</a>
<div class="project-prices">
<span class="price new-price">$ 65.00 USD</span>
<span class="price old-price">$ 85.00 USD</span>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="project-card">
<div class="project-img">
<a href="./portfolio-detail.html">
<img src="./assets/images/projects/project-01.png" alt="">
</a>
</div>
<div class="card-body">
<a href="./portfolio-detail.html" class="project-title">
<h3>
TechVantage solutions
</h3>
<i data-feather="arrow-up-right"></i>
</a>
<div class="project-prices">
<span class="price new-price">$ 65.00 USD</span>
<span class="price old-price">$ 85.00 USD</span>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="project-card">
<div class="project-img">
<a href="./portfolio-detail.html">
<img src="./assets/images/projects/project-01.png" alt="">
</a>
</div>
<div class="card-body">
<a href="./portfolio-detail.html" class="project-title">
<h3>
TechVantage solutions
</h3>
<i data-feather="arrow-up-right"></i>
</a>
<div class="project-prices">
<span class="price new-price">$ 65.00 USD</span>
<span class="price old-price">$ 85.00 USD</span>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="project-card">
<div class="project-img">
<a href="./portfolio-detail.html">
<img src="./assets/images/projects/project-01.png" alt="">
</a>
</div>
<div class="card-body">
<a href="./portfolio-detail.html" class="project-title">
<h3>
TechVantage solutions
</h3>
<i data-feather="arrow-up-right"></i>
</a>
<div class="project-prices">
<span class="price new-price">$ 65.00 USD</span>
<span class="price old-price">$ 85.00 USD</span>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="project-card">
<div class="project-img">
<a href="./portfolio-detail.html">
<img src="./assets/images/projects/project-01.png" alt="">
</a>
</div>
<div class="card-body">
<a href="./portfolio-detail.html" class="project-title">
<h3>
TechVantage solutions
</h3>
<i data-feather="arrow-up-right"></i>
</a>
<div class="project-prices">
<span class="price new-price">$ 65.00 USD</span>
<span class="price old-price">$ 85.00 USD</span>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="project-card">
<div class="project-img">
<a href="./portfolio-detail.html">
<img src="./assets/images/projects/project-01.png" alt="">
</a>
</div>
<div class="card-body">
<a href="./portfolio-detail.html" class="project-title">
<h3>
TechVantage solutions
</h3>
<i data-feather="arrow-up-right"></i>
</a>
<div class="project-prices">
<span class="price new-price">$ 65.00 USD</span>
<span class="price old-price">$ 85.00 USD</span>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-buttons">
<div class="swiper-button-prev"></div>
<div class="swiper-button-next"></div>
</div>
</div>
</section>
<!-- Projects end -->
<!-- Preferences start -->
<section class="home-preferences pt-0 pb-5 pt-lg-5">
<div class="container">
<div class="row align-items-center">
<div class="col-12 col-lg-6">
<div class="section-title-box">
<h4 class="subtitle">
why choos us
</h4>
<h2 class="section-title">
Elevate Your IT Experience with Our Expertise
</h2>
</div>
<ul class="preferences-list">
<li>
<div class="icon">
<i data-feather="award" style="color: #fff"></i>
</div>
<div class="content">
<h3 class="title">
Software business
</h3>
<p class="inner-text">
Lorem ipsum dolor sit amet consectetur adipiscing elit Ut et massa mi adipiscing
elit ololpe.
</p>
</div>
</li>
<li>
<div class="icon">
<i data-feather="award" style="color: #fff"></i>
</div>
<div class="content">
<h3 class="title">
Software business
</h3>
<p class="inner-text">
Lorem ipsum dolor sit amet consectetur adipiscing elit Ut et massa mi adipiscing
elit ololpe.
</p>
</div>
</li>
<li>
<a href="#" class="btn btn-main">learn more</a>
</li>
</ul>
</div>
<div class="col-12 col-lg-6">
<div class="section-img">
<img src="./assets/images/preferences/preferences-01.png" alt="">
</div>
</div>
</div>
</div>
</section>
<!-- Preferences end -->
<!-- Partners start -->
<section class="home_partners py-0 py-lg-5">
<div class="container">
<div class="section-title-box border-0 text-center">
<h4 class="subtitle mx-auto">
MEET OUR TRUSTED CLIENTS
</h4>
</div>
<div class="swiper partnersSwiper">
<div class="swiper-wrapper">