-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·1223 lines (1185 loc) · 46.6 KB
/
Copy pathindex.html
File metadata and controls
executable file
·1223 lines (1185 loc) · 46.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="keywords" content="Security, Encryption, cybersecurity, HTTPS, Enigma, PKI, IoT, Internet of things, Blockchain, AWS, cloudHSM, cloud HSM, hardware security module, payments, tokenisation, tokenization">
<meta name="description" content="Regain control over your data and communication. The Private Space provides secure and private connection to the internet from insecure Wi-Fi networks. Each Private Space has its own server for storing and sharing documents.">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0">
<link rel="shortcut icon" type="image/png" href="favicon.png">
<link rel="stylesheet" href="./css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="./css/animate.min.css">
<link rel="stylesheet" href="./css/font-awesome.min.css">
<link rel="stylesheet" href="./css/et-line.min.css">
<script src="./js/jquery-2.1.0.min.js"></script>
<script src="./js/bootstrap.min.js"></script>
<script src="./js/blocs.min.js"></script>
<script src="./js/jqBootstrapValidation.js"></script>
<script src="./js/formHandler.js"></script>
<script src="./js/lazysizes.min.js" defer></script>
<title>The Private Space / Dedicated VPN for companies, with own cloud and instant messaging</title>
<meta content="/img/logo2-rgb_cropped.gif" property="og:image" />
<meta content="200" property="og:image:width" />
<!-- Google Analytics -->
<script type="text/javascript" src="https://s3.amazonaws.com/assets.freshdesk.com/widget/freshwidget.js"></script>
<script type="text/javascript">
FreshWidget.init("", {"queryString": "&widgetType=popup&formTitle=Enigma+Help+%26+Support&submitTitle=Push+It&submitThanks=Thanks+for+getting+in+touch!&captcha=yes", "utf8": "✓", "widgetType": "popup", "buttonType": "text", "buttonText": "Help & Support", "buttonColor": "#00a7d7", "buttonBg": "#ffffff", "alignment": "1", "offset": "0px", "submitThanks": "Thanks for getting in touch!", "formHeight": "500px", "captcha": "yes", "url": "https://enigmabridge.freshdesk.com"} );
</script></script><!--Start of Tawk.to Script-->
<script type="text/javascript">
var Tawk_API=Tawk_API||{}, Tawk_LoadStart=new Date();
(function(){
var s1=document.createElement("script"),s0=document.getElementsByTagName("script")[0];
s1.async=true;
s1.src='https://embed.tawk.to/57a2055d00df04742fb54f1c/default';
s1.charset='UTF-8';
s1.setAttribute('crossorigin','*');
s0.parentNode.insertBefore(s1,s0);
})();
</script>
<!--End of Tawk.to Script--><script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-84597687-5', 'auto');
ga('send', 'pageview');
</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-MKFRQJG');</script>
<!-- End Google Tag Manager -->
<!-- Google Analytics END -->
</head>
<body>
<!-- Main container -->
<div class="page-container">
<!-- bloc-0 -->
<div class="bloc bloc-fill-screen bg-cloudSpaces b-parallax bgc-white l-bloc " id="bloc-0">
<div class="container fill-bloc-top-edge">
<nav class="navbar row">
<div class="navbar-header">
<a class="navbar-brand" href="index.html"><img src="img/lazyload-ph.png" data-src="img/logo2-rgb_cropped_ps.gif" width="300" class="lazyload" /></a>
<button id="nav-toggle" type="button" class="ui-navbar-toggle navbar-toggle" data-toggle="collapse" data-target=".navbar-1">
<span class="sr-only">Toggle navigation</span><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span>
</button>
</div>
<div class="collapse navbar-collapse navbar-1">
<ul class="site-navigation nav navbar-nav pull-right">
<li>
<a href="index.html" class="ltc-rich-electric-blue">Home</a>
</li>
<li>
<a href="index.html" class="ltc-rich-electric-blue" target="_blank">Contact Us</a>
</li>
<li>
<a href="https://enigmabridge.freshdesk.com/support/solutions/19000098261" class="ltc-rich-electric-blue" id="pl-undefined" target="_blank">Support</a>
</li>
<li>
</li>
</ul>
</div>
</nav>
</div>
<div class="container">
<div class="row">
<div class="col-sm-6">
<h1 class="text-center tc-onyx mg-sm">
Private Network For Companies
</h1>
<h2 class="text-center mg-lg tc-rich-electric-blue ">
Turn you favorite places into your branch office
</h2>
<h5 class="mg-lg text-center tc-onyx">
The Private Space is your own global network. You choose where its internet gateway is to fit your business needs. <br> <br>Trusted encryption technologies. Device connection keys instead of passwords to comply with the most stringent security requirements.<br>
</h5>
<div class="text-center">
<a class="btn btn-clean btn-lg btn-rich-electric-blue" onclick="scrollToTarget('#launch-ps')">Try it free</a>
</div>
</div>
<div class="col-sm-6">
<div class="center-block blocsapp-device blocsapp-device-mb mb-gold">
<img src="img/lazyload-ph.png" data-src="img/harrow3_portal.png" class="img-responsive lazyload" />
</div>
</div>
</div>
</div>
<div class="container fill-bloc-bottom-edge">
<div class="row">
<div class="col-sm-12">
<a id="scroll-hero" class="blocs-hero-btn-dwn" href="#"><span class="fa fa-chevron-down icon-onyx"></span></a>
</div>
</div>
</div>
</div>
<!-- bloc-0 END -->
<!-- bloc-1 -->
<div class="bloc tc-white bgc-rich-electric-blue" id="bloc-1">
<div class="container bloc-lg">
<div class="row">
<div class="col-sm-4">
<div class="text-center">
<span class="fa fa-plane icon-round icon-md icon-onyx"></span>
</div>
<h3 class="text-center mg-md tc-onyx">
Protect Wi-Fi Connections
</h3>
<p class="text-center ">
When connected, all your data is encrypted. The Private Space gives you a privacy cloak against "Death Eaters".
</p>
</div>
<div class="col-sm-4">
<div class="text-center">
<span class="fa fa-group icon-round icon-md icon-onyx"></span>
</div>
<h3 class="text-center mg-md tc-onyx">
Your own network within internet
</h3>
<p class="text-center ">
Each Private Space is a completely separate encrypted network within the internet. The private space per customer, not per country.
</p>
</div>
<div class="col-sm-4">
<div class="text-center">
<span class="fa fa-key icon-round icon-md icon-onyx"></span>
</div>
<h3 class="text-center mg-md tc-onyx">
Beyond Passwords
</h3>
<p class="text-center ">
Entry to The Private Space is with a special key. It creates a new secret each time you connect. This gives you an ultimate security and compliance.
</p>
</div>
</div>
</div>
</div>
<!-- bloc-1 END -->
<!-- what-is-ps -->
<div class="bloc bgc-white tc-onyx" id="what-is-ps">
<div class="container bloc-md">
<div class="row">
<div class="col-sm-12">
<div class="row animated zoomIn">
<div class="col-sm-2">
<p class="text-center ">
protection <br>from insecure WiFi
</p>
</div>
<div class="col-sm-2">
<p class="text-center ">
local network for connected devices
</p>
</div>
<div class="col-sm-2">
<p class="text-center ">
access to services inside your office
</p>
</div>
<div class="col-sm-2">
<p class="text-center ">
private place to share documents
</p>
</div>
<div class="col-sm-2">
<p class="text-center ">
hub for private instant messaging
</p>
</div>
<div class="col-sm-2">
<p class="text-center ">
beyond passwords for security compliance
</p>
</div>
</div>
<div class="row voffset-md">
<div class="col-sm-6">
<img src="img/lazyload-ph.png" data-src="img/cloud_chatAndfiles.png" class="img-responsive lazyload" />
</div>
<div class="col-sm-6">
<h3 class="tc-rich-electric-blue mg-sm">
Your private network
</h3>
<p class=" mg-md">
The Private Space is your own private network in the cloud. It is hidden from all but friends or colleagues you invite to it. <br>
</p>
<h3 class="tc-rich-electric-blue mg-sm">
Work securely everywhere
</h3>
<p class=" mg-md">
It protects your data when you use insecure Wi-Fi networks. It even provides anonymity as no-one can see which cloud services you use. <br>
</p>
<h3 class="tc-rich-electric-blue mg-sm">
File sharing and chat
</h3>
<p class=" mg-md">
Its version Office provides a secure storage for your documents, photos, files. That includes a private chat, which automatically shows everyone available in your Private Space. <br>
</p>
<h3 class="tc-rich-electric-blue mg-sm">
Ultimate security without passwords
</h3>
<p class=" mg-md">
Forget passwords, logging to The Private Space is much more secure than passwords and once in, we provide seamless login to the file storage and chat (instant messaging).
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- what-is-ps END -->
<!-- bloc-3 -->
<div class="bloc bgc-rich-electric-blue d-bloc" id="bloc-3">
<div class="container bloc-md">
<div class="row">
<div class="col-xs-12 col-md-8 col-md-offset-2">
<h3 class="statement-bloc-text tc-onyx ">
“Connecting to The Private Space is like entering a room only you have the keys."
</h3>
<p class="text-center">
<br>
</p>
</div>
</div>
</div>
</div>
<!-- bloc-3 END -->
<!-- Bloc Group -->
<div class='bloc-group'>
<!-- bloc-4 -->
<div class="bloc bloc-tile-2 bgc-white full-width-bloc hidden-lg hidden-md hidden-sm hidden-xs object-hidden l-bloc" id="bloc-4">
<div class="container">
<div class="row row-no-gutters">
<div class="col-sm-12">
<img src="img/lazyload-ph.png" data-src="img/secure_gateway.jpg" class="img-responsive center-block lazyload" />
</div>
</div>
</div>
</div>
<!-- bloc-4 END -->
<!-- bloc-5 -->
<div class="bloc bloc-tile-2 tc-onyx bgc-white hidden-lg hidden-md hidden-sm hidden-xs object-hidden" id="bloc-5">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h2 class="mg-md tc-rich-electric-blue ">
Create Your Private Universe
</h2>
<h3 class="mg-md tc-onyx">
<strong>Digital Space Connecting Your Team</strong>
</h3>
<p>
The Private Space creates secure and private connections between your devices, your team, or friends. <br> <br>You decide who can enter the private space and when a stolen laptop is not welcome any more. <br> <br>Direct connections are allowed when the data is protected by your own local network.<br><br>
</p>
</div>
</div>
</div>
</div>
<!-- bloc-5 END -->
</div>
<!-- Bloc Group END -->
<!-- bloc-6 -->
<div class="bloc tc-onyx bgc-rich-electric-blue hidden-lg hidden-md hidden-sm hidden-xs object-hidden" id="bloc-6">
<div class="container bloc-md">
<div class="row">
<div class="col-sm-2 col-sm-offset-5 col-xs-6 col-xs-offset-3">
<img src="img/lazyload-ph.png" data-src="img/dan270.jpg" class="img-responsive img-circle lazyload" />
</div>
<div class="col-xs-12 col-md-8 col-md-offset-2">
<h3 class="statement-bloc-text tc-white">
“This is a company VPN product designed on the back of many years of enterprise security experience."
</h3>
<p class="text-center">
<strong>Dan, co-founder and CEO</strong>
</p>
</div>
</div>
</div>
</div>
<!-- bloc-6 END -->
<!-- launch-ps -->
<div class="bloc tc-onyx bgc-anti-flash-white" id="launch-ps">
<div class="container">
<div class="row voffset">
<div class="col-sm-12">
<h1 class="text-center mg-lg tc-rich-electric-blue-2 ">
Start your 14 days’ free trial now
</h1>
<div class="row row-no-gutters">
<div class="col-sm-3">
<div class="panel">
<div class="panel-heading">
<h2 class="mg-clear text-center tc-rich-electric-blue-2">
Private Network<br>
</h2>
<h3 class="mg-md text-center tc-onyx">
Connect with your team, secure your connection
</h3>
</div>
<div class="panel-body">
<ul class="list-unstyled">
<li>
<form id="form_gateway" novalidate success-msg="You will shortly receive a ticket from our support system. Your initial access key will be then sent about 20 minutes later." fail-msg="Something broke down, and we can&rsquo;t send your request. Please email us directly at support@enigmabridge.com">
<div class="form-group">
<select class="form-control selection-price animated pulse animLoop02" id="gatewaysize">
<option value="gw5">
5 devices - $10/month
</option>
<option value="gw25">
25 devices - $75/month
</option>
<option value="gw50">
50 devices - $150/month
</option>
<option value="gw100">
100 devices - $275/month
</option>
<option value="gw200">
200 devices - $400/month
</option>
<option value="gwX">
More devices / special request
</option>
</select>
</div>
<div class="form-group">
<label>
Private Space prefered location
</label>
</div>
<div class="form-group">
<select class="form-control animDelay04" id="gatewaylocation">
<option value="uk">
United Kingdom
</option>
<option value="us-east">
United States - East
</option>
<option value="us-west">
United States - West
</option>
<option value="india">
India
</option>
<option value="germany">
Germany
</option>
<option value="singapore">
Singapore
</option>
</select>
</div>
<div class="form-group">
<label>
Email address
</label>
<input id="space_admin_email_gw" class="form-control animDelay1 animated pulse animLoop02" required type="email" />
</div>
<div class="form-group">
<label>
If you have any question<br>
</label><textarea id="gatewaymessage" class="form-control" rows="4" cols="50"></textarea>
</div>
<button class="bloc-button btn btn-block btn-xl animDelay2 animated pulse animLoop03 btn-rich-electric-blue" type="submit">
Try it free
</button>
<p class="text-center ">
<i><br>2 weeks trial - no card, <br>just email address</i><br>
</p>
</form>
</li>
<li>
<h5 class=" mg-sm tc-rich-electric-blue">
<span class="fa fa-check"></span> Unlimited data
</h5>
</li>
<li>
<h5 class=" mg-sm tc-rich-electric-blue">
<span class="fa fa-check"></span> Fully automated launch
</h5>
</li>
<li>
<h5 class=" mg-sm tc-rich-electric-blue">
<span class="fa fa-check"></span> Add devices with "1-click"
</h5>
</li>
<li>
<h5 class=" mg-sm tc-rich-electric-blue">
<span class="fa fa-check"></span> Use BYOD and laptops for secure access
</h5>
</li>
<li>
<h5 class=" mg-sm tc-rich-electric-blue">
<span class="fa fa-check"></span> Set links to up to 10 local services
</h5>
</li>
<li>
<h5 class=" mg-sm tc-rich-electric-blue">
<span class="fa fa-check"></span> List of connected users and traffic data
</h5>
</li>
<li>
<h5 class=" mg-sm tc-rich-electric-blue">
<span class="fa fa-check"></span> OpenVPN security with AES256
</h5>
</li>
<li>
<h5 class=" mg-sm tc-rich-electric-blue">
<span class="fa fa-check"></span> Keys created in secure hardware (CloudHSM)
</h5>
</li>
<li>
<h5 class=" mg-sm tc-rich-electric-blue">
<span class="fa fa-check"></span> Instant access removal for stolen / lost devices
</h5>
</li>
</ul>
</div>
</div>
</div>
<div class="col-sm-1">
</div>
<div class="col-sm-3">
<div class="panel">
<div class="panel-heading">
<h2 class="mg-clear text-center tc-rich-electric-blue-2">
Cloud Office
</h2>
<h3 class="mg-md text-center tc-onyx">
Private messaging, file storage
</h3>
</div>
<div class="panel-body">
<ul class="list-unstyled">
<li>
<form id="form_office" novalidate success-msg="Your message has been sent and we will be in touch shortly. Feel free to add details to a support ticket in your mailbox." fail-msg="Something broke down, and we can&rsquo;t send your request. Please email us directly at support@enigmabridge.com">
<div class="form-group">
<select class="form-control selection-price animated pulse animLoop02" id="officesize">
<option value="off5">
5 devices - $15/month
</option>
<option value="off15">
15 devices - $95/month
</option>
<option value="off25">
25 devices - $150/month
</option>
<option value="off50">
50 devices - $250/month
</option>
<option value="off100">
100 devices - $400/month
</option>
<option value="offX">
More devices / special request
</option>
</select>
</div>
<div class="form-group">
<label>
Private Space prefered location
</label>
</div>
<div class="form-group">
<select class="form-control animDelay04" id="officelocation">
<option value="uk">
United Kingdom
</option>
<option value="us-east">
United States - East
</option>
<option value="us-west">
United States - West
</option>
<option value="india">
India
</option>
<option value="germany">
Germany
</option>
<option value="singapore">
Singapore
</option>
</select>
</div>
<div class="form-group">
<label>
Email address
</label>
<input id="space_admin_email_off" class="form-control animDelay1 animated pulse animLoop02" required type="email" />
</div>
<div class="form-group">
<label>
If you have any question
</label><textarea id="officemessage" class="form-control" rows="4" cols="50"></textarea>
</div>
<button class="bloc-button btn btn-block btn-xl animDelay2 animated pulse animLoop03 btn-rich-electric-blue" type="submit">
Try it free<br>
</button>
<p class=" text-center">
(note: 24 hours to launch)<i> <br> 2 weeks trial - no card, <br>just email address</i>
</p>
</form>
</li>
<li>
<h5 class=" mg-sm tc-rich-electric-blue">
<span class="fa fa-check"></span> Unlimited data
</h5>
</li>
<li>
<h5 class=" mg-sm tc-rich-electric-blue">
<span class="fa fa-check"></span> Fully automated launch
</h5>
</li>
<li>
<h5 class=" mg-sm tc-rich-electric-blue">
<span class="fa fa-check"></span> Add devices with "1-click"
</h5>
</li>
<li>
<h5 class=" mg-sm tc-rich-electric-blue">
<span class="fa fa-check"></span> Use BYOD and laptops for secure access
</h5>
</li>
<li>
<h5 class=" mg-sm tc-rich-electric-blue">
<span class="fa fa-check"></span> Set links to up to 10 local services
</h5>
</li>
<li>
<h5 class=" mg-sm tc-rich-electric-blue">
<span class="fa fa-check"></span> List of connected users and traffic data
</h5>
</li>
<li>
<h5 class=" mg-sm tc-rich-electric-blue">
<span class="fa fa-check"></span> OpenVPN security with AES256
</h5>
</li>
<li>
<h5 class=" mg-sm tc-rich-electric-blue">
<span class="fa fa-check"></span> Keys created in secure hardware (CloudHSM)
</h5>
</li>
<li>
<h5 class=" mg-sm tc-rich-electric-blue">
<span class="fa fa-check"></span> Instant access removal for stolen / lost devices
</h5>
</li>
<li>
<h5 class=" mg-sm tc-rich-electric-blue">
<span class="fa fa-check"></span> File access over web and mounted drives
</h5>
</li>
<li>
<h5 class=" mg-sm tc-rich-electric-blue">
<span class="fa fa-check"></span> Private instant messaging
</h5>
</li>
<li>
<h5 class=" mg-sm tc-rich-electric-blue">
<span class="fa fa-check"></span> 100GB storage
</h5>
</li>
</ul>
</div>
</div>
</div>
<div class="col-sm-1">
</div>
<div class="col-sm-3">
<div class="panel">
<div class="panel-heading">
<h2 class="mg-clear text-center tc-rich-electric-blue-2">
On Premise
</h2>
<h3 class="mg-md text-center tc-onyx">
Host it yourself, we will provide support
</h3>
</div>
<div class="panel-body">
<ul class="list-unstyled">
<li>
<form id="form_premise" novalidate success-msg="Your message has been sent and we will be in touch shortly. Feel free to add details to a support ticket in your mailbox." fail-msg="Something broke down, and we can&rsquo;t send your request. Please email us directly at support@enigmabridge.com">
<div class="form-group">
<select class="form-control selection-price animated pulse animLoop02" id="premisesize">
<option value="premise1">
$5,999+$5/mo/seat
</option>
<option value="premiseUnlimited">
$19,999 unlimited seats
</option>
<option value="premiseX">
Customised request
</option>
</select>
</div>
<div class="form-group">
<label>
Private Space location
</label>
</div>
<div class="form-group">
<select class="form-control animDelay04" id="premiselocation">
<option value="na">
N/A - you host
</option>
</select>
</div>
<div class="form-group">
<label>
Email address
</label>
<input id="space_admin_email_premise" class="form-control animDelay1 animated pulse animLoop02" required type="email" />
</div>
<div class="form-group">
<label>
If you have any question
</label><textarea id="premise_message" class="form-control" rows="4" cols="50"></textarea>
</div>
<button class="bloc-button btn btn-block btn-xl animDelay2 animated pulse animLoop03 btn-rich-electric-blue" type="submit">
Request<br>
</button>
<p class=" text-center">
<br> <br><br>
</p>
</form>
</li>
<li>
<h5 class="mg-md tc-onyx tc-rich-electric-blue">
<span class="fa fa-check icon-rich-electric-blue"></span>All features of “Cloud Office"
</h5>
</li>
<li>
<h5 class="mg-md tc-onyx tc-rich-electric-blue">
<span class="fa fa-check icon-rich-electric-blue"></span>1U rack appliance
</h5>
</li>
<li>
<h5 class="mg-md tc-onyx tc-rich-electric-blue">
<span class="fa fa-check icon-rich-electric-blue"></span>HSM included in the appliance
</h5>
</li>
<li>
<h5 class="mg-md tc-onyx tc-rich-electric-blue">
<span class="fa fa-check icon-rich-electric-blue"></span>Typical lead time 6 weeks
</h5>
</li>
<li>
<h5 class="mg-md tc-onyx tc-rich-electric-blue">
<span class="fa fa-check icon-rich-electric-blue"></span>Essential install support included
</h5>
</li>
<li>
<h5 class="mg-md tc-onyx tc-rich-electric-blue">
<span class="fa fa-check icon-rich-electric-blue"></span>Support quotation upon request
</h5>
</li>
<li>
<h5 class="mg-md tc-onyx tc-rich-electric-blue ">
<span class="fa fa-check icon-rich-electric-blue"></span>Remote monitoring included
</h5>
</li>
</ul>
</div>
</div>
</div>
<div class="col-sm-1">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- launch-ps END -->
<!-- steps -->
<div class="bloc bgc-anti-flash-white l-bloc tc-onyx" id="steps">
<div class="container bloc-sm">
<div class="row">
<div class="col-sm-12">
<h2 class="mg-md text-left tc-rich-electric-blue-2">
Launching your Private Space
</h2>
<p class="sub-heading text-left mg-lg text-w-90">
Each Private Space is a completely independent private cloud and its launch is described in our “<a class="ltc-rich-electric-blue" href="https://enigmabridge.freshdesk.com/solution/articles/19000058153-how-is-your-private-space-launched" target="_blank">How is your Private Space launched</a>” article. You will receive detailed information via emails but the overall process is simple and consists of the following steps. <br> <br>Whoever launches a new Private Space becomes its administrator and manages device access to The Private Space. More at <a class="ltc-rich-electric-blue" href="https://enigmabridge.freshdesk.com/solution/folders/19000152194">https://enigmabridge.freshdesk.com/</a>.<br>
</p>
</div>
</div>
</div>
</div>
<!-- steps END -->
<!-- bloc-9 -->
<div class="bloc tc-onyx object-hidden hidden-lg hidden-md hidden-sm hidden-xs bgc-white" id="bloc-9">
<div class="container bloc-lg">
<div class="row">
<div class="col-sm-12">
<h2 class="mg-md text-center tc-rich-electric-blue">
Meet our team
</h2>
<p class=" mg-lg text-center">
We are a group of skilled and experienced security and payments individuals.
</p>
<div class="row">
<div class="col-sm-3">
<img src="img/lazyload-ph.png" data-src="img/dan270.jpg" class="img-responsive animated swing lazyload" />
<h3 class="mg-md text-center tc-rich-electric-blue">
Dan Cvrcek, PhD
</h3>
<p class="text-center ">
CEO and security expert
</p>
</div>
<div class="col-sm-3">
<img src="img/lazyload-ph.png" data-src="img/petr270.jpg" class="img-responsive animated swing lazyload" />
<h3 class="mg-md tc-rich-electric-blue text-center">
Petr Svenda, PhD
</h3>
<p class="text-center ">
Crypto prodigy
</p>
</div>
<div class="col-sm-3">
<img src="img/lazyload-ph.png" data-src="img/dusan270.jpg" class="img-responsive animated swing lazyload" />
<h3 class="mg-md tc-rich-electric-blue text-center">
Dusan Klinec
</h3>
<p class="text-center ">
Senior security engineer
</p>
</div>
<div class="col-sm-3">
<img src="img/lazyload-ph.png" data-src="img/david270.jpg" class="img-responsive animated swing lazyload" />
<h3 class="mg-md tc-rich-electric-blue text-center">
David Gudjonsson
</h3>
<p class="text-center ">
Chairman and payments expert
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- bloc-9 END -->
<!-- bloc-10 -->
<div class="bloc full-width-bloc tc-onyx bgc-white l-bloc" id="bloc-10">
<div class="container">
<div class="row row-no-gutters">
<div class="col-sm-6 col-sm-push-6">
<img src="img/lazyload-ph.png" data-src="img/secure_gateway.jpg" class="img-responsive lazyload" />
</div>
<div class="col-sm-6 col-sm-pull-6">
<div class="row voffset">
<div class="col-sm-12">
<div class="row">
<div class="col-sm-12">
<div class="row">
<div class="col-sm-1">
</div>
<div class="col-sm-11">
<h2 class="mg-md tc-rich-electric-blue">
How The Private Space Works
</h2>
<h3 class="mg-md tc-rich-electric-blue">
Warping the cyberspace to bring you closer
</h3>
<p>
Each Private Space creates a completely independent security and privacy cloak, which makes the internet around invisible.<br><br>There is just your laptop and the center of your Private Space and your team. Everything else disappears behind a secure worm hole. <br>
</p>
<h3 class="mg-md tc-rich-electric-blue">
Locking it all down
</h3>
<p>
Connections to the Private Space are secured with keys. The keys provide much better security than the best of passwords. <br><br>Keys are created with a cloud key management system, with a robust physical security protecting its secrets. This "lock and key" in the cloud has independent security evaluations (FIPS140-2 Level 3, EAL5+) as the basis for your trust. Just these evaluations cost hundreds of thousands of $US to obtain. <br>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- bloc-10 END -->
<!-- Bloc Group -->
<div class='bloc-group'>
<!-- bloc-11 -->
<div class="bloc bloc-tile-2 bgc-white l-bloc full-width-bloc" id="bloc-11">
<div class="container">
<div class="row">
<div class="col-sm-12">
<img src="img/lazyload-ph.png" data-src="img/compliance.png" class="img-responsive lazyload" />
</div>
</div>
</div>
</div>
<!-- bloc-11 END -->
<!-- bloc-12 -->
<div class="bloc bloc-tile-2 bgc-white tc-onyx" id="bloc-12">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h2 class=" tc-rich-electric-blue mg-clear">
Stay On Top Of The Regulation
</h2>
<h3 class="mg-md tc-rich-electric-blue">
Data protection is here to stay for a reason
</h3>
<p>
The data protection legal framework is expanding. European Union introduces GDPR that applies to all who offer services EU citizens and handle their data. Regardless of where your company is based, you will have to comply with this regulation from May 2018.<br><br>The Private Space significantly simplifies compliance by its design. Strong authentication, access keys protected by secure hardware, all access through a secure gateway allowing content filtering, antivirus protection, and so on. <br> <br>HIPAA - protection of medical information in the USA, SOX - support for protection mechanisms preventing accounting errors, fraud, PCI - security of payment card transactions, ISO27001 - implement your IT management controls.
</p>
</div>
</div>
</div>
</div>
<!-- bloc-12 END -->
</div>
<!-- Bloc Group END -->
<!-- bloc-13 -->
<div class="bloc tc-onyx bgc-rich-electric-blue" id="bloc-13">
<div class="container bloc-sm">
<div class="row voffset">
<div class="col-sm-4">
<div class="text-center">
<span class="fa fa-random icon-round icon-md icon-white"></span>
</div>
<h3 class="text-center mg-md tc-white">
Remote access to your office
</h3>
<p class="text-center ">
Connect your laptops and smart phones to your office securely from anywhere.
</p>
</div>
<div class="col-sm-4">
<div class="text-center">
<span class="fa fa-coffee icon-round icon-md icon-white"></span>
</div>
<h3 class="text-center mg-md tc-white">
Create virtual office
</h3>
<p class="text-center ">
Create your own virtual office to share your documents and talk to your team.
</p>
</div>
<div class="col-sm-4">
<div class="text-center">
<span class="fa fa-arrows-alt icon-round icon-md icon-white"></span>
</div>
<h3 class="text-center mg-md tc-white">
Secure your connection
</h3>
<p class="text-center ">
Connect your devices to the internet securely via insecure networks like Wi-Fi.
</p>
</div>
</div>
</div>
</div>
<!-- bloc-13 END -->
<!-- Bloc Group -->
<div class='bloc-group'>
<!-- bloc-14 -->
<div class="bloc bloc-tile-2 tc-onyx bgc-white full-width-bloc l-bloc" id="bloc-14">
<div class="container">
<div class="row row-no-gutters">
<div class="col-sm-12">
<img src="img/lazyload-ph.png" data-src="img/virtualOffice.png" class="img-responsive lazyload" />
</div>
</div>
</div>
</div>
<!-- bloc-14 END -->
<!-- bloc-15 -->
<div class="bloc bloc-tile-2 full-width-bloc bgc-white tc-onyx" id="bloc-15">
<div class="container">
<div class="row voffset row-no-gutters">
<div class="col-sm-12">
<div class="row row-no-gutters">
<div class="col-sm-1">
</div>
<div class="col-sm-11">
<h2 class="mg-md tc-rich-electric-blue">
Your Global Virtual Office
</h2>
<h3 class="mg-md tc-rich-electric-blue">
Public cloud or your trusted hosting
</h3>
<p>
Each Private Space has its own HQ - a dedicated server, which controls access to its virtual space and provides a secure shared space. <br><br>Implementation of Private Spaces is not dependent on any particular cloud environment. If you have a trusted platform, an IT support company, or customers who trust you, we can help integrate Private Spaces on your servers.<br><br>Security of your access keys is profound and so we added an extra layer of protection to protect if from malicious attacks. <br><br>This separation of key management from data encryption between Enigma Bridge and your favorite hosting provider provides an additional time and mechanisms to detect attacks and restore security of The Private Space if need be.<br>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- bloc-15 END -->
</div>
<!-- Bloc Group END -->
<!-- bloc-16 -->
<div class="bloc full-width-bloc bgc-white tc-onyx" id="bloc-16">
<div class="container bloc-md">
<div class="row">
<div class="col-sm-6 col-sm-push-6">
<img src="img/lazyload-ph.png" data-src="img/privateSpace_how.png" class="img-responsive lazyload" />
</div>
<div class="col-sm-6 col-sm-pull-6">
<div class="row row-no-gutters">
<div class="col-sm-1">
</div>
<div class="col-sm-11">
<h2 class="mg-md tc-rich-electric-blue">
Verified Technology and "Lock and Key"
</h2>
<p>
Each Private Space is an independent private network with its own server and a key “cutting" system. <br><br>The design is built on two main principles. Use of stable, secure technologies with a large user base and a separation of data from key management. <br><br>Access to The Private Space is only allowed with a valid key. The keys provide significantly better security than passwords and you don’t have to remember them. You will get a new key for each device you want to use. <br><br>If you lose your smartphone, or a computer gets stolen, the administrator of your Private Space can immediately disable the device’s key and keep your Private Space secure from intruders.<br><br>Key management is the crucial aspect of ensuring your security and privacy. We use "secure computers" to protect your keys. These computers are your lock and key in the cloud with independent security validations. <br>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- bloc-16 END -->
<!-- bloc-17 -->
<div class="bloc tc-onyx bgc-white l-bloc" id="bloc-17">
<div class="container bloc-sm">
<div class="row voffset">
<div class="col-sm-3">
<h3 class="mg-md tc-rich-electric-blue">
Privacy
</h3>
<p>
Once connected to your Private Space, you maximize security and privacy of your Internet use. Whether you use Facebook, Google, or connect to your blog, others can only see you’re connecting to your Private Space.<br> <br>Connect with any Wi-Fi and keep maximum security for your data and privacy for your online habits.
</p>
</div>
<div class="col-sm-3">
<h3 class="mg-md tc-rich-electric-blue">
Keys and connections
</h3>
<p>
The security of your Private Space depends on the security of connection keys. We create the keys with our CloudHSMs. CloudHSMs are independent on your Private Space. This prevents single points of failure compromising your security. <br> <br>We put a lot of effort into securing keys. No lock-picking or duplicate keys to your Private Space is tolerated.
</p>
</div>
<div class="col-sm-3">
<h3 class="mg-md tc-rich-electric-blue">
Data security
</h3>
<p>
Your data security depends on many aspects. We always make sure that data in-transit (between your devices and Private Space) are secure. We also enforce access control inside your Private Space. <br> <br>The Office Private Space includes secure file sharing and instant messaging with <a class="ltc-rich-electric-blue" href="https://nextcloud.com" target="_blank">nextCloud</a>.