-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
1546 lines (942 loc) · 55.9 KB
/
Copy pathindex.html
File metadata and controls
1546 lines (942 loc) · 55.9 KB
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>
<title>Appler Watch Series 5 - Overview</title>
<link rel="icon" href="https://images.vexels.com/media/users/3/129234/isolated/preview/73970c892d748c7507db8e10d71535b0-apple-logo-icon-by-vexels.png" type="image/x-icon">
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="stylesheets/all.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/scroll-out/dist/scroll-out.min.js"></script>
</head>
<body>
<nav class=" navbar navbar-expand-sm navbar-light " style="background:rgba(35, 35, 35, 0.98);font-size:13px;">
<div class="container px-sm-5 px-0">
<a class="navbar-brand text-white text-center" href="index.html">
<i class="fa fa-apple pr-2"></i>
</a>
<button class="navbar-toggler collapsed ml-auto border-0 d-md-none" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation">
<span class="icon-bar top-bar" style="background-color: rgb(255, 255, 255);"></span>
<span class="icon-bar middle-bar" style="background-color: rgba(255, 255, 255, 0);"></span>
<span class="icon-bar bottom-bar" style="background-color: rgb(255, 255, 255);"></span>
</button>
<div class="collapse navbar-collapse " id="navbarSupportedContent">
<!-- 靠右 -->
<ul class="navbar-nav mt-2">
<li class="nav-item mt-1 pl-0 pl-sm-3">
<button onclick="share()">Share</button>
</li>
<li class="nav-item mt-1 pl-0 pl-sm-3">
<a class="nav-link text-white" href="./product.html">iPad</a>
</li>
<li class="nav-item mt-1 pl-0 pl-sm-3">
<a class="nav-link text-white" href="./login.html">iPhone</a>
</li>
<li class="nav-item mt-1 pl-0 pl-sm-3">
<a class="nav-link text-secondary" href="./login.html">Watch</a>
</li>
<li class="nav-item mt-1 pl-0 pl-sm-3">
<a class="nav-link text-white" href="./login.html">Tv</a>
</li>
<li class="nav-item mt-1 pl-0 pl-sm-3">
<a class="nav-link text-white" href="./login.html">Music</a>
</li>
<li class="nav-item mt-1 pl-0 pl-sm-3">
<a class="nav-link text-white" href="./login.html">Support</a>
</li>
<li class="nav-item mt-1 pl-0 pl-sm-3">
<a class="nav-link text-white" href="./login.html"><i class="fa fa-search "></i></a>
</li>
<li class="nav-item pl-0 pl-sm-3">
<div class="dropdown">
<a class="nav-link text-white mb-1 mt-sm-0" data-toggle="dropdown" data-flip="false" href="./cart.html">
<i class="applebag " aria-hidden="true"><img src="images/shopping-bag2.svg" alt=""></i>
</a>
<div class="dropdown-menu dropdown-menu-right bg-white" style="min-width: 300px;">
<div class="container">
<div class="row">
<div class="col-4">
<img class="img-fluid bg-cover m-2" style=" height:50px;" src="https://store.storeimages.cdn-apple.com/4982/as-images.apple.com/is/MU9L2_VW_34FR+watch-44-alum-spacegray-nc-5s_VW_34FR_WF_CO?wid=110&hei=78&fmt=jpeg&qlt=95&op_usm=0.5,1.5&.v=1566433751952,1569365638987"
alt="">
</div>
<div class="col-8">
<p class="h6" style="max-width:200px;">Apple Watch Series 5 GPS,44mm Space Gray Aluminum Case with Sport Band M&L L&XL M</p>
</div>
<a href="check.html" class="btn btn-primary btn-block m-3">Check Out</a>
<ul class="list-group btn-block">
<li class="list-group-item text-primary no-hover border-0 " style="height:20px;"> <i class="fa fa-shopping-bag mr-1" aria-hidden="true"></i> <a href="check.html">Bag</a></li>
<hr>
<li class="list-group-item text-primary no-hover border-0" style="height:20px;"><i class="fa fa-heart-o mr-1" aria-hidden="true"></i> Favorite</li>
<hr>
<li class="list-group-item text-primary no-hover border-0" style="height:20px;"><i class="fa fa-square-o mr-1" aria-hidden="true"></i> Orders</li>
<hr>
<li class="list-group-item text-primary no-hover border-0" style="height:20px;"><i class="fa fa-user-circle mr-1" aria-hidden="true"></i> Account</li>
<hr>
<li class="list-group-item text-primary no-hover border-0" style="height:30px;"><i class="fa fa-sign-in mr-1" aria-hidden="true"></i> Sign in</li>
<hr>
</ul>
</div>
</div>
</div>
</div>
</li>
</ul>
</div>
</div>
</nav>
<nav class=" navbar navbar-expand-md navbar-light d-none d-sm-block " style="padding:0px;">
<div class="container px-5 pt-2">
<a class="navbar-brand text-dark text-center font-weight-bold" href="index.html">
Apple Watch Series 5
</a>
<ul class="nav justify-content-end mr-5" style="font-size:12px;">
<li class="nav-item">
<a class="nav-link text-primary" href="index.html">Overview</a>
</li>
<li class="nav-item">
<a class="nav-link text-dark" href="design.html">Design</a>
</li>
<li class="nav-item">
<a class="nav-link text-dark" href="health.html">Health</a>
</li>
<li class="nav-item">
<a class="nav-link text-dark" href="workout.html">Workout</a>
</li>
<li class="nav-item">
<a class="nav-link text-dark" href="connect.html">Connect</a>
</li>
<li class="nav-item">
<a class="nav-link btn btn-sm btn-primary mt-1" style="border-radius:30px;font-size:12px;padding:1px;width:60px;" href="shopping.html">Buy</a>
</li>
</ul>
</div>
</nav>
<div class="intro-section bg-cover">
<video width="100%" autoplay muted>
<source src="video/appleheader.mp4" type="video/mp4">
</video>
</div>
<!-- //horizionital scroll when scrolling vertical test -->
<!-- <div class="container d-none d-lg-inline-block">
<div id="realcontent">
<video class="scrollpic" autoplay loop muted>
<source src="video/style.mp4" type="video/mp4">
</video>
</div>
<div id="fakecontent"></div>
</div> -->
<div class="intro-subtitle bg-cover mt-5">
<h1 class="font-weight-bold" style="font-size:40px;letter-spacing: 3px;"> WATCH<br><span class="text-danger pl-5 font-weight-normal" style="font-size:19px;letter-spacing:3px;"> SERIES 5</span>
</h1>
<p class="h1 display-2 pt-2 pl-3 font-weight-bold text-center">You’ve never seen <br>a watch like this.
<br><a href="#" class="h3 ml-2 text-primary" style="width:240px;">Watch the keynote <i
class="fa fa-play-circle-o" aria-hidden="true"></i> </a><a href="#" class="h3 ml-2 text-primary" style="width:240px;">Watch the keynote <i class="fa fa-play-circle-o" aria-hidden="true"></i></a>
</p>
</div>
<!-- //always on desktop -->
<div class="container-fluid p-0 d-none d-lg-block " style="margin-top:100px;">
<section class="row no-gutters align-items-center ">
<div class="col-12 d-flex ">
<video class="center" autoplay muted>
<source src="video/alwayson.mp4" type="video/mp4">
</video>
<h1 class="w-80 position-absolute text-dark font-weight-bold" style="left:22%;" data-aos="fade-in" data-aos-delay="100">This watch has <br> a display <br>that never sleeps.<br>
</h1>
<h5 class="w-80 position-absolute text-secondary" style="top:20%;left:18%;" data-aos="fade-in" data-aos-delay="100">With the new Always-On Retina <br>display, you always see the time <br> and your watch face.
</h5>
</div>
</section>
</div>
<div class="container-fluid p-0 pt-5 d-none d-lg-block" style="margin-top:50px;">
<section class="row no-gutters align-items-center">
<div class="col-12 d-flex " data-scroll>
<video class="watchgroup-center pt-5" autoplay muted>
<source src="video/allrotate.mp4" type="video/mp4">
</video>
<h1 class="w-80 position-absolute text-dark font-weight-bold" style="top:-7%;left:22%;" data-aos="fade-in" data-aos-delay="100">It can be customized <br>any way you like.
</h1>
<h5 class="w-80 position-absolute text-secondary" style="top:7%;left:18%;" data-aos="fade-in" data-aos-delay="100">Choose a case and <br>pair any band in the <br>Apple Watch Studio.
</h5>
</div>
</section>
</div>
<div class="container-fluid p-0 pt-5 d-none d-lg-block" style="margin-top:50px;">
<section class="row no-gutters align-items-center">
<div class="col-12 d-flex" data-scroll>
<img src="https://i2.wp.com/cdn.mgig.fr/2019/09/mg-274c52b4-ec9e-437d-9ab8-w550h905-sc.jpg?resize=550%2C905&ssl=1" alt="">
<img class="watchcome" data-aos="fade-up-left" data-aos-duration="1500" data-aos-delay="400" src="images/cermaicsmall2.jpeg" alt="">
<!-- <img class="cermaicsmall" src="images/cermaicsmall.jpg" alt=""> -->
<h1 class="w-80 display-4 position-absolute text-dark font-weight-bold" style="top:17%;left:45%;" data-aos="fade-in" data-aos-delay="100">
With materials <br> you’ll love.
</h1>
<h5 class="w-80 position-absolute text-secondary" style="top:37%;left:39%;" data-aos="fade-in" data-aos-delay="100">Aluminum, stainless steel,<br> titanium, or ceramic? It’s your call.
</h5>
</div>
</section>
</div>
<!-- //ecg -->
<div class="container-fluid p-0 pt-5 d-none d-lg-block" style="margin-top:50px;">
<section class="row no-gutters align-items-center">
<div class="col-12 d-flex" data-scroll>
<img class="ecgpic" src="images/heartrate.png" alt="">
<!-- <img class="watchcome" data-aos="fade-up-left" data-aos-duration="1500" data-aos-delay="400" src="https://i.pinimg.com/originals/4d/8e/7a/4d8e7a7f6809fc01c8f625715c6a8c8d.png" alt=""> -->
<h1 class="w-80 display-5 position-absolute text-dark font-weight-bold" style="top:-5%;left:58%;" data-aos="fade-in" data-aos-delay="100">
This watch<br> has apps to<br> keep an eye <br>on your heart.
</h1>
<h5 class="w-80 position-absolute text-secondary" style="top:27%;left:62%;" data-aos="fade-in" data-aos-delay="100">Get a quick read on your heart <br>rate, or check your heart rhythm<br> with the ECG app.1
</h5>
</div>
</section>
</div>
<!-- noisedetect -->
<div class="container-fluid p-0 pt-5 d-none d-lg-block" style="margin-top:80px;">
<section class="row no-gutters align-items-center">
<div class="col-12 d-flex" data-scroll>
<img class="ecgpic mt-2" src="images/noisecontrol.png" alt="">
<div class="watchwrapper-period d-none d-lg-block">
<video class="periodfill" autoplay muted>
<source src="video/periodmove.mp4" type="video/mp4">
</video>
</div>
<!-- <img class="watchcome" data-aos="fade-up-left" data-aos-duration="1500" data-aos-delay="400" src="https://i.pinimg.com/originals/4d/8e/7a/4d8e7a7f6809fc01c8f625715c6a8c8d.png" alt=""> -->
<h1 class="w-80 display-5 position-absolute text-dark font-weight-bold" style="top:-5%;left:58%;" data-aos="fade-in" data-aos-delay="100">
And tells you when<br> things are getting <br>a little loud.
</h1>
<h5 class="w-80 position-absolute text-secondary" style="top:17%;left:62%;" data-aos="fade-in" data-aos-delay="100">The new Noise app alerts you<br> when decibels rise to levels that <br>can impact your hearing.
</h5>
<!-- second text -->
<h1 class="w-80 display-5 position-absolute text-dark font-weight-bold" style="top:85%;left:22%;" data-aos="fade-in" data-aos-delay="100">
And lets you <br>track your cycle <br>with a tap.
</h1>
<h5 class="w-80 position-absolute text-secondary" style="top:106%;left:27%;" data-aos="fade-in" data-aos-delay="100">
The new Cycle Tracking app <br>makes it easy to log information <br>about your menstrual cycle.
</h5>
</div>
</section>
</div>
<!-- fitness goal group -->
<div class="container-fluid p-0 pt-5 d-none d-lg-block" style="margin-top:180px;">
<section class="row no-gutters align-items-center">
<div class="col-12 d-flex" data-scroll>
<img style="transform: scale(0.9);" class="watchgroup mt-5" src="images/watchgroup.png" alt="">
<!-- <img class="watchcome" data-aos="fade-up-left" data-aos-duration="1500" data-aos-delay="400" src="https://i.pinimg.com/originals/4d/8e/7a/4d8e7a7f6809fc01c8f625715c6a8c8d.png" alt=""> -->
<h1 class="w-80 display-5 position-absolute text-dark font-weight-bold" style="top:2%;left:30%;" data-aos="fade-in" data-aos-delay="200">
This watch helps <br>you crush your <br>fitness goals.
</h1>
<h5 class="w-80 my-5 position-absolute text-secondary" style="top:12%;left:22%;" data-aos="fade-in" data-aos-delay="200">The new Noise app alerts you<br> when decibels rise to levels that <br>can impact your hearing.
</h5>
</div>
</section>
</div>
<!-- fitness goal group2 -->
<div class="container-fluid p-0 pt-5 d-none d-lg-block" style="margin-top:0px;">
<section class="row no-gutters align-items-center">
<div class="col-12 d-flex" data-scroll>
<img style="transform: scale(0.8);" class="watchgroup mt-2" src="images/watchgroup2.png" alt="">
<!-- <img class="watchcome" data-aos="fade-up-left" data-aos-duration="1500" data-aos-delay="400" src="https://i.pinimg.com/originals/4d/8e/7a/4d8e7a7f6809fc01c8f625715c6a8c8d.png" alt=""> -->
<h1 class="w-80 display-5 position-absolute text-dark font-weight-bold" style="top:-5%;left:10%;" data-aos="fade-in" data-aos-delay="200">
And motivates you <br>to move, exercise,<br> and stand.
</h1>
<h5 class="w-80 position-absolute text-secondary" style="top:6%;left:10%;" data-aos="fade-in" data-aos-delay="200">
The Activity rings track your progress <br>and inspire you to sit less, move more,<br> and exercise every day. You can even <br>compete with friends in challenges.
</h5>
</h5>
</div>
</section>
</div>
<!-- fitness goal group3-->
<div class="container-fluid p-0 pt-5 d-none d-lg-block" style="margin-top:0px;">
<section class="row no-gutters align-items-center">
<div class="col-12 d-flex" data-scroll>
<img style="transform: scale(0.8);" class="watchgroup mt-2" src="images/watchgroup3.png" alt="">
<!-- <img class="watchcome" data-aos="fade-up-left" data-aos-duration="1500" data-aos-delay="400" src="https://i.pinimg.com/originals/4d/8e/7a/4d8e7a7f6809fc01c8f625715c6a8c8d.png" alt=""> -->
<h1 class="w-80 display-4 position-absolute text-dark font-weight-bold" style="top:0%;left:18%;" data-aos="fade-in" data-aos-delay="200">
And streams <br> your favorite <br>50 million songs.
</h1>
<h4 class="w-80 position-absolute text-secondary" style="top:14%;left:18%;" data-aos="fade-in" data-aos-delay="200">Listen to the entire Apple Music<br> library, not to mention podcasts <br>and audiobooks.2
</h4>
<!-- second text -->
<h1 class="w-80 display-5 position-absolute text-dark font-weight-bold" style="top:88%;left:22%;" data-aos="fade-in" data-aos-delay="200">
And lets you <br>connect your airpod <br>with a tap.
</h1>
</div>
</section>
</div>
<!-- //compass desktop// -->
<div class="container-fluid p-0 d-none d-lg-block" style="margin-top:150px;">
<section class="row no-gutters align-items-center">
<div class="col-12 d-flex ">
<video class="compasscenter" autoplay muted>
<source src="video/compass.mp4" type="video/mp4">
</video>
<h1 class="w-80 position-absolute text-dark font-weight-bold" style="left:65%;">This watch has <br>a great sense <br>of direction.
</h1>
<h5 class="w-80 position-absolute text-secondary" style="top:20%;left:68%;">With a compass and ground
<br>elevation, it’s made for life’s twists <br>and turns, and ups and downs.
</h5>
</div>
</section>
</div>
<!-- //period black desktop -->
<div class="container-fluid p-0 py-5 d-none d-lg-block" style="margin-top:50px; background:black;">
<section class="row no-gutters align-items-center">
<div class="col-12 d-flex " data-scroll>
<video class="screencontent " autoplay muted>
<source src="video/period.mp4" type="video/mp4">
</video>
<video class="screencontent3 " autoplay muted>
<source src="video/appstore.mp4" type="video/mp4">
</video>
<h1 class="w-80 position-absolute text-light font-weight-bold" style="top:17%;left:22%;"><small class="p">watchOS 6 </small><br> More insightful <br> More delightful.
</h1>
<h5 class="w-80 position-absolute text-secondary" style="top:62%;left:22%;">you can turn on notifications to tell you <br> when your next period or <br>fertile window is approaching.
</h5>
</div>
</section>
</div>
<!-- //noise detect //period/ cycle tracking-->
<div class="container-fluid p-0 pt-5 d-none d-lg-block" style="margin-top:50px;" data-aos="fade-up" data-aos-duration="2000" data-aos-delay="400">
<section class="row no-gutters align-items-center">
<div class="col-4 d-flex" data-scroll>
<img class="noisepic bg-cover" src="https://www.apple.com/newsroom/images/product/watch/standard/Apple_watch_series_5-noise-app-screen-091019_carousel.jpg.large_2x.jpg" alt="">
<!-- <h1 class="w-80 display-4 position-absolute text-dark font-weight-bold" style="top:17%;left:45%;">
Noise Detect
</h1> -->
</div>
<div class="col-4 d-flex" data-scroll>
<img class="noisepic bg-cover" src="https://www.apple.com/newsroom/images/product/watch/standard/Apple_watch_series_5-cycle-tracking-app-screen-091019_carousel.jpg.large_2x.jpg" alt="">
<p class="w-80 position-absolute text-muted font-weight-bold" style="top:-10%;left:28%;">
Scroll for more features <i class="fa fa-arrow-down" aria-hidden="true"></i>
</p>
</div>
<div class="col-4 d-flex" data-scroll>
<img class="noisepic bg-cover" src="https://www.apple.com/newsroom/images/product/watch/standard/Apple_watch_series_5-workout-outdoor-run-elevation-open-goal-screen-091019_carousel.jpg.large_2x.jpg" alt="">
<!-- <h1 class="w-80 display-4 position-absolute text-muted font-weight-bold" style="top:6%;left:45%;">
Cycle Tracking
</h1> -->
</div>
</section>
</div>
<!-- emergecy call // walking talking mode // podcasts -->
<div class="container-fluid p-0 pt-5 d-none d-lg-block" style="margin-top:50px;" data-aos="fade-up" data-aos-duration="2000" data-aos-delay="600">
<section class="form-row no-gutters align-items-center">
<div class="col-4 d-flex" data-scroll>
<img class="noisepic bg-cover" src="https://www.apple.com/newsroom/images/product/watch/standard/apple-watch-series4_sos-emergency-services_09122018_inline.jpg.large_2x.jpg" alt="">
<!-- <p class="w-80 position-absolute text-dark font-weight-bold" style="top:10%;left:35%;">
Noise Detect
</p> -->
</div>
<div class="col-4 d-flex" data-scroll>
<img class="noisepic bg-cover" src="https://www.apple.com/newsroom/images/product/watch/standard/apple-watch-series4_walkie-talkie_09122018_carousel.jpg.large_2x.jpg" alt="">
<!-- <p class="w-80 position-absolute text-light font-weight-bold" style="top:10%;left:35%;">
Period Tracking
</p> -->
</div>
<div class="col-4 d-flex" data-scroll>
<img class="noisepic bg-cover" src="https://www.apple.com/newsroom/images/product/watch/standard/apple-watch-series4_podcasts_09122018_carousel.jpg.large_2x.jpg" alt="">
<!-- <p class="w-80 position-absolute text-light font-weight-bold" style="top:10%;left:35%;">
Cycle Tracking
</p> -->
</div>
</section>
</div>
<!-- do we mention this watch tells time -->
<div class="container-fluid p-0 pt-5 d-none d-lg-block" style="margin-top:90px;">
<section class="row no-gutters align-items-center">
<div class="col-12 d-flex" data-scroll>
<img class="watchgroup mt-5" src="images/longwatchfaces.jpg" alt="">
<!-- <img class="watchcome" data-aos="fade-up-left" data-aos-duration="1500" data-aos-delay="400" src="https://i.pinimg.com/originals/4d/8e/7a/4d8e7a7f6809fc01c8f625715c6a8c8d.png" alt=""> -->
<h1 class="w-80 display-4 position-absolute text-dark font-weight-bold" style="top:9%;left:19%;">
Did we mention this <br>watch tells time?
</h1>
<h5 class="w-80 position-absolute text-secondary" style="top:24%;left:15%;">
With more than a hundred watch faces and <br>infinite ways to personalize them, there’s <br>never been a watch like this.
</h5>
</h5>
</div>
</section>
</div>
<!-- rwd alwayson & compass -->
<div class="container my-5 d-block d-sm-none">
<div class="row">
<div class="col-sm-6 col-12 m-0 pl-0">
<div class="intro-subtitle bg-cover h-100" style="background:rgb(255, 255, 255)">
<!-- <i class="nikelogo"><img class="img-fluid" src="https://www.iconcept.fr/img/cms/Produits/Apple-Watch/Logo-AWnikePlus.jpg" alt=""></i> -->
<h1 class="mt-5 text-dark">This watch has <br> a great sense <br> of direction.</h1>
<p class="h5 mt-2 pt-2 pl-3">Available 10.4
<br><button type="button" class="btn btn-primary ml-2 mt-5 text-light">Order</button></p>
<div class="smaller pt-5" style="transform:scale(0.95);">
<video width="100%" autoplay muted>
<source src="video/alwayson.mp4" type="video/mp4">
</video>
</div>
</div>
</div>
<div class="col-sm-6 col-12 m-0 pl-0">
<div class="intro-subtitle bg-cover h-100" style="background:rgb(255, 255, 255)">
<!-- <i class="nikelogo"><img class="img-fluid" src="https://www.iconcept.fr/img/cms/Produits/Apple-Watch/Logo-AWnikePlus.jpg" alt=""></i> -->
<h3 class="mt-5 text-dark"> WATCH | Hermès </h3>
<p class="h5 mt-2 pt-2 pl-3">Available 10.4
<br><button type="button" class="btn btn-primary ml-2 mt-5 text-light">Order</button></p>
<div class="smaller pb-5" style="transform:scale(0.95);">
<video width="100%" autoplay muted>
<source src="video/compass.mp4" type="video/mp4">
</video>
</div>
</div>
</div>
</div>
</div>
<!-- rwd alwayson & compass -->
<!--
<section class="content-section" data-scroll>
<figure class="figure" style="margin-top:100px;background-image: url(https://www.imore.com/sites/imore.com/files/styles/w1600h900crop/public/field/image/2019/09/apple_watch_series_5-new-case-material-made-of-titanium-091019.jpg?itok=Bf2ID2dP)">
<div class="intro-subtitle bg-cover">
<h1 class="text-white"> Watch Edition</h1>
<p class="h4 pt-2 pl-3 text-white">Introducing titanium. Reintroducing ceramic.
<br><br><button type="button" class="btn ml-2 text-primary" style="border-radius: 30px; width:140px;">Learn more <i class="fa fa-angle-right" aria-hidden="true"></i></button>
</div>
</figure>
</section> -->
<!-- <section class="content-section" data-scroll>
<figure class="figure" id="video"><iframe width="100%" height="100%" src="https://www.youtube.com/embed/5bvcyIV4yzo?autoplay=1&loop=1&playlist=GRonxog5mbw" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowFullScreen="allowFullScreen"></iframe></figure>
<div class="content">
<header class="header">
<div class="subheading">Made by apple</div>
<h2 class="heading">Brand New Apple Watch Series 5</h2>
</header>
</div>
</section> -->
<!-- longwatchstyle studio -->
<div class="intro-subtitle bg-cover mt-5">
<h3 class="mt-5">Apple Watch Studio</h3>
<p class="h1 pt-2 pl-3">Any case. Any band <br> Any style you want.
<br><button type="button" class="rainbowbtn ml-2 mt-5 text-primary" style="z-index:19;"> <span>Creat your
style</span></button>
</p>
<div class="smaller pb-3">
<div class="watchmove h-100">
<img class="longwatch img-fluid w-100" src="images/overviewlong.jpg" alt="">
<img class="bigface img-fluid" src="images/overviewbigface.png" alt="">
</div>
<!-- <video width="100%" autoplay muted>
<source src="video/style.mp4" type="video/mp4">
</video> -->
</div>
</div>
<!-- //hermes intro -->
<div class="container container-fluid">
<div class="intro-subtitle bg-cover">
<h3 class="mt-5 text-dark"> WATCH | Hermès </h3>
<p class="h1 pt-2 pl-3">A deep collaboration.<br> A dramatic new collection.
<br><button type="button" class="rainbowbtn ml-2 mt-5 text-primary" style="z-index:9;"><span>Learn
More</span></button></p>
</div>
</div>
<!-- //hermes videointro -->
<div class="row">
<div class="col-md-12 col-12 ">
<div class="content-section " data-scroll>
<figure class="figure bg-cover "><video width="100%" autoplay loop muted>
<source src="video/hermes.mp4" type="video/mp4">
</video></figure>
<h4 class="text-white ml-5"> WATCH | Hermès</h4>
<h6 class="text-white ml-5">Lorem ipsum dolor sit amet consectetur adipisicing elit. Repellat, quam.
</h6>
</div>
</div>
</div>
<div class="container my-5">
<div class="row">
<div class="col-sm-6 col-12 m-0 pl-0">
<div class="intro-subtitle bg-cover h-100" style="background:rgb(255, 255, 255)">
<!-- <i class="nikelogo"><img class="img-fluid" src="https://www.iconcept.fr/img/cms/Produits/Apple-Watch/Logo-AWnikePlus.jpg" alt=""></i> -->
<h3 class="mt-5 text-dark">Gold Stainless Steel Case with Sport Loop</h3>
<p class="h5 mt-2 pt-2 pl-3">Available 10.4
<br><button type="button" class="btn btn-primary ml-2 mt-5 text-light">Order</button></p>
<div class="smaller pb-5" style="transform:scale(0.95);">
<img class="img-fluid" src="https://store.storeimages.cdn-apple.com/8756/as-images.apple.com/is/MX2Q2_VW_PF+watch-40-stainless-black-cell-hermes5s_VW_PF_WF_CO?wid=750&hei=712&fmt=jpeg&qlt=80&op_usm=0.5,0.5&.v=1566450046725,1567126783841" alt="">
</div>
</div>
</div>
<div class="col-sm-6 col-12 m-0 pl-0">
<div class="intro-subtitle bg-cover h-100" style="background:rgb(255, 255, 255)">
<!-- <i class="nikelogo"><img class="img-fluid" src="https://www.iconcept.fr/img/cms/Produits/Apple-Watch/Logo-AWnikePlus.jpg" alt=""></i> -->
<h3 class="mt-5 text-dark">Gold Stainless Steel Case with Sport Loop</h3>
<p class="h5 mt-2 pt-2 pl-3">Available 10.4
<br><button type="button" class="btn btn-primary ml-2 mt-5 text-light">Order</button></p>
<div class="smaller pb-5" style="transform:scale(0.95);">
<img class="img-fluid" src="https://store.storeimages.cdn-apple.com/8756/as-images.apple.com/is/MX2V2_VW_PF+watch-40-stainless-silver-cell-hermes5s_VW_PF_WF_CO?wid=750&hei=712&fmt=jpeg&qlt=80&op_usm=0.5,0.5&.v=1566450071596,1567124631247" alt="">
</div>
</div>
</div>
</div>
</div>
<!--
<div class="container my-5">
<div class="row">
<div class="col-sm-12 col-12 m-0 pl-0">
<div class="intro-subtitle bg-cover h-100" style="background:rgb(255, 255, 255)">
<h3 class="mt-0 text-dark">Single Tour Deployment Buckle</h3>
<div class="smaller pb-5" style="transform:scale(0.95);">
<img class="img-fluid" src="https://store.storeimages.cdn-apple.com/4982/as-images.apple.com/is/MX2R2_VW_34FR+watch-44-stainless-black-cell-hermes5s_VW_34FR_WF_CO?wid=750&hei=712&fmt=jpeg&qlt=80&op_usm=0.5,0.5&.v=1566419687831,1567126795404" alt="">
</div>
</div>
</div>
</div>
</div> -->
<!-- //hermes loop -->
<div class="container container-fluid mt-5" style="background:rgb(255, 255, 255);margin-top:150px;">
<div class="form-row">
<div class="col-sm-7 col-12">
<div class="smallerpic">
<img class="img-fluid" src="https://store.storeimages.cdn-apple.com/8756/as-images.apple.com/is/apple-watch-bands-header-hero-201909?wid=1432&hei=960&fmt=jpeg&qlt=80&op_usm=0.5,0.5&.v=1566425736258" alt="">
</div>
</div>
<div class="col-sm-5 col-12 mt-5" style="background:rgb(255, 255, 255)">
<div class="intro-card-apple mt-5">
<h1 class="text-dark text-center mt-5"> Deep tones<br> Crisp colors.</h1>
<br>
<a href="#" class="h5 ml-2 mt-5 text-primary ">Shop the latest bands <i class="fa fa-angle-right"
aria-hidden="true"></i></a>
</div>
</div>
</div>
</div>
<div class="compareall d-none d-sm-block">
<div class="intro-ekg bg-cover pt-5">
<h1>Compare Apple Watch models.<br></h1>
<h1 class="pl-3">
<button type="button" class="btn ml-2 text-primary" style="width:340px;font-size:20px;">Find the one
that’s right for you<i class="fa fa-angle-right" aria-hidden="true"></i></button>
</h1>
</div>
<!-- //compare model -->
<!-- //always on desktop -->
<div class="container-fluid p-0 " style="margin-top:-150px;">
<section class="row no-gutters align-items-center">
<div class="col-12 d-flex ">