-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
795 lines (499 loc) · 51.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="apple-touch-icon" sizes="57x57" href="img/favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="./img/favicon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="./img/favicon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="./img/favicon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="./img/favicon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="./img/favicon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="./img/favicon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="./img/favicon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="./img/favicon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="./img/favicon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="./img/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="./img/favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="./img/favicon/favicon-16x16.png">
<link rel="manifest" href="./img/favicon/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="./img/favicon/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" href="./styles/index.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css"
integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<title>Document</title>
</head>
<body>
<div class="header__wrapper">
<header class="header">
<div class="header__header-box container flx-flow-rw jc-sb alg-cen">
<div class="header__logo">
<a href="/">
<!-- <div class="img-box"> -->
<svg width="96" height="42" viewBox="0 0 96 42" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M9.29458 41.9V38.7375H8.53959V38.2328H9.29458V37.7715C9.29458 37.337 9.41549 37.0055 9.65738 36.7786C9.89921 36.5516 10.2342 36.4381 10.6624 36.4381C10.9157 36.4381 11.1363 36.4635 11.3275 36.5158V37.0354C11.218 37.0085 11.115 36.9906 11.0236 36.9801C10.9304 36.9697 10.8405 36.9652 10.7507 36.9652C10.2048 36.9652 9.93193 37.2205 9.93193 37.7312V38.2343H11.2997V38.739H9.93193V41.9015H9.29458V41.9ZM12.2851 41.9V38.2328H12.9224V38.8704C13.0483 38.639 13.2101 38.4613 13.4062 38.3374C13.6022 38.2135 13.8294 38.1508 14.0876 38.1508C14.2118 38.1508 14.3295 38.1612 14.4422 38.1836V38.7659C14.3801 38.7584 14.3131 38.7525 14.2429 38.748C14.1709 38.7435 14.1023 38.7405 14.0353 38.7405C13.7428 38.7405 13.5042 38.8226 13.3228 38.9854C13.1415 39.1481 13.0074 39.3661 12.9208 39.6394V41.8984H12.2851V41.9ZM17.289 41.9821C16.8886 41.9821 16.5422 41.9 16.248 41.7357C15.9538 41.5715 15.7284 41.3445 15.5682 41.0579C15.408 40.7697 15.328 40.4412 15.328 40.0709C15.328 39.6976 15.408 39.3676 15.5682 39.0795C15.7284 38.7913 15.9555 38.5658 16.248 38.4016C16.5405 38.2373 16.8886 38.1552 17.289 38.1552H17.369C17.7694 38.1552 18.1159 38.2373 18.41 38.4016C18.7025 38.5658 18.9297 38.7928 19.0898 39.0795C19.25 39.3676 19.3301 39.6976 19.3301 40.0709C19.3301 40.4412 19.25 40.7711 19.0898 41.0579C18.9297 41.346 18.7025 41.5715 18.41 41.7357C18.1175 41.9 17.7694 41.9821 17.369 41.9821H17.289ZM17.2922 41.4431H17.3642C17.7645 41.4431 18.0816 41.3176 18.3152 41.0668C18.5489 40.8159 18.6665 40.483 18.6665 40.0679C18.6665 39.6498 18.5489 39.3168 18.3152 39.0675C18.0816 38.8181 17.7645 38.6927 17.3642 38.6927H17.2922C16.8919 38.6927 16.5748 38.8181 16.3411 39.0675C16.1075 39.3168 15.9898 39.6498 15.9898 40.0679C15.9898 40.483 16.1075 40.8159 16.3411 41.0668C16.5748 41.3176 16.8919 41.4431 17.2922 41.4431ZM20.6309 41.9V38.2328H21.2682V38.9152C21.4136 38.6793 21.5983 38.4926 21.8254 38.3568C22.0509 38.2209 22.3141 38.1522 22.6115 38.1522H22.6915C23.3583 38.1522 23.7881 38.4449 23.9777 39.0287C24.1312 38.7584 24.3306 38.5449 24.5774 38.3881C24.8241 38.2314 25.1068 38.1522 25.4272 38.1522H25.5121C25.9631 38.1522 26.3079 38.2911 26.5466 38.5673C26.7852 38.8435 26.9028 39.2392 26.9028 39.7528V41.9015H26.2655V39.8365C26.2655 39.075 25.9599 38.6942 25.3504 38.6942H25.2785C24.9908 38.6942 24.7441 38.7808 24.5365 38.9555C24.329 39.1302 24.1786 39.3512 24.0855 39.6185V41.9H23.4481V39.8365C23.4481 39.075 23.1442 38.6942 22.5363 38.6942H22.4595C22.1719 38.6942 21.9251 38.7808 21.7192 38.9555C21.5133 39.1302 21.363 39.3512 21.2698 39.6185V41.9H20.6309ZM36.4725 36.6128V37.3176C36.4725 37.3638 36.4382 37.3937 36.3892 37.3937H33.0767V38.8346H35.8107C35.8613 38.8346 35.894 38.8659 35.894 38.9107V39.6155C35.894 39.6618 35.8597 39.6916 35.8107 39.6916H33.0767V41.8223C33.0767 41.8686 33.0424 41.8984 32.9934 41.8984H32.1632C32.1126 41.8984 32.0798 41.8671 32.0798 41.8223V36.6128C32.0798 36.5665 32.1142 36.5367 32.1632 36.5367H36.3892C36.4398 36.5367 36.4725 36.568 36.4725 36.6128ZM43.2315 41.9H42.318C42.2673 41.9 42.2346 41.8776 42.2216 41.8313C42.1006 41.3908 41.9535 40.9264 41.7852 40.4591H38.9793C38.811 40.9264 38.6656 41.3908 38.5479 41.8313C38.5348 41.8776 38.5022 41.9 38.4515 41.9H37.5707C37.5119 41.9 37.4792 41.8686 37.4955 41.8164C38.0234 40.1082 38.829 38.2224 39.6428 36.6367C39.6804 36.5636 39.7262 36.5367 39.8063 36.5367H40.9975C41.0776 36.5367 41.1234 36.5636 41.161 36.6367C41.983 38.2194 42.7756 40.1082 43.3083 41.8164C43.3247 41.8701 43.2903 41.9 43.2315 41.9ZM41.4748 39.6319C41.1692 38.8585 40.8292 38.0836 40.4812 37.3788H40.2834C39.9353 38.0836 39.5922 38.857 39.285 39.6319H41.4748ZM44.7317 39.2646C44.7317 37.6013 45.9311 36.4366 47.6421 36.4366H47.768C48.8416 36.4366 49.6718 36.9353 50.1114 37.655C50.1408 37.7013 50.1326 37.7386 50.0819 37.7626L49.3433 38.0955C49.2927 38.1179 49.2306 38.1179 49.1962 38.0612C48.8857 37.5714 48.42 37.3101 47.7336 37.3101H47.6078C46.5309 37.3101 45.7873 38.091 45.7873 39.2258C45.7873 40.3635 46.5162 41.1265 47.6078 41.1265H47.7336C48.438 41.1265 48.8481 40.9085 49.1635 40.5756C49.206 40.5337 49.2518 40.5263 49.3024 40.5487L50.0607 40.8861C50.0901 40.9011 50.1032 40.9205 50.1032 40.9399C50.1032 40.9593 50.095 40.9742 50.0787 40.9966C49.6129 41.6177 48.7746 42 47.7516 42H47.6258C45.8854 42 44.7317 40.9085 44.7317 39.2646ZM56.7918 41.119V41.8238C56.7918 41.8701 56.7575 41.9 56.7085 41.9H52.306C52.2554 41.9 52.2227 41.8686 52.2227 41.8238V36.6143C52.2227 36.568 52.257 36.5382 52.306 36.5382H56.6333C56.684 36.5382 56.7167 36.5695 56.7167 36.6143V37.319C56.7167 37.3654 56.6824 37.3952 56.6333 37.3952H53.2196V38.7898H55.996C56.0467 38.7898 56.0794 38.8211 56.0794 38.8659V39.5632C56.0794 39.6095 56.045 39.6394 55.996 39.6394H53.2196V41.0414H56.7085C56.7575 41.0414 56.7918 41.0728 56.7918 41.119ZM64.3714 40.4293C64.3714 41.3684 63.5835 41.9 62.1912 41.9H59.3068C59.2562 41.9 59.2235 41.8686 59.2235 41.8238V36.6143C59.2235 36.568 59.2578 36.5382 59.3068 36.5382H61.9363C63.2909 36.5382 64.028 37.0279 64.028 37.9253C64.028 38.515 63.7011 38.9018 63.0377 39.0825C63.9692 39.2601 64.3714 39.7708 64.3714 40.4293ZM61.915 37.3713H60.2203V38.8122H61.915C62.6732 38.8122 63.0213 38.5867 63.0213 38.0925C63.0213 37.5983 62.6732 37.3713 61.915 37.3713ZM63.3482 40.3486C63.3482 39.8499 62.987 39.6244 62.1944 39.6244H60.2203V41.0653H62.1944C63.0001 41.0653 63.3482 40.8503 63.3482 40.3486ZM66.1276 39.2183C66.1276 37.6013 67.3014 36.4366 69.146 36.4366H69.2718C71.1171 36.4366 72.2902 37.6013 72.2902 39.2183C72.2902 40.8354 71.1171 42 69.2718 42H69.146C67.3026 42 66.1276 40.8354 66.1276 39.2183ZM69.2737 41.1265C70.4765 41.1265 71.2365 40.3725 71.2365 39.2183C71.2365 38.0656 70.4784 37.3101 69.2737 37.3101H69.1479C67.9451 37.3101 67.1851 38.0641 67.1851 39.2183C67.1851 40.371 67.9432 41.1265 69.1479 41.1265H69.2737ZM73.9946 39.2183C73.9946 37.6013 75.1684 36.4366 77.013 36.4366H77.1387C78.984 36.4366 80.1572 37.6013 80.1572 39.2183C80.1572 40.8354 78.984 42 77.1387 42H77.013C75.1684 42 73.9946 40.8354 73.9946 39.2183ZM77.1387 41.1265C78.3416 41.1265 79.1015 40.3725 79.1015 39.2183C79.1015 38.0656 78.3435 37.3101 77.1387 37.3101H77.013C75.8102 37.3101 75.0502 38.0641 75.0502 39.2183C75.0502 40.371 75.809 41.1265 77.013 41.1265H77.1387ZM87.3899 41.9H86.3084C86.2364 41.9 86.2073 41.885 86.1612 41.8343C85.4031 41.0175 84.506 40.2068 83.7429 39.608H83.2558V41.8223C83.2558 41.8686 83.2211 41.8984 83.1724 41.8984H82.3423C82.2918 41.8984 82.259 41.8671 82.259 41.8223V36.6128C82.259 36.5665 82.2931 36.5367 82.3423 36.5367H83.1724C83.223 36.5367 83.2558 36.568 83.2558 36.6128V38.7271H83.7511C84.5679 38.0522 85.3229 37.3251 85.9388 36.5934C85.9818 36.5441 86.014 36.5367 86.0645 36.5367H87.0879C87.1385 36.5367 87.1631 36.5591 87.1631 36.5904C87.1631 36.6053 87.1549 36.6248 87.1334 36.6472C86.2313 37.6625 85.3393 38.4942 84.5124 39.1377C85.5516 39.9425 86.5371 40.8384 87.4341 41.8044C87.4815 41.8537 87.4569 41.9 87.3899 41.9ZM95.0642 0H90.0685V24.3886H95.0642V0ZM71.6907 15.2597C71.6907 12.2286 73.7773 9.91282 77.1324 9.91282C80.3385 9.91282 82.6121 12.1943 82.6121 15.2597C82.6121 18.3594 80.4497 20.6409 77.1324 20.6409C73.8904 20.6409 71.6907 18.3594 71.6907 15.2597ZM82.6885 24.3886H87.4607V6.16507H82.6134V7.80004C81.607 6.77874 79.4825 5.859 76.8349 5.859C70.7589 5.859 66.6949 9.87852 66.6949 15.2597C66.6949 20.9141 70.7949 24.6947 76.8349 24.6947C80.0409 24.6947 81.9418 23.4689 82.6873 22.5835V24.3886H82.6885ZM62.4085 3.09972H57.4128V6.16507H55.4747V10.2189H57.4128V19.3135C57.4128 22.9239 59.4996 24.5589 63.4887 24.5589C64.8307 24.5589 65.837 24.423 66.0234 24.3886V20.3692H64.9412C63.041 20.3692 62.4069 19.6883 62.4069 17.9174V10.2189H65.9103V6.16507H62.4069V3.09972H62.4085ZM54.169 6.13077C54.0579 6.09642 53.8716 6.06206 53.4974 6.06206C51.4089 6.06206 50.6261 7.22073 50.2911 7.66272V6.16507H45.6304V24.3886H50.6261V13.4545C50.6261 11.615 51.4089 10.525 54.1674 10.3548V6.13077H54.169ZM28.0369 15.2941C28.0369 12.2286 30.1613 9.98002 33.4428 9.98002C36.649 9.98002 38.8862 12.2615 38.8862 15.2941C38.8862 18.3266 36.7618 20.5737 33.4803 20.5737C30.2741 20.5722 28.0369 18.3594 28.0369 15.2941ZM23.0412 15.3269C23.0412 20.7081 27.2166 24.6933 33.4428 24.6933C39.5938 24.6933 43.8803 20.6065 43.8803 15.2582C43.8803 9.877 39.7425 5.85754 33.4428 5.85754C27.4405 5.859 23.0412 9.91136 23.0412 15.3269ZM5.78275 15.2941C5.78275 12.1943 7.87122 9.91282 11.2621 9.91282C14.5795 9.91282 16.7791 12.1943 16.7791 15.2941C16.7791 18.3938 14.6922 20.6424 11.2997 20.6424C7.98234 20.6409 5.78275 18.3938 5.78275 15.2941ZM5.93145 22.9567C6.86293 23.7063 8.80271 24.6933 11.5612 24.6933C17.8985 24.6933 21.7764 20.5035 21.7764 15.2238C21.7764 9.73962 17.8249 5.85754 11.7851 5.85754C8.16864 5.85754 6.45439 7.25357 5.78275 7.93596V6.16507H0.935783V29.837H5.93145V22.9567Z"
fill="#1B365D" />
</svg>
<!-- </div> -->
</a>
</div>
<div class="div jc-sb alg-cen">
<nav class="nav flx jc-end">
<ul class="header__nav flx-colm">
<li class="item"><a href="#">Products</a></li>
<li class="item"><a href="#">Features</a></li>
<li class="item"><a href="#">Support</a></li>
</ul>
</nav>
<div class="header__button">
<button class="header-btn">Log Into</button>
</div>
<div class="header__burger"><span></span></div>
</div>
</div>
</header>
</div>
<div class="banner__wrapper flx alg-cen">
<div class="banner">
<div class="container">
<div class=" smaller-container">
<div class="banner__text flx-flow-colm">
<div class="banner__text-box flx-flow-colm">
<h1 class="title">If you can’t be there, feel there with Portal</h1>
<span>Smart video calling with Alexa Built‑in.</span>
</div>
<div class="button-box flx-flow-colm">
<button class="btn">Watch the Demo</button>
<button class="btn">Compare Portals</button>
</div>
<div class="promo text-main-style flx-colm">
<span class="bold text-secondary-style">Buy any 2 and save $50 <sup>*</sup></span>
Ship to multiple addresses at no extra cost.
<div class="promo-background"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portal-service container">
<div class="portal-service__box smaller-container flx flx-wr jc-cen">
<div class="card">
<div class="card__img img-box">
<a href="/">
<img src="./img/portal-tv.jpg" alt="portal tv">
</a>
</div>
<div class="card__text text-secondary-style flx-flow-colm jc-end alg-cen">
<a href="/" class="sub-title">Portal TV</a>
Smart video calling on the biggest screen in your home
<a href="/" class="more">Learn More</a>
</div>
</div>
<div class="card">
<div class="card__img img-box">
<a href="/">
<img src="./img/portal.jpg" alt="portal">
</a>
</div>
<div class="card__text text-secondary-style flx-flow-colm jc-end alg-cen">
<a href="/" class="sub-title">Portal</a>
Smart video calling on a 10” HD display
<a href="/" class="more">Learn More</a>
</div>
</div>
<div class="card">
<div class="card__img img-box">
<a href="/">
<img src="./img/portal-plus.jpg" alt="portal+">
</a>
</div>
<div class="card__text text-secondary-style flx-flow-colm jc-end alg-cen">
<a href="/" class="sub-title">Portal+</a>
Smart video calling on a 15.6” HD display
<a href="/" class="more">Learn More</a>
</div>
</div>
<div class="card">
<div class="card__img img-box">
<a href="/">
<img src="./img/portal-mini.jpg" alt="portal mini">
</a>
</div>
<div class="card__text text-secondary-style flx-flow-colm jc-end alg-cen">
<a href="/" class="sub-title">Portal Mini</a>
Smart video calling on an 8” HD display
<a href="/" class="more">Learn More</a>
</div>
</div>
</div>
</div>
<div class="smart-camera__wrapper">
<div class="container">
<div class="smart-camera__content color-prim smaller-container">
<h2 class="title-secondary">Smart Camera keeps every conversation front and center</h2>
<div class="smart-camera__img img-box">
<picture class="img-box">
<source srcset="./img/smart-camera.jpg" media="(min-width: 1024px)">
<source srcset="./img/smart-camera@0,75x.jpg" media="(min-width: 768px)">
<source srcset="./img/smart-camera@0,5x.jpg" media="(min-width: 572px)">
<source srcset="./img/smart-camera@0,33x.jpg" media="(min-width: 320px)">
<img src="./img/smart-camera.jpg" alt="smart-camera">
</picture>
</div>
<div class="smart-camera__description flx-flow-rw">
<div class="smart-camera__description-item">
<span class="sub-title">Keeps up with the action</span>
<p class="description-style">Smart Camera automatically pans and zooms to keep up with the
action. Move and talk freely and always stay in frame.</p>
<a href="/" class="more">Learn More</a>
</div>
<div class="smart-camera__description-item">
<span class="sub-title">Keeps everyone in view</span>
<p class="description-style">As more people enter a room, Smart Camera automatically widens to
keep everyone in view, so you don’t miss a moment.</p>
<a href="/" class="more">Learn More</a>
</div>
</div>
</div>
</div>
</div>
<div class="messenger container">
<div class="messenger__content smaller-container flx-flow-rw jc-sb">
<div class="messenger__img">
<picture class="img-box">
<source srcset="./img/messenger.png" media="(min-width: 572px)">
<source srcset="./img/messenger@0,75x.png" media="(min-width: 320px)">
<img src="./img/messenger.png" alt="tablet">
</picture>
</div>
<div class="messenger__description flx-flow-colm">
<div class="messenger__icons flx">
<div class="icon__messenger flx jc-cen alg-cen">
<i class="fab fa-facebook-messenger"></i>
</div>
<div class="icon__whatsapp flx jc-cen alg-cen">
<i class="fab fa-whatsapp"></i>
</div>
</div>
<h2 class="title-secondary color-prim">Makes video calls with Messenger and WhatsApp</h2>
<p class="description-style">Easily video call with friends and family on their smartphones and tablets,
even if they don’t have Portal.
</p>
<span class="blck">“Hey Portal” voice command availability varies. <a href="/">Learn more.</a> Requires
Messenger or WhatsApp account. WhatsApp is not available on tablets.</span>
</div>
</div>
</div>
<div class="story-time__wrapper">
<div class="story-time">
<div class="container">
<div class="smaller-container">
<div class="story-time__description flx-flow-colm jc-end color-sec">
<div class="description-item__top vertical-strip">
<h2 class="title-secondary">Don’t just read the story. Be the story.</h2>
<p class="description-style">With Story Time you can bring your children’s favorite stories
to life with music, animation and AR effects.</p>
<a href="/" class="blck text-main-style color-sec">Discove</a>
</div>
<div class="description-item__bottom flx-flow-colm description-style">
<span class="bold vertical-strip">Put a smile on your face with AR masks.</span>
<span class="bold vertical-strip">A photo frame that’s picture-perfect</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="alexa container">
<div class="alexa__content smaller-container flx-flow-row-rev jc-sb">
<div class="alexa__img flx-flow-colm alg-cen img-box">
<img src="./img/alexa.png" alt="tablet">
<span class="blck">Amazon, Alexa and all related logos are trademarks of Amazon.com, Inc. or its
affiliate. Additional account registration, terms and fees may apply. Features may vary by
location.</span>
</div>
<div class="alexa__description flx-flow-colm">
<!-- <div class="alexa__description-img img-box">
</div> -->
<svg width="60" height="60" viewBox="0 0 60 60" fill="none" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<path d="M0 0H60V60H0V0Z" fill="url(#pattern0)" />
<defs>
<pattern id="pattern0" patternContentUnits="objectBoundingBox" width="1" height="1">
<use xlink:href="#image0_1_191" transform="scale(0.00833333)" />
</pattern>
<image id="image0_1_191" width="120" height="120"
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHgAAAB4CAYAAAA5ZDbSAAAABGdBTUEAALGPC/xhBQAAE71JREFUeAHtXQl0VNUZ/t+brAQIiBIhARJQgrIF0ISwGbCAigsuQZYGQokIWkVbwNpapbZqi1jxqIWyGEiOqCx2AwWrEJAQVoEgQlCEwERKBIWEEJJZXv9/dMY3k5m3bwNzz5nz3rvLv33z7rvrfwEiIWKBiAXC1wJM+IoeXPLUnPxWzgZ3V+C4FBaYFm43tOAYpgULbs+VSjEcV+sGtpauLAt4z9UCw9ijYtkjx0uWnQtOOTxjwxbg3NyVtjL72n4MB4M4N9yAqKVzAOnAQVtVUDBQjUapAI6pYFg4xDGwNTvlzj2rVo1xqaJrUuGwAZjjOCZt4OTeLrd7GL6VQxmGG8Jx0NIIuzEM1CD7Lfi2b7Kx7MZjpYX7GRTACN5qeVge4I4DJ3V3O7g8fEMnIKApahXWojwCbsc3/G02mik+Ubr8oBY09aJhSYC7DJjW9pKrbjwacSIA10cv5bWhy+zFP19RnC1hxdFtC6u1oakdFUsB3CmzIM0JjtkMcJM54GK1U1N/SgwwDRwwhVEQPbdy55Jj+nOUxsESAKdm53dzuV1PuwHwrYUoaaJbNBcDThZghY21vXS8bNlhs6U0FeDkrAL8pja8jFXxGKyK0S6XU2DcWHWvBIidVbVjid0szWxmMO43dWq0zdb91wDO1ci/L/5M/aPpZAPSqQeA6+HE5AzH9aOydp3aswcrKWOD4YZN6Z+fA5zrTWwR32isquZyw5b3F8DCI/ay4s1GSmIYwCnZT8aD++xr2J99yEgFrcYL+8+LgW0zw172ar0RshkCMDWinG73SgS3pxFKWZ0HgnwgimXHGNEI0/0bnJyVl+d2c/9Go1tikMIi4Ce5OW5yy5TeJ2urysv1lEm3N5gaUqfL6xfgOPEUPRUId9o43r00qVf89D2LFjn00EUXgHuNmJnw3bnqNThYMVIPoS83mjhIsuGqVm3vL/9oXp3WumkOcNecqVdfrL+0Dr+3mVoLeznTw+/yzmbxcaOOlCw6o6WemgKcNmBKp0Zn4wYUMF1LIa8gWhUxUTEjj21bWqmVzpoBTOA6XI1brTLjo5WBjKZDM1XRtphBWoGsyfAgVcv05kbAVf93IBuSLcmm6qkBjq2oDNSgom8ukolUyyptySueTjYl2/LiFN2qApi6Qp7WcqRBpcj4QoWokUq2JRsL5RNLUzXQYYu+cRFWKbliTCLpii1wXV21s32NvZwGihQFxQDTCBXO3f5REddIIekW4KAvjnh9rXTES1ErmsaWHS7XbpRS9TdCuqZXdM46nF+9ScnYtexvMM0K0cRBBFxD/3AJZHPPjJxMtrIB/nHKLzIrJNPQarN7ZuJwulUuHVlVNE3Wc27XJrlMIvm1swDD2obaty8rkUpR8hvsaa7jSgyphCP5dLIAYiCn6yQZ4NP7Lj2BXaIrapmNThCpIksYEBZSiUiqoj2rH7kGWgIaaTVLtay++eqAie0mZbWmxDXIjfPCDdyEZnHQpVM76NKxHSRf2waaJ8RDc4yjcOHiJbhQVw9V/zsLR0+cgqOVp6AO48Io4IvmwWSsmMyib3Cn/nk3ON3M51Zft4zzqZDdtxsMG9AbBt50I/RI74Q7QkXV89gHW6jweUUllO7+AjZu2w9lnx3G3adW31vGuKNYrkfl9uJDQiCLWiAla2IRKpsnRMTMtDatW0LB2BFw/+0DoX1SG01E+eb0WVjzYSksefcjOPt9jSY09SDCMlB0ckfxJCHaggB79goxDUesuJ0kPi4WHhp3GzySNwqr3x+qXiFFlaRdqLsEfyteB4vfWQ/1lxqUkNC3DG6TieJiuwrthRIci26e3PMlrJottfTGZmNh7N1DYMncGTBySF+IiZHYjFBgaqJN1f2Ddw2B2rqLcOirk1aruln0ThBbW7WfpmuDhpBvcFpWQZKDa6y00i6/dm2vgqUvz4Be3dKCKqN3ZPnhYzBl1mtwqvo7vVlJpk+7GmOjmnUMtXU1ZD+4kXOMtxK4fbp3gXXL/mAauGRx+mORDCSLVQJhdMlZPyGUPCEBxqrZMg2re0cOgNULfwtt2ySG0sOweJKBZCGZrBNCYxX0G0xuEzg3Z4m53scn3wMvzJoIUbagoppiY5LljqE3gdPlhh37KkyRIYBpu9apfVafP7n/24D44Jut3S43uk4wP9x32wCYPe1+VYKcq7mAjSM7VBy1A90TKE6nC1j0qJLeORm6d+0InXEwhMU+h9xAstlPfQvvr98mt6jm+T1+TAB+E0i4iVZz5sxhl3x4tBL7+abuJcq4sTOs+fvvIDZG/pKkL499A+/8ezOs/WQHfHNavEFEXa7hg/vAhNFDsdV8Q6CNBJ8bGh1w/8MvwL4vvhbMp3ciLbc9ub2oIw7u+I3QNAG4U/bEPk4X95neAgnRT7q6FXyw/Hmgq5xQuvsQzF24GvYc+FJOMb+8nTteCzN+cY9n4MQvQeDh9JlzcMekZ4GuZoYoG9O3sqxoL1+GJh82XP8zHt9e0/YUUT93xetPwXWp7fhyCt5/d64Wnv7Lcnj+tRWquzDfn78A60v2wG78k2T2TofEFs0EeVMijXFnZqTDyrVbzO0nM8yRGvv+Mr7ATVrRCO4wfgaj7x+8cwh2QzpLZkuNnFvGPAWrP9gquYyUjFt2fA7Dxj0N6zbukpLdIzPJbmYgB3GB/P0AJveA2D0aHJjJqOf4uBj41UP3Sma3fvMemPD4y0BvnR6BhicfeeZNeO8/WySRJ9lJB7MCef/7AcOfJPCromtaNs/kOPejPyUbezdtwh1wW04/SUxpMuCxZxeAw+GUlF9pJppV+u+ne6F1YnPRAQ6akrxY3wA79x9Ryk5tuVj7hS/XYTVd5SXk9wYznHOQN8HoKxnw0Ul3SmJ74PBxmP3iW+DCLo8RgUCe8+rbkvq8pAPpYlbANrQfhn4Ao8PNbmYJVjB2JLTAN0AsnK+9CA//9nWg7omRgf5Mv/z9AtHPAelAupgVPJ53ecz9ACaXvLw0w25pYv6BO/z+eCF5/35eEZyoajJgEzK/lgk0yfDUS4WiJEkXqYsNRInJzRCAoR/A2EM2BeAs7GLQshqxcBhHo/6xwa8XIFZE8/QPNu3yrP4QIky6kE5mhEAMfQCTp3Sc2FfnTFuhRrcOzJBUct6iNeb2M3+Ucv5b/xSVV6pOooTkZkAMPVj+WM4HsMcNvlxiGuUfeLP48CAtjKMBCCuEDZs/AxoOFQpSdBIqryaNj6UPYHAzHdQQVVqWVj/2TE8VLU59XqsEalWLydOjayqQbqYEPK/Cy9cHMMtwprTtaWmrlAbJx1v3eWW2xHXz9gOCctDsFOlmRqDDSLx8fQDT6STeSCOvtG5ZLJyrqcMJhK/EshmaTvLQoIZQkKKbUHmlaXwsfQDT0TNKCaopJ6X1XFlVDW6U2krB4XQCrdESClJ0EyqvNI2PpQ9gOldIKUE15Wh4Tyyc/vZ7sSympNtPnRXkK0U3QQIKE/lY+gDmo66QrqJi3u0kQoWrz5o7zxpKNtr+IhSk6CZUXmkaH0sfwEqJGVGu7qLwt84IGYLxwBWNwaJ9cWLpvoxa3+BiaS9JH8B0zJs30sgrbQQTC2YO3gvJ1rK58GIAs/6YOG3omz/1AUxn+Qkpo1eaWDVHfK0KsJhcUnTTw658LH0Am/UG0xZOsUDrpKwYrmol3C6VopseevGx9AFMp3DqwUyMJu3PFQs0YCBmTDEaWqfTstvrU9sLkpWimyABhYl8LH0Ae45YVUhQTTEaY6ahP7Fg1uxMKLloTbXQUCQeY+DZWB6qvJ7xfCx9ANP5uXoyDUWbdtYfqDgeKtkXP3pktu/eCjd9e1wnKMbnR46b5zWAh6UPYDocWVBiHRNLdwluUvdwHnlLX9yb1EpHKeSRvnVgb8ECUnQSJKAikY+lD2DPydd4OLIKuoqLflIqPpFA+4Emj/mZYh5aFmyd2AKGiQAsRSctZfLRQgz5p5j7AKYMuM2hwpfRwBta2yylxTl1/O3QMfkaAyULzuru4VmCm+FIF7M2pQVi6AcwHWseXCV9Y6mRJWXhOu1T+sOTP9dXGBHq1HrOf0C4Jlm17lNJDUcRVsqSAzD0A5jOrFdGVX2pJe9uQDcJwmO7xIU2idGbbFYYPaI/XJ8WuntUc+EiLH3vI7PEg0AM/QDmGNhqlmS0O+HN5WslsX/msbEwOLOHpLxaZqJ9U08WjBYk+beidaJLawUJqEwMxNAP4OyUO/fgClbT/AYtfW8D/E/C1CCtliic9wTk9O+l0hzyilPNkdYh9KgayU46mBUIO8KQz98P4FWrxrhw8fsWfgYj7+svNcJfF/9DEsu42BgofOVJMKp/fB2OWs2cep+gbK8sfh/dLTUK5tEzkbAjDPk8/ACmBGxDbOJnMPr+PdyCuffg15LYRkfZ4I3np8Orz071uCqUVEhBpijkQzyENqOTzCvXfqqAunZFgmHXBGAby27UjqV8SrRFpGD2fFmbqXNHDYJPVrwIuaMGA30ntQ4vzJokuKWVNn6TzEbtlQqlXzDsmlgjf0RqObkDCEXEiHgy2JRZ82XtP6L1T68++xBsXjkX7h7eXzMxyZvehNE5IenRHimS1ezd/YTZsdLC/YGC+m0fpcSSkhKuZXJGEt5K2ywUSFGjZ2qw2E+dgdvRm42c0KplAowadjN6CGgPH+JCeSkTGaHo0/f9z09NFlzW+6vnF8OmsvJQJAyLR4doC3499b6PAxk2AZgytErNOIVulB4JzGz0M7kOJK845E5QbkjvkuKpAZTu1SX3hfPxuyvkfWfuwjWwbHUTm8oVVZP8tmh2WjA3Sk2csHi5JWdOREcsXB/vs5lXcjo275kpgo2cYPKR745eI+XvZ6dq+bknxgcj6Ymjannmn5biRjjz3Sf9ICSzt2pnUd9gAjf5BvsyMVyR797kGzLkA9NehOqz52VJQosErr2mteQy5E7pdWyVC4FLMpAs1gEX1RPAKiTAcbaEFeToUrJ1dM649+BRGJX/nOhi80AxpK5N7tktFf7z1nPoojA7kITvmRa6kwwki1UCYURYhZInZBVNBZIzJy0AcE8LVdiMeOoGkTcbbFBI8qOV8+Bv4KvjoXcCdmh/DXrTe0AQWGohv7LofaA+utldoaY2ZxdW7Vw+vWn8DzFRoRIoPgqi5zqZhgIrOQQnA6/4V4lnI7gah+C0IvKx/LsgP3c4xEQHN0N4OASPniuEoeAbTAU7ZOUtx+VFE4WImJkm5tI/8A0mn9Pj7rnF40cj1LrmK8alPwEXjodyDLq5u8fJKG1LJYCrsYrNye7lqYZp531g14f6ygePnICtuw6G1aEc0Ta2u9iBlaJvMIGcnDXxXRwxeJDuwyV4j9WhwX86iYWqZO9eocvgWB1afvNu1Y7icWJ4SAS4IAUiB2OJ2dLIdMkHYwUdyQqUtLbqs5rE5AxyTDU8MC3ybLwFsGv0TNXOwvVSOIfsBwcWTsqIm4+ftC8C4yPPxlqAMCAspHKVVEV7iaVEjpf1msK0q9zjZSVV0V5tauz7jiemZCTjcz9vXORqnAXw7V1k31H0hhyOkqtoH1G2zQzsfhzwPUduDLGAx+bs1U/IZSarivYST83O7+ZwuXbjc4I3LnLV1QJ10TbbTWJ93mASyKqivQTO2fedQdf/J/H5Xm9c5KqjBRgowAM3FC2lUgQwqVJbVV6e2KF3BxynDjoPqaO6VxRpXMi+FAc0/qRUafnfYB6npF7x07FPZt5CYJ4sl+Mt2ZZsrEY3Rd9gPsNeI2YmfHe+eiOO51rqlFK+jOF4j42qnVclth1W/tG8OjXyqwaYmHfNmXp13cX6rXhrjpNkNRawZtmKhGbxg46ULDqjVjxNACYh0gZM6eRwNW7FiZkUtUJdyeWxr2uPtsUMOrZtaaUWdlD1DeYLQAKRYBhXwY+P3MuyQIWW4BJnzQAmYgQyVS30/aDnSJBuAbIZ2U6rN9fLWVOAiSh9N6hxEGlde00sfiVbkc20+OYGctMcYGJALT+c8biL+nCBDCPP/hYgG5Gt1LaW/an+9KRZI+snkv53yVl5eTgYgqszI8Oa/pYBnLSH6TiIURwQr+mj7gCTtDR27XS7V2Jfuaem0ocpMZo4iGLZMUrGluWqrEsVHSiERxG2TRYqtjgw7Up79tgAbWEEuGRbQ95gPoi0aAA415vYX5a/o4xPKMzuPathGNuj9u3LSowU3ZA3mK8QKZjUOz4DW46zMV7VMByfroXv60hX0tlocMkmhr/BfCCSs3C1JjTOw0ZYLu5kNPzPxpdF+3vGjdZdBRAzs2rHErv29KVRNBVgr4i0uN7FMU+jC/xxVtom45VP1pUBJ76x79gY7qXK7cWHZJXVIbMlAPbq1SmzIM0JjtkMcJMR7FhvfDhcEdQGDphC2s9VuXPJMavIbCmAvUZJyypIauQcuAOby7PKJnSvbE2vzF780hXHRcW/fXTbwuqm6ebGWBJgvkk6DpzU3e1AoBluglVmqmjGB/16vs1GM8UnSpcf5MtrtXvLA+w12Jw5c9jCDV/3xp2OQxHoYfhmD8ZrS2+6nlcEtAbf0k/xuhGd7G06vm35PuzPirup11MoibTDBuBAfXJzV9rK7Gv70Zn1nmPN8eRrtHg6NtLUnYGM/pbRKBXkeRfHiQ+R70dyDxjoQS5QHqs+hy3AoQxKhyN7zs/FI1bpFE46qJFOAqPj3rwngtGpJHT0DF3ROxze45lR6AafPKXznWmH4hGJj1ggYoGIBYyxwP8BhEy+jkEhPbYAAAAASUVORK5CYII=" />
</defs>
</svg>
<h2 class="title-secondary color-prim">Alexa Built-in</h2>
<p class="description-style">Portal comes with Alexa Built-in, so you can see and do more. Use your
voice to control your smart home and check who’s at the front door, listen to your favorite music,
watch the news and more, hands-free. Just ask.
</p>
<a href="/" class="more btn">Learn More</a>
</div>
</div>
</div>
<div class="features__wrapper">
<div class="container">
<div class="smaller-container">
<div class="features__content flx-flow-rw jc-sb">
<div class="feature__item">
<div class="img-box">
<img src="./img/camera-cover.jpg" alt="disable the camera ">
</div>
<div class="feature-description color-prim flx-flow-colm jc-sb">
<div class="div">
<span class="sub-title">Private by design</span>
<p class="color-description">Easily disable the camera and the microphone, or block the
lens with the camera cover. And all Portal video calls are encrypted.</p>
</div>
<a href="/" class="more">Learn More</a>
</div>
</div>
<div class="feature__item">
<div class="img-box">
<img src="./img/camera-show.jpg" alt="showing the camera ">
</div>
<div class="feature-description color-sec flx-flow-colm jc-sb">
<div class="div">
<span class="sub-title">Work smarter from home</span>
<p class="">Whether you and your co-workers use Workplace, BlueJeans, GoToMeeting, Webex
or Zoom, Portal’s got the tools to keep you productive while working from home.</p>
</div>
<a href="/" class="more">Learn More</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="sale__wrapper">
<div class="container">
<div class="smaller-container">
<h2 class="title-secondary color-prim">Find the Portal that’s right for you</h2>
<div class="promo text-main-style flx-colm color-prim">
<span class="bold text-secondary-style">Buy any 2 and save $50 <sup>*</sup></span>
Ship to multiple addresses at no extra cost.
</div>
<div class="sale__content">
<div class="sale__card-container flx flx-wr jc-sb">
<div class="sale__card flx-flow-colm jc-end">
<div class="card__header jc-sb">
<a href="/" class="card__name">Portal TV</a>
<span class="card__price"><sup>$</sup>149</span>
</div>
<div class="card__body flx-flow-colm jc-end alg-cen text-main-style">
<div class="sale__card-img img-box">
<a href="/">
<img src="./img/buy__portal-tv.png" alt="portal tv">
</a>
</div>
<p class="sale__card-description color-description">Smart video calling on your TV</p>
<button class="btn">Buy Now</button>
<a href="/" class="more">Learn More</a>
</div>
</div>
<div class="sale__card flx-flow-colm jc-end">
<div class="card__header jc-sb">
<a href="/" class="card__name">Portal</a>
<span class="card__price"><sup>$</sup>179</span>
</div>
<div class="card__body flx-flow-colm jc-end alg-cen text-main-style">
<div class="sale__card-img img-box">
<a href="/">
<img src="./img/buy__portal.png" alt="portal tv">
</a>
</div>
<p class="sale__card-description color-description">Smart video calling on a 10” HD
display</p>
<button class="btn">Buy Now</button>
<a href="/" class="more">Learn More</a>
</div>
</div>
<div class="sale__card flx-flow-colm jc-end">
<div class="card__header jc-sb">
<a href="/" class="card__name">Portal+</a>
<span class="card__price"><sup>$</sup>279</span>
</div>
<div class="card__body flx-flow-colm jc-end alg-cen text-main-style">
<div class="sale__card-img img-box">
<a href="/">
<img src="./img/buy__portal-plus.png" alt="portal tv">
</a>
</div>
<p class="sale__card-description color-description">Smart video calling on a 15.6” HD
display</p>
<button class="btn">Buy Now</button>
<a href="/" class="more">Learn More</a>
</div>
</div>
<div class="sale__card flx-flow-colm jc-end">
<div class="card__header jc-sb">
<a href="/" class="card__name">Portal Mini</a>
<span class="card__price"><sup>$</sup>129</span>
</div>
<div class="card__body flx-flow-colm jc-end alg-cen text-main-style">
<div class="sale__card-img img-box">
<a href="/">
<img src="./img/buy__portal-mini.png" alt="portal tv">
</a>
</div>
<p class="sale__card-description color-description">Smart video calling on an 8” HD
display</p>
<button class="btn">Buy Now</button>
<a href="/" class="more">Learn More</a>
</div>
</div>
</div>
<div class="sale__button">
<button class="btn">Compare Products</button>
</div>
</div>
</div>
</div>
</div>
<div class="footer-wrapper">
<div class="container">
<footer class="footer flx-flow-rw jc-cen smaller-container">
<div class="footer__logo">
<a href="/">
<svg width="128" height="62" viewBox="0 0 96 42" fill="none">
<path
d="M9.29458 41.9V38.7375H8.53959V38.2328H9.29458V37.7715C9.29458 37.337 9.41549 37.0055 9.65738 36.7786C9.89921 36.5516 10.2342 36.4381 10.6624 36.4381C10.9157 36.4381 11.1363 36.4635 11.3275 36.5158V37.0354C11.218 37.0085 11.115 36.9906 11.0236 36.9801C10.9304 36.9697 10.8405 36.9652 10.7507 36.9652C10.2048 36.9652 9.93193 37.2205 9.93193 37.7312V38.2343H11.2997V38.739H9.93193V41.9015H9.29458V41.9ZM12.2851 41.9V38.2328H12.9224V38.8704C13.0483 38.639 13.2101 38.4613 13.4062 38.3374C13.6022 38.2135 13.8294 38.1508 14.0876 38.1508C14.2118 38.1508 14.3295 38.1612 14.4422 38.1836V38.7659C14.3801 38.7584 14.3131 38.7525 14.2429 38.748C14.1709 38.7435 14.1023 38.7405 14.0353 38.7405C13.7428 38.7405 13.5042 38.8226 13.3228 38.9854C13.1415 39.1481 13.0074 39.3661 12.9208 39.6394V41.8984H12.2851V41.9ZM17.289 41.9821C16.8886 41.9821 16.5422 41.9 16.248 41.7357C15.9538 41.5715 15.7284 41.3445 15.5682 41.0579C15.408 40.7697 15.328 40.4412 15.328 40.0709C15.328 39.6976 15.408 39.3676 15.5682 39.0795C15.7284 38.7913 15.9555 38.5658 16.248 38.4016C16.5405 38.2373 16.8886 38.1552 17.289 38.1552H17.369C17.7694 38.1552 18.1159 38.2373 18.41 38.4016C18.7025 38.5658 18.9297 38.7928 19.0898 39.0795C19.25 39.3676 19.3301 39.6976 19.3301 40.0709C19.3301 40.4412 19.25 40.7711 19.0898 41.0579C18.9297 41.346 18.7025 41.5715 18.41 41.7357C18.1175 41.9 17.7694 41.9821 17.369 41.9821H17.289ZM17.2922 41.4431H17.3642C17.7645 41.4431 18.0816 41.3176 18.3152 41.0668C18.5489 40.8159 18.6665 40.483 18.6665 40.0679C18.6665 39.6498 18.5489 39.3168 18.3152 39.0675C18.0816 38.8181 17.7645 38.6927 17.3642 38.6927H17.2922C16.8919 38.6927 16.5748 38.8181 16.3411 39.0675C16.1075 39.3168 15.9898 39.6498 15.9898 40.0679C15.9898 40.483 16.1075 40.8159 16.3411 41.0668C16.5748 41.3176 16.8919 41.4431 17.2922 41.4431ZM20.6309 41.9V38.2328H21.2682V38.9152C21.4136 38.6793 21.5983 38.4926 21.8254 38.3568C22.0509 38.2209 22.3141 38.1522 22.6115 38.1522H22.6915C23.3583 38.1522 23.7881 38.4449 23.9777 39.0287C24.1312 38.7584 24.3306 38.5449 24.5774 38.3881C24.8241 38.2314 25.1068 38.1522 25.4272 38.1522H25.5121C25.9631 38.1522 26.3079 38.2911 26.5466 38.5673C26.7852 38.8435 26.9028 39.2392 26.9028 39.7528V41.9015H26.2655V39.8365C26.2655 39.075 25.9599 38.6942 25.3504 38.6942H25.2785C24.9908 38.6942 24.7441 38.7808 24.5365 38.9555C24.329 39.1302 24.1786 39.3512 24.0855 39.6185V41.9H23.4481V39.8365C23.4481 39.075 23.1442 38.6942 22.5363 38.6942H22.4595C22.1719 38.6942 21.9251 38.7808 21.7192 38.9555C21.5133 39.1302 21.363 39.3512 21.2698 39.6185V41.9H20.6309ZM36.4725 36.6128V37.3176C36.4725 37.3638 36.4382 37.3937 36.3892 37.3937H33.0767V38.8346H35.8107C35.8613 38.8346 35.894 38.8659 35.894 38.9107V39.6155C35.894 39.6618 35.8597 39.6916 35.8107 39.6916H33.0767V41.8223C33.0767 41.8686 33.0424 41.8984 32.9934 41.8984H32.1632C32.1126 41.8984 32.0798 41.8671 32.0798 41.8223V36.6128C32.0798 36.5665 32.1142 36.5367 32.1632 36.5367H36.3892C36.4398 36.5367 36.4725 36.568 36.4725 36.6128ZM43.2315 41.9H42.318C42.2673 41.9 42.2346 41.8776 42.2216 41.8313C42.1006 41.3908 41.9535 40.9264 41.7852 40.4591H38.9793C38.811 40.9264 38.6656 41.3908 38.5479 41.8313C38.5348 41.8776 38.5022 41.9 38.4515 41.9H37.5707C37.5119 41.9 37.4792 41.8686 37.4955 41.8164C38.0234 40.1082 38.829 38.2224 39.6428 36.6367C39.6804 36.5636 39.7262 36.5367 39.8063 36.5367H40.9975C41.0776 36.5367 41.1234 36.5636 41.161 36.6367C41.983 38.2194 42.7756 40.1082 43.3083 41.8164C43.3247 41.8701 43.2903 41.9 43.2315 41.9ZM41.4748 39.6319C41.1692 38.8585 40.8292 38.0836 40.4812 37.3788H40.2834C39.9353 38.0836 39.5922 38.857 39.285 39.6319H41.4748ZM44.7317 39.2646C44.7317 37.6013 45.9311 36.4366 47.6421 36.4366H47.768C48.8416 36.4366 49.6718 36.9353 50.1114 37.655C50.1408 37.7013 50.1326 37.7386 50.0819 37.7626L49.3433 38.0955C49.2927 38.1179 49.2306 38.1179 49.1962 38.0612C48.8857 37.5714 48.42 37.3101 47.7336 37.3101H47.6078C46.5309 37.3101 45.7873 38.091 45.7873 39.2258C45.7873 40.3635 46.5162 41.1265 47.6078 41.1265H47.7336C48.438 41.1265 48.8481 40.9085 49.1635 40.5756C49.206 40.5337 49.2518 40.5263 49.3024 40.5487L50.0607 40.8861C50.0901 40.9011 50.1032 40.9205 50.1032 40.9399C50.1032 40.9593 50.095 40.9742 50.0787 40.9966C49.6129 41.6177 48.7746 42 47.7516 42H47.6258C45.8854 42 44.7317 40.9085 44.7317 39.2646ZM56.7918 41.119V41.8238C56.7918 41.8701 56.7575 41.9 56.7085 41.9H52.306C52.2554 41.9 52.2227 41.8686 52.2227 41.8238V36.6143C52.2227 36.568 52.257 36.5382 52.306 36.5382H56.6333C56.684 36.5382 56.7167 36.5695 56.7167 36.6143V37.319C56.7167 37.3654 56.6824 37.3952 56.6333 37.3952H53.2196V38.7898H55.996C56.0467 38.7898 56.0794 38.8211 56.0794 38.8659V39.5632C56.0794 39.6095 56.045 39.6394 55.996 39.6394H53.2196V41.0414H56.7085C56.7575 41.0414 56.7918 41.0728 56.7918 41.119ZM64.3714 40.4293C64.3714 41.3684 63.5835 41.9 62.1912 41.9H59.3068C59.2562 41.9 59.2235 41.8686 59.2235 41.8238V36.6143C59.2235 36.568 59.2578 36.5382 59.3068 36.5382H61.9363C63.2909 36.5382 64.028 37.0279 64.028 37.9253C64.028 38.515 63.7011 38.9018 63.0377 39.0825C63.9692 39.2601 64.3714 39.7708 64.3714 40.4293ZM61.915 37.3713H60.2203V38.8122H61.915C62.6732 38.8122 63.0213 38.5867 63.0213 38.0925C63.0213 37.5983 62.6732 37.3713 61.915 37.3713ZM63.3482 40.3486C63.3482 39.8499 62.987 39.6244 62.1944 39.6244H60.2203V41.0653H62.1944C63.0001 41.0653 63.3482 40.8503 63.3482 40.3486ZM66.1276 39.2183C66.1276 37.6013 67.3014 36.4366 69.146 36.4366H69.2718C71.1171 36.4366 72.2902 37.6013 72.2902 39.2183C72.2902 40.8354 71.1171 42 69.2718 42H69.146C67.3026 42 66.1276 40.8354 66.1276 39.2183ZM69.2737 41.1265C70.4765 41.1265 71.2365 40.3725 71.2365 39.2183C71.2365 38.0656 70.4784 37.3101 69.2737 37.3101H69.1479C67.9451 37.3101 67.1851 38.0641 67.1851 39.2183C67.1851 40.371 67.9432 41.1265 69.1479 41.1265H69.2737ZM73.9946 39.2183C73.9946 37.6013 75.1684 36.4366 77.013 36.4366H77.1387C78.984 36.4366 80.1572 37.6013 80.1572 39.2183C80.1572 40.8354 78.984 42 77.1387 42H77.013C75.1684 42 73.9946 40.8354 73.9946 39.2183ZM77.1387 41.1265C78.3416 41.1265 79.1015 40.3725 79.1015 39.2183C79.1015 38.0656 78.3435 37.3101 77.1387 37.3101H77.013C75.8102 37.3101 75.0502 38.0641 75.0502 39.2183C75.0502 40.371 75.809 41.1265 77.013 41.1265H77.1387ZM87.3899 41.9H86.3084C86.2364 41.9 86.2073 41.885 86.1612 41.8343C85.4031 41.0175 84.506 40.2068 83.7429 39.608H83.2558V41.8223C83.2558 41.8686 83.2211 41.8984 83.1724 41.8984H82.3423C82.2918 41.8984 82.259 41.8671 82.259 41.8223V36.6128C82.259 36.5665 82.2931 36.5367 82.3423 36.5367H83.1724C83.223 36.5367 83.2558 36.568 83.2558 36.6128V38.7271H83.7511C84.5679 38.0522 85.3229 37.3251 85.9388 36.5934C85.9818 36.5441 86.014 36.5367 86.0645 36.5367H87.0879C87.1385 36.5367 87.1631 36.5591 87.1631 36.5904C87.1631 36.6053 87.1549 36.6248 87.1334 36.6472C86.2313 37.6625 85.3393 38.4942 84.5124 39.1377C85.5516 39.9425 86.5371 40.8384 87.4341 41.8044C87.4815 41.8537 87.4569 41.9 87.3899 41.9ZM95.0642 0H90.0685V24.3886H95.0642V0ZM71.6907 15.2597C71.6907 12.2286 73.7773 9.91282 77.1324 9.91282C80.3385 9.91282 82.6121 12.1943 82.6121 15.2597C82.6121 18.3594 80.4497 20.6409 77.1324 20.6409C73.8904 20.6409 71.6907 18.3594 71.6907 15.2597ZM82.6885 24.3886H87.4607V6.16507H82.6134V7.80004C81.607 6.77874 79.4825 5.859 76.8349 5.859C70.7589 5.859 66.6949 9.87852 66.6949 15.2597C66.6949 20.9141 70.7949 24.6947 76.8349 24.6947C80.0409 24.6947 81.9418 23.4689 82.6873 22.5835V24.3886H82.6885ZM62.4085 3.09972H57.4128V6.16507H55.4747V10.2189H57.4128V19.3135C57.4128 22.9239 59.4996 24.5589 63.4887 24.5589C64.8307 24.5589 65.837 24.423 66.0234 24.3886V20.3692H64.9412C63.041 20.3692 62.4069 19.6883 62.4069 17.9174V10.2189H65.9103V6.16507H62.4069V3.09972H62.4085ZM54.169 6.13077C54.0579 6.09642 53.8716 6.06206 53.4974 6.06206C51.4089 6.06206 50.6261 7.22073 50.2911 7.66272V6.16507H45.6304V24.3886H50.6261V13.4545C50.6261 11.615 51.4089 10.525 54.1674 10.3548V6.13077H54.169ZM28.0369 15.2941C28.0369 12.2286 30.1613 9.98002 33.4428 9.98002C36.649 9.98002 38.8862 12.2615 38.8862 15.2941C38.8862 18.3266 36.7618 20.5737 33.4803 20.5737C30.2741 20.5722 28.0369 18.3594 28.0369 15.2941ZM23.0412 15.3269C23.0412 20.7081 27.2166 24.6933 33.4428 24.6933C39.5938 24.6933 43.8803 20.6065 43.8803 15.2582C43.8803 9.877 39.7425 5.85754 33.4428 5.85754C27.4405 5.859 23.0412 9.91136 23.0412 15.3269ZM5.78275 15.2941C5.78275 12.1943 7.87122 9.91282 11.2621 9.91282C14.5795 9.91282 16.7791 12.1943 16.7791 15.2941C16.7791 18.3938 14.6922 20.6424 11.2997 20.6424C7.98234 20.6409 5.78275 18.3938 5.78275 15.2941ZM5.93145 22.9567C6.86293 23.7063 8.80271 24.6933 11.5612 24.6933C17.8985 24.6933 21.7764 20.5035 21.7764 15.2238C21.7764 9.73962 17.8249 5.85754 11.7851 5.85754C8.16864 5.85754 6.45439 7.25357 5.78275 7.93596V6.16507H0.935783V29.837H5.93145V22.9567Z"
fill="#FFFFFF" />
</svg>
</a>
</div>
<div class="footer__text flx-flow-rw">
<div class="footer__nav-box flx jc-sb">
<ul class="footer__nav flx-colm">
<li class="item"><a href="#">Home</a></li>
<li class="item"><a href="#">Products</a></li>
<li class="item"><a href="#">Features</a></li>
<li class="item"><a href="#">Private by Design</a></li>
<li class="item"><a href="#">Support</a></li>
<li class="item"><a href="#">Sitemap</a></li>
</ul>
<ul class="footer__nav flx-colm">
<li class="item"><a href="#">Privacy Policy</a></li>
<li class="item"><a href="#">Cookies</a></li>
<li class="item"><a href="#">Terms of Use</a></li>
<li class="item"><a href="#">Legal</a></li>
<li class="item"><a href="#">Terms of Sale</a></li>
<li class="item"><a href="#">Ad Choices</a></li>
</ul>
</div>
<div class="footer__sing flx-flow-colm">
<p class="text-main-style color-footer">Get emails from Facebook about Portal and other Facebook
hardware products.</p>
<button class="btn">Sign Up</button>
<a href="/" class="english footer-text"><span class="color-sec">United States</span>
(English)</a>
</div>
<div class="footnotes footer-text flx-flow-colm">
<p>“Hey Portal” voice command availability varies. Learn more. Screen images simulated. User
experience may vary. Requires wireless internet connection and Facebook or WhatsApp account.
WhatsApp is not available on tablets. Features, functionality, and content vary and may not
be available on all Portal models or in all areas and languages. Some features may require a
Facebook account and downloading the Portal mobile app. Additional account registration,
terms and fees may apply.</p>
<p>*Represents savings off of regular, non-promotional prices. Both products must be purchased
on same receipt to qualify. Valid on qualifying purchases at portal.facebook.com. Not valid
on prior purchases and non-transferable. Not valid for cash or cash equivalent. Valid on
in-stock products only. Offer may be cancelled or modified at any time without notice. Void
where prohibited.</p>
<p>©2021 Facebook, Inc. or its affiliates. All rights reserved. Facebook, Portal from Facebook
and the Facebook logo are trademarks of Facebook, Inc. Amazon, Alexa and all related logos
are trademarks of Amazon.com, Inc. or its affiliates. Other names and brands may be claimed
as the property of others.</p>
</div>
</div>
</footer>
</div>
</div>
<script>
$(document).ready(function () {
$('.header__burger').on('click', function () {
$('.header__burger, .nav').toggleClass('active');
$('body').toggleClass('lock');
});
});
</script>
</body>
<div class="schema">
<div itemscope="" itemtype="http://schema.org/Product">
<meta itemprop="sku" content="trinket-12345" />
<div itemprop="name">
<h1>Portal TV</h1>
</div>
<a itemprop="image" href="/">
<img src="./img/buy__portal-tv.png" title="Portal TV">
</a>
<span itemprop="description">Smart video calling on your TV</span>
<div itemprop="brand" itemtype="https://schema.org/Brand" itemscope>
<meta itemprop="name" content="Brand" />
</div>
<div itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
<link itemprop="url" href="/" />
<span itemprop="priceCurrency" content="USD">$</span>
<span itemprop="price" content="179">149</span>
<div>В наличии</div>
<link itemprop="availability" href="http://schema.org/InStock">
</div>
<div itemprop="review" itemtype="https://schema.org/Review" itemscope>
<div itemprop="author" itemtype="https://schema.org/Person" itemscope>
<meta itemprop="name" content="Ivan" />
</div>
<div itemprop="reviewRating" itemtype="https://schema.org/Rating" itemscope>
<meta itemprop="ratingValue" content="4" />
<meta itemprop="bestRating" content="5" />
</div>
</div>
<div itemprop="aggregateRating" itemtype="https://schema.org/AggregateRating" itemscope>
<meta itemprop="reviewCount" content="109" />
<meta itemprop="ratingValue" content="4.8" />
</div>
</div>
<div itemscope="" itemtype="http://schema.org/Product">
<meta itemprop="sku" content="trinket-12345" />
<div itemprop="name">
<h1>Portal</h1>
</div>
<a itemprop="image" href="/">
<img src="./img/buy__portal.png" title="Portal">
</a>
<span itemprop="description">Smart video calling on a 10” HD display</span>
<div itemprop="brand" itemtype="https://schema.org/Brand" itemscope>
<meta itemprop="name" content="Brand" />
</div>
<div itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
<link itemprop="url" href="/" />
<span itemprop="priceCurrency" content="USD">$</span>
<span itemprop="price" content="179">179</span>
<div>В наличии</div>
<link itemprop="availability" href="http://schema.org/InStock">
</div>
<div itemprop="review" itemtype="https://schema.org/Review" itemscope>
<div itemprop="author" itemtype="https://schema.org/Person" itemscope>
<meta itemprop="name" content="Anna" />
</div>
<div itemprop="reviewRating" itemtype="https://schema.org/Rating" itemscope>
<meta itemprop="ratingValue" content="3" />
<meta itemprop="bestRating" content="4" />
</div>
</div>
<div itemprop="aggregateRating" itemtype="https://schema.org/AggregateRating" itemscope>
<meta itemprop="reviewCount" content="78" />
<meta itemprop="ratingValue" content="4.3" />
</div>
</div>
</div>
</html>