-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoriginele-elite-course.html
2231 lines (2092 loc) · 83.8 KB
/
originele-elite-course.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
---
title: Elite
layout: pages/new-web/default
header_title: The Growth Stack
hide_footer: true
include_swiper: true
marketing_game:
- image: /assets/images/new-web/elite/marketing_game-1.svg
text: Facebook and Google ads become more prohibitively expensive every year…
- image: /assets/images/new-web/elite/marketing_game-2.svg
text: …content marketing and SEO are over-saturated…
- image: /assets/images/new-web/elite/marketing_game-3.svg
text: …and “social sharing” is something only crazy aunt Jenny does, nowadays.
explore_growth_mba_video_url: "https://player.vimeo.com/video/329342289"
layer_items:
- title: Strategic clarity
body: You know that real growth is driven by systems design, and you need the strategic clarity to see how 3 core systems interplay to create a so-called “growth loop” — I’ll explain the details below.
- title: Skills
body: You know that real growth is driven by systems design, and you need the strategic clarity to see how 3 core systems interplay to create a so-called “growth loop” — I’ll explain the details below.
- title: Data infrastructure
body: You know that real growth is driven by systems design, and you need the strategic clarity to see how 3 core systems interplay to create a so-called “growth loop” — I’ll explain the details below.
strategy_layer_items:
- title: Growth engine
body: Our product might spread via marketing channels like SEO, Facebook ads, referrals, Reddit memes, outbound sales teams, and a million other ways. A growth engine is your way to systematically tap into such a channel, and leverage it to gain distribution.
- title: Engagement & retention
body: For most growth loops it’s essential that customers actively engage with the product—the more active and religious a user uses a product, the more he generates opportunities for the product to spread to other users, too.
- title: Sales funnel
body: Once you have distribution, you need to turn that traffic into signups, and those signups into customers. — this is often a process, and we could go into depth about it… but for now, let’s just say a sales funnel is a predictable, scalable process that turns traffic into signups or customers.
pillars_final_title: Final title
pillars_final_body: Final body
pillars_row:
- image: /assets/images/new-web/elite/pillar-1.svg
title: Growth Strategy1
body: Foundation of the growth loops architecture
- image: /assets/images/new-web/elite/pillar-1.svg
title: Operational Skills2
body: Foundation of the growth loops architecture
- image: /assets/images/new-web/elite/pillar-1.svg
title: sasdaadsasdwe3
body: Foundation of the growth loops architecture
- image: /assets/images/new-web/elite/pillar-1.svg
title: wewewe4
body: Foundation of the growth loops architecture
- image: /assets/images/new-web/elite/pillar-1.svg
title: asdsfda ewfdsc5
body: Foundation of the growth loops architecture
- image: /assets/images/new-web/elite/pillar-1.svg
title: eafrwecvwsd6
body: Foundation of the growth loops architecture
package_core:
- "**Module 1:** Growth strategy"
- "**Module 2:** Sales funnels"
- "**Module 3:** Growth engines"
- "**Module 4:** Copy & conversion"
- "**Module 5:** Engagement & retention"
package_execution:
- "**Module 6:** Advanced strategy"
- "**Module 7:** Video case studies (13x)"
- "**Module 8:** Growth skills (advanced)"
- "**Operational support**"
pricing_table:
- title: "**Level 1** <br> Core"
items:
- "**Module 1:** Growth strategy"
- "**Module 2:** Sales funnels"
- "**Module 3:** Growth engines"
- "**Module 4:** Copy & conversion"
- "**Module 5:** Engagement & retention"
extra_items:
- "Full money-back guarantee"
price: "$479"
- title: "**Level 2** <br> Execution"
items:
- "**Module 6:** Advanced strategy"
- "**Module 7:** Video case studies (13x)"
- "**Module 8:** Growth skills (advanced)"
extra_items:
- "Full money-back guarantee"
- "Operational support"
price: "$479"
- title: "**Full Access** <br> Level 1+2"
items:
- "**Module 1:** Growth strategy"
- "**Module 2:** Sales funnels"
- "**Module 3:** Growth engines"
- "**Module 4:** Copy & conversion"
- "**Module 5:** Engagement & retention"
- "**Module 6:** Advanced strategy"
- "**Module 7:** Video case studies (13x)"
- "**Module 8:** Growth skills (advanced)"
extra_items:
- "Full money-back guarantee"
- "Operational support"
price: "**$479**"
subprice: "**save $459 today**"
modules_core:
- name: Growth Strategy
nav: 1
description: Where we lay out the Foundation of the Growth Loops Architecture
video:
url: https://player.vimeo.com/video/329342289
thumbnail: /assets/images/new-web/elite/feedback-2.jpg
accordion:
- title: "Systems: 6 pillars of Growth"
body: "Struggling to acquire users effectively? Learn the basic 6-step framework to unlock virtually unlimited growth opportunities..."
- title: "Focus & Clarity"
body: "Struggling to acquire users effectively? Learn the basic 6-step framework to unlock virtually unlimited growth opportunities..."
- title: "Crafting your Growth Strategy"
body: "Struggling to acquire users effectively? Learn the basic 6-step framework to unlock virtually unlimited growth opportunities..."
learn:
- Identify the best traction channels for your business type
- Understand over 25 acquisition channels that growth marketers use
- How to build a coherent growth loops architecture into your product fabric
- Growth process & execution velocity to breach through scaling barriers
- "How to leverage the **“power law of channels”** for fast traffic generation"
- Craft both inbound, outbound & product-based loops effectively
- Learn to confidently drive acquisition & generate gobs of traffic
testimonial:
body: "Above all else: Clarity & Focus on how to craft a coherent growth strategy—with those growth loops"
name: Irina Bykowa
title: works with Slack
thumbnail: "/assets/images/new-web/elite/feedback-2.jpg"
core_content_summary: 6 videos, 64 min
core_content_items:
- title: Introduction
subtitle: "3:25 min"
- title: Growth Systems
subtitle: "3:25 min"
- title: Process & lean
subtitle: "3:25 min"
- title: Growth Loops, part 1
subtitle: "3:25 min"
- title: Laws of Distribution
subtitle: "3:25 min"
- title: Growth Loops, part II
subtitle: "3:25 min"
bonus_content_items:
- title: Channels Strategy Guide
subtitle: PDF
- title: Channels Strategy Guide
subtitle: PDF
- title: Channels Strategy Guide
subtitle: PDF
- title: Channels Strategy Guide
subtitle: PDF
- title: Channels Strategy Guide
subtitle: PDF
- title: Channels Strategy Guide
subtitle: PDF
- name: Growth Strategy2
nav: 2
description: Where we lay out the Foundation of the Growth Loops Architecture
video:
url: https://player.vimeo.com/video/329342289
thumbnail: /assets/images/new-web/elite/feedback-2.jpg
accordion:
- title: "Systems: 6 pillars of Growth"
body: "Struggling to acquire users effectively? Learn the basic 6-step framework to unlock virtually unlimited growth opportunities..."
- title: "Focus & Clarity"
body: "Struggling to acquire users effectively? Learn the basic 6-step framework to unlock virtually unlimited growth opportunities..."
- title: "Crafting your Growth Strategy"
body: "Struggling to acquire users effectively? Learn the basic 6-step framework to unlock virtually unlimited growth opportunities..."
learn:
- Identify the best traction channels for your business type
- Understand over 25 acquisition channels that growth marketers use
- How to build a coherent growth loops architecture into your product fabric
- Growth process & execution velocity to breach through scaling barriers
- "How to leverage the **“power law of channels”** for fast traffic generation"
- Craft both inbound, outbound & product-based loops effectively
- Learn to confidently drive acquisition & generate gobs of traffic
testimonial:
body: "Above all else: Clarity & Focus on how to craft a coherent growth strategy—with those growth loops"
name: Irina Bykowa
title: works with Slack
thumbnail: ""
core_content_summary: 6 videos, 64 min
core_content_items:
- title: Introduction
subtitle: "3:25 min"
- title: Growth Systems
subtitle: "3:25 min"
- title: Process & lean
subtitle: "3:25 min"
- title: Growth Loops, part 1
subtitle: "3:25 min"
- title: Laws of Distribution
subtitle: "3:25 min"
- title: Growth Loops, part II
subtitle: "3:25 min"
bonus_content:
- title: Channels Strategy Guide
subtitle: PDF
- title: Channels Strategy Guide
subtitle: PDF
- title: Channels Strategy Guide
subtitle: PDF
- title: Channels Strategy Guide
subtitle: PDF
- title: Channels Strategy Guide
subtitle: PDF
- title: Channels Strategy Guide
subtitle: PDF
modules_execution:
- name: Growth Strategy6
nav: 6
description: Where we lay out the Foundation of the Growth Loops Architecture
video:
url: https://player.vimeo.com/video/329342289
thumbnail: /assets/images/new-web/elite/feedback-2.jpg
accordion:
- title: "Systems: 6 pillars of Growth"
body: "Struggling to acquire users effectively? Learn the basic 6-step framework to unlock virtually unlimited growth opportunities..."
- title: "Focus & Clarity"
body: "Struggling to acquire users effectively? Learn the basic 6-step framework to unlock virtually unlimited growth opportunities..."
- title: "Crafting your Growth Strategy"
body: "Struggling to acquire users effectively? Learn the basic 6-step framework to unlock virtually unlimited growth opportunities..."
learn:
- Identify the best traction channels for your business type
- Understand over 25 acquisition channels that growth marketers use
- How to build a coherent growth loops architecture into your product fabric
- Growth process & execution velocity to breach through scaling barriers
- "How to leverage the **“power law of channels”** for fast traffic generation"
- Craft both inbound, outbound & product-based loops effectively
- Learn to confidently drive acquisition & generate gobs of traffic
testimonial:
body: "Above all else: Clarity & Focus on how to craft a coherent growth strategy—with those growth loops"
name: Irina Bykowa
title: works with Slack
thumbnail: "/assets/images/new-web/elite/feedback-2.jpg"
core_content_summary: 6 videos, 64 min
core_content_items:
- title: Introduction
subtitle: "3:25 min"
- title: Growth Systems
subtitle: "3:25 min"
- title: Process & lean
subtitle: "3:25 min"
- title: Growth Loops, part 1
subtitle: "3:25 min"
- title: Laws of Distribution
subtitle: "3:25 min"
- title: Growth Loops, part II
subtitle: "3:25 min"
bonus_content_items:
- title: Channels Strategy Guide
subtitle: PDF
- title: Channels Strategy Guide
subtitle: PDF
- title: Channels Strategy Guide
subtitle: PDF
- title: Channels Strategy Guide
subtitle: PDF
- title: Channels Strategy Guide
subtitle: PDF
- title: Channels Strategy Guide
subtitle: PDF
- name: Growth Strategy2
nav: Operational support
description: Where we lay out the Foundation of the Growth Loops Architecture
video:
url: https://player.vimeo.com/video/329342289
thumbnail: /assets/images/new-web/elite/feedback-2.jpg
accordion:
- title: "Systems: 6 pillars of Growth"
body: "Struggling to acquire users effectively? Learn the basic 6-step framework to unlock virtually unlimited growth opportunities..."
- title: "Focus & Clarity"
body: "Struggling to acquire users effectively? Learn the basic 6-step framework to unlock virtually unlimited growth opportunities..."
- title: "Crafting your Growth Strategy"
body: "Struggling to acquire users effectively? Learn the basic 6-step framework to unlock virtually unlimited growth opportunities..."
learn:
- Identify the best traction channels for your business type
- Understand over 25 acquisition channels that growth marketers use
- How to build a coherent growth loops architecture into your product fabric
- Growth process & execution velocity to breach through scaling barriers
- "How to leverage the **“power law of channels”** for fast traffic generation"
- Craft both inbound, outbound & product-based loops effectively
- Learn to confidently drive acquisition & generate gobs of traffic
testimonial:
body: "Above all else: Clarity & Focus on how to craft a coherent growth strategy—with those growth loops"
name: Irina Bykowa
title: works with Slack
thumbnail: ""
core_content_summary: 6 videos, 64 min
core_content_items:
- title: Introduction
subtitle: "3:25 min"
- title: Growth Systems
subtitle: "3:25 min"
- title: Process & lean
subtitle: "3:25 min"
- title: Growth Loops, part 1
subtitle: "3:25 min"
- title: Laws of Distribution
subtitle: "3:25 min"
- title: Growth Loops, part II
subtitle: "3:25 min"
bonus_content:
- title: Channels Strategy Guide
subtitle: PDF
- title: Channels Strategy Guide
subtitle: PDF
- title: Channels Strategy Guide
subtitle: PDF
- title: Channels Strategy Guide
subtitle: PDF
- title: Channels Strategy Guide
subtitle: PDF
- title: Channels Strategy Guide
subtitle: PDF
build_measure_learn_items:
- title: you have an idea
subtitle: beginning of a strategy
- title: you build it
subtitle: implementation
- title: you measure it
subtitle: data
faq_general:
- q: How does this course help my business?
a: Lorem, ipsum dolor sit amet consectetur adipisicing elit. Tempora a hic libero voluptate, ullam ad vero et, corporis perferendis quam quidem dicta, laboriosam velit magnam saepe. Quaerat quo quidem unde!
- q: What previous experience is needed?
a: |
Elite is an intermediate/advanced level course. It assumes you already have basic business experience. If you don't have much previous experience, you should be ready for an aggressive learning curve.
All modules start with a quick intro to cover the basics, but then go straight to intermediate and advanced strategies and tactics. It's not a 'marketing for dummies' course, by any means.
- q: Which practical skills will I learn?
a: Lorem, ipsum dolor sit amet consectetur adipisicing elit. Tempora a hic libero voluptate, ullam ad vero et, corporis perferendis quam quidem dicta, laboriosam velit magnam saepe. Quaerat quo quidem unde!
- q: How much do growth marketers earn?
a: Lorem, ipsum dolor sit amet consectetur adipisicing elit. Tempora a hic libero voluptate, ullam ad vero et, corporis perferendis quam quidem dicta, laboriosam velit magnam saepe. Quaerat quo quidem unde!
faq_what_to_expect:
- q: Will I be able to work abroad after this course?
a: Lorem, ipsum dolor sit amet consectetur adipisicing elit. Tempora a hic libero voluptate, ullam ad vero et, corporis perferendis quam quidem dicta, laboriosam velit magnam saepe. Quaerat quo quidem unde!
- q: Pieter, how did you gain this experience?
a: Lorem, ipsum dolor sit amet consectetur adipisicing elit. Tempora a hic libero voluptate, ullam ad vero et, corporis perferendis quam quidem dicta, laboriosam velit magnam saepe. Quaerat quo quidem unde!
- q: Can I get 1-on-1 support if I get stuck?
a: Lorem, ipsum dolor sit amet consectetur adipisicing elit. Tempora a hic libero voluptate, ullam ad vero et, corporis perferendis quam quidem dicta, laboriosam velit magnam saepe. Quaerat quo quidem unde!
- q: Is this an entire growth marketing blueprint?
a: Lorem, ipsum dolor sit amet consectetur adipisicing elit. Tempora a hic libero voluptate, ullam ad vero et, corporis perferendis quam quidem dicta, laboriosam velit magnam saepe. Quaerat quo quidem unde!
faq_pricing:
- q: Which package should I buy?
a: Lorem, ipsum dolor sit amet consectetur adipisicing elit. Tempora a hic libero voluptate, ullam ad vero et, corporis perferendis quam quidem dicta, laboriosam velit magnam saepe. Quaerat quo quidem unde!
- q: What is the refund policy?
a: Lorem, ipsum dolor sit amet consectetur adipisicing elit. Tempora a hic libero voluptate, ullam ad vero et, corporis perferendis quam quidem dicta, laboriosam velit magnam saepe. Quaerat quo quidem unde!
- q: For how long do I gain access?
a: Lorem, ipsum dolor sit amet consectetur adipisicing elit. Tempora a hic libero voluptate, ullam ad vero et, corporis perferendis quam quidem dicta, laboriosam velit magnam saepe. Quaerat quo quidem unde!
- q: What's stopping you from buying Elite, right now?
a: Lorem, ipsum dolor sit amet consectetur adipisicing elit. Tempora a hic libero voluptate, ullam ad vero et, corporis perferendis quam quidem dicta, laboriosam velit magnam saepe. Quaerat quo quidem unde!
pieter_note_points:
- I do all the “heavy lifting”
- It’s clear, and focused
- These models are proven
- This is not for Silicon Valley unicorns
- The growth loops paradigm works
- Practical, step-by-step execution
- You get personal support
- An excellent guarantee
---
<style>
.checkmark .back img,
.checkmark .fore {
width: 30px;
height: 30px;
}
.checkmark p {
margin-bottom: 0;
}
.checkmark {
margin-top: 8px!important;
margin-bottom: 8px!important;
}
.checkmark img {
border-radius: 100%;
opacity: 0.15;
transition: 0.5s;
}
.checkmark.active img {
opacity: 1;
}
.checkmark.active .fore {
animation: fore 0.5s linear both;
}
.checkmark.active .back {
animation: back 0.5s linear both;
}
.checkmark .back {
position: absolute;
top: 0;
z-index: -1;
}
.checkmark-number {
text-align: center;
}
.checkmark-number .fore {
margin-right: 15px;
background: #181d33;
border-radius: 100%;
color: #fff;
width: 40px;
height: 40px;
padding-top: 6px;
font-size: 18px;
}
.checkmark.active .fore {
animation: fore 0.5s linear both;
}
.checkmark.active .back {
animation: back 0.5s linear both;
}
@keyframes fore {
from {
transform: translate(0, 0);
}
to {
transform: translate(-2px, -2.5px);
}
}
@keyframes back {
from {
transform: translate(0, 0);
}
to {
transform: translate(2px, 2.5px);
}
}
/* Pricing table */
.pricing-table .pricing-table-item {
background: #fff;
}
.pricing-table .pricing-table-item:hover {
background: #efefef!important;
}
.pricing-table .pricing-table-item:nth-child(2) {
background: #f9f9f9;
}
#sales h3 {
letter-spacing: 1.5px;
line-height: 56px;
}
#sales .p-6 {
padding: 65px;
}
#sales .px-6 {
padding-left: 65px;
padding-right: 65px;
}
#sales .pr-6 {
padding-right: 65px;
}
#sales .pl-6 {
padding-left: 65px;
}
#sales .pt-6 {
padding-top: 65px;
}
#sales p {
margin-bottom: 25px;
}
#sales p.lead {
font-size: 22px;
font-weight: 300;
letter-spacing: 0.7px;
line-height: 32px;
}
#sales .checkmark {
z-index: 1;
}
#sales #hero h1 {
font-size: 100px;
line-height: 94px;
letter-spacing: -3.66px;
}
#sales #hero h3 {
font-size: 48px;
line-height: 1;
letter-spacing: -1.75px;
font-weight: normal;
}
/* Video modal */
#explore-growth-mba .modal_content {
width: 75%;
}
#explore-growth-mba .modal_iframe {
width: 100%;
}
#explore-growth-mba iframe {
width: 100%;
height: 600px;
}
/* Container */
#sales .container-narrow {
max-width: 693px;
}
#sales .container-narrow-md {
max-width: 864px;
}
#sales .container-narrow-lg {
max-width: 920px;
}
/* Accordion */
#sales .accordion-item.accordion-item-style1 {
background: #fff;
box-shadow: 0px 12px 0 0 rgba(148, 154, 180, 0.4);
}
#sales .accordion-item.accordion-item-style1 .checkmark .back > img {
width: 40px;
height: 40px;
}
#sales .accordion-item.accordion-item-style1:not(.active) {
padding-top: 1.5rem !important;
padding-bottom: 1.5rem !important;
}
#sales .accordion-item.accordion-item-style1:not(.active) .checkmark .back {
display: none;
}
#sales .accordion-item.accordion-item-style1 {
padding-top: 2rem !important;
padding-bottom: 3rem !important;
}
#sales .accordion-item.accordion-item-style1 .accordion-item-header button {
color: #181d33;
opacity: 0.4;
text-decoration: none;
}
#sales .accordion-item.accordion-item-style1.active .accordion-item-header button {
opacity: 1;
}
#sales .accordion-item.accordion-item-style1.active .accordion-item-header button .arrow {
display: none;
}
#sales .accordion-item.accordion-item-style2 {
background-color:#eff0f6;
margin-bottom: 5px;
padding: 1rem 2.8rem;
}
#sales .accordion-item.accordion-item-style2 .accordion-item-header button {
text-align: left;
color: #181d33;
text-decoration: none;
}
#sales .accordion-item.accordion-item-style2.active {
background-color: #181d33;
box-shadow: 12px 12px 0 0 #3497f3;
color: #fff;
left: -12px;
margin-bottom: 15px;
padding: 2rem;
padding-top: 1.7rem;
}
#sales .accordion-item.accordion-item-style2.active .accordion-item-header button {
color: #fff;
}
#sales .accordion-item.accordion-item-style2.active .accordion-item-header button .arrow {
display: none;
}
/* Hero */
#sales #hero {
padding-bottom: 40px;
}
#sales #hero .bg-image {
position: absolute; right: 0; bottom: 0;
}
#sales #hero .hero-stack > div {
position: relative;
margin: auto;
opacity: 0;
}
#sales #hero .hero-stack > div:first-child {
z-index: 5;
width: 416px;
height: 136px;
box-shadow: 0 25px 0 -4px rgba(3, 4, 8, 0.3);
background-color: #3497f3;
}
#sales #hero .hero-stack > div:nth-child(2) {
z-index: 4;
width: 392px;
height: 115px;
box-shadow: 0 12px 0 -4px rgba(24, 29, 51, 0.26);
background-color: #181d33;
}
#sales #hero .hero-stack > div:nth-child(3) {
z-index: 3;
width: 369px;
height: 111px;
box-shadow: 0 8px 0 -4px rgba(24, 29, 51, 0.15);
background-color: #3d4153;
}
#sales #hero .hero-stack > div:nth-child(4) {
z-index: 2;
width: 353px;
height: 105px;
box-shadow: 0 2px 0 0 rgba(24, 29, 51, 0.1);
background-color: #7e818c;
}
#sales #hero .hero-stack > div:nth-child(5) {
z-index: 1;
width: 340px;
height: 100px;
background-color: #d2d3d7;
}
#sales #hero .hero-stack > div.active {
-webkit-animation: slide-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
animation: slide-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
#sales #hero .bg-image-overlay.active {
-webkit-animation: bg-image-overlay 1.15s linear both;
animation: bg-image-overlay 1.15s linear both;
}
@-webkit-keyframes bg-image-overlay {
0% { bottom: 0%; }
100% { bottom: 100%; }
}
@keyframes bg-image-overlay {
0% { bottom: 0%; }
100% { bottom: 100%; }
}
/**
* ----------------------------------------
* animation slide-top
* ----------------------------------------
*/
@-webkit-keyframes slide-top {
0% {
-webkit-transform: translateY(50px);
transform: translateY(50px);
opacity: 0;
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
opacity: 1;
}
}
@keyframes slide-top {
0% {
-webkit-transform: translateY(50px);
transform: translateY(50px);
opacity: 0;
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
opacity: 1;
}
}
/* Feedback */
#sales #feedback {
position: relative;
}
#sales #feedback .bg-boxes > div {
position: absolute;
}
#sales #feedback .bg-boxes > div > div {
background-color: #eff0f6;
}
#sales #feedback .bg-boxes > div:first-child {
top: -50px; right: -135px;
}
#sales #feedback .bg-boxes > div:first-child > div {
opacity: 0.3; width: 130px; height: 190px;
}
#sales #feedback .bg-boxes > div:nth-child(2) {
top: 300px; left: 55%;
}
#sales #feedback .bg-boxes > div:nth-child(2) > div {
opacity: 1; width: 316px; height: 234px;
}
#sales #feedback .bg-boxes > div:nth-child(3) {
top: 500px; left: 20%;
}
#sales #feedback .bg-boxes > div:nth-child(3) > div {
opacity: 0.6; width: 316px; height: 432px;
}
#sales #feedback .bg-boxes > div:nth-child(4) {
bottom: 1400px; left: -150px;
}
#sales #feedback .bg-boxes > div:nth-child(4) > div {
opacity: 0.4; width: 268px; height: 234px;
}
#sales #feedback .bg-boxes > div:nth-child(5) {
bottom: 1050px; left: 200px;
}
#sales #feedback .bg-boxes > div:nth-child(5) > div {
opacity: 0.5; width: 262px; height: 249px;
}
#sales #feedback .bg-boxes > div:nth-child(6) {
bottom: 1400px; right: -150px;
}
#sales #feedback .bg-boxes > div:nth-child(6) > div {
opacity: 0.5; width: 411px; height: 334px;
}
/* No */
#sales #no .block-1 > div {
max-width: 512px;
bottom: -58px;
position: relative;
background: #fff;
}
#sales #no .block-1 .block-shadow {
box-shadow: 12px 12px 0 0 rgba(148, 154, 180, 0.4);
position: absolute;
height: 70px;
right: 0;
left: 0;
bottom: 0;
}
#sales #no .block-2 {
z-index: 1;
}
#sales #no .block-2 > div {
max-width: 512px;
background: #fff;
top: -59px;
}
#sales #no .block-2 .block-shadow {
box-shadow: 12px 12px 0 0 rgba(148, 154, 180, 0.4);
position: absolute;
height: 47px;
right: 0;
left: 0;
top: 0;
z-index: -1;
}
#sales #no .parallax-bg {
background-image: url('/assets/images/new-web/elite/no.png');
height: 500px;
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: auto;
}
/* Understanding */
#sales #understanding .button-2:not(.scrolled),
#sales #understanding .button-1 {
height: 137px;
width: 100%;
background-color: #eff0f6;
}
#sales #understanding .button-2 {
height: 137px;
width: 100%;
transition: all .5s ease-in-out;
}
#sales #understanding .button-2:not(.scrolled) {
box-shadow: none!important;
color: initial;
position: relative;
}
/* Framework */
#sales #framework {
background: #3497f3;
color: #fff;
padding-bottom: 289px;
}
#sales #framework .image {
width: 100%;
height: 578px;
background: #fff;
position: absolute;
right: 0;
left: 0;
}
/* Layers */
#sales #layers {
padding-top: calc(160px + 289px);
}
/* Build, measure, learn */
#sales #build-measure-learn .step-item {
width: 180px;
height: 180px;
color: #fff;
background: #181d33;
}
#sales #build-measure-learn .step-inner-text {
position: absolute;
left: 50%;
transform: translateX(-50%);
top: 40px;
}
/* Testimonials */
#sales #testimonials {
background: linear-gradient(0deg, #eff0f6 40%, #181d33 40%);
color: #fff;
}
#sales #testimonials .swiper-pagination-wrapper {
position: relative;
top: 10px;
}
#sales #testimonials .swiper-pagination .swiper-pagination-bullet {
margin-left: 5px;
margin-right: 5px;
}
#sales #testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
background: #181d33;
}
#sales #testimonials .testimonials {
padding-bottom: 15px;
}
/* Pillars */
#sales .pillar {
display: flex;
flex-direction: column;
justify-content: flex-end;
}
#sales .pillar-top {
position: relative;
bottom: -90px;
z-index: 1;
width: 160px;
height: 334px;
max-height: 20%;
}
#sales .pillar-top .right-shadow,
#sales .pillar-top .left-shadow {
height: calc(100% - 90px);
position: absolute;
top: 75px;
width: 50%;
background: #65b5ff;
}
#sales .pillar-top .left-shadow {
opacity: .05;
transform: skewY(32deg);
}
#sales .pillar-top .right-shadow {
opacity: .1;
transform: skewY(-32deg);
left: 50%;
}
#sales .pillar-top-inner,
#sales .pillar-floor-inner {
width: 0;
height: 0;
border: 80px solid transparent;
position: relative;
top: -80px;
}
#sales .pillar-top-inner:after,
#sales .pillar-floor-inner:after {
content: '';
position: absolute;
left: -80px;
top: 50px;
width: 0;
height: 0;
border: 80px solid transparent;
}
#sales .pillar-top-inner img {
text-align: center;
position: absolute;
left: -23px;
top: 30px;
z-index: 1;
}
#sales .pillar-floor-inner {
border-bottom-color: #1d3559;
border-bottom: 50px solid #1d3559;
}
#sales .pillar-floor-inner:after {
border-top-color: #1d3559;
border-top: 50px solid #1d3559;
}
#sales .pillar-top-inner {
border-bottom-color: #3497f3;
border-bottom: 50px solid #3497f3;
}
#sales .pillar-top-inner:after {
border-top-color: #3497f3;
border-top: 50px solid #3497f3;
}
#sales .pillar.active .pillar-top {
animation: slide 2s ease both;
}
#sales .pillar:not(.active) .pillar-top {
opacity: 0.4;
}
#sales .pillar:not(.active) .pillar-top-inner {
border-bottom-color: #1d3558;
border-bottom: 50px solid #1d3558;
}
#sales .pillar:not(.active) .pillar-top-inner:after {
border-top-color: #1d3558;
border-top: 50px solid #1d3558;
}
@keyframes slide {
0% { max-height: 20%; }
100% { max-height: 100%; }
}
/* Modules section */
#sales .module-section .video {
position: relative;
left: -90px;
}
#sales .module-section .video-selectors {
z-index: 1;
}
#sales .module-section.style2 .modulevideo-wrapper {
justify-content: flex-end;
}
#sales .module-section.style2 .video {
order: 1;
right: -90px;
left: initial;
}
#sales .module-section.style2 .video-selectors {
order: 2;
}
#sales .module-section .nav-item {
cursor: pointer;
}
#sales .module-section .nav-item:not(.selected) .fore {
top: 3px;
position: relative;
opacity: 0.4;
}
#sales .module-section .nav-item.selected .fore {
box-shadow: 5px 5px #3397f3;
}
#sales .module-section .nav-item .fore,
#sales .module-section .nav-item .back {
min-width: 40px;
width: auto;
border-radius: 20px;
padding-left: 15px;
padding-right: 15px;
}
#sales .module-section .sticky-nav {
position: fixed;
z-index: 99;
top: 99999px;
width: 100%;
height: 96px;
box-shadow: 0 8px 0 0 rgba(24, 29, 51, 0.15);
background-color: #ffffff;
}
#sales .module-section .sticky-nav .prev-btn,
#sales .module-section .sticky-nav .next-btn {
width: 96px;
height: 96px;
display: flex;
justify-content: center;
align-items: center;
background-color: #181d33;
position: absolute;
}
#sales .module-section .sticky-nav .prev-btn:disabled,
#sales .module-section .sticky-nav .next-btn:disabled {
background-color: #f3f3f5;
}
#sales .module-section .sticky-nav .next-btn {
right: 0;
}
#sales .module-section .sticky-nav .next-btn img {
transform: rotate(-180deg);
}
#sales .module-section .slider-nav {