-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1099 lines (1065 loc) · 76.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="Armstrong & Werth oboe factoty" content="Here is you can finde beutiful musical instrument's - oboe. Also we sold English Horn">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Armstrong & Werth oboe</title>
<!-- favicon -->
<link rel="icon" type="image/x-icon" href="./img/favicon.ico">
<!-- commissioner font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Commissioner:[email protected]&display=swap" rel="stylesheet">
<!-- playfair display font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Commissioner:[email protected]&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="./gallary/gallery.css">
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-QF96HR0B2S"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-QF96HR0B2S');
</script>
<body>
<section class="bgblack welcome-page">
<header class="full-screen"><!-- fullscrean for making menu -->
<div class="header-logo"><a href="#top"><img src="img/logo-circle-white.svg" alt="Logotype"></a></div>
<button class="header-toggle"><img loading="lazy" src="img/mobile/menu-toggle.svg" alt="menu"></button>
</header>
<nav>
<ul>
<li><a class="menu-target-link" href="#founder">about us</a></li>
<li><a class="menu-target-link" href="#products">instruments</a></li>
<li><a class="menu-target-link" href="#partners">retailers</a></li>
<li><a class="menu-target-link" href="#contacts">contacts</a></li>
</ul>
<div onclick="openModal('feedbackForm')" class="header-button"><button>submit</button></div>
</nav>
<div>
<div class="welcome-mobile welcome-title-animation"><img loading="lazy" class="welcome-title-animation-target" src="img/mobile/welcome.svg" alt="title: Welcome to Armstrong Werth"></div>
<div class="welcome-desctop">
<div class="welcome-title-animation"><img loading="lazy" class="welcome-title-animation-target" src="img/desctop/welcome.svg" alt="part of title: welcome to"></div>
<div class="welcome-title-animation"><img loading="lazy" class="welcome-title-animation-target" src="img/desctop/armstrong.svg" alt="part of title: armstrong"></div>
<div class="welcome-title-animation"><img loading="lazy" class="welcome-title-animation-target" src="img/desctop/werth.svg" alt="part of title: werth"></div>
</div>
</div>
<div class="welcome-photo">
<img loading="auto" class="welcome-photo-animation" src="img/welcome-photo.jpg" alt="oboes" >
</div>
<div class="welcome-cta">
<div>
<p class="welcome-p-animation">Experience the beauty of music with our exceptional collection of oboes</p>
</div>
<div><button onclick="openModal('feedbackForm')" class="welcome-button-animation">contact us</button></div>
</div>
<div class="main-overlay">
<svg class="main-overlay-svg" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" >
<path></path>
</svg>
</div>
</section>
<div id="modal-container" class="modal-white"><!-- two oposit condition modal-black/modal-white -->
<button class="modal-cross"><img loading="lazy" src="img/cross.svg" alt="X"></button>
<div style="position: relative; height: max-content;">
<div id="regal-oboe" class="instrument-card">
<div class="instrument-photos">
<img src="" alt="Regal Oboe">
<img src="" alt="Regal Oboe">
<img src="" alt="Regal Oboe">
<img src="" alt="Regal Oboe">
<img src="" alt="Regal Oboe">
<div class="photo-pagination">
<button class="paginator-left" title="previous image">
<svg alt="left arrow" data-arrow="true" viewBox="0 0 18 14" xmlns="http://www.w3.org/2000/svg">
<path d="M17.5 6.58423L3.59264 6.58423C4.08586 6.29925 4.54005 5.94683 4.94226 5.53587C5.52542 4.94001 5.98789 4.23275 6.30339 3.45451C6.61887 2.67627 6.78123 1.84224 6.78123 0.999999L6.78123 0.899999L6.68123 0.899999L6.06311 0.899999L5.96311 0.899999L5.96311 0.999999C5.96311 1.73362 5.82168 2.46001 5.54697 3.13768C5.27225 3.81534 4.86964 4.43094 4.36224 4.94938C3.85484 5.46782 3.25259 5.87896 2.58993 6.15941C1.92728 6.43987 1.21712 6.58419 0.500001 6.58419L0.4 6.58419L0.4 6.68419L0.4 7.31576L0.4 7.41576L0.5 7.41576C1.21712 7.41576 1.92727 7.56013 2.58993 7.84058C3.25259 8.12104 3.85484 8.53217 4.36224 9.05062C4.86964 9.56906 5.27225 10.1847 5.54696 10.8623C5.82168 11.54 5.9631 12.2664 5.9631 13L5.9631 13.1L6.0631 13.1L6.68123 13.1L6.78123 13.1L6.78123 13C6.78123 12.1578 6.61887 11.3237 6.30338 10.5455C5.98789 9.76725 5.52542 9.05999 4.94226 8.46413C4.54006 8.05318 4.08589 7.70078 3.59269 7.4158L17.5 7.4158L17.6 7.4158L17.6 7.3158L17.6 6.68423L17.6 6.58423L17.5 6.58423Z" stroke-width="0.2"/>
</svg>
</button>
<button class="paginator-right" title="next image">
<svg alt="right arrow" data-arrow="true" viewBox="0 0 18 14" xmlns="http://www.w3.org/2000/svg">
<path d="M17.5 6.58423L3.59264 6.58423C4.08586 6.29925 4.54005 5.94683 4.94226 5.53587C5.52542 4.94001 5.98789 4.23275 6.30339 3.45451C6.61887 2.67627 6.78123 1.84224 6.78123 0.999999L6.78123 0.899999L6.68123 0.899999L6.06311 0.899999L5.96311 0.899999L5.96311 0.999999C5.96311 1.73362 5.82168 2.46001 5.54697 3.13768C5.27225 3.81534 4.86964 4.43094 4.36224 4.94938C3.85484 5.46782 3.25259 5.87896 2.58993 6.15941C1.92728 6.43987 1.21712 6.58419 0.500001 6.58419L0.4 6.58419L0.4 6.68419L0.4 7.31576L0.4 7.41576L0.5 7.41576C1.21712 7.41576 1.92727 7.56013 2.58993 7.84058C3.25259 8.12104 3.85484 8.53217 4.36224 9.05062C4.86964 9.56906 5.27225 10.1847 5.54696 10.8623C5.82168 11.54 5.9631 12.2664 5.9631 13L5.9631 13.1L6.0631 13.1L6.68123 13.1L6.78123 13.1L6.78123 13C6.78123 12.1578 6.61887 11.3237 6.30338 10.5455C5.98789 9.76725 5.52542 9.05999 4.94226 8.46413C4.54006 8.05318 4.08589 7.70078 3.59269 7.4158L17.5 7.4158L17.6 7.4158L17.6 7.3158L17.6 6.68423L17.6 6.58423L17.5 6.58423Z" stroke-width="0.2"/>
</svg>
</button>
</div>
</div>
<div class="instrument-name">Regal Oboe</div>
<div class="instrument-discription ">
Indulge in the unparalleled sophistication of our premium professional model, the Continental-style AW Regal Oboe.
Meticulously crafted to unveil a rich, enveloping sound, this instrument showcases a seamlessly homogeneous timbre
across its entire range.
Ensuring unwavering pitch stability without compromising flexibility or tonal color, the AW Regal Oboe stands as a
pinnacle in our commitment to delivering high-quality instruments.
Elevate your musical journey with the perfect companion, designed for musicians at the zenith of their careers.
</div>
<div><h4>Explore the features of the AW Regal oboe:</h4></div>
<div class="features-list">
<div class="features-list-f-smoll">
<div>
<div class="marker"></div>
<div>Crafted from highly seasoned African Blackwood for exceptional resonance.</div>
</div>
<div>
<div class="marker"></div>
<div>Enhanced durability with metal tenon socket linings and tenon protectors.</div>
</div>
<div>
<div class="marker"></div>
<div>Undercut tone holes for precise and responsive playing.</div>
</div>
<div>
<div class="marker"></div>
<div>Full Gillet Conservatory system, featuring a 3rd octave key with a double vent for low B and low Bb.</div>
</div>
<div>
<div class="marker"></div>
<div>Sturdy nickel silver keys with thick silver plating.</div>
</div>
</div>
<div class="features-list-s-smoll">
<div>
<div class="marker"></div>
<div>Traditional French tuning scale for authentic musical expression.</div>
</div>
<div>
<div class="marker"></div>
<div>Semi-automatic configuration for versatile playing styles.</div>
</div>
<div>
<div class="marker"></div>
<div>Important Note: All AW oboes share the same specially designed and carefully constructed bore, ensuring
acoustically superior sound, response, and stability.</div>
</div>
<div>
<div class="marker"></div>
<div>Enjoy peace of mind with a 1-year warranty.</div>
</div>
</div>
</div>
</div>
<div id="imperial-oboe" class="instrument-card">
<div class="instrument-photos">
<img src="" alt="Imperial Oboe">
<img src="" alt="Imperial Oboe">
<img src="" alt="Imperial Oboe">
<img src="" alt="Imperial Oboe">
<img src="" alt="Imperial Oboe">
<div class="photo-pagination">
<button class="paginator-left" title="previous image">
<svg alt="left arrow" data-arrow="true" viewBox="0 0 18 14" xmlns="http://www.w3.org/2000/svg">
<path d="M17.5 6.58423L3.59264 6.58423C4.08586 6.29925 4.54005 5.94683 4.94226 5.53587C5.52542 4.94001 5.98789 4.23275 6.30339 3.45451C6.61887 2.67627 6.78123 1.84224 6.78123 0.999999L6.78123 0.899999L6.68123 0.899999L6.06311 0.899999L5.96311 0.899999L5.96311 0.999999C5.96311 1.73362 5.82168 2.46001 5.54697 3.13768C5.27225 3.81534 4.86964 4.43094 4.36224 4.94938C3.85484 5.46782 3.25259 5.87896 2.58993 6.15941C1.92728 6.43987 1.21712 6.58419 0.500001 6.58419L0.4 6.58419L0.4 6.68419L0.4 7.31576L0.4 7.41576L0.5 7.41576C1.21712 7.41576 1.92727 7.56013 2.58993 7.84058C3.25259 8.12104 3.85484 8.53217 4.36224 9.05062C4.86964 9.56906 5.27225 10.1847 5.54696 10.8623C5.82168 11.54 5.9631 12.2664 5.9631 13L5.9631 13.1L6.0631 13.1L6.68123 13.1L6.78123 13.1L6.78123 13C6.78123 12.1578 6.61887 11.3237 6.30338 10.5455C5.98789 9.76725 5.52542 9.05999 4.94226 8.46413C4.54006 8.05318 4.08589 7.70078 3.59269 7.4158L17.5 7.4158L17.6 7.4158L17.6 7.3158L17.6 6.68423L17.6 6.58423L17.5 6.58423Z" stroke-width="0.2"/>
<!-- fill="#121212" stroke="#121212" -->
</svg>
</button>
<button class="paginator-right" title="next image">
<svg alt="right arrow" data-arrow="true" viewBox="0 0 18 14" xmlns="http://www.w3.org/2000/svg">
<path d="M17.5 6.58423L3.59264 6.58423C4.08586 6.29925 4.54005 5.94683 4.94226 5.53587C5.52542 4.94001 5.98789 4.23275 6.30339 3.45451C6.61887 2.67627 6.78123 1.84224 6.78123 0.999999L6.78123 0.899999L6.68123 0.899999L6.06311 0.899999L5.96311 0.899999L5.96311 0.999999C5.96311 1.73362 5.82168 2.46001 5.54697 3.13768C5.27225 3.81534 4.86964 4.43094 4.36224 4.94938C3.85484 5.46782 3.25259 5.87896 2.58993 6.15941C1.92728 6.43987 1.21712 6.58419 0.500001 6.58419L0.4 6.58419L0.4 6.68419L0.4 7.31576L0.4 7.41576L0.5 7.41576C1.21712 7.41576 1.92727 7.56013 2.58993 7.84058C3.25259 8.12104 3.85484 8.53217 4.36224 9.05062C4.86964 9.56906 5.27225 10.1847 5.54696 10.8623C5.82168 11.54 5.9631 12.2664 5.9631 13L5.9631 13.1L6.0631 13.1L6.68123 13.1L6.78123 13.1L6.78123 13C6.78123 12.1578 6.61887 11.3237 6.30338 10.5455C5.98789 9.76725 5.52542 9.05999 4.94226 8.46413C4.54006 8.05318 4.08589 7.70078 3.59269 7.4158L17.5 7.4158L17.6 7.4158L17.6 7.3158L17.6 6.68423L17.6 6.58423L17.5 6.58423Z" stroke-width="0.2"/>
<!-- fill="#121212" stroke="#121212" -->
</svg>
</button>
</div>
</div>
<div class="instrument-name">Imperial Oboe</div>
<div class="instrument-discription">
Introducing the Imperial Oboe, a traditional instrument designed for musicians who value clarity of expression.
With its tone holes design inspired by traditional instruments of the 1960s and 1970s, the Imperial oboe serves as an
artistic compass for musicians in Cleveland, London, Munich, and beyond.
Renowned for its exceptional quality, the Imperial stands as our standard professional model, embodying the essence of
tradition for musicians worldwide.
</div>
<div><h4>Discover the highlights of the AW Imperial oboe:</h4></div>
<div class="features-list">
<div class="features-list-f-smoll">
<div>
<div class="marker"></div>
<div>Immerse yourself in the rich tones of the highly seasoned African Blackwood body.</div>
</div>
<div>
<div class="marker"></div>
<div>Increased durability with metal tenon socket linings and tenon protectors.</div>
</div>
<div>
<div class="marker"></div>
<div>Experience precise playing with undercut tone holes following a traditional setup.</div>
</div>
<div>
<div class="marker"></div>
<div>Full Gillet Conservatory system featuring a 3rd octave key and the standard low Bb vent key.</div>
</div>
<div>
<div class="marker"></div>
<div>Sturdy nickel silver keys with thick silver plating for a reliable performance.</div>
</div>
</div>
<div class="features-list-s-smoll">
<div>
<div class="marker"></div>
<div>Embrace the traditional French tuning scale for authentic musical expression.</div>
</div>
<div>
<div class="marker"></div>
<div>Choose your playing style with the semi-automatic configuration.</div>
</div>
<div>
<div class="marker"></div>
<div>Important Note: All AW oboes share the same specially designed and carefully constructed bore, ensuring
acoustically superior sound, response, and stability.</div>
</div>
<div>
<div class="marker"></div>
<div>Enjoy worry-free playing with a 1-year warranty.</div>
</div>
</div>
</div>
</div>
<div id="pan-oboe" class="instrument-card">
<div class="instrument-photos">
<img src="" alt="Pan Oboe">
<img src="" alt="Pan Oboe">
<img src="" alt="Pan Oboe">
<div class="photo-pagination">
<button class="paginator-left" title="previous image">
<svg alt="left arrow" data-arrow="true" viewBox="0 0 18 14" xmlns="http://www.w3.org/2000/svg">
<path d="M17.5 6.58423L3.59264 6.58423C4.08586 6.29925 4.54005 5.94683 4.94226 5.53587C5.52542 4.94001 5.98789 4.23275 6.30339 3.45451C6.61887 2.67627 6.78123 1.84224 6.78123 0.999999L6.78123 0.899999L6.68123 0.899999L6.06311 0.899999L5.96311 0.899999L5.96311 0.999999C5.96311 1.73362 5.82168 2.46001 5.54697 3.13768C5.27225 3.81534 4.86964 4.43094 4.36224 4.94938C3.85484 5.46782 3.25259 5.87896 2.58993 6.15941C1.92728 6.43987 1.21712 6.58419 0.500001 6.58419L0.4 6.58419L0.4 6.68419L0.4 7.31576L0.4 7.41576L0.5 7.41576C1.21712 7.41576 1.92727 7.56013 2.58993 7.84058C3.25259 8.12104 3.85484 8.53217 4.36224 9.05062C4.86964 9.56906 5.27225 10.1847 5.54696 10.8623C5.82168 11.54 5.9631 12.2664 5.9631 13L5.9631 13.1L6.0631 13.1L6.68123 13.1L6.78123 13.1L6.78123 13C6.78123 12.1578 6.61887 11.3237 6.30338 10.5455C5.98789 9.76725 5.52542 9.05999 4.94226 8.46413C4.54006 8.05318 4.08589 7.70078 3.59269 7.4158L17.5 7.4158L17.6 7.4158L17.6 7.3158L17.6 6.68423L17.6 6.58423L17.5 6.58423Z" stroke-width="0.2"/>
<!-- fill="#121212" stroke="#121212" -->
</svg>
</button>
<button class="paginator-right" title="next image">
<svg alt="right arrow" data-arrow="true" viewBox="0 0 18 14" xmlns="http://www.w3.org/2000/svg">
<path d="M17.5 6.58423L3.59264 6.58423C4.08586 6.29925 4.54005 5.94683 4.94226 5.53587C5.52542 4.94001 5.98789 4.23275 6.30339 3.45451C6.61887 2.67627 6.78123 1.84224 6.78123 0.999999L6.78123 0.899999L6.68123 0.899999L6.06311 0.899999L5.96311 0.899999L5.96311 0.999999C5.96311 1.73362 5.82168 2.46001 5.54697 3.13768C5.27225 3.81534 4.86964 4.43094 4.36224 4.94938C3.85484 5.46782 3.25259 5.87896 2.58993 6.15941C1.92728 6.43987 1.21712 6.58419 0.500001 6.58419L0.4 6.58419L0.4 6.68419L0.4 7.31576L0.4 7.41576L0.5 7.41576C1.21712 7.41576 1.92727 7.56013 2.58993 7.84058C3.25259 8.12104 3.85484 8.53217 4.36224 9.05062C4.86964 9.56906 5.27225 10.1847 5.54696 10.8623C5.82168 11.54 5.9631 12.2664 5.9631 13L5.9631 13.1L6.0631 13.1L6.68123 13.1L6.78123 13.1L6.78123 13C6.78123 12.1578 6.61887 11.3237 6.30338 10.5455C5.98789 9.76725 5.52542 9.05999 4.94226 8.46413C4.54006 8.05318 4.08589 7.70078 3.59269 7.4158L17.5 7.4158L17.6 7.4158L17.6 7.3158L17.6 6.68423L17.6 6.58423L17.5 6.58423Z" stroke-width="0.2"/>
<!-- fill="#121212" stroke="#121212" -->
</svg>
</button>
</div>
</div>
<div class="instrument-name">Pan Oboe</div>
<div class="instrument-discription">
Meet the Pan, our reigning bestseller that has captured hearts from the Australian outback to the Siberian wilderness.
With a robust ABS material body and a full conservatory mechanism, the Pan is the go-to choice for oboists worldwide,
offering trouble-free service and winning the favor of the crowd. The AW Pan oboe stands as a testament to our
dedication to sound quality and playability,
fostering creativity and cultivating a profound love for music.
</div>
<div><h4>Explore the standout features of the AW Pan oboe:</h4></div>
<div class="features-list">
<div class="features-list-f-smoll">
<div>
<div class="marker"></div>
<div>Effortless playing with a lightweight and trouble-free ABS body.</div>
</div>
<div>
<div class="marker"></div>
<div>Precision in every note with undercut tone holes.</div>
</div>
<div>
<div class="marker"></div>
<div>Comprehensive playing range with the Full Gillet Conservatory system and 3rd octave key.</div>
</div>
<div>
<div class="marker"></div>
<div>Durability meets performance with robust nickel silver keys and thick silver plating.</div>
</div>
<div>
<div class="marker"></div>
<div>Achieve authentic musical expression with the traditional French tuning scale.</div>
</div>
</div>
<div class="features-list-s-smoll">
<div>
<div class="marker"></div>
<div>Adapt to your playing style with the semi-automatic configuration.</div>
</div>
<div>
<div class="marker"></div>
<div>Reduced weight for added convenience.</div>
</div>
<div>
<div class="marker"></div>
<div>Important Note: All AW oboes share the same specially designed and carefully constructed bore, ensuring
acoustically superior sound, response, and stability.</div>
</div>
<div>
<div class="marker"></div>
<div>Enjoy peace of mind with a 1-year warranty.</div>
</div>
</div>
</div>
</div>
<div id="rocket-oboe" class="instrument-card">
<div class="instrument-photos">
<img src="" alt="Rocket Oboe">
<img src="" alt="Rocket Oboe">
<img src="" alt="Rocket Oboe">
<div class="photo-pagination">
<button class="paginator-left" title="previous image">
<svg alt="left arrow" data-arrow="true" viewBox="0 0 18 14" xmlns="http://www.w3.org/2000/svg">
<path d="M17.5 6.58423L3.59264 6.58423C4.08586 6.29925 4.54005 5.94683 4.94226 5.53587C5.52542 4.94001 5.98789 4.23275 6.30339 3.45451C6.61887 2.67627 6.78123 1.84224 6.78123 0.999999L6.78123 0.899999L6.68123 0.899999L6.06311 0.899999L5.96311 0.899999L5.96311 0.999999C5.96311 1.73362 5.82168 2.46001 5.54697 3.13768C5.27225 3.81534 4.86964 4.43094 4.36224 4.94938C3.85484 5.46782 3.25259 5.87896 2.58993 6.15941C1.92728 6.43987 1.21712 6.58419 0.500001 6.58419L0.4 6.58419L0.4 6.68419L0.4 7.31576L0.4 7.41576L0.5 7.41576C1.21712 7.41576 1.92727 7.56013 2.58993 7.84058C3.25259 8.12104 3.85484 8.53217 4.36224 9.05062C4.86964 9.56906 5.27225 10.1847 5.54696 10.8623C5.82168 11.54 5.9631 12.2664 5.9631 13L5.9631 13.1L6.0631 13.1L6.68123 13.1L6.78123 13.1L6.78123 13C6.78123 12.1578 6.61887 11.3237 6.30338 10.5455C5.98789 9.76725 5.52542 9.05999 4.94226 8.46413C4.54006 8.05318 4.08589 7.70078 3.59269 7.4158L17.5 7.4158L17.6 7.4158L17.6 7.3158L17.6 6.68423L17.6 6.58423L17.5 6.58423Z" stroke-width="0.2"/>
<!-- fill="#121212" stroke="#121212" -->
</svg>
</button>
<button class="paginator-right" title="next image">
<svg alt="right arrow" data-arrow="true" viewBox="0 0 18 14" xmlns="http://www.w3.org/2000/svg">
<path d="M17.5 6.58423L3.59264 6.58423C4.08586 6.29925 4.54005 5.94683 4.94226 5.53587C5.52542 4.94001 5.98789 4.23275 6.30339 3.45451C6.61887 2.67627 6.78123 1.84224 6.78123 0.999999L6.78123 0.899999L6.68123 0.899999L6.06311 0.899999L5.96311 0.899999L5.96311 0.999999C5.96311 1.73362 5.82168 2.46001 5.54697 3.13768C5.27225 3.81534 4.86964 4.43094 4.36224 4.94938C3.85484 5.46782 3.25259 5.87896 2.58993 6.15941C1.92728 6.43987 1.21712 6.58419 0.500001 6.58419L0.4 6.58419L0.4 6.68419L0.4 7.31576L0.4 7.41576L0.5 7.41576C1.21712 7.41576 1.92727 7.56013 2.58993 7.84058C3.25259 8.12104 3.85484 8.53217 4.36224 9.05062C4.86964 9.56906 5.27225 10.1847 5.54696 10.8623C5.82168 11.54 5.9631 12.2664 5.9631 13L5.9631 13.1L6.0631 13.1L6.68123 13.1L6.78123 13.1L6.78123 13C6.78123 12.1578 6.61887 11.3237 6.30338 10.5455C5.98789 9.76725 5.52542 9.05999 4.94226 8.46413C4.54006 8.05318 4.08589 7.70078 3.59269 7.4158L17.5 7.4158L17.6 7.4158L17.6 7.3158L17.6 6.68423L17.6 6.58423L17.5 6.58423Z" stroke-width="0.2"/>
<!-- fill="#121212" stroke="#121212" -->
</svg>
</button>
</div>
</div>
<div class="instrument-name">Rocket Oboe</div>
<div class="instrument-discription">
Meet the Rocket and Rocket "plus" - your lightweight entry into the world of oboe playing, tailor-made for budding
musicians.
Crafted with a lightweight ABS body, short reach keywork, and a simplified mechanism, the Rocket series offers
simplicity and brilliance for beginners.
It's the ideal choice for young players, providing convenience and ease on their musical journey.
Whether your child is exploring the oboe for the first time or seeking a hassle-free instrument, the Rocket series
ensures an enjoyable and accessible introduction to the world of music.
</div>
<div><h4>Explore the standout features of the AW Rocket oboes:</h4></div>
<div class="features-list">
<div class="features-list-f-smoll">
<div>
<div class="marker"></div>
<div>Effortless playing with a lightweight and trouble-free ABS body.</div>
</div>
<div>
<div class="marker"></div>
<div>Precision in every note with undercut tone holes.</div>
</div>
<div>
<div class="marker"></div>
<div>Ideal for beginners with short reach keywork and a simplified mechanism.</div>
</div>
<div>
<div class="marker"></div>
<div>Durability meets performance with robust nickel silver keys and thick silver plating.</div>
</div>
<div>
<div class="marker"></div>
<div>Achieve authentic musical expression with the traditional French tuning scale.</div>
</div>
</div>
<div class="features-list-s-smoll">
<div>
<div class="marker"></div>
<div>Adapt to your playing style with the semi-automatic configuration.</div>
</div>
<div>
<div class="marker"></div>
<div>Reduced weight for added convenience.</div>
</div>
<div>
<div class="marker"></div>
<div>Important Note: All AW oboes share the same specially designed and carefully constructed bore, ensuring
acoustically superior sound, response, and stability.</div>
</div>
<div>
<div class="marker"></div>
<div>Enjoy peace of mind with a 1-year warranty.</div>
</div>
</div>
</div>
</div>
<div id="english-horn" class="instrument-card">
<div class="instrument-photos">
<img src="" alt="English Horn">
<img src="" alt="English Horn">
<img src="" alt="English Horn">
<img src="" alt="English Horn">
<img src="" alt="English Horn">
<div class="photo-pagination">
<button class="paginator-left" title="previous image">
<svg alt="left arrow" data-arrow="true" viewBox="0 0 18 14" xmlns="http://www.w3.org/2000/svg">
<path d="M17.5 6.58423L3.59264 6.58423C4.08586 6.29925 4.54005 5.94683 4.94226 5.53587C5.52542 4.94001 5.98789 4.23275 6.30339 3.45451C6.61887 2.67627 6.78123 1.84224 6.78123 0.999999L6.78123 0.899999L6.68123 0.899999L6.06311 0.899999L5.96311 0.899999L5.96311 0.999999C5.96311 1.73362 5.82168 2.46001 5.54697 3.13768C5.27225 3.81534 4.86964 4.43094 4.36224 4.94938C3.85484 5.46782 3.25259 5.87896 2.58993 6.15941C1.92728 6.43987 1.21712 6.58419 0.500001 6.58419L0.4 6.58419L0.4 6.68419L0.4 7.31576L0.4 7.41576L0.5 7.41576C1.21712 7.41576 1.92727 7.56013 2.58993 7.84058C3.25259 8.12104 3.85484 8.53217 4.36224 9.05062C4.86964 9.56906 5.27225 10.1847 5.54696 10.8623C5.82168 11.54 5.9631 12.2664 5.9631 13L5.9631 13.1L6.0631 13.1L6.68123 13.1L6.78123 13.1L6.78123 13C6.78123 12.1578 6.61887 11.3237 6.30338 10.5455C5.98789 9.76725 5.52542 9.05999 4.94226 8.46413C4.54006 8.05318 4.08589 7.70078 3.59269 7.4158L17.5 7.4158L17.6 7.4158L17.6 7.3158L17.6 6.68423L17.6 6.58423L17.5 6.58423Z" stroke-width="0.2"/>
<!-- fill="#121212" stroke="#121212" -->
</svg>
</button>
<button class="paginator-right" title="next image">
<svg alt="right arrow" data-arrow="true" viewBox="0 0 18 14" xmlns="http://www.w3.org/2000/svg">
<path d="M17.5 6.58423L3.59264 6.58423C4.08586 6.29925 4.54005 5.94683 4.94226 5.53587C5.52542 4.94001 5.98789 4.23275 6.30339 3.45451C6.61887 2.67627 6.78123 1.84224 6.78123 0.999999L6.78123 0.899999L6.68123 0.899999L6.06311 0.899999L5.96311 0.899999L5.96311 0.999999C5.96311 1.73362 5.82168 2.46001 5.54697 3.13768C5.27225 3.81534 4.86964 4.43094 4.36224 4.94938C3.85484 5.46782 3.25259 5.87896 2.58993 6.15941C1.92728 6.43987 1.21712 6.58419 0.500001 6.58419L0.4 6.58419L0.4 6.68419L0.4 7.31576L0.4 7.41576L0.5 7.41576C1.21712 7.41576 1.92727 7.56013 2.58993 7.84058C3.25259 8.12104 3.85484 8.53217 4.36224 9.05062C4.86964 9.56906 5.27225 10.1847 5.54696 10.8623C5.82168 11.54 5.9631 12.2664 5.9631 13L5.9631 13.1L6.0631 13.1L6.68123 13.1L6.78123 13.1L6.78123 13C6.78123 12.1578 6.61887 11.3237 6.30338 10.5455C5.98789 9.76725 5.52542 9.05999 4.94226 8.46413C4.54006 8.05318 4.08589 7.70078 3.59269 7.4158L17.5 7.4158L17.6 7.4158L17.6 7.3158L17.6 6.68423L17.6 6.58423L17.5 6.58423Z" stroke-width="0.2"/>
<!-- fill="#121212" stroke="#121212" -->
</svg>
</button>
</div>
</div>
<div class="instrument-name">English Horn</div>
<div class="instrument-discription">
Welcome to the world of the AW English Horn - a premium instrument designed for professionals seeking a rich and stable
sound with harmonics.
If you're fond of the oboe and looking to explore its closest relative, or perhaps expanding your skills to double reed
instruments,
the English Horn is your next musical adventure. Experience the depth and versatility of the AW English Horn,
crafted for musicians ready to explore new horizons in their musical journey.
</div>
<div><h4>Uncover the exceptional features of the AW English Horn: </h4></div>
<div class="features-list">
<div class="features-list-f-smoll">
<div>
<div class="marker"></div>
<div>Immerse yourself in a rich and stable sound with the highly seasoned African Blackwood body.</div>
</div>
<div>
<div class="marker"></div>
<div>Enhance durability with metal tenon socket linings and tenon protectors.</div>
</div>
<div>
<div class="marker"></div>
<div>Achieve precision in every note with undercut tone holes.</div>
</div>
<div>
<div class="marker"></div>
<div>Experience a full range of expressive possibilities with the Gillet Conservatory system and 3rd octave key.</div>
</div>
</div>
<div class="features-list-s-smoll">
<div>
<div class="marker"></div>
<div>Enjoy a robust and reliable instrument with nickel silver keys and thick silver plating.</div>
</div>
<div>
<div class="marker"></div>
<div>Maintain authenticity in your playing with the traditional French tuning scale.</div>
</div>
<div>
<div class="marker"></div>
<div>Adapt to your style effortlessly with the semi-automatic configuration.</div>
</div>
<div>
<div class="marker"></div>
<div>Secure your investment with a 1-year warranty.</div>
</div>
</div>
</div>
</div>
<div class="instrument-nav">
<button class="instrument-arrow previous-card" title="previous instrument's card">
<svg data-arrow="true" width="18" height="14" viewBox="0 0 18 14" xmlns="http://www.w3.org/2000/svg">
<path
d="M17.5 6.58423L3.59264 6.58423C4.08586 6.29925 4.54005 5.94683 4.94226 5.53587C5.52542 4.94001 5.98789 4.23275 6.30339 3.45451C6.61887 2.67627 6.78123 1.84224 6.78123 0.999999L6.78123 0.899999L6.68123 0.899999L6.06311 0.899999L5.96311 0.899999L5.96311 0.999999C5.96311 1.73362 5.82168 2.46001 5.54697 3.13768C5.27225 3.81534 4.86964 4.43094 4.36224 4.94938C3.85484 5.46782 3.25259 5.87896 2.58993 6.15941C1.92728 6.43987 1.21712 6.58419 0.500001 6.58419L0.4 6.58419L0.4 6.68419L0.4 7.31576L0.4 7.41576L0.5 7.41576C1.21712 7.41576 1.92727 7.56013 2.58993 7.84058C3.25259 8.12104 3.85484 8.53217 4.36224 9.05062C4.86964 9.56906 5.27225 10.1847 5.54696 10.8623C5.82168 11.54 5.9631 12.2664 5.9631 13L5.9631 13.1L6.0631 13.1L6.68123 13.1L6.78123 13.1L6.78123 13C6.78123 12.1578 6.61887 11.3237 6.30338 10.5455C5.98789 9.76725 5.52542 9.05999 4.94226 8.46413C4.54006 8.05318 4.08589 7.70078 3.59269 7.4158L17.5 7.4158L17.6 7.4158L17.6 7.3158L17.6 6.68423L17.6 6.58423L17.5 6.58423Z"
stroke-width="0.2" />
</svg>
</button>
<button class="next-card">next</button>
<!-- instrumetn -->
</div>
</div>
</div>
<div id="data-sent">
<div><img src="img/data-sent.svg" alt=""></div>
<p>Our manager will contact you soon.</p>
</div>
<main>
<section id="about">
<div class="main-overlay-trigger">
<div class="about-mobile title-animation-body"><img loading="lazy" class="title-animation-target" src="img/mobile/about.svg" alt="Enjoy the classic"></div>
<div class="about-desctop title-animation-body"><img loading="lazy" class="title-animation-target" src="img/desctop/about.svg" alt="Enjoy the classic"></div>
</div>
<div class="newspaper-style">
<h4>Embark on a harmonious journey: discover the symphony behind our craft, where musical mastery meets timeless
artistry</h4>
</div>
<div class="newspaper-style">
<p>We are a team of seasoned experts with years of experience in crafting outstanding musical instruments. Our CEO,
dedicating a lifetime to music, leads our team, ensuring the highest standards of quality and reliability. We
create instruments that compete with the best, demonstrating the experience is not just a matter of years.</p>
</div>
<div class="about-numbers-grid">
<div class="square about-numbers">
<div>21</div>
<div>Ears in the industry</div>
</div>
<div class="square about-numbers">
<div>14</div>
<div>Distributors worldwide</div>
</div>
<div class="rectangle about-numbers">
<div>>500</div>
<div>Instruments sold per year</div>
</div>
</div>
</section>
<section id="products">
<div class="newspaper-style">
<div class="products-mobile title-animation-body"><img loading="lazy" class="title-animation-target" src="img/mobile/products.svg" alt="Discover Our Products"></div>
<div class="products-desctop title-animation-body"><img loading="lazy" class="title-animation-target" src="img/mobile/products.svg" alt="Discover Our Products"></div>
</div>
<div class="newspaper-style">
<p class="opacity-paragraph">Our instruments are the result of mastery, attention to detail, and a deep understanding of a musician's needs</p>
</div>
<div class="catalog-template-big">
<div class="catalog-main-photo">
<div><img src="" alt="catalog main photo"></div>
</div>
<div class="bordered-list catalog-template">
<div class="catalog-card">
<div>
<div class="catalog-numbers">01/</div>
<div class="catalog-name" data-onclick="regal-oboe">Regal Oboe</div>
</div>
<div class="photo-holder">
<div><img src="" alt="regal oboe image"></div>
</div>
<div><button onclick="openModal('regal-oboe')" class="catalog-button">learn more</button></div>
</div>
<div class="catalog-card">
<div>
<div class="catalog-numbers">02/</div>
<div class="catalog-name" data-onclick="imperial-oboe">Imperial Oboe</div>
</div>
<div class="photo-holder"><img src="" alt="imperial oboe image"></div>
<div><button onclick="openModal('imperial-oboe')" class="catalog-button">learn more</button></div>
</div>
<div class="catalog-card">
<div>
<div class="catalog-numbers">03/</div>
<div class="catalog-name" data-onclick="pan-oboe">Pan Oboe</div>
</div>
<div class="photo-holder"><img src="" alt="pan oboe image"></div>
<div><button onclick="openModal('pan-oboe')" class="catalog-button">learn more</button></div>
</div>
<div class="catalog-card">
<div>
<div class="catalog-numbers">04/</div>
<div class="catalog-name" data-onclick="rocket-oboe">Rocket Oboe</div>
</div>
<div class="photo-holder"><img src="" alt="rocket oboe image"></div>
<div><button onclick="openModal('rocket-oboe')" class="catalog-button">learn more</button></div>
</div>
<div class="catalog-card">
<div>
<div class="catalog-numbers">05/</div>
<div class="catalog-name" data-onclick="english-horn">English Horn</div>
</div>
<div class="photo-holder"><img src="" alt="horn image"></div>
<div><button onclick="openModal('english-horn')" class="catalog-button">learn more</button></div>
</div>
</div>
</div>
</section>
<section class="newspaper-style process">
<div class="process-photo">
<div><img class="process-photo-position" src="" alt="photo of process"></div>
</div>
<div class="center-content process-title">
<div class="process-mobile title-animation-body"><img loading="lazy" class="title-animation-target" src="img/mobile/process.svg" alt="The Art of Instrument Production"></div>
<div class="process-desctop title-animation-body"><img loading="lazy" class="title-animation-target" src="img/desctop/process.svg" alt="The Art of Instrument Production"></div>
</div>
<div class="center-content">
<h4>Unveiling the craftsmanship: step into the exquisite world of instrument production with Armstrong-Werth, where
precision meets passion in every harmonious creation</h4>
</div>
<div class="process-description">
<div class="process-description-f-child">
<div>
<p>At the inception of its journey toward becoming your personalized companion, your oboe begins as a humble
blackwood,
thriving in a southern land. Much later, after being felled and segmented, it undergoes a period of
stabilization
lasting several years — a crucial phase to prevent cracking during subsequent shaping and, ultimately, musical
performance.</p>
</div>
<div>
<p>As an unrefined block, it enters our production workshop, where it assumes its preliminary form.
High-precision machines carve out spaces for the future metal fixtures, housing the valves. Meanwhile, in
another
workshop, all the hardware is prepared.</p>
</div>
</div>
<div class="process-description-s-child">
<div>
<p>Once the basic wooden framework is ready, it moves to the assembly master,
where fixtures are screwed in, and other elements are added. But this is merely the beginning.</p>
</div>
<div><p>Following the manual
adjustment of all metal components, the valves undergo soldering and electroplating (silver or gold coating). The
final assembly stage, conducted by the master, involves affixing tempered springs for smooth yet responsive valve
action and fitting pads into place.</p>
</div>
<div>
<p>The ultimate tuning and refinement of instruments are personally overseen by John
and his apprentices, the future of the Armstrong-Werth legacy. It is this final phase of labor that holds
paramount
importance in shaping the sound of the end product.</p>
</div>
</div>
</div>
</section>
<section class="harmonic-beayty">
<div>
<div class="explore-beauty-mobile title-animation-body"><img loading="lazy" class="title-animation-target" src="img/mobile/explore-beauty.svg" alt="Explore Harmonic Beauty"></div>
<div class="explore-beauty-desctop title-animation-body"><img loading="lazy" class="title-animation-target" src="img/desctop/explore-beauty.svg" alt="Explore Harmonic Beauty"></div>
</div>
<div>
<p class="opacity-paragraph">Immerse yourself in a world where every note resonates with the passion of true craftsmanship.</p>
</div>
<div><button onclick="openModal('feedbackForm')">submit</button></div>
</section>
<section id="gallery">
<ul class="list">
<li class="hide" data-index="09/"><img src="img/gallery/processed_DSC_1928.jpg" alt="Image with oboes №9"></li>
<li class="prev" data-index="10/"><img src="img/gallery/processed_DSC_1933.jpg" alt="Image with oboes №10"></li>
<li class="act" data-index="01/"><img src="img/gallery/processed_DSC_1878.jpg" alt="Image with oboes №1"></li>
<li class="next" data-index="02/"><img src="img/gallery/processed_DSC_1881.jpg" alt="Image with oboes №2"></li>
<li class="next new-next" data-index="03/"><img src="img/gallery/processed_DSC_1885.jpg" alt="Image with oboes №3"></li>
</ul>
<div class="swipe"></div>
<script src="https://hammerjs.github.io/dist/hammer.js" defer></script>
</section>
<section id="partners">
<div class="newspaper-style">
<div class="retailers-mobile title-animation-body"><img loading="lazy" class="title-animation-target" src="img/mobile/retailers.svg" alt="Explore Authorized Retailers"></div>
<div class="retailers-desctop title-animation-body"><img loading="lazy" class="title-animation-target" src="img/mobile/retailers.svg" alt="Explore Authorized Retailers"></div>
</div>
<div class="newspaper-style">
<h4>Discover a curated selection of trusted music stores worldwide where you can seamlessly purchase our
instruments. </h4>
</div>
<div class="newspaper-style">
<p> Our network of authorized retailers ensures a convenient and reliable shopping experience for our valued
customers.
Simply click on the arrows below to explore and make your purchase from our esteemed partners.
Your musical journey starts with a click.
</p>
</div>
<div class="retailers">
<div class="retailers-card">
<div class="retailers-image"><img src="" alt="zasmusuc"></div>
<div class="retailers-infobar">
<div>
<div class="retailers-name">Zasmusic</div>
<div class="retailers-country">Spain</div>
</div>
<button onclick="redirectToLink(0)"><img class="right-arrows" src="img/arrow.svg" alt="->" data-arrow="true"></button>
</div>
</div>
<div class="retailers-card">
<div class="retailers-image"><img src="" alt="aj-music"></div>
<div class="retailers-infobar">
<div>
<div class="retailers-name">A.J.Musique</div>
<div class="retailers-country">France</div>
</div>
<button onclick="redirectToLink(1)"><img class="right-arrows" src="img/arrow.svg" alt="->" data-arrow="true"></button>
</div>
</div>
<div class="retailers-card">
<div class="retailers-image">
<img src="" alt="Ying Min Min" data-arrow="true">
</div>
<div class="retailers-infobar">
<div>
<div class="retailers-name">Ying Min Min</div>
<div class="retailers-country">China</div>
</div>
<button onclick="redirectToLink(2)"><img class="right-arrows" src="img/arrow.svg" alt="->" data-arrow="true"></button>
</div>
</div>
<div class="retailers-card">
<div class="retailers-image"><img src="" alt="oboe central"></div>
<div class="retailers-infobar">
<div>
<div class="retailers-name">Oboe Central</div>
<div class="retailers-country">Australia</div>
</div>
<button onclick="redirectToLink(3)"><img class="right-arrows" src="img/arrow.svg" alt="->" data-arrow="true"></button>
</div>
</div>
<div class="retailers-card">
<div class="retailers-image"><img src="" alt="Sax and Woodwind"></div>
<div class="retailers-infobar">
<div>
<div class="retailers-name">Sax and Woodwind</div>
<div class="retailers-country">Australia</div>
</div>
<button onclick="redirectToLink(4)"><img class="right-arrows" src="img/arrow.svg" alt="->" data-arrow="true"></button>
</div>
</div>
<div class="retailers-card">
<div class="retailers-image"><img src="" style="height: auto;" alt="Argen Donax"></div>
<div class="retailers-infobar">
<div>
<div class="retailers-name">Argen Donax</div>
<div class="retailers-country">USA</div>
</div>
<button onclick="redirectToLink(5)"><img class="right-arrows" src="img/arrow.svg" alt="->" data-arrow="true"></button>
</div>
</div>
<div class="retailers-card">
<div class="retailers-image"><img src="" alt="WA Music"></div>
<div class="retailers-infobar">
<div>
<div class="retailers-name">WA Music</div>
<div class="retailers-country">Australia</div>
</div>
<button onclick="redirectToLink(6)"><img class="right-arrows" src="img/arrow.svg" alt="->" data-arrow="true"></button>
</div>
</div>
</div>
</section>
<section class="bgblack" id="founder">
<div class="founder-bio">
<div class="founder-title">
<div class="founder-mobile title-animation-body"><img loading="lazy" class="title-animation-target" src="img/mobile/founder.svg" alt="A Legacy Built on Passion"></div>
<div class="founder-desctop title-animation-body"><img loading="lazy" class="title-animation-target" src="img/desctop/founder.svg" alt="A Legacy Built on Passion"></div>
</div>
<div class="founder-photo-rectangle"><img class="founder-rectangle-animation" src="" alt="founder photo"></div>
<div>
<h4>Meet our founder, <i>John Armstrong</i>.<br>His unwavering dedication towards creating exceptional musical instruments has
been the driving force behind our success. Learn more about his vision and commitment to the art of music. </h4>
</div>
<div class="founder-bio-text">
<p> John Armstrong is an Australian oboist and oboe maker with a rich history in the music industry. He has worked
for reputable companies such as T.W. Howarth in London,
the KG reed company in Shanghai, Rigoutat in Paris, Jinyin and Bailicheng in Hebei, China. His extensive
experience and dedication to the craft make him a respected div in the world of oboe making.</p>
</div>
<div class="founder-bio-text">
<p>Having started making oboes in 1989, John has since been committed to producing high-quality instruments. In
2006, he partnered with oboe maker Tony Ward to create the Armstrong Ward oboe for the Australian market,
later rebranded the "KG" oboe in Shanghai. John's continuous dedication to improving oboe manufacturing has led
to the development of the Armstrong Werth brand, which aims to provide oboe players with more affordable and
rewarding playing experiences through modern manufacturing techniques and quality components.
His designs are a reflection of both tradition and the evolving preferences of today's oboists.
</p>
</div>
</div>
<div class="founder-chronology">
<div>
<h4>chronology</h4>
</div>
<div class="overflow-timeline">
<div class="timeline">
<div class="timeline-date" data-activity="activ">1980</div>
<div class="timeline-date" data-activity="">1989</div>
<div class="timeline-date" data-activity="">2003</div>
<div class="timeline-date" data-activity="">2006</div>
<div class="timeline-date" data-activity="">2008</div>
<div class="timeline-date" data-activity="">2012</div>
<div class="timeline-date" data-activity="">2020</div>
<div class="timeline-date" data-activity="">now</div>
</div>
</div>
<div class="bio-facts">
<div class="timeline-fact" data-activity="activ">
<div class="bio-facts-text">1980</div>
<div class="bio-facts-text"><p>
At just 13, John's symphony begins at the Sydney Conservatorium High School, where oboe lessons lay the
groundwork
for his future in London, painted with the hues of a scholarship.
</p></div>
<div class="bio-facts-photo"><img src="" alt="1980"></div>
</div>
<div class="timeline-fact" data-activity="">
<div class="bio-facts-text">1989</div>
<div class="bio-facts-text"><p>
The heart of London becomes a stage for enchantment as John explores the Howarth oboe
factory in Worthing. A catalyst moment, this visit kindles a lifelong passion, guiding him through two years as an
apprentice before his return to Australia.
</p></div>
<div class="bio-facts-photo"><img src="" alt="1989"></div>
</div>
<div class="timeline-fact" data-activity="">
<div class="bio-facts-text">2003</div>
<div class="bio-facts-text"><p>
A harmonious chord strikes when John seamlessly weaves his musical career with the art of crafting oboes,
marking a pivotal transition from full-time musician to a devotee of oboe making and repair.
</p></div>
<div class="bio-facts-photo"><img src="" alt="2003"></div>
</div>
<div class="timeline-fact" data-activity="">
<div class="bio-facts-text">2006</div>
<div class="bio-facts-text"><p>
A significant chapter unfolds as John acquires Tony Ward's oboe-making tools. The first AW oboes, born in
2006, carry the legacy of 'Armstrong Ward,' a collaborative masterpiece drawing inspiration from a cherished
French style.
</p></div>
<div class="bio-facts-photo"><img src="" alt="2006"></div>
</div>
<div class="timeline-fact" data-activity="">
<div class="bio-facts-text">2008</div>
<div class="bio-facts-text"><p>
Shanghai becomes the canvas as John shifts AW oboe production, harmonizing with joint ventures for Howarth
and Rigoutat until 2012. Collaborations with K.G. oboe reed company and the development of key designs in
Korea enrich this chapter.
</p></div>
<div class="bio-facts-photo"><img src="" alt="2008"></div>
</div>
<div class="timeline-fact" data-activity="">
<div class="bio-facts-text">2012</div>
<div class="bio-facts-text"><p>
Shanghai echoes with K.G. oboes, while AW now embodies Armstrong Werth since Tony Ward's 2012 retirement.
John's expertise blossoms, sought after as an expert in establishing production facilities.
</p></div>
<div class="bio-facts-photo"><img src="" alt="2012"></div>
</div>
<div class="timeline-fact" data-activity="">
<div class="bio-facts-text">2020</div>
<div class="bio-facts-text"><p>
A new crescendo unfolds as John, invited to a European state, pioneers a locally crafted oboe. Abroad, he
orchestrates the continued production of Armstrong Werth oboes, embodying a foreign expert's role.
</p></div>
<div class="bio-facts-photo"><img src="" alt="2020"></div>
</div>
<div class="timeline-fact" data-activity="">
<div class="bio-facts-text">now</div>
<div class="bio-facts-text"><p>
Rooted in Australia, Armstrong Werth Pty Ltd harmonizes local and international expertise from Europe,
China, and Korea. John, a proud member of the International Double Reeds Society, resonates through global
conferences and musical instrument trade exhibitions.
</p></div>
<div class="bio-facts-photo"><img src="" alt="Present"></div>
</div>
</div>
</div>
</div>
<div style="position: relative;">
<div class="quote-photo"><img src="" alt="photo of John"></div>
<div class="quote">
<div class="quote-animation">
"In every instrument we craft, we weave the timeless threads of culture and creativity, giving life to the
symphony of human expression."
</div>
</div>
</div>
</section>
<section class="section-faq">
<div>
<div class="faq-mobile title-animation-body"><img loading="lazy" class="title-animation-target" src="img/mobile/faq.svg" alt="Your Queries Answered"></div>
<div class="faq-desctop title-animation-body"><img loading="lazy" class="title-animation-target" src="img/desctop/faq.svg" alt=""></div>
</div>
<div>
<p>Have questions? We've got answers. Browse through our FAQ section to find information about shipping, warranty,
returns,
and more. If you can't find what you're looking for, feel free to reach out to our friendly customer support team.
</p>
</div>
<div>
<dl class="bordered-list faq-template">
<div class="faq-placeholder">
<div>
<dt>What is the warranty for this instrument, and what does it cover?</dt>
<dd class="answer">A: Your AW oboe comes with a solid 1-year warranty covering both the body and mechanism. Unfortunately, it
won't
shield against accidental damage, so keep those playing sessions accident-free!</dd>
</div>
<div class="cross"><img src="img/cross.svg" alt="+"></div>
</div>
<div class="faq-placeholder">
<div>
<dt>How should I care for and maintain this instrument to ensure its longevity?</dt>
<dd class="answer">A: Post-performance TLC is key! After playing, give your oboe a gentle swab or pull-through. For wooden
beauties
like the Regal, Imperial, and English Horn, show some extra love by lightly oiling the top joint with bore
oil every
week for the first 2 months. Assemble with a touch of cork grease on the tenons, occasionally hand-polish
the
mechanism, and rest easy - the mechanism is fully oiled during final assembly. If adjustments are needed
during the
warranty period, we've got your back - details of a nearby technician and free adjustments if done by an
approved
technician.</dd>
</div>
<div class="cross"><img src="img/cross.svg" alt="+"></div>
</div>
<div class="faq-placeholder">
<div>
<dt>Are there any recommended accessories or products that should be used with this instrument? </dt>
<dd class="answer">A: Your AW oboe plays at a cool 442! Pair it with European or USA school reeds. Feeling Euro? Opt for the
Chiarugi
47mm, type 2. And for cleaning, choose a pull-through with a cord on both ends to avoid those "oops, it's
stuck"
moments inside the bore!</dd>
</div>
<div class="cross"><img src="img/cross.svg" alt="+"></div>
</div>
<div class="faq-placeholder">
<div>
<dt>What is the return policy if I am not satisfied with the instrument? </dt>
<dd class="answer">A: Not feeling the musical magic? No worries! If you're not over the moon with your instrument within the
first 2 weeks, you can return it, no questions asked. And even after that, if something's not quite right
during the warranty period, we've got your back - swap it for a shiny new one after confirmation of a fault
by an approved technician.</dd>
</div>
<div class="cross"><img src="img/cross.svg" alt="+"></div>
</div>
<div class="faq-placeholder faq-closing">
<div>
<dt>How long will it take to receive my order, and do you offer expedited shipping? </dt>
<dd class="answer">A: Snagging your dream AW oboe is a breeze when you go through our awesome dealers! If they happen to be out
of stock
on your preferred model, don't fret. There might be a brief waiting period (usually around a month), but
hey, good
things come to those who wait. Plus, if your dealer gives us the nod, we can fast-track an oboe straight to
your
doorstep!</dd>
</div>
<div class="cross"><img src="img/cross.svg" alt="+"></div>
</div>
<div class="faq-placeholder" style="display: none">
<div>
<dt>Do you offer any financing options for purchasing this instrument? </dt>
<dd class="answer">A: Nope, we don't have financing options on our end, but guess what? Some of our awesome dealers might! They
could
hook you up with a sweet deal.</dd>
</div>
<div class="cross"><img src="img/cross.svg" alt="+"></div>
</div>
<div class="faq-placeholder" style="display: none">
<div>
<dt>Can I try this instrument before purchasing it, and if so, how do I arrange a demo or trial period?</dt>
<dd class="answer">A: Want to get hands-on with your potential AW oboe? Swing by our dealership spots for an initial test play!
If you
need more quality time, no worries - ask your dealer to set you up with a 1-week demo outside the store. And
hey, if
you're a pro teacher or player, testing in your natural habitat or an orchestral setting is totally on the
table.
Just loop in your dealer, and pending their decision, they'll make it happen!</dd>
</div>
<div class="cross"><img src="img/cross.svg" alt="+"></div>
</div>
<div class="faq-placeholder" style="display: none">
<div>
<dt>What is the process for repairing or servicing this instrument if it becomes damaged or malfunctions?</dt>
<dd class="answer">A: Good news - our AW dealers are like superheroes for oboe repairs! They can handle most fixes, including
warranty
adjustments and even some accidental oopsies (not covered by warranty, though). If things get wild with
severe
damage, don't worry - our manufacturing wizards might step in to save the day.</dd>
</div>
<div class="cross"><img src="img/cross.svg" alt="+"></div>
</div>
<div class="faq-placeholder" style="display: none">
<div>
<dt>Do you offer any customization options for this instrument, such as engraving or personalization?</dt>
<dd class="answer">A: Make your AW oboe uniquely yours! Add extra keywork for a personalized vibe. Looking for a touch of
glamour? Rose
gold plating for the mechanism is just a request away. Explore the perfect blend with our hybrid models -
wooden
joints and ABS synthetic joints in sync. Dreaming of a specially adorned oboe? Engraving or decoration
services are
on the table - just let us know what you have in mind!</dd>
</div>
<div class="cross"><img src="img/cross.svg" alt="+"></div>
</div>
<div class="faq-placeholder" style="display: none">
<div>
<dt>How can I contact customer support if I have any questions or issues with my order or the instrument itself?</dt>
<dd class="answer">A: Chat or call, your pick! If you're all about direct vibes, find our contact info on the website for a
quick call.
But hey, if chatting is more your speed, catch us on our social network pages - the chat is wide open. Not
in the
mood for either? No problem! Just leave your details below, and we'll reach out to you!</dd>
</div>
<div class="cross"><img src="img/cross.svg" alt="+"></div>
</div>
<div class="faq-placeholder" style="display: none">
<div>
<dt>What types of musicians is this instrument best suited for? </dt>
<dd class="answer">A: From tiny virtuosos to seasoned pros, our oboe family has something for everyone and every style. Let's
meet the
crew: Regal, the black wood virtuoso; Imperial, its equally talented sibling in the same classy material;
Pan, the
ABS sensation with the same pro vibes as Imperial; and the adorable Rocket and Rocket "plus," perfect for
the
budding musicians. For the juicy details on each character, flip through the catalog - it's a musical
treasure