-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcases-details-2.html
1022 lines (980 loc) · 94.6 KB
/
cases-details-2.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
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>
<!-- This site was created in Webflow. https://webflow.com --><!-- Last Published: Tue Jul 16 2024 23:47:11 GMT+0000 (Coordinated Universal Time) -->
<html data-wf-domain="markething.webflow.io" data-wf-page="6660671c45e6a3bfeade6559"
data-wf-site="664898738f1fcda8f023ed65" lang="en" data-wf-collection="6660671b45e6a3bfeade6551"
data-wf-item-slug="yamato">
<head>
<meta charset="utf-8" />
<title>Top Edge MediaWorks – Best Hair Transplant & Cosmetic Center</title>
<meta name="description" content="Top Edge MediaWorks is a leading digital marketing agency Aurangabad Chh.sambhajinagar specializing in SEO, social media marketing,social media management, influencer marketing,performance marketing and video marketing. Recognized as one of the best digital marketing agencies, we deliver innovative strategies that enhance online visibility, drive engagement, and boost sales. From Facebook Ads to website design software development website development in Aurangabad , comprehensive digital marketing services, our team crafts customized solutions to meet your brand's unique needs. With a presence in Mumbai , aurangabad and across India, Top Edge MediaWorks is the top marketing agency in Aurangabad, the top digital marketing agency in Aurangabad, the top marketing agency in Sambhajinagar, the top advertising agency in Aurangabad and go-to marketing agency for businesses seeking growth and digital success. Increase Digital Presence with us.
Top Edge MediaWorks is the top marketing agency in Aurangabad, the top digital marketing agency in Aurangabad, website developer , software developer.">
<meta
content="Top Edge MediaWorks is a leading digital marketing agency Aurangabad Chh.sambhajinagar specializing in SEO, social media marketing,social media management, influencer marketing,performance marketing and video marketing. Recognized as one of the best digital marketing agencies, we deliver innovative strategies that enhance online visibility, drive engagement, and boost sales. From Facebook Ads to website design software development website development in Aurangabad , comprehensive digital marketing services, our team crafts customized solutions to meet your brand's unique needs. With a presence in Mumbai , aurangabad and across India, Top Edge MediaWorks is the top marketing agency in Aurangabad, the top digital marketing agency in Aurangabad, the top marketing agency in Sambhajinagar, the top advertising agency in Aurangabad and go-to marketing agency for businesses seeking growth and digital success. Increase Digital Presence with us.
Top Edge MediaWorks is the top marketing agency in Aurangabad, the top digital marketing agency in Aurangabad, website developer , software developer."
name="description" />
<meta content="Top Edge MediaWorks – Best Hair Transplant & Cosmetic Center" property="og:title" />
<meta
content="Top Edge MediaWorks is a leading digital marketing agency Aurangabad Chh.sambhajinagar specializing in SEO, social media marketing,social media management, influencer marketing,performance marketing and video marketing. Recognized as one of the best digital marketing agencies, we deliver innovative strategies that enhance online visibility, drive engagement, and boost sales. From Facebook Ads to website design software development website development in Aurangabad , comprehensive digital marketing services, our team crafts customized solutions to meet your brand's unique needs. With a presence in Mumbai , aurangabad and across India, Top Edge MediaWorks is the top marketing agency in Aurangabad, the top digital marketing agency in Aurangabad, the top marketing agency in Sambhajinagar, the top advertising agency in Aurangabad and go-to marketing agency for businesses seeking growth and digital success. Increase Digital Presence with us.
Top Edge MediaWorks is the top marketing agency in Aurangabad, the top digital marketing agency in Aurangabad, website developer , software developer."
property="og:description" />
<meta
content="./sslogo.png"
property="og:image" />
<meta content="Top Edge MediaWorks – Best Hair Transplant & Cosmetic Center" property="twitter:title" />
<meta
content="Top Edge MediaWorks is a leading digital marketing agency Aurangabad Chh.sambhajinagar specializing in SEO, social media marketing,social media management, influencer marketing,performance marketing and video marketing. Recognized as one of the best digital marketing agencies, we deliver innovative strategies that enhance online visibility, drive engagement, and boost sales. From Facebook Ads to website design software development website development in Aurangabad , comprehensive digital marketing services, our team crafts customized solutions to meet your brand's unique needs. With a presence in Mumbai , aurangabad and across India, Top Edge MediaWorks is the top marketing agency in Aurangabad, the top digital marketing agency in Aurangabad, the top marketing agency in Sambhajinagar, the top advertising agency in Aurangabad and go-to marketing agency for businesses seeking growth and digital success. Increase Digital Presence with us.
Top Edge MediaWorks is the top marketing agency in Aurangabad, the top digital marketing agency in Aurangabad, website developer , software developer."
property="twitter:description" />
<meta
content="./sslogo.png"
property="twitter:image" />
<meta property="og:type" content="website" />
<meta content="summary_large_image" name="twitter:card" />
<meta content="width=device-width, initial-scale=1" name="viewport" />
<meta content="Webflow" name="generator" />
<link rel="shortcut icon" href="sslogo.png" type="image/x-icon">
<link href="./markething.webflow.d9943c7a0.css"
rel="stylesheet" type="text/css" />
<script
type="text/javascript">!function (o, c) { var n = c.documentElement, t = " w-mod-"; n.className += t + "js", ("ontouchstart" in o || o.DocumentTouch && c instanceof DocumentTouch) && (n.className += t + "touch") }(window, document);</script>
<link
href="sslogo.png"
rel="shortcut icon" type="image/x-icon" />
<link
href="sslogo.png"
rel="apple-touch-icon" />
<script
type="text/javascript">window.__WEBFLOW_CURRENCY_SETTINGS = { "currencyCode": "USD", "symbol": "$", "decimal": ".", "fractionDigits": 2, "group": ",", "template": "{{wf {\"path\":\"symbol\",\"type\":\"PlainText\"} }} {{wf {\"path\":\"amount\",\"type\":\"CommercePrice\"} }} {{wf {\"path\":\"currencyCode\",\"type\":\"PlainText\"} }}", "hideDecimalForWholeNumbers": false };</script>
<style>
.slider {
position: relative;
width: 100%;
max-width:1000px; /* Adjust based on your design */
overflow: hidden;
}
.slides {
display: flex;
transition: transform 0.5s ease-in-out;
}
.slide {
display: flex;
justify-content: space-between;
min-width: 100%; /* Takes up full width of the slider */
box-sizing: border-box;
align-items: center;
}
.slide img{
width: 1000px; /* Adjust the width to fit 2 images per slide */
border: 2px solid #fff; /* Optional: Add a border between images */
height: 350px;
}
.prev, .next {
position: absolute;
top: 50%;
transform: translateY(-50%);
background-color: rgba(0, 0, 0, 0.5);
color: white;
border: none;
padding: 16px;
cursor: pointer;
}
.prev {
left: 0;
}
.next {
right: 0;
}
</style>
</head>
<body>
<div class="page-wrapper">
<div id="top" class="topbar">
<div class="padding-global">
<div class="container-large">
<div class="top-content">
<div class="topbar-container"><a href="/"
id="w-node-_9493f00e-ac0a-6d00-a696-69b6897ac397-897ac392"
data-w-id="9493f00e-ac0a-6d00-a696-69b6897ac397" class="brand-link w-inline-block">
<div id="w-node-_9493f00e-ac0a-6d00-a696-69b6897ac398-897ac392" class="brand-wrapper">
<div id="w-node-_9493f00e-ac0a-6d00-a696-69b6897ac399-897ac392" class="logo-block">
<div href="#" class="logo-wrapper">
<div class="logo-flex">
<img src="./temw website/logo.png" loading="lazy"
alt="Alternate Logo – Markething Webflow Template" >
</div>
</div>
</div>
</div>
</a>
<div data-animation="default" class="navbar w-nav" data-easing2="ease" data-easing="ease"
data-collapse="all" data-w-id="9493f00e-ac0a-6d00-a696-69b6897ac3a1" role="banner"
data-duration="0" id="w-node-_9493f00e-ac0a-6d00-a696-69b6897ac3a1-897ac392">
<div class="nav-component-item w-container">
<nav role="navigation" class="nav-menu w-nav-menu">
<div class="bg-nav"></div>
<div class="nav-wrapper">
<div class="nav-link-overflow"><a href="/"
data-w-id="9493f00e-ac0a-6d00-a696-69b6897ac3a7"
class="nav-link w-inline-block">
<div class="nav-link-inner-flex">
<div class="nav-arrow">
<div class="nav-arrow-icon _01 w-embed"><svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24" fill="currentColor">
<path
d="M16.0037 9.41421L7.39712 18.0208L5.98291 16.6066L14.5895 8H7.00373V6H18.0037V17H16.0037V9.41421Z">
</path>
</svg></div>
<div class="nav-arrow-icon _02 w-embed"><svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24" fill="currentColor">
<path
d="M16.0037 9.41421L7.39712 18.0208L5.98291 16.6066L14.5895 8H7.00373V6H18.0037V17H16.0037V9.41421Z">
</path>
</svg></div>
</div>
<div class="nav-text-wrapper">
<div class="nav-text">Home</div>
<div class="nav-text">Home</div>
</div>
</div>
<div class="underline-nav-link">
<div class="underline-wrapper">
<div class="underline-button"></div>
<div class="middle-underline"></div>
<div class="underline-button is-grey"></div>
</div>
</div>
</a></div>
<div class="nav-link-overflow"><a href="/about"
data-w-id="9493f00e-ac0a-6d00-a696-69b6897ac3b7"
class="nav-link w-inline-block">
<div class="nav-link-inner-flex">
<div class="nav-arrow">
<div class="nav-arrow-icon _01 w-embed"><svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24" fill="currentColor">
<path
d="M16.0037 9.41421L7.39712 18.0208L5.98291 16.6066L14.5895 8H7.00373V6H18.0037V17H16.0037V9.41421Z">
</path>
</svg></div>
<div class="nav-arrow-icon _02 w-embed"><svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24" fill="currentColor">
<path
d="M16.0037 9.41421L7.39712 18.0208L5.98291 16.6066L14.5895 8H7.00373V6H18.0037V17H16.0037V9.41421Z">
</path>
</svg></div>
</div>
<div class="nav-text-wrapper">
<div class="nav-text">About</div>
<div class="nav-text">About</div>
</div>
</div>
<div class="underline-nav-link">
<div class="underline-wrapper">
<div class="underline-button"></div>
<div class="middle-underline"></div>
<div class="underline-button is-grey"></div>
</div>
</div>
</a></div>
<div class="nav-link-overflow"><a href="/services"
data-w-id="9493f00e-ac0a-6d00-a696-69b6897ac3c7"
class="nav-link w-inline-block">
<div class="nav-link-inner-flex">
<div class="nav-arrow">
<div class="nav-arrow-icon _01 w-embed"><svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24" fill="currentColor">
<path
d="M16.0037 9.41421L7.39712 18.0208L5.98291 16.6066L14.5895 8H7.00373V6H18.0037V17H16.0037V9.41421Z">
</path>
</svg></div>
<div class="nav-arrow-icon _02 w-embed"><svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24" fill="currentColor">
<path
d="M16.0037 9.41421L7.39712 18.0208L5.98291 16.6066L14.5895 8H7.00373V6H18.0037V17H16.0037V9.41421Z">
</path>
</svg></div>
</div>
<div class="nav-text-wrapper">
<div class="nav-text">Services</div>
<div class="nav-text">Services</div>
</div>
</div>
<div class="underline-nav-link">
<div class="underline-wrapper">
<div class="underline-button"></div>
<div class="middle-underline"></div>
<div class="underline-button is-grey"></div>
</div>
</div>
</a></div>
<div class="nav-link-overflow"><a href="/case-studies"
data-w-id="9493f00e-ac0a-6d00-a696-69b6897ac3d7"
class="nav-link w-inline-block">
<div class="nav-link-inner-flex">
<div class="nav-arrow">
<div class="nav-arrow-icon _01 w-embed"><svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24" fill="currentColor">
<path
d="M16.0037 9.41421L7.39712 18.0208L5.98291 16.6066L14.5895 8H7.00373V6H18.0037V17H16.0037V9.41421Z">
</path>
</svg></div>
<div class="nav-arrow-icon _02 w-embed"><svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24" fill="currentColor">
<path
d="M16.0037 9.41421L7.39712 18.0208L5.98291 16.6066L14.5895 8H7.00373V6H18.0037V17H16.0037V9.41421Z">
</path>
</svg></div>
</div>
<div class="nav-text-wrapper">
<div class="nav-text">Cases</div>
<div class="nav-text">Cases</div>
</div>
</div>
<div class="underline-nav-link">
<div class="underline-wrapper">
<div class="underline-button"></div>
<div class="middle-underline"></div>
<div class="underline-button is-grey"></div>
</div>
</div>
</a></div>
<div class="nav-link-overflow"><a href="/contact"
data-w-id="9493f00e-ac0a-6d00-a696-69b6897ac3e7"
class="nav-link w-inline-block">
<div class="nav-link-inner-flex">
<div class="nav-arrow">
<div class="nav-arrow-icon _01 w-embed"><svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24" fill="currentColor">
<path
d="M16.0037 9.41421L7.39712 18.0208L5.98291 16.6066L14.5895 8H7.00373V6H18.0037V17H16.0037V9.41421Z">
</path>
</svg></div>
<div class="nav-arrow-icon _02 w-embed"><svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24" fill="currentColor">
<path
d="M16.0037 9.41421L7.39712 18.0208L5.98291 16.6066L14.5895 8H7.00373V6H18.0037V17H16.0037V9.41421Z">
</path>
</svg></div>
</div>
<div class="nav-text-wrapper">
<div class="nav-text">Contact</div>
<div class="nav-text">Contact</div>
</div>
</div>
<div class="underline-nav-link">
<div class="underline-wrapper">
<div class="underline-button"></div>
<div class="middle-underline"></div>
<div class="underline-button is-grey"></div>
</div>
</div>
</a></div>
<div class="nav-link-overflow"><a href="./packages.html"
data-w-id="9493f00e-ac0a-6d00-a696-69b6897ac3e7"
class="nav-link w-inline-block"
style="transform: translate3d(0px, 110%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg); transform-style: preserve-3d;">
<div class="nav-link-inner-flex">
<div class="nav-arrow">
<div class="nav-arrow-icon _01 w-embed"
style="transform: translate3d(0rem, 0rem, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg); transform-style: preserve-3d;">
<svg xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24" fill="currentColor">
<path
d="M16.0037 9.41421L7.39712 18.0208L5.98291 16.6066L14.5895 8H7.00373V6H18.0037V17H16.0037V9.41421Z">
</path>
</svg>
</div>
<div class="nav-arrow-icon _02 w-embed"
style="transform: translate3d(-1.5rem, 0rem, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg); transform-style: preserve-3d;">
<svg xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24" fill="currentColor">
<path
d="M16.0037 9.41421L7.39712 18.0208L5.98291 16.6066L14.5895 8H7.00373V6H18.0037V17H16.0037V9.41421Z">
</path>
</svg>
</div>
</div>
<div class="nav-text-wrapper">
<div class="nav-text"
style="transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg); transform-style: preserve-3d;">
Packages</div>
<div class="nav-text"
style="transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg); transform-style: preserve-3d;">
Packages</div>
</div>
</div>
<div class="underline-nav-link">
<div class="underline-wrapper"
style="transform: translate3d(0%, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg); transform-style: preserve-3d;">
<div class="underline-button"></div>
<div class="middle-underline"></div>
<div class="underline-button is-grey"></div>
</div>
</div>
</a></div>
<div class="nav-link-overflow">
<a href="./gallery.html" data-w-id="9493f00e-ac0a-6d00-a696-69b6897ac3e7"
class="nav-link w-inline-block" style="
transform: translate3d(0px, 110%, 0px)
scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg)
rotateZ(0deg) skew(0deg, 0deg);
transform-style: preserve-3d;
">
<div class="nav-link-inner-flex">
<div class="nav-arrow">
<div class="nav-arrow-icon _01 w-embed" style="
transform: translate3d(0rem, 0rem, 0px)
scale3d(1, 1, 1) rotateX(0deg)
rotateY(0deg) rotateZ(0deg)
skew(0deg, 0deg);
transform-style: preserve-3d;
">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
<path
d="M16.0037 9.41421L7.39712 18.0208L5.98291 16.6066L14.5895 8H7.00373V6H18.0037V17H16.0037V9.41421Z">
</path>
</svg>
</div>
<div class="nav-arrow-icon _02 w-embed" style="
transform: translate3d(-1.5rem, 0rem, 0px)
scale3d(1, 1, 1) rotateX(0deg)
rotateY(0deg) rotateZ(0deg)
skew(0deg, 0deg);
transform-style: preserve-3d;
">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
<path
d="M16.0037 9.41421L7.39712 18.0208L5.98291 16.6066L14.5895 8H7.00373V6H18.0037V17H16.0037V9.41421Z">
</path>
</svg>
</div>
</div>
<div class="nav-text-wrapper">
<div class="nav-text" style="
transform: translate3d(0px, 0%, 0px)
scale3d(1, 1, 1) rotateX(0deg)
rotateY(0deg) rotateZ(0deg)
skew(0deg, 0deg);
transform-style: preserve-3d;
">
Gallery
</div>
<div class="nav-text" style="
transform: translate3d(0px, 0%, 0px)
scale3d(1, 1, 1) rotateX(0deg)
rotateY(0deg) rotateZ(0deg)
skew(0deg, 0deg);
transform-style: preserve-3d;
">
Gallery
</div>
</div>
</div>
<div class="underline-nav-link">
<div class="underline-wrapper" style="
transform: translate3d(0%, 0px, 0px)
scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg)
rotateZ(0deg) skew(0deg, 0deg);
transform-style: preserve-3d;
">
<div class="underline-button"></div>
<div class="middle-underline"></div>
<div class="underline-button is-grey"></div>
</div>
</div>
</a>
</div>
<!-- <div class="nav-social-media-wrapper"><a href="https://x.com/"
data-w-id="9493f00e-ac0a-6d00-a696-69b6897ac3f7" target="_blank"
class="main-button w-inline-block">
<div class="button-inner-flex">
<div class="button-text-wrap">
<div class="button-part-01">
<div class="text-button">Twitter - X</div>
<div class="text-button">Twitter - X</div>
</div>
</div>
</div>
<div class="underline-wrapper">
<div class="underline-button"></div>
<div class="middle-underline"></div>
<div class="underline-button is-grey"></div>
</div>
</a><a href="https://www.instagram.com/"
data-w-id="9493f00e-ac0a-6d00-a696-69b6897ac403" target="_blank"
class="main-button w-inline-block">
<div class="button-inner-flex">
<div class="button-text-wrap">
<div class="button-part-01">
<div class="text-button">Instagram</div>
<div class="text-button">Instagram</div>
</div>
</div>
</div>
<div class="underline-wrapper">
<div class="underline-button"></div>
<div class="middle-underline"></div>
<div class="underline-button is-grey"></div>
</div>
</a><a href="https://www.linkedin.com/"
data-w-id="9493f00e-ac0a-6d00-a696-69b6897ac40f" target="_blank"
class="main-button w-inline-block">
<div class="button-inner-flex">
<div class="button-text-wrap">
<div class="button-part-01">
<div class="text-button">Linkedin</div>
<div class="text-button">Linkedin</div>
</div>
</div>
</div>
<div class="underline-wrapper">
<div class="underline-button"></div>
<div class="middle-underline"></div>
<div class="underline-button is-grey"></div>
</div>
</a></div>
</div> -->
</nav>
<div class="menu-button w-nav-button">
<div class="menu-button-flex">
<div class="menu-wrapper">
<div class="menu-line-wrapper">
<div class="menu-line top"></div>
</div>
<div class="menu-line-wrapper">
<div class="menu-line bottom"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="w-node-_9493f00e-ac0a-6d00-a696-69b6897ac422-897ac392" class="nav-cart-item">
<div data-open-product="" data-wf-cart-type="modal" data-wf-cart-query="query Dynamo2
data-wf-page-link-href-prefix="" class=" w-commerce-commercecartwrapper cart"
data-node-type="commerce-cart-wrapper"><a
class="w-commerce-commercecartopenlink cart-button w-inline-block" role="button"
aria-haspopup="dialog" aria-label="Open cart"
data-node-type="commerce-cart-open-link" href="#"><svg
class="w-commerce-commercecartopenlinkicon cart-icon" width="17px"
height="17px" viewBox="0 0 17 17">
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path
d="M2.60592789,2 L0,2 L0,0 L4.39407211,0 L4.84288393,4 L16,4 L16,9.93844589 L3.76940945,12.3694378 L2.60592789,2 Z M15.5,17 C14.6715729,17 14,16.3284271 14,15.5 C14,14.6715729 14.6715729,14 15.5,14 C16.3284271,14 17,14.6715729 17,15.5 C17,16.3284271 16.3284271,17 15.5,17 Z M5.5,17 C4.67157288,17 4,16.3284271 4,15.5 C4,14.6715729 4.67157288,14 5.5,14 C6.32842712,14 7,14.6715729 7,15.5 C7,16.3284271 6.32842712,17 5.5,17 Z"
fill="currentColor" fill-rule="nonzero"></path>
</g>
</svg>
<div data-wf-bindings="%5B%7B%22innerHTML%22%3A%7B%22type%22%3A%22Number%22%2C%22filter%22%3A%7B%22type%22%3A%22numberPrecision%22%2C%22params%22%3A%5B%220%22%2C%22numberPrecision%22%5D%7D%2C%22dataPath%22%3A%22database.commerceOrder.userItemsCount%22%7D%7D%5D"
class="w-commerce-commercecartopenlinkcount cart-quantity">0</div>
</a>
<div style="display:none"
class="w-commerce-commercecartcontainerwrapper w-commerce-commercecartcontainerwrapper--cartType-modal"
data-node-type="commerce-cart-container-wrapper">
<div data-node-type="commerce-cart-container" role="dialog"
class="w-commerce-commercecartcontainer cart-container">
<div class="w-commerce-commercecartheader cart-header">
<h4 class="w-commerce-commercecartheading cart-text">Your Cart</h4><a
class="w-commerce-commercecartcloselink close-button w-inline-block"
role="button" aria-label="Close cart"
data-node-type="commerce-cart-close-link"><img width="16"
loading="lazy" alt="Close Icon – Markething Webflow Template"
src="https://cdn.prod.website-files.com/664898738f1fcda8f023ed65/665e26f9d12e494659554ee3_close-icon.svg"
class="close-icon" /></a>
</div>
<div class="w-commerce-commercecartformwrapper">
<form style="display:none" class="w-commerce-commercecartform"
data-node-type="commerce-cart-form">
<script type="text/x-wf-template"
id="wf-template-9493f00e-ac0a-6d00-a696-69b6897ac430">%3Cdiv%20class%3D%22w-commerce-commercecartitem%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcdn.prod.website-files.com%2Fplugins%2FBasic%2Fassets%2Fplaceholder.60f9b1840c.svg%22%20data-wf-bindings%3D%22%255B%257B%2522src%2522%253A%257B%2522type%2522%253A%2522ImageRef%2522%252C%2522filter%2522%253A%257B%2522type%2522%253A%2522identity%2522%252C%2522params%2522%253A%255B%255D%257D%252C%2522dataPath%2522%253A%2522database.commerceOrder.userItems%255B%255D.sku.f_main_image_4dr%2522%257D%257D%255D%22%20alt%3D%22%22%20class%3D%22w-commerce-commercecartitemimage%20w-dyn-bind-empty%22%2F%3E%3Cdiv%20class%3D%22w-commerce-commercecartiteminfo%22%3E%3Cdiv%20data-wf-bindings%3D%22%255B%257B%2522innerHTML%2522%253A%257B%2522type%2522%253A%2522PlainText%2522%252C%2522filter%2522%253A%257B%2522type%2522%253A%2522identity%2522%252C%2522params%2522%253A%255B%255D%257D%252C%2522dataPath%2522%253A%2522database.commerceOrder.userItems%255B%255D.product.f_name_%2522%257D%257D%255D%22%20class%3D%22w-commerce-commercecartproductname%20w-dyn-bind-empty%22%3E%3C%2Fdiv%3E%3Cdiv%3EThis%20is%20some%20text%20inside%20of%20a%20div%20block.%3C%2Fdiv%3E%3Cscript%20type%3D%22text%2Fx-wf-template%22%20id%3D%22wf-template-9493f00e-ac0a-6d00-a696-69b6897ac437%22%3E%253Cli%253E%253Cspan%2520data-wf-bindings%253D%2522%25255B%25257B%252522innerHTML%252522%25253A%25257B%252522type%252522%25253A%252522PlainText%252522%25252C%252522filter%252522%25253A%25257B%252522type%252522%25253A%252522identity%252522%25252C%252522params%252522%25253A%25255B%25255D%25257D%25252C%252522dataPath%252522%25253A%252522database.commerceOrder.userItems%25255B%25255D.product.f_sku_properties_3dr%25255B%25255D.name%252522%25257D%25257D%25255D%2522%253E%253C%252Fspan%253E%253Cspan%253E%253A%2520%253C%252Fspan%253E%253Cspan%2520data-wf-bindings%253D%2522%25255B%25257B%252522innerHTML%252522%25253A%25257B%252522type%252522%25253A%252522CommercePropValues%252522%25252C%252522filter%252522%25253A%25257B%252522type%252522%25253A%252522identity%252522%25252C%252522params%252522%25253A%25255B%25255D%25257D%25252C%252522dataPath%252522%25253A%252522database.commerceOrder.userItems%25255B%25255D.product.f_sku_properties_3dr%25255B%25255D%252522%25257D%25257D%25255D%2522%253E%253C%252Fspan%253E%253C%252Fli%253E%3C%2Fscript%3E%3Cul%20data-wf-bindings%3D%22%255B%257B%2522optionSets%2522%253A%257B%2522type%2522%253A%2522CommercePropTable%2522%252C%2522filter%2522%253A%257B%2522type%2522%253A%2522identity%2522%252C%2522params%2522%253A%255B%255D%257D%252C%2522dataPath%2522%253A%2522database.commerceOrder.userItems%255B%255D.product.f_sku_properties_3dr%5B%5D%2522%257D%257D%252C%257B%2522optionValues%2522%253A%257B%2522type%2522%253A%2522CommercePropValues%2522%252C%2522filter%2522%253A%257B%2522type%2522%253A%2522identity%2522%252C%2522params%2522%253A%255B%255D%257D%252C%2522dataPath%2522%253A%2522database.commerceOrder.userItems%255B%255D.sku.f_sku_values_3dr%2522%257D%257D%255D%22%20class%3D%22w-commerce-commercecartoptionlist%22%20data-wf-collection%3D%22database.commerceOrder.userItems%255B%255D.product.f_sku_properties_3dr%22%20data-wf-template-id%3D%22wf-template-9493f00e-ac0a-6d00-a696-69b6897ac437%22%3E%3Cli%3E%3Cspan%20data-wf-bindings%3D%22%255B%257B%2522innerHTML%2522%253A%257B%2522type%2522%253A%2522PlainText%2522%252C%2522filter%2522%253A%257B%2522type%2522%253A%2522identity%2522%252C%2522params%2522%253A%255B%255D%257D%252C%2522dataPath%2522%253A%2522database.commerceOrder.userItems%255B%255D.product.f_sku_properties_3dr%255B%255D.name%2522%257D%257D%255D%22%3E%3C%2Fspan%3E%3Cspan%3E%3A%20%3C%2Fspan%3E%3Cspan%20data-wf-bindings%3D%22%255B%257B%2522innerHTML%2522%253A%257B%2522type%2522%253A%2522CommercePropValues%2522%252C%2522filter%2522%253A%257B%2522type%2522%253A%2522identity%2522%252C%2522params%2522%253A%255B%255D%257D%252C%2522dataPath%2522%253A%2522database.commerceOrder.userItems%255B%255D.product.f_sku_properties_3dr%255B%255D%2522%257D%257D%255D%22%3E%3C%2Fspan%3E%3C%2Fli%3E%3C%2Ful%3E%3Ca%20href%3D%22%23%22%20role%3D%22button%22%20data-wf-bindings%3D%22%255B%257B%2522data-commerce-sku-id%2522%253A%257B%2522type%2522%253A%2522ItemRef%2522%252C%2522filter%2522%253A%257B%2522type%2522%253A%2522identity%2522%252C%2522params%2522%253A%255B%255D%257D%252C%2522dataPath%2522%253A%2522database.commerceOrder.userItems%255B%255D.sku.id%2522%257D%257D%255D%22%20class%3D%22w-inline-block%22%20data-wf-cart-action%3D%22remove-item%22%20data-commerce-sku-id%3D%22%22%20aria-label%3D%22Remove%20item%20from%20cart%22%3E%3Cdiv%3ERemove%3C%2Fdiv%3E%3C%2Fa%3E%3C%2Fdiv%3E%3Cinput%20aria-label%3D%22Update%20quantity%22%20data-wf-bindings%3D%22%255B%257B%2522value%2522%253A%257B%2522type%2522%253A%2522Number%2522%252C%2522filter%2522%253A%257B%2522type%2522%253A%2522numberPrecision%2522%252C%2522params%2522%253A%255B%25220%2522%252C%2522numberPrecision%2522%255D%257D%252C%2522dataPath%2522%253A%2522database.commerceOrder.userItems%255B%255D.count%2522%257D%257D%252C%257B%2522data-commerce-sku-id%2522%253A%257B%2522type%2522%253A%2522ItemRef%2522%252C%2522filter%2522%253A%257B%2522type%2522%253A%2522identity%2522%252C%2522params%2522%253A%255B%255D%257D%252C%2522dataPath%2522%253A%2522database.commerceOrder.userItems%255B%255D.sku.id%2522%257D%257D%255D%22%20class%3D%22w-commerce-commercecartquantity%20cart-quantity-item%22%20required%3D%22%22%20pattern%3D%22%5E%5B0-9%5D%2B%24%22%20inputMode%3D%22numeric%22%20type%3D%22number%22%20name%3D%22quantity%22%20autoComplete%3D%22off%22%20data-wf-cart-action%3D%22update-item-quantity%22%20data-commerce-sku-id%3D%22%22%20value%3D%221%22%2F%3E%3C%2Fdiv%3E</script>
<div class="w-commerce-commercecartlist"
data-wf-collection="database.commerceOrder.userItems"
data-wf-template-id="wf-template-9493f00e-ac0a-6d00-a696-69b6897ac430">
<div class="w-commerce-commercecartitem"><img
src="https://cdn.prod.website-files.com/plugins/Basic/assets/placeholder.60f9b1840c.svg"
data-wf-bindings="%5B%7B%22src%22%3A%7B%22type%22%3A%22ImageRef%22%2C%22filter%22%3A%7B%22type%22%3A%22identity%22%2C%22params%22%3A%5B%5D%7D%2C%22dataPath%22%3A%22database.commerceOrder.userItems%5B%5D.sku.f_main_image_4dr%22%7D%7D%5D"
alt=""
class="w-commerce-commercecartitemimage w-dyn-bind-empty" />
<div class="w-commerce-commercecartiteminfo">
<div data-wf-bindings="%5B%7B%22innerHTML%22%3A%7B%22type%22%3A%22PlainText%22%2C%22filter%22%3A%7B%22type%22%3A%22identity%22%2C%22params%22%3A%5B%5D%7D%2C%22dataPath%22%3A%22database.commerceOrder.userItems%5B%5D.product.f_name_%22%7D%7D%5D"
class="w-commerce-commercecartproductname w-dyn-bind-empty">
</div>
<div>This is some text inside of a div block.</div>
<script type="text/x-wf-template"
id="wf-template-9493f00e-ac0a-6d00-a696-69b6897ac437">%3Cli%3E%3Cspan%20data-wf-bindings%3D%22%255B%257B%2522innerHTML%2522%253A%257B%2522type%2522%253A%2522PlainText%2522%252C%2522filter%2522%253A%257B%2522type%2522%253A%2522identity%2522%252C%2522params%2522%253A%255B%255D%257D%252C%2522dataPath%2522%253A%2522database.commerceOrder.userItems%255B%255D.product.f_sku_properties_3dr%255B%255D.name%2522%257D%257D%255D%22%3E%3C%2Fspan%3E%3Cspan%3E%3A%20%3C%2Fspan%3E%3Cspan%20data-wf-bindings%3D%22%255B%257B%2522innerHTML%2522%253A%257B%2522type%2522%253A%2522CommercePropValues%2522%252C%2522filter%2522%253A%257B%2522type%2522%253A%2522identity%2522%252C%2522params%2522%253A%255B%255D%257D%252C%2522dataPath%2522%253A%2522database.commerceOrder.userItems%255B%255D.product.f_sku_properties_3dr%255B%255D%2522%257D%257D%255D%22%3E%3C%2Fspan%3E%3C%2Fli%3E</script>
<ul data-wf-bindings="%5B%7B%22optionSets%22%3A%7B%22type%22%3A%22CommercePropTable%22%2C%22filter%22%3A%7B%22type%22%3A%22identity%22%2C%22params%22%3A%5B%5D%7D%2C%22dataPath%22%3A%22database.commerceOrder.userItems%5B%5D.product.f_sku_properties_3dr[]%22%7D%7D%2C%7B%22optionValues%22%3A%7B%22type%22%3A%22CommercePropValues%22%2C%22filter%22%3A%7B%22type%22%3A%22identity%22%2C%22params%22%3A%5B%5D%7D%2C%22dataPath%22%3A%22database.commerceOrder.userItems%5B%5D.sku.f_sku_values_3dr%22%7D%7D%5D"
class="w-commerce-commercecartoptionlist"
data-wf-collection="database.commerceOrder.userItems%5B%5D.product.f_sku_properties_3dr"
data-wf-template-id="wf-template-9493f00e-ac0a-6d00-a696-69b6897ac437">
<li><span
data-wf-bindings="%5B%7B%22innerHTML%22%3A%7B%22type%22%3A%22PlainText%22%2C%22filter%22%3A%7B%22type%22%3A%22identity%22%2C%22params%22%3A%5B%5D%7D%2C%22dataPath%22%3A%22database.commerceOrder.userItems%5B%5D.product.f_sku_properties_3dr%5B%5D.name%22%7D%7D%5D"></span><span>:
</span><span
data-wf-bindings="%5B%7B%22innerHTML%22%3A%7B%22type%22%3A%22CommercePropValues%22%2C%22filter%22%3A%7B%22type%22%3A%22identity%22%2C%22params%22%3A%5B%5D%7D%2C%22dataPath%22%3A%22database.commerceOrder.userItems%5B%5D.product.f_sku_properties_3dr%5B%5D%22%7D%7D%5D"></span>
</li>
</ul><a href="#" role="button"
data-wf-bindings="%5B%7B%22data-commerce-sku-id%22%3A%7B%22type%22%3A%22ItemRef%22%2C%22filter%22%3A%7B%22type%22%3A%22identity%22%2C%22params%22%3A%5B%5D%7D%2C%22dataPath%22%3A%22database.commerceOrder.userItems%5B%5D.sku.id%22%7D%7D%5D"
class="w-inline-block"
data-wf-cart-action="remove-item"
data-commerce-sku-id=""
aria-label="Remove item from cart">
<div>Remove</div>
</a>
</div><input aria-label="Update quantity"
data-wf-bindings="%5B%7B%22value%22%3A%7B%22type%22%3A%22Number%22%2C%22filter%22%3A%7B%22type%22%3A%22numberPrecision%22%2C%22params%22%3A%5B%220%22%2C%22numberPrecision%22%5D%7D%2C%22dataPath%22%3A%22database.commerceOrder.userItems%5B%5D.count%22%7D%7D%2C%7B%22data-commerce-sku-id%22%3A%7B%22type%22%3A%22ItemRef%22%2C%22filter%22%3A%7B%22type%22%3A%22identity%22%2C%22params%22%3A%5B%5D%7D%2C%22dataPath%22%3A%22database.commerceOrder.userItems%5B%5D.sku.id%22%7D%7D%5D"
class="w-commerce-commercecartquantity cart-quantity-item"
required="" pattern="^[0-9]+$" inputMode="numeric"
type="number" name="quantity" autoComplete="off"
data-wf-cart-action="update-item-quantity"
data-commerce-sku-id="" value="1" />
</div>
</div>
<div class="w-commerce-commercecartfooter cart-footer">
<div aria-live="polite" aria-atomic="true"
class="w-commerce-commercecartlineitem">
<div>Subtotal</div>
<div data-wf-bindings="%5B%7B%22innerHTML%22%3A%7B%22type%22%3A%22CommercePrice%22%2C%22filter%22%3A%7B%22type%22%3A%22price%22%2C%22params%22%3A%5B%5D%7D%2C%22dataPath%22%3A%22database.commerceOrder.subtotal%22%7D%7D%5D"
class="w-commerce-commercecartordervalue"></div>
</div>
<div>
<div data-node-type="commerce-cart-quick-checkout-actions"
style="display:none"><a role="button"
aria-haspopup="dialog" aria-label="Apple Pay"
data-node-type="commerce-cart-apple-pay-button"
style="background-image:-webkit-named-image(apple-pay-logo-white);background-size:100% 50%;background-position:50% 50%;background-repeat:no-repeat"
class="w-commerce-commercecartapplepaybutton"
tabindex="0">
<div></div>
</a><a role="button" tabindex="0" aria-haspopup="dialog"
data-node-type="commerce-cart-quick-checkout-button"
style="display:none"
class="w-commerce-commercecartquickcheckoutbutton"><svg
class="w-commerce-commercequickcheckoutgoogleicon"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
width="16" height="16" viewBox="0 0 16 16">
<defs>
<polygon id="google-mark-a"
points="0 .329 3.494 .329 3.494 7.649 0 7.649">
</polygon>
<polygon id="google-mark-c"
points=".894 0 13.169 0 13.169 6.443 .894 6.443">
</polygon>
</defs>
<g fill="none" fill-rule="evenodd">
<path fill="#4285F4"
d="M10.5967,12.0469 L10.5967,14.0649 L13.1167,14.0649 C14.6047,12.6759 15.4577,10.6209 15.4577,8.1779 C15.4577,7.6339 15.4137,7.0889 15.3257,6.5559 L7.8887,6.5559 L7.8887,9.6329 L12.1507,9.6329 C11.9767,10.6119 11.4147,11.4899 10.5967,12.0469">
</path>
<path fill="#34A853"
d="M7.8887,16 C10.0137,16 11.8107,15.289 13.1147,14.067 C13.1147,14.066 13.1157,14.065 13.1167,14.064 L10.5967,12.047 C10.5877,12.053 10.5807,12.061 10.5727,12.067 C9.8607,12.556 8.9507,12.833 7.8887,12.833 C5.8577,12.833 4.1387,11.457 3.4937,9.605 L0.8747,9.605 L0.8747,11.648 C2.2197,14.319 4.9287,16 7.8887,16">
</path>
<g transform="translate(0 4)">
<mask id="google-mark-b" fill="#fff">
<use xlink:href="#google-mark-a">
</use>
</mask>
<path fill="#FBBC04"
d="M3.4639,5.5337 C3.1369,4.5477 3.1359,3.4727 3.4609,2.4757 L3.4639,2.4777 C3.4679,2.4657 3.4749,2.4547 3.4789,2.4427 L3.4939,0.3287 L0.8939,0.3287 C0.8799,0.3577 0.8599,0.3827 0.8459,0.4117 C-0.2821,2.6667 -0.2821,5.3337 0.8459,7.5887 L0.8459,7.5997 C0.8549,7.6167 0.8659,7.6317 0.8749,7.6487 L3.4939,5.6057 C3.4849,5.5807 3.4729,5.5587 3.4639,5.5337"
mask="url(#google-mark-b)"></path>
</g>
<mask id="google-mark-d" fill="#fff">
<use xlink:href="#google-mark-c"></use>
</mask>
<path fill="#EA4335"
d="M0.894,4.3291 L3.478,6.4431 C4.113,4.5611 5.843,3.1671 7.889,3.1671 C9.018,3.1451 10.102,3.5781 10.912,4.3671 L13.169,2.0781 C11.733,0.7231 9.85,-0.0219 7.889,0.0001 C4.941,0.0001 2.245,1.6791 0.894,4.3291"
mask="url(#google-mark-d)"></path>
</g>
</svg><svg
class="w-commerce-commercequickcheckoutmicrosofticon"
xmlns="http://www.w3.org/2000/svg" width="16"
height="16" viewBox="0 0 16 16">
<g fill="none" fill-rule="evenodd">
<polygon fill="#F05022"
points="7 7 1 7 1 1 7 1"></polygon>
<polygon fill="#7DB902"
points="15 7 9 7 9 1 15 1"></polygon>
<polygon fill="#00A4EE"
points="7 15 1 15 1 9 7 9"></polygon>
<polygon fill="#FFB700"
points="15 15 9 15 9 9 15 9"></polygon>
</g>
</svg>
<div>Pay with browser.</div>
</a></div><a href="/checkout"
value="Continue to Checkout"
class="w-commerce-commercecartcheckoutbutton button"
data-loading-text="Hang Tight..."
data-node-type="cart-checkout-button">Continue to
Checkout</a>
</div>
</div>
</form>
<div class="w-commerce-commercecartemptystate">
<div aria-label="This cart is empty" aria-live="polite">No items
found.</div>
</div>
<div aria-live="assertive" style="display:none"
data-node-type="commerce-cart-error"
class="w-commerce-commercecarterrorstate form-message-error">
<div class="w-cart-error-msg"
data-w-cart-quantity-error="Product is not available in this quantity."
data-w-cart-general-error="Something went wrong when adding this item to the cart."
data-w-cart-checkout-error="Checkout is disabled on this site."
data-w-cart-cart_order_min-error="The order minimum was not met. Add more items to your cart to continue."
data-w-cart-subscription_error-error="Before you purchase, please use your email invite to verify your address so we can send order updates.">
Product is not available in this quantity.</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<main class="main-wrapper">
<header class="section-case-study-header">
<div class="padding-global">
<div class="container-medium">
<div class="padding-top-header">
<div class="spacer-medium"></div>
<h1 class="heading-style-h2 case-title">The campaign led to a 120% increase in Footfall and 60% increase in website traffic.</h1>
<div class="spacer-medium"></div>
<div class="max-width-medium">
<p class="text-size-regular">Since working with us, hair transplant clinic has seen a dramatic increase in social media presence, leading to doubled sales. Their strategic approach to online marketing and content creation has not only expanded our reach but also connected us with more clients than ever before. We're thrilled with the results and look forward to continued growth!</p>
</div>
<div class="spacer-large"></div>
<div class="w-layout-grid case-info-grid">
<div id="w-node-_3196b263-18f0-db27-6af2-0cab73fce54b-eade6559" class="case-info-block">
<div class="text-size-regular">Service:</div>
<div class="text-size-regular text-color-alternate no-wrap">Best Hair Transplant and Cosmetic Center</div>
</div>
<div id="w-node-e742bf32-aa6e-3fca-01bb-04ccf7bc6a64-eade6559" class="case-info-block">
<div class="text-size-regular">Platforms:</div>
<div class="text-size-regular text-color-alternate no-wrap">Facebook Ads and Google Ads</div>
</div>
<div class="case-info-block">
<div class="text-size-regular">Result:</div>
<div class="text-size-regular text-color-alternate">120%</div>
<div class="text-size-regular text-color-alternate no-wrap">Increase in revenue ROI
</div>
</div>
<div id="w-node-_79b4a219-891e-b4d7-3a2a-7b2b3fe4baf7-eade6559" class="case-info-block">
<div class="text-size-regular">Website:</div><a
href="https://besthairtransplantandcosmeticcenter.com/" target="_blank"
class="link w-inline-block">
<div class="text-size-regular text-color-alternate">besthairtransplantandcosmeticcenter.com</div>
</a>
</div>
</div>
<div>
<p style="font-size: 20px; margin-top: 100px; margin-bottom: 50px; font-weight: 700; ">
Our AD Campaign Results :
</p>
</div>
<div class="slider">
<div class="slides">
<!-- Each slide contains two images -->
<div class="slide">
<a href="ads-1.jpg" target="_blank">
<img src="ads-1.jpg" alt="Image 1"class="img-left">
</a>
</div>
<div class="slide">
<a href="ads-2.jpg" target="_blank">
<img src="ads-2.jpg" alt="Image 4" class="img-right">
</a>
</div>
<div class="slide">
<a href="ads-3.jpg" target="_blank">
<img src="ads-3.jpg" alt="Image 4" class="img-right">
</a>
</div>
<!-- Add more slides as needed -->
</div>
<!-- Navigation buttons -->
<a class="prev" onclick="moveSlide(-1)">❮</a>
<a class="next" onclick="moveSlide(1)">❯</a>
</div>
</div>
</div>
<!-- <div class="spacer-xlarge"></div><img
src="https://cdn.prod.website-files.com/664898738f1fcda8f023ed72/66676c3e176486cdb7166728_case-study-img02.webp"
loading="lazy" alt="Yamato"
sizes="(max-width: 479px) 92vw, (max-width: 767px) 95vw, (max-width: 1279px) 92vw, 1024px"
srcset="https://cdn.prod.website-files.com/664898738f1fcda8f023ed72/66676c3e176486cdb7166728_case-study-img02-p-500.webp 500w, https://cdn.prod.website-files.com/664898738f1fcda8f023ed72/66676c3e176486cdb7166728_case-study-img02-p-800.webp 800w, https://cdn.prod.website-files.com/664898738f1fcda8f023ed72/66676c3e176486cdb7166728_case-study-img02-p-1080.webp 1080w, https://cdn.prod.website-files.com/664898738f1fcda8f023ed72/66676c3e176486cdb7166728_case-study-img02-p-1600.webp 1600w, https://cdn.prod.website-files.com/664898738f1fcda8f023ed72/66676c3e176486cdb7166728_case-study-img02.webp 1920w"
class="case-image" />
</div>
</div>
</div>
</header>
<section class="section-case-study-content">
<div class="padding-global">
<div class="container-medium">
<div class="padding-section-large">
<div class="text-rich-text w-richtext">
<h2>Overview: </h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin elementum sem neque,
et posuere erat interdum vitae. Maecenas eget lorem ut libero vulputate
sollicitudin. Aliquam a mauris metus. Mauris eu purus rhoncus tellus varius
vulputate ut sed est. Cras dictum a erat non dapibus. Nam nisl nisl, tempor at
condimentum nec, rutrum a mi. Nunc vitae dolor sed tellus scelerisque mattis. </p>
<p></p>
<ul role="list">
<li>Sed quis tortor ut tortor posuere interdum</li>
<li>Mauris placerat feugiat malesuada</li>
<li>Nam pharetra sodales tortor eu lacinia</li>
</ul>
<p></p>
<p>Nullam ut est ut magna tempus ullamcorper. Sed bibendum, erat auctor molestie
pellentesque, orci diam consectetur nisl, a tincidunt nibh nulla et augue. Proin
sagittis lorem id ornare hendrerit. Quisque lacus metus, ultricies ac pharetra eget,
placerat ac purus. Ut ultrices facilisis nisl aliquam interdum. Vestibulum placerat
porta tincidunt.</p>
</div>
<div class="spacer-huge"></div><img
src="https://cdn.prod.website-files.com/664898738f1fcda8f023ed72/66676ed23915ceb9afa36e56_case-study02-img-02.webp"
loading="lazy" alt="Yamato"
sizes="(max-width: 479px) 92vw, (max-width: 767px) 95vw, (max-width: 1279px) 92vw, 1024px"
srcset="https://cdn.prod.website-files.com/664898738f1fcda8f023ed72/66676ed23915ceb9afa36e56_case-study02-img-02-p-500.webp 500w, https://cdn.prod.website-files.com/664898738f1fcda8f023ed72/66676ed23915ceb9afa36e56_case-study02-img-02-p-800.webp 800w, https://cdn.prod.website-files.com/664898738f1fcda8f023ed72/66676ed23915ceb9afa36e56_case-study02-img-02-p-1080.webp 1080w, https://cdn.prod.website-files.com/664898738f1fcda8f023ed72/66676ed23915ceb9afa36e56_case-study02-img-02-p-1600.webp 1600w, https://cdn.prod.website-files.com/664898738f1fcda8f023ed72/66676ed23915ceb9afa36e56_case-study02-img-02.webp 1920w"
class="case-image" />
<div class="spacer-huge"></div><img
src="https://cdn.prod.website-files.com/664898738f1fcda8f023ed72/66676ed51e1cb2d7456c5ae3_case-study02-img-03.webp"
loading="lazy" alt="Yamato"
sizes="(max-width: 479px) 92vw, (max-width: 767px) 95vw, (max-width: 1279px) 92vw, 1024px"
srcset="https://cdn.prod.website-files.com/664898738f1fcda8f023ed72/66676ed51e1cb2d7456c5ae3_case-study02-img-03-p-500.webp 500w, https://cdn.prod.website-files.com/664898738f1fcda8f023ed72/66676ed51e1cb2d7456c5ae3_case-study02-img-03-p-800.webp 800w, https://cdn.prod.website-files.com/664898738f1fcda8f023ed72/66676ed51e1cb2d7456c5ae3_case-study02-img-03-p-1080.webp 1080w, https://cdn.prod.website-files.com/664898738f1fcda8f023ed72/66676ed51e1cb2d7456c5ae3_case-study02-img-03-p-1600.webp 1600w, https://cdn.prod.website-files.com/664898738f1fcda8f023ed72/66676ed51e1cb2d7456c5ae3_case-study02-img-03.webp 1920w"
class="case-image" />
<div class="spacer-huge"></div>
<div class="text-rich-text w-richtext">
<h2>Results: </h2>
<p>Curabitur a felis neque. Sed ornare eu elit vitae lobortis. Donec vulputate hendrerit
sodales. Quisque eget volutpat mauris, et lacinia justo. Donec ultrices neque eu
consequat tempus. Aliquam arcu nisl, venenatis a egestas vel, laoreet id ante. </p>
<p></p>
<ol start="" role="list">
<li>Nam pharetra sodales tortor eu lacinia</li>
<li>Sed ornare eu elit vitae lobortis</li>
<li>Mauris eu purus rhoncus tellus varius vulputate</li>
</ol>
<p></p>
<p>Aenean accumsan velit eget tortor vehicula, ac gravida lectus varius. Sed mattis ante
sed risus tincidunt posuere tempor iaculis purus. Ut ut ullamcorper erat. Praesent
in imperdiet orci. Quisque id semper erat, et varius mi. Ut vel justo a tortor
mollis luctus non sit amet mauris. Etiam semper erat ac suscipit imperdiet. Quisque
volutpat metus ac dignissim posuere. Maecenas convallis vestibulum justo, sed auctor
arcu accumsan eget.</p>
</div>
</div>
</div>
</div> -->
</section>
<section class="section-next-case">
<div class="padding-global">
<div class="container-large">
<div class="padding-section-large">
<div class="text-size-regular text-align-center text-color-primary">Next Case:</div>
<div class="spacer-medium"></div>
<div class="flex-center"><a href="cases-details-3.html"
data-w-id="d48d2bf2-d040-6656-f3ad-0e13bdf57a73" class="nav-link w-inline-block">
<div class="nav-link-inner-flex">
<div class="nav-arrow">
<div style="-webkit-transform:translate3d(0rem, 0rem, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0rem, 0rem, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0rem, 0rem, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0rem, 0rem, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0)"
class="nav-arrow-icon _01 w-embed"><svg
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"
fill="currentColor">
<path
d="M16.0037 9.41421L7.39712 18.0208L5.98291 16.6066L14.5895 8H7.00373V6H18.0037V17H16.0037V9.41421Z">
</path>
</svg></div>
<div style="-webkit-transform:translate3d(-1.5rem, 0rem, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(-1.5rem, 0rem, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(-1.5rem, 0rem, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(-1.5rem, 0rem, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0)"
class="nav-arrow-icon _02 w-embed"><svg
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"
fill="currentColor">
<path
d="M16.0037 9.41421L7.39712 18.0208L5.98291 16.6066L14.5895 8H7.00373V6H18.0037V17H16.0037V9.41421Z">
</path>
</svg></div>
</div>
<div class="nav-text-wrapper">
<div style="-webkit-transform:translate3d(0, 0%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 0%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 0%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 0%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0)"
class="nav-text-2">karwa Constructions</div>
<div style="-webkit-transform:translate3d(0, 0%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 0%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 0%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 0%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0)"
class="nav-text-2">karwa Constructions</div>
</div>
</div>
<div class="underline-nav-link">
<div style="-webkit-transform:translate3d(0%, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0%, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0%, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0%, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0)"
class="underline-wrapper">
<div class="underline-button"></div>
<div class="middle-underline"></div>
<div class="underline-button is-grey"></div>
</div>
</div>
</a></div>
</div>
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="padding-global">
<div class="container-large">
<div class="padding-footer">
<div class="w-layout-grid footer-top-grid">
<div id="w-node-b64be25d-a871-9f80-57b9-2f95b45de69a-b45de695" class="footer-content-block"><a
href="/" aria-current="page" class="brand-footer-link w-inline-block w--current">
<img
src="temw website/logo.png"
loading="lazy" alt="Alternate Logo – Markething Webflow Template"
class="footer-logo" style="filter: invert(0);height: 70px;">
</a>
<div class="spacer-small"></div>
<div class="max-width-small">
<div class="text-size-regular" style="margin-left: 5px;" >Make It Impossible To Ignore</div>
</div>
</div>
<div id="w-node-b64be25d-a871-9f80-57b9-2f95b45de6a3-b45de695" class="footer-content-block" >
<div class="footer-flex-item">
<div class="text-size-small">PAGES:</div><a href="/"
data-w-id="b64be25d-a871-9f80-57b9-2f95b45de6a7" aria-current="page"
class="link-button w-inline-block w--current">
<div class="link-wrap"
style="transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg); transform-style: preserve-3d;">
<div class="link-text">Home</div>
<div class="link-text is-hover">Home</div>
</div>
</a><a href="./about.html" data-w-id="b64be25d-a871-9f80-57b9-2f95b45de6ad"
class="link-button w-inline-block">
<div class="link-wrap"
style="transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg); transform-style: preserve-3d;">
<div class="link-text">about</div>
<div class="link-text is-hover">about</div>
</div>
</a><a href="./service.html" data-w-id="b64be25d-a871-9f80-57b9-2f95b45de6b3"
class="link-button w-inline-block">
<div class="link-wrap"
style="transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg); transform-style: preserve-3d;">
<div class="link-text">Services</div>
<div class="link-text is-hover">Services</div>
</div>
</a><a href="./cases.html" data-w-id="b64be25d-a871-9f80-57b9-2f95b45de6b9"
class="link-button w-inline-block">
<div class="link-wrap"
style="transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg); transform-style: preserve-3d;">
<div class="link-text">Case Studies</div>
<div class="link-text is-hover">Case Studies</div>
</div>
</a>
<!-- <a href="/packages" data-w-id="b64be25d-a871-9f80-57b9-2f95b45de6bf"
class="link-button w-inline-block">
<div class="link-wrap"
style="transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg); transform-style: preserve-3d;">
<div class="link-text">Packages</div>
<div class="link-text is-hover">Packages</div>
</div>
</a> -->
<a href="./contact.html" data-w-id="b64be25d-a871-9f80-57b9-2f95b45de6c5"
class="link-button w-inline-block">
<div class="link-wrap"
style="transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg); transform-style: preserve-3d;">
<div class="link-text">Contact</div>
<div class="link-text is-hover">contact</div>
</div>
</a><a href="./blog.html" data-w-id="b64be25d-a871-9f80-57b9-2f95b45de6cb"
class="link-button w-inline-block">
<div class="link-wrap"
style="transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg); transform-style: preserve-3d;">
<div class="link-text">BLOGS</div>
<div class="link-text is-hover">BLOGS</div>
</div>
</a>
<a href="./gallery.html" data-w-id="b64be25d-a871-9f80-57b9-2f95b45de6c5"
class="link-button w-inline-block">
<div class="link-wrap">
<div class="link-text">Gallery</div>
<div class="link-text is-hover">Gallery</div>
</div>
</a>
<a href="./packages.html" data-w-id="b64be25d-a871-9f80-57b9-2f95b45de6c5"
class="link-button w-inline-block">
<div class="link-wrap">
<div class="link-text">Packages</div>
<div class="link-text is-hover">Packages</div>
</div>
</a>
</div>
</div>
</div>
<div class="w-layout-grid footer-bottom-grid">
<div id="w-node-b64be25d-a871-9f80-57b9-2f95b45de708-b45de695" class="back-to-top-item"><a
href="#top" data-w-id="b64be25d-a871-9f80-57b9-2f95b45de709"
class="back-to-top-link w-inline-block">
<div class="up-arrow w-embed"
style="transform: translate3d(0px, 0rem, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg); transform-style: preserve-3d; opacity: 1;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
<path
d="M13.0001 7.82843V20H11.0001V7.82843L5.63614 13.1924L4.22192 11.7782L12.0001 4L19.7783 11.7782L18.3641 13.1924L13.0001 7.82843Z">
</path>
</svg>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
</footer>
</div>
<div class="circlec"></div>
<div class="circlec-dot"></div>
<script>
const circlec = document.querySelector('.circlec');
const circlecDot = document.querySelector('.circlec-dot');
let circlecPos = { x: 0, y: 0 };
let dotPos = { x: 0, y: 0 };
document.addEventListener('mousemove', (e) => {
circlecPos.x = e.clientX;
circlecPos.y = e.clientY;
circlec.style.left = circlecPos.x + 'px';
circlec.style.top = circlecPos.y + 'px';
});
function animate() {
const dx = circlecPos.x - dotPos.x;
const dy = circlecPos.y - dotPos.y;
dotPos.x += dx * 0.1;
dotPos.y += dy * 0.1;
circlecDot.style.left = dotPos.x + 'px';
circlecDot.style.top = dotPos.y + 'px';
requestAnimationFrame(animate);
}
animate();
</script>
<script src="https://d3e54v103j8qbb.cloudfront.net/js/jquery-3.5.1.min.dc5e7f18c8.js?site=664898738f1fcda8f023ed65"
type="text/javascript" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
crossorigin="anonymous"></script>
<script src="./webflow.7dc66dbb1.js"
type="text/javascript"></script>