-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1097 lines (1080 loc) · 85 KB
/
index.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>Loan</title>
<link rel="stylesheet" href="assets/css/font.css">
<link rel="stylesheet" href="assets/css/animate.css">
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<div class="page">
<div class="showup">
<div class="menu">
<div class="evolve">bring<span>it</span>up</div>
<div class="menu__block">
<button class="btn menu__block-schedule">
Schedule an appointment
</button>
<svg viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="8.98242" y="8.98242" width="4" height="4" fill="#6D53AF"/>
<rect width="3.98828" height="3.98828" fill="#6D53AF"/>
<rect x="8.98242" y="17.9648" width="4" height="4" fill="#6D53AF"/>
<rect y="8.98242" width="3.98828" height="3.98828" fill="#6D53AF"/>
<rect y="17.9648" width="4" height="4" fill="#6D53AF"/>
<rect x="17.9648" width="3.98828" height="3.98828" fill="#6D53AF"/>
<rect x="8.98242" width="3.98828" height="3.98828" fill="#6D53AF"/>
<rect x="17.9648" y="8.98242" width="4" height="4" fill="#6D53AF"/>
<rect x="17.9648" y="17.9648" width="4" height="4" fill="#6D53AF"/>
</svg>
</div>
</div>
<div class="sidecontrol">
<a href="#">
<svg width="35" height="25" viewBox="0 0 35 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.0371094 21.388L7.41866 2.12134C7.41866 2.12134 11.0514 1.16004 14.8913 0.592773C11.1097 8.48623 8.82759 15.8142 8.82759 16.9457C8.82759 18.0767 9.15378 20.1594 14.0216 20.1594C19.7984 20.1594 27.13 16.6202 27.13 11.2118C27.13 18.4392 19.4091 23.0112 10.905 23.0112C4.56389 23.0112 0.0371094 21.388 0.0371094 21.388Z" fill="#9EC73D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M27.1304 11.212C27.1304 18.4393 19.4096 23.0114 10.9054 23.0114C4.56435 23.0114 0.108398 21.3882 0.108398 21.3882C0.108398 21.3882 3.92507 24.978 13.6608 24.978C23.3947 24.978 34.7983 18.9304 34.7983 10.1792C34.7983 -1.87078 17.4608 0.351842 17.4608 0.351842L14.8078 5.94232C14.8078 5.94232 17.2983 5.6566 19.3614 5.6566C22.2626 5.6566 27.1304 6.93577 27.1304 11.212Z" fill="#6D53AF"/>
</svg>
</a>
<div class="sidecontrol__controls">
<a class="next" href="#">
<svg viewBox="0 0 20 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.1" d="M19.4155 12.9143C19.3432 12.7329 19.1746 12.6145 18.9874 12.6145H13.9114V0.485189C13.9114 0.217373 13.7039 0 13.4482 0H6.03659C5.78089 0 5.57335 0.217373 5.57335 0.485189V12.6145H0.477884C0.290755 12.6145 0.122127 12.7329 0.0498639 12.9134C-0.0214873 13.0949 0.0174236 13.3035 0.14992 13.4423L9.39126 23.1535C9.47833 23.2447 9.59602 23.2962 9.71922 23.2962C9.84243 23.2962 9.96012 23.2447 10.0472 23.1545L19.3154 13.4432C19.4479 13.3044 19.4877 13.0958 19.4155 12.9143Z" fill="#000"/>
</svg>
</a>
<span class="sidecontrol__controls-count">01</span>
<div class="sidecontrol__controls-show">Bring It: Up</div>
</div>
</div>
<div class="showup__wrapper">
<div class="showup__intro">
<div class="title">bring<span>it</span>up</div>
<div class="subtitle">We can give you an education that you need</div>
<a href="modules.html">
<button class="btn">Get free access</button>
</a>
</div>
<div class="showup__video">
<div class="showup__author">
<div class="showup__author-name">John Smith</div>
<div class="showup__author-position">CEO</div>
</div>
<div data-url="vZ4Sne0wdxY" class="play">
<div class="play__circle">
<svg viewBox="0 0 14 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M14 8L0 16V0L14 8Z" fill="#6D53AF"/>
</svg>
</div>
<div class="play__text">why</div>
</div>
</div>
</div>
<div class="showup__content">
<div class="showup__content-title">Explore Educational<br>
Modules To Evolve <br>
Your Career
<div>
<button type="button" class="showup__prev">
<div class="play__content">
<svg width="9" height="11" viewBox="0 0 9 11" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.5" d="M0 5.5L9 11V0L0 5.5Z" fill="white"></path>
</svg>
</div>
</button>
<button type="button" class="showup__next">
<div class="play__content">
<svg width="9" height="11" viewBox="0 0 9 11" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.5" d="M9 5.5L0 11V0L9 5.5Z" fill="white"></path>
</svg>
</div>
</button>
</div>
</div>
<div class="showup__content-slider">
<a href="#" class="card card__1 card-active">
<div class="card__controls">
<div class="card__controls-count">01</div>
<div class="card__controls-arrow">
<svg width="24" height="21" viewBox="0 0 24 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="1" d="M12.9846 0.965391C12.8032 1.03765 12.6848 1.20628 12.6848 1.39341L12.6848 6.46942H0.555501C0.287685 6.46942 0.0703125 6.67696 0.0703125 6.93266L0.0703125 14.3443C0.0703125 14.6 0.287685 14.8075 0.555501 14.8075H12.6849V19.903C12.6849 20.0901 12.8033 20.2587 12.9837 20.331C13.1652 20.4023 13.3738 20.3634 13.5126 20.2309L23.2238 10.9896C23.315 10.9025 23.3665 10.7848 23.3665 10.6616C23.3665 10.5384 23.315 10.4207 23.2248 10.3337L13.5135 1.06545C13.3747 0.932949 13.1661 0.893127 12.9846 0.965391Z" fill="#fff"/>
</svg>
</div>
</div>
<div class="card__title">Building Your<br> Digital Brand</div>
</a>
<a href="#" class="card card__2">
<div class="card__controls">
<div class="card__controls-count">02</div>
<div class="card__controls-arrow">
<svg width="24" height="21" viewBox="0 0 24 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="1" d="M12.9846 0.965391C12.8032 1.03765 12.6848 1.20628 12.6848 1.39341L12.6848 6.46942H0.555501C0.287685 6.46942 0.0703125 6.67696 0.0703125 6.93266L0.0703125 14.3443C0.0703125 14.6 0.287685 14.8075 0.555501 14.8075H12.6849V19.903C12.6849 20.0901 12.8033 20.2587 12.9837 20.331C13.1652 20.4023 13.3738 20.3634 13.5126 20.2309L23.2238 10.9896C23.315 10.9025 23.3665 10.7848 23.3665 10.6616C23.3665 10.5384 23.315 10.4207 23.2248 10.3337L13.5135 1.06545C13.3747 0.932949 13.1661 0.893127 12.9846 0.965391Z" fill="#fff"/>
</svg>
</div>
</div>
<div class="card__title">Realtor<br> Partners</div>
</a>
<a href="#" class="card card__3">
<div class="card__controls">
<div class="card__controls-count">03</div>
<div class="card__controls-arrow">
<svg width="24" height="21" viewBox="0 0 24 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="1" d="M12.9846 0.965391C12.8032 1.03765 12.6848 1.20628 12.6848 1.39341L12.6848 6.46942H0.555501C0.287685 6.46942 0.0703125 6.67696 0.0703125 6.93266L0.0703125 14.3443C0.0703125 14.6 0.287685 14.8075 0.555501 14.8075H12.6849V19.903C12.6849 20.0901 12.8033 20.2587 12.9837 20.331C13.1652 20.4023 13.3738 20.3634 13.5126 20.2309L23.2238 10.9896C23.315 10.9025 23.3665 10.7848 23.3665 10.6616C23.3665 10.5384 23.315 10.4207 23.2248 10.3337L13.5135 1.06545C13.3747 0.932949 13.1661 0.893127 12.9846 0.965391Z" fill="#fff"/>
</svg>
</div>
</div>
<div class="card__title">Local<br> Marketing</div>
</a>
<a href="#" class="card card__1">
<div class="card__controls">
<div class="card__controls-count">04</div>
<div class="card__controls-arrow">
<svg width="24" height="21" viewBox="0 0 24 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="1" d="M12.9846 0.965391C12.8032 1.03765 12.6848 1.20628 12.6848 1.39341L12.6848 6.46942H0.555501C0.287685 6.46942 0.0703125 6.67696 0.0703125 6.93266L0.0703125 14.3443C0.0703125 14.6 0.287685 14.8075 0.555501 14.8075H12.6849V19.903C12.6849 20.0901 12.8033 20.2587 12.9837 20.331C13.1652 20.4023 13.3738 20.3634 13.5126 20.2309L23.2238 10.9896C23.315 10.9025 23.3665 10.7848 23.3665 10.6616C23.3665 10.5384 23.315 10.4207 23.2248 10.3337L13.5135 1.06545C13.3747 0.932949 13.1661 0.893127 12.9846 0.965391Z" fill="#fff"/>
</svg>
</div>
</div>
<div class="card__title">Digital<br> Marketing</div>
</a>
<a href="#" class="card card__2">
<div class="card__controls">
<div class="card__controls-count">05</div>
<div class="card__controls-arrow">
<svg width="24" height="21" viewBox="0 0 24 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="1" d="M12.9846 0.965391C12.8032 1.03765 12.6848 1.20628 12.6848 1.39341L12.6848 6.46942H0.555501C0.287685 6.46942 0.0703125 6.67696 0.0703125 6.93266L0.0703125 14.3443C0.0703125 14.6 0.287685 14.8075 0.555501 14.8075H12.6849V19.903C12.6849 20.0901 12.8033 20.2587 12.9837 20.331C13.1652 20.4023 13.3738 20.3634 13.5126 20.2309L23.2238 10.9896C23.315 10.9025 23.3665 10.7848 23.3665 10.6616C23.3665 10.5384 23.315 10.4207 23.2248 10.3337L13.5135 1.06545C13.3747 0.932949 13.1661 0.893127 12.9846 0.965391Z" fill="#fff"/>
</svg>
</div>
</div>
<div class="card__title">Lead<br> Management</div>
</a>
<a href="#" class="card card__2">
<div class="card__controls">
<div class="card__controls-count">06</div>
<div class="card__controls-arrow">
<svg width="24" height="21" viewBox="0 0 24 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="1" d="M12.9846 0.965391C12.8032 1.03765 12.6848 1.20628 12.6848 1.39341L12.6848 6.46942H0.555501C0.287685 6.46942 0.0703125 6.67696 0.0703125 6.93266L0.0703125 14.3443C0.0703125 14.6 0.287685 14.8075 0.555501 14.8075H12.6849V19.903C12.6849 20.0901 12.8033 20.2587 12.9837 20.331C13.1652 20.4023 13.3738 20.3634 13.5126 20.2309L23.2238 10.9896C23.315 10.9025 23.3665 10.7848 23.3665 10.6616C23.3665 10.5384 23.315 10.4207 23.2248 10.3337L13.5135 1.06545C13.3747 0.932949 13.1661 0.893127 12.9846 0.965391Z" fill="#fff"/>
</svg>
</div>
</div>
<div class="card__title">Quoting</div>
</a>
<a href="#" class="card card__2">
<div class="card__controls">
<div class="card__controls-count">07</div>
<div class="card__controls-arrow">
<svg width="24" height="21" viewBox="0 0 24 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="1" d="M12.9846 0.965391C12.8032 1.03765 12.6848 1.20628 12.6848 1.39341L12.6848 6.46942H0.555501C0.287685 6.46942 0.0703125 6.67696 0.0703125 6.93266L0.0703125 14.3443C0.0703125 14.6 0.287685 14.8075 0.555501 14.8075H12.6849V19.903C12.6849 20.0901 12.8033 20.2587 12.9837 20.331C13.1652 20.4023 13.3738 20.3634 13.5126 20.2309L23.2238 10.9896C23.315 10.9025 23.3665 10.7848 23.3665 10.6616C23.3665 10.5384 23.315 10.4207 23.2248 10.3337L13.5135 1.06545C13.3747 0.932949 13.1661 0.893127 12.9846 0.965391Z" fill="#fff"/>
</svg>
</div>
</div>
<div class="card__title">Customer<br> Loan Experience</div>
</a>
<a href="#" class="card card__2">
<div class="card__controls">
<div class="card__controls-count">08</div>
<div class="card__controls-arrow">
<svg width="24" height="21" viewBox="0 0 24 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="1" d="M12.9846 0.965391C12.8032 1.03765 12.6848 1.20628 12.6848 1.39341L12.6848 6.46942H0.555501C0.287685 6.46942 0.0703125 6.67696 0.0703125 6.93266L0.0703125 14.3443C0.0703125 14.6 0.287685 14.8075 0.555501 14.8075H12.6849V19.903C12.6849 20.0901 12.8033 20.2587 12.9837 20.331C13.1652 20.4023 13.3738 20.3634 13.5126 20.2309L23.2238 10.9896C23.315 10.9025 23.3665 10.7848 23.3665 10.6616C23.3665 10.5384 23.315 10.4207 23.2248 10.3337L13.5135 1.06545C13.3747 0.932949 13.1661 0.893127 12.9846 0.965391Z" fill="#fff"/>
</svg>
</div>
</div>
<div class="card__title">Customer<br> For Life</div>
</a>
</div>
<div class="showup__content-side">
<div class="showup__content-explore">
<div class="module">Explore all modules</div>
<div class="plus">
<div class="plus__content">
<svg viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M5.16699 1.00033C5.16699 0.540088 5.54009 0.166992 6.00033 0.166992C6.46056 0.166992 6.83366 0.540088 6.83366 1.00033V11.0003C6.83366 11.4606 6.46056 11.8337 6.00033 11.8337C5.54009 11.8337 5.16699 11.4606 5.16699 11.0003V1.00033Z" fill="white"/>
<path d="M1.00033 6.83366C0.540088 6.83366 0.166992 6.46056 0.166992 6.00033C0.166992 5.54009 0.540088 5.16699 1.00033 5.16699H11.0003C11.4606 5.16699 11.8337 5.54009 11.8337 6.00033C11.8337 6.46056 11.4606 6.83366 11.0003 6.83366H1.00033Z" fill="white"/>
</svg>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="difference">
<div class="menu">
<div class="evolve hidden">bring<span>it:</span>up</div>
<div class="menu__block">
<a class="btn menu__block-schedule">
schedule an appointment
</a>
<svg viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="8.98242" y="8.98242" width="4" height="4" fill="#6D53AF"/>
<rect width="3.98828" height="3.98828" fill="#6D53AF"/>
<rect x="8.98242" y="17.9648" width="4" height="4" fill="#6D53AF"/>
<rect y="8.98242" width="3.98828" height="3.98828" fill="#6D53AF"/>
<rect y="17.9648" width="4" height="4" fill="#6D53AF"/>
<rect x="17.9648" width="3.98828" height="3.98828" fill="#6D53AF"/>
<rect x="8.98242" width="3.98828" height="3.98828" fill="#6D53AF"/>
<rect x="17.9648" y="8.98242" width="4" height="4" fill="#6D53AF"/>
<rect x="17.9648" y="17.9648" width="4" height="4" fill="#6D53AF"/>
</svg>
</div>
</div>
<div class="sidecontrol">
<a href="#">
<svg width="35" height="25" viewBox="0 0 35 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.0371094 21.388L7.41866 2.12134C7.41866 2.12134 11.0514 1.16004 14.8913 0.592773C11.1097 8.48623 8.82759 15.8142 8.82759 16.9457C8.82759 18.0767 9.15378 20.1594 14.0216 20.1594C19.7984 20.1594 27.13 16.6202 27.13 11.2118C27.13 18.4392 19.4091 23.0112 10.905 23.0112C4.56389 23.0112 0.0371094 21.388 0.0371094 21.388Z" fill="#9EC73D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M27.1304 11.212C27.1304 18.4393 19.4096 23.0114 10.9054 23.0114C4.56435 23.0114 0.108398 21.3882 0.108398 21.3882C0.108398 21.3882 3.92507 24.978 13.6608 24.978C23.3947 24.978 34.7983 18.9304 34.7983 10.1792C34.7983 -1.87078 17.4608 0.351842 17.4608 0.351842L14.8078 5.94232C14.8078 5.94232 17.2983 5.6566 19.3614 5.6566C22.2626 5.6566 27.1304 6.93577 27.1304 11.212Z" fill="#6D53AF"/>
</svg>
</a>
<div class="sidecontrol__controls">
<a class="next" href="#">
<svg viewBox="0 0 20 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.1" d="M19.4155 12.9143C19.3432 12.7329 19.1746 12.6145 18.9874 12.6145H13.9114V0.485189C13.9114 0.217373 13.7039 0 13.4482 0H6.03659C5.78089 0 5.57335 0.217373 5.57335 0.485189V12.6145H0.477884C0.290755 12.6145 0.122127 12.7329 0.0498639 12.9134C-0.0214873 13.0949 0.0174236 13.3035 0.14992 13.4423L9.39126 23.1535C9.47833 23.2447 9.59602 23.2962 9.71922 23.2962C9.84243 23.2962 9.96012 23.2447 10.0472 23.1545L19.3154 13.4432C19.4479 13.3044 19.4877 13.0958 19.4155 12.9143Z" fill="#000"/>
</svg>
</a>
<span class="sidecontrol__controls-count">02</span>
<div class="sidecontrol__controls-show">Bring It: Up</div>
</div>
</div>
<div class="difference__wrapper">
<div class="difference__info">
<div class="title">The difference</span></div>
<div class="subtitle">Between education 10 years ago and today</div>
<div class="difference__info-cards">
<div class="officerold">
<div class="officer__card-title">
Education<br>
<span>10 years ago</span>
</div>
<div class="officer__card-item">
<div class="card__counter">01</div>
<div class="card__descr">
First step with some text
and explanation
</div>
</div>
<div class="officer__card-item">
<div class="card__counter">02</div>
<div class="card__descr">
Second step with some text
and explanation
</div>
</div>
<div class="officer__card-item">
<div class="card__counter">03</div>
<div class="card__descr">
Third step with some text
and explanation
</div>
</div>
<div class="officer__card-item">
<div class="card__counter">
<svg width="18" height="26" viewBox="0 0 18 26" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.34" filter="url(#filter0_d)">
<path d="M4.824 11.6716V7.37561H6.048C8.12 7.37561 9.156 6.85161 9.156 5.80361C9.156 4.79561 8.128 4.28361 6.072 4.26761C5.44 4.26761 4.86 4.29961 4.332 4.36361L4.116 0.619608C4.9 0.515608 5.764 0.463608 6.708 0.463608C8.772 0.463608 10.384 0.907609 11.544 1.79561C12.712 2.68361 13.296 3.89161 13.296 5.41961C13.296 6.75561 12.88 7.85161 12.048 8.70761C11.216 9.55561 10.008 10.1316 8.424 10.4356L8.34 11.6716H4.824ZM6.576 12.9436C7.232 12.9436 7.804 13.1876 8.292 13.6756C8.788 14.1636 9.036 14.7396 9.036 15.4036C9.036 16.0756 8.788 16.6636 8.292 17.1676C7.804 17.6636 7.232 17.9116 6.576 17.9116C5.904 17.9116 5.32 17.6676 4.824 17.1796C4.336 16.6836 4.092 16.0956 4.092 15.4156C4.092 14.7516 4.336 14.1756 4.824 13.6876C5.32 13.1916 5.904 12.9436 6.576 12.9436Z" fill="#BEBEBE"/>
</g>
<defs>
<filter id="filter0_d" x="0.0917969" y="0.463867" width="17.204" height="25.448" 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="4"/>
<feGaussianBlur stdDeviation="2"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
</defs>
</svg>
</div>
<div class="card__click">
<div>Click to show </div>
<div class="plus">
<div class="plus__content">
<svg viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M5.16699 1.00033C5.16699 0.540088 5.54009 0.166992 6.00033 0.166992C6.46056 0.166992 6.83366 0.540088 6.83366 1.00033V11.0003C6.83366 11.4606 6.46056 11.8337 6.00033 11.8337C5.54009 11.8337 5.16699 11.4606 5.16699 11.0003V1.00033Z" fill="white"/>
<path d="M1.00033 6.83366C0.540088 6.83366 0.166992 6.46056 0.166992 6.00033C0.166992 5.54009 0.540088 5.16699 1.00033 5.16699H11.0003C11.4606 5.16699 11.8337 5.54009 11.8337 6.00033C11.8337 6.46056 11.4606 6.83366 11.0003 6.83366H1.00033Z" fill="white"/>
</svg>
</div>
</div>
</div>
</div>
</div>
<div class="officernew">
<div class="officer__card-title">
Education<br>
<span>today</span>
</div>
<div class="officer__card-item">
<div class="card__counter">01</div>
<div class="card__descr">
First step with some text
and explanation
</div>
</div>
<div class="officer__card-item">
<div class="card__counter">02</div>
<div class="card__descr">
Second step with some text
and explanation
</div>
</div>
<div class="officer__card-item">
<div class="card__counter">03</div>
<div class="card__descr">
Third step with some text
and explanation
</div>
</div>
<div class="officer__card-item">
<div class="card__counter">
<svg width="18" height="26" viewBox="0 0 18 26" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.34" filter="url(#filter0_d)">
<path d="M4.824 11.6716V7.37561H6.048C8.12 7.37561 9.156 6.85161 9.156 5.80361C9.156 4.79561 8.128 4.28361 6.072 4.26761C5.44 4.26761 4.86 4.29961 4.332 4.36361L4.116 0.619608C4.9 0.515608 5.764 0.463608 6.708 0.463608C8.772 0.463608 10.384 0.907609 11.544 1.79561C12.712 2.68361 13.296 3.89161 13.296 5.41961C13.296 6.75561 12.88 7.85161 12.048 8.70761C11.216 9.55561 10.008 10.1316 8.424 10.4356L8.34 11.6716H4.824ZM6.576 12.9436C7.232 12.9436 7.804 13.1876 8.292 13.6756C8.788 14.1636 9.036 14.7396 9.036 15.4036C9.036 16.0756 8.788 16.6636 8.292 17.1676C7.804 17.6636 7.232 17.9116 6.576 17.9116C5.904 17.9116 5.32 17.6676 4.824 17.1796C4.336 16.6836 4.092 16.0956 4.092 15.4156C4.092 14.7516 4.336 14.1756 4.824 13.6876C5.32 13.1916 5.904 12.9436 6.576 12.9436Z" fill="#BEBEBE"/>
</g>
<defs>
<filter id="filter0_d" x="0.0917969" y="0.463867" width="17.204" height="25.448" 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="4"/>
<feGaussianBlur stdDeviation="2"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
</defs>
</svg>
</div>
<div class="card__click">
<div>Click to show </div>
<div class="plus">
<div class="plus__content">
<svg viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M5.16699 1.00033C5.16699 0.540088 5.54009 0.166992 6.00033 0.166992C6.46056 0.166992 6.83366 0.540088 6.83366 1.00033V11.0003C6.83366 11.4606 6.46056 11.8337 6.00033 11.8337C5.54009 11.8337 5.16699 11.4606 5.16699 11.0003V1.00033Z" fill="white"/>
<path d="M1.00033 6.83366C0.540088 6.83366 0.166992 6.46056 0.166992 6.00033C0.166992 5.54009 0.540088 5.16699 1.00033 5.16699H11.0003C11.4606 5.16699 11.8337 5.54009 11.8337 6.00033C11.8337 6.46056 11.4606 6.83366 11.0003 6.83366H1.00033Z" fill="white"/>
</svg>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="difference__photo"></div>
</div>
</div>
<div class="modules">
<div class="menu">
<div class="evolve hidden">bring<span>it:</span>up</div>
<div class="menu__block">
<a class="btn menu__block-schedule white">
schedule an appointment
</a>
<svg viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="8.98242" y="8.98242" width="4" height="4" fill="#fff"/>
<rect width="3.98828" height="3.98828" fill="#fff"/>
<rect x="8.98242" y="17.9648" width="4" height="4" fill="#fff"/>
<rect y="8.98242" width="3.98828" height="3.98828" fill="#fff"/>
<rect y="17.9648" width="4" height="4" fill="#fff"/>
<rect x="17.9648" width="3.98828" height="3.98828" fill="#fff"/>
<rect x="8.98242" width="3.98828" height="3.98828" fill="#fff"/>
<rect x="17.9648" y="8.98242" width="4" height="4" fill="#fff"/>
<rect x="17.9648" y="17.9648" width="4" height="4" fill="#fff"/>
</svg>
</div>
</div>
<div class="sidecontrol">
<a href="#">
<svg width="35" height="25" viewBox="0 0 35 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.0371094 21.388L7.41866 2.12134C7.41866 2.12134 11.0514 1.16004 14.8913 0.592773C11.1097 8.48623 8.82759 15.8142 8.82759 16.9457C8.82759 18.0767 9.15378 20.1594 14.0216 20.1594C19.7984 20.1594 27.13 16.6202 27.13 11.2118C27.13 18.4392 19.4091 23.0112 10.905 23.0112C4.56389 23.0112 0.0371094 21.388 0.0371094 21.388Z" fill="#9EC73D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M27.1304 11.212C27.1304 18.4393 19.4096 23.0114 10.9054 23.0114C4.56435 23.0114 0.108398 21.3882 0.108398 21.3882C0.108398 21.3882 3.92507 24.978 13.6608 24.978C23.3947 24.978 34.7983 18.9304 34.7983 10.1792C34.7983 -1.87078 17.4608 0.351842 17.4608 0.351842L14.8078 5.94232C14.8078 5.94232 17.2983 5.6566 19.3614 5.6566C22.2626 5.6566 27.1304 6.93577 27.1304 11.212Z" fill="#6D53AF"/>
</svg>
</a>
<div class="sidecontrol__controls">
<a class="next" href="#">
<svg viewBox="0 0 20 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.1" d="M19.4155 12.9143C19.3432 12.7329 19.1746 12.6145 18.9874 12.6145H13.9114V0.485189C13.9114 0.217373 13.7039 0 13.4482 0H6.03659C5.78089 0 5.57335 0.217373 5.57335 0.485189V12.6145H0.477884C0.290755 12.6145 0.122127 12.7329 0.0498639 12.9134C-0.0214873 13.0949 0.0174236 13.3035 0.14992 13.4423L9.39126 23.1535C9.47833 23.2447 9.59602 23.2962 9.71922 23.2962C9.84243 23.2962 9.96012 23.2447 10.0472 23.1545L19.3154 13.4432C19.4479 13.3044 19.4877 13.0958 19.4155 12.9143Z" fill="#000"/>
</svg>
</a>
<span class="sidecontrol__controls-count">03</span>
<div class="sidecontrol__controls-show">Bring It: Up</div>
</div>
</div>
<div class="modules__wrapper">
<div class="modules__info">
<div class="evolve opaci">bring<span>it:</span>up</div>
<div class="title">Explore<br>
the Modules</div>
<div class="subtitle">Fifth step with some text<br>
and explanation</div>
<button class="btn">Get access</button>
<div class="modules__info-btns">
<button type="button" class="slick-prev">
<div class="play__content">
<svg width="9" height="11" viewBox="0 0 9 11" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="1" d="M0 5.5L9 11V0L0 5.5Z" fill="#EAEAEA"/>
</svg>
</div>
</button>
<button type="button" class="slick-next">
<div class="play__content">
<svg width="9" height="11" viewBox="0 0 9 11" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="1" d="M9 5.5L0 11V0L9 5.5Z" fill="#EAEAEA"/>
</svg>
</div>
</button>
</div>
<div class="hanson">
<div class="hanson__title">John Smith</div>
<div class="hanson__teacher">your teacher</div>
<div class="hanson__descr">
«We have 8 modules, you <br>
can see what are they about»
</div>
</div>
</div>
<div class="modules__slider">
<div class="modules__content-slider">
<a href="#" class="card card__1 card-active">
<div class="card__controls">
<div class="card__controls-count">Module #1</div>
<div class="card__controls-arrow">
<svg width="24" height="21" viewBox="0 0 24 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="1" d="M12.9846 0.965391C12.8032 1.03765 12.6848 1.20628 12.6848 1.39341L12.6848 6.46942H0.555501C0.287685 6.46942 0.0703125 6.67696 0.0703125 6.93266L0.0703125 14.3443C0.0703125 14.6 0.287685 14.8075 0.555501 14.8075H12.6849V19.903C12.6849 20.0901 12.8033 20.2587 12.9837 20.331C13.1652 20.4023 13.3738 20.3634 13.5126 20.2309L23.2238 10.9896C23.315 10.9025 23.3665 10.7848 23.3665 10.6616C23.3665 10.5384 23.315 10.4207 23.2248 10.3337L13.5135 1.06545C13.3747 0.932949 13.1661 0.893127 12.9846 0.965391Z" fill="#fff"/>
</svg>
</div>
</div>
<div class="card__title">Building Your Digital Brand</div>
<div class="card__description">
<div class="card__description-item">
<div class="number">01</div>
<div class="descr-item">What is in the module #1</div>
</div>
<div class="card__description-item">
<div class="number">02</div>
<div class="descr-item">What is in the module #2</div>
</div>
</div>
</a>
<a href="#" class="card card__2">
<div class="card__controls">
<div class="card__controls-count">Module #2</div>
<div class="card__controls-arrow">
<svg width="24" height="21" viewBox="0 0 24 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="1" d="M12.9846 0.965391C12.8032 1.03765 12.6848 1.20628 12.6848 1.39341L12.6848 6.46942H0.555501C0.287685 6.46942 0.0703125 6.67696 0.0703125 6.93266L0.0703125 14.3443C0.0703125 14.6 0.287685 14.8075 0.555501 14.8075H12.6849V19.903C12.6849 20.0901 12.8033 20.2587 12.9837 20.331C13.1652 20.4023 13.3738 20.3634 13.5126 20.2309L23.2238 10.9896C23.315 10.9025 23.3665 10.7848 23.3665 10.6616C23.3665 10.5384 23.315 10.4207 23.2248 10.3337L13.5135 1.06545C13.3747 0.932949 13.1661 0.893127 12.9846 0.965391Z" fill="#fff"/>
</svg>
</div>
</div>
<div class="card__title">Realtor Partners</div>
<div class="card__description">
<div class="card__description-item">
<div class="number">01</div>
<div class="descr-item">What is in the module #1</div>
</div>
<div class="card__description-item">
<div class="number">02</div>
<div class="descr-item">What is in the module #2</div>
</div>
</div>
</a>
<a href="#" class="card card__3">
<div class="card__controls">
<div class="card__controls-count">Module #3</div>
<div class="card__controls-arrow">
<svg width="24" height="21" viewBox="0 0 24 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="1" d="M12.9846 0.965391C12.8032 1.03765 12.6848 1.20628 12.6848 1.39341L12.6848 6.46942H0.555501C0.287685 6.46942 0.0703125 6.67696 0.0703125 6.93266L0.0703125 14.3443C0.0703125 14.6 0.287685 14.8075 0.555501 14.8075H12.6849V19.903C12.6849 20.0901 12.8033 20.2587 12.9837 20.331C13.1652 20.4023 13.3738 20.3634 13.5126 20.2309L23.2238 10.9896C23.315 10.9025 23.3665 10.7848 23.3665 10.6616C23.3665 10.5384 23.315 10.4207 23.2248 10.3337L13.5135 1.06545C13.3747 0.932949 13.1661 0.893127 12.9846 0.965391Z" fill="#fff"/>
</svg>
</div>
</div>
<div class="card__title">Local Marketing</div>
<div class="card__description">
<div class="card__description-item">
<div class="number">01</div>
<div class="descr-item">What is in the module #1</div>
</div>
<div class="card__description-item">
<div class="number">02</div>
<div class="descr-item">What is in the module #2</div>
</div>
</div>
</a>
<a href="#" class="card card__1">
<div class="card__controls">
<div class="card__controls-count">Module #4</div>
<div class="card__controls-arrow">
<svg width="24" height="21" viewBox="0 0 24 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="1" d="M12.9846 0.965391C12.8032 1.03765 12.6848 1.20628 12.6848 1.39341L12.6848 6.46942H0.555501C0.287685 6.46942 0.0703125 6.67696 0.0703125 6.93266L0.0703125 14.3443C0.0703125 14.6 0.287685 14.8075 0.555501 14.8075H12.6849V19.903C12.6849 20.0901 12.8033 20.2587 12.9837 20.331C13.1652 20.4023 13.3738 20.3634 13.5126 20.2309L23.2238 10.9896C23.315 10.9025 23.3665 10.7848 23.3665 10.6616C23.3665 10.5384 23.315 10.4207 23.2248 10.3337L13.5135 1.06545C13.3747 0.932949 13.1661 0.893127 12.9846 0.965391Z" fill="#fff"/>
</svg>
</div>
</div>
<div class="card__title">Digital Marketing</div>
<div class="card__description">
<div class="card__description-item">
<div class="number">01</div>
<div class="descr-item">What is in the module #1</div>
</div>
<div class="card__description-item">
<div class="number">02</div>
<div class="descr-item">What is in the module #2</div>
</div>
</div>
</a>
<a href="#" class="card card__1">
<div class="card__controls">
<div class="card__controls-count">Module #5</div>
<div class="card__controls-arrow">
<svg width="24" height="21" viewBox="0 0 24 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="1" d="M12.9846 0.965391C12.8032 1.03765 12.6848 1.20628 12.6848 1.39341L12.6848 6.46942H0.555501C0.287685 6.46942 0.0703125 6.67696 0.0703125 6.93266L0.0703125 14.3443C0.0703125 14.6 0.287685 14.8075 0.555501 14.8075H12.6849V19.903C12.6849 20.0901 12.8033 20.2587 12.9837 20.331C13.1652 20.4023 13.3738 20.3634 13.5126 20.2309L23.2238 10.9896C23.315 10.9025 23.3665 10.7848 23.3665 10.6616C23.3665 10.5384 23.315 10.4207 23.2248 10.3337L13.5135 1.06545C13.3747 0.932949 13.1661 0.893127 12.9846 0.965391Z" fill="#fff"/>
</svg>
</div>
</div>
<div class="card__title">Lead Management</div>
<div class="card__description">
<div class="card__description-item">
<div class="number">01</div>
<div class="descr-item">What is in the module #1</div>
</div>
<div class="card__description-item">
<div class="number">02</div>
<div class="descr-item">What is in the module #2</div>
</div>
</div>
</a>
<a href="#" class="card card__1">
<div class="card__controls">
<div class="card__controls-count">Module #6</div>
<div class="card__controls-arrow">
<svg width="24" height="21" viewBox="0 0 24 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="1" d="M12.9846 0.965391C12.8032 1.03765 12.6848 1.20628 12.6848 1.39341L12.6848 6.46942H0.555501C0.287685 6.46942 0.0703125 6.67696 0.0703125 6.93266L0.0703125 14.3443C0.0703125 14.6 0.287685 14.8075 0.555501 14.8075H12.6849V19.903C12.6849 20.0901 12.8033 20.2587 12.9837 20.331C13.1652 20.4023 13.3738 20.3634 13.5126 20.2309L23.2238 10.9896C23.315 10.9025 23.3665 10.7848 23.3665 10.6616C23.3665 10.5384 23.315 10.4207 23.2248 10.3337L13.5135 1.06545C13.3747 0.932949 13.1661 0.893127 12.9846 0.965391Z" fill="#fff"/>
</svg>
</div>
</div>
<div class="card__title">Quoting</div>
<div class="card__description">
<div class="card__description-item">
<div class="number">01</div>
<div class="descr-item">What is in the module #1</div>
</div>
<div class="card__description-item">
<div class="number">02</div>
<div class="descr-item">What is in the module #2</div>
</div>
</div>
</a>
<a href="#" class="card card__1">
<div class="card__controls">
<div class="card__controls-count">Module #7</div>
<div class="card__controls-arrow">
<svg width="24" height="21" viewBox="0 0 24 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="1" d="M12.9846 0.965391C12.8032 1.03765 12.6848 1.20628 12.6848 1.39341L12.6848 6.46942H0.555501C0.287685 6.46942 0.0703125 6.67696 0.0703125 6.93266L0.0703125 14.3443C0.0703125 14.6 0.287685 14.8075 0.555501 14.8075H12.6849V19.903C12.6849 20.0901 12.8033 20.2587 12.9837 20.331C13.1652 20.4023 13.3738 20.3634 13.5126 20.2309L23.2238 10.9896C23.315 10.9025 23.3665 10.7848 23.3665 10.6616C23.3665 10.5384 23.315 10.4207 23.2248 10.3337L13.5135 1.06545C13.3747 0.932949 13.1661 0.893127 12.9846 0.965391Z" fill="#fff"/>
</svg>
</div>
</div>
<div class="card__title">Customer Loan Experience</div>
<div class="card__description">
<div class="card__description-item">
<div class="number">01</div>
<div class="descr-item">What is in the module #1</div>
</div>
<div class="card__description-item">
<div class="number">02</div>
<div class="descr-item">What is in the module #2</div>
</div>
</div>
</a>
<a href="#" class="card card__1">
<div class="card__controls">
<div class="card__controls-count">Module #8</div>
<div class="card__controls-arrow">
<svg width="24" height="21" viewBox="0 0 24 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="1" d="M12.9846 0.965391C12.8032 1.03765 12.6848 1.20628 12.6848 1.39341L12.6848 6.46942H0.555501C0.287685 6.46942 0.0703125 6.67696 0.0703125 6.93266L0.0703125 14.3443C0.0703125 14.6 0.287685 14.8075 0.555501 14.8075H12.6849V19.903C12.6849 20.0901 12.8033 20.2587 12.9837 20.331C13.1652 20.4023 13.3738 20.3634 13.5126 20.2309L23.2238 10.9896C23.315 10.9025 23.3665 10.7848 23.3665 10.6616C23.3665 10.5384 23.315 10.4207 23.2248 10.3337L13.5135 1.06545C13.3747 0.932949 13.1661 0.893127 12.9846 0.965391Z" fill="#fff"/>
</svg>
</div>
</div>
<div class="card__title">Customer For Life</div>
<div class="card__description">
<div class="card__description-item">
<div class="number">01</div>
<div class="descr-item">What is in the module #1</div>
</div>
<div class="card__description-item">
<div class="number">02</div>
<div class="descr-item">What is in the module #2</div>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
<div class="join">
<div class="menu">
<div class="evolve hidden">show<span>up:</span>evolve</div>
<div class="menu__block">
<a class="btn menu__block-schedule white">
schedule an appointment
</a>
<svg viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="8.98242" y="8.98242" width="4" height="4" fill="#fff"/>
<rect width="3.98828" height="3.98828" fill="#fff"/>
<rect x="8.98242" y="17.9648" width="4" height="4" fill="#fff"/>
<rect y="8.98242" width="3.98828" height="3.98828" fill="#fff"/>
<rect y="17.9648" width="4" height="4" fill="#fff"/>
<rect x="17.9648" width="3.98828" height="3.98828" fill="#fff"/>
<rect x="8.98242" width="3.98828" height="3.98828" fill="#fff"/>
<rect x="17.9648" y="8.98242" width="4" height="4" fill="#fff"/>
<rect x="17.9648" y="17.9648" width="4" height="4" fill="#fff"/>
</svg>
</div>
</div>
<div class="sidecontrol colored">
<a href="#">
<svg width="35" height="25" viewBox="0 0 35 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.0371094 21.388L7.41866 2.12134C7.41866 2.12134 11.0514 1.16004 14.8913 0.592773C11.1097 8.48623 8.82759 15.8142 8.82759 16.9457C8.82759 18.0767 9.15378 20.1594 14.0216 20.1594C19.7984 20.1594 27.13 16.6202 27.13 11.2118C27.13 18.4392 19.4091 23.0112 10.905 23.0112C4.56389 23.0112 0.0371094 21.388 0.0371094 21.388Z" fill="#9EC73D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M27.1304 11.212C27.1304 18.4393 19.4096 23.0114 10.9054 23.0114C4.56435 23.0114 0.108398 21.3882 0.108398 21.3882C0.108398 21.3882 3.92507 24.978 13.6608 24.978C23.3947 24.978 34.7983 18.9304 34.7983 10.1792C34.7983 -1.87078 17.4608 0.351842 17.4608 0.351842L14.8078 5.94232C14.8078 5.94232 17.2983 5.6566 19.3614 5.6566C22.2626 5.6566 27.1304 6.93577 27.1304 11.212Z" fill="#fff"/>
</svg>
</a>
<div class="sidecontrol__controls">
<a class="next" href="#">
<svg viewBox="0 0 20 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.1" d="M19.4155 12.9143C19.3432 12.7329 19.1746 12.6145 18.9874 12.6145H13.9114V0.485189C13.9114 0.217373 13.7039 0 13.4482 0H6.03659C5.78089 0 5.57335 0.217373 5.57335 0.485189V12.6145H0.477884C0.290755 12.6145 0.122127 12.7329 0.0498639 12.9134C-0.0214873 13.0949 0.0174236 13.3035 0.14992 13.4423L9.39126 23.1535C9.47833 23.2447 9.59602 23.2962 9.71922 23.2962C9.84243 23.2962 9.96012 23.2447 10.0472 23.1545L19.3154 13.4432C19.4479 13.3044 19.4877 13.0958 19.4155 12.9143Z" fill="#fff"/>
</svg>
</a>
<span class="sidecontrol__controls-count white">04</span>
<div class="sidecontrol__controls-show white">Bring It: Up</div>
</div>
</div>
<div class="join__wrapper">
<div class="join__intro">
</div>
<div class="join__evolution">
<div class="title">Let us help you</div>
<form action="#" class="form">
<div class="form__block">
<div>
<label for="name">My name is</label>
<input name="name" type="text" placeholder="Your name">
<svg class="icon" width="18" height="20" viewBox="0 0 18 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.2">
<path d="M17 19V17C17 14.7909 15.2091 13 13 13H5C2.79086 13 1 14.7909 1 17V19" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9 9C11.2091 9 13 7.20914 13 5C13 2.79086 11.2091 1 9 1C6.79086 1 5 2.79086 5 5C5 7.20914 6.79086 9 9 9Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</g>
</svg>
</div>
</div>
<div class="form__block">
<div>
<label for="name">And i am</label>
<input name="position" type="text" placeholder="ex. Retail loan officer">
<svg class="icon" width="22" height="20" viewBox="0 0 22 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect opacity="0.2" x="1" y="5" width="20" height="14" rx="2" stroke="#fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path opacity="0.2" d="M15 19V3C15 1.89543 14.1046 1 13 1H9C7.89543 1 7 1.89543 7 3V19" stroke="#fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div>
<label for="name">From</label>
<select name="city" id="city">
<option value="New-York">New-York</option>
<option value="London">London</option>
<option value="Paris">Paris</option>
<option value="Berlin">Berlin</option>
<option value="Amsterdam">Amsterdam</option>
</select>
<svg class="icon icon-double" width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.2">
<path fill-rule="evenodd" clip-rule="evenodd" d="M11 21C16.5228 21 21 16.5228 21 11C21 5.47715 16.5228 1 11 1C5.47715 1 1 5.47715 1 11C1 16.5228 5.47715 21 11 21Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M1 11H21" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11 1C13.5013 3.73835 14.9228 7.29203 15 11C14.9228 14.708 13.5013 18.2616 11 21C8.49872 18.2616 7.07725 14.708 7 11C7.07725 7.29203 8.49872 3.73835 11 1V1Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</g>
</svg>
<svg class="icon icon-down" width="14" height="8" viewBox="0 0 14 8" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.5" d="M1 1L7 7L13 1" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
</div>
<div class="form__block">
<div>
<label for="name">Hit me up here</label>
<input name="email" type="email" placeholder="Email">
<svg class="icon" width="22" height="18" viewBox="0 0 22 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.2">
<path fill-rule="evenodd" clip-rule="evenodd" d="M3 1H19C20.1 1 21 1.9 21 3V15C21 16.1 20.1 17 19 17H3C1.9 17 1 16.1 1 15V3C1 1.9 1.9 1 3 1Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M21 3L11 10L1 3" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</g>
</svg>
</div>
<div>
<label for="name">And here</label>
<input name="phone" type="text" id="phone" placeholder="+1 (___) ___-____">
<svg class="icon" width="23" height="22" viewBox="0 0 23 22" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.2">
<path fill-rule="evenodd" clip-rule="evenodd" d="M21.0004 15.9201V18.9201C21.0027 19.4832 20.7675 20.0213 20.3525 20.402C19.9375 20.7827 19.3813 20.9708 18.8204 20.9201C15.7433 20.5857 12.7874 19.5342 10.1904 17.8501C7.77426 16.3148 5.72576 14.2663 4.19043 11.8501C2.50041 9.2413 1.44867 6.27109 1.12043 3.1801C1.0699 2.62097 1.2567 2.06635 1.63519 1.65172C2.01369 1.23709 2.54902 1.00063 3.11043 1.0001H6.11043C7.11429 0.990218 7.96993 1.72607 8.11043 2.7201C8.23705 3.68016 8.47188 4.62283 8.81043 5.5301C9.08516 6.26097 8.90944 7.0849 8.36043 7.6401L7.09043 8.9101C8.51398 11.4136 10.5869 13.4865 13.0904 14.9101L14.3604 13.6401C14.9156 13.0911 15.7396 12.9154 16.4704 13.1901C17.3777 13.5286 18.3204 13.7635 19.2804 13.8901C20.286 14.032 21.0256 14.9049 21.0004 15.9201Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</g>
</svg>
</div>
</div>
<div class="form__block">
<button class="btn">Send</button>
<div class="policy">By clicking «Send» I am agreed<br>
with Privacy Policy.</div>
</div>
</form>
</div>
</div>
</div>
<div class="feed">
<div class="menu">
<div class="evolve hidden">bring<span>it:</span>up</div>
<div class="menu__block">
<a class="btn menu__block-schedule">
schedule an appointment
</a>
<svg viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="8.98242" y="8.98242" width="4" height="4" fill="#6D53AF"/>
<rect width="3.98828" height="3.98828" fill="#6D53AF"/>
<rect x="8.98242" y="17.9648" width="4" height="4" fill="#6D53AF"/>
<rect y="8.98242" width="3.98828" height="3.98828" fill="#6D53AF"/>
<rect y="17.9648" width="4" height="4" fill="#6D53AF"/>
<rect x="17.9648" width="3.98828" height="3.98828" fill="#6D53AF"/>
<rect x="8.98242" width="3.98828" height="3.98828" fill="#6D53AF"/>
<rect x="17.9648" y="8.98242" width="4" height="4" fill="#6D53AF"/>
<rect x="17.9648" y="17.9648" width="4" height="4" fill="#6D53AF"/>
</svg>
</div>
</div>
<div class="sidecontrol">
<a href="#">
<svg width="35" height="25" viewBox="0 0 35 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.0371094 21.388L7.41866 2.12134C7.41866 2.12134 11.0514 1.16004 14.8913 0.592773C11.1097 8.48623 8.82759 15.8142 8.82759 16.9457C8.82759 18.0767 9.15378 20.1594 14.0216 20.1594C19.7984 20.1594 27.13 16.6202 27.13 11.2118C27.13 18.4392 19.4091 23.0112 10.905 23.0112C4.56389 23.0112 0.0371094 21.388 0.0371094 21.388Z" fill="#9EC73D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M27.1304 11.212C27.1304 18.4393 19.4096 23.0114 10.9054 23.0114C4.56435 23.0114 0.108398 21.3882 0.108398 21.3882C0.108398 21.3882 3.92507 24.978 13.6608 24.978C23.3947 24.978 34.7983 18.9304 34.7983 10.1792C34.7983 -1.87078 17.4608 0.351842 17.4608 0.351842L14.8078 5.94232C14.8078 5.94232 17.2983 5.6566 19.3614 5.6566C22.2626 5.6566 27.1304 6.93577 27.1304 11.212Z" fill="#6D53AF"/>
</svg>
</a>
<div class="sidecontrol__controls">
<a class="next" href="#">
<svg viewBox="0 0 20 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.1" d="M19.4155 12.9143C19.3432 12.7329 19.1746 12.6145 18.9874 12.6145H13.9114V0.485189C13.9114 0.217373 13.7039 0 13.4482 0H6.03659C5.78089 0 5.57335 0.217373 5.57335 0.485189V12.6145H0.477884C0.290755 12.6145 0.122127 12.7329 0.0498639 12.9134C-0.0214873 13.0949 0.0174236 13.3035 0.14992 13.4423L9.39126 23.1535C9.47833 23.2447 9.59602 23.2962 9.71922 23.2962C9.84243 23.2962 9.96012 23.2447 10.0472 23.1545L19.3154 13.4432C19.4479 13.3044 19.4877 13.0958 19.4155 12.9143Z" fill="#000"/>
</svg>
</a>
<span class="sidecontrol__controls-count">05 </span>
<div class="sidecontrol__controls-show">Bring It: Up</div>
</div>
</div>
<div class="title">
How are you Showing Up<br>
& Evolving
</div>
<div class="colored"></div>
<div class="wrapper-feed__slider">
<div class="feed__slider">
<div class="feed__item">
<div class="feed__item-info">
<div class="photo">
<img src="assets/img/feed_1.png" alt="Andrew">
</div>
<div class="author">
<div class="author__name">Andrew Jackson</div>
<div class="author__preview">Preview text of the full<br>
story by Andrew.</div>
<div class="author__profession">profession</div>
<div class="author__from">posted from <span>instagram</span></div>
</div>
</div>
<hr>
<div class="feed__item-play">
<div class="playvideo">
<svg width="6" height="8" viewBox="0 0 9 11" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="1" d="M9 5.5L0 11V0L9 5.5Z" fill="#6D53AF"/>
</svg>
</div>
<div class="timing">
play video (3:20)
</div>
</div>
<hr>
<div class="feed__item-descr">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
</div>
</div>
<div class="feed__item ">
<div class="feed__item-info">
<div class="photo">
<img src="assets/img/feed_2.png" alt="Cynthia Weber">
</div>
<div class="author">
<div class="author__name">Cynthia Weber</div>
<div class="author__preview">Preview text of the full<br>
story by Andrew.</div>
<div class="author__profession">profession</div>
<div class="author__from">posted from <span>instagram</span></div>
</div>
</div>
<hr>
<div class="feed__item-play">
<div class="playvideo">
<svg width="6" height="8" viewBox="0 0 9 11" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="1" d="M9 5.5L0 11V0L9 5.5Z" fill="#6D53AF"/>
</svg>
</div>
<div class="timing">
play video (3:20)
</div>
</div>
<hr>
<div class="feed__item-descr">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
</div>
</div>
<div class="feed__item ">
<div class="feed__item-info">
<div class="photo">
<img src="assets/img/feed_3.png" alt="Owen Thornton">
</div>
<div class="author">
<div class="author__name">Owen Thornton</div>
<div class="author__preview">Preview text of the full<br>
story by Andrew.</div>
<div class="author__profession">profession</div>
<div class="author__from">posted from <span>instagram</span></div>
</div>
</div>
<hr>
<div class="feed__item-play">
<div class="playvideo">
<svg width="6" height="8" viewBox="0 0 9 11" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="1" d="M9 5.5L0 11V0L9 5.5Z" fill="#6D53AF"/>
</svg>
</div>
<div class="timing">
play video (3:20)
</div>
</div>
<hr>
<div class="feed__item-descr">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
</div>
</div>
<div class="feed__item ">
<div class="feed__item-info">
<div class="photo">
<img src="assets/img/feed_1.png" alt="Marion Murphy">
</div>
<div class="author">
<div class="author__name">Marion Murphy</div>
<div class="author__preview">Preview text of the full<br>
story by Andrew.</div>
<div class="author__profession">profession</div>
<div class="author__from">posted from <span>instagram</span></div>
</div>
</div>
<hr>
<div class="feed__item-play">
<div class="playvideo">
<svg width="6" height="8" viewBox="0 0 9 11" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="1" d="M9 5.5L0 11V0L9 5.5Z" fill="#6D53AF"/>
</svg>
</div>
<div class="timing">
play video (3:20)
</div>
</div>
<hr>
<div class="feed__item-descr">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
</div>
</div>
<div class="feed__item ">
<div class="feed__item-info">
<div class="photo">
<img src="assets/img/feed_2.png" alt="Marion Murphy">
</div>
<div class="author">
<div class="author__name">Marion Murphy</div>
<div class="author__preview">Preview text of the full<br>
story by Andrew.</div>
<div class="author__profession">profession</div>
<div class="author__from">posted from <span>instagram</span></div>
</div>
</div>
<hr>
<div class="feed__item-play">
<div class="playvideo">
<svg width="6" height="8" viewBox="0 0 9 11" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="1" d="M9 5.5L0 11V0L9 5.5Z" fill="#6D53AF"/>
</svg>
</div>
<div class="timing">
play video (3:20)
</div>
</div>
<hr>
<div class="feed__item-descr">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
</div>
</div>
<div class="feed__item ">
<div class="feed__item-info">
<div class="photo">
<img src="assets/img/feed_3.png" alt="Marion Murphy">
</div>
<div class="author">
<div class="author__name">Marion Murphy</div>
<div class="author__preview">Preview text of the full<br>
story by Andrew.</div>
<div class="author__profession">profession</div>
<div class="author__from">posted from <span>instagram</span></div>
</div>
</div>
<hr>
<div class="feed__item-play">
<div class="playvideo">
<svg width="6" height="8" viewBox="0 0 9 11" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="1" d="M9 5.5L0 11V0L9 5.5Z" fill="#6D53AF"/>
</svg>
</div>
<div class="timing">
play video (3:20)
</div>
</div>
<hr>
<div class="feed__item-descr">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
</div>
</div>
</div>
<button type="button" class="slick-prev">
<div class="play__content">
<svg width="9" height="11" viewBox="0 0 9 11" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="1" d="M0 5.5L9 11V0L0 5.5Z" fill="#EAEAEA"/>
</svg>
</div>
</button>
<button type="button" class="slick-next">
<div class="play__content">
<svg width="9" height="11" viewBox="0 0 9 11" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="1" d="M9 5.5L0 11V0L9 5.5Z" fill="#EAEAEA"/>
</svg>
</div>
</button>
</div>
</div>
<div class="schedule">
<div class="menu">
<div class="evolve hidden">bring<span>it:</span>up</div>
<div class="menu__block">
<a class="btn menu__block-schedule hidden">
schedule an appointment
</a>
<svg viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="8.98242" y="8.98242" width="4" height="4" fill="#6D53AF"/>
<rect width="3.98828" height="3.98828" fill="#6D53AF"/>
<rect x="8.98242" y="17.9648" width="4" height="4" fill="#6D53AF"/>
<rect y="8.98242" width="3.98828" height="3.98828" fill="#6D53AF"/>
<rect y="17.9648" width="4" height="4" fill="#6D53AF"/>
<rect x="17.9648" width="3.98828" height="3.98828" fill="#6D53AF"/>
<rect x="8.98242" width="3.98828" height="3.98828" fill="#6D53AF"/>
<rect x="17.9648" y="8.98242" width="4" height="4" fill="#6D53AF"/>
<rect x="17.9648" y="17.9648" width="4" height="4" fill="#6D53AF"/>
</svg>
</div>
</div>
<div class="sidecontrol">
<a href="#">
<svg width="35" height="25" viewBox="0 0 35 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.0371094 21.388L7.41866 2.12134C7.41866 2.12134 11.0514 1.16004 14.8913 0.592773C11.1097 8.48623 8.82759 15.8142 8.82759 16.9457C8.82759 18.0767 9.15378 20.1594 14.0216 20.1594C19.7984 20.1594 27.13 16.6202 27.13 11.2118C27.13 18.4392 19.4091 23.0112 10.905 23.0112C4.56389 23.0112 0.0371094 21.388 0.0371094 21.388Z" fill="#9EC73D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M27.1304 11.212C27.1304 18.4393 19.4096 23.0114 10.9054 23.0114C4.56435 23.0114 0.108398 21.3882 0.108398 21.3882C0.108398 21.3882 3.92507 24.978 13.6608 24.978C23.3947 24.978 34.7983 18.9304 34.7983 10.1792C34.7983 -1.87078 17.4608 0.351842 17.4608 0.351842L14.8078 5.94232C14.8078 5.94232 17.2983 5.6566 19.3614 5.6566C22.2626 5.6566 27.1304 6.93577 27.1304 11.212Z" fill="#6D53AF"/>
</svg>
</a>
<div class="sidecontrol__controls">
<a class="next" href="#">
<svg viewBox="0 0 20 24" fill="none" xmlns="http://www.w3.org/2000/svg">