-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdomains.html
1457 lines (1421 loc) · 96 KB
/
domains.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>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<!-- Linking CSS -->
<link type="text/css" rel="stylesheet" href="css/nav-style.css" />
<link type="text/css" rel="stylesheet" href="css/foot-style.css" />
<link type="text/css" rel="stylesheet" href="css/preloader.css" />
<link type="text/css" rel="stylesheet" href="css/domains.css" />
<link
type="text/css"
rel="stylesheet"
href="webfontkit-20201125-062530/stylesheet.css"
/>
<!-- External Links -->
<!-- Mode Toggle Icons -->
<!-- <script src="https://code.iconify.design/1/1.0.4/iconify.min.js"></script> -->
<!-- AOS -->
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet" />
<!--Font Awesome-->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<!-- Favicon -->
<link rel="icon" type="image/png" href="Assets/Common-Assets/adglogo.png" />
<!-- Title and Logo-->
<title>ADG | VIT Vellore</title>
</head>
<body>
<div id="loader">
<img src="Assets/Common-Assets/adggif.gif" class="gif" />
</div>
<div id="content">
<!--NAVBAR Starts-->
<nav class="nav-active" id="navbar">
<!-- Logo in Navbar -->
<div class="logo">
<a href="index" style="text-decoration: none; color: #e6e6e6">
<h4>
<img src="Assets/Common-Assets/adglogo.png" class="adg-logo" alt="ADG" />
ADG-VIT
</h4>
</a>
</div>
<!-- Nav Links -->
<ul class="navlinks">
<li>
<a href="index" class="nav-link nav-link-grow-up">Home</a>
</li>
<li>
<a href="about" class="nav-link nav-link-grow-up">About</a>
</li>
<li>
<a href="partners" class="nav-link nav-link-grow-up">Partners</a>
</li>
<li>
<a href="events" class="nav-link nav-link-grow-up">Events</a>
</li>
<li>
<a href="projects" class="nav-link nav-link-grow-up">Projects</a>
</li>
<li>
<a href="team" class="nav-link nav-link-grow-up">Team</a>
</li>
<li>
<a href="contact" class="nav-link nav-link-grow-up">Contact Us</a>
</li>
</ul>
<!-- Responsive Burger Menu -->
<div class="burger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</nav>
<!--NAVBAR Ends-->
<!--Domains Page-->
<div class="domain-page">
<div class="domain">
<!-- <img class="domain-icon" src="Assets/Domains-Page/iOS.svg"> -->
<svg
width="190"
height="165"
viewBox="0 0 190 165"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g id="ios">
<g id="Rectangle 2" filter="url(#filter0_d)">
<rect
x="20"
y="12"
width="150"
height="125"
rx="10"
fill="url(#paint0_linear)"
/>
</g>
<mask
id="mask0"
mask-type="alpha"
maskUnits="userSpaceOnUse"
x="20"
y="12"
width="150"
height="125"
>
<rect
id="Rectangle 2.1"
x="20"
y="12"
width="150"
height="125"
rx="10"
fill="url(#paint1_linear)"
/>
</mask>
<g mask="url(#mask0)">
<path
id="upper-wave"
opacity="0.15"
d="M37.6321 75.9413C22.0508 61.0057 10.0391 63.8466 3.06175 67.4186C1.69456 85.6478 -0.219502 124.095 3.06175 132.049C7.16331 141.993 44.0774 146.254 69.2727 151.225C89.4289 155.203 177.28 159.275 215.757 151.225C219.859 120.686 225.601 25.3731 215.757 24.805C203.452 24.0947 174.715 41.4801 154.766 81.963C128.691 134.875 118.438 63.1364 89.4336 54.9687C72.8429 50.2967 53.2408 90.9033 37.6321 75.9413Z"
fill="white"
/>
<path
id="lower-wave"
opacity="0.15"
d="M37.5781 84.4641C24.9116 77.8958 13.8039 83.9906 5.4055 84.4641C4.03831 102.693 2.12425 141.14 5.4055 149.095C9.50706 159.038 46.4211 163.299 71.6164 168.271C91.7727 172.248 179.624 157.144 218.101 149.095C222.202 118.555 227.945 42.4186 218.101 41.8504C205.796 41.1402 177.059 58.5256 157.109 99.0085C131.035 151.92 89.7266 139.136 75.0781 120.67C63.2727 105.788 53.9844 92.9715 37.5781 84.4641Z"
fill="white"
/>
<path
id="iOS"
d="M37.5928 37.8379C38.3838 37.8379 39.0342 37.2051 39.0342 36.4141C39.0342 35.6143 38.3838 34.9814 37.5928 34.9814C36.8018 34.9814 36.1426 35.6143 36.1426 36.4141C36.1426 37.2051 36.8018 37.8379 37.5928 37.8379ZM36.3008 49H38.8672V39.3232H36.3008V49ZM46.844 49.3252C50.5881 49.3252 52.9436 46.7588 52.9436 42.6631V42.6455C52.9436 38.5498 50.5793 35.9922 46.844 35.9922C43.1086 35.9922 40.7356 38.541 40.7356 42.6455V42.6631C40.7356 46.7588 43.0734 49.3252 46.844 49.3252ZM46.844 47.0752C44.7522 47.0752 43.4426 45.3438 43.4426 42.6631V42.6455C43.4426 39.9561 44.7785 38.2422 46.844 38.2422C48.9006 38.2422 50.2365 39.9561 50.2365 42.6455V42.6631C50.2365 45.3438 48.9094 47.0752 46.844 47.0752ZM59.5932 49.3252C62.7572 49.3252 64.7084 47.7344 64.7084 45.2207V45.2119C64.7084 43.2344 63.5395 42.1621 60.8588 41.6084L59.5141 41.3359C58.0199 41.0283 57.4047 40.5361 57.4047 39.71V39.7012C57.4047 38.752 58.2748 38.1543 59.5844 38.1455C60.9203 38.1455 61.7992 38.7783 61.9486 39.6836L61.9662 39.7891H64.4623L64.4535 39.6748C64.2865 37.5566 62.5463 35.9922 59.5844 35.9922C56.7719 35.9922 54.7504 37.5479 54.7504 39.9033V39.9121C54.7504 41.8369 55.8842 43.0674 58.5209 43.6035L59.8569 43.876C61.4301 44.2012 62.0541 44.667 62.0541 45.502V45.5107C62.0541 46.4863 61.0785 47.1631 59.6635 47.1631C58.1781 47.1631 57.1498 46.5215 57.0531 45.5723L57.0444 45.4844H54.4867L54.4955 45.625C54.6449 47.875 56.561 49.3252 59.5932 49.3252Z"
fill="white"
/>
<path
id="Vector"
d="M52.9013 105.726C52.887 103.287 53.9921 101.448 56.2239 100.093C54.9757 98.3047 53.0873 97.3212 50.598 97.1316C48.2411 96.9456 45.6624 98.505 44.7182 98.505C43.7203 98.505 41.4385 97.196 39.6431 97.196C35.9378 97.2532 32 100.15 32 106.044C32 107.786 32.3183 109.585 32.9549 111.438C33.8062 113.877 36.8748 119.853 40.0758 119.757C41.7496 119.717 42.9335 118.569 45.1116 118.569C47.2253 118.569 48.3197 119.757 50.1867 119.757C53.4163 119.71 56.1917 114.278 57 111.831C52.6688 109.789 52.9013 105.851 52.9013 105.726ZM49.1423 94.8176C50.9557 92.6645 50.7911 90.7046 50.7375 90C49.1352 90.093 47.2825 91.0908 46.2275 92.3176C45.0651 93.6338 44.382 95.2611 44.5286 97.0959C46.2597 97.2282 47.8405 96.3376 49.1423 94.8176Z"
fill="white"
/>
</g>
</g>
<defs>
<filter
id="filter0_d"
x="0"
y="0"
width="190"
height="165"
filterUnits="userSpaceOnUse"
color-interpolation-filters="sRGB"
>
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feColorMatrix
in="SourceAlpha"
type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
/>
<feOffset dy="8" />
<feGaussianBlur stdDeviation="10" />
<feColorMatrix
type="matrix"
values="0 0 0 0 0.0627451 0 0 0 0 0.823529 0 0 0 0 0.592157 0 0 0 0.2 0"
/>
<feBlend
mode="normal"
in2="BackgroundImageFix"
result="effect1_dropShadow"
/>
<feBlend
mode="normal"
in="SourceGraphic"
in2="effect1_dropShadow"
result="shape"
/>
</filter>
<linearGradient
id="paint0_linear"
x1="170"
y1="12"
x2="20"
y2="131"
gradientUnits="userSpaceOnUse"
>
<stop stop-color="#F43232" />
<stop offset="1" stop-color="#F800B2" />
</linearGradient>
<linearGradient
id="paint1_linear"
x1="20"
y1="137"
x2="187.132"
y2="42.2049"
gradientUnits="userSpaceOnUse"
>
<stop stop-color="#8EFC67" />
<stop offset="1" stop-color="#F6815B" />
</linearGradient>
</defs>
</svg>
<p class="description-domain">
When elegance meets class and creativity and technology meets
innovation, it creates a path for future.
</p>
</div>
<div class="domain">
<!-- <img class="domain-icon" src="Assets/Domains-Page/Web.svg"> -->
<svg
width="190"
height="165"
viewBox="0 0 190 165"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g id="web">
<g id="Group">
<g id="Rectangle 2" filter="url(#filter0_d)">
<rect
x="20"
y="12"
width="150"
height="125"
rx="10"
fill="url(#paint0_linear1)"
/>
</g>
<mask
id="mask0"
mask-type="alpha"
maskUnits="userSpaceOnUse"
x="20"
y="12"
width="150"
height="125"
>
<rect
id="Rectangle 2.1"
x="20"
y="12"
width="150"
height="125"
rx="10"
fill="url(#paint1_linear)"
/>
</mask>
<g mask="url(#mask0)">
<path
id="upper-wave"
opacity="0.15"
d="M37.6321 75.9413C22.0508 61.0057 10.0391 63.8466 3.06175 67.4186C1.69456 85.6478 -0.219502 124.095 3.06175 132.049C7.16331 141.993 44.0774 146.254 69.2727 151.225C89.4289 155.203 177.28 159.275 215.757 151.225C219.859 120.686 225.601 25.3731 215.757 24.805C203.452 24.0947 174.715 41.4801 154.766 81.963C128.691 134.875 118.438 63.1364 89.4336 54.9687C72.8429 50.2967 53.2408 90.9033 37.6321 75.9413Z"
fill="white"
/>
<path
id="lower-wave"
opacity="0.15"
d="M37.5781 84.4641C24.9116 77.8958 13.8039 83.9906 5.4055 84.4641C4.03831 102.693 2.12425 141.14 5.4055 149.095C9.50706 159.038 46.4211 163.299 71.6164 168.271C91.7727 172.248 179.624 157.144 218.101 149.095C222.202 118.555 227.945 42.4186 218.101 41.8504C205.796 41.1402 177.059 58.5256 157.109 99.0085C131.035 151.92 89.7266 139.136 75.0781 120.67C63.2727 105.788 53.9844 92.9715 37.5781 84.4641Z"
fill="white"
/>
</g>
</g>
<path
id="Web"
d="M40.1309 49H42.6357L45.0088 40.457H45.1494L47.5488 49H50.0361L53.4023 36.3174H50.6602L48.7002 45.3789H48.5596L46.2041 36.3174H43.9629L41.6514 45.3789H41.5107L39.5332 36.3174H36.7734L40.1309 49ZM58.2502 49.2021C61.0803 49.2021 62.3283 47.5674 62.6272 46.3545L62.6447 46.2666H60.2541L60.2277 46.3193C60.052 46.6885 59.4279 47.2861 58.3029 47.2861C56.9406 47.2861 56.0881 46.3633 56.0617 44.7725H62.7238V43.9727C62.7238 41.0459 60.966 39.1123 58.1447 39.1123C55.3234 39.1123 53.5217 41.0898 53.5217 44.166V44.1748C53.5217 47.2773 55.3059 49.2021 58.2502 49.2021ZM58.1887 41.0371C59.3049 41.0371 60.1047 41.7578 60.2629 43.1641H56.0881C56.2463 41.793 57.0725 41.0371 58.1887 41.0371ZM70.1293 49.1494C72.5463 49.1494 74.058 47.2598 74.058 44.166V44.1484C74.058 41.0371 72.5815 39.165 70.1293 39.165C68.8022 39.165 67.7211 39.8154 67.2289 40.8701H67.0707V35.623H64.5043V49H67.0707V47.4971H67.2289C67.7299 48.543 68.7582 49.1494 70.1293 49.1494ZM69.2504 47.0225C67.8969 47.0225 67.0444 45.9502 67.0444 44.1748V44.1572C67.0444 42.3818 67.9057 41.292 69.2504 41.292C70.6039 41.292 71.4477 42.3818 71.4477 44.1484V44.166C71.4477 45.9502 70.6127 47.0225 69.2504 47.0225Z"
fill="white"
/>
<path
id="Vector"
d="M35 104.311V104.269C35.3766 99.4152 37.1339 95.7751 40.1883 93.4738C43.2008 91.1307 46.4644 90.001 50.0209 90.001C53.7448 89.9592 57.2176 91.2144 60.3138 93.7249C63.4519 96.1935 65 99.8755 65 104.645V104.938C65 109.75 63.4519 113.348 60.3138 115.817C57.1757 118.327 53.7029 119.583 49.9791 119.583H49.8117C46.1715 119.541 42.8243 118.286 39.728 115.775C36.6318 113.306 35.0418 109.499 35 104.311ZM49.1004 97.7416V91.1307H48.0962C47.887 91.3818 47.7197 91.6747 47.5523 91.9257C47.3849 92.1767 47.2176 92.4278 47.0502 92.7207C46.8828 92.9717 46.6736 93.3065 46.5481 93.5575C46.3808 93.8085 46.2552 94.0596 46.1297 94.3525C45.8787 94.7709 45.6695 95.1893 45.5021 95.5659C45.2929 95.9424 45.1255 96.319 45 96.6537C45.251 96.8211 45.5439 97.0303 45.8787 97.1558C46.2552 97.2813 46.6318 97.4069 47.0084 97.4906C47.4268 97.5742 47.8033 97.6161 48.1381 97.6579C48.5146 97.6998 48.8494 97.7416 49.1004 97.7416ZM50.8577 91.1307V97.6998C51.0669 97.6998 51.318 97.7416 51.569 97.6998C51.8201 97.6998 52.113 97.6579 52.364 97.6161C52.8243 97.5324 53.3682 97.4069 53.7866 97.2813C54.2469 97.114 54.6653 96.9048 54.9582 96.6537C54.4561 95.4403 53.9121 94.478 53.3682 93.5575C52.8243 92.637 52.1967 91.842 51.5272 91.1726V91.1307H50.8577ZM46.3389 91.5073V91.4654C46.046 91.591 45.7531 91.8002 45.4184 91.9257C45.1255 92.0512 44.749 92.2186 44.4561 92.3859C43.8703 92.6788 43.2845 93.0136 42.6987 93.3901C42.1548 93.7667 41.6109 94.1851 41.1506 94.6035C41.318 94.7709 41.5272 94.9383 41.6946 95.0638C41.8619 95.1893 42.0711 95.3567 42.2803 95.524C42.4477 95.6077 42.6569 95.7332 42.8661 95.9006C43.0753 96.0261 43.3264 96.1935 43.5774 96.3608C43.9121 95.6077 44.2469 94.8127 44.6653 94.1014C45.0837 93.3483 45.5439 92.637 46.0042 92.0094C46.046 91.9257 46.0879 91.842 46.1715 91.7583C46.2134 91.7165 46.2552 91.591 46.3389 91.5073ZM59.1423 94.6035V94.5617C58.0962 93.7667 57.1757 93.0972 56.2552 92.6788C55.3347 92.2604 54.4142 91.842 53.5774 91.5073C54.2469 92.1767 54.8326 93.0136 55.2092 93.8085C55.6276 94.6454 56.046 95.524 56.3808 96.3608C56.5481 96.2772 56.7573 96.1935 57.0084 96.0261C57.2176 95.9006 57.5105 95.7751 57.7615 95.6495C58.0126 95.4822 58.2218 95.3148 58.4728 95.1475C58.7238 94.9383 58.9749 94.7709 59.1423 94.6035ZM58.431 103.934H63.2427C63.2427 102.386 62.9079 100.922 62.2803 99.4152C61.6946 97.9508 60.8577 96.7374 59.8117 95.6914V95.6495C59.6025 95.9843 59.3096 96.2772 59.0167 96.4864C58.682 96.6956 58.3891 96.8629 58.0544 97.0303C57.8452 97.1558 57.636 97.3232 57.4268 97.4069C57.2176 97.5324 56.9247 97.6161 56.7155 97.7416C56.8828 98.0763 57.0502 98.4529 57.2176 98.7876C57.3431 99.1642 57.5523 99.5826 57.636 99.9592C57.887 100.629 58.0544 101.34 58.2218 102.051C58.3473 102.679 58.431 103.348 58.431 103.934ZM43.2845 97.7416V97.6998C42.9498 97.5324 42.5732 97.4069 42.2803 97.2395C41.9874 97.0303 41.6946 96.8211 41.4435 96.6537C41.1925 96.5282 40.9414 96.3608 40.7322 96.1935C40.523 96.0261 40.3556 95.8588 40.1883 95.6914C39.1004 96.7374 38.3054 97.909 37.8033 99.2897C37.2594 100.67 36.8828 102.219 36.7155 103.892H41.8619C41.8619 102.721 42.0293 101.591 42.3222 100.461C42.5732 99.2897 42.9498 98.4111 43.2845 97.7416ZM49.1004 103.892V99.0805C48.7657 99.1224 48.3473 99.1224 47.9707 99.0805C47.5523 99.0387 47.1339 98.9131 46.7573 98.7876C46.4226 98.7039 46.0042 98.6203 45.6695 98.4947C45.2929 98.4111 44.9163 98.2437 44.6234 98.0763C44.3724 98.4947 44.1632 98.9968 43.9958 99.5408C43.7866 100.043 43.6611 100.587 43.5356 101.089C43.4519 101.591 43.41 102.135 43.3682 102.595C43.3264 103.055 43.2845 103.516 43.2845 103.892H49.1004ZM50.8577 99.1642V103.892H57.0502C57.0502 103.641 57.0502 103.348 57.0084 103.014C56.9247 102.721 56.8828 102.344 56.841 102.009C56.7155 101.507 56.59 100.963 56.4226 100.461C56.2552 100.001 56.0879 99.5408 55.8787 99.1642C55.795 98.955 55.7113 98.7039 55.6276 98.5366C55.5021 98.3274 55.3766 98.2018 55.2929 98.0763C54.8326 98.4111 54.205 98.6203 53.4519 98.7876C52.7406 98.955 51.9038 99.1224 51.1506 99.1642H50.8577ZM41.8619 105.273H36.7155C36.7155 105.984 36.841 106.779 37.0502 107.742C37.2594 108.746 37.6778 109.666 38.1381 110.67C38.3473 111.173 38.5983 111.675 38.8494 112.177C39.1423 112.637 39.477 113.139 39.8117 113.599C40.0628 113.432 40.3138 113.306 40.523 113.181C40.7741 113.055 41.0669 112.888 41.318 112.763C41.6109 112.637 41.9038 112.511 42.2385 112.344C42.5314 112.219 42.9079 112.051 43.2845 111.884C42.9498 110.838 42.5732 109.834 42.3222 108.704C42.0293 107.616 41.8619 106.528 41.8619 105.315V105.273ZM49.1004 110.168V105.273H43.2845C43.2845 105.608 43.3264 106.11 43.41 106.612C43.4519 107.114 43.5774 107.658 43.6611 108.202C43.8285 108.788 43.954 109.373 44.1213 109.875C44.2887 110.378 44.4561 110.796 44.6234 111.173C45.3766 110.88 46.1297 110.67 46.6318 110.545C47.1757 110.378 47.6778 110.252 48.1799 110.21H48.6402C48.8075 110.168 48.9749 110.168 49.1004 110.168ZM50.8577 105.273V110.127C51.1506 110.168 51.4854 110.21 51.8201 110.252C52.1967 110.294 52.6569 110.378 53.0335 110.461L53.6611 110.587C53.8703 110.67 54.1213 110.712 54.3305 110.754C54.5816 110.838 54.8326 110.88 55.0837 110.963C55.2929 111.047 55.5021 111.089 55.6695 111.173C56.2134 109.792 56.5481 108.662 56.7573 107.7C56.9665 106.779 57.0502 105.984 57.0502 105.315V105.273H50.8577ZM63.2427 105.315V105.273H58.431V105.524C58.3891 106.319 58.2636 107.24 58.0962 108.202C57.9289 109.122 57.5523 110.21 57.0502 111.549C57.7197 111.884 58.3473 112.219 58.8494 112.553C59.3515 112.888 59.8117 113.265 60.1464 113.599C60.8577 112.888 61.4854 111.926 62.0293 110.67C62.5732 109.457 62.9498 108.202 63.159 106.863C63.2008 106.612 63.2008 106.361 63.2427 106.11V105.315ZM49.1004 118.034V111.507C48.0544 111.675 47.1757 111.884 46.5063 112.051C45.8368 112.219 45.3347 112.386 45 112.553C45.251 113.181 45.5021 113.725 45.7531 114.227C46.0042 114.687 46.2971 115.189 46.5481 115.608C46.6318 115.775 46.7992 115.942 46.9247 116.152C47.0502 116.319 47.1339 116.528 47.2594 116.696C47.3849 116.905 47.5105 117.156 47.636 117.407C47.8033 117.616 47.9289 117.867 48.0962 118.034H49.1004ZM50.8577 118.034H51.8201C52.1967 117.742 52.5732 117.323 52.8661 116.863C53.2008 116.403 53.5774 115.859 53.8285 115.399C54.1213 114.855 54.4142 114.352 54.6653 113.85C54.9163 113.348 55.1255 112.888 55.2929 112.553C54.8326 112.386 54.205 112.219 53.5774 112.051C52.9498 111.884 52.0711 111.716 50.8577 111.549V118.034ZM59.1423 114.604V114.562C59.0586 114.436 58.8912 114.269 58.7657 114.143C58.6402 114.018 58.431 113.85 58.2218 113.725C58.0544 113.599 57.8452 113.474 57.5941 113.348C57.3431 113.223 57.0084 113.055 56.7155 112.888C56.5481 113.223 56.2552 113.809 55.8368 114.604C55.4603 115.399 54.7908 116.361 53.954 117.407C55 117.24 55.9205 116.863 56.7573 116.361C57.6778 115.901 58.4728 115.273 59.1423 114.604ZM43.5774 113.265V113.223C43.2845 113.39 42.8243 113.599 42.364 113.809C41.8619 114.018 41.318 114.269 40.8159 114.604C41.1088 114.855 41.4017 115.106 41.6527 115.273C41.9038 115.482 42.1967 115.65 42.4477 115.817C42.9079 116.11 43.4519 116.403 43.9958 116.654C44.5397 116.905 45.2092 117.156 46.046 117.407C45.7531 117.072 45.5439 116.654 45.3347 116.319C45.1255 115.984 44.8745 115.65 44.6653 115.315C44.4561 114.98 44.2887 114.604 44.1213 114.269C43.9121 113.934 43.7448 113.599 43.5774 113.265Z"
fill="white"
/>
</g>
<defs>
<filter
id="filter0_d"
x="0"
y="0"
width="190"
height="165"
filterUnits="userSpaceOnUse"
color-interpolation-filters="sRGB"
>
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feColorMatrix
in="SourceAlpha"
type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
/>
<feOffset dy="8" />
<feGaussianBlur stdDeviation="10" />
<feColorMatrix
type="matrix"
values="0 0 0 0 0.0627451 0 0 0 0 0.823529 0 0 0 0 0.592157 0 0 0 0.2 0"
/>
<feBlend
mode="normal"
in2="BackgroundImageFix"
result="effect1_dropShadow"
/>
<feBlend
mode="normal"
in="SourceGraphic"
in2="effect1_dropShadow"
result="shape"
/>
</filter>
<linearGradient
id="paint0_linear1"
x1="170"
y1="12"
x2="20"
y2="131"
gradientUnits="userSpaceOnUse"
>
<stop stop-color="#3582FF" />
<stop offset="1" stop-color="#441DFC" />
</linearGradient>
<linearGradient
id="paint1_linear"
x1="20"
y1="137"
x2="187.132"
y2="42.2049"
gradientUnits="userSpaceOnUse"
>
<stop stop-color="#8EFC67" />
<stop offset="1" stop-color="#F6815B" />
</linearGradient>
</defs>
</svg>
<p class="description-domain">
Centre of your digital eco-system, like a brick and mortar location.
The powerhouse of creative solutions for interfaces.
</p>
</div>
<div class="domain">
<!-- <img class="domain-icon" src="Assets/Domains-Page/Android.svg"> -->
<svg
width="190"
height="165"
viewBox="0 0 190 165"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g id="android">
<g id="Group">
<g id="Rectangle 2" filter="url(#filter0_d)">
<rect
x="20"
y="12"
width="150"
height="125"
rx="10"
fill="url(#paint0_lineara)"
/>
</g>
<mask
id="mask0"
mask-type="alpha"
maskUnits="userSpaceOnUse"
x="20"
y="12"
width="150"
height="125"
>
<rect
id="Rectangle 2.1"
x="20"
y="12"
width="150"
height="125"
rx="10"
fill="url(#paint1_linear)"
/>
</mask>
<g mask="url(#mask0)">
<path
id="upper-wave"
opacity="0.15"
d="M37.6321 75.9413C22.0508 61.0057 10.0391 63.8466 3.06175 67.4186C1.69456 85.6478 -0.219502 124.095 3.06175 132.049C7.16331 141.993 44.0774 146.254 69.2727 151.225C89.4289 155.203 177.28 159.275 215.757 151.225C219.859 120.686 225.601 25.3731 215.757 24.805C203.452 24.0947 174.715 41.4801 154.766 81.963C128.691 134.875 118.438 63.1364 89.4336 54.9687C72.8429 50.2967 53.2408 90.9033 37.6321 75.9413Z"
fill="white"
/>
<path
id="lower-wave"
opacity="0.15"
d="M37.5781 84.4641C24.9116 77.8958 13.8039 83.9906 5.4055 84.4641C4.03831 102.693 2.12425 141.14 5.4055 149.095C9.50706 159.038 46.4211 163.299 71.6164 168.271C91.7727 172.248 179.624 157.144 218.101 149.095C222.202 118.555 227.945 42.4186 218.101 41.8504C205.796 41.1402 177.059 58.5256 157.109 99.0085C131.035 151.92 89.7266 139.136 75.0781 120.67C63.2727 105.788 53.9844 92.9716 37.5781 84.4641Z"
fill="white"
/>
</g>
</g>
<path
id="Vector"
d="M37.5483 113.481C37.5483 114.395 38.2946 115.142 39.2128 115.142H41.1157V119.846C41.1157 121.038 42.0729 122.011 43.249 122.011C44.429 122.011 45.3824 121.042 45.3824 119.846V115.138H48.7036V119.842C48.7036 121.034 49.6608 122.007 50.8369 122.007C52.0169 122.007 52.9703 121.038 52.9703 119.842V115.138H54.8731C55.7913 115.138 56.5376 114.391 56.5376 113.477V98.0357H37.5483V113.481ZM51.5012 90.0336L53.2555 87.4939C53.3571 87.3454 53.3337 87.1461 53.1969 87.0484C53.0602 86.9547 52.8648 87.0016 52.7632 87.15L50.9424 89.7913C49.7429 89.3186 48.4066 89.0568 47.0039 89.0568C45.6012 89.0568 44.2649 89.3186 43.0654 89.7913L41.2446 87.1539C41.143 87.0055 40.9476 86.9547 40.8109 87.0524C40.6741 87.1461 40.6507 87.3415 40.7523 87.4978L42.5066 90.0375C39.7168 91.3347 37.7632 93.7924 37.5132 96.6642H56.5025C56.2446 93.7885 54.287 91.3308 51.5012 90.0336ZM42.995 94.0385C42.7872 94.0385 42.584 93.9769 42.4111 93.8614C42.2383 93.7459 42.1035 93.5818 42.024 93.3897C41.9444 93.1977 41.9236 92.9863 41.9642 92.7824C42.0047 92.5786 42.1048 92.3913 42.2518 92.2443C42.3988 92.0973 42.5861 91.9972 42.79 91.9566C42.9939 91.9161 43.2052 91.9369 43.3973 92.0164C43.5893 92.096 43.7535 92.2307 43.869 92.4036C43.9845 92.5764 44.0461 92.7796 44.0461 92.9875C44.0454 93.266 43.9344 93.5329 43.7375 93.7299C43.5405 93.9269 43.2736 94.0378 42.995 94.0385ZM51.1378 94.0385C50.9299 94.0385 50.7267 93.9769 50.5539 93.8614C50.381 93.7459 50.2463 93.5818 50.1667 93.3897C50.0872 93.1977 50.0664 92.9863 50.1069 92.7824C50.1475 92.5786 50.2476 92.3913 50.3946 92.2443C50.5416 92.0973 50.7289 91.9972 50.9327 91.9566C51.1366 91.9161 51.348 91.9369 51.54 92.0164C51.7321 92.096 51.8962 92.2307 52.0117 92.4036C52.1272 92.5764 52.1888 92.7796 52.1888 92.9875C52.1881 93.266 52.0772 93.5329 51.8802 93.7299C51.6832 93.9269 51.4163 94.0378 51.1378 94.0385ZM59.8666 97.9732C58.6866 97.9732 57.7333 98.9422 57.7333 100.138V108.593C57.7333 109.785 58.6905 110.758 59.8666 110.758C61.0466 110.758 62 109.789 62 108.593V100.134C62.0039 98.9383 61.0505 97.9732 59.8666 97.9732ZM34.1334 97.9732C32.9534 97.9732 32 98.9422 32 100.138V108.593C32 109.785 32.9573 110.758 34.1334 110.758C35.3134 110.758 36.2667 109.789 36.2667 108.593V100.134C36.2667 98.9383 35.3095 97.9732 34.1334 97.9732Z"
fill="white"
/>
<path
id="Android"
d="M32.6328 43H35.4189L36.3594 39.9238H40.833L41.7734 43H44.5684L40.1562 30.3174H37.0361L32.6328 43ZM38.5215 32.8486H38.6797L40.2266 37.9375H36.9658L38.5215 32.8486ZM46.0588 43H48.6252V37.4014C48.6252 36.0918 49.3459 35.2393 50.5324 35.2393C51.7453 35.2393 52.3078 35.96 52.3078 37.3223V43H54.8742V36.7422C54.8742 34.4307 53.7141 33.1123 51.5608 33.1123C50.1809 33.1123 49.2229 33.7715 48.7834 34.8174H48.6252V33.3232H46.0588V43ZM60.4076 43.1494C61.7699 43.1494 62.7983 42.543 63.2992 41.4971H63.4574V43H66.0238V29.623H63.4574V34.8701H63.2992C62.8158 33.8154 61.7348 33.165 60.4076 33.165C57.9555 33.165 56.4789 35.0371 56.4789 38.1484V38.166C56.4789 41.2598 57.9906 43.1494 60.4076 43.1494ZM61.2778 41.0225C59.9242 41.0225 59.0893 39.9502 59.0893 38.166V38.1484C59.0893 36.3818 59.9242 35.292 61.2778 35.292C62.6313 35.292 63.4838 36.3818 63.4838 38.1572V38.1748C63.4838 39.9502 62.6401 41.0225 61.2778 41.0225ZM68.2701 43H70.8365V37.5859C70.8365 36.2148 71.7594 35.3799 73.2184 35.3799C73.6139 35.3799 74.0094 35.4414 74.3961 35.5293V33.2881C74.1412 33.2178 73.7809 33.165 73.4381 33.165C72.1813 33.165 71.3024 33.7803 70.9948 34.8262H70.8365V33.3232H68.2701V43ZM79.7713 43.2021C82.7508 43.2021 84.5438 41.3213 84.5438 38.166V38.1484C84.5438 35.0195 82.7244 33.1123 79.7713 33.1123C76.8182 33.1123 74.9989 35.0283 74.9989 38.1484V38.166C74.9989 41.3125 76.7918 43.2021 79.7713 43.2021ZM79.7713 41.1895C78.4002 41.1895 77.6268 40.0732 77.6268 38.166V38.1484C77.6268 36.2588 78.409 35.125 79.7713 35.125C81.1248 35.125 81.9159 36.2588 81.9159 38.1484V38.166C81.9159 40.0732 81.1336 41.1895 79.7713 41.1895ZM87.5371 31.8379C88.3282 31.8379 88.9786 31.2051 88.9786 30.4141C88.9786 29.6143 88.3282 28.9814 87.5371 28.9814C86.7461 28.9814 86.087 29.6143 86.087 30.4141C86.087 31.2051 86.7461 31.8379 87.5371 31.8379ZM86.2452 43H88.8116V33.3232H86.2452V43ZM94.4417 43.1494C95.804 43.1494 96.8323 42.543 97.3333 41.4971H97.4915V43H100.058V29.623H97.4915V34.8701H97.3333C96.8499 33.8154 95.7688 33.165 94.4417 33.165C91.9895 33.165 90.5129 35.0371 90.5129 38.1484V38.166C90.5129 41.2598 92.0247 43.1494 94.4417 43.1494ZM95.3118 41.0225C93.9583 41.0225 93.1233 39.9502 93.1233 38.166V38.1484C93.1233 36.3818 93.9583 35.292 95.3118 35.292C96.6653 35.292 97.5178 36.3818 97.5178 38.1572V38.1748C97.5178 39.9502 96.6741 41.0225 95.3118 41.0225Z"
fill="white"
/>
</g>
<defs>
<filter
id="filter0_d"
x="0"
y="0"
width="190"
height="165"
filterUnits="userSpaceOnUse"
color-interpolation-filters="sRGB"
>
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feColorMatrix
in="SourceAlpha"
type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
/>
<feOffset dy="8" />
<feGaussianBlur stdDeviation="10" />
<feColorMatrix
type="matrix"
values="0 0 0 0 0.0627451 0 0 0 0 0.823529 0 0 0 0 0.592157 0 0 0 0.2 0"
/>
<feBlend
mode="normal"
in2="BackgroundImageFix"
result="effect1_dropShadow"
/>
<feBlend
mode="normal"
in="SourceGraphic"
in2="effect1_dropShadow"
result="shape"
/>
</filter>
<linearGradient
id="paint0_lineara"
x1="170"
y1="12"
x2="20"
y2="131"
gradientUnits="userSpaceOnUse"
>
<stop stop-color="#F6815B" />
<stop offset="1" stop-color="#A61CE8" />
</linearGradient>
<linearGradient
id="paint1_linear"
x1="20"
y1="137"
x2="187.132"
y2="42.2049"
gradientUnits="userSpaceOnUse"
>
<stop stop-color="#8EFC67" />
<stop offset="1" stop-color="#F6815B" />
</linearGradient>
</defs>
</svg>
<p class="description-domain">
The enabling centerpiece of digital convergence. The easiest portal
into your digital self.
</p>
</div>
<div class="domain">
<!-- <img class="domain-icon" src="Assets/Domains-Page/ML.svg"> -->
<svg
width="190"
height="165"
viewBox="0 0 190 165"
fill="none"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<g id="ML">
<path
id="Events"
d="M45.9404 46.8115H40.1924V43.6035H45.6152V41.5645H40.1924V38.5059H45.9404V36.3174H37.5381V49H45.9404V46.8115ZM56.8352 39.3232H54.1369L52.1506 46.6006H51.9924L49.9885 39.3232H47.2375L50.6037 49H53.4865L56.8352 39.3232ZM64.0209 46.2666C63.7485 46.9258 63.0541 47.2949 62.0434 47.2949C60.7074 47.2949 59.8637 46.3721 59.8285 44.8955V44.7637H66.4819V43.999C66.4819 40.9404 64.7944 39.1123 61.9379 39.1123C59.0551 39.1123 57.2797 41.0635 57.2797 44.21C57.2797 47.3389 59.0199 49.2021 61.9731 49.2021C64.3461 49.2021 66.0248 48.0684 66.4028 46.2666H64.0209ZM61.9467 41.0195C63.142 41.0195 63.9154 41.8457 63.9682 43.1729H59.8373C59.9252 41.8721 60.7602 41.0195 61.9467 41.0195ZM68.1744 49H70.7321V43.4014C70.7321 42.0918 71.4615 41.248 72.6481 41.248C73.861 41.248 74.4323 41.96 74.4323 43.3223V49H76.9899V42.7422C76.9899 40.4307 75.8297 39.1123 73.6764 39.1123C72.2438 39.1123 71.2594 39.7891 70.8112 40.8789H70.653V39.3232H68.1744V49ZM79.7987 37.0117V39.4111H78.2869V41.3535H79.7987V46.3896C79.7987 48.2705 80.7303 49.0352 83.0858 49.0352C83.578 49.0352 84.0526 48.9824 84.369 48.9209V47.0312C84.1229 47.0576 83.9471 47.0752 83.6131 47.0752C82.743 47.0752 82.3563 46.6709 82.3563 45.8008V41.3535H84.369V39.4111H82.3563V37.0117H79.7987ZM85.7891 42.1445C85.7891 43.6299 86.7032 44.5176 88.584 44.9307L90.3418 45.3262C91.1944 45.5195 91.5635 45.8184 91.5635 46.3105C91.5635 46.9521 90.878 47.3916 89.8848 47.3916C88.8653 47.3916 88.2412 46.9961 88.0479 46.3281H85.5518C85.7276 48.1562 87.2745 49.2021 89.8321 49.2021C92.3721 49.2021 94.1036 47.9541 94.1036 46.0381C94.1036 44.5967 93.2598 43.8057 91.3789 43.3926L89.5596 42.9971C88.6631 42.7949 88.25 42.4873 88.25 41.9951C88.25 41.3623 88.9268 40.9316 89.8409 40.9316C90.7901 40.9316 91.3789 41.3271 91.5108 41.9688H93.875C93.7344 40.1406 92.2842 39.1123 89.8233 39.1123C87.4063 39.1123 85.7891 40.334 85.7891 42.1445Z"
fill="white"
/>
<rect
id="icons8-event-48 1"
x="35"
y="90"
width="30"
height="30"
fill="url(#pattern0)"
/>
<path
id="Events_2"
d="M45.9404 46.8115H40.1924V43.6035H45.6152V41.5645H40.1924V38.5059H45.9404V36.3174H37.5381V49H45.9404V46.8115ZM56.8352 39.3232H54.1369L52.1506 46.6006H51.9924L49.9885 39.3232H47.2375L50.6037 49H53.4865L56.8352 39.3232ZM64.0209 46.2666C63.7485 46.9258 63.0541 47.2949 62.0434 47.2949C60.7074 47.2949 59.8637 46.3721 59.8285 44.8955V44.7637H66.4819V43.999C66.4819 40.9404 64.7944 39.1123 61.9379 39.1123C59.0551 39.1123 57.2797 41.0635 57.2797 44.21C57.2797 47.3389 59.0199 49.2021 61.9731 49.2021C64.3461 49.2021 66.0248 48.0684 66.4028 46.2666H64.0209ZM61.9467 41.0195C63.142 41.0195 63.9154 41.8457 63.9682 43.1729H59.8373C59.9252 41.8721 60.7602 41.0195 61.9467 41.0195ZM68.1744 49H70.7321V43.4014C70.7321 42.0918 71.4615 41.248 72.6481 41.248C73.861 41.248 74.4323 41.96 74.4323 43.3223V49H76.9899V42.7422C76.9899 40.4307 75.8297 39.1123 73.6764 39.1123C72.2438 39.1123 71.2594 39.7891 70.8112 40.8789H70.653V39.3232H68.1744V49ZM79.7987 37.0117V39.4111H78.2869V41.3535H79.7987V46.3896C79.7987 48.2705 80.7303 49.0352 83.0858 49.0352C83.578 49.0352 84.0526 48.9824 84.369 48.9209V47.0312C84.1229 47.0576 83.9471 47.0752 83.6131 47.0752C82.743 47.0752 82.3563 46.6709 82.3563 45.8008V41.3535H84.369V39.4111H82.3563V37.0117H79.7987ZM85.7891 42.1445C85.7891 43.6299 86.7032 44.5176 88.584 44.9307L90.3418 45.3262C91.1944 45.5195 91.5635 45.8184 91.5635 46.3105C91.5635 46.9521 90.878 47.3916 89.8848 47.3916C88.8653 47.3916 88.2412 46.9961 88.0479 46.3281H85.5518C85.7276 48.1562 87.2745 49.2021 89.8321 49.2021C92.3721 49.2021 94.1036 47.9541 94.1036 46.0381C94.1036 44.5967 93.2598 43.8057 91.3789 43.3926L89.5596 42.9971C88.6631 42.7949 88.25 42.4873 88.25 41.9951C88.25 41.3623 88.9268 40.9316 89.8409 40.9316C90.7901 40.9316 91.3789 41.3271 91.5108 41.9688H93.875C93.7344 40.1406 92.2842 39.1123 89.8233 39.1123C87.4063 39.1123 85.7891 40.334 85.7891 42.1445Z"
fill="white"
/>
<rect
id="icons8-event-48 3"
x="35"
y="90"
width="30"
height="30"
fill="url(#pattern1)"
/>
<path
id="Events_3"
d="M45.9404 46.8115H40.1924V43.6035H45.6152V41.5645H40.1924V38.5059H45.9404V36.3174H37.5381V49H45.9404V46.8115ZM56.8352 39.3232H54.1369L52.1506 46.6006H51.9924L49.9885 39.3232H47.2375L50.6037 49H53.4865L56.8352 39.3232ZM64.0209 46.2666C63.7485 46.9258 63.0541 47.2949 62.0434 47.2949C60.7074 47.2949 59.8637 46.3721 59.8285 44.8955V44.7637H66.4819V43.999C66.4819 40.9404 64.7944 39.1123 61.9379 39.1123C59.0551 39.1123 57.2797 41.0635 57.2797 44.21C57.2797 47.3389 59.0199 49.2021 61.9731 49.2021C64.3461 49.2021 66.0248 48.0684 66.4028 46.2666H64.0209ZM61.9467 41.0195C63.142 41.0195 63.9154 41.8457 63.9682 43.1729H59.8373C59.9252 41.8721 60.7602 41.0195 61.9467 41.0195ZM68.1744 49H70.7321V43.4014C70.7321 42.0918 71.4615 41.248 72.6481 41.248C73.861 41.248 74.4323 41.96 74.4323 43.3223V49H76.9899V42.7422C76.9899 40.4307 75.8297 39.1123 73.6764 39.1123C72.2438 39.1123 71.2594 39.7891 70.8112 40.8789H70.653V39.3232H68.1744V49ZM79.7987 37.0117V39.4111H78.2869V41.3535H79.7987V46.3896C79.7987 48.2705 80.7303 49.0352 83.0858 49.0352C83.578 49.0352 84.0526 48.9824 84.369 48.9209V47.0312C84.1229 47.0576 83.9471 47.0752 83.6131 47.0752C82.743 47.0752 82.3563 46.6709 82.3563 45.8008V41.3535H84.369V39.4111H82.3563V37.0117H79.7987ZM85.7891 42.1445C85.7891 43.6299 86.7032 44.5176 88.584 44.9307L90.3418 45.3262C91.1944 45.5195 91.5635 45.8184 91.5635 46.3105C91.5635 46.9521 90.878 47.3916 89.8848 47.3916C88.8653 47.3916 88.2412 46.9961 88.0479 46.3281H85.5518C85.7276 48.1562 87.2745 49.2021 89.8321 49.2021C92.3721 49.2021 94.1036 47.9541 94.1036 46.0381C94.1036 44.5967 93.2598 43.8057 91.3789 43.3926L89.5596 42.9971C88.6631 42.7949 88.25 42.4873 88.25 41.9951C88.25 41.3623 88.9268 40.9316 89.8409 40.9316C90.7901 40.9316 91.3789 41.3271 91.5108 41.9688H93.875C93.7344 40.1406 92.2842 39.1123 89.8233 39.1123C87.4063 39.1123 85.7891 40.334 85.7891 42.1445Z"
fill="white"
/>
<rect
id="icons8-event-48 2"
x="35"
y="90"
width="30"
height="30"
fill="url(#pattern2)"
/>
<g id="Group">
<g id="Rectangle 2" filter="url(#filter0_d)">
<rect
x="20"
y="12"
width="150"
height="125"
rx="10"
fill="url(#paint0_linearm)"
/>
</g>
<mask
id="mask0"
mask-type="alpha"
maskUnits="userSpaceOnUse"
x="20"
y="12"
width="150"
height="125"
>
<rect
id="Rectangle 2.1"
x="20"
y="12"
width="150"
height="125"
rx="10"
fill="url(#paint1_linear)"
/>
</mask>
<g mask="url(#mask0)">
<path
id="upper-wave"
opacity="0.15"
d="M37.6321 75.9413C22.0508 61.0057 10.0391 63.8466 3.06175 67.4186C1.69456 85.6478 -0.219502 124.095 3.06175 132.049C7.16331 141.993 44.0774 146.254 69.2727 151.225C89.4289 155.203 177.28 159.275 215.757 151.225C219.859 120.686 225.601 25.3731 215.757 24.805C203.452 24.0947 174.715 41.4801 154.766 81.963C128.691 134.875 118.438 63.1364 89.4336 54.9687C72.8429 50.2967 53.2408 90.9033 37.6321 75.9413Z"
fill="white"
/>
<path
id="lower-wave"
opacity="0.15"
d="M37.5781 84.4641C24.9116 77.8958 13.8039 83.9906 5.4055 84.4641C4.03831 102.693 2.12425 141.14 5.4055 149.095C9.50706 159.038 46.4211 163.299 71.6164 168.271C91.7727 172.248 179.624 157.144 218.101 149.095C222.202 118.555 227.945 42.4186 218.101 41.8504C205.796 41.1402 177.059 58.5256 157.109 99.0085C131.035 151.92 89.7266 139.136 75.0781 120.67C63.2727 105.788 53.9844 92.9715 37.5781 84.4641Z"
fill="white"
/>
</g>
</g>
<g id="Group 28">
<path
id="Icon awesome-robot"
d="M32 105.004V111.504C32.0067 111.724 32.0568 111.941 32.1472 112.142C32.2377 112.343 32.3669 112.524 32.5274 112.675C32.6878 112.826 32.8765 112.943 33.0825 113.021C33.2885 113.099 33.5078 113.136 33.728 113.129H35.456V103.381H33.728C33.2837 103.367 32.8521 103.531 32.5281 103.835C32.204 104.139 32.0141 104.56 32 105.004ZM57.058 96.8801H51.009V93.6291C50.983 93.1884 50.7896 92.7743 50.4684 92.4715C50.1472 92.1687 49.7225 92 49.281 92C48.8395 92 48.4148 92.1687 48.0936 92.4715C47.7723 92.7743 47.579 93.1884 47.553 93.6291V96.8801H41.5C40.3888 96.8478 39.3101 97.2573 38.5004 98.0189C37.6906 98.7805 37.2158 99.8321 37.18 100.943V114.758C37.21 115.647 37.5911 116.488 38.2399 117.096C38.8886 117.705 39.752 118.031 40.641 118.004H57.922C58.811 118.03 59.6738 117.702 60.3216 117.093C60.9694 116.483 61.3493 115.642 61.378 114.753V100.943C61.3422 99.8321 60.8674 98.7805 60.0576 98.0189C59.2479 97.2573 58.1692 96.8478 57.058 96.8801ZM45.825 113.132H42.369V111.504H45.825V113.132ZM44.1 107.038C43.5435 107.055 43.003 106.85 42.5974 106.469C42.1918 106.088 41.9542 105.561 41.937 105.004C41.9548 104.449 42.1921 103.923 42.597 103.542C43.0019 103.161 43.5413 102.956 44.097 102.972C44.6527 102.956 45.1921 103.161 45.597 103.542C46.0019 103.923 46.2392 104.449 46.257 105.004C46.2397 105.56 46.003 106.086 45.5987 106.467C45.1944 106.848 44.6555 107.053 44.1 107.038ZM51.012 113.133H47.553V111.504H51.009L51.012 113.133ZM56.196 113.133H52.737V111.504H56.193L56.196 113.133ZM54.468 107.038C53.9115 107.055 53.371 106.85 52.9654 106.469C52.5598 106.088 52.3222 105.561 52.305 105.004C52.3385 104.454 52.5806 103.937 52.982 103.56C53.3834 103.182 53.9138 102.972 54.465 102.972C55.0162 102.972 55.5466 103.182 55.948 103.56C56.3493 103.937 56.5915 104.454 56.625 105.004C56.6077 105.56 56.3708 106.086 55.966 106.468C55.5613 106.849 55.0218 107.054 54.466 107.038H54.468ZM64.837 103.381H63.106V113.133H64.834C65.0546 113.14 65.2744 113.103 65.4807 113.025C65.6871 112.947 65.876 112.829 66.0367 112.678C66.1973 112.526 66.3265 112.345 66.4168 112.143C66.5071 111.942 66.5568 111.725 66.563 111.504V105.004C66.5489 104.56 66.3588 104.139 66.0346 103.835C65.7103 103.53 65.2785 103.367 64.834 103.381H64.837Z"
fill="white"
/>
</g>
<path
id="ML_2"
d="M34.5381 49H36.9023V40.3691H37.0781L40.3301 49H41.9912L45.2432 40.3691H45.4189V49H47.7832V36.3174H44.7422L41.2441 45.5986H41.0859L37.5791 36.3174H34.5381V49ZM50.4602 49H58.757V46.8115H53.1145V36.3174H50.4602V49Z"
fill="white"
/>
</g>
<defs>
<pattern
id="pattern0"
patternContentUnits="objectBoundingBox"
width="1"
height="1"
>
<use xlink:href="#image0" transform="scale(0.0208333)" />
</pattern>
<pattern
id="pattern1"
patternContentUnits="objectBoundingBox"
width="1"
height="1"
>
<use xlink:href="#image0" transform="scale(0.0208333)" />
</pattern>
<pattern
id="pattern2"
patternContentUnits="objectBoundingBox"
width="1"
height="1"
>
<use xlink:href="#image0" transform="scale(0.0208333)" />
</pattern>
<filter
id="filter0_d"
x="0"
y="0"
width="190"
height="165"
filterUnits="userSpaceOnUse"
color-interpolation-filters="sRGB"
>
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feColorMatrix
in="SourceAlpha"
type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
/>
<feOffset dy="8" />
<feGaussianBlur stdDeviation="10" />
<feColorMatrix
type="matrix"
values="0 0 0 0 0.0627451 0 0 0 0 0.823529 0 0 0 0 0.592157 0 0 0 0.2 0"
/>
<feBlend
mode="normal"
in2="BackgroundImageFix"
result="effect1_dropShadow"
/>
<feBlend
mode="normal"
in="SourceGraphic"
in2="effect1_dropShadow"
result="shape"
/>
</filter>
<linearGradient
id="paint0_linearm"
x1="170"
y1="12"
x2="20"
y2="131"
gradientUnits="userSpaceOnUse"
>
<stop stop-color="#F43232" />
<stop offset="1" stop-color="#F800B2" />
</linearGradient>
<linearGradient
id="paint1_linear"
x1="20"
y1="137"
x2="187.132"
y2="42.2049"
gradientUnits="userSpaceOnUse"
>
<stop stop-color="#8EFC67" />
<stop offset="1" stop-color="#F6815B" />
</linearGradient>
<image
id="image0"
data-name="icons8-event-48.png"
width="48"
height="48"
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAABmJLR0QA/wD/AP+gvaeTAAAA5UlEQVRoge2Z0Q3DMAhED6tDdLF2jHZsZ4vrV6v+UJAdi9Dw/qIYxOkCyIrACUl+P4uIeGNX5m97FhFBCYimBETTSN5JdipYCbQ4LxP5O8mbkOwArlqC9zjTxpyniF9M5t/EKsCax3sJGM2fvgdMB45OegdKQDQNwBZdxAS9AXggp4gO4PmZwdoiOQpafX/RA6lJL+DiPWj1yOr3GukdKAHR1B6Ixj2FRpm98Vmcx4FVc3w2Pr0DJSAadw9Y3+TsNBmNP48Do6ze6OdxoO4DiygB0dR9IJoSEI26B7L8uUnvQAmI5gVu2PvIL3no+gAAAABJRU5ErkJggg=="
/>
</defs>
</svg>
<p class="description-domain">
Learn automatically without being programmed explicitly, where the
future of technology waits for you.
</p>
</div>
<div class="domain">
<!-- <img class="domain-icon" src="Assets/Domains-Page/Video.svg"> -->
<svg
width="190"
height="165"
viewBox="0 0 190 165"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g id="video">
<g id="Group">
<g id="Rectangle 2" filter="url(#filter0_d)">
<rect
x="20"
y="12"
width="150"
height="125"
rx="10"
fill="url(#paint0_linearv)"
/>
</g>
<mask
id="mask0"
mask-type="alpha"
maskUnits="userSpaceOnUse"
x="20"
y="12"
width="150"
height="125"
>
<rect
id="Rectangle 2.1"
x="20"
y="12"
width="150"
height="125"
rx="10"
fill="url(#paint1_linear)"
/>
</mask>
<g mask="url(#mask0)">
<path
id="upper-wave"
opacity="0.15"
d="M37.6321 75.9413C22.0508 61.0057 10.0391 63.8466 3.06175 67.4186C1.69456 85.6478 -0.219502 124.095 3.06175 132.049C7.16331 141.993 44.0774 146.254 69.2727 151.225C89.4289 155.203 177.28 159.275 215.757 151.225C219.859 120.686 225.601 25.3731 215.757 24.805C203.452 24.0947 174.715 41.4801 154.766 81.963C128.691 134.875 118.438 63.1364 89.4336 54.9687C72.8429 50.2967 53.2408 90.9033 37.6321 75.9413Z"
fill="white"
/>
<path
id="lower-wave"
opacity="0.15"
d="M37.5781 84.4641C24.9116 77.8958 13.8039 83.9906 5.4055 84.4641C4.03831 102.693 2.12425 141.14 5.4055 149.095C9.50706 159.038 46.4211 163.299 71.6164 168.271C91.7727 172.248 179.624 157.144 218.101 149.095C222.202 118.555 227.945 42.4186 218.101 41.8504C205.796 41.1402 177.059 58.5256 157.109 99.0085C131.035 151.92 89.7266 139.136 75.0781 120.67C63.2727 105.788 53.9844 92.9715 37.5781 84.4641Z"
fill="white"
/>
</g>
</g>
<path
id="Icon material-ondemand-video"
d="M57.757 97.0025H35.476C35.1645 96.9882 34.8532 97.0356 34.56 97.142C34.2668 97.2483 33.9974 97.4114 33.7674 97.622C33.5374 97.8326 33.3512 98.0865 33.2195 98.3693C33.0878 98.652 33.0132 98.9579 33 99.2695V112.869C33.0285 113.498 33.3052 114.09 33.7694 114.515C34.2335 114.94 34.8473 115.163 35.476 115.136H41.665V117.402H51.565V115.139H57.754C58.3807 115.164 58.9916 114.939 59.4531 114.514C59.9146 114.089 60.1892 113.499 60.217 112.872L60.229 99.2725C60.2009 98.6441 59.9251 98.0524 59.4618 97.627C58.9985 97.2015 58.3855 96.977 57.757 97.0025ZM57.757 112.872H46.6165H35.476V99.2695H57.757V112.872ZM51.568 106.072L42.9 110.602V101.536L51.568 106.072Z"
fill="white"
/>
<path
id="Video"
d="M36.8604 49H40.1299L44.3574 36.3174H41.3691L38.5742 46.0469H38.416L35.6123 36.3174H32.6328L36.8604 49ZM47.175 37.8379C47.966 37.8379 48.6164 37.2051 48.6164 36.4141C48.6164 35.6143 47.966 34.9814 47.175 34.9814C46.384 34.9814 45.7248 35.6143 45.7248 36.4141C45.7248 37.2051 46.384 37.8379 47.175 37.8379ZM45.883 49H48.4494V39.3232H45.883V49ZM54.0795 49.1494C55.4418 49.1494 56.4701 48.543 56.9711 47.4971H57.1293V49H59.6957V35.623H57.1293V40.8701H56.9711C56.4877 39.8154 55.4067 39.165 54.0795 39.165C51.6274 39.165 50.1508 41.0371 50.1508 44.1484V44.166C50.1508 47.2598 51.6625 49.1494 54.0795 49.1494ZM54.9496 47.0225C53.5961 47.0225 52.7611 45.9502 52.7611 44.166V44.1484C52.7611 42.3818 53.5961 41.292 54.9496 41.292C56.3031 41.292 57.1557 42.3818 57.1557 44.1572V44.1748C57.1557 45.9502 56.3119 47.0225 54.9496 47.0225ZM66.1959 49.2021C69.026 49.2021 70.274 47.5674 70.5729 46.3545L70.5905 46.2666H68.1998L68.1735 46.3193C67.9977 46.6885 67.3737 47.2861 66.2487 47.2861C64.8864 47.2861 64.0338 46.3633 64.0074 44.7725H70.6696V43.9727C70.6696 41.0459 68.9117 39.1123 66.0905 39.1123C63.2692 39.1123 61.4674 41.0898 61.4674 44.166V44.1748C61.4674 47.2773 63.2516 49.2021 66.1959 49.2021ZM66.1344 41.0371C67.2506 41.0371 68.0504 41.7578 68.2086 43.1641H64.0338C64.192 41.793 65.0182 41.0371 66.1344 41.0371ZM76.66 49.2021C79.6395 49.2021 81.4325 47.3213 81.4325 44.166V44.1484C81.4325 41.0195 79.6131 39.1123 76.66 39.1123C73.7069 39.1123 71.8875 41.0283 71.8875 44.1484V44.166C71.8875 47.3125 73.6805 49.2021 76.66 49.2021ZM76.66 47.1895C75.2889 47.1895 74.5155 46.0732 74.5155 44.166V44.1484C74.5155 42.2588 75.2977 41.125 76.66 41.125C78.0135 41.125 78.8045 42.2588 78.8045 44.1484V44.166C78.8045 46.0732 78.0223 47.1895 76.66 47.1895Z"
fill="white"
/>
</g>
<defs>
<filter
id="filter0_d"
x="0"
y="0"
width="190"
height="165"
filterUnits="userSpaceOnUse"
color-interpolation-filters="sRGB"
>
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feColorMatrix
in="SourceAlpha"
type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
/>
<feOffset dy="8" />
<feGaussianBlur stdDeviation="10" />
<feColorMatrix
type="matrix"
values="0 0 0 0 0.0627451 0 0 0 0 0.823529 0 0 0 0 0.592157 0 0 0 0.2 0"
/>
<feBlend
mode="normal"
in2="BackgroundImageFix"
result="effect1_dropShadow"
/>
<feBlend
mode="normal"
in="SourceGraphic"
in2="effect1_dropShadow"
result="shape"
/>
</filter>
<linearGradient
id="paint0_linearv"
x1="170"
y1="12"
x2="20"
y2="131"
gradientUnits="userSpaceOnUse"
>
<stop stop-color="#3582FF" />
<stop offset="1" stop-color="#441DFC" />
</linearGradient>
<linearGradient
id="paint1_linear"
x1="20"
y1="137"
x2="187.132"
y2="42.2049"
gradientUnits="userSpaceOnUse"
>
<stop stop-color="#8EFC67" />
<stop offset="1" stop-color="#F6815B" />
</linearGradient>
</defs>
</svg>
<p class="description-domain">
An artistic process about storytelling. A process where
extraordinary imagination is the key.
</p>
</div>
<div class="domain">
<!-- <img class="domain-icon" src="Assets/Domains-Page/Design.svg"> -->
<svg
width="190"
height="165"
viewBox="0 0 190 165"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g id="design">
<g id="Group">
<g id="Rectangle 2" filter="url(#filter0_d)">
<rect
x="20"
y="12"
width="150"
height="125"
rx="10"
fill="url(#paint0_lineard)"
/>
</g>
<mask
id="mask0"
mask-type="alpha"
maskUnits="userSpaceOnUse"
x="20"
y="12"
width="150"
height="125"
>
<rect
id="Rectangle 2.1"
x="20"
y="12"
width="150"
height="125"
rx="10"
fill="url(#paint1_linear)"
/>
</mask>
<g mask="url(#mask0)">
<path
id="upper-wave"
opacity="0.15"
d="M37.6321 75.9413C22.0508 61.0057 10.0391 63.8466 3.06175 67.4186C1.69456 85.6478 -0.219502 124.095 3.06175 132.049C7.16331 141.993 44.0774 146.254 69.2727 151.225C89.4289 155.203 177.28 159.275 215.757 151.225C219.859 120.686 225.601 25.3731 215.757 24.805C203.452 24.0947 174.715 41.4801 154.766 81.963C128.691 134.875 118.438 63.1364 89.4336 54.9687C72.8429 50.2967 53.2408 90.9033 37.6321 75.9413Z"
fill="white"
/>
<path
id="lower-wave"
opacity="0.15"
d="M37.5781 84.4641C24.9116 77.8958 13.8039 83.9906 5.4055 84.4641C4.03831 102.693 2.12425 141.14 5.4055 149.095C9.50706 159.038 46.4211 163.299 71.6164 168.271C91.7727 172.248 179.624 157.144 218.101 149.095C222.202 118.555 227.945 42.4186 218.101 41.8504C205.796 41.1402 177.059 58.5256 157.109 99.0085C131.035 151.92 89.7266 139.136 75.0781 120.67C63.2727 105.788 53.9844 92.9716 37.5781 84.4641Z"
fill="white"
/>
</g>
</g>
<path
id="Icon material-computer"
d="M58.521 119.736C59.2575 119.724 59.9594 119.421 60.4726 118.892C60.9858 118.364 61.2686 117.654 61.259 116.917L61.273 102.817C61.2776 102.08 60.9912 101.37 60.4759 100.843C59.9607 100.316 59.2582 100.013 58.521 100H36.5C35.7631 100.014 35.0614 100.317 34.5469 100.845C34.0325 101.373 33.7469 102.082 33.752 102.819V116.919C33.7474 117.656 34.0333 118.364 34.5477 118.892C35.062 119.419 35.7635 119.722 36.5 119.736H31V122.555H64.025V119.736H58.521ZM36.5 102.819H58.521V116.919H36.5V102.819Z"
fill="white"
/>
<path
id="Design"
d="M36.5381 46H41.5303C45.3271 46 47.4805 43.6797 47.4805 39.584V39.5664C47.4805 35.5938 45.3008 33.3174 41.5303 33.3174H36.5381V46ZM39.1924 43.8115V35.5059H41.1084C43.4111 35.5059 44.7734 37 44.7734 39.6104V39.6279C44.7734 42.335 43.4551 43.8115 41.1084 43.8115H39.1924ZM53.594 46.2021C56.424 46.2021 57.6721 44.5674 57.9709 43.3545L57.9885 43.2666H55.5979L55.5715 43.3193C55.3957 43.6885 54.7717 44.2861 53.6467 44.2861C52.2844 44.2861 51.4318 43.3633 51.4055 41.7725H58.0676V40.9727C58.0676 38.0459 56.3098 36.1123 53.4885 36.1123C50.6672 36.1123 48.8654 38.0898 48.8654 41.166V41.1748C48.8654 44.2773 50.6496 46.2021 53.594 46.2021ZM53.5324 38.0371C54.6486 38.0371 55.4484 38.7578 55.6066 40.1641H51.4318C51.59 38.793 52.4162 38.0371 53.5324 38.0371ZM63.6098 46.2021C66.0883 46.2021 67.8549 44.9541 67.8549 43.0381V43.0293C67.8549 41.5967 66.9496 40.7881 65.016 40.375L63.4076 40.0322C62.4057 39.8125 62.0453 39.5137 62.0453 38.9951V38.9863C62.0453 38.3359 62.6781 37.9229 63.5658 37.9229C64.5238 37.9229 65.0951 38.4062 65.2358 38.9248L65.2445 38.9688H67.6264V38.9336C67.5209 37.3779 66.1147 36.1123 63.5746 36.1123C61.1576 36.1123 59.5404 37.3252 59.5404 39.1445V39.1533C59.5404 40.6035 60.4545 41.5088 62.3002 41.9043L63.9174 42.2471C64.9018 42.4668 65.2885 42.792 65.2885 43.3105V43.3281C65.2885 43.9697 64.6205 44.3916 63.6361 44.3916C62.6254 44.3916 62.0365 43.9609 61.8344 43.3633L61.8168 43.3281H59.2944L59.3031 43.3633C59.4877 45.0244 60.9819 46.2021 63.6098 46.2021ZM70.8571 34.8379C71.6481 34.8379 72.2985 34.2051 72.2985 33.4141C72.2985 32.6143 71.6481 31.9814 70.8571 31.9814C70.066 31.9814 69.4069 32.6143 69.4069 33.4141C69.4069 34.2051 70.066 34.8379 70.8571 34.8379ZM69.5651 46H72.1315V36.3232H69.5651V46ZM78.5789 49.4014C81.5057 49.4014 83.3602 47.9688 83.3602 45.7012V36.3232H80.7938V37.9053H80.6707C80.1522 36.8154 79.1151 36.165 77.7879 36.165C75.3094 36.165 73.8065 38.0811 73.8065 40.9287V40.9463C73.8065 43.6973 75.3094 45.5781 77.744 45.5781C79.0887 45.5781 80.1082 45.0244 80.6444 44.0049H80.8026V45.8066C80.8026 46.9316 80.0028 47.5732 78.6317 47.5732C77.4891 47.5732 76.8211 47.1865 76.6805 46.624L76.6717 46.5889H74.1317V46.6328C74.3426 48.2764 75.8983 49.4014 78.5789 49.4014ZM78.6141 43.6094C77.2254 43.6094 76.4344 42.5283 76.4344 40.9375V40.9199C76.4344 39.3291 77.2342 38.248 78.6141 38.248C79.994 38.248 80.8289 39.3291 80.8289 40.9199V40.9375C80.8289 42.5283 80.0028 43.6094 78.6141 43.6094ZM85.5186 46H88.085V40.4014C88.085 39.0918 88.8057 38.2393 89.9922 38.2393C91.2051 38.2393 91.7676 38.96 91.7676 40.3223V46H94.334V39.7422C94.334 37.4307 93.1739 36.1123 91.0205 36.1123C89.6407 36.1123 88.6827 36.7715 88.2432 37.8174H88.085V36.3232H85.5186V46Z"
fill="white"
/>
</g>
<defs>
<filter
id="filter0_d"
x="0"
y="0"
width="190"
height="165"
filterUnits="userSpaceOnUse"
color-interpolation-filters="sRGB"
>
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feColorMatrix
in="SourceAlpha"
type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
/>
<feOffset dy="8" />
<feGaussianBlur stdDeviation="10" />
<feColorMatrix
type="matrix"
values="0 0 0 0 0.0627451 0 0 0 0 0.823529 0 0 0 0 0.592157 0 0 0 0.2 0"
/>
<feBlend
mode="normal"
in2="BackgroundImageFix"
result="effect1_dropShadow"
/>
<feBlend
mode="normal"
in="SourceGraphic"
in2="effect1_dropShadow"
result="shape"
/>
</filter>
<linearGradient
id="paint0_lineard"
x1="170"
y1="12"
x2="20"
y2="131"
gradientUnits="userSpaceOnUse"
>
<stop stop-color="#F6815B" />
<stop offset="1" stop-color="#A61CE8" />
</linearGradient>
<linearGradient
id="paint1_linear"
x1="20"
y1="137"
x2="187.132"
y2="42.2049"
gradientUnits="userSpaceOnUse"
>
<stop stop-color="#8EFC67" />
<stop offset="1" stop-color="#F6815B" />
</linearGradient>
</defs>
</svg>
<p class="description-domain">
Things aren’t always #000000 and #FFFFFF. Without Appealing Designs,
everything seems incomplete.
</p>
</div>
<div class="domain">
<!-- <img class="domain-icon" src="Assets/Domains-Page/Logistics.svg"> -->
<svg
width="190"
height="165"
viewBox="0 0 190 165"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g id="logistics">
<g id="Group">
<g id="Rectangle 2" filter="url(#filter0_d)">
<rect
x="20"
y="12"
width="150"
height="125"
rx="10"
fill="url(#paint0_linearz)"
/>
</g>
<mask
id="mask0"
mask-type="alpha"
maskUnits="userSpaceOnUse"
x="20"
y="12"
width="150"
height="125"
>
<rect
id="Rectangle 2.1"
x="20"
y="12"
width="150"
height="125"
rx="10"
fill="url(#paint1_linear)"
/>
</mask>
<g mask="url(#mask0)">
<path
id="upper-wave"
opacity="0.15"
d="M37.6321 75.9413C22.0508 61.0057 10.0391 63.8466 3.06175 67.4186C1.69456 85.6478 -0.219502 124.095 3.06175 132.049C7.16331 141.993 44.0774 146.254 69.2727 151.225C89.4289 155.203 177.28 159.275 215.757 151.225C219.859 120.686 225.601 25.3731 215.757 24.805C203.452 24.0947 174.715 41.4801 154.766 81.963C128.691 134.875 118.438 63.1364 89.4336 54.9687C72.8429 50.2967 53.2408 90.9033 37.6321 75.9413Z"
fill="white"
/>