-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1125 lines (1041 loc) · 46 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">
<meta http-equiv='cache-control' content='no-cache'>
<meta http-equiv='expires' content='0'>
<meta http-equiv='pragma' content='no-cache'>
<head>
<meta charset="utf-8">
<!-- <title>Atezian Audio Portfolio</title> -->
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta property="og:title" content="Atezian Audio Portfolio" />
<meta property="og:type" content="Portfolio" />
<meta property="og:url" content="https://atezian.github.io/" />
<meta property="og:image" content="img/intro-bg.jpg" />
<!-- <meta content="" name="keywords">
<meta content="" name="keywords">
<meta content="" name="description"> -->
<!-- Favicons -->
<link href="img/favicon.png" rel="icon">
<link href="img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Bootstrap CSS File -->
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Libraries CSS Files -->
<link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="lib/animate/animate.min.css" rel="stylesheet">
<link href="lib/ionicons/css/ionicons.min.css" rel="stylesheet">
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="lib/lightbox/css/lightbox.min.css" rel="stylesheet">
<!-- Main Stylesheet File -->
<link href="css/style.css" rel="stylesheet">
<!-- =======================================================
Theme Name: AtezianAudio
Theme URL: https://bootstrapmade.com/devfolio-bootstrap-portfolio-html-template/
Author: BootstrapMade.com
License: https://bootstrapmade.com/license/
======================================================= -->
</head>
<body id="page-top">
<!--/ Nav Star /-->
<nav class="navbar navbar-b navbar-trans navbar-expand-md fixed-top" id="mainNav">
<div class="container">
<a class="navbar-brand js-scroll" href="#page-top">Audio Portfolio</a>
<button class="navbar-toggler collapsed" type="button" data-toggle="collapse" data-target="#navbarDefault"
aria-controls="navbarDefault" aria-expanded="false" aria-label="Toggle navigation">
<span></span>
<span></span>
<span></span>
</button>
<div class="navbar-collapse collapse justify-content-end" id="navbarDefault">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link js-scroll active" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll" href="#service">Services</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll" href="#sfxpacks">SFX Packs</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll" href="#work">Completed Works</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll" href="#contact">SoundCloud</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link js-scroll" href="#testimonials">Testimonials</a>
</li> -->
</ul>
</div>
</div>
</nav>
<!--/ Nav End /-->
<!--/ Intro Skew Star /-->
<div id="home" class="intro route bg-image" style="background-image: url(img/intro-bg.jpg)">
<div class="overlay-itro"></div>
<div class="intro-content display-table">
<div class="table-cell">
<div class="container">
<!--<p class="display-6 color-d">Hello, world!</p>-->
<h1 class="intro-title mb-4">Atezian Audio</h1>
<p class="intro-subtitle"><span class="text-slider-items">Music Composition,Mixing and Mastering,Sound Design</span><strong class="text-slider"></strong></p>
<!-- <p class="pt-3"><a class="btn btn-primary btn js-scroll px-4" href="#about" role="button">Learn More</a></p> -->
</div>
</div>
</div>
</div>
<!--/ Intro Skew End /-->
<section id="about" class="about-mf sect-pt4 route">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="box-shadow-full">
<div class="row">
<div class="col-md-6">
<div class="row">
<div class="col-sm-6 col-md-5">
<div class="about-img">
<img src="img/Carl.jpg" class="img-fluid rounded b-shadow-a" alt="">
</div>
</div>
<div class="col-sm-6 col-md-7">
<div class="about-info">
<p><span class="title-s">Name: </span> <span>Carl Powell</span></p>
<p><span class="title-s">Profile: </span> <span>Composer & Sound Design</span></p>
<p><span class="title-s">Email: </span> <span>[email protected]</span></p>
<!-- <p><span class="title-s">Phone: </span> <span> - </span></p> -->
</div>
</div>
</div>
<div class="socials">
<div>
<span>Twitter: </span><a href="https://twitter.com/Atezian" target="_blank">https://twitter.com/Atezian</a>
</div>
<div>
<span>Fiverr: </span><a href="https://www.fiverr.com/atezian" target="_blank">https://www.fiverr.com/atezian</a>
</div>
<div>
<span>YouTube: </span><a href="http://youtube.com/@Atezian" target="_blank">http://youtube.com/@Atezian</a>
</div>
<div>
<span>ArtStation: </span><a href="https://www.artstation.com/carl_powell" target="_blank">https://www.artstation.com/carl_powell</a>
</div>
<div>
<span>SoundCloud: </span><a href="https://soundcloud.com/carl-powell-1" target="_blank">https://soundcloud.com/carl-powell-1</a>
</div>
</div>
<!-- <div class="skill-mf">
<p class="title-s">Skill</p>
<span>Composing</span> <span class="pull-right">90%</span>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 90%;" aria-valuenow="85" aria-valuemin="0"
aria-valuemax="100"></div>
</div>
<span>Sound Effects</span> <span class="pull-right">60%</span>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 60%" aria-valuenow="75" aria-valuemin="0"
aria-valuemax="100"></div>
</div>
<span>Recording and Live Audio</span> <span class="pull-right">50%</span>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 50%" aria-valuenow="50" aria-valuemin="0"
aria-valuemax="100"></div>
</div>
<span>Mixing and Mastering</span> <span class="pull-right">75%</span>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 75%" aria-valuenow="90" aria-valuemin="0"
aria-valuemax="100"></div>
</div>
</div> -->
</div>
<div class="col-md-6">
<div class="about-me pt-4 pt-md-0">
<div class="title-box-2">
<h5 class="title-left">About me</h5>
</div>
<p class="lead">
I write music and make sound effects. With over 10 years of experience in composing and 4 years in sound design, I have cultivated a well of knowledge that allows me to work efficiently and effectively.
</p>
<!-- <p class="lead">
An important concept I've come to understand is that sound design should accentuate what is happening visually.
If the audio stands out too much on its then it will bring the listener out of their suspension of disbelief.
You know audio is working well when it isn't questioned or noticed separately from the screenplay.
</p>
<p class="lead">
In my experience as a listener, it is a special moment when you hear a moving piece of music for the first time.
Due to drawing influence from a wide array of music, I understand a variety of genres and timbres, and I strive to reflected this in my work.
</p> -->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- <section id="about" class="about-mf sect-pt4 route">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="title-box text-center">
<h5 class="title-a">Software Proficiency</h5>
<div class="line-mf"></div>
</div>
</div>
<div class="col-sm-12">
<div class="box-shadow-full">
<div class="row">
<div class="col-md-5">
<div class="skill-mf">
<p class="title-left">Audio</p>
<div class="container">
<div>
 
</div>
<span> <b>ProTools (2014 - 2021) </b></span>
<span class="pull-right">95%</span>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 95%;" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100"></div>
</div>
<span><b>Reaper (2021 - Present)</b> </span>
<span class="pull-right">95%</span>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 95%" aria-valuenow="85" aria-valuemin="0" aria-valuemax="100"></div>
</div>
<span><b>FMOD (2021 - Present) </b></span>
<span class="pull-right">75%</span>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 75%" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100"></div>
</div>
<span><b>Cubase (2009 - 2014) </b></span>
<span class="pull-right">50%</span>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 50%" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100"></div>
</div>
<span><b>MuseScore (2023 - Present) </b></span>
<span class="pull-right">40%</span>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 40%" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100"></div>
</div>
<span><b>Dorico (2017 - 2022) </b></span>
<span class="pull-right">75%</span>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 75%" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
</div>
<div class="col-md-2"></div>
<div class="col-md-5">
<div class="skill-mf">
<p class="title-left">Misc</p>
<div class="container">
<div>
 
</div>
<span><b>Unity (2020 - Present) </b></span>
<span class="pull-right">90%</span>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 90%" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100"></div>
</div>
<span><b>Git & Github (2021 - Present)</b> </span>
<span class="pull-right">50%</span>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 50%" aria-valuenow="85" aria-valuemin="0" aria-valuemax="100"></div>
</div>
<span><b>Unity C# scripting (2020 - Present) </b></span>
<span class="pull-right">50%</span>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 50%" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100"></div>
</div>
<span> <b>Blender (2019 - Present) </b></span>
<span class="pull-right">80%</span>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 80%;" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!--/ Section Services Star /-->
<section id="service" class="services-mf route">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="title-box text-center">
<h3 class="title-a">Services</h3>
<div class="line-mf">
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="service-box">
<a href="https://www.fiverr.com/atezian/compose-music-of-any-genre-for-your-project" target="_blank">
<div class="service-ico">
<span class="ico-circle">
<ion-icon name="musical-notes"></ion-icon>
</div>
<div class="service-content">
<h2 class="s-title">Composing</h2>
<p class="s-description text-center">Original custom music tailored to your requirements.</p>
</div>
</a>
</div>
</div>
<div class="col-md-4">
<div class="service-box">
<div class="service-ico">
<span class="ico-circle">
<ion-icon name="options"></ion-icon>
</div>
<div class="service-content">
<h2 class="s-title">Mixing & Mastering</h2>
<p class="s-description text-center">Bridging the gap from amateur to professional sounding audio.</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="service-box">
<div class="service-ico">
<span class="ico-circle">
<ion-icon name="megaphone"></ion-icon>
</div>
<div class="service-content">
<h2 class="s-title">Sound Effects</h2>
<p class="s-description text-center">
<!-- 8-bit GBA, Subtle foley & RPG crafting, Roaring monsters & Bellowing sci-fi, Stirring thriller, Quirky anime emotes. -->
Specialized in processed scifi/mech, environment ambience, magic/spells.
<!-- Lively ambient environments and sonically charged character interactions. -->
<!-- Sonically inviting interactions and ambient environment. -->
<!-- Creating textured interactions and ambient environment. -->
<!-- Distinct, natural sounding interactions and ambient environments. -->
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--/ Section Services End /-->
<!-- <div class="section-counter paralax-mf bg-image" style="background-image: url(img/intro-bg.jpg)">
<div class="overlay-mf"></div>
<div class="container">
<div class="row">
<div class="col-sm-4 col-lg-4">
<div class="counter-box">
<div class="counter-ico">
<span class="ico-circle"><i class="ion-checkmark-round"></i></span>
</div>
<div class="counter-num">
<p class="counter">39</p>
<span class="counter-text">WORKS COMPLETED</span>
</div>
</div>
</div>
<div class="col-sm-4 col-lg-4">
<div class="counter-box pt-4 pt-md-0">
<div class="counter-ico">
<span class="ico-circle"><i class="ion-ios-calendar-outline"></i></span>
</div>
<div class="counter-num">
<p class="counter">13</p>
<span class="counter-text">YEARS OF EXPERIENCE</span>
</div>
</div>
</div>
<div class="col-sm-4 col-lg-4">
<div class="counter-box pt-4 pt-md-0">
<div class="counter-ico">
<span class="ico-circle"><i class="ion-ios-people"></i></span>
</div>
<div class="counter-num">
<p class="counter">12</p>
<span class="counter-text">TOTAL CLIENTS</span>
</div>
</div>
</div>
</div>
</div>
</div> -->
<!--/ Section SFX Packs Start /-->
<!-- ``````````````````````````````````````````````````````````````````````````````````````````````````````` -->
<section id="sfxpacks" class="portfolio-mf sect-pt4 route">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="title-box text-center">
<h3 class="title-a">
SFX Packs
</h3>
<div class="line-mf"></div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="work-box">
<a href="https://atezianaudio.gumroad.com/l/scifienginessfx" target="_blank">
<!-- data-lightbox="gallery-mf"> -->
<div class="work-img">
<img src="img/scifiengines_gumroad600x600.jpg" alt="" class="img-fluid">
</div>
<div class="work-content">
<div class="row">
<div class="col-sm-8">
<h2 class="w-title">Sci-Fi Engines SFX Package</h2>
<div class="w-more">
<span class="w-ctegory">Sound Effects</span> / <span class="w-date">8 Feb. 2023</span>
</div>
</div>
<div class="col-sm-4">
<div class="w-like">
<span class="ion-ios-plus-outline"></span>
<!-- <ion-icon name="link-outline"></ion-icon> -->
<!-- <ion-icon name="logo-soundcloud"></ion-icon> -->
</div>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="col-md-4">
<div class="work-box">
<a href="https://atezianaudio.gumroad.com/l/electricitysfx" target="_blank">
<!-- data-lightbox="gallery-mf"> -->
<div class="work-img">
<img src="img/Electricity and Lightning Promo_gumroad 600x600.jpg" alt="" class="img-fluid">
</div>
<div class="work-content">
<div class="row">
<div class="col-sm-8">
<h2 class="w-title">Electricity and Lightning SFX Package</h2>
<div class="w-more">
<span class="w-ctegory">Sound Effects</span> / <span class="w-date">26 Feb. 2023</span>
</div>
</div>
<div class="col-sm-4">
<div class="w-like">
<span class="ion-ios-plus-outline"></span>
<!-- <ion-icon name="link-outline"></ion-icon> -->
<!-- <ion-icon name="logo-soundcloud"></ion-icon> -->
</div>
</div>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
</section>
<!--/ Section SFX Packs End /-->
<!-- ``````````````````````````````````````````````````````````` ``````````````````````````````````````````````````````````````````````-->
<!--/ Section Completed Works Star /-->
<!-- ``````````````````````````````````````````````````````````````````````````````````````````````````````` -->
<section id="work" class="portfolio-mf sect-pt4 route">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="title-box text-center">
<h3 class="title-a">
Completed Works
</h3>
<div class="line-mf"></div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="work-box">
<a href="https://www.movingout2.com" target="_blank">
<!-- data-lightbox="gallery-mf"> -->
<div class="work-img">
<img src="img/work-7.png" alt="" class="img-fluid">
</div>
<div class="work-content">
<div class="row">
<div class="col-sm-8">
<h2 class="w-title">Moving Out 2 - SMG Studio</h2>
<div class="w-more">
<span class="w-ctegory"> SFX Design </span> / <span class="w-date">16 Aug. 2023</span>
</div>
</div>
<div class="col-sm-4">
<div class="w-like">
<span class="ion-ios-plus-outline"></span>
<!-- <ion-icon name="link-outline"></ion-icon> -->
<!-- <ion-icon name="logo-soundcloud"></ion-icon> -->
</div>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="col-md-4">
<div class="work-box">
<a href="https://soundcloud.com/carl-powell-1/sets/era-spheres-mmo-ost" target="_blank">
<!-- data-lightbox="gallery-mf"> -->
<div class="work-img">
<img src="img/work-1.jpg" alt="" class="img-fluid">
</div>
<div class="work-content">
<div class="row">
<div class="col-sm-8">
<h2 class="w-title">Era Spheres MMORPG - Era Spheres</h2>
<div class="w-more">
<span class="w-ctegory">Composition, SFX Design, Mixing</span> / <span class="w-date">13 Aug. 2022</span>
</div>
</div>
<div class="col-sm-4">
<div class="w-like">
<span class="ion-ios-plus-outline"></span>
<!-- <ion-icon name="link-outline"></ion-icon> -->
<!-- <ion-icon name="logo-soundcloud"></ion-icon> -->
</div>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="col-md-4">
<div class="work-box">
<a href="https://soundcloud.com/carl-powell-1/sets/the-ballad-of-sir-gatling-ost" target="_blank">
<div class="work-img">
<img src="img/work-2.jpg" alt="" class="img-fluid">
</div>
<div class="work-content">
<div class="row">
<div class="col-sm-8">
<h2 class="w-title">The Ballad of Sir Gatling - Effort Star</h2>
<div class="w-more">
<span class="w-ctegory">Composition, SFX Design, Mixing</span> / <span class="w-date">28 Dec. 2021</span>
</div>
</div>
<div class="col-sm-4">
<div class="w-like">
<span class="ion-ios-plus-outline"></span>
</div>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="col-md-4">
<div class="work-box">
<a href="https://soundcloud.com/carl-powell-1/sets/the-house-ost" target="_blank">
<div class="work-img">
<img src="img/work-3.jpg" alt="" class="img-fluid">
</div>
<div class="work-content">
<div class="row">
<div class="col-sm-8">
<h2 class="w-title">The House - Ludum Dare 48</h2>
<div class="w-more">
<span class="w-ctegory">Composition, SFX Design </span> / <span class="w-date">27 Apr. 2021</span>
</div>
</div>
<div class="col-sm-4">
<div class="w-like">
<span class="ion-ios-plus-outline"></span>
</div>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="col-md-4">
<div class="work-box">
<a href="https://soundcloud.com/carl-powell-1/sets/voss-turbo-ost-1" target="_blank">
<div class="work-img">
<img src="img/work-4.jpg" alt="" class="img-fluid">
</div>
<div class="work-content">
<div class="row">
<div class="col-sm-8">
<h2 class="w-title">Voss Turbo - Maverick Software LLC</h2>
<div class="w-more">
<span class="w-ctegory">Composition</span> / <span class="w-date">2 Apr. 2022</span>
</div>
</div>
<div class="col-sm-4">
<div class="w-like">
<span class="ion-ios-plus-outline"></span>
</div>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="col-md-4">
<div class="work-box">
<a href="https://youtube.com/watch?v=jgdepo0K2Q4&si=EnSIkaIECMiOmarE" target="_blank">
<div class="work-img">
<img src="img/work-5.jpg" alt="" class="img-fluid">
</div>
<div class="work-content">
<div class="row">
<div class="col-sm-8">
<h2 class="w-title">Tower of Osiris - Ironmonger Games (In Development)</h2>
<div class="w-more">
<span class="w-ctegory"> SFX Design, Mixing, 3D Modeling </span> / <span class="w-date">21 Dec. 2022</span>
</div>
</div>
<div class="col-sm-4">
<div class="w-like">
<span class="ion-ios-plus-outline"></span>
</div>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="col-md-4">
<div class="work-box">
<!-- <a href=""> -->
<div class="work-img">
<img src="img/work-6.jpg" alt="" class="img-fluid">
</div>
<div class="work-content">
<div class="row">
<div class="col-sm-8">
<h2 class="w-title">Saving Grace - Ironmonger Games</h2>
<div class="w-more">
<span class="w-ctegory"> SFX Design </span> / <span class="w-date">9 Nov. 2020</span>
</div>
</div>
<div class="col-sm-4">
<div class="w-like">
<!-- <span class="ion-ios-plus-outline"></span> -->
</div>
</div>
</div>
</div>
<!-- </a> -->
</div>
</div>
</div>
</div>
</section>
<!--/ Section Completed Works End /-->
<!-- ``````````````````````````````````````````````````````````` ``````````````````````````````````````````````````````````````````````-->
<!--/ Section Blog Star /-->
<!-- <section id="blog" class="blog-mf sect-pt4 route">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="title-box text-center">
<h3 class="title-a">
Blog
</h3>
<p class="subtitle-a">
Lorem ipsum, dolor sit amet consectetur adipisicing elit.
</p>
<div class="line-mf"></div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="card card-blog">
<div class="card-img">
<a href="blog-single.html"><img src="img/post-1.jpg" alt="" class="img-fluid"></a>
</div>
<div class="card-body">
<div class="card-category-box">
<div class="card-category">
<h6 class="category">Travel</h6>
</div>
</div>
<h3 class="card-title"><a href="blog-single.html">See more ideas about Travel</a></h3>
<p class="card-description">
Proin eget tortor risus. Pellentesque in ipsum id orci porta dapibus. Praesent sapien massa, convallis
a pellentesque nec,
egestas non nisi.
</p>
</div>
<div class="card-footer">
<div class="post-author">
<a href="#">
<img src="img/testimonial-2.jpg" alt="" class="avatar rounded-circle">
<span class="author">Morgan Freeman</span>
</a>
</div>
<div class="post-date">
<span class="ion-ios-clock-outline"></span> 10 min
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card card-blog">
<div class="card-img">
<a href="blog-single.html"><img src="img/post-2.jpg" alt="" class="img-fluid"></a>
</div>
<div class="card-body">
<div class="card-category-box">
<div class="card-category">
<h6 class="category">Web Design</h6>
</div>
</div>
<h3 class="card-title"><a href="blog-single.html">See more ideas about Travel</a></h3>
<p class="card-description">
Proin eget tortor risus. Pellentesque in ipsum id orci porta dapibus. Praesent sapien massa, convallis
a pellentesque nec,
egestas non nisi.
</p>
</div>
<div class="card-footer">
<div class="post-author">
<a href="#">
<img src="img/testimonial-2.jpg" alt="" class="avatar rounded-circle">
<span class="author">Morgan Freeman</span>
</a>
</div>
<div class="post-date">
<span class="ion-ios-clock-outline"></span> 10 min
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card card-blog">
<div class="card-img">
<a href="blog-single.html"><img src="img/post-3.jpg" alt="" class="img-fluid"></a>
</div>
<div class="card-body">
<div class="card-category-box">
<div class="card-category">
<h6 class="category">Web Design</h6>
</div>
</div>
<h3 class="card-title"><a href="blog-single.html">See more ideas about Travel</a></h3>
<p class="card-description">
Proin eget tortor risus. Pellentesque in ipsum id orci porta dapibus. Praesent sapien massa, convallis
a pellentesque nec,
egestas non nisi.
</p>
</div>
<div class="card-footer">
<div class="post-author">
<a href="#">
<img src="img/testimonial-2.jpg" alt="" class="avatar rounded-circle">
<span class="author">Morgan Freeman</span>
</a>
</div>
<div class="post-date">
<span class="ion-ios-clock-outline"></span> 10 min
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!--/ Section Blog End /-->
<!--/ Section Contact-Footer Star /-->
<!-- <section class="paralax-mf footer-paralax bg-image sect-mt4 route" style="background-image: url(img/overlay-bg.jpg)">
<div class="overlay-mf"></div>
<div class="container"> -->
<!--
<div class="row">
<div class="col-sm-12">
<div class="contact-mf">
<div id="contact" class="box-shadow-full">
<div class="row">
<div class="col-md-6">
<div class="title-box-2">
<h5 class="title-left">
Quick Contact Form
</h5>
</div>
<div>
<form action="" method="post" role="form" class="contactForm">
<div id="sendmessage">Your message has been sent. Thank you!</div>
<div id="errormessage"></div>
<div class="row">
<div class="col-md-12 mb-3">
<div class="form-group">
<input type="text" name="name" class="form-control" id="name" placeholder="Your Name" data-rule="minlen:4" data-msg="Please enter at least 4 chars" />
<div class="validation"></div>
</div>
</div>
<div class="col-md-12 mb-3">
<div class="form-group">
<input type="email" class="form-control" name="email" id="email" placeholder="Your Email" data-rule="email" data-msg="Please enter a valid email" />
<div class="validation"></div>
</div>
</div>
<div class="col-md-12 mb-3">
<div class="form-group">
<input type="text" class="form-control" name="subject" id="subject" placeholder="Subject" data-rule="minlen:4" data-msg="Please enter at least 8 chars of subject" />
<div class="validation"></div>
</div>
</div>
<div class="col-md-12 mb-3">
<div class="form-group">
<textarea class="form-control" name="message" rows="5" data-rule="required" data-msg="Please write something for us" placeholder="Message"></textarea>
<div class="validation"></div>
</div>
</div>
<div class="col-md-12">
<button type="submit" class="button button-a button-big button-rouded">Send Message</button>
</div>
</div>
</form>
</div>
</div>
<div class="col-md-6">
<div class="title-box-2 pt-4 pt-md-0">
<h5 class="title-left">
Get in Touch
</h5>
</div>
<div class="more-info">
<p class="lead">
If you have an inquiry, feel free to send an email via the Quick Contact Form. I am looking forward to hearing from you.
</p>
<ul class="list-ico">
-->
<!-- <li><span class="ion-ios-location"></span> 329 WASHINGTON ST BOSTON, MA 02108</li>
<li><span class="ion-ios-telephone"></span> (617) 557-0089</li> -->
<!-- <li><span class="ion-email"></span> [email protected]</li>
</ul>
</div>
<div class="socials">
<ul>
<li><a href=""><span class="ico-circle"><i class="ion-social-facebook"></i></span></a></li>
<li><a href=""><span class="ico-circle"><i class="ion-social-instagram"></i></span></a></li>
<li><a href="https://twitter.com/AtezianStudio"><span class="ico-circle"><i class="ion-social-twitter"></i></span></a></li>
<li><a href=""><span class="ico-circle"><i class="ion-social-pinterest"></i></span></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
/ End Testimonials /-->
<!--/ SoundCloud Star /-->
<section class="paralax-mf footer-paralax bg-image sect-mt4 route" style="background-image: url(img/intro-bg.jpg)">
<div class="overlay-mf"></div>
<div class="container">
<div id="contact"></div>
<!-- <div class="title-box-2">
<h2 class="text-center">Atezian SoundCloud </h2>
</div> -->
<div class="row">
<!-- <div class="col-sm-12">
<div class="title-box text-center">
<h3 class="title-a">Atezian SoundCloud</h3>
<div class="line-mf"></div>
</div> -->
<div class="col-sm-12">
<!-- <div class="contact-mf"> -->
<!-- <div id="contact" class="box-shadow-full"> -->
<div class="box-shadow-full">
<div class="col-sm-12">
<div class="title-box text-center">
<h3 class="title-a">SoundCloud</h3>
<div class="line-mf"></div>
</div>
<!-- <div class="row"> -->
<!-- <div class="col-md-6"> -->
<!-- <div class="title-box-2"> -->
<!-- <h2 class="text-center">Atezian SoundCloud </h2> -->
<!-- <h5 class="title-middle">
Atezian SoundCloud
</h5> -->
<!-- </div> -->
<div>
<iframe width="100%" height="400" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/playlists/1550074957&color=%23ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe><div style="font-size: 12px; color: #cccccc;line-break: anywhere;word-break: normal;overflow: hidden;white-space: nowrap;text-overflow: ellipsis; font-family: Interstate,Lucida Grande,Lucida Sans Unicode,Lucida Sans,Garuda,Verdana,Tahoma,sans-serif;font-weight: 100;"><a href="https://soundcloud.com/carl-powell-1" title="Atezian" target="_blank" style="color: #cccccc; text-decoration: none;">Atezian</a> · <a href="https://soundcloud.com/carl-powell-1/sets/era-spheres-mmo-ost" title="Era Spheres MMO OST" target="_blank" style="color: #cccccc; text-decoration: none;">Era Spheres MMO OST</a></div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--/ SoundCloud End /-->
<!--/ Section Testimonials Star /-->
<div id="testimonials"></div>
<div class="testimonials paralax-mf bg-image" style="background-image: url(img/intro-bg.jpg)">
<div class="overlay-mf"></div>
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="title-box text-center">
<h3 class="title-a">
Testimonials
</h3>
<div class="line-mf"></div>
</div>
<div class="col-md-12">
<div id="testimonial-mf" class="owl-carousel owl-theme">
<!-- Rhys testimonial -->
<div class="testimonial-box">
<div class="author-test">
<img src="img/Rhys van der Waerden_300x300.jpg" alt="" class="rounded-circle b-shadow-a">
<span class="author">Rhys van der Waerden - Director, Effort Star</span>
</div>
<div class="content-test">
<p class="description lead">
"We were extremely impressed with Carl's ability to evoke a theme, understand gameplay requirements, and to work with our team on a tight timeframe. I would happily refer him to anyone who needs a reliable and talented composer and sound designer for their game. Thank you, Carl!"
</p>
<span class="comit"><i class="fa fa-quote-right"></i></span>
</div>
</div>
<!-- Florian testimonial -->
<div class="testimonial-box">
<div class="author-test">
<img src="img/Florian Hermet_300x300.jpg" alt="" class="rounded-circle b-shadow-a">
<span class="author">Florian Hermet - Founder & CEO, Era Spheres</span>
</div>
<div class="content-test">
<p class="description lead">
"If I work on another game later on, you're my man for the OST."
</p>
<span class="comit"><i class="fa fa-quote-right"></i></span>
</div>
</div>
<!-- <div class="testimonial-box">
<div class="author-test">
<img src="img/testimonial-4.jpg" alt="" class="rounded-circle b-shadow-a">
<span class="author">Marta Socrate</span>
</div>
<div class="content-test">
<p class="description lead">
Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Lorem ipsum dolor sit amet,
consectetur adipiscing elit.
</p>
<span class="comit"><i class="fa fa-quote-right"></i></span>
</div>