forked from GroupVision/ODS-PARA-TODOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch-list-2.html
2021 lines (2018 loc) · 121 KB
/
search-list-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>
<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">
<title>Landing Page Template</title>
<link rel="shortcut icon" href="image/Logo.svg" type="image/x-icon">
<!-- Bootstrap , fonts & icons -->
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="fonts/icon-font/css/style.css">
<link rel="stylesheet" href="fonts/typography-font/typo.css">
<link rel="stylesheet" href="fonts/fontawesome-5/css/all.css">
<!-- Plugin'stylesheets -->
<link rel="stylesheet" href="plugins/aos/aos.min.css">
<link rel="stylesheet" href="plugins/fancybox/jquery.fancybox.min.css">
<link rel="stylesheet" href="plugins/nice-select/nice-select.min.css">
<link rel="stylesheet" href="plugins/slick/slick.min.css">
<link rel="stylesheet" href="plugins/ui-range-slider/jquery-ui.css">
<!-- Vendor stylesheets -->
<link rel="stylesheet" href="css/main.css">
<!-- Custom stylesheet -->
</head>
<body>
<div class="site-wrapper overflow-hidden ">
<!-- Header start -->
<!-- Header Area -->
<header class="site-header site-header--menu-right bg-default py-7 py-lg-0 site-header--absolute site-header--sticky">
<div class="container">
<nav class="navbar site-navbar offcanvas-active navbar-expand-lg px-0 py-0">
<!-- Brand Logo-->
<div class="brand-logo">
<a href="./index.html">
<!-- light version logo (logo must be black)-->
<img src="image/logo-main-black.png" alt="" class="light-version-logo default-logo">
<!-- Dark version logo (logo must be White)-->
<img src="image/logo-main-white.png" alt="" class="dark-version-logo">
</a>
</div>
<div class="collapse navbar-collapse" id="mobile-menu">
<div class="navbar-nav-wrapper">
<ul class="navbar-nav main-menu">
<li class="nav-item dropdown active">
<a class="nav-link dropdown-toggle gr-toggle-arrow" id="navbarDropdown" href="#features" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Home <i class="icon icon-small-down"></i></a>
<ul class="gr-menu-dropdown dropdown-menu" aria-labelledby="navbarDropdown">
<li class="drop-menu-item">
<a href="home-1.html">
Homepage 01
</a>
</li>
<li class="drop-menu-item">
<a href="home-2.html">
Homepage 02
</a>
</li>
<li class="drop-menu-item">
<a href="home-3.html">
Homepage 03
</a>
</li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle gr-toggle-arrow" id="navbarDropdown2" href="#features" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Pages <i class="icon icon-small-down"></i></a>
<ul class="gr-menu-dropdown dropdown-menu" aria-labelledby="navbarDropdown2">
<li class="drop-menu-item dropdown">
<a class="dropdown-toggle gr-toggle-arrow" id="navbarDropdown242" href="#" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Job Pages
<i class="icon icon-small-down"></i>
</a>
<ul class="gr-menu-dropdown dropdown-menu dropdown-left" aria-labelledby="navbarDropdown242">
<li class="drop-menu-item">
<a href="./search-grid.html">
Job Grid
</a>
</li>
<li class="drop-menu-item">
<a href="./search-list-1.html">
Job List
</a>
</li>
<li class="drop-menu-item">
<a href="./jobdetails.html">
Job Details
</a>
</li>
</ul>
</li>
<li class="drop-menu-item dropdown">
<a class="dropdown-toggle gr-toggle-arrow" id="navbarDropdown21" href="#" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Dashboard
<i class="icon icon-small-down"></i>
</a>
<ul class="gr-menu-dropdown dropdown-menu dropdown-left" aria-labelledby="navbarDropdown21">
<li class="drop-menu-item">
<a href="./dashboard-main.html">
Dashboard Main
</a>
</li>
<li class="drop-menu-item">
<a href="./dashboard-settings.html">
Settings
</a>
</li>
<li class="drop-menu-item">
<a href="./dashboard-posted-applicants.html">
Applicants
</a>
</li>
<li class="drop-menu-item">
<a href="./dashboard-posted-applicants.html">
Posted Jobs
</a>
</li>
</ul>
</li>
<li class="drop-menu-item dropdown">
<a class="dropdown-toggle gr-toggle-arrow" id="navbarDropdown25g" href="#" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Candidate Pages
<i class="icon icon-small-down"></i>
</a>
<ul class="gr-menu-dropdown dropdown-menu dropdown-left" aria-labelledby="navbarDropdown25g">
<li class="drop-menu-item">
<a href="./candidate-profile-main.html">
Candidate Profile
</a>
</li>
<li class="drop-menu-item">
<a href="./candidate-profile.html">
Candidate Profile 02
</a>
</li>
</ul>
</li>
<li class="drop-menu-item dropdown">
<a class="dropdown-toggle gr-toggle-arrow" id="navbarDropdown242" href="#" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Search Pages
<i class="icon icon-small-down"></i>
</a>
<ul class="gr-menu-dropdown dropdown-menu dropdown-left" aria-labelledby="navbarDropdown242">
<li class="drop-menu-item">
<a href="./search-grid.html">
Search Grid
</a>
</li>
<li class="drop-menu-item">
<a href="./search-list-1.html">
Search List 01
</a>
</li>
<li class="drop-menu-item">
<a href="./search-list-2.html">
Search List 02
</a>
</li>
</ul>
</li>
<li class="drop-menu-item">
<a href="./company-profile.html">
Company Profile
</a>
</li>
<li class="drop-menu-item dropdown">
<a class="dropdown-toggle gr-toggle-arrow" id="navbarDropdown242" href="#" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Account
<i class="icon icon-small-down"></i>
</a>
<ul class="gr-menu-dropdown dropdown-menu dropdown-left" aria-labelledby="navbarDropdown242">
<li class="drop-menu-item">
<a href="javacript:" data-toggle="modal" data-target="#login">
Sign In
</a>
</li>
<li class="drop-menu-item">
<a href="javacript:" data-toggle="modal" data-target="#signup">
Sign Up
</a>
</li>
</ul>
</li>
<li class="drop-menu-item dropdown">
<a class="dropdown-toggle gr-toggle-arrow" id="navbarDropdown26" href="#" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Essential
<i class="icon icon-small-down"></i>
</a>
<ul class="gr-menu-dropdown dropdown-menu dropdown-left" aria-labelledby="navbarDropdown26">
<li class="drop-menu-item">
<a href="faq.html">
Faq
</a>
</li>
<li class="drop-menu-item">
<a href="./error-404.html">
404
</a>
</li>
<li class="drop-menu-item">
<a href="./pricing-page.html">
Pricing page
</a>
</li>
<li class="drop-menu-item">
<a href="./contact.html">Contact</a>
</li>
</ul>
</li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Support</a>
</li>
</ul>
</div>
<button class="d-block d-lg-none offcanvas-btn-close focus-reset" type="button" data-toggle="collapse" data-target="#mobile-menu" aria-controls="mobile-menu" aria-expanded="true" aria-label="Toggle navigation">
<i class="gr-cross-icon"></i>
</button>
</div>
<div class="header-btns header-btn-devider ml-auto pr-2 ml-lg-6 d-none d-xs-flex">
<a class="btn btn-transparent text-uppercase font-size-3 heading-default-color focus-reset" href="javacript:" data-toggle="modal" data-target="#login">
Log in
</a>
<a class="btn btn-primary text-uppercase font-size-3" href="javacript:" data-toggle="modal" data-target="#signup">
Sign up
</a>
</div>
<!-- Mobile Menu Hamburger-->
<button class="navbar-toggler btn-close-off-canvas hamburger-icon border-0" type="button" data-toggle="collapse" data-target="#mobile-menu" aria-controls="mobile-menu" aria-expanded="false" aria-label="Toggle navigation">
<!-- <i class="icon icon-simple-remove icon-close"></i> -->
<span class="hamburger hamburger--squeeze js-hamburger">
<span class="hamburger-box">
<span class="hamburger-inner"></span>
</span>
</span>
</button>
<!--/.Mobile Menu Hamburger Ends-->
</nav>
</div>
</header>
<!-- navbar- -->
<!-- Login Modal -->
<div class="modal fade form-modal" id="login" tabindex="-1" aria-hidden="true">
<div class="modal-dialog max-width-px-840 position-relative">
<button type="button" class="circle-32 btn-reset bg-white pos-abs-tr mt-md-n6 mr-lg-n6 focus-reset z-index-supper" data-dismiss="modal"><i class="fas fa-times"></i></button>
<div class="login-modal-main bg-white rounded-8 overflow-hidden">
<div class="row no-gutters">
<div class="col-lg-5 col-md-6">
<div class="pt-10 pb-6 pl-11 pr-12 bg-black-2 h-100 d-flex flex-column dark-mode-texts">
<div class="pb-9">
<h3 class="font-size-8 text-white line-height-reset pb-4 line-height-1p4">
Welcome Back
</h3>
<p class="mb-0 font-size-4 text-white">Log in to continue your account
and explore new jobs.</p>
</div>
<div class="border-top border-default-color-2 mt-auto">
<div class="d-flex mx-n9 pt-6 flex-xs-row flex-column">
<div class="pt-5 px-9">
<h3 class="font-size-7 text-white">
295
</h3>
<p class="font-size-3 text-white gr-opacity-5 line-height-1p4">New jobs
posted today</p>
</div>
<div class="pt-5 px-9">
<h3 class="font-size-7 text-white">
14
</h3>
<p class="font-size-3 text-white gr-opacity-5 line-height-1p4">New companies
registered</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-7 col-md-6">
<div class="bg-white-2 h-100 px-11 pt-11 pb-7">
<div class="row">
<div class="col-4 col-xs-12">
<a href="" class="font-size-4 font-weight-semibold position-relative text-white bg-allports h-px-48 flex-all-center w-100 px-6 rounded-5 mb-4"><i class="fab fa-linkedin pos-xs-abs-cl font-size-7 ml-xs-4"></i> <span class="d-none d-xs-block">Log in with LinkedIn</span></a>
</div>
<div class="col-4 col-xs-12">
<a href="" class="font-size-4 font-weight-semibold position-relative text-white bg-poppy h-px-48 flex-all-center w-100 px-6 rounded-5 mb-4"><i class="fab fa-google pos-xs-abs-cl font-size-7 ml-xs-4"></i> <span class="d-none d-xs-block">Log in with Google</span></a>
</div>
<div class="col-4 col-xs-12">
<a href="" class="font-size-4 font-weight-semibold position-relative text-white bg-marino h-px-48 flex-all-center w-100 px-6 rounded-5 mb-4"><i class="fab fa-facebook-square pos-xs-abs-cl font-size-7 ml-xs-4"></i> <span class="d-none d-xs-block">Log in with Facebook</span></a>
</div>
</div>
<div class="or-devider">
<span class="font-size-3 line-height-reset ">Or</span>
</div>
<form action="/">
<div class="form-group">
<label for="email" class="font-size-4 text-black-2 font-weight-semibold line-height-reset">E-mail</label>
<input type="email" class="form-control" placeholder="[email protected]" id="email">
</div>
<div class="form-group">
<label for="password" class="font-size-4 text-black-2 font-weight-semibold line-height-reset">Password</label>
<div class="position-relative">
<input type="password" class="form-control" id="password" placeholder="Enter password">
<a href="#" class="show-password pos-abs-cr fas mr-6 text-black-2" data-show-pass="password"></a>
</div>
</div>
<div class="form-group d-flex flex-wrap justify-content-between">
<label for="terms-check" class="gr-check-input d-flex mr-3">
<input class="d-none" type="checkbox" id="terms-check">
<span class="checkbox mr-5"></span>
<span class="font-size-3 mb-0 line-height-reset mb-1 d-block">Remember password</span>
</label>
<a href="" class="font-size-3 text-dodger line-height-reset">Forget Password</a>
</div>
<div class="form-group mb-8">
<button class="btn btn-primary btn-medium w-100 rounded-5 text-uppercase">Log in </button>
</div>
<p class="font-size-4 text-center heading-default-color">Don’t have an account? <a href="" class="text-primary">Create a free account</a></p>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Sign Up Modal -->
<div class="modal fade form-modal" id="signup" tabindex="-1" aria-hidden="true">
<div class="modal-dialog max-width-px-840 position-relative">
<button type="button" class="circle-32 btn-reset bg-white pos-abs-tr mt-n6 mr-lg-n6 focus-reset shadow-10" data-dismiss="modal"><i class="fas fa-times"></i></button>
<div class="login-modal-main bg-white rounded-8 overflow-hidden">
<div class="row no-gutters">
<div class="col-lg-5 col-md-6">
<div class="pt-10 pb-6 pl-11 pr-12 bg-black-2 h-100 d-flex flex-column dark-mode-texts">
<div class="pb-9">
<h3 class="font-size-8 text-white line-height-reset pb-4 line-height-1p4">
Create a free account today
</h3>
<p class="mb-0 font-size-4 text-white">Create your account to continue
and explore new jobs.</p>
</div>
<div class="border-top border-default-color-2 mt-auto">
<div class="d-flex mx-n9 pt-6 flex-xs-row flex-column">
<div class="pt-5 px-9">
<h3 class="font-size-7 text-white">
295
</h3>
<p class="font-size-3 text-white gr-opacity-5 line-height-1p4">New jobs
posted today</p>
</div>
<div class="pt-5 px-9">
<h3 class="font-size-7 text-white">
14
</h3>
<p class="font-size-3 text-white gr-opacity-5 line-height-1p4">New companies
registered</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-7 col-md-6">
<div class="bg-white-2 h-100 px-11 pt-11 pb-7">
<div class="row">
<div class="col-4 col-xs-12">
<a href="" class="font-size-4 font-weight-semibold position-relative text-white bg-allports h-px-48 flex-all-center w-100 px-6 rounded-5 mb-4"><i class="fab fa-linkedin pos-xs-abs-cl font-size-7 ml-xs-4"></i> <span class="d-none d-xs-block">Import from LinkedIn</span></a>
</div>
<div class="col-4 col-xs-12">
<a href="" class="font-size-4 font-weight-semibold position-relative text-white bg-poppy h-px-48 flex-all-center w-100 px-6 rounded-5 mb-4"><i class="fab fa-google pos-xs-abs-cl font-size-7 ml-xs-4"></i> <span class="d-none d-xs-block">Import from Google</span></a>
</div>
<div class="col-4 col-xs-12">
<a href="" class="font-size-4 font-weight-semibold position-relative text-white bg-marino h-px-48 flex-all-center w-100 px-6 rounded-5 mb-4"><i class="fab fa-facebook-square pos-xs-abs-cl font-size-7 ml-xs-4"></i> <span class="d-none d-xs-block">Import from Facebook</span></a>
</div>
</div>
<div class="or-devider">
<span class="font-size-3 line-height-reset">Or</span>
</div>
<form action="/">
<div class="form-group">
<label for="email2" class="font-size-4 text-black-2 font-weight-semibold line-height-reset">E-mail</label>
<input type="email" class="form-control" placeholder="[email protected]" id="email2">
</div>
<div class="form-group">
<label for="password2" class="font-size-4 text-black-2 font-weight-semibold line-height-reset">Password</label>
<div class="position-relative">
<input type="password" class="form-control" id="password2" placeholder="Enter password">
<a href="#" class="show-password pos-abs-cr fas mr-6 text-black-2" data-show-pass="password2"></a>
</div>
</div>
<div class="form-group">
<label for="password23" class="font-size-4 text-black-2 font-weight-semibold line-height-reset">Confirm Password</label>
<div class="position-relative">
<input type="password" class="form-control" id="password23" placeholder="Enter password">
<a href="#" class="show-password pos-abs-cr fas mr-6 text-black-2" data-show-pass="password23"></a>
</div>
</div>
<div class="form-group d-flex flex-wrap justify-content-between mb-1">
<label for="terms-check2" class="gr-check-input d-flex mr-3">
<input class="d-none" type="checkbox" id="terms-check2">
<span class="checkbox mr-5"></span>
<span class="font-size-3 mb-0 line-height-reset d-block">Agree to the <a href="" class="text-primary">Terms & Conditions</a></span>
</label>
<a href="" class="font-size-3 text-dodger line-height-reset">Forget Password</a>
</div>
<div class="form-group mb-8">
<button class="btn btn-primary btn-medium w-100 rounded-5 text-uppercase">Sign Up </button>
</div>
<p class="font-size-4 text-center heading-default-color">Don’t have an account? <a href="" class="text-primary">Create a free account</a></p>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Header end -->
<!-- Main Content Start -->
<div class="bg-black-2 mt-15 mt-lg-22 pt-18 pt-lg-13 pb-13">
<div class="container">
<div class="row">
<div class="col-12">
<!-- form -->
<form action="/" class="search-form">
<div class="filter-search-form-2 bg-white rounded-sm shadow-7 pr-6 py-7 pl-6 search-1-adjustment">
<div class="filter-inputs">
<div class="form-group position-relative w-xl-50">
<input class="form-control focus-reset pl-13" type="text" id="keyword" placeholder="Type Job title, keywords">
<span class="h-100 w-px-50 pos-abs-tl d-flex align-items-center justify-content-center font-size-6"><i
class="icon icon-zoom-2 text-primary font-weight-bold"></i></span>
</div>
<!-- .select-city starts -->
<div class="form-group position-relative w-lg-50">
<select name="country" id="country" class="nice-select font-size-4 pl-13 h-100 arrow-3">
<option data-display="City, state, zip code or (Remote)">City, state, zip code or (Remote) </option>
<option value="">United States of America</option>
<option value="">United Arab Emirates</option>
<option value="">Bangladesh</option>
<option value="">Pakistan</option>
</select>
<span class="h-100 w-px-50 pos-abs-tl d-flex align-items-center justify-content-center font-size-6"><i
class="icon icon-pin-3 text-primary font-weight-bold"></i></span>
</div>
<!-- ./select-city ends -->
</div>
<div class="button-block">
<button class="btn btn-primary btn-medium line-height-reset h-100 btn-submit w-100 text-uppercase">Search</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<div class="bg-default-1 pt-9 pb-13 pb-xl-30 pb-13 position-relative overflow-hidden">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-lg-10 col-xl-12">
<h2 class="font-size-8 mb-6">You’re searching "UI Designer"</h2>
<form class="mb-8" action="index.html">
<div class="search-filter from-group d-flex align-items-center flex-wrap">
<div class="mr-5 mb-5">
<select name="country" id="country" class="nice-select font-size-4 text-black-2 arrow-4-black mr-5 rounded-0">
<option data-display="Job Type">Job Type</option>
<option value="">United States of America</option>
<option value="">United Arab Emirates</option>
<option value="">Bangladesh</option>
<option value="">Pakistan</option>
</select>
</div>
<div class="mr-5 mb-5">
<select name="country" id="country" class="nice-select font-size-4 text-black-2 arrow-4-black mr-5 rounded-0">
<option data-display="Salary Range">Salary Range</option>
<option value="">United States of America</option>
<option value="">United Arab Emirates</option>
<option value="">Bangladesh</option>
<option value="">Pakistan</option>
</select>
</div>
<div class="mr-5 mb-5">
<select name="country" id="country" class="nice-select font-size-4 text-black-2 arrow-4-black mr-5 rounded-0">
<option data-display="Experience Level ">Experience Level </option>
<option value="">United States of America</option>
<option value="">United Arab Emirates</option>
<option value="">Bangladesh</option>
<option value="">Pakistan</option>
</select>
</div>
<div class="mr-5 mb-5">
<select name="country" id="country" class="nice-select font-size-4 text-black-2 arrow-4-black mr-5 rounded-0">
<option data-display="Posted Time">Posted Time</option>
<option value="">United States of America</option>
<option value="">United Arab Emirates</option>
<option value="">Bangladesh</option>
<option value="">Pakistan</option>
</select>
</div>
</div>
</form>
<div class="d-flex align-items-center justify-content-between mb-6">
<h5 class="font-size-4 font-weight-normal text-gray">Showing
<span class="text-black-2">120</span> matched jobs
</h5>
</div>
</div>
</div>
<div class="row justify-content-center position-static">
<div class="col-12 col-xxl-8 col-xl-7 col-lg-10">
<!-- Left Section -->
<div class="Left">
<div class="justify-content-center search-nav-tab nav nav-tabs border-bottom-0" id="search-nav-tab" role="tablist">
<a class="mb-8 p-0 w-100 active nav-link" id="tab-nav-1" data-toggle="tab" href="#tab-pane-1" role="tab" aria-controls="tab-pane-1" aria-selected="true ">
<!-- Single Featured Job -->
<div class="pt-9 px-xl-9 px-lg-7 px-7 pb-7 light-mode-texts bg-white rounded hover-shadow-3 hover-border-green">
<div class="row">
<div class="col-md-6">
<div class="media align-items-center">
<div class="square-72 d-block mr-8">
<img src="./image/l2/png/featured-job-logo-1.png" alt="">
</div>
<div>
<h3 class="mb-0 font-size-6 heading-default-color">Product Designer</h3>
<span class="font-size-3 text-default-color line-height-2 d-block">AirBnb</span>
</div>
</div>
</div>
<div class="col-md-6 text-right pt-7 pt-md-5">
<div class="media justify-content-md-end">
<div class="image mr-5 mt-2">
<img src="./image/svg/icon-fire-rounded.svg" alt="">
</div>
<p class="font-weight-bold font-size-7 text-hit-gray mb-0"><span
class="text-black-2">80-90K PLN</span> PLN</p>
</div>
</div>
</div>
<div class="row pt-8">
<div class="col-md-7">
<ul class="d-flex list-unstyled mr-n3 flex-wrap">
<li>
<span class="bg-regent-opacity-15 min-width-px-96 mr-3 text-center rounded-3 px-6 py-1 font-size-3 text-black-2 mt-2 d-inline-block"
>Agile</span>
</li>
<li>
<span class="bg-regent-opacity-15 min-width-px-96 mr-3 text-center rounded-3 px-6 py-1 font-size-3 text-black-2 mt-2 d-inline-block"
>Wireframing</span>
</li>
<li>
<span class="bg-regent-opacity-15 min-width-px-96 mr-3 text-center rounded-3 px-6 py-1 font-size-3 text-black-2 mt-2 d-inline-block"
>Prototyping</span>
</li>
</ul>
</div>
<div class="col-md-5">
<ul class="d-flex list-unstyled mr-n3 flex-wrap mr-n8 justify-content-md-end">
<li class="mt-2 mr-8 font-size-small text-black-2 d-flex">
<span class="mr-4" style="margin-top: -2px"><img src="./image/svg/icon-loaction-pin-black.svg" alt=""></span>
<span class="font-weight-semibold">Berlyn, UK</span>
</li>
<li class="mt-2 mr-8 font-size-small text-black-2 d-flex">
<span class="mr-4" style="margin-top: -2px"><img src="./image/svg/icon-suitecase.svg" alt=""></span>
<span class="font-weight-semibold">Full-time</span>
</li>
<li class="mt-2 mr-8 font-size-small text-black-2 d-flex">
<span class="mr-4" style="margin-top: -2px"><img src="./image/svg/icon-clock.svg" alt=""></span>
<span class="font-weight-semibold">9d ago</span>
</li>
</ul>
</div>
</div>
</div>
<!-- End Single Featured Job -->
</a>
<a class="mb-8 p-0 w-100 nav-link" id="tab-nav-2" data-toggle="tab" href="#tab-pane-2" role="tab" aria-controls="tab-pane-2" aria-selected=" false ">
<!-- Single Featured Job -->
<div class="pt-9 px-xl-9 px-lg-7 px-7 pb-7 light-mode-texts bg-white rounded hover-shadow-3 hover-border-green">
<div class="row">
<div class="col-md-6">
<div class="media align-items-center">
<div class="square-72 d-block mr-8">
<img src="./image/l2/png/featured-job-logo-2.png" alt="">
</div>
<div>
<h3 class="mb-0 font-size-6 heading-default-color">UI/UX Designer</h3>
<span class="font-size-3 text-default-color line-height-2 d-block">Apple INC</span>
</div>
</div>
</div>
<div class="col-md-6 text-right pt-7 pt-md-5">
<div class="media justify-content-md-end">
<div class="image mr-5 mt-2">
<img src="./image/svg/icon-fire-rounded.svg" alt="">
</div>
<p class="font-weight-bold font-size-7 text-hit-gray mb-0"><span
class="text-black-2">120-150K</span> PLN</p>
</div>
</div>
</div>
<div class="row pt-8">
<div class="col-md-7">
<ul class="d-flex list-unstyled mr-n3 flex-wrap">
<li>
<span class="bg-regent-opacity-15 min-width-px-96 mr-3 text-center rounded-3 px-6 py-1 font-size-3 text-black-2 mt-2 d-inline-block"
>Visual Design</span>
</li>
<li>
<span class="bg-regent-opacity-15 min-width-px-96 mr-3 text-center rounded-3 px-6 py-1 font-size-3 text-black-2 mt-2 d-inline-block"
>Wireframing</span>
</li>
<li>
<span class="bg-regent-opacity-15 min-width-px-96 mr-3 text-center rounded-3 px-6 py-1 font-size-3 text-black-2 mt-2 d-inline-block"
>Scrum</span>
</li>
</ul>
</div>
<div class="col-md-5">
<ul class="d-flex list-unstyled mr-n3 flex-wrap mr-n8 justify-content-md-end">
<li class="mt-2 mr-8 font-size-small text-black-2 d-flex">
<span class="mr-4" style="margin-top: -2px"><img src="./image/svg/icon-loaction-pin-black.svg" alt=""></span>
<span class="font-weight-semibold">Berlyn, UK</span>
</li>
<li class="mt-2 mr-8 font-size-small text-black-2 d-flex">
<span class="mr-4" style="margin-top: -2px"><img src="./image/svg/icon-suitecase.svg" alt=""></span>
<span class="font-weight-semibold">Full-time</span>
</li>
<li class="mt-2 mr-8 font-size-small text-black-2 d-flex">
<span class="mr-4" style="margin-top: -2px"><img src="./image/svg/icon-clock.svg" alt=""></span>
<span class="font-weight-semibold">9d ago</span>
</li>
</ul>
</div>
</div>
</div>
<!-- End Single Featured Job -->
</a>
<a class="mb-8 p-0 w-100 nav-link" id="tab-nav-3" data-toggle="tab" href="#tab-pane-3" role="tab" aria-controls="tab-pane-3" aria-selected=" false ">
<!-- Single Featured Job -->
<div class="pt-9 px-xl-9 px-lg-7 px-7 pb-7 light-mode-texts bg-white rounded hover-shadow-3 hover-border-green">
<div class="row">
<div class="col-md-6">
<div class="media align-items-center">
<div class="square-72 d-block mr-8">
<img src="./image/l2/png/featured-job-logo-3.png" alt="">
</div>
<div>
<h3 class="mb-0 font-size-6 heading-default-color">iOS Developer</h3>
<span class="font-size-3 text-default-color line-height-2 d-block">Shopify</span>
</div>
</div>
</div>
<div class="col-md-6 text-right pt-7 pt-md-5">
<div class="media justify-content-md-end">
<div class="image mr-5 mt-2">
<img src="./image/svg/icon-fire-rounded.svg" alt="">
</div>
<p class="font-weight-bold font-size-7 text-hit-gray mb-0"><span
class="text-black-2">100-120K</span> PLN</p>
</div>
</div>
</div>
<div class="row pt-8">
<div class="col-md-7">
<ul class="d-flex list-unstyled mr-n3 flex-wrap">
<li>
<span class="bg-regent-opacity-15 min-width-px-96 mr-3 text-center rounded-3 px-6 py-1 font-size-3 text-black-2 mt-2 d-inline-block"
>Swift</span>
</li>
<li>
<span class="bg-regent-opacity-15 min-width-px-96 mr-3 text-center rounded-3 px-6 py-1 font-size-3 text-black-2 mt-2 d-inline-block"
>Objective C</span>
</li>
<li>
<span class="bg-regent-opacity-15 min-width-px-96 mr-3 text-center rounded-3 px-6 py-1 font-size-3 text-black-2 mt-2 d-inline-block"
>X Code</span>
</li>
</ul>
</div>
<div class="col-md-5">
<ul class="d-flex list-unstyled mr-n3 flex-wrap mr-n8 justify-content-md-end">
<li class="mt-2 mr-8 font-size-small text-black-2 d-flex">
<span class="mr-4" style="margin-top: -2px"><img src="./image/svg/icon-loaction-pin-black.svg" alt=""></span>
<span class="font-weight-semibold">Berlyn, UK</span>
</li>
<li class="mt-2 mr-8 font-size-small text-black-2 d-flex">
<span class="mr-4" style="margin-top: -2px"><img src="./image/svg/icon-suitecase.svg" alt=""></span>
<span class="font-weight-semibold">Full-time</span>
</li>
<li class="mt-2 mr-8 font-size-small text-black-2 d-flex">
<span class="mr-4" style="margin-top: -2px"><img src="./image/svg/icon-clock.svg" alt=""></span>
<span class="font-weight-semibold">9d ago</span>
</li>
</ul>
</div>
</div>
</div>
<!-- End Single Featured Job -->
</a>
<a class="mb-8 p-0 w-100 nav-link" id="tab-nav-4" data-toggle="tab" href="#tab-pane-4" role="tab" aria-controls="tab-pane-4" aria-selected=" false ">
<!-- Single Featured Job -->
<div class="pt-9 px-xl-9 px-lg-7 px-7 pb-7 light-mode-texts bg-white rounded hover-shadow-3 hover-border-green">
<div class="row">
<div class="col-md-6">
<div class="media align-items-center">
<div class="square-72 d-block mr-8">
<img src="./image/l2/png/featured-job-logo-4.png" alt="">
</div>
<div>
<h3 class="mb-0 font-size-6 heading-default-color">Creative Director</h3>
<span class="font-size-3 text-default-color line-height-2 d-block">Facebook</span>
</div>
</div>
</div>
<div class="col-md-6 text-right pt-7 pt-md-5">
<div class="media justify-content-md-end">
<div class="image mr-5 mt-2">
<img src="./image/svg/icon-fire-rounded.svg" alt="">
</div>
<p class="font-weight-bold font-size-7 text-hit-gray mb-0"><span
class="text-black-2">80-90K</span> PLN</p>
</div>
</div>
</div>
<div class="row pt-8">
<div class="col-md-7">
<ul class="d-flex list-unstyled mr-n3 flex-wrap">
<li>
<span class="bg-regent-opacity-15 min-width-px-96 mr-3 text-center rounded-3 px-6 py-1 font-size-3 text-black-2 mt-2 d-inline-block"
>Agile</span>
</li>
<li>
<span class="bg-regent-opacity-15 min-width-px-96 mr-3 text-center rounded-3 px-6 py-1 font-size-3 text-black-2 mt-2 d-inline-block"
>Wireframing</span>
</li>
<li>
<span class="bg-regent-opacity-15 min-width-px-96 mr-3 text-center rounded-3 px-6 py-1 font-size-3 text-black-2 mt-2 d-inline-block"
>Prototyping</span>
</li>
</ul>
</div>
<div class="col-md-5">
<ul class="d-flex list-unstyled mr-n3 flex-wrap mr-n8 justify-content-md-end">
<li class="mt-2 mr-8 font-size-small text-black-2 d-flex">
<span class="mr-4" style="margin-top: -2px"><img src="./image/svg/icon-loaction-pin-black.svg" alt=""></span>
<span class="font-weight-semibold">Berlyn, UK</span>
</li>
<li class="mt-2 mr-8 font-size-small text-black-2 d-flex">
<span class="mr-4" style="margin-top: -2px"><img src="./image/svg/icon-suitecase.svg" alt=""></span>
<span class="font-weight-semibold">Full-time</span>
</li>
<li class="mt-2 mr-8 font-size-small text-black-2 d-flex">
<span class="mr-4" style="margin-top: -2px"><img src="./image/svg/icon-clock.svg" alt=""></span>
<span class="font-weight-semibold">9d ago</span>
</li>
</ul>
</div>
</div>
</div>
<!-- End Single Featured Job -->
</a>
<a class="mb-8 p-0 w-100 nav-link" id="tab-nav-5" data-toggle="tab" href="#tab-pane-5" role="tab" aria-controls="tab-pane-5" aria-selected=" false ">
<!-- Single Featured Job -->
<div class="pt-9 px-xl-9 px-lg-7 px-7 pb-7 light-mode-texts bg-white rounded hover-shadow-3 hover-border-green">
<div class="row">
<div class="col-md-6">
<div class="media align-items-center">
<div class="square-72 d-block mr-8">
<img src="./image/l2/png/featured-job-logo-5.png" alt="">
</div>
<div>
<h3 class="mb-0 font-size-6 heading-default-color">Software Engineer</h3>
<span class="font-size-3 text-default-color line-height-2 d-block">Oculus</span>
</div>
</div>
</div>
<div class="col-md-6 text-right pt-7 pt-md-5">
<div class="media justify-content-md-end">
<div class="image mr-5 mt-2">
<img src="./image/svg/icon-fire-rounded.svg" alt="">
</div>
<p class="font-weight-bold font-size-7 text-hit-gray mb-0"><span
class="text-black-2">80-90K</span> PLN</p>
</div>
</div>
</div>
<div class="row pt-8">
<div class="col-md-7">
<ul class="d-flex list-unstyled mr-n3 flex-wrap">
<li>
<span class="bg-regent-opacity-15 min-width-px-96 mr-3 text-center rounded-3 px-6 py-1 font-size-3 text-black-2 mt-2 d-inline-block"
>C++</span>
</li>
<li>
<span class="bg-regent-opacity-15 min-width-px-96 mr-3 text-center rounded-3 px-6 py-1 font-size-3 text-black-2 mt-2 d-inline-block"
>Java Scprit</span>
</li>
<li>
<span class="bg-regent-opacity-15 min-width-px-96 mr-3 text-center rounded-3 px-6 py-1 font-size-3 text-black-2 mt-2 d-inline-block"
>React JS</span>
</li>
</ul>
</div>
<div class="col-md-5">
<ul class="d-flex list-unstyled mr-n3 flex-wrap mr-n8 justify-content-md-end">
<li class="mt-2 mr-8 font-size-small text-black-2 d-flex">
<span class="mr-4" style="margin-top: -2px"><img src="./image/svg/icon-loaction-pin-black.svg" alt=""></span>
<span class="font-weight-semibold">Berlyn, UK</span>
</li>
<li class="mt-2 mr-8 font-size-small text-black-2 d-flex">
<span class="mr-4" style="margin-top: -2px"><img src="./image/svg/icon-suitecase.svg" alt=""></span>
<span class="font-weight-semibold">Full-time</span>
</li>
<li class="mt-2 mr-8 font-size-small text-black-2 d-flex">
<span class="mr-4" style="margin-top: -2px"><img src="./image/svg/icon-clock.svg" alt=""></span>
<span class="font-weight-semibold">9d ago</span>
</li>
</ul>
</div>
</div>
</div>
<!-- End Single Featured Job -->
</a>
<a class="mb-8 p-0 w-100 nav-link" id="tab-nav-6" data-toggle="tab" href="#tab-pane-6" role="tab" aria-controls="tab-pane-6" aria-selected=" false ">
<!-- Single Featured Job -->
<div class="pt-9 px-xl-9 px-lg-7 px-7 pb-7 light-mode-texts bg-white rounded hover-shadow-3 hover-border-green">
<div class="row">
<div class="col-md-6">
<div class="media align-items-center">
<div class="square-72 d-block mr-8">
<img src="./image/l2/png/featured-job-logo-1.png" alt="">
</div>
<div>
<h3 class="mb-0 font-size-6 heading-default-color">Product Designer</h3>
<span class="font-size-3 text-default-color line-height-2 d-block">AirBnb</span>
</div>
</div>
</div>
<div class="col-md-6 text-right pt-7 pt-md-5">
<div class="media justify-content-md-end">
<div class="image mr-5 mt-2">
<img src="./image/svg/icon-fire-rounded.svg" alt="">
</div>
<p class="font-weight-bold font-size-7 text-hit-gray mb-0"><span
class="text-black-2">80-90K</span> PLN</p>
</div>
</div>
</div>
<div class="row pt-8">
<div class="col-md-7">
<ul class="d-flex list-unstyled mr-n3 flex-wrap">
<li>
<span class="bg-regent-opacity-15 min-width-px-96 mr-3 text-center rounded-3 px-6 py-1 font-size-3 text-black-2 mt-2 d-inline-block"
>Agile</span>
</li>
<li>
<span class="bg-regent-opacity-15 min-width-px-96 mr-3 text-center rounded-3 px-6 py-1 font-size-3 text-black-2 mt-2 d-inline-block"
>Wireframing</span>
</li>
<li>
<span class="bg-regent-opacity-15 min-width-px-96 mr-3 text-center rounded-3 px-6 py-1 font-size-3 text-black-2 mt-2 d-inline-block"
>Prototyping</span>
</li>
</ul>
</div>
<div class="col-md-5">
<ul class="d-flex list-unstyled mr-n3 flex-wrap mr-n8 justify-content-md-end">
<li class="mt-2 mr-8 font-size-small text-black-2 d-flex">
<span class="mr-4" style="margin-top: -2px"><img src="./image/svg/icon-loaction-pin-black.svg" alt=""></span>
<span class="font-weight-semibold">Berlyn, UK</span>
</li>
<li class="mt-2 mr-8 font-size-small text-black-2 d-flex">
<span class="mr-4" style="margin-top: -2px"><img src="./image/svg/icon-suitecase.svg" alt=""></span>
<span class="font-weight-semibold">Full-time</span>
</li>
<li class="mt-2 mr-8 font-size-small text-black-2 d-flex">
<span class="mr-4" style="margin-top: -2px"><img src="./image/svg/icon-clock.svg" alt=""></span>
<span class="font-weight-semibold">9d ago</span>
</li>
</ul>
</div>
</div>
</div>
<!-- End Single Featured Job -->
</a>
</div>
<div class="text-center pt-5 pt-lg-13">
<a class="text-green font-weight-bold text-uppercase font-size-3 d-flex align-items-center justify-content-center" href="#">Load More <i class="fas fa-sort-down ml-3 mt-n2 font-size-4"></i>
</a>
</div>
</div>
<!-- form end -->
</div>
<!-- Right Section -->
<div class="col-12 col-xxl-4 col-xl-5 col-lg-10 position-static">
<div class="tab-content" id="serachlist-tab">
<div class="tab-pane fade show active" id="tab-pane-1" role="tabpanel" aria-labelledby="tab-nav-1">
<div class=" bg-white rounded-4 border border-mercury shadow-9 pos-abs-xl ml-xl-8 h-1413 overflow-y-scroll mt-9 mt-xl-0">
<!-- Single Featured Job -->
<div class="pt-9 pl-sm-9 pl-5 pr-sm-9 pr-5 pb-8 border-bottom border-width-1 border-default-color light-mode-texts">
<div class="row">
<div class="col-12">
<!-- media start -->
<div class="media align-items-center">
<!-- media logo start -->
<div class="square-72 d-block mr-8">
<img src="./image/l2/png/featured-job-logo-1.png" alt="">
</div>
<!-- media logo end -->
<!-- media texts start -->
<div>
<h3 class="font-size-6 mb-0">Product Designer</h3>
<span class="font-size-3 text-gray line-height-2">AirBnb</span>
</div>
<!-- media texts end -->
</div>
<!-- media end -->
</div>
</div>
<div class="row pt-9">
<div class="col-12">
<!-- card-btn-group start -->
<div class="card-btn-group">
<a class="btn btn-green text-uppercase btn-medium rounded-3 w-180 mr-4 mb-5" href="#">Apply to this
job</a>
<a class="btn btn-outline-mercury text-black-2 text-uppercase h-px-48 rounded-3 mb-5 px-5" href="#">
<i class="icon icon-bookmark-2 font-weight-bold mr-4 font-size-4"></i> Save job</a>
</div>
<!-- card-btn-group end -->
</div>
</div>
</div>
<!-- End Single Featured Job -->
<div class="job-details-content pt-8 pl-sm-9 pl-6 pr-sm-9 pr-6 pb-10 border-bottom border-width-1 border-default-color light-mode-texts">
<div class="row mb-5">
<div class="col-md-12">
<div class="media justify-content-md-start mb-6">
<div class="image mr-5">
<img src="./image/svg/icon-location.svg" alt="">
</div>
<p class="font-size-5 text-gray mb-0">777 Brockton Avenue, Abington MA 2351</p>
</div>
</div>
<div class="col-md-6">
<div class="media justify-content-md-start mb-6">
<div class="image mr-5">
<img src="./image/svg/icon-dolor.svg" alt="">
</div>
<p class="font-weight-semibold font-size-5 text-black-2 mb-0">80-90K PLN PLN</p>
</div>
</div>
<div class="col-md-6">
<div class="media justify-content-md-start mb-md-0 mb-6">
<div class="image mr-5">
<img src="./image/svg/icon-briefcase.svg" alt="">
</div>
<p class="font-weight-semibold font-size-5 text-black-2 mb-0">Full-time</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="mb-lg-0 mb-10">
<span class="font-size-4 d-block mb-4 text-gray">Type of corporation</span>
<h6 class="font-size-5 text-black-2 font-weight-semibold mb-9">B2B & B2C</h6>
</div>
<div class="tags">
<p class="font-size-4 text-gray mb-0">Soft Skill</p>
<ul class="list-unstyled mr-n3 mb-0">
<li class="d-block font-size-4 text-black-2 mt-2">
<span class="d-inline-block mr-2">•</span>Slack
</li>
<li class="d-block font-size-4 text-black-2 mt-2">
<span class="d-inline-block mr-2">•</span>Basic English
</li>
<li class="d-block font-size-4 text-black-2 mt-2">
<span class="d-inline-block mr-2">•</span>Well Organized
</li>
</ul>
</div>
</div>
<div class="col-md-6 mb-lg-0 mb-8">
<div class="">
<span class="font-size-4 d-block mb-4 text-gray">Career Level</span>
<h6 class="font-size-5 text-black-2 font-weight-semibold mb-9">Project Manangement</h6>
</div>
<div class="tags">
<p class="font-size-4 text-gray mb-3">Technical Skill</p>
<ul class="list-unstyled d-flex align-items-center flex-wrap">
<li>
<a class="bg-polar text-black-2 mr-6 px-7 mt-2 mb-2 font-size-3 rounded-3 min-height-32 d-flex align-items-center" href="#">Editing</a>
</li>
<li>
<a class="bg-polar text-black-2 mr-6 px-7 mt-2 mb-2 font-size-3 rounded-3 min-height-32 d-flex align-items-center" href="#">Wire-framing</a>
</li>
<li>
<a class="bg-polar text-black-2 mr-6 px-7 mt-2 mb-2 font-size-3 rounded-3 min-height-32 d-flex align-items-center" href="#">XD</a>
</li>
<li>
<a class="bg-polar text-black-2 mr-6 px-7 mt-2 mb-2 font-size-3 rounded-3 min-height-32 d-flex align-items-center" href="#">User Persona</a>
</li>
<li>
<a class="bg-polar text-black-2 mr-6 px-7 mt-2 mb-2 font-size-3 rounded-3 min-height-32 d-flex align-items-center" href="#">Sketch</a>
</li>
</ul>
</div>