-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
885 lines (878 loc) · 48.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="css/style.min.css">
<title>Motiohead</title>
</head>
<body id="top">
<div class="wrapper">
<header class="header">
<div class="container">
<div class="header__inner">
<a class="logo" href="#">
<img class="logo__img" src="images/logo.svg" alt="logo">
</a>
<nav class="menu">
<button class="menu__btn" type="button" >
<span></span>
</button>
<ul class="menu__list">
<li class="menu__list-item">
<a class="menu__list-link" href="#">Our portfolio</a>
</li>
<li class="menu__list-item">
<a class="menu__list-link" href="#">Services</a>
</li>
<li class="menu__list-item">
<a class="menu__list-link" href="#">About Us</a>
</li>
<li class="menu__list-item">
<a class="menu__list-link" href="#">Blog</a>
</li>
<li class="mobile" >
<a class="mobile__user-btn btn" href="# ">Contact us</a>
</li>
</ul>
</nav>
<div class="header__user">
<div class="header__user-box">
<a class="header__user-sign" href="#">Sign Up</a>
<span class="header__user-decor">/</span>
<a class="header__user-login" href="#">Login</a>
</div>
<a class="header__user-btn" href="# ">Contact us</a>
</div>
</div>
<div class="header__hero hero">
<p class="hero__desc">Video production company</p>
<h1 class="hero__title"><span>Creative Digital Assistance</span> on demand, instantly</h1>
<p class="hero__text"><span> Need a self-managed creative team to support your marketing efforts and develop
your creative ideas?</span> From video production to motion graphics & video editing to graphic design, we
provide you access to a broad range of talent available for almost any creative task.</p>
<div class="hero__buttons">
<div class="hero__buttons-box hero__buttons-box--left">
<a class="hero__buttons-btn btn" href="#">Initiate project</a>
<p class="hero__buttons-text hero__buttons-text--left">100+ managed creatives to work on your ide</p>
</div>
<div class="hero__buttons-box hero__buttons-box--right">
<a class="hero__buttons-btn btn" href="#">Book video chat</a>
<p class="hero__buttons-text hero__buttons-text--right">Get expert advice session for free!</p>
</div>
</div>
<div class="hero__info">
<p class="hero__info-text"> <span>Trusted by</span> marketers and producers at</p>
<img class="hero__info-icon" src="images/arrow-bottom.png" alt="arrow">
</div>
<ul class="hero__list-items">
<li class="hero__list-item">
<img class="hero__list-partner" src="images/hero-partners/1.svg" alt="partner">
</li>
<li class="hero__list-item">
<img class="hero__list-partner" src="images/hero-partners/2.svg" alt="partner">
</li>
<li class="hero__list-item">
<img class="hero__list-partner" src="images/hero-partners/3.svg" alt="partner">
</li>
<li class="hero__list-item">
<img class="hero__list-partner" src="images/hero-partners/4.svg" alt="partner">
</li>
<li class="hero__list-item">
<img class="hero__list-partner" src="images/hero-partners/5.svg" alt="partner">
</li>
<li class="hero__list-item">
<img class="hero__list-partner" src="images/hero-partners/6.svg" alt="partner">
</li>
<li class="hero__list-item">
<img class="hero__list-partner" src="images/hero-partners/7.svg" alt="partner">
</li>
<li class="hero__list-item">
<img class="hero__list-partner" src="images/hero-partners/8.svg" alt="partner">
</li>
<li class="hero__list-item">
<img class="hero__list-partner" src="images/hero-partners/9.svg" alt="partner">
</li>
<li class="hero__list-item">
<img class="hero__list-partner" src="images/hero-partners/10.svg" alt="partner">
</li>
</ul>
</div>
</div>
</header>
<main class="main">
<section class="situations">
<div class="container">
<h2 class="situations__title">How many times have you faced one or more of the <span>following
situations?</span></h2>
<div class="situations__items">
<div class="situations__item">
<p class="situations__text"><span>Your deadline is approaching</span> rapidly but your best artist
suddenly drops out of the team and you need a perfect candidate with exactly the same skill set this
instant</p>
</div>
<div class="situations__item situations__item--difference">
<p class="situations__text situations__text--difference"><span>You need more creative content</span> for
your current marketing campaign and you need to 'strengthen' your in-house resources for this extra load
</p>
</div>
<div class="situations__item">
<p class="situations__text">You realize that your upcoming project requires <span>expertise and skills
that aren't currently available in-house</span> and you don't feel like you're ready to hire</p>
</div>
</div>
</div>
</section>
<section class="book">
<div class="container">
<h3 class="book__subtitle">That's just fine.</h3>
<h2 class="book__title">Let your creativity flow while we're filling the gaps in your in-house capacities with
our top-notch creative talent.</h2>
<a class="book__btn btn" href="#">Book a consultation</a>
</div>
</section>
<section class="animation">
<div class="container">
<h2 class="animation__title">Motiohead is your <span>#1 full-cycle animation production and video production
company in London</span></h2>
<p class="animation__subtitle">We're a London-founded video production company that specializes in creating
social-first content that's designed to make an impact. With our team of talented videographers, motion
graphic designers, graphic designers, 3D artists and photo and video editors, we've earned the trust of
nonprofits, marketing agencies, and enterprise video production companies across the UK, USA, and beyond.
From TikTok videos to Instagram filters, we've got the expertise to launch your next marketing or social
media <span class="animation__subtitle-decor">campaign to stardom.</span> </p>
<div class="animation__inner">
<div class="animation__video">
<div class="animation__video-box">
<img class="animation__video-bg" src="images/video/bg-video.jpg" alt="bg">
<a class="animation__video-link" href="#">
<img class="animation__video-play" src="images/video/video-play.svg" alt="icon">
</a>
</div>
</div>
<div class="animation__content">
<div class="animation__items">
<div class="animation__item">
<img class="animation__item-icon" src="images/video/check.svg" alt="icon">
<p class="animation__item-text">With <span>over 5 years of experience</span> creating marketing
content that packs a punch, we know what works</p>
</div>
<div class="animation__item">
<img class="animation__item-icon" src="images/video/check.svg" alt="icon">
<p class="animation__item-text">With a <span>5/5 average rating on Google</span>, we must be doing
something right</p>
</div>
<div class="animation__item">
<img class="animation__item-icon" src="images/video/check.svg" alt="icon">
<p class="animation__item-text">We've tackled over <span>3,000 projects for social media
campaigns</span> - let us put our expertise to work for you!</p>
</div>
<div class="animation__item">
<img class="animation__item-icon" src="images/video/check.svg" alt="icon">
<p class="animation__item-text">Save big with <span>65% off competitors' rates</span> in the UK</p>
</div>
<div class="animation__item">
<img class="animation__item-icon" src="images/video/check.svg" alt="icon">
<p class="animation__item-text">With a <span>67% customer ordering more than once</span>, we have
shown that we possess the expertise to ensure our customers' continued satisfaction.</p>
</div>
<div class="animation__item">
<img class="animation__item-icon" src="images/video/check.svg" alt="icon">
<p class="animation__item-text"><span>1 business day</span> - that's all it takes for our short-form
content turnaround time</p>
</div>
</div>
<a class="animation__content-btn btn" href="#">GET TO KNOW THE TEAM</a>
</div>
</div>
</div>
</section>
<section class="work">
<div class="container">
<h2 class="work__title">Why <span>work with us?</span></h2>
<p class="work__desc">Here are a few sound reasons:</p>
<div class="work__inner">
<ul class="work__list">
<li class="work__list-item">Diversified team of creative experts</li>
<li class="work__list-item">Affordable and transparent pricing</li>
<li class="work__list-item">Fast turnaround time</li>
<li class="work__list-item">Privacy and confidentiality</li>
<li class="work__list-item">Creative consultancy</li>
<li class="work__list-item">AI-powered pre-production assistance</li>
</ul>
<div class="work__items">
<div class="work__item">
<h6 class="work__item-title">Diversified team of creative experts</h6>
<p class="work__item-text">Having gathered a decent team of diverse creative professionals under one
roof, our creative video production company's capable of handling many tasks simultaneously and easily
meet feasible deadlines, which are so vital for your marketing efforts. Moreover, all our specialists
are used to working together as a team which eliminates any management issues typical for freelancers.
</p>
</div>
<div class="work__item">
<h6 class="work__item-title">Affordable and transparent pricing</h6>
<p class="work__item-text">Our prices for creative production are mostly consistent with a standard
freelance rate. But by paying almost the same price, you get a qualified creative professional (or
even a team) who has the expertise you're looking for and a dedicated project manager, who would be
fully responsible for the team's performance, budget planning and your project's overall success.</p>
</div>
<div class="work__item">
<h6 class="work__item-title">Fast turnaround time</h6>
<p class="work__item-text">As an established video-production company in UK, we've spent years honing
our post-production processes to be able to quickly elaborate your even most vague requirements and
set up projects in no time. We work iteratively, maintaining the so-called feedback loop to deliver
exceptional results in record time, allowing you to meet tight deadlines, stay ahead of the
competition and keep your audience engaged with fresh, relevant content.</p>
</div>
</div>
</div>
</div>
</section>
<section class="tell">
<div class="container">
<div class="tell__inner">
<h3 class="tell__title">Ready to experience a new era of content production for optimized efficiency and
cost-effectiveness with Motiohead's Ideas and Storyboard Assistant?</h3>
<a class="tell__btn btn" href="#">Tell me more now</a>
</div>
</div>
</section>
<section class="accordion">
<div class="container">
<h2 class="accordion__title">Need our help with <span>Post-production?</span></h2>
<p class="accordion__desc">Outsourcing to our post production and motion graphics company in London means a
wide range of visual content production services and experts who are eager to progress towards your business
goals as one team. Let's create memorable things together.</p>
<div class="accordion__items">
<div class="accordion__item">
<h4 class="accordion__item-title">Video production</h4>
<div class="accordion__item-box">
<div class="accordion__item-content">
<div class="accordion__item-info">
<p class="accordion__item-text">No video starts out perfect, right? Here's where our cutting-edge
video editing, color correction, and motion graphics techniques come into play. Our professional
video editors and motion graphics designers help you smoothly stitch the best parts of your video
footage and spice it up with amusing visual effects to eventually turn it into an exciting and
breath-taking narrative your clients would adore.</p>
<a class="accordion__item-btn" href="#">Learn more</a>
</div>
<img class="accordion__item-img" src="images/accordion/accordion-img.jpg" alt="img">
</div>
</div>
</div>
<div class="accordion__item">
<h4 class="accordion__item-title">Post-production</h4>
<div class="accordion__item-box">
<div class="accordion__item-content">
<div class="accordion__item-info">
<p class="accordion__item-text">No video starts out perfect, right? Here's where our cutting-edge
video editing, color correction, and motion graphics techniques come into play. Our professional
video editors and motion graphics designers help you smoothly stitch the best parts of your video
footage and spice it up with amusing visual effects to eventually turn it into an exciting and
breath-taking narrative your clients would adore.</p>
<a class="accordion__item-btn" href="#">Learn more</a>
</div>
<img class="accordion__item-img" src="images/accordion/accordion-img.jpg" alt="img">
</div>
</div>
</div>
<div class="accordion__item">
<h4 class="accordion__item-title">2D & 3D Animation</h4>
<div class="accordion__item-box">
<div class="accordion__item-content">
<div class="accordion__item-info">
<p class="accordion__item-text">No video starts out perfect, right? Here's where our cutting-edge
video editing, color correction, and motion graphics techniques come into play. Our professional
video editors and motion graphics designers help you smoothly stitch the best parts of your video
footage and spice it up with amusing visual effects to eventually turn it into an exciting and
breath-taking narrative your clients would adore.</p>
<a class="accordion__item-btn" href="#">Learn more</a>
</div>
<img class="accordion__item-img" src="images/accordion/accordion-img.jpg" alt="img">
</div>
</div>
</div>
<div class="accordion__item">
<h4 class="accordion__item-title">3D product visualization</h4>
<div class="accordion__item-box">
<div class="accordion__item-content">
<div class="accordion__item-info">
<p class="accordion__item-text">No video starts out perfect, right? Here's where our cutting-edge
video editing, color correction, and motion graphics techniques come into play. Our professional
video editors and motion graphics designers help you smoothly stitch the best parts of your video
footage and spice it up with amusing visual effects to eventually turn it into an exciting and
breath-taking narrative your clients would adore.</p>
<a class="accordion__item-btn" href="#">Learn more</a>
</div>
<img class="accordion__item-img" src="images/accordion/accordion-img.jpg" alt="img">
</div>
</div>
</div>
<div class="accordion__item">
<h4 class="accordion__item-title">Graphic Design</h4>
<div class="accordion__item-box">
<div class="accordion__item-content">
<div class="accordion__item-info">
<p class="accordion__item-text">No video starts out perfect, right? Here's where our cutting-edge
video editing, color correction, and motion graphics techniques come into play. Our professional
video editors and motion graphics designers help you smoothly stitch the best parts of your video
footage and spice it up with amusing visual effects to eventually turn it into an exciting and
breath-taking narrative your clients would adore.</p>
<a class="accordion__item-btn" href="#">Learn more</a>
</div>
<img class="accordion__item-img" src="images/accordion/accordion-img.jpg" alt="img">
</div>
</div>
</div>
<div class="accordion__item">
<h4 class="accordion__item-title">VR and AR filter and content</h4>
<div class="accordion__item-box">
<div class="accordion__item-content">
<div class="accordion__item-info">
<p class="accordion__item-text">No video starts out perfect, right? Here's where our cutting-edge
video editing, color correction, and motion graphics techniques come into play. Our professional
video editors and motion graphics designers help you smoothly stitch the best parts of your video
footage and spice it up with amusing visual effects to eventually turn it into an exciting and
breath-taking narrative your clients would adore.</p>
<a class="accordion__item-btn" href="#">Learn more</a>
</div>
<img class="accordion__item-img" src="images/accordion/accordion-img.jpg" alt="img">
</div>
</div>
</div>
<div class="accordion__item">
<h4 class="accordion__item-title">WebAR</h4>
<div class="accordion__item-box">
<div class="accordion__item-content">
<div class="accordion__item-info">
<p class="accordion__item-text">No video starts out perfect, right? Here's where our cutting-edge
video editing, color correction, and motion graphics techniques come into play. Our professional
video editors and motion graphics designers help you smoothly stitch the best parts of your video
footage and spice it up with amusing visual effects to eventually turn it into an exciting and
breath-taking narrative your clients would adore.</p>
<a class="accordion__item-btn" href="#">Learn more</a>
</div>
<img class="accordion__item-img" src="images/accordion/accordion-img.jpg" alt="img">
</div>
</div>
</div>
<div class="accordion__item">
<h4 class="accordion__item-title">Sound mixing</h4>
<div class="accordion__item-box">
<div class="accordion__item-content">
<div class="accordion__item-info">
<p class="accordion__item-text">No video starts out perfect, right? Here's where our cutting-edge
video editing, color correction, and motion graphics techniques come into play. Our professional
video editors and motion graphics designers help you smoothly stitch the best parts of your video
footage and spice it up with amusing visual effects to eventually turn it into an exciting and
breath-taking narrative your clients would adore.</p>
<a class="accordion__item-btn" href="#">Learn more</a>
</div>
<img class="accordion__item-img" src="images/accordion/accordion-img.jpg" alt="img">
</div>
</div>
</div>
</div>
</div>
</section>
<div class="scroll">
<div class="container-fluid">
<div class="scroll__slider splide" id="autoScroll">
<div class="splide__track">
<ul class="splide__list">
<li class="splide__slide">
<div class="scroll__slider-box">
<a class="scroll__slider-link" href="#">
<img class="scroll__slider-img" src="images/autoscroll/1.jpg" alt="img">
<span class="scroll__slider-desc">Video production</span>
<img class="scroll__slider-arrow" src="images/autoscroll/arrow.svg" alt="img arrow">
</a>
</div>
</li>
<li class="splide__slide">
<div class="scroll__slider-box">
<a class="scroll__slider-link" href="#">
<img class="scroll__slider-img" src="images/autoscroll/2.jpg" alt="img">
<span class="scroll__slider-desc">Video production</span>
<img class="scroll__slider-arrow" src="images/autoscroll/arrow.svg" alt="img arrow">
</a>
</div>
</li>
<li class="splide__slide">
<div class="scroll__slider-box">
<a class="scroll__slider-link" href="#">
<img class="scroll__slider-img" src="images/autoscroll/3.jpg" alt="img">
<span class="scroll__slider-desc">Post-production</span>
<img class="scroll__slider-arrow" src="images/autoscroll/arrow.svg" alt="img arrow">
</a>
</div>
</li>
<li class="splide__slide">
<div class="scroll__slider-box">
<a class="scroll__slider-link" href="#">
<img class="scroll__slider-img" src="images/autoscroll/4.jpg" alt="img">
<span class="scroll__slider-desc">3D product visualization</span>
<img class="scroll__slider-arrow" src="images/autoscroll/arrow.svg" alt="img arrow">
</a>
</div>
</li>
<li class="splide__slide">
<div class="scroll__slider-box">
<a class="scroll__slider-link" href="#">
<img class="scroll__slider-img" src="images/autoscroll/1.jpg" alt="img">
<span class="scroll__slider-desc">Video production</span>
<img class="scroll__slider-arrow" src="images/autoscroll/arrow.svg" alt="img arrow">
</a>
</div>
</li>
<li class="splide__slide">
<div class="scroll__slider-box">
<a class="scroll__slider-link" href="#">
<img class="scroll__slider-img" src="images/autoscroll/2.jpg" alt="img">
<span class="scroll__slider-desc">Video production</span>
<img class="scroll__slider-arrow" src="images/autoscroll/arrow.svg" alt="img arrow">
</a>
</div>
</li>
<li class="splide__slide">
<div class="scroll__slider-box">
<a class="scroll__slider-link" href="#">
<img class="scroll__slider-img" src="images/autoscroll/3.jpg" alt="img">
<span class="scroll__slider-desc">Post-production</span>
<img class="scroll__slider-arrow" src="images/autoscroll/arrow.svg" alt="img arrow">
</a>
</div>
</li>
<li class="splide__slide">
<div class="scroll__slider-box">
<a class="scroll__slider-link" href="#">
<img class="scroll__slider-img" src="images/autoscroll/4.jpg" alt="img">
<span class="scroll__slider-desc">3D product visualization</span>
<img class="scroll__slider-arrow" src="images/autoscroll/arrow.svg" alt="img arrow">
</a>
</div>
</li>
</ul>
</div>
</div>
<div class="scroll__link">
<a class="scroll__link-btn btn" href="#">Check OUR PORTFOLIO</a>
</div>
</div>
</div>
<section class="brand">
<div class="container">
<h2 class="brand__title">Proud to have been putting <span>these brands</span> in motion</h2>
<ul class="brand__list">
<li class="brand__list-item">
<img class="brand__list-img" src="images/brand/1.svg" alt="img">
</li>
<li class="brand__list-item">
<img class="brand__list-img" src="images/brand/2.svg" alt="img">
</li>
<li class="brand__list-item">
<img class="brand__list-img" src="images/brand/3.svg" alt="img">
</li>
<li class="brand__list-item">
<img class="brand__list-img" src="images/brand/4.svg" alt="img">
</li>
<li class="brand__list-item">
<img class="brand__list-img" src="images/brand/5.svg" alt="img">
</li>
<li class="brand__list-item">
<img class="brand__list-img" src="images/brand/6.svg" alt="img">
</li>
<li class="brand__list-item">
<img class="brand__list-img" src="images/brand/7.svg" alt="img">
</li>
<li class="brand__list-item">
<img class="brand__list-img" src="images/brand/8.svg" alt="img">
</li>
<li class="brand__list-item">
<img class="brand__list-img" src="images/brand/9.svg" alt="img">
</li>
<li class="brand__list-item">
<img class="brand__list-img" src="images/brand/10.svg" alt="img">
</li>
<li class="brand__list-item">
<img class="brand__list-img" src="images/brand/11.svg" alt="img">
</li>
<li class="brand__list-item">
<img class="brand__list-img" src="images/brand/12.svg" alt="img">
</li>
</ul>
</div>
<div class="container-fluid">
<div class="brand__slider swiper">
<div class="brand__slider-wrapper swiper-wrapper">
<div class="brand__slider-slide swiper-slide">
<div class="brand__slider-box">
<div class="brand__slider-top">
<img class="brand__slider-icon" src="images/slider/1.svg" alt="icon">
<p class="brand__slider-text">We have used the company several times for video and editing jobs.
They have always been very professional, had great equipment, understand the brief and edited the
video to our exact specifications. We have used them more than 10 times and will continue to do so
going forward. Great work.</p>
</div>
<div class="brand__slider-bottom">
<p class="brand__slider-author">Carmen Greco, Co-Founder</p>
<span class="brand__slider-copy">Thred Media</span>
</div>
</div>
</div>
<div class="brand__slider-slide swiper-slide">
<div class="brand__slider-box">
<div class="brand__slider-top">
<img class="brand__slider-icon" src="images/slider/2.svg" alt="icon">
<p class="brand__slider-text">Motiohead have been an absolute pleasure to work with - consistently
high quality work, very speedy, trustworthy and well priced. I'd definitely recommend to others
and
I'd also definitely work with them again. They are also excellent communicators and are very
accommodating with updates to briefs, which has been a real help. We'll be working with Motiohead
again for sure.</p>
</div>
<div class="brand__slider-bottom">
<p class="brand__slider-author">Imogen Walker, Digital Content Specialist</p>
<span class="brand__slider-copy">Unicef UK</span>
</div>
</div>
</div>
<div class="brand__slider-slide swiper-slide">
<div class="brand__slider-box">
<div class="brand__slider-top">
<img class="brand__slider-icon" src="images/slider/3.svg" alt="icon">
<p class="brand__slider-text">I've used Motiohead on a few occasions and couldn't recommend them
highly enough. Always prepared to go above and beyond to ensure we meet our tight deadlines
(without
any issues). Always a pleasure to work with and plan to use them again in the future.</p>
</div>
<div class="brand__slider-bottom">
<p class="brand__slider-author">Kenny England, Producer</p>
<span class="brand__slider-copy">itv</span>
</div>
</div>
</div>
<div class="brand__slider-slide swiper-slide">
<div class="brand__slider-box">
<div class="brand__slider-top">
<img class="brand__slider-icon" src="images/slider/1.svg" alt="icon">
<p class="brand__slider-text">We have used the company several times for video and editing jobs.
They have always been very professional, had great equipment, understand the brief and edited the
video to our exact specifications. We have used them more than 10 times and will continue to do so
going forward. Great work.</p>
</div>
<div class="brand__slider-bottom">
<p class="brand__slider-author">Carmen Greco, Co-Founder</p>
<span class="brand__slider-copy">Thred Media</span>
</div>
</div>
</div>
<div class="brand__slider-slide swiper-slide">
<div class="brand__slider-box">
<div class="brand__slider-top">
<img class="brand__slider-icon" src="images/slider/2.svg" alt="icon">
<p class="brand__slider-text">Motiohead have been an absolute pleasure to work with - consistently
high quality work, very speedy, trustworthy and well priced. I'd definitely recommend to others
and
I'd also definitely work with them again. They are also excellent communicators and are very
accommodating with updates to briefs, which has been a real help. We'll be working with Motiohead
again for sure.</p>
</div>
<div class="brand__slider-bottom">
<p class="brand__slider-author">Imogen Walker, Digital Content Specialist</p>
<span class="brand__slider-copy">Unicef UK</span>
</div>
</div>
</div>
<div class="brand__slider-slide swiper-slide">
<div class="brand__slider-box">
<div class="brand__slider-top">
<img class="brand__slider-icon" src="images/slider/3.svg" alt="icon">
<p class="brand__slider-text">I've used Motiohead on a few occasions and couldn't recommend them
highly enough. Always prepared to go above and beyond to ensure we meet our tight deadlines
(without
any issues). Always a pleasure to work with and plan to use them again in the future.</p>
</div>
<div class="brand__slider-bottom">
<p class="brand__slider-author">Kenny England, Producer</p>
<span class="brand__slider-copy">itv</span>
</div>
</div>
</div>
</div>
<div class="brand__slider-next">
<img src="images/slider/arrow-next.svg" alt="arrow">
</div>
<div class="brand__slider-prev">
<img src="images/slider/arrow-prev.svg" alt="arrow">
</div>
</div>
</div>
</section>
<section class="consultation">
<div class="container">
<div class="consultation__inner">
<h3 class="consultation__title">We provide full-scale expert creative assistance and management of your
projects to deliver high-quality content that drives engagement and boost your sales.</h3>
<a class="consultation__btn btn" href="#">Book a consultation</a>
</div>
</div>
</section>
<section class="platform">
<div class="container">
<h2 class="platform__title"><span>Interactive platform</span> to make the video creation process smoother</h2>
<p class="platform__desc">We respect your desire for independence and transparency when it comes to tracking
the work process. And that's why we encourage you to use our online customer portal – a secure and open
forum for collaboration with Motiohead. You can submit a project brief for us, get an estimate, and
comfortably control how the work is progressing.</p>
<p class="platform__subtitle">Here is how it works</p>
<div class="platform__items">
<div class="platform__item">
<img class="platform__item-icon" src="images/platform/1.svg" alt="icon">
<h4 class="platform__item-title">1. Sign Up</h4>
<p class="platform__item-text">Get started by clicking the 'Start Now' button on our website header and
register using your email.</p>
</div>
<div class="platform__item">
<img class="platform__item-icon" src="images/platform/2.svg" alt="icon">
<h4 class="platform__item-title">2. Registering a new project</h4>
<p class="platform__item-text">Once you're logged in, click on 'Create a new project' and give it a name.
The system will automatically assign a unique code to it for identification purposes. Provide essential
details like your timeframes, type of work needed, etc., as we'll use this data to build an initial
statement of work.</p>
</div>
<div class="platform__item">
<img class="platform__item-icon" src="images/platform/3.svg" alt="icon">
<h4 class="platform__item-title">3. Upload your materials</h4>
<p class="platform__item-text">Upload all materials that you would like us to work with. This could be
brand guidelines, footage, references or even your brief created using our Ideas and <span>Storyboard
Assistant</span>.</p>
</div>
<div class="platform__item">
<img class="platform__item-icon" src="images/platform/4.svg" alt="icon">
<h4 class="platform__item-title">4. Project Kick Off</h4>
<p class="platform__item-text">We'll discuss your project with you via your preferred method of
communication – email, WhatsApp or by phone. We can start working once everything is clear and we’ve
agreed on all terms.</p>
</div>
<div class="platform__item">
<img class="platform__item-icon" src="images/platform/5.svg" alt="icon">
<h4 class="platform__item-title">5. Ongoing Support</h4>
<p class="platform__item-text">We'll notify you as soon as the first drafts are ready for your review. Our
team is always here to support you throughout the entire production process.</p>
</div>
<div class="platform__item">
<h4 class="platform__item-title">Want to save your time on discussions and hire a great-value
creative remote team right away?</h4>
<a class="platform__item-btn btn" href="#">Initiate project</a>
</div>
</div>
</div>
</section>
<section class="questions">
<div class="container">
<h2 class="questions__title">Have <span>any questions</span> about your video project?</h2>
<p class="questions__desc">We've got you covered — briefly describe your task or your creative idea and our
talent will make it a reality for you.</p>
<div class="questions__items">
<div class="questions__item">
<h4 class="questions__item-title questions__item-title--difference">Tell us about your idea or what needs to be done</h4>
<form class="questions__item-form form" action="#">
<input class="form__input" required type="text" placeholder="Your full name *">
<input class="form__input" required type="email" placeholder="Your email *">
<input class="form__input" required type="tel" placeholder="Your phone number">
<textarea class="form__textarea" placeholder="Enter your comment"></textarea>
<div class="form__box">
<input class="form__input-file" name="file" id="file" type="file">
<label class="form__input-style" for="file">Attachment</label>
</div>
<button class="form__btn" type="submit">Submit a request</button>
</form>
</div>
<div class="questions__item">
<h4 class="questions__item-title">What's next?</h4>
<ul class="questions__item-list">
<li class="questions__item-content">
<span class="questions__item-num">1.</span>
<p class="questions__item-text">We need one business day to carefully study the information you've
provided and get back to you on the next steps.</p>
</li>
<li class="questions__item-content">
<span class="questions__item-num">2.</span>
<p class="questions__item-text">Together with you, we then define the exact scope of work, timeframes
and your financial expectations to help us prepare the best possible offer for you. We can also sign
an NDA at this stage if you need it.</p>
</li>
<li class="questions__item-content">
<span class="questions__item-num">3.</span>
<p class="questions__item-text">We start working on your offer — and send it for your approval as soon
as possible.</p>
</li>
</ul>
<span class="questions__item-desc" >Email</span>
<a class="questions__item-email" href="mailto:[email protected]">[email protected]</a>
<span class="questions__item-desc" >Telephone</span>
<a class="questions__item-tel" href="tel:+5502048864389">+55 (0) 20 4886 4389</a>
<h5 class="questions__item-subtitle" >Need help with a brief/storyboard?</h5>
<a class="questions__item-link" href="#">Use our AI Assistant Service</a>
</div>
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="container" >
<div class="footer__top" >
<a class="footer__logo" href="#">
<img class="footer__logo-img" src="images/footer/footer-logo.svg" alt="footer logo">
</a>
<div class="footer__top-box" >
<ul class="footer__top-list" >
<li class="footer__top-item" >
<h5 class="footer__top-title" >Our portfolio</h5>
</li>
<li class="footer__top-item" >
<a class="footer__top-link" href="#">Video production</a>
</li>
<li class="footer__top-item" >
<a class="footer__top-link" href="#">Post-production</a>
</li>
<li class="footer__top-item" >
<a class="footer__top-link" href="#">2D & 3D Animation</a>
</li>
<li class="footer__top-item" >
<a class="footer__top-link" href="#">3D product visualization</a>
</li>
<li class="footer__top-item" >
<a class="footer__top-link" href="#">Graphic Design</a>
</li>
<li class="footer__top-item" >
<a class="footer__top-link" href="#">Sound mixing</a>
</li>
</ul>
<ul class="footer__top-list" >
<li class="footer__top-item" >
<h5 class="footer__top-title" >Services</h5>
</li>
<li class="footer__top-item" >
<a class="footer__top-link" href="#">Video production</a>
</li>
<li class="footer__top-item" >
<a class="footer__top-link" href="#">Post-production</a>
</li>
<li class="footer__top-item" >
<a class="footer__top-link" href="#">2D & 3D Animation</a>
</li>
<li class="footer__top-item" >
<a class="footer__top-link" href="#">3D product visualization</a>
</li>
<li class="footer__top-item" >
<a class="footer__top-link" href="#">Graphic Design</a>
</li>
<li class="footer__top-item" >
<a class="footer__top-link" href="#">Sound mixing</a>
</li>
</ul>
<ul class="footer__top-list" >
<li class="footer__top-item" >
<h5 class="footer__top-title" >About Us</h5>
</li>
<li class="footer__top-item" >
<a class="footer__top-link" href="#">Our team</a>
</li>
</ul>
<ul class="footer__top-list" >
<li class="footer__top-item" >
<h5 class="footer__top-title" >Blog</h5>
</li>
<li class="footer__top-item" >
<h5 class="footer__top-title" >Ai Storyboard Assistant</h5>
</li>
<li class="footer__top-item" >
<h5 class="footer__top-title" >Contact us</h5>
</li>
<li class="footer__top-item" >
<a class="footer__top-tel" href="tel:+4402038824109">+55 (0) 20 4886 4389</a>
</li>
<li class="footer__top-item" >
<a class="footer__top-mail" href="mailto:[email protected]">[email protected]</a>
</li>
</ul>
</div>
</div>
</div>
<div class="footer__bottom" >
<div class="container" >
<div class="footer__bottom-inner" >
<p class="footer__bottom-copy" >@ 2020-2023 Motiohead Ltd</p>
<ul class="footer__bottom-list" >
<li class="footer__bottom-item" >
<a class="footer__bottom-link" href="#">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<path d="M10.665 2.65667H12.1257V0.112667C11.8737 0.078 11.007 0 9.99767 0C7.89167 0 6.449 1.32467 6.449 3.75933V6H4.125V8.844H6.449V16H9.29833V8.84467H11.5283L11.8823 6.00067H9.29767V4.04133C9.29833 3.21933 9.51967 2.65667 10.665 2.65667Z" fill="white"/>
</svg>
</a>
</li>
<li class="footer__bottom-item" >
<a class="footer__bottom-link" href="#">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g clip-path="url(#clip0_1358_1997)">
<path d="M8 0C10.1736 0 10.4448 0.00799995 11.2976 0.048C12.1496 0.088 12.7296 0.2216 13.24 0.42C13.768 0.6232 14.2128 0.8984 14.6576 1.3424C15.0644 1.74232 15.3792 2.22607 15.58 2.76C15.7776 3.2696 15.912 3.8504 15.952 4.7024C15.9896 5.5552 16 5.8264 16 8C16 10.1736 15.992 10.4448 15.952 11.2976C15.912 12.1496 15.7776 12.7296 15.58 13.24C15.3797 13.7742 15.0649 14.2581 14.6576 14.6576C14.2576 15.0643 13.7738 15.379 13.24 15.58C12.7304 15.7776 12.1496 15.912 11.2976 15.952C10.4448 15.9896 10.1736 16 8 16C5.8264 16 5.5552 15.992 4.7024 15.952C3.8504 15.912 3.2704 15.7776 2.76 15.58C2.22586 15.3796 1.74202 15.0648 1.3424 14.6576C0.935525 14.2577 0.620745 13.774 0.42 13.24C0.2216 12.7304 0.088 12.1496 0.048 11.2976C0.0104 10.4448 0 10.1736 0 8C0 5.8264 0.00799995 5.5552 0.048 4.7024C0.088 3.8496 0.2216 3.2704 0.42 2.76C0.620189 2.22574 0.935043 1.74186 1.3424 1.3424C1.74214 0.935385 2.22594 0.620583 2.76 0.42C3.2704 0.2216 3.8496 0.088 4.7024 0.048C5.5552 0.0104 5.8264 0 8 0ZM8 4C6.93913 4 5.92172 4.42143 5.17157 5.17157C4.42143 5.92172 4 6.93913 4 8C4 9.06087 4.42143 10.0783 5.17157 10.8284C5.92172 11.5786 6.93913 12 8 12C9.06087 12 10.0783 11.5786 10.8284 10.8284C11.5786 10.0783 12 9.06087 12 8C12 6.93913 11.5786 5.92172 10.8284 5.17157C10.0783 4.42143 9.06087 4 8 4ZM13.2 3.8C13.2 3.53478 13.0946 3.28043 12.9071 3.09289C12.7196 2.90536 12.4652 2.8 12.2 2.8C11.9348 2.8 11.6804 2.90536 11.4929 3.09289C11.3054 3.28043 11.2 3.53478 11.2 3.8C11.2 4.06522 11.3054 4.31957 11.4929 4.50711C11.6804 4.69464 11.9348 4.8 12.2 4.8C12.4652 4.8 12.7196 4.69464 12.9071 4.50711C13.0946 4.31957 13.2 4.06522 13.2 3.8ZM8 5.6C8.63652 5.6 9.24697 5.85286 9.69706 6.30294C10.1471 6.75303 10.4 7.36348 10.4 8C10.4 8.63652 10.1471 9.24697 9.69706 9.69706C9.24697 10.1471 8.63652 10.4 8 10.4C7.36348 10.4 6.75303 10.1471 6.30294 9.69706C5.85286 9.24697 5.6 8.63652 5.6 8C5.6 7.36348 5.85286 6.75303 6.30294 6.30294C6.75303 5.85286 7.36348 5.6 8 5.6Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_1358_1997">
<rect width="16" height="16" fill="white"/>
</clipPath>
</defs>
</svg>
</a>
</li>
<li class="footer__bottom-item" >
<a class="footer__bottom-link" href="#">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<path d="M6.58254 7.52037C6.91457 7.35336 7.16559 7.16734 7.3376 6.96633C7.64363 6.6043 7.79464 6.12426 7.79464 5.52921C7.79464 4.95016 7.64363 4.45512 7.3416 4.04009C6.83756 3.36403 5.98449 3.018 4.77839 3H0V12.7538H4.45537C4.95741 12.7538 5.42245 12.7108 5.85248 12.6228C6.28252 12.5338 6.65455 12.3708 6.96957 12.1327C7.2496 11.9257 7.48361 11.6687 7.66963 11.3657C7.96365 10.9076 8.11067 10.3886 8.11067 9.81056C8.11067 9.25051 7.98166 8.77347 7.72563 8.38144C7.46661 7.98941 7.08658 7.70239 6.58254 7.52037ZM1.97116 4.69414H4.12334C4.59638 4.69414 4.98641 4.74514 5.29243 4.84615C5.64646 4.99316 5.82348 5.29219 5.82348 5.74823C5.82348 6.15726 5.68847 6.44328 5.42145 6.6043C5.15242 6.76531 4.80339 6.84632 4.37536 6.84632H1.97116V4.69414ZM5.37444 10.8896C5.13642 11.0047 4.80139 11.0617 4.37236 11.0617H1.97116V8.46045H4.40536C4.8294 8.46345 5.15942 8.51945 5.39544 8.62446C5.81548 8.81448 6.0245 9.1625 6.0245 9.67155C6.0245 10.2716 5.80848 10.6756 5.37444 10.8896Z" fill="white"/>
<path d="M14.4639 3.45508H10.2266V4.66918H14.4639V3.45508Z" fill="white"/>
<path d="M15.9337 8.24683C15.8457 7.68178 15.6517 7.18474 15.3496 6.75571C15.0186 6.26967 14.5986 5.91364 14.0875 5.68862C13.5785 5.4626 13.0054 5.34959 12.3674 5.35059C11.2963 5.35059 10.4262 5.68562 9.75318 6.35067C9.08212 7.01773 8.74609 7.97681 8.74609 9.22691C8.74609 10.56 9.11712 11.5231 9.86319 12.1141C10.6062 12.7062 11.4643 13.0012 12.4384 13.0012C13.6175 13.0012 14.5346 12.6502 15.1896 11.9501C15.6087 11.5081 15.8457 11.0731 15.8977 10.646H13.9455C13.8325 10.857 13.7015 11.0221 13.5515 11.1421C13.2795 11.3621 12.9254 11.4721 12.4914 11.4721C12.0784 11.4721 11.7283 11.3811 11.4363 11.2001C10.9543 10.91 10.7023 10.402 10.6703 9.67895H15.9977C16.0057 9.0559 15.9857 8.57686 15.9337 8.24683ZM10.7183 8.43385C10.7883 7.96481 10.9583 7.59278 11.2283 7.31775C11.4983 7.04373 11.8804 6.90572 12.3694 6.90472C12.8204 6.90472 13.1975 7.03373 13.5045 7.29275C13.8075 7.55377 13.9785 7.9328 14.0135 8.43385H10.7183Z" fill="white"/>
</svg>
</a>
</li>
<li class="footer__bottom-item" >
<a class="footer__bottom-link" href="#">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<path d="M5.89453 0.582656C6.50925 1.31672 8.01453 3.23144 9.21844 5.70669C10.7236 5.28328 12.3041 4.53244 13.8556 3.28816L14.2302 2.98775C12.7626 1.16709 10.5152 0 8.00006 0C7.19769 0 6.42272 0.11925 5.69141 0.340094L5.89453 0.582656Z" fill="white"/>
<path d="M14.4416 4.01964C12.9471 5.2182 11.3335 6.07333 9.61816 6.57992C9.8572 7.13392 10.0654 7.68402 10.2423 8.2282C11.8195 8.09405 13.601 8.31492 15.5426 8.88623L15.9369 9.00227C15.9781 8.67389 15.9995 8.33945 15.9995 8.00011C15.9995 6.44036 15.5504 4.98377 14.7754 3.75195L14.4416 4.01964Z" fill="white"/>
<path d="M0.972844 5.32534C1.76781 5.62684 3.52959 6.17868 5.75091 6.17874C6.54684 6.17877 7.40184 6.10777 8.29247 5.92918C7.1875 3.71493 5.84684 1.98555 5.17591 1.1843L4.75906 0.686523C2.81922 1.54962 1.28412 3.1624 0.523438 5.1549L0.972844 5.32534Z" fill="white"/>
<path d="M3.079 13.9069C3.43141 12.8578 4.31431 10.9001 6.26809 9.57613C7.15828 8.97294 8.17825 8.56375 9.30709 8.35425C9.12912 7.82437 8.92656 7.30956 8.70806 6.81403C7.86747 6.99847 7.00422 7.10269 6.11994 7.12484C6.00153 7.12784 5.88391 7.12928 5.76772 7.12928C3.44319 7.12931 1.57253 6.55591 0.640156 6.20228L0.240656 6.05078C0.0837813 6.675 0 7.32794 0 8.00016C0 10.509 1.16122 12.7514 2.97406 14.2193L3.079 13.9069Z" fill="white"/>
<path d="M15.2785 9.78511C13.4083 9.23479 11.8359 9.06317 10.5146 9.15042C10.6336 9.60339 10.7299 10.0513 10.8031 10.4928C11.0852 12.1947 11.0276 13.8218 10.6316 15.3289L10.5663 15.5775C13.1256 14.7085 15.1065 12.5768 15.7646 9.92814L15.2785 9.78511Z" fill="white"/>
<path d="M9.72445 15.0912C10.2443 13.1126 10.0832 11.1137 9.58186 9.26074C5.89836 9.89812 4.4738 12.6977 3.96736 14.2054L3.77148 14.7885C4.99911 15.5559 6.44839 16.0002 7.9997 16.0002C8.52089 16.0002 9.03042 15.9495 9.52411 15.8539L9.72445 15.0912Z" fill="white"/>
</svg>
</a>
</li>
<li class="footer__bottom-item" >
<a class="footer__bottom-link" href="#">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g clip-path="url(#clip0_1358_2011)">
<path d="M13.6647 1.00361C11.446 0.922942 9.94733 2.19494 9.15667 4.79961C9.56333 4.61761 9.95867 4.53628 10.3413 4.53628C11.154 4.53628 11.5133 5.00094 11.4173 5.92428C11.3693 6.48361 11.012 7.29694 10.3427 8.36694C9.67 9.43694 9.16733 9.97294 8.83267 9.97294C7.818 9.97294 7.208 5.11694 7.00133 3.79094C6.714 1.94761 5.948 1.08561 4.70333 1.20628C3.56067 1.31494 1.56667 3.37228 0 4.76694L0.752667 5.74828C1.46933 5.24028 1.88733 4.98561 2.00667 4.98561C3.254 4.98561 3.858 9.23028 4.82667 12.3869C5.47667 14.1289 6.256 15.0003 7.19533 15.0003C8.70467 15.0003 10.5433 13.5709 12.722 10.7109C14.8253 7.97294 15.9147 5.81494 15.9847 4.24094L15.9933 4.23428C16.0827 2.12428 15.3127 1.04428 13.6647 1.00361Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_1358_2011">
<rect width="16" height="16" fill="white"/>
</clipPath>
</defs>
</svg>
</a>
</li>
</ul>
</div>
<a class="footer__go" href="#top">
<img class="footer__go-arrow" src="images/footer/footer-arrow.svg" alt="go arrow">
</a>
</div>
</div>
</footer>
</div>
<script src="js/main.min.js"></script>
</body>
</html>