summarylogtreecommitdiffstats
path: root/privacy.html
blob: c300e7926851d9f7217b179d4e4abefe0930716e (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317

    







<!DOCTYPE html>
<html lang="en" class="large-screen-ready">
<head>
    
        
        
            

<!-- Google Tag Manager dataLayer init -->
<script>
    dataLayer = [];
</script>

<!-- Google Tag Manager -->
<script>(function (w, d, s, l, i) {
    w[l] = w[l] || [];
    w[l].push({
        'gtm.start':
            new Date().getTime(), event: 'gtm.js'
    });
    var f = d.getElementsByTagName(s)[0],
        j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : '';
    j.async = true;
    j.src =
        'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
    f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-PRBZ42F');</script>
<!-- End Google Tag Manager -->

        
        
        
        
        

        <meta charset="UTF-8">
        <meta name="viewport"
              content="initial-scale=1, width=device-width">
        <title>

        Privacy Statement | Opera

</title>
        <meta name="description"
              content="

    Privacy Statement

">
        <link rel="dns-prefetch"
              href="//www-static.operacdn.com">
        
            

<link rel="apple-touch-icon" sizes="180x180" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/apple-touch-icon.f41fd1c7b8eb.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/favicon-32x32.d80e4bdc6a9f.png">
<link rel="icon" type="image/png" sizes="16x16" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/favicon-16x16.a0ae29f84c8a.png">
<link rel="manifest" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/site.3f73f08fba75.webmanifest">
<link rel="mask-icon" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/safari-pinned-tab.c03376804cdc.svg" color="#ff0a21">
<link rel="shortcut icon" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/favicon.12c955371a4b.ico">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/browserconfig.f5848516ccd3.xml">
<meta name="theme-color" content="#ffffff">

        
        
        
    <meta name="robots"
          content="noindex, follow">

        
            <meta property="og:title"
                  content="
        Privacy Statement | Opera
">
            <meta property="og:image"
                  content="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/og/og-img--opera-software.6d93bb11dfdc.png">
            <meta property="og:description"
                  content="
    Privacy Statement
">
            <meta property="og:type"
                  content="website">
            <meta property="og:url"
                  content="https://www.opera.com/privacy">
            <meta name="twitter:card" content="summary_large_image" />
            <meta name="twitter:site" content="@opera">
            <meta name="twitter:title"
                  content="Opera Browser">
            <meta name="twitter:description"
                  content="Opera is a secure, innovative browser used by millions around the world with a built-in ad blocker, free VPN, units converter, social messengers, battery saver and much more - all for your best browsing experience. Download Opera browser now and enjoy the Internet once again. Want to know more? Visit opera.com and discover yourself.">
            <meta name="twitter:image"
                  content="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/og/og-img--opera-software.6d93bb11dfdc.png">
            <meta property="vk:image"
                  content="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/logo/opera-150.99ee9b32e36e.png">
        

        
        

            
                


<link rel="stylesheet" href="https://cdn-production-opera-website.operacdn.com/staticfiles/CACHE/css/output.3dfc06381d5a.css" type="text/css" media="all" />

<link rel="stylesheet" href="https://cdn-production-opera-website.operacdn.com/staticfiles/CACHE/css/output.78333c91a17f.css" type="text/css" media="all" />

<link rel="stylesheet" href="https://cdn-production-opera-website.operacdn.com/staticfiles/CACHE/css/output.43102b8e3376.css" type="text/css" media="screen and (min-width: 320px)" />

<link rel="stylesheet" href="https://cdn-production-opera-website.operacdn.com/staticfiles/CACHE/css/output.8b20ef2c8323.css" type="text/css" media="screen and (min-width: 640px)" />

<link rel="stylesheet" href="https://cdn-production-opera-website.operacdn.com/staticfiles/CACHE/css/output.76fdcf180ed8.css" type="text/css" media="screen and (min-width: 768px)" />

<link rel="stylesheet" href="https://cdn-production-opera-website.operacdn.com/staticfiles/CACHE/css/output.b5dd6675ab10.css" type="text/css" media="screen and (min-width: 1024px)" />

<link rel="stylesheet" href="https://cdn-production-opera-website.operacdn.com/staticfiles/CACHE/css/output.09795d51a5f3.css" type="text/css" media="screen and (min-width: 1224px)" />

<link rel="stylesheet" href="https://cdn-production-opera-website.operacdn.com/staticfiles/CACHE/css/output.469f5e278e27.css" type="text/css" media="screen and (min-width: 1824px)" />

<link rel="stylesheet" href="https://cdn-production-opera-website.operacdn.com/staticfiles/CACHE/css/output.4f00aa545acd.css" type="text/css" media="screen and (min-width: 1924px)" />

                
            
        
<link rel="stylesheet"
      type="text/css"
      media="all"
      href="https://cdn-production-opera-website.operacdn.com/staticfiles/legalDoc.064a8418a700.css"/>

    
</head>
<body class="legal-doc">






    <header id="header"
            class="hf hf__header">
        
          
        
        
            



    <input id="header__switcher"
           class="hidden--clip header__switcher"
           type="checkbox">

    <div class="header"
         role="navigation">
        <div class="header__wrapper container-fluid wrapper">
            <a class="header__brand"
               href="/">
                
                    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/logo/logo-o.a06775d40b97.svg" alt="Opera">
                
            </a>
            <div class="header__menu">
                
                    
                    <ul class="header__main-nav-items"
                    role="menu">
                        <li class="header__main-nav-item">
                            <a href="/browsers" class="header__main-nav-anchor hover-line"
                                  data-menu="Browsers">
                                  <span class="hover-line__element">
                                    Browsers
                                  </span>
                            </a>
                        </li>
                        <li class="header__main-nav-item">
                            <a href="/products" class="header__main-nav-anchor hover-line"
                                  data-menu="Products">
                                  <span class="hover-line__element">
                                    Products
                                  </span>
                            </a>
                        </li>
                        <li class="header__main-nav-item">
                            <a href="/gaming" class="header__main-nav-anchor hover-line"
                               data-menu="Gaming">
                                  <span class="hover-line__element">
                                    Gaming
                                  </span>
                            </a>
                        </li>
                        <li class="header__main-nav-item">
                            <a href="/download" class="header__main-nav-anchor hover-line"
                                  data-menu="Downloads">
                                   <span class="hover-line__element">
                                    Downloads
                                   </span>
                            </a>
                        </li>
                        <li class="header__main-nav-item header__main-nav-separator">
                            <span class="header__main-nav-anchor hover-line"
                                  data-menu="About">
                               <span class="hover-line__element">
                                About
                               </span>
                            </span>
                        </li>
                        <li class="header__main-nav-item">
                            <span class="header__main-nav-anchor hover-line"
                                  data-menu="Help">
                                   <span class="hover-line__element">
                                    Help
                                   </span>
                            </span>
                        </li>
                    </ul>
                    
                
                <div class="header__download">
                    
                        
                            
                                



<span class="download-button--wrapper download-button--desktop
        download-button--full ">

    <a href="/computer/thanks?ni=stable&amp;os=windows"
       class="button os-windows"
       data-platform="auto"
            
       data-event-action="download_opera"
            
            
       data-event-category="new_floating_header"
            
       rel="nofollow noopener"
       
       data-alternative="None">
        
            <span class="cta">Download now</span>
        
    </a>
    

    


</span>


                            
                        
                    
                </div>
            </div>
            <label class="header__menu-switcher"
                   for="header__switcher">
            </label>
        </div>
    </div>

    <nav class="header__menu-nav container-fluid">
        <div class="header__nav-wrapper">
            
            <div>
                <input id="hf-browsers-switcher"
                       class="hf__dd-switcher hf-hide"
                       type="checkbox">
                <h4 class="hf__heading">
                    <label class="hf__label"
                           for="hf-browsers-switcher">Browsers</label>
                </h4>
                <div class="hf__dd-content header__dd-content">
                    <p class="hf__subtitle">For computers</p>
                    <ul class="hf__links list-style--none">
                        <li>
                            <a class="hf__link hover-line"
                               href="/browsers/opera">
                                <span class="hover-line__element">Opera</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="/gx">
                                <span class="hover-line__element">Opera GX</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="/browsers/opera-for-chromebook">
                                <span class="hover-line__element">Opera for Chromebook</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__sublink hover-line"
                               href="/browsers">
                                <span class="hover-line__element">See all browsers</span>
                            </a>
                        </li>
                    </ul>
                    <p class="hf__subtitle">For mobile</p>
                    <ul class="hf__links list-style--none">
                        <li>
                            <a class="hf__link hover-line"
                               href="/browsers/opera#mobile">
                                <span class="hover-line__element">Opera</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="/gx">
                                <span class="hover-line__element">Opera GX</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="/mobile/touch">
                                <span class="hover-line__element">Opera Touch</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="/browsers/opera-mini">
                                <span class="hover-line__element">Opera Mini</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__sublink hover-line"
                               href="/browsers">
                                <span class="hover-line__element">See all browsers</span>
                            </a>
                        </li>
                    </ul>
                    <p class="hf__subtitle">Features</p>
                    <ul class="hf__links list-style--none">
                        <li>
                            <a class="hf__link hover-line"
                               href="/features/ad-blocker">
                                <span class="hover-line__element">Ad blocker</span>
                            </a>
                        </li>

                        
                        <li>
                            <a class="hf__link hover-line"
                               href="/features/free-vpn">
                                <span class="hover-line__element">Free VPN</span>
                            </a>
                        </li>
                        

                        <li>
                            <a class="hf__link hover-line"
                               href="/features/flow">
                                <span class="hover-line__element">Flow</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="/features/sync">
                                <span class="hover-line__element">Sync data</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__sublink hover-line"
                               href="/features">
                                <span class="hover-line__element">Show all…</span>
                            </a>
                        </li>
                    </ul>
                </div>
            </div>
            
            <div>
                <input id="hf-products-switcher"
                       class="hf__dd-switcher hf-hide"
                       type="checkbox">
                <h4 class="hf__heading">
                    <label class="hf__label"
                           for="hf-products-switcher">Products</label>
                </h4>
                <div class="hf__dd-content header__dd-content">
                    <ul class="hf__links list-style--none">
                        <li>
                            <a class="hf__link hover-line"
                               href="https://www.yoyogames.com/gamemaker"
                               target="_blank">
                                <span class="hover-line__element">GameMaker Studio</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="https://getdify.com"
                               target="_blank">
                                <span class="hover-line__element">Dify</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="/products/hype">
                                <span class="hover-line__element">Hype</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="/download#news">
                                <span class="hover-line__element">Opera News</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="/download#news-lite">
                                <span class="hover-line__element">Opera News Lite</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="/products/apex-football">
                                <span class="hover-line__element">Apex Football</span>
                            </a>
                        </li>
                        
                        <li>
                            <a class="hf__sublink hover-line"
                               href="/products">
                                <span class="hover-line__element">See all products</span>
                            </a>
                        </li>
                    </ul>
                </div>
            </div>
            
            <div>
                <input id="hf-gaming-switcher"
                       class="hf__dd-switcher hf-hide"
                       type="checkbox">
                <h4 class="hf__heading">
                    <label class="hf__label"
                           for="hf-gaming-switcher">Gaming</label>
                </h4>
                <div class="hf__dd-content header__dd-content">
                    <ul class="hf__links list-style--none">
                        <li>
                            <a class="hf__link hover-line"
                               href="/gx">
                                <span class="hover-line__element">Opera GX</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="https://www.yoyogames.com/gamemaker"
                               target="_blank">
                                <span class="hover-line__element">GameMaker Studio</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="https://gxc.gg"
                               target="_blank">
                                <span class="hover-line__element">GXC</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__sublink hover-line"
                               href="/gaming">
                                <span class="hover-line__element">See all</span>
                            </a>
                        </li>
                    </ul>
                </div>
            </div>
            
            <div>
                <input id="hf-downloads-switcher"
                       class="hf__dd-switcher hf-hide"
                       type="checkbox">
                <h4 class="hf__heading">
                    <label class="hf__label"
                           for="hf-downloads-switcher">Downloads</label>
                </h4>
                <div class="hf__dd-content header__dd-content">
                    <p class="hf__subtitle">Mobile browsers</p>
                    <ul class="hf__links list-style--none">
                        <li>
                            <a class="hf__link hover-line"
                               href="/download#opera">
                                <span class="hover-line__element">Opera for Android</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="/download#opera">
                                <span class="hover-line__element">Opera for iOS</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="/download#opera-gx-mobile">
                                <span class="hover-line__element">Opera GX</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="/download#touch">
                                <span class="hover-line__element">Opera Touch</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="/download#mini">
                                <span class="hover-line__element">Opera Mini</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__sublink hover-line"
                               href="/download">
                                <span class="hover-line__element">Show all…</span>
                            </a>
                        </li>
                    </ul>
                </div>
            </div>
            
            <div>
                <input id="hf-opera-switcher"
                       class="hf__dd-switcher hf-hide"
                       type="checkbox">
                <h4 class="hf__heading">
                    <label class="hf__label"
                           for="hf-opera-switcher">About</label>
                </h4>
                <div class="hf__dd-content header__dd-content">
                    <ul class="hf__links list-style--none">
                        <li>
                            <a class="hf__link hover-line"
                               href="/about">
                                <span class="hover-line__element">Why Opera?</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="/secure-private-browser">
                                <span class="hover-line__element">Secure browsing</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="https://blogs.opera.com/news/" target="_blank">
                                <span class="hover-line__element">Blog</span>
                            </a>
                        </li>

                        <li>
                            <a class="hf__link hover-line"
                               href="https://jobs.opera.com" target="_blank">
                                <span class="hover-line__element">Jobs</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="https://blogs.opera.com/desktop" target="_blank">
                                <span class="hover-line__element">Desktop blog</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="https://blogs.opera.com/mobile">
                                <span class="hover-line__element">Mobile blog</span>
                            </a>
                        </li>
                    </ul>
                </div>
            </div>
            
            <div>
                <input id="hf-help-header-switcher"
                       class="hf__dd-switcher hf-hide"
                       type="checkbox">
                <h4 class="hf__heading">
                    <label class="hf__label"
                           for="hf-help-header-switcher">Help</label>
                </h4>
                <div class="hf__dd-content header__dd-content">
                    <ul class="hf__links list-style--none">
                        <li>
                            <a class="hf__link hover-line"
                               href="https://help.opera.com/latest" target="_blank">
                                <span class="hover-line__element">Opera for computers</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="https://help.opera.com/en/mobile/android/" target="_blank">
                                <span class="hover-line__element">Opera for mobile</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="/switch-to-opera">
                                <span class="hover-line__element">How to switch</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="https://auth.opera.com/account/signup" target="_blank" rel="nofollow">
                                <span class="hover-line__element">Create account</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="https://security.opera.com/" target="_blank">
                                <span class="hover-line__element">Security</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="https://forums.opera.com/" target="_blank">
                                <span class="hover-line__element">Forums</span>
                            </a>
                        </li>
                    </ul>
                </div>
            </div>
        </div>
    </nav>

    
        
        
            


<nav class="sub-header">
    <div class="container-fluid wrapper">
        <div class="sub-header__main">
            
            <div class="sub-header__content" data-menu="Browsers">
                <ul class="sub-header__filter list-style--none">
                    <li data-category="all-browsers" class="hover-line keep-active">
                        <span class="hover-line__element">
                            All browsers</span></li>
                    <li data-category="computer" class="hover-line">
                        <span class="hover-line__element">
                            For computers</span></li>
                    <li data-category="mobile" class="hover-line">
                        <span class="hover-line__element">
                            For mobile</span></li>
                    <li data-category="features" class="hover-line">
                        <span class="hover-line__element">
                            Features</span></li>
                </ul>
                <div class="sub-header__tiles list-style--none">
                    <div class="row">
                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-browsers computer ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-browser--desktop.74fd6261b7b6.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-browser--desktop@2x.2bb1ba00a9d4.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/browsers/opera"
       >
        <span class="sub-header__name hover-line__element">Opera</span>
    </a>
    <div class="sub-header__desc">
        Your personal browser
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-browsers mobile ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-browser--mobile.bf95537d52db.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-browser--mobile@2x.45b4f843493b.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/browsers/opera#mobile"
       >
        <span class="sub-header__name hover-line__element">Opera</span>
    </a>
    <div class="sub-header__desc">
        Your personal mobile browser
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-browsers computer ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-gx.c5c315ce2f7a.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-gx@2x.37b65404804a.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/gx"
       >
        <span class="sub-header__name hover-line__element">Opera GX</span>
    </a>
    <div class="sub-header__desc">
        The browser for gamers
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-browsers mobile ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-gx-mobile.af36ec0fdfbf.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-gx-mobile@2x.b1fc31bf011f.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/gx#mobile"
       >
        <span class="sub-header__name hover-line__element">Opera GX</span>
    </a>
    <div class="sub-header__desc">
        The browser for gamers
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-browsers computer ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-for-chromebook.57a87efed281.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-for-chromebook@2x.1d9fb5a0f8a0.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/browsers/opera-for-chromebook"
       >
        <span class="sub-header__name hover-line__element">Opera for Chromebook</span>
    </a>
    <div class="sub-header__desc">
        The perfect browser for your Chromebook
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-browsers mobile ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-mini.2d19e58f4dc5.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-mini@2x.32e5bb30b693.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/browsers/opera-mini"
       >
        <span class="sub-header__name hover-line__element">Opera Mini</span>
    </a>
    <div class="sub-header__desc">
        A light data-saving browser
    </div>
</div>


                        
<a href="/browsers"
   class="sub-header__tile sub-header__tile--see-more sub-header__other-a all-browsers item-off">
    <span class="btn--arrowed">
        See all browsers
    </span></a>
                        
<a href="/browsers"
   class="sub-header__tile sub-header__tile--see-more sub-header__other-a computer item-off">
    <span class="btn--arrowed">
        See all browsers
    </span></a>
                        
<a href="/mobile"
   class="sub-header__tile sub-header__tile--see-more sub-header__other-a mobile item-off">
    <span class="btn--arrowed">
        See all browsers
    </span></a>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 features item-off">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__features--messengers.6db8285bcfa7.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__features--messengers@2x.54d65b4466a1.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/features/messenger"
       >
        <span class="sub-header__name hover-line__element">Integrated messengers</span>
    </a>
    <div class="sub-header__desc">
        Chat with friends right in your browser without switching apps.
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 features item-off">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__features--ad-blocker.0d7836907379.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__features--ad-blocker@2x.09e7ef598905.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/features/ad-blocker"
       >
        <span class="sub-header__name hover-line__element">Ad blocker</span>
    </a>
    <div class="sub-header__desc">
        Browse with less distractions and load websites faster.
    </div>
</div>

                        
                            


<div class="sub-header__tile col-xs-12 col-lg-3 features item-off">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__features--vpn.dfa751e5579f.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__features--vpn@2x.c177babb4676.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/features/free-vpn"
       >
        <span class="sub-header__name hover-line__element">Free VPN</span>
    </a>
    <div class="sub-header__desc">
        Browse comfortably with enhanced privacy and security, for free.
    </div>
</div>

                        
                        


<div class="sub-header__tile col-xs-12 col-lg-3 features item-off">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__features--player.98fcb099d363.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__features--player@2x.a64fb6945496.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/features/player-in-sidebar"
       >
        <span class="sub-header__name hover-line__element">Player in sidebar</span>
    </a>
    <div class="sub-header__desc">
        A world of music and podcasts at your fingertips
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 features item-off">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__features--pinboards.db193d2c269d.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__features--pinboards@2x.b173367790f7.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/features/pinboards"
       >
        <span class="sub-header__name hover-line__element">Pinboards</span>
    </a>
    <div class="sub-header__desc">
        Save web content easily, share it visually.
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 features item-off">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__features--workspaces.1bcb2d140322.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__features--workspaces@2x.7aa99bf3cc36.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/features/workspaces"
       >
        <span class="sub-header__name hover-line__element">Workspaces</span>
    </a>
    <div class="sub-header__desc">
        Organize tab groups in separate customizable workspaces
    </div>
</div>

                        
<div class="sub-header__tile col-xs-12 col-lg-3 features item-off">
    <p class="text-level-4"><a class="sub-header__other-a" href="/features/battery-saver">
        <span class="btn--arrowed">
            Battery saver</span></a></p>
    <p class="text-level-4"><a class="sub-header__other-a" href="/features/video-pop-out">
        <span class="btn--arrowed">
            Video pop-out</span></a></p>
    <p class="text-level-4"><a class="sub-header__other-a" href="/features/flow">
        <span class="btn--arrowed">
            Flow</span></a></p>
    <p class="text-level-4"><a class="sub-header__other-a" href="/features/snapshot">
        <span class="btn--arrowed">
            Snapshot tool</span></a></p>
</div>
                        
<a href="/features"
   class="sub-header__tile sub-header__tile--see-more sub-header__other-a features item-off">
    <span class="btn--arrowed">
        See more features
    </span></a>
                    </div>
                </div>
            </div>

            
            <div class="sub-header__content" data-menu="Products">
                <ul class="sub-header__filter list-style--none">
                    <li data-category="all-products" class="hover-line keep-active">
                        <span class="hover-line__element">
                            All</span></li>
                </ul>
                <div class="sub-header__tiles list-style--none">
                    <div class="row">
                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-products ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__gamemaker.c7903d06881b.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__gamemaker@2x.dc2216c4682a.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="https://www.yoyogames.com/gamemaker"
       target="_blank">
        <span class="sub-header__name hover-line__element">GameMaker Studio</span>
    </a>
    <div class="sub-header__desc">
        Complete game creation software
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-products ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__cashback.53cb2b52a98f.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__cashback@2x.d3df4e0beb83.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/features/cashback"
       >
        <span class="sub-header__name hover-line__element">Dify Cashback</span>
    </a>
    <div class="sub-header__desc">
        Get money back for shopping
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-products ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__hype.74872bf61f58.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__hype@2x.b1bf3c2edf62.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/products/hype"
       >
        <span class="sub-header__name hover-line__element">Hype</span>
    </a>
    <div class="sub-header__desc">
        Chat for free in Opera Mini
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-products ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-news.d5e6192701b9.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-news@2x.28fd44ad73e5.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/products#news"
       >
        <span class="sub-header__name hover-line__element">Opera News</span>
    </a>
    <div class="sub-header__desc">
        Personalized news app
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-products ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-news--lite.0a29f536630d.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-news--lite@2x.a037f2d91172.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/products#news-lite"
       >
        <span class="sub-header__name hover-line__element">Opera News Lite</span>
    </a>
    <div class="sub-header__desc">
        News that’s easy on your data
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-products ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__appex-football.f586e4d5f9ad.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__appex-football@2x.0df19f6df5c2.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/products/apex-football"
       >
        <span class="sub-header__name hover-line__element">Apex Football</span>
    </a>
    <div class="sub-header__desc">
        The best way to get live scores & commentary
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-products ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__loomi.6a530c47e227.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__loomi@2x.29ecc34dbe21.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="https://loomi.tv/"
       target="_blank">
        <span class="sub-header__name hover-line__element">Loomi by Opera</span>
    </a>
    <div class="sub-header__desc">
        VoD for movie buffs
    </div>
</div>

                        
<a href="/products"
   class="sub-header__tile sub-header__tile--see-more sub-header__other-a all-products item-off">
    <span class="btn--arrowed">
        See all products
    </span></a>
                    </div>
                </div>
            </div>

            
            <div class="sub-header__content" data-menu="Gaming">
                <ul class="sub-header__filter list-style--none">
                    <li data-category="all-gaming" class="hover-line keep-active">
                        <span class="hover-line__element">
                            All</span></li>
                </ul>
                <div class="sub-header__tiles list-style--none">
                    <div class="row">
                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-gaming ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-gx.c5c315ce2f7a.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-gx@2x.37b65404804a.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/gx"
       >
        <span class="sub-header__name hover-line__element">Opera GX</span>
    </a>
    <div class="sub-header__desc">
        The browser for gamers
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-gaming ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-gx-mobile.af36ec0fdfbf.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-gx-mobile@2x.b1fc31bf011f.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/gx#mobile"
       >
        <span class="sub-header__name hover-line__element">Opera GX</span>
    </a>
    <div class="sub-header__desc">
        The browser for gamers
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-gaming ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__gamemaker.c7903d06881b.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__gamemaker@2x.dc2216c4682a.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="https://www.yoyogames.com/gamemaker"
       target="_blank">
        <span class="sub-header__name hover-line__element">GameMaker Studio</span>
    </a>
    <div class="sub-header__desc">
        Complete game creation software
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-gaming ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__gxc.f3d672ef005b.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__gxc@2x.ec984b2b7515.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="https://gxc.gg"
       target="_blank">
        <span class="sub-header__name hover-line__element">GXC</span>
    </a>
    <div class="sub-header__desc">
        Play games, challenge and win
    </div>
</div>

                        
<a href="/gaming"
   class="sub-header__tile sub-header__tile--see-more sub-header__other-a all-gaming item-off">
    <span class="btn--arrowed">
        See all
    </span></a>
                    </div>
                </div>
            </div>

            
            <div class="sub-header__content" data-menu="Downloads">
                <ul class="sub-header__filter list-style--none">
                    <li data-category="all-downloads" class="hover-line keep-active">
                        <span class="hover-line__element">
                            All</span></li>
                    <li data-category="computer" class="hover-line">
                        <span class="hover-line__element">
                            For computers</span></li>
                    <li data-category="mobile" class="hover-line">
                        <span class="hover-line__element">
                            For mobile</span></li>
                </ul>
                <div class="sub-header__tiles list-style--none">
                    <div class="row">
                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-downloads computer ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-browser--desktop.74fd6261b7b6.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-browser--desktop@2x.2bb1ba00a9d4.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/download#opera-browser"
       >
        <span class="sub-header__name hover-line__element">Opera</span>
    </a>
    <div class="sub-header__desc">
        Your personal browser
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-downloads mobile ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-browser--mobile.bf95537d52db.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-browser--mobile@2x.45b4f843493b.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/download#opera-browser"
       >
        <span class="sub-header__name hover-line__element">Opera</span>
    </a>
    <div class="sub-header__desc">
        Your personal mobile browser
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-downloads computer ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-gx.c5c315ce2f7a.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-gx@2x.37b65404804a.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/download#opera-gx"
       >
        <span class="sub-header__name hover-line__element">Opera GX</span>
    </a>
    <div class="sub-header__desc">
        The browser for gamers
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-downloads mobile ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-gx-mobile.af36ec0fdfbf.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-gx-mobile@2x.b1fc31bf011f.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/download#opera-gx"
       >
        <span class="sub-header__name hover-line__element">Opera GX</span>
    </a>
    <div class="sub-header__desc">
        The browser for gamers
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-downloads computer ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-for-chromebook.57a87efed281.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-for-chromebook@2x.1d9fb5a0f8a0.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/download#opera-browser"
       >
        <span class="sub-header__name hover-line__element">Opera for Chromebook</span>
    </a>
    <div class="sub-header__desc">
        The perfect browser for your Chromebook
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-downloads mobile ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-mini.2d19e58f4dc5.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-mini@2x.32e5bb30b693.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/download#mini"
       >
        <span class="sub-header__name hover-line__element">Opera Mini</span>
    </a>
    <div class="sub-header__desc">
        A light data-saving browser
    </div>
</div>

                        
<a href="/download"
   class="sub-header__tile sub-header__tile--see-more sub-header__other-a all-downloads item-off">
    <span class="btn--arrowed">
        See all
    </span></a>
                    </div>
                </div>
            </div>

            
            <div class="sub-header__content" data-menu="About">
                <ul class="sub-header__filter list-style--none">
                    <li data-category="all-about" class="hover-line keep-active">
                        <span class="hover-line__element">
                            All</span></li>
                </ul>
                <div class="sub-header__tiles list-style--none">
                    <div class="row">
                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-about ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__why-opera.644bcd2a1f1a.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__why-opera@2x.68086109117b.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/about"
       >
        <span class="sub-header__name hover-line__element">Why Opera?</span>
    </a>
    <div class="sub-header__desc">
        Who and what we are
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-about ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__secure-browsing.33cdbdfb7935.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__secure-browsing@2x.556741cacd34.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/secure-private-browser"
       >
        <span class="sub-header__name hover-line__element">Secure browsing</span>
    </a>
    <div class="sub-header__desc">
        How Opera protects you
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-about ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__blog.39e34d3bcac4.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__blog@2x.ddcd01cd04fb.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="https://blogs.opera.com/news/"
       target="_blank">
        <span class="sub-header__name hover-line__element">Blog</span>
    </a>
    <div class="sub-header__desc">
        Latest news from Opera
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-about ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__jobs.13fa7c347e07.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__jobs@2x.881c2a26ae09.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="https://jobs.opera.com"
       target="_blank">
        <span class="sub-header__name hover-line__element">Jobs</span>
    </a>
    <div class="sub-header__desc">
        Opportunities at Opera
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-about ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__blog-desktop.229cc46896ae.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__blog-desktop@2x.f7810a603e88.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="https://blogs.opera.com/desktop/"
       target="_blank">
        <span class="sub-header__name hover-line__element">Desktop blog</span>
    </a>
    <div class="sub-header__desc">
        Latest desktop news
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-about ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__blog-mobile.e7f9924c9bde.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__blog-mobile@2x.9f87043780a3.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="https://blogs.opera.com/mobile/"
       target="_blank">
        <span class="sub-header__name hover-line__element">Mobile blog</span>
    </a>
    <div class="sub-header__desc">
        Latest mobile news
    </div>
</div>

                        
<a href="/about"
   class="sub-header__tile sub-header__tile--see-more sub-header__other-a all-about item-off">
    <span class="btn--arrowed">
        Get to know us
    </span></a>
                    </div>
                </div>
            </div>

            
            <div class="sub-header__content" data-menu="Help">
                <ul class="sub-header__filter list-style--none">
                    <li data-category="all-help" class="hover-line keep-active">
                        <span class="hover-line__element">
                            All</span></li>
                    <li data-category="for-computers" class="hover-line">
                        <span class="hover-line__element">
                            For computers</span></li>
                    <li data-category="for-mobile" class="hover-line">
                        <span class="hover-line__element">
                            For mobile</span></li>
                </ul>
                <div class="sub-header__tiles list-style--none">
                    <div class="row">
                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-help ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-account.3b115749c976.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-account@2x.57d6a0885c5a.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="https://auth.opera.com/account/signup"
       target="_blank">
        <span class="sub-header__name hover-line__element">Opera account</span>
    </a>
    <div class="sub-header__desc">
        Create a free account
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-help ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-forums.b9cbb7724dc6.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-forums@2x.e2f4f4d089e6.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="https://forums.opera.com/"
       target="_blank">
        <span class="sub-header__name hover-line__element">Forums</span>
    </a>
    <div class="sub-header__desc">
        Join the discussions
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-help ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__secure-browsing.33cdbdfb7935.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__secure-browsing@2x.556741cacd34.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="https://security.opera.com/"
       target="_blank">
        <span class="sub-header__name hover-line__element">Security</span>
    </a>
    <div class="sub-header__desc">
        Safety and security information
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-help for-computers ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__switch-to-opera.09e5b47295e3.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__switch-to-opera@2x.63e10cb493ee.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/switch-to-opera"
       >
        <span class="sub-header__name hover-line__element">How to switch</span>
    </a>
    <div class="sub-header__desc">
        See the easy step-by-step
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-help for-computers ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__help-desktop.ab21db86cbdc.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__help-desktop@2x.6c1ec591ec5e.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="https://help.opera.com/latest"
       target="_blank">
        <span class="sub-header__name hover-line__element">Opera Browser for computers</span>
    </a>
    <div class="sub-header__desc">
        Get help with Opera for computers
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-help for-mobile ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__help-mobile.0c1460953ad9.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__help-mobile@2x.fa7b76925b53.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="https://help.opera.com/en/mobile/android/"
       target="_blank">
        <span class="sub-header__name hover-line__element">Opera Browser for Android</span>
    </a>
    <div class="sub-header__desc">
        Get help with Opera Browser for Android
    </div>
</div>

                        
<div class="sub-header__tile col-xs-12 col-lg-3 all-help for-mobile item-off">
    <p class="text-level-4"><a class="sub-header__other-a" href="https://help.opera.com/mobileios">
        <span class="btn--arrowed">
            Opera Browser for iOS</span></a></p>
    <p class="text-level-4"><a class="sub-header__other-a" href="https://help.opera.com/mini/android">
        <span class="btn--arrowed">
            Opera Mini</span></a></p>
    <p class="text-level-4"><a class="sub-header__other-a" href="https://help.opera.com/touch">
        <span class="btn--arrowed">
            Opera Touch</span></a></p>
</div>
                        
<a href="/help"
   class="sub-header__tile sub-header__tile--see-more sub-header__other-a all-help for-mobile for-computers item-off">
    <span class="btn--arrowed">
        See all
    </span></a>
                    </div>
                </div>
            </div>
        </div>
    </div>
    <div class="sub-header__overlay"></div>
</nav>


        
    



        
    </header>

    

    <main class="privacy-page">
        <section class="section-main my5">
            <div class="wrapper container-fluid">
                

        <p><i>If you don't live in the European Economic Area, please read this</i>
        <a href="/privacy/row"
           rel="nofollow">Privacy Statement
        </a>
        .
    </p>
<h1>Privacy Statement</h1>

    <p>Last updated: October 13, 2021</p>

    <h2>Introduction</h2>

    <p>This is the privacy statement of Opera Norway AS (“Opera”), an Opera group company. The statement applies to all Opera software applications, websites and services.</p>

    <p>As a general rule, users of our software applications and services are anonymous to us, and we have no feasible ways to identify you. However certain categories of data may be collected while using our applications and services, and some of this information may be considered “personal data” by the law. When we collect personal data, we generally act as a “data controller” as defined in applicable law. The exact categories of data we collect, why we collect it, and your opt-out choices depend on the application or service you use, as is more fully described below.</p>

    <p>When we post changes to this privacy statement, we will include the date when the statement was last updated. If we significantly change this statement, we will notify you about the upcoming change via our website or using in-app notifications. We encourage you to review this statement periodically.</p>

    <h2>User-submitted Data</h2>

    <p>Certain pieces of information we will only process when you submit it to us.</p>

    <p>When creating an <a href="https://auth.opera.com">Opera account</a> we may ask for a preferred username and an email address. The email address will be used to identify you as a user and for password recovery. Alternatively you can use your Facebook, Google+, Twitter, or VK account to sign in into an Opera account and access our services with the same profile. In this case we may collect your name and email address from these social networks. You can delete or modify the submitted data using your <a href="https://auth.opera.com/account/edit-profile">profile page</a>. We retain your data for seven days after you’ve decided to discontinue your Opera account in case you change your mind. Your Opera account with a verified email address will be deleted automatically if you don’t sign in for 2 years. Accounts with unverified email addresses will be deleted after 6 months of inactivity.</p>

    <p>Note also that Opera allows you to sync your browser data, such as Speed Dial entries and bookmarks, between devices that have another Opera browser installed on them. Profile sync relies on your Opera account and follows the same privacy approach.</p>

    <p>If you decide to provide feedback to Opera or participate in a promotional campaign, contest, or survey, organized by Opera or our partners on behalf of Opera, we may ask for information such as your name, age, phone number, email or postal address.</p>

    <p>If you agree to receive marketing information from Opera via email, SMS, or push notifications, we may use third-party technology providers to deliver such messages to you. You can opt-out from marketing communication at any time in your user profile settings or directly from a marketing email you receive.</p>

    <p>If you submit your phone number or email address on an application download page, we may send you a download link via SMS or email for your convenience.</p>

    <p>If you represent one of Opera’s customers or suppliers and have submitted data about your organization’s directors or officers in the course of a due diligence request from Opera, this information will be retained for three years.</p>

    <p>We will use this data only to provide the services you have requested and will not retain your data any longer than necessary to fulfill that specific purpose. If you’re not comfortable with us using submitted data for a limited purpose, then don’t provide it to us.</p>

    <h2>Anonymous Usage Statistics</h2>

    <p>When you install an Opera application, a random installation ID is generated. We may collect this identifier, as well as your device ID and hardware specification, operating system and environment configuration, and feature usage data.</p>

    <p>We use this information for certain legitimate business purposes, namely:</p>

    <ul>
        <li>To understand better how people interact with our applications and services;</li>
        <li>To enhance, modify, customize or otherwise improve our applications and services;</li>
        <li>To determine the effectiveness of promotional campaigns and advertising;</li>
        <li>To detect, debug and fix crashes in our applications and services;</li>
        <li>To prevent security breaches and abuse.</li>
    </ul>

    <p>In short, this information helps us to improve our products and services. We have no practical way to use this information to identify you personally. We may store this usage data for up to three years. If you would like to learn about your opt-out choices, please refer to our <a href="https://help.opera.com">help pages</a>.</p>

    <h2>News</h2>

    <p>To provide you with more relevant news content in certain countries and languages, we collect some information about the articles you read in the application’s native news feed, and your general location. This information is linked to a randomly generated News ID and may be stored on our servers for up to three months.</p>

    <h2>Personalized Ads</h2>

    <p>Based on advertising IDs and your general location, some of our mobile applications may serve targeted ads. These ads are provided by our monetization partners. You can always adjust your personalized ad choices in the application’s “Settings” menu or through your operating system’s settings.</p>

    <p>We collect this data pursuant to our legitimate business interests. As noted in our <a href="https://www.opera.com/eula">End User License Agreements</a> and <a href="https://www.opera.com/terms">Terms of Service</a>, our applications are ad-supported. Collecting this information helps us offset the costs of our business and helps provide a more personalized experience for the user.</p>

    <h2>Crash Reports and Logs</h2>

    <p>If an Opera application crashes, we collect a log that includes some information about your browser’s version, your operating system, platform and some memory data related to the crash. We collect this data with the sole purpose of improving our products and services. Crash logs are kept for 6 months.</p>

    <p>If you visit our websites, we may collect your IP address to help diagnose problems with our servers and to administer our websites. We use IP addresses solely for this purpose and may keep website access logs up to six months.</p>

    <h2>Feature-specific Data Points</h2>

    <p><strong>Browser Assistant.</strong> Your copy of Opera for computers may include a component that displays desktop notifications promoting the browser’s features. It checks if any notifications are pending on a scheduled basis and may anonymously report occurrences of certain system events (namely low battery, low hard disk space, new Wi-Fi network connected, another browser installed). This information is not collected by us and no personal information is sent.</p>

    <p><strong>Browser Extensions.</strong> When you install extensions from the <a href="https://addons.opera.com" target="_blank">Opera Addons</a> website, please note that these extensions are often developed by third parties and are subject to their own privacy terms. Please carefully review the terms before installing extensions.</p>

    <p><strong>Browser VPN.</strong> When you use our built-in VPN service, we do not log any information related to your browsing activity and originating network address.</p>

    <p><strong>Data Compression.</strong> Extreme-savings mode (in Opera Mini) renders web pages on our servers before sending a compressed version of the content to the application on your device. High-savings mode (Opera Turbo) does not render content, but our servers look through your requests to see if any elements on the page can be compressed before sending them to your device. If you use Opera Mini or Turbo data compression features, we log a randomly generated ID, advertising ID (on mobile devices), your IP address and URLs of your requests that are sent through our servers, but not the content. We may also log a phone number and IMEI, if they were provided by your mobile operator. We use this data to debug and improve our services, and we may store it in our server logs for up to 45 days. Then we anonymize and aggregate this data and may allow our business partners access to it.</p>

    <p><strong>Default Search Engines.</strong> When visiting some search engine websites, the website may query if it is set as the default search engine in the application’s settings, and suggest to set itself as the default search engine.</p>

    <p id="cashback"><strong>Dify Cashback.</strong> Dify Cashback is an incentive program where you can earn rewards when purchasing goods or services from participating online merchants. When you enable the Cashback service in the browser and visit supported websites, we’ll collect a merchant’s URL, list of your purchased items, transaction amount, and IP address. This data is required for the Cashback service to function, and we may also use it to provide more relevant partner deals, detect fraud and misuse of the service. To enable payouts, your Opera Auth account will be linked with the payment service provider, which will share your customer ID with Opera. Your data will be stored for up to 5 years due to regulatory requirements, and the account itself can be deleted by yourself or automatically after 2 years of inactivity.</p>

    <p id="gamebox"><strong>Gamebox.</strong> Gamebox is an online service and a website including a community for gamers where you may be able to play, download, or purchase games. If you choose to use Gamebox, you will be prompted to create a Gamebox account, and to supply certain data, including your email address, preferred username, first and last name, gender, date of birth, country and city of your residence. We use this data to profile your gaming interests, and to offer recommended games based on your interests. If you’d like to delete your Gamebox account or exercise your personal data rights, please contact us at <a href="mailto:ogamebox@opera.com">ogamebox@opera.com</a>.</p>

    <p id="gxc"><strong>GXC.</strong> GXC is an online service and a website including a community for gamers where you may be able to play, compete, and create games. To play games no account is required, however to participate in e.g. challenges or to create games you need to create an <a href="https://auth.opera.com">Opera account</a>. After signing up for the first time you will be prompted to provide your date of birth and an optional avatar. We use the date of birth to ensure you are eligible to use the service. If you’d like to delete your account or exercise your personal data rights, you have the option from the Opera account page to perform this action.</p>

    <p><strong>Hype.</strong> Depending on where you live, you may be able to access the Hype messaging service. If you choose to use Hype, you will be prompted to give us your phone number, which is required to operate the service. You will also be asked if you agree to give us access to your contacts, in order to connect with other Hype users (but you do not need to give us your contacts in order to use the service). We will retain your phone number and contacts for as long as you use Hype. Additionally, you also have the option to upload profile information at your discretion, including a user name, avatar, and your friends. If you delete your account, or go inactive for a while, we will retain this data for a short period of time in case you decide to reactivate.</p>

    <p><strong>Loomi by Opera.</strong> Depending on where you live, you may be able to access the Loomi Service to stream or download movies and other content from within the browser or via the Loomi.tv website. If you use the Loomi Service, Opera will collect the following data:</p>

    <ul>
        <li>
            <p>Opera Auth account data. Using Loomi requires creating an Opera Auth account. We use your Auth account data to provide and administer the Loomi Service, for example to determine your default language, to list titles you have watched and payments you have made, and to inform you about changes to the Service. We retain this data for as long as your Auth account is active (as described above).</p>
        </li>
        <li>
            <p>Content-related data. We collect data, such as the titles you have viewed, titles you have rented, and where you have left off in a movie, in order to manage your account and so that you can resume viewing at a later time. We also collect additional data, such as your IP address and a unique, randomly-assigned internal identification number, in order to comply with certain legal and/or contractual obligations, such as ensuring that you are located in a territory covered by the applicable content license, and detecting abusive or illegal use of the Loomi Service. Information about titles and views is associated with your Opera Auth account and will be retained for as long as your account is active. IP address and internal identifiers are deleted as soon as you close the applicable tab or navigate to a different tab.</p>
        </li>
        <li>
            <p>Usage statistics. We collect information, such as user agent, operating system, IP address and content identifiers, for the purposes of debugging and improving the Loomi Service. This data is retained for up to 45 days.</p>
        </li>
        <li>
            <p>Third Parties. If you use Loomi, we may share data with suppliers or other third parties for different purposes. If you choose to make a rental purchase via Loomi, data will be collected by our third-party payment service providers, such as PayU. We also use suppliers such as EZDRM to manage content license compliance, and Neutrino to detect improper VPN usage.</p>
        </li>
    </ul>

    <p><strong>Malicious-site Check.</strong> We use a fraud prevention framework and check the URLs you visit against lists of known, malicious websites to protect you online. We don’t store or share this data.</p>

    <p><strong>My Flow.</strong> If you use the “My Flow” function in Opera for computers or the Opera Touch browser, a random ID is generated by the Flow server and assigned to each client device. These IDs are used solely to enable pairing functionality between desktop and mobile applications and persist only while your devices are connected to My Flow. Your data is protected with end-to-end encryption and we retain it only as long as you continue to use the feature. You can disconnect your devices from My Flow, and delete your data through the application’s <a href="https://help.opera.com/touch/my-flow/">Settings</a> menu.</p>

    <p><strong>Social Login.</strong> Some of our applications use Firebase Authentication by Google to provide a quick and simple authentication service for your user account. To enable this service, you agree to share your email, phone number, user-agent string and IP address of your device with Google and Opera. All the information is needed to provide and improve the service. Please refer to their websites to learn more about <a href="https://policies.google.com/privacy" target="_blank">Google</a> and <a href="https://firebase.google.com/support/privacy" target="_blank">Firebase</a> privacy policy.</p>

    <h2>Use of Cookies</h2>

    <p>We use cookies on our websites for session management and retaining your settings or preferences. We may also use third-party cookies to collect visitor statistics and measure our marketing campaigns. If you would like to reject third-party cookies, please configure your browser’s settings accordingly. Please refer to our <a href="https://www.opera.com/privacy/cookies">Cookie Policy</a> for more information.</p>

    <h2>Children’s Privacy</h2>

    <p>There are no guarantees that children cannot enter our websites or use our applications without parental consent or notification. Therefore, and as provided in our <a href="https://www.opera.com/eula">End User License Agreements</a>, we require children to include their parents in the download process, and we encourage parents to read this privacy statement before allowing their children to use our applications and services.</p>

    <h2>International Data Transfers</h2>

    <p>When we do collect personal data, such personal data may be transferred to partners in countries outside of the European Economic Area with a different level of data protection than that provided for under European law. Whenever we do so, we require that our partners agree to the European Union’s model contracts for the transfer of personal data to third countries (also known as the “standard contractual clauses”) to ensure adequate protection of your personal data.</p>

    <h2>Third Parties</h2>

    <p>Our applications and services include third-party technology or code, some of which may use your data in different ways. When such third-party technologies use previously collected data, they typically act as data processors for us. When they collect data on their own, they typically act as independent data controllers. For convenience, we have included links to their privacy policies below. Data controllers are marked with an asterisk.</p>

    <p>Opera for computers and all our mobile applications use: <a href="https://www.google.com/policies/privacy" target="_blank" rel="nofollow noopener noreferrer">Google Geolocation API</a>*.</p>

    <p>Opera for Android: <a href="https://www.appsflyer.com/privacy-policy/" target="_blank" rel="nofollow noopener noreferrer">AppsFlyer</a>, <a href="https://www.facebook.com/about/privacy/" target="_blank" rel="nofollow noopener noreferrer">Facebook SDK</a>*, <a href="https://firebase.google.com/terms/" target="_blank" rel="nofollow noopener noreferrer">Firebase Cloud Messaging</a>, <a href="https://policies.google.com/technologies/partner-sites" target="_blank" rel="nofollow noopener noreferrer">Google AdMob</a>*, <a href="https://infura.io/privacy" target="_blank" rel="nofollow noopener noreferrer">Infura</a>, <a href="https://legal.my.com/us/" target="_blank" rel="nofollow noopener noreferrer">MyTarget</a>*, <a href="https://www.outbrain.com/legal/privacy" target="_blank" rel="nofollow noopener noreferrer">Outbrain</a>*.</p>

    <p>Opera for iOS: <a href="https://www.appsflyer.com/privacy-policy/" target="_blank" rel="nofollow noopener noreferrer">AppsFlyer</a>, <a href="https://firebase.google.com/terms/" target="_blank" rel="nofollow noopener noreferrer">Firebase Cloud Messaging</a>, <a href="https://firebase.google.com/terms/" target="_blank" rel="nofollow noopener noreferrer">Firebase Crashlytics</a>.</p>

    <p>Opera Mini for Android: <a href="https://www.appsflyer.com/privacy-policy/" target="_blank" rel="nofollow noopener noreferrer">AppsFlyer</a>, <a href="https://www.facebook.com/about/privacy/" target="_blank" rel="nofollow noopener noreferrer">Facebook SDK</a>*, <a href="https://firebase.google.com/terms/" target="_blank" rel="nofollow noopener noreferrer">Firebase Cloud Messaging</a>, <a href="https://policies.google.com/technologies/partner-sites" target="_blank" rel="nofollow noopener noreferrer">Google AdMob</a>*, <a href="https://www.outbrain.com/legal/privacy" target="_blank" rel="nofollow noopener noreferrer">Outbrain</a>*, <a href="https://yandex.com/legal/metrica_api/" target="_blank" rel="nofollow noopener noreferrer">Yandex AppMetrica</a>, <a href="https://yandex.ru/legal/partner/" target="_blank" rel="nofollow noopener noreferrer">Yandex Mobile Ads SDK</a>*.</p>

    <p>Opera Mini for iOS: <a href="https://www.appsflyer.com/privacy-policy/" target="_blank" rel="nofollow noopener noreferrer">AppsFlyer</a>, <a href="https://www.facebook.com/about/privacy/" target="_blank" rel="nofollow noopener noreferrer">Facebook SDK</a>*, <a href="https://policies.google.com/technologies/partner-sites" target="_blank" rel="nofollow noopener noreferrer">Google AdMob</a>*.</p>

    <p>Opera GX for Android: <a href="https://www.facebook.com/about/privacy/" target="_blank" rel="nofollow noopener noreferrer">Facebook SDK</a>*, <a href="https://firebase.google.com/terms/" target="_blank" rel="nofollow noopener noreferrer">Firebase Cloud Messaging</a>, <a href="https://policies.google.com/technologies/partner-sites" target="_blank" rel="nofollow noopener noreferrer">Google AdMob</a>*, <a href="https://infura.io/privacy" target="_blank" rel="nofollow noopener noreferrer">Infura</a>, <a href="https://legal.my.com/us/" target="_blank" rel="nofollow noopener noreferrer">MyTarget</a>*, <a href="https://www.outbrain.com/legal/privacy" target="_blank" rel="nofollow noopener noreferrer">Outbrain</a>*.</p>

    <p>Opera GX for iOS: <a href="https://firebase.google.com/terms/" target="_blank" rel="nofollow noopener noreferrer">Firebase Cloud Messaging</a>, <a href="https://firebase.google.com/terms/" target="_blank" rel="nofollow noopener noreferrer">Firebase Crashlytics</a>.</p>

    <p>Opera Touch: <a href="https://www.appsflyer.com/privacy-policy/" target="_blank" rel="nofollow noopener noreferrer">AppsFlyer</a>, <a href="https://firebase.google.com/terms/" target="_blank" rel="nofollow noopener noreferrer">Firebase Cloud Messaging</a>, <a href="https://firebase.google.com/terms/" target="_blank" rel="nofollow noopener noreferrer">Firebase Crashlytics</a>.</p>

    <p>Opera News: <a href="https://www.appsflyer.com/privacy-policy/" target="_blank" rel="nofollow noopener noreferrer">AppsFlyer</a>, <a href="https://www.facebook.com/about/privacy/" target="_blank" rel="nofollow noopener noreferrer">Facebook SDK</a>*, <a href="https://firebase.google.com/terms/" target="_blank" rel="nofollow noopener noreferrer">Firebase Cloud Messaging</a>, <a href="https://policies.google.com/technologies/partner-sites" target="_blank" rel="nofollow noopener noreferrer">Google AdMob</a>*, <a href="https://www.outbrain.com/legal/privacy" target="_blank" rel="nofollow noopener noreferrer">Outbrain</a>*.</p>

    <p>Payment service providers: <a href="https://www.paypal.com/webapps/mpp/ua/privacy-full" target="_blank" rel="nofollow noopener noreferrer">Paypal</a>*, <a href="https://corporate.payu.com/global-privacy-statement/" target="_blank" rel="nofollow noopener noreferrer">PayU</a>*.</p>

    <p>Technology providers: <a href="https://www.sendinblue.com/legal/privacypolicy/" target="_blank" rel="nofollow noopener noreferrer">Sendinblue</a>.</p>

    <p>Please note that this list of third-party entities applies only to the currently supported versions of our applications and services.</p>

    <h2>Your Rights</h2>

    <p>You have the right to make a request to access or delete any of your personal data that we might possess. You can make a request via <a href="https://security.opera.com/privacy-inquiry" target="_blank">this online request form</a> or by contacting our Data Protection Officer at the address below. You may be required to provide additional information to authenticate your request. You also have the right to lodge a complaint with Datatilsynet, the Norwegian Data Protection Authority, which can be contacted through <a href="https://www.datatilsynet.no" target="_blank" rel="nofollow noopener noreferrer">their webpage</a>.</p>

    <h2>Contacts</h2>

    <p>We are very open about privacy and recognize your trust as a great value. If you have any questions about this statement or any privacy issues in our applications or services, feel free to contact our Data Protection Officer via <a href="https://security.opera.com/privacy-inquiry" target="_blank">this online request form</a> or by post:</p>

    <p>Opera Norway AS<br>P.O. Box 4214, Nydalen<br>0401, Oslo<br>Norway</p>




            </div>
        </section>
    </main>



    <footer class="hf hf__footer">
      <div class="wrapper container-fluid">
        
        
        <div class="breadcrumbs">
            <div class="breadcrumbs__container">
                <div class="breadcrumbs__crumb breadcrumbs__logo breadcrumbs__sep">
                    <a href="/">
                        <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
                          <path fill="#B3B3B3" fill-rule="evenodd" d="M8.03 0a7.97 7.97 0 0 1 5.302 2.036 5.773 5.773 0 0 0-3.206-.98c-1.905 0-3.612.945-4.76 2.436-.884 1.044-1.457 2.587-1.496 4.32v.377c.04 1.732.612 3.275 1.497 4.32 1.147 1.49 2.854 2.435 4.759 2.435 1.17 0 2.265-.357 3.203-.978-2.049.997-3.962.297-4.594-.14 2.015-.441 3.538-2.878 3.538-5.826 0-2.948-1.523-5.385-3.538-5.827.632-.436 2.545-1.136 4.597-.136a7.979 7.979 0 0 1 2.662 5.655L16 8c0 2.37-1.03 4.499-2.668 5.963l-.002.001-.226.196a7.967 7.967 0 0 1-5.485 1.83A8 8 0 0 1 8 0h.03z"/>
                        </svg>
                    </a>
                </div>
                <ol itemscope itemtype="https://schema.org/BreadcrumbList">
                
                    <li itemprop="itemListElement" itemscope
                        itemtype="https://schema.org/ListItem" class="breadcrumbs__sep">
                        <div class="breadcrumbs__crumb">
                            
                            <span itemprop="name" class="hover-line__element">Privacy</span>
                            
                            <meta itemprop="position" content="1" />
                        </div>
                    </li>
                
                </ol>
            </div>
        </div>
        
        
        
            



<div class="footer__content">
  <div class="row">
    <div class="col-xs-12 col-xl-2">
        <input id="hf-services-switcher"
               class="hf__dd-switcher hf-hide"
               type="checkbox">
        <h4 class="hf__heading">
          <label class="hf__label footer__label"
                 for="hf-services-switcher">Services</label>
        </h4>
        <div class="hf__dd-content">
          <ul class="hf__links list-style--none">
            <li>
              <a class="hf__link hover-line"
                 href="https://addons.opera.com"
                 target="_blank">
                <span class="hover-line__element">Addons</span>
              </a>
            </li>
            <li>
              <a class="hf__link hover-line"
                 href="https://auth.opera.com"
                 target="_blank"
                 rel="nofollow noopener">
                <span class="hover-line__element">Opera account</span>
              </a>
            </li>
            <li>
              <a class="hf__link hover-line"
                 href="https://addons.opera.com/wallpapers"
                 target="_blank">
                <span class="hover-line__element">Wallpapers</span>
              </a>
            </li>
            <li>
              <a class="hf__link hover-line"
                 href="/ads"
                 target="_blank">
                <span class="hover-line__element">Opera Ads</span>
              </a>
            </li>
            
            
          </ul>
        </div>
    </div>
    <div class="col-xs-12 col-xl-2">
      <input id="hf-help-switcher"
             class="hf__dd-switcher hf-hide"
             type="checkbox">
      <h4 class="hf__heading">
        <label class="hf__label footer__label"
               for="hf-help-switcher">Help</label>
      </h4>
      <div class="hf__dd-content">
        <ul class="hf__links list-style--none">
          <li>
            <a class="hf__link hover-line"
               href="/help">
              <span class="hover-line__element">Help &amp; support</span>
            </a>
          </li>
          <li>
            <a class="hf__link hover-line"
               href="https://blogs.opera.com"
               target="_blank">
              <span class="hover-line__element">Opera blogs</span>
            </a>
          </li>
          <li>
            <a class="hf__link hover-line"
               href="https://forums.opera.com"
               target="_blank">
              <span class="hover-line__element">Opera forums</span>
            </a>
          </li>
          <li>
            <a class="hf__link hover-line"
               href="https://dev.opera.com/"
               target="_blank">
              <span class="hover-line__element">Dev.Opera</span>
            </a>
          </li>
          <li>
            <a class="hf__link hover-line"
               href="https://help.opera.com/en/faq/"
               target="_blank">
              <span class="hover-line__element">FAQ</span>
            </a>
          </li>
        </ul>
      </div>
    </div>
    <div class="col-xs-12 col-xl-2">
      <input id="hf-legal-switcher"
             class="hf__dd-switcher hf-hide"
             type="checkbox">
      <h4 class="hf__heading">
        <label class="hf__label footer__label"
               for="hf-legal-switcher">Legal</label>
      </h4>
      <div class="hf__dd-content">
        <ul class="hf__links list-style--none">
          <li>
            <a class="hf__link hover-line"
               href="https://security.opera.com"
               target="_blank"
               rel="nofollow">
              <span class="hover-line__element">Security</span>
            </a>
          </li>
          <li>
            <a class="hf__link hover-line"
               href="/privacy"
               rel="nofollow">
              <span class="hover-line__element">Privacy</span>
            </a>
          </li>
          <li>
            <a class="hf__link hover-line"
               href="/privacy/cookies"
               rel="nofollow">
              <span class="hover-line__element">Cookies policy</span>
            </a>
          </li>
          <li>
            <a class="hf__link hover-line"
               href="/eula"
               rel="nofollow">
              <span class="hover-line__element">EULA</span>
            </a>
          </li>
          <li>
            <a class="hf__link hover-line"
               href="/terms"
               rel="nofollow">
              <span class="hover-line__element">Terms of Service</span>
            </a>
          </li>
        </ul>
      </div>
    </div>
    <div class="col-xs-12 col-xl-2 mb4">
      <input id="hf-company-switcher"
             class="hf__dd-switcher hf-hide"
             type="checkbox">
      <h4 class="hf__heading">
        <label class="hf__label footer__label"
               for="hf-company-switcher">Company</label>
      </h4>
      <div class="hf__dd-content">
        <ul class="hf__links list-style--none">
          <li>
            <a class="hf__link hover-line"
               href="/about">
              <span class="hover-line__element">About Opera</span>
            </a>
          </li>
          <li>
            <a class="hf__link hover-line"
               href="/newsroom">
              <span class="hover-line__element">Press info</span>
            </a>
          </li>
          <li>
            <a class="hf__link hover-line"
               href="https://jobs.opera.com/"
               target="_blank">
              <span class="hover-line__element">Jobs</span>
            </a>
          </li>
          <li>
            <a class="hf__link hover-line"
               href="https://investor.opera.com/"
               target="_blank">
              <span class="hover-line__element">Investors</span>
            </a>
          </li>
          <li>
            <a class="hf__link hover-line"
               href="/b2b">
              <span class="hover-line__element">Become a partner</span>
            </a>
          </li>
          <li>
            <a class="hf__link hover-line"
               href="/contact">
              <span class="hover-line__element">Contact us</span>
            </a>
          </li>
        </ul>
      </div>
    </div>
    <div class="col-xs-12 col-xl-3 col-xl-offset-1">
      <a class="hf--brand"
         href="/">
        
        <img data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/logo/logo-and-name.e807fcd39b53.png"
        alt="Opera" style="width: 13.2rem">
        
      </a>
      <p class="color--black-30 text-level-5 mt4">
        Innovate and inspire, uncover the unexpected, support open standards.
      </p>

      

      <p class="footer__follow-label">Follow Opera</p>
      <div class="footer__social-icons">
        

<div class="footer__social-box">
    <ul class="footer__social-icons ">
        
            <li>
                <a class="facebook"
                   href="https://www.facebook.com/Opera/"
                   rel="noopener nofollow"
                   target="_blank"
                   title="Opera - Facebook">
                    <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
                        <path d="M20 12C20 7.58172 16.4183 4 12 4C7.58172 4 4 7.58172 4 12C4 15.993 6.92547 19.3027 10.75 19.9028V14.3125H8.71875V12H10.75V10.2375C10.75 8.2325 11.9444 7.125 13.7717 7.125C14.6467 7.125 15.5625 7.28125 15.5625 7.28125V9.25H14.5538C13.56 9.25 13.25 9.86672 13.25 10.5V12H15.4688L15.1141 14.3125H13.25V19.9028C17.0745 19.3027 20 15.993 20 12Z" fill="black"/>
                    </svg>
                </a>
            </li>
            
                <li>
                    <a class="twitter"
                       href="https://twitter.com/opera"
                       rel="noopener nofollow"
                       target="_blank"
                       title="Opera - Twitter">
                        <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
                            <path d="M21 6.59819C20.3379 6.86913 19.6257 7.05239 18.8788 7.13423C19.6414 6.71257 20.2267 6.04538 20.5029 5.24908C19.7893 5.63973 18.9986 5.92313 18.1578 6.07588C17.4842 5.41378 16.5244 5 15.4616 5C13.4225 5 11.7687 6.52626 11.7687 8.40811C11.7687 8.67523 11.8014 8.93524 11.8648 9.18483C8.79565 9.04276 6.07436 7.68602 4.25282 5.62347C3.935 6.12672 3.75269 6.71257 3.75269 7.33705C3.75269 8.51918 4.40512 9.56278 5.39548 10.1738C4.79042 10.1563 4.2206 10.003 3.72294 9.74705C3.72267 9.76154 3.72267 9.77602 3.72267 9.79026C3.72267 11.4416 4.99614 12.8189 6.68521 13.1318C6.37565 13.2101 6.04875 13.2515 5.71248 13.2515C5.47397 13.2515 5.24291 13.2304 5.01763 13.1907C5.48747 14.5444 6.85101 15.5298 8.46736 15.5575C7.20325 16.4718 5.61113 17.0164 3.88047 17.0164C3.58303 17.0164 3.28835 17.0004 3 16.9687C4.63343 17.936 6.57505 18.5 8.66042 18.5C15.453 18.5 19.1677 13.3069 19.1677 8.80282C19.1677 8.65515 19.1641 8.50799 19.157 8.3621C19.8791 7.88173 20.5051 7.28164 21 6.59819Z" fill="black"/>
                        </svg>
                    </a>
                </li>
                <li>
                    <a class="youtube"
                       href="https://www.youtube.com/opera"
                       rel="noopener nofollow"
                       target="_blank"
                       title="Opera - Youtube">
                        <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
                            <path fill-rule="evenodd" clip-rule="evenodd" d="M18.2602 6.33881C18.9455 6.52131 19.4859 7.05553 19.6703 7.73326C20.0131 8.97116 19.9999 11.5515 19.9999 11.5515C19.9999 11.5515 19.9999 14.1187 19.6705 15.3567C19.4859 16.0343 18.9456 16.5687 18.2602 16.751C17.0081 17.0769 12 17.0769 12 17.0769C12 17.0769 7.00487 17.0769 5.73974 16.7381C5.05432 16.5556 4.51404 16.0213 4.32947 15.3437C4 14.1187 4 11.5385 4 11.5385C4 11.5385 4 8.97116 4.32947 7.73326C4.51391 7.05565 5.0675 6.50827 5.73962 6.32589C6.99169 6 11.9998 6 11.9998 6C11.9998 6 17.0081 6 18.2602 6.33881ZM14.57 11.5384L10.4053 13.9102V9.16668L14.57 11.5384Z" fill="black"/>
                        </svg>
                    </a>
                </li>
                <li>
                    <a class="linkedin"
                       href="https://www.linkedin.com/company/opera-software"
                       rel="noopener nofollow"
                       target="_blank"
                       title="Opera - LinkedIn">
                        <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
                            <path fill-rule="evenodd" clip-rule="evenodd" d="M5 4C4.44772 4 4 4.44772 4 5V19C4 19.5523 4.44772 20 5 20H19C19.5523 20 20 19.5523 20 19V5C20 4.44772 19.5523 4 19 4H5ZM6.56756 6.90358C6.31045 7.14232 6.18188 7.44535 6.18188 7.81267C6.18188 8.17997 6.30677 8.48485 6.55654 8.72727C6.80631 8.96969 7.13321 9.09091 7.53726 9.09091H7.54828C7.96701 9.09091 8.30494 8.96969 8.56205 8.72727C8.81182 8.49218 8.93671 8.19834 8.93671 7.84573C8.93671 7.45637 8.80814 7.14049 8.55103 6.89807C8.30126 6.66298 7.97436 6.54545 7.57031 6.54545C7.15893 6.54545 6.82467 6.66482 6.56756 6.90358ZM6.32514 10.0937V17.4545H8.77142V10.0937H6.32514ZM12.5731 17.4545H10.1268C10.1415 15.236 10.1488 13.5133 10.1488 12.2865C10.1488 11.0597 10.1415 10.3287 10.1268 10.0937H12.5731V11.1405L12.562 11.1625H12.5731V11.1405C13.102 10.3251 13.8403 9.91735 14.7879 9.91735C15.6328 9.91735 16.3123 10.1983 16.8265 10.7603C17.3407 11.3223 17.5979 12.1469 17.5979 13.2342V17.4545H15.1516V13.5207C15.1516 12.4114 14.7402 11.8567 13.9174 11.8567C13.6015 11.8567 13.3389 11.9431 13.1295 12.1157C12.9202 12.2883 12.7641 12.4995 12.6612 12.7493C12.6025 12.8889 12.5731 13.0872 12.5731 13.3443V17.4545Z" fill="black"/>
                        </svg>
                    </a>
                </li>
            
            <li>
                <a class="instagram"
                   href="https://www.instagram.com/opera/"
                   rel="noopener nofollow"
                   target="_blank"
                   title="Opera - Instagram">
                    <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
                        <path fill-rule="evenodd" clip-rule="evenodd" d="M6.76005 4.42003C7.26863 4.22229 7.85024 4.08724 8.70197 4.04847C9.55564 4.00905 9.8277 4 12.001 4C14.1736 4 14.4463 4.00969 15.2993 4.04847C16.1504 4.08659 16.732 4.22229 17.2412 4.42003C17.7666 4.62423 18.2132 4.89822 18.6578 5.34281C19.1024 5.78805 19.3757 6.23393 19.5806 6.75994C19.7783 7.2685 19.9134 7.85008 19.9522 8.70178C19.991 9.55477 20 9.82746 20 12C20 14.1725 19.991 14.4446 19.9522 15.2982C19.9141 16.1499 19.7783 16.7315 19.5806 17.2401C19.3757 17.7661 19.1024 18.2126 18.6578 18.6572C18.2125 19.1018 17.7666 19.3751 17.2406 19.58C16.732 19.7777 16.1504 19.9128 15.2987 19.9515C14.4457 19.991 14.1736 20 12.0003 20C9.8277 20 9.55564 19.9903 8.70197 19.9515C7.85024 19.9128 7.26928 19.7777 6.76005 19.58C6.23337 19.3751 5.78747 19.1018 5.34287 18.6572C4.89761 18.2126 4.62426 17.7661 4.42005 17.2401C4.2223 16.7315 4.08724 16.1499 4.04847 15.2982C4.00905 14.4452 4 14.1725 4 12C4 9.82746 4.00905 9.55477 4.04847 8.70178C4.08724 7.85008 4.2223 7.2685 4.42005 6.75994C4.62426 6.23328 4.89826 5.7874 5.34287 5.34281C5.78812 4.89822 6.23402 4.62423 6.76005 4.42003ZM8.76812 18.5118C7.98812 18.4763 7.56419 18.3464 7.28244 18.2365C6.90892 18.0911 6.64267 17.9179 6.36221 17.6381C6.08239 17.3583 5.90855 17.0921 5.7638 16.7186C5.65394 16.4368 5.52405 16.0129 5.4885 15.233C5.44973 14.3897 5.44198 14.1364 5.44198 12C5.44198 9.86366 5.45038 9.61099 5.4885 8.76705C5.52405 7.98708 5.65459 7.56382 5.7638 7.28143C5.9092 6.90792 6.08239 6.64169 6.36221 6.36123C6.64202 6.08143 6.90827 5.9076 7.28244 5.76285C7.56419 5.65299 7.98812 5.52311 8.76812 5.48757C9.61145 5.44879 9.86477 5.44104 12.0006 5.44104C14.137 5.44104 14.3897 5.44944 15.2336 5.48757C16.0136 5.52311 16.4369 5.65364 16.7193 5.76285C17.0929 5.9076 17.3591 6.08143 17.6396 6.36123C17.9194 6.64104 18.0926 6.90792 18.238 7.28143C18.3478 7.56317 18.4777 7.98708 18.5133 8.76705C18.552 9.61099 18.5598 9.86366 18.5598 12C18.5598 14.1357 18.552 14.389 18.5133 15.233C18.4777 16.0129 18.3472 16.4368 18.238 16.7186C18.0926 17.0921 17.9194 17.3583 17.6396 17.6381C17.3597 17.9179 17.0929 18.0911 16.7193 18.2365C16.4376 18.3464 16.0136 18.4763 15.2336 18.5118C14.3903 18.5506 14.137 18.5583 12.0006 18.5583C9.86477 18.5583 9.61145 18.5506 8.76812 18.5118ZM16.2714 8.68948C15.7409 8.68948 15.3111 8.25911 15.3111 7.72922C15.3111 7.19934 15.7409 6.76961 16.2714 6.76961C16.802 6.76961 17.2317 7.19934 17.2317 7.72922C17.2317 8.25911 16.8013 8.68948 16.2714 8.68948ZM7.89201 12C7.89201 14.2688 9.73118 16.1079 12.0001 16.1079C14.269 16.1079 16.1082 14.2688 16.1082 12C16.1082 9.73119 14.269 7.89209 12.0001 7.89209C9.73118 7.89209 7.89201 9.73119 7.89201 12ZM9.33398 12C9.33398 10.5273 10.5276 9.33313 12.0003 9.33313C13.4731 9.33313 14.6673 10.5273 14.6673 12C14.6673 13.4727 13.4731 14.6669 12.0003 14.6669C10.5276 14.6669 9.33398 13.4727 9.33398 12Z" fill="black"/>
                    </svg>
                </a>
            </li>
        
    </ul>
</div>

      </div>
    </div>
  </div>
</div>


<div class="footer__bottom">
    <div class="footer__company-box center-xs start-md color--black-30">
        <p class="footer__company-box-p">&copy; 1995-2022 Opera Norway </p>
        <p class="footer__company-box-p">All rights reserved</p>
    </div>
    
        



<div class="footer__lang-box">
    <p class="footer__lang-box-label">Language:</p>
    <form action="/i18n/setlang/"
          method="post"><input type="hidden" name="csrfmiddlewaretoken" value="IvNmbWOt5WtSPNr1xvueIl1hR83LJdH09hgJM1pcFMoXWm4HTFjbNQhXfZFHjVse">
        <input name="next"
               type="hidden"
               value="https://www.opera.com/privacy"/>
        <select id="footer__lang-selector"
                class="footer__lang-selector"
                name="language"
                onchange="this.form.submit()">
            
            
                <option value="en"
                        selected="selected">
                    English
                </option>
            
                <option value="ar">
                    العربيّة
                </option>
            
                <option value="de">
                    Deutsch
                </option>
            
                <option value="es">
                    Español
                </option>
            
                <option value="es-419">
                    Español Latinoamérica
                </option>
            
                <option value="fr">
                    Français
                </option>
            
                <option value="id">
                    Bahasa Indonesia
                </option>
            
                <option value="it">
                    Italiano
                </option>
            
                <option value="ja">
                    日本語
                </option>
            
                <option value="ko">
                    한국어
                </option>
            
                <option value="no">
                    Norsk
                </option>
            
                <option value="pl">
                    Polski
                </option>
            
                <option value="pt">
                    Português
                </option>
            
                <option value="pt-br">
                    Português Brasileiro
                </option>
            
                <option value="ru">
                    Русский
                </option>
            
                <option value="tr">
                    Türkçe
                </option>
            
                <option value="uk">
                    Українська
                </option>
            
                <option value="vi">
                    Tiếng Việt
                </option>
            
                <option value="zh-cn">
                    简体中文
                </option>
            
        </select>
    </form>
</div>

    
</div>

        
      </div>
      
    </footer>

    

<div id="cookie-consent" class="cookie-consent__wrapper flex flex-direction--column justify-content--center">
            <div class="cookie-consent__basic cookie-consent__inner">
                <p class="cookie-consent__head">
                    <span class="text-level-3"><b>Cookies</b></span>
                </p>
                <div class="cookie-consent__body">
                    <p>
                        
                        
                        We use cookies to improve your experience on our website. By clicking Accept cookies, you agree to the use of cookies for marketing and analytics purposes. Further information can be found in our <a rel="nofollow" href="/privacy">Privacy Statement </a> and <a rel="nofollow" href="/privacy/cookies">Cookies Policy</a>.
                    </p>
                    <div class="text-level-5">
                        <span class="btn width-100 btn--primary cookie-consent__btn cookie-basic-consent__btn">
                            Accept cookies
                        </span>
                        <span class="btn btn--light width-100 cookie-consent__btn manage-cookies__btn">
                            Manage cookies
                        </span>
                    </div>
                </div>
            </div>

            <div class="cookie-consent__advanced cookie-consent__inner text-align--left">

                    <div class="popup">
                        <div class="cookie-consent__head">
                            <div class="row middle-xs">
                            <span class="col-xs-8">
                                <span class="text-level-3"><b>Our use of cookies</b></span>
                            </span>
                                <span class="col-xs-4 end-xs block--relative">
                                <span class="close cookie-consent__advanced-close"></span>
                            </span>
                            </div>
                        </div>
                        <div class="cookie-consent__body">
                            <h4>Necessary cookies</h4>
                            <p>
                                These cookies are used for website functionality, such as storing your settings and preferences. You can disable these in your browser settings, but it may affect website functionality.
                            </p>

                            <div class="row middle-xs">
                                <div class="col-xs-8">
                                    <h4>Marketing & Analytics cookies</h4>
                                </div>
                                <div class="col-xs-4 end-xs">
                                    <div class="cookie-consent__switch active marketing_option_switch"></div>
                                </div>
                            </div>
                            <p>
                                We recommend accepting these cookies, which include third-party cookies, for the improvement of our products and everyone’s experience. These cookies contribute to statistics and the measurement of marketing campaigns.
                            </p>
                        </div>
                        <div class="cookie-consent__footer text-level-5 text-align--center">
                        <span class="btn btn--black cookie-consent__btn cookie-selection__btn">
                            Accept selection
                        </span>
                        </div>
                    </div>
            </div>
</div>


    
    
        
        <script type="text/javascript" src="https://cdn-production-opera-website.operacdn.com/staticfiles/CACHE/js/output.b1decaef34db.js" defer></script>

        <!-- Google Tag Manager (noscript) -->
<noscript>
    <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-PRBZ42F"
            height="0"
            width="0"
            style="display:none;visibility:hidden"></iframe>
</noscript>
<!-- End Google Tag Manager (noscript) -->

    





</body>
</html>