-
Notifications
You must be signed in to change notification settings - Fork 0
/
Untitled-1.css
7486 lines (6360 loc) · 358 KB
/
Untitled-1.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" style="-webkit-text-size-adjust: none;">
<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Coming Soon</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style type="text/css">body {
/*background: linear-gradient(90deg, white, gray);*/
background-color: #eee;
XYXQcJPV
<meta name="sitelock-site-verification" content="6952" />
}
body, h1, p {
font-family: "Helvetica Neue", "Segoe UI", Segoe, Helvetica, Arial, "Lucida Grande", sans-serif;
font-weight: normal;
margin: 0;
padding: 0;
text-align: center;
}
.container {
margin-left: auto;
margin-right: auto;
margin-top: 177px;
max-width: 1170px;
padding-right: 15px;
padding-left: 15px;
}
<!--[if IE 8]>
<html class=" no-js lt-ie9" lang="en" >
<![endif]-->
<!--[if gt IE 8]><!-->
<!DOCTYPE html>
<html class=" aem-rm-publish no-js" lang="en" style="-webkit-text-size-adjust: none;">
<!--<![endif]-->
<head data-wcmmode="DISABLED"><link rel="author" href="http://www.cloud.com" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="title" content="Citrix Cloud - Cloud Desktop Deployment and Management"/>
<meta name="keywords" content="" />
<meta name="description" http-equiv="description" content="Citrix Cloud is the easiest and fastest way to design a broad set of workspace services, including apps, desktops, device management and data. Choose any cloud or on-premises deployment location for maximum flexibility and control." />
<meta name="robots" content="index, follow" />
<title>Citrix Cloud - Cloud Desktop Deployment and Management - Citrix</title>
<link rel="icon" type="image/vnd.microsoft.icon" href="/ndc/etc/designs/citrix-dotcom/icon-favicon.png">
<link rel="shortcut icon" type="image/vnd.microsoft.icon" href="/ndc/etc/designs/citrix-dotcom/icon-favicon.png">
<script type="text/javascript" src="/ndc/etc/designs/citrix-dotcom/ext/adrum-prod.js"></script>
<meta property="og:title" content="Citrix Cloud - Cloud Desktop Deployment and Management" />
<meta property="og:description" content="Citrix Cloud is the easiest and fastest way to design a broad set of workspace services, including apps, desktops, device management and data. Choose any cloud or on-premises deployment location for maximum flexibility and control." />
<meta property="og:type" content="article" />
<meta property="og:image" content="https://www.citrix.com/ndc/etc/designs/citrix-dotcom/clientlibs/main/images/citrix-logo-250x250.png"/>
<meta property="og:image:type" content="image/png"/>
<meta property="og:url" content="https://www.citrix.com/products/citrix-cloud/"/>
<meta property="og:site_name" content="Citrix.com" />
<meta property="fb:app_id" content="173710672050" />
<link rel="canonical" href="https://www.citrix.com/products/citrix-cloud/"/>
<script type="text/javascript">
var stsURL = "https://identity.citrix.com/Utility/STS/Sign-In";
</script>
<link rel="stylesheet" href="/ndc/etc/designs/citrix-core/clientlibs/core.min.1.113.0-20161027.180642-918.css" type="text/css">
<script type="text/javascript">
var digitalData = {"pageInstanceID":"6547fdaa-c40a-44d5-9ee1-07e0af0ce2c9","page":{"pageInfo":{"author":"admin","breadcrumbs":["Citrix.com","Mobilize Your Business with Secure App and Data Delivery","Explore Citrix Products for Enterprise and Medium Business"],"effectiveDate":"2016-10-10T07:57:46.631-04:00","language":"en_US","pageName":"Citrix Cloud - Cloud Desktop Deployment and Management","destinationURL":"https://www.citrix.com/products/citrix-cloud/","version":"51ad334c-1f99-4e72-980a-3e6d7b752086"},"category":{"pageType":"General Product Content","primaryCategory":"products","subCategory1":"citrix-cloud"},"attributes":{}}};
</script>
<link rel="alternate" hreflang="en" href="https://www.citrix.com/products/citrix-cloud.html"/>
<link rel="alternate" hreflang="es" href="https://lac.citrix.com/products/citrix-cloud.html"/>
<link rel="alternate" hreflang="es-es" href="https://www.citrix.es/products/citrix-cloud.html"/>
<link rel="alternate" hreflang="pt" href="https://www.citrix.com.br/products/citrix-cloud.html"/>
<link rel="alternate" hreflang="nl" href="https://www.citrix.nl/products/citrix-cloud.html"/>
<link rel="alternate" hreflang="tr" href="https://www.citrix.com.tr/products/citrix-cloud.html"/>
<link rel="alternate" hreflang="sv" href="https://www.citrix.se/products/citrix-cloud.html"/>
<link rel="alternate" hreflang="fr" href="https://www.citrix.fr/products/citrix-cloud.html"/>
<link rel="alternate" hreflang="ru" href="https://www.citrix.ru/products/citrix-cloud.html"/>
<link rel="alternate" hreflang="it" href="https://www.citrix.it/products/citrix-cloud.html"/>
<link rel="alternate" hreflang="cs" href="https://www.citrix.cz/products/citrix-cloud.html"/>
<link rel="alternate" hreflang="no" href="https://www.citrix.no/products/citrix-cloud.html"/>
<link rel="alternate" hreflang="fi" href="https://www.citrix.fi/products/citrix-cloud.html"/>
<link rel="alternate" hreflang="de" href="https://www.citrix.de/products/citrix-cloud.html"/>
<link rel="alternate" hreflang="pl" href="https://www.citrix.com.pl/products/citrix-cloud.html"/>
<link rel="alternate" hreflang="da" href="https://www.citrix.dk/products/citrix-cloud.html"/>
<link rel="alternate" hreflang="zh" href="https://www.citrix.com.cn/products/citrix-cloud.html"/>
<link rel="alternate" hreflang="ja" href="https://www.citrix.co.jp/products/citrix-cloud.html"/>
<link rel="alternate" hreflang="en-gb" href="https://www.citrix.co.uk/products/citrix-cloud.html"/>
<link rel="stylesheet" href="/ndc/etc/designs/citrix-dotcom/clientlibs/main.min.1.113.0-20161027.180642-918.css" type="text/css">
<script type="text/javascript" src="//assets.adobedtm.com/e0903a2aaadb93ceed6a5acaaacbb9b9846eaa41/satelliteLib-2280fef6870824c578d374563ef7c7e35983c630.js"></script>
<!--[if lt IE 9]>
<link rel="stylesheet" type="text/css" href="/ndc/etc/designs/citrix-core/clientlibs/core/css/ie8.css" />
<script type="text/javascript" src="/ndc/etc/designs/citrix-core/clientlibs/core/js/polyfills/ie8.js" ></script>
<script type="text/javascript" src="/ndc/etc/designs/citrix-core/clientlibs/core/js/polyfills/rem-ie8-fix.js" ></script>
<script type="text/javascript" src="/ndc/etc/designs/citrix-core/clientlibs/core/js/polyfills/respond.js" ></script>
<![endif]-->
<style data-cke-temp="1">html{cursor:text;*cursor:auto}
img,input,textarea{cursor:default}
</style>
</head>
<body class="ctx-cupcake responsive">
<div class="ctx-template" data-template="page">
<div class="ctx-inner">
<div class="parbase clientcontext"><script type="text/javascript" src="/ndc/etc/clientlibs/granite/jquery.min.js"></script><script type="text/javascript" src="/ndc/etc/clientlibs/granite/utils.min.js"></script><script type="text/javascript" src="/ndc/etc/clientlibs/granite/jquery/granite.min.js"></script><script type="text/javascript" src="/ndc/etc/clientlibs/foundation/jquery.min.js"></script><script type="text/javascript" src="/ndc/etc/clientlibs/foundation/shared.min.js"></script><script type="text/javascript" src="/ndc/etc/clientlibs/granite/lodash/modern.min.js"></script><script type="text/javascript" src="/ndc/etc/clientlibs/foundation/personalization/kernel.min.js"></script><script type="text/javascript">
$CQ(function() {
CQ_Analytics.SegmentMgr.loadSegments("\/etc\/segmentation");
CQ_Analytics.ClientContextUtils.init("\/etc\/clientcontext\/default", "\/content\/citrix\/en_us\/products\/citrix\-cloud");
});
</script></div>
<div id="ctx-header">
<div class="header-citrix-56"><!-- START header56 -->
<div class="header-citrix-56">
<header class="media-header clearfix">
<div class="ctx-top-bar"></div>
<div class="ctx-content-main ">
<div class="parsys iparsys globalnaviparsys">
<div class="section globalNavLink">
<div class="ctx-cupcake responsive" id="ctx-main-header">
<div class="ctx-header-inner clearfix ctx-hide-divider"><!--search -->
<div class="ctx-slim-search">
<div id="globalsearch">
<form action="//search.citrix.com/search" id="ctx-search-form" method="get"><input class="ctx-btn-g-search" id="ctx-search-go" name="go" type="button" value="" /> <input autocomplete="off" class="ctx-input-g-search" id="q" name="q" type="text" value="" /> <span class="ctx-close-icon"> </span> <input name="output" type="hidden" value="xml_no_dtd" /> <input name="client" type="hidden" value="en_default_frontend" /> <input name="site" type="hidden" value="default_collection" /> <input name="proxystylesheet" type="hidden" value="en_default_frontend" /> <input name="filter" type="hidden" value="p" /> <input name="getfields" type="hidden" value="description" /></form>
</div>
<!-- Start of scripts to enable Predictive Search --><script type="text/javascript" language="javascript">
(function() {
var winProto = document.location.protocol;
var clp = document.createElement('script');
clp.type = 'text/javascript';
clp.async = true; clp.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'tarpon.citrix.com/livenav/static-assets/scripts/search-predictive.js';
var t = document.getElementsByTagName('script')[0]; t.parentNode.insertBefore(clp, t);
})();
var PAGE_PROTOCOL = document.location.protocol;
var CTX_PSEARCH_ENV = PAGE_PROTOCOL + '//tarpon.citrix.com';
var CITRIX_PSEARCH_SEARCHBOX_ID = "q";
document.write('<link type="text/css" rel="stylesheet" href="'+CTX_PSEARCH_ENV+'/livenav/static-assets/css/psearch-css3.css"/>');
document.write('<!--[if lte IE 8]>');
document.write('<link rel="stylesheet" href="'+CTX_PSEARCH_ENV+'/livenav/static-assets/css/ie.css" type="text/css" media="screen"/>');
document.write('<link rel="stylesheet" href="'+CTX_PSEARCH_ENV+'/livenav/static-assets/css/psearch-css2.css" type="text/css" media="screen" />');
document.write('<![endif]-->');
</script><!-- End of scripts to enable Predictive Search --></div>
<!--end search-->
<div class="ctx-logout-link"><a class="ctx-anchor-logout" href="/logout.html">Sign Out</a></div>
<div class="ctx-login-link"><a href="/account.html" rel="nofollow">Sign In</a></div>
<div id="ctx-nav">
<div id="ctx-menu-bg"><!-- start ctx-menu-bg -->
<ul id="ctx-main-nav">
<li><a class="navItem" href="/products.html" mega-menu="#mega-menu-373c4ab"><span>Products</span></a>
<div class="ctx-mega-menu" id="mega-menu-373c4ab" style="width : 630px;">
<div class="column_holder_6 column-holder">
<div class="ctx-nested-column">
<div class="parsys column-control-holder">
<div class="ctx-columns-wrap " ctx-col-spacing="none">
<div class="ctx-template" data-template="page">
<div class="ctx-inner">
<div class="parbase clientcontext"><script type="text/javascript" src="/ndc/etc/clientlibs/granite/jquery.min.js"></script><script type="text/javascript" src="/ndc/etc/clientlibs/granite/utils.min.js"></script><script type="text/javascript" src="/ndc/etc/clientlibs/granite/jquery/granite.min.js"></script><script type="text/javascript" src="/ndc/etc/clientlibs/foundation/jquery.min.js"></script><script type="text/javascript" src="/ndc/etc/clientlibs/foundation/shared.min.js"></script><script type="text/javascript" src="/ndc/etc/clientlibs/granite/lodash/modern.min.js"></script><script type="text/javascript" src="/ndc/etc/clientlibs/foundation/personalization/kernel.min.js"></script><script type="text/javascript">
$CQ(function() {
CQ_Analytics.SegmentMgr.loadSegments("\/etc\/segmentation");
CQ_Analytics.ClientContextUtils.init("\/etc\/clientcontext\/default", "\/content\/citrix\/en_us\/products\/citrix\-cloud");
});
</script></div>
<div id="ctx-header">
<div class="header-citrix-56"><!-- START header56 -->
<div class="header-citrix-56">
<header class="media-header clearfix">
<div class="ctx-top-bar"></div>
<div class="ctx-content-main ">
<div class="parsys iparsys globalnaviparsys">
<div class="section globalNavLink">
<div class="ctx-cupcake responsive" id="ctx-main-header">
<div class="ctx-header-inner clearfix ctx-hide-divider"><!--search -->
<div class="ctx-slim-search">
<div id="globalsearch">
<form action="//search.citrix.com/search" id="ctx-search-form" method="get"><input class="ctx-btn-g-search" id="ctx-search-go" name="go" type="button" value="" /> <input autocomplete="off" class="ctx-input-g-search" id="q" name="q" type="text" value="" /> <span class="ctx-close-icon"> </span> <input name="output" type="hidden" value="xml_no_dtd" /> <input name="client" type="hidden" value="en_default_frontend" /> <input name="site" type="hidden" value="default_collection" /> <input name="proxystylesheet" type="hidden" value="en_default_frontend" /> <input name="filter" type="hidden" value="p" /> <input name="getfields" type="hidden" value="description" /></form>
</div>
<!-- Start of scripts to enable Predictive Search --><script type="text/javascript" language="javascript">
(function() {
var winProto = document.location.protocol;
var clp = document.createElement('script');
clp.type = 'text/javascript';
clp.async = true; clp.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'tarpon.citrix.com/livenav/static-assets/scripts/search-predictive.js';
var t = document.getElementsByTagName('script')[0]; t.parentNode.insertBefore(clp, t);
})();
var PAGE_PROTOCOL = document.location.protocol;
var CTX_PSEARCH_ENV = PAGE_PROTOCOL + '//tarpon.citrix.com';
var CITRIX_PSEARCH_SEARCHBOX_ID = "q";
document.write('<link type="text/css" rel="stylesheet" href="'+CTX_PSEARCH_ENV+'/livenav/static-assets/css/psearch-css3.css"/>');
document.write('<!--[if lte IE 8]>');
document.write('<link rel="stylesheet" href="'+CTX_PSEARCH_ENV+'/livenav/static-assets/css/ie.css" type="text/css" media="screen"/>');
document.write('<link rel="stylesheet" href="'+CTX_PSEARCH_ENV+'/livenav/static-assets/css/psearch-css2.css" type="text/css" media="screen" />');
document.write('<![endif]-->');
</script><!-- End of scripts to enable Predictive Search --></div>
<!--end search-->
<div class="ctx-logout-link"><a class="ctx-anchor-logout" href="/logout.html">Sign Out</a></div>
<div class="ctx-login-link"><a href="/account.html" rel="nofollow">Sign In</a></div>
<div id="ctx-nav">
<div id="ctx-menu-bg"><!-- start ctx-menu-bg -->
<ul id="ctx-main-nav">
<li><a class="navItem" href="/products.html" mega-menu="#mega-menu-373c4ab"><span>Products</span></a>
<div class="ctx-mega-menu" id="mega-menu-373c4ab" style="width : 630px;">
<div class="column_holder_6 column-holder">
<div class="ctx-nested-column">
<div class="parsys column-control-holder">
<div class="ctx-columns-wrap " ctx-col-spacing="none">
<table class="parsys_column ctx-columns ctx-columns-60-40 none none">
<tbody>
<tr class="ctx-col-row">
<td class="ctx-col-td">
<div class="parsys_column ctx-columns-60-40-c0">
<div class="parbase highlightedContent section">
<div style="position:relative; ">
<div class="ctx-box " style="position:relative;background:transparent;padding-top:0px; padding-right:0px; padding-left:0px; border:none;
">
<div class="hc-bg-style" style="width:100%;height:100%;position:absolute;top:0;left:0;border:medium none;background-color:#FFFFFF;border-color:#dedede;opacity:1.0;filter: alpha(opacity =100.0);"></div>
<div style="position:relative">
<div class="highlightedcontentpar parsys"></div>
</div>
</div>
</div>
</div>
<div class="parbase highlightedContent section">
<div style="position:relative; ">
<div class="ctx-box " style="position:relative;background:transparent;padding-top:0px; padding-bottom:0px; padding-left:0px; border:none;
margin-top:0px; margin-bottom:0px; ">
<div class="hc-bg-style" style="width:100%;height:100%;position:absolute;top:0;left:0;border:medium none;background-color:#FFFFFF;border-color:#dedede;opacity:1.0;filter: alpha(opacity =100.0);"></div>
<div style="position:relative">
<div class="highlightedcontentpar parsys">
<div class="parbase textctrl section">
<div class="ctx-sans-fonts" id="textCtrl-6ba6853">
<p><a adhocenable="false" href="https://www.citrix.com/virtualization/"><b>APP VIRTUALIZATION & VDI</b></a></p>
<p><span class="ctx-emphasis"><a adhocenable="false" href="https://www.citrix.com/products/xenapp-xendesktop/">XenApp & XenDesktop</a></span></p>
<p><span class="ctx-emphasis"><a adhocenable="false" href="https://www.citrix.com/products/xenserver/">XenServer</a></span></p>
</div>
<div itemscope="itemscope" itemtype="http://schema.org/LocalBusiness"><span itemprop="name">Cloud</span>
<div itemprop="address" itemscope="itemscope" itemtype="http://schema.org/PostalAddress"><span itemprop="streetAddress">14 Leinster Gardens </span> <span itemprop="addressLocality">London</span>, <span itemprop="addressRegion">GB</span> <span itemprop="postalCode">W2 6DR</span> <span itemprop="addressCountry">GB</span></div>
Phone: <span itemprop="telephone">447759313990</span> Website: <a itemprop="URL">http://www.cloud.com/</a></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="parbase highlightedContent section">
<div style="position:relative; ">
<div class="ctx-box " style="position:relative;background:transparent;padding-top:20px; padding-bottom:0px; padding-left:0px; border:none;
margin-top:0px; margin-bottom:0px; ">
<div class="hc-bg-style" style="width:100%;height:100%;position:absolute;top:0;left:0;border:medium none;background-color:#FFFFFF;border-color:#dedede;opacity:1.0;filter: alpha(opacity =100.0);"></div>
<div style="position:relative">
<div class="highlightedcontentpar parsys">
<div class="parbase textctrl section">
<div class="ctx-sans-fonts" id="textCtrl-5b3ea07">
<p><a adhocenable="false" href="https://www.citrix.com/enterprise-mobility-management/"><b>ENTERPRISE MOBILITY MANAGEMENT</b></a></p>
<p><span class="ctx-emphasis"><a adhocenable="false" href="https://www.citrix.com/products/xenmobile/">XenMobile</a></span></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="parbase highlightedContent section">
<div style="position:relative; ">
<div class="ctx-box " style="position:relative;background:transparent;padding-top:20px; padding-bottom:0px; padding-left:0px; border:none;
margin-top:0px; margin-bottom:0px; ">
<div class="hc-bg-style" style="width:100%;height:100%;position:absolute;top:0;left:0;border:medium none;background-color:#FFFFFF;border-color:#dedede;opacity:1.0;filter: alpha(opacity =100.0);"></div>
<div style="position:relative">
<div class="highlightedcontentpar parsys">
<div class="parbase textctrl section">
<div class="ctx-sans-fonts" id="textCtrl-141e1ae">
<p><a adhocenable="false" href="https://www.citrix.com/file-sharing/"><b>FILE SYNC & SHARING</b></a></p>
<p><span class="ctx-emphasis"><a adhocenable="false" href="https://www.citrix.com/products/sharefile/">ShareFile</a></span></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="parbase highlightedContent section">
<div style="position:relative; ">
<div class="ctx-box " style="position:relative;background:transparent;padding-top:20px; padding-right:0px; padding-bottom:20px; padding-left:0px; border:none;
margin-top:0px; margin-bottom:0px; ">
<div class="hc-bg-style" style="width:100%;height:100%;position:absolute;top:0;left:0;border:medium none;background-color:#FFFFFF;border-color:#dedede;opacity:1.0;filter: alpha(opacity =100.0);"></div>
<div style="position:relative">
<div class="highlightedcontentpar parsys">
<div class="parbase textctrl section">
<div class="ctx-sans-fonts" id="textCtrl-65e3f2">
<p><a adhocenable="false" href="https://www.citrix.com/networking/"><b>NETWORKING</b></a></p>
<p><span class="ctx-emphasis"><a adhocenable="false" href="https://www.citrix.com/products/netscaler-adc/">NetScaler ADC</a></span></p>
<p><span class="ctx-emphasis"><a adhocenable="false" href="https://www.citrix.com/products/netscaler-appfirewall/">NetScaler AppFirewall</a></span></p>
<p><span class="ctx-emphasis"><a adhocenable="false" href="https://www.citrix.com/products/netscaler-unified-gateway/">NetScaler Unified Gateway</a></span></p>
<p><span class="ctx-emphasis"><a adhocenable="false" href="https://www.citrix.com/products/netscaler-management-and-analytics-system/">NetScaler Management & Analytics System</a></span></p>
<p><span class="ctx-emphasis"><a adhocenable="false" href="https://www.citrix.com/products/netscaler-sd-wan/">NetScaler SD-WAN</a></span></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</td>
<td class="ctx-col-td">
<div class="parsys_column ctx-columns-60-40-c1">
<div class="parbase highlightedContent section">
<div style="position:relative; ">
<div class="ctx-box " style="position:relative;background:transparent;padding-bottom:10px; border:none;
">
<div class="hc-bg-style" style="width:100%;height:100%;position:absolute;top:0;left:0;border:medium none;background-color:#ededed;border-color:#dedede;opacity:1.0;filter: alpha(opacity =100.0);"></div>
<div style="position:relative">
<div class="highlightedcontentpar parsys">
<div class="parbase textctrl section">
<div class="ctx-sans-fonts" id="textCtrl-4049936">
<p><span class="ctx-section-heading">Take advantage of our products as a suite or in the cloud</span></p>
<p><span class="ctx-emphasis"><a adhocenable="false" href="/products/citrix-workspace-suite.html">Citrix Workspace Suite</a></span></p>
<p><span class="ctx-emphasis"><a adhocenable="false" href="https://www.citrix.com/products/citrix-cloud/">Citrix Cloud</a></span></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="parbase highlightedContent section">
<div style="position:relative; ">
<div class="ctx-box " style="position:relative;background:transparent;padding-top:20px; padding-bottom:0px; border:none;
margin-top:0px; margin-bottom:0px; ">
<div class="hc-bg-style" style="width:100%;height:100%;position:absolute;top:0;left:0;border:medium none;background-color:#FFFFFF;border-color:#dedede;opacity:1.0;filter: alpha(opacity =100.0);"></div>
<div style="position:relative">
<div class="highlightedcontentpar parsys">
<div class="parbase textctrl section">
<div class="ctx-sans-fonts" id="textCtrl-5061aa0">
<p><b>BY INDUSTRY</b></p>
<p><span class="ctx-emphasis"><a adhocenable="false" href="/solutions/healthcare.html">Healthcare</a></span></p>
<p><span class="ctx-emphasis"><a adhocenable="false" href="/solutions/financial-services.html">Finance</a></span></p>
<p><span class="ctx-emphasis"><a adhocenable="false" href="/solutions/government.html">Government</a></span></p>
<p><span class="ctx-emphasis"><a adhocenable="false" href="/solutions/education.html">Education</a></span></p>
<p><span class="ctx-emphasis"><a adhocenable="false" href="/solutions/manufacturing-it.html">Manufacturing</a></span></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="parbase highlightedContent section">
<div style="position:relative; ">
<div class="ctx-box " style="position:relative;background:transparent;padding-top:14px; padding-bottom:20px; border:none;
margin-top:0px; margin-bottom:0px; ">
<div class="hc-bg-style" style="width:100%;height:100%;position:absolute;top:0;left:0;border:medium none;background-color:#FFFFFF;border-color:#dedede;opacity:1.0;filter: alpha(opacity =100.0);"></div>
<div style="position:relative">
<div class="highlightedcontentpar parsys">
<div class="parbase textctrl section">
<div class="ctx-sans-fonts" id="textCtrl-b778d4">
<p><span class="ctx-emphasis"><a adhocenable="false" href="/products.html">All Products</a></span></p>
<p><span class="ctx-emphasis"><a href="/solutions.html">All Solutions</a></span></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="htmlEmbed section">
<div style="width: 100%;">
<style type="text/css">.ctx-mega-menu p span.ctx-section-heading {
font-.family: "citrixsans",Arial,Helvetica,sans-serif;
font-weight: 200;
font-style: normal;
font-size: 16px;
line-height: 19px;
color: #3f4042;
margin: 0 0 20px 0;
}
</style>
</div>
</div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<div style="clear:both"></div>
</div>
</div>
</div>
</div>
</li>
<li><a class="navItem" href="/downloads.html" mega-menu="#mega-menu-55db2f9"><span>Downloads</span></a>
<div class="ctx-mega-menu" id="mega-menu-55db2f9" style="width : 415px;">
<div class="column_holder_3 column-holder">
<div class="ctx-nested-column">
<div class="parsys column-control-holder">
<div class="ctx-columns-wrap ">
<table class="parsys_column ctx-columns ctx-columns-50-50-wide ctx-column-divider none">
<tbody>
<tr class="ctx-col-row">
<td class="ctx-col-td">
<div class="parsys_column ctx-columns-50-50-wide-c0">
<div class="findDownloadsPod section">
<div class="ctx-downloads-products-find " ctx-downloads-url="/downloads"><!-- start ctx-find -->
<div class="ctx-find-subheading">Find Downloads</div>
<div class="ctx-find-content"><select class="ctx-select " id="ctx-dl-prod" name="product"><option value="">Select a product...</option><option value="appdna">AppDNA</option><option value="citrix-receiver">Citrix Receiver</option><option value="citrix-workspace-suite">Citrix Workspace Suite</option><option value="cloudbridge">CloudBridge</option><option value="cloudportal">CloudPortal Services Manager</option><option value="command-center">Command Center</option><option value="desktopplayer">DesktopPlayer</option><option value="edgesight">EdgeSight</option><option value="gotoassist">GoToAssist</option><option value="gotomeeting">GoToMeeting</option><option value="gotomypc">GoToMyPC</option><option value="licensing">Licensing</option><option value="netscaler-adc">NetScaler ADC</option><option value="netscaler-app-firewall">NetScaler AppFirewall</option><option value="netscaler-gateway">NetScaler Gateway</option><option value="netscaler-mas">NetScaler MAS</option><option value="netscaler-sd-wan">NetScaler SD-WAN</option><option value="provisioning-services">Provisioning Services</option><option value="receiver">Receiver</option><option value="sharefile">ShareFile</option><option value="storefront-web-interface">StoreFront/Web Interface</option><option value="vdi-in-a-box">VDI-in-a-Box</option><option value="xenapp">XenApp</option><option value="xenapp-fundamentals">XenApp Fundamentals</option><option value="xenapp-and-xendesktop">XenApp & XenDesktop</option><option value="xenclient">XenClient</option><option value="xendesktop">XenDesktop</option><option value="xenmobile">XenMobile</option><option value="xenserver">XenServer</option> </select>
<div class="ctx-dl-or">or</div>
<div class="ctx-downloads-keyword">
<form action="/downloads/search.html"><input autocomplete="off" class="ctx-downloads-keyword-input" id="ctx-dl-keyword-2ecee02" name="qs" placeholder="Search Downloads" value="" /><button>Search</button></form>
</div>
</div>
</div>
<!-- end ctx-find --></div>
</div>
</td>
<td class="ctx-col-td">
<div class="parsys_column ctx-columns-50-50-wide-c1">
<div class="parbase textctrl section">
<div class="ctx-sans-fonts" id="textCtrl-65477ba">
<p><span class="ctx-emphasis-title"><a adhocenable="false" href="/go/receiver.html" target="_blank">Download Receiver</a></span><br />
<br />
Install or upgrade from ICA client</p>
</div>
</div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<div style="clear:both"></div>
<div class="sectionDivider section">
<div class="ctx-divider"></div>
</div>
<div class="parbase textctrl section">
<div class="ctx-sans-fonts" id="textCtrl-38063e4">
<p><a adhocenable="false" href="/downloads.html">All Downloads</a> | <a adhocenable="false" href="/downloads/trials.html">Free trials</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
</li>
<li><a class="navItem" href="/support.html" mega-menu="#mega-menu-21e2c40"><span>Support & Services</span></a>
<div class="ctx-mega-menu" id="mega-menu-21e2c40" style="width : 470px;">
<div class="column_holder_7 column-holder">
<div class="ctx-nested-column">
<div class="parsys column-control-holder">
<div class="ctx-columns-wrap " ctx-col-spacing="20">
<table class="parsys_column ctx-columns ctx-columns-50-50-wide ctx-column-divider none">
<tbody>
<tr class="ctx-col-row">
<td class="ctx-col-td">
<div class="parsys_column ctx-columns-50-50-wide-c0">
<div class="kcSearchPod section">
<div class="kcSearchPod section">
<div class="ctx-kcsp">
<div class="ctx-kcsp-left"><span class="emphasis-title">Get Support</span>
<div class="ctx-kcsp-actions">
<div class="ctx-kscp-wrap-top">
<div class="ctx-kcsp-select"><select tabindex="-1"><option selected="selected" value="all">Select a product...</option><option value="http://support.citrix.com/search?prod=App%20Orchestration,_blank">App Orchestration</option><option value="http://support.citrix.com/search?prod=AppDNA,_blank">AppDNA</option><option value="http://support.citrix.com/search?prod=Application+Firewall,_blank">Application Firewall</option><option value="http://support.citrix.com/search?prod=Application+Streaming,_blank">Application Streaming</option><option value="https://citrix-telco.custhelp.com/app/utils/login_form/redirect/home,_blank">ByteMobile</option><option value="http://support.citrix.com/search?prod=Licensing,_blank">Citrix Licensing</option><option value="http://support.citrix.com/search?prod=CloudBridge,_blank">CloudBridge (now NetScaler SD-WAN)</option><option value="http://support.citrix.com/search?prod=CloudPlatform,_blank">CloudPlatform (powered by Apache CloudStack)</option><option value="http://support.citrix.com/search?prod=CloudPortal+Business+Manager,_blank">CloudPortal Business Manager</option><option value="http://support.citrix.com/search?prod=CloudPortal+Services+Manager,_blank">CloudPortal Services Manager</option><option value="http://support.citrix.com/search?prod=Command+Center,_blank">Command Center</option><option value="http://support.citrix.com/search?prod=DesktopPlayer,_blank">DesktopPlayer</option><option value="http://support.citrix.com/search?prod=EdgeSight,_blank">EdgeSight</option><option value="http://support.citrix.com/search?legacy=true,_blank">End of Life</option><option value="http://help.citrix.com/support,_blank">GoToAssist</option><option value="http://help.citrix.com/meeting,_blank">GoToMeeting</option><option value="http://help.citrix.com/gotomypc,_blank">GoToMyPC</option><option value="http://help.citrix.com/training,_blank">GoToTraining</option><option value="http://help.citrix.com/webinar,_blank">GoToWebinar</option><option value="http://support.citrix.com/search?prod=Melio,_blank">Melio</option><option value="http://support.citrix.com/en/products/netscaler,_blank">NetScaler</option><option value="http://support.citrix.com/search?prod=NetScaler+Gateway,_blank">NetScaler Gateway (Formerly Access Gateway)</option><option value="http://support.citrix.com/search?prod=OpenCloud,_blank">OpenCloud</option><option value="http://help.citrix.com/openvoice,_blank">OpenVoice (previously Hi-Def Corporate)</option><option value="https://help.podio.com/hc/en-us,_blank">Podio</option><option value="http://support.citrix.com/search?prod=Provisioning+Services,_blank">Provisioning Services</option><option value="http://support.citrix.com/en/products/receiver,_blank">Receiver</option><option value="http://support.citrix.com/search?prod=Secure+Gateway,_blank">Secure Gateway</option><option value="http://support.citrix.com/search?prod=ShareFile,_blank">ShareFile</option><option value="http://support.citrix.com/search?prod=Single+Sign-on,_blank">Single Sign-on (Password Manager)</option><option value="http://support.citrix.com/search?prod=SmartAuditor,_blank">SmartAuditor</option><option value="http://support.citrix.com/search?prod=StorageLink,_blank">StorageLink</option><option value="http://support.citrix.com/search?prod=StoreFront,_blank">StoreFront</option><option value="http://support.citrix.com/search?prod=User+Profile+Management,_blank">User Profile Management</option><option value="http://support.citrix.com/search?prod=VDI-in-a-Box,_blank">VDI-in-a-Box</option><option value="http://support.citrix.com/search?prod=Web+Interface,_blank">Web Interface</option><option value="http://support.citrix.com/search?prod=Workflow+Studio,_blank">Workflow Studio</option><option value="http://support.citrix.com/search?prod=Workspace+Cloud,_blank">Workspace Cloud (now Citrix Cloud)</option><option value="http://support.citrix.com/en/products/xenapp,_blank">XenApp</option><option value="http://support.citrix.com/search?prod=XenApp+Plug-ins+%28Clients%29,_blank">XenApp Plug-ins (Clients)</option><option value="http://support.citrix.com/search?prod=XenClient,_blank">XenClient</option><option value="http://support.citrix.com/en/products/xendesktop,_blank">XenDesktop</option><option value="http://support.citrix.com/en/products/xenmobile,_blank">XenMobile</option><option value="http://support.citrix.com/en/products/xenserver,_blank">XenServer</option> </select></div>
<div class="ctx-kscp-btn-go">
<p><a class="ctx-small-btn ctx-small-disabled ctx-no-external" href="javascript:void(0);"><span>Go</span></a></p>
</div>
</div>
<div class="ctx-kscp-or">or</div>
<!--SEARCH BOX -->
<div class="ctx-kscp-wrap-bottom">
<div class="ctx-kscp-search-wrap ctx-clear"><input class="query" id="ctx-kscp-search" name="search_field" onblur="if(this.value==''){this.value = 'Search Support'; jQuery(this).css('color','#4D4F53');}" onfocus="if(this.value=='Search Support'){ this.value = ''; jQuery(this).css('color','#000000');}" type="text" value="Search Support" /></div>
<div class="ctx-kscp-btn-search">
<p><a class="ctx-small-btn ctx-small-blue ctx-no-external" href="/"><span>Search</span></a></p>
</div>
</div>
</div>
<div class="ctx-kcsp-textctrl-wrap ctx-clear">
<div class="parbase textctrl">
<div class="ctx-sans-fonts" id="textCtrl-7e38917"></div>
</div>
</div>
</div>
<div class="ctx-kcsp-right">
<div class="ctx-kcsp-right-content"></div>
</div>
</div>
</div>
<div class="ctx-clear"></div>
</div>
<div class="parbase textctrl section">
<div class="ctx-sans-fonts" id="textCtrl-33d69e0">
<p><span> </span></p>
<ul>
<li><a adhocenable="false" href="/support/open-a-support-case.html">Open a support case</a></li>
<li><a adhocenable="false" href="http://support.citrix.com/proddocs" target="_blank">Search product documentation</a></li>
<li><a adhocenable="false" href="http://support.citrix.com/search?searchQuery=%3F&lang=en&ct=Technotes&prod=&pver=&sort=cr_date_desc" target="_blank">Read Knowledge Center articles</a></li>
<li><a href="/support/programs.html">Explore support and maintenance programs</a></li>
<li><a adhocenable="false" href="http://deliver.citrix.com/go/citrix/softwaresupport" target="_blank">Request a support sales call</a></li>
</ul>
</div>
</div>
</div>
</td>
<td class="ctx-col-td">
<div class="parsys_column ctx-columns-50-50-wide-c1">
<div class="parbase textctrl section">
<div class="ctx-sans-fonts" id="textCtrl-4f2074d">
<table cellpadding="1" cellspacing="0" width="100%">
<tbody>
<tr>
<td width="3%"></td>
<td>
<p><span class="ctx-emphasis-title">Consulting Services</span></p>
<ul>
<li><a adhocenable="false" href="/support/consulting.html">Browse consulting offerings</a></li>
<li><a adhocenable="false" href="https://deliver.citrix.com/consulting.html" target="_blank">Contact Citrix Consulting</a></li>
</ul>
<p><span class="ctx-emphasis-title">Training and Certification</span></p>
<ul>
<li><a adhocenable="false" href="http://training.citrix.com/mod/ctxcatalog/view.php#search=*&sort=featured&page=1" target="_blank">Browse training catalog</a></li>
<li><a adhocenable="false" href="http://training.citrix.com/cms/education/certification/" target="_blank">Become Citrix Certified</a></li>
</ul>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<div style="clear:both"></div>
<div class="sectionDivider section">
<div class="ctx-divider"></div>
</div>
<div class="parbase textctrl section">
<div class="ctx-sans-fonts" id="textCtrl-5bd77b2">
<p><a href="/support.html">All Support</a> | <a adhocenable="false" href="/support/consulting.html">All Consulting Services</a> | <a adhocenable="false" href="http://training.citrix.com/" target="_blank">All Training</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
</li>
<li><a class="navItem" href="/partners.html" mega-menu="#mega-menu-1fd5a79"><span>Partners</span></a>
<div class="ctx-mega-menu" id="mega-menu-1fd5a79" style="width : 429px;">
<div class="column-holder column_holder">
<div class="ctx-nested-column">
<div class="parsys column-control-holder">
<div class="ctx-columns-wrap " ctx-col-spacing="none">
<table class="parsys_column ctx-columns ctx-columns-50-50-wide none none">
<tbody>
<tr class="ctx-col-row">
<td class="ctx-col-td">
<div class="parsys_column ctx-columns-50-50-wide-c0">
<div class="parbase textctrl section">
<div class="ctx-sans-fonts" id="textCtrl-6c84f7f">
<p><span class="ctx-emphasis-title"><a adhocenable="false" href="/buy/partnerlocator.html">Locate a Partner</a></span><br />
Search for a partner in your area</p>
</div>
</div>
<div class="parbase textctrl section">
<div class="ctx-sans-fonts" id="textCtrl-db36f2">
<p><span class="ctx-emphasis-title"><a adhocenable="false" href="/global-partners.html">Browse our Global Partners</a></span><br />
Learn how our strategic alliances benefit you</p>
</div>
</div>
<div class="parbase textctrl section">
<div class="ctx-sans-fonts" id="textCtrl-7f4569d">
<p><span class="ctx-emphasis-title"><a adhocenable="false" href="http://citrixready.citrix.com" target="_blank">Citrix compatible products</a></span><br />
Browse partner products verified to work with Citrix</p>
</div>
</div>
</div>
</td>
<td class="ctx-col-td">
<div class="parsys_column ctx-columns-50-50-wide-c1">
<div class="parbase textctrl section">
<div class="ctx-sans-fonts" id="textCtrl-2628ea2">
<p><span class="ctx-emphasis-title"><a adhocenable="false" href="/partner-programs.html">Become a Partner</a></span><br />
Increase your profitability and success with Citrix</p>
</div>
</div>
<div class="parbase textctrl section">
<div class="ctx-sans-fonts" id="textCtrl-4823f50">
<p><span class="ctx-emphasis-title"><a adhocenable="false" href="/partnercentral.html">Citrix Partner Central</a></span><br />
Market, sell and manage your Citrix business</p>
</div>
</div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<div style="clear:both"></div>
</div>
</div>
</div>
</div>
</li>
<li class="ctx-login-resp"><a class="navItem ctx-logout-link-resp ctx-anchor-logout" href="/logout.html"><span>Sign Out</span></a> <a class="navItem ctx-login-link-resp" href="/account.html" rel="nofollow"><span>Sign In</span></a></li>
</ul>
</div>
<!-- end ctx-menu-bg --></div>
<!-- end ctx-nav --></div>
<!-- end ctx-header-inner -->
<div class="clear"></div>
</div>
<!-- end ctx-main-header --></div>
<div class="iparys_inherited">
<div class="parsys iparsys globalnaviparsys"></div>
</div>
</div>
<script type="text/javascript">
</script></div>
</header>
</div>
<!-- END header56 --></div>
<div class="ipar-header parsys iparsys">
<div class="iparys_inherited">
<div class="ipar-header parsys iparsys"></div>
</div>
<div class="section">
<div class="new"></div>
</div>
<div class="cta-bar section">
<div class="citrix-cta-bar ">
<div class="inner clearfix" style=""><a class="bar-label clickable" href="https://www.citrix.com/products/citrix-cloud/"><span>Citrix Cloud</span> </a>
<div class="right-content">
<div class="bar-action"><a class="ctx-button primary ctx-blue ctx-sml-btn" href="https://www.citrix.com/products/citrix-cloud/try.html"><span>Try it free</span></a></div>
</div>
</div>
</div>
</div>
<div class="dynamic-nav section">
<div class="ctx-dynamic-nav ctx-sticky ">
<div class="ctx-dn-wrapper" style="max-width: 986px">
<ul class="nav-level-1">
<li class="active"><a href="/products/citrix-cloud/"><span class="nav-label">Overview</span></a></li>
<li><a href="/products/citrix-cloud/whats-new.html"><span class="nav-label">What's New</span></a></li>
<li><a href="/products/citrix-cloud/services.html"><span class="nav-label">Services</span></a></li>
<li><a href="/products/citrix-cloud/tech-info.html"><span class="nav-label">Tech Info</span></a></li>
<li><a href="/products/citrix-cloud/try.html"><span class="nav-label">Try It</span></a></li>
<li><a href="/products/citrix-cloud/buy.html"><span class="nav-label">How to Buy</span></a></li>
<li><a href="/products/citrix-cloud/support.html"><span class="nav-label">Support</span></a></li>
<li class="more"><a href="javascript: void(0);"><span class="nav-label">more</span></a>
<ul class="nav-level-2">
</ul>
</li>
</ul>
</div>
<div class="ctx-nav-bp"></div>
</div>
</div>
</div>
</div>
<div class="ctx-main-body">
<div class="content-par responsivegrid">
<div class="aem-Grid aem-Grid--12">
<div class="aem-GridColumn layout-tool">
<div class="ctx-layout-spinner"></div>
<div class="ctx-columns col-count-1 center default top no-bg-img ">
<div class="bg" style="background-color: ">
<div class="content" style="max-width: 660px;">
<div class="row " style="">
<div>
<div class="columns large-12 ">
<div>
<div class="column-99576-par responsivegrid">
<div class="aem-Grid aem-Grid--12">
<div class="aem-GridColumn text">
<div class="ctx-text ">
<h1 style="text-align: center;">The simplest, most flexible way to manage your apps and data</h1>
</div>
</div>
<div class="new section aem-Grid-newComponent"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="aem-GridColumn layout-tool">
<div class="ctx-layout-spinner"></div>
<div class="ctx-columns col-count-2 center default top no-bg-img reverse ">
<div class="bg" style="background-color: ">
<div class="content" style="max-width: 960px;">
<div class="row " style="">
<div>
<div class="columns large-4 push-8 ">
<div>
<div class="column-99743-par responsivegrid">
<div class="aem-Grid aem-Grid--12">
<div class="image parbase aem-GridColumn"><!-- Check if the linkUrl is not empty -->
<div class="ctx-image center " style="position: relative;">
<div class="ctx-image-inner">
<div class="ctx-vid-play">
<div class="ctx-vid-play-bg"></div>
<a class="ctx-img-link ctx-modal-link" data-options="videoId:rxYAssjhF88;type:youtube" href="javascript:void(0);"><img src="/ndc/etc/designs/citrix-core/images/play-icon.png" /> </a></div>
<div class="ctx-vid-time"><a class="ctx-img-link ctx-modal-link" data-options="videoId:rxYAssjhF88;type:youtube" href="javascript:void(0);">1:51</a></div>
<div class="cq-dd-image" data-alt="" data-maxheight="px" data-maxwidth="px" data-picture="" data-title="">
<div data-media="(min-width: 1px)" data-src="/content/citrix/en_us/products/citrix-cloud/jcr:content/content-par/layout_tool_1841167649/column-99743-par/image/image.img.320.low.jpg/1459954629694.jpg"></div>
<div data-media="(min-width: 320px)" data-src="/content/citrix/en_us/products/citrix-cloud/jcr:content/content-par/layout_tool_1841167649/column-99743-par/image/image.img.320.medium.jpg/1459954629694.jpg"></div>
<div data-media="(min-width: 321px)" data-src="/content/citrix/en_us/products/citrix-cloud/jcr:content/content-par/layout_tool_1841167649/column-99743-par/image/image.img.480.medium.jpg/1459954629694.jpg"></div>
<div data-media="(min-width: 481px)" data-src="/content/citrix/en_us/products/citrix-cloud/jcr:content/content-par/layout_tool_1841167649/column-99743-par/image/image.img.476.high.jpg/1459954629694.jpg"></div>
<div data-media="(min-width: 769px)" data-src="/content/citrix/en_us/products/citrix-cloud/jcr:content/content-par/layout_tool_1841167649/column-99743-par/image/image.img.620.high.jpg/1459954629694.jpg"></div>
<div class="data-src-ie8" data-media="(min-width: 1025px)" data-src="/content/citrix/en_us/products/citrix-cloud/jcr:content/content-par/layout_tool_1841167649/column-99743-par/image/image.img.full.high.jpg/1459954629694.jpg"></div>
<div data-media="(min-width: 1179px)" data-src="/content/dam/citrix61/en_us/images/thumbnails/videos/cwc-how-it-works-240x135.jpg" data-width="100px"></div>
</div>
</div>
</div>
</div>
<div class="aem-GridColumn text">
<div class="ctx-text drop-padding ">
<p style="text-align: center;"><span class="ctx-style-xs"><span class="vt" style="margin-left: 0;">Citrix Cloud: How It Works</span></span></p>
</div>
</div>
<div class="new section aem-Grid-newComponent"></div>
</div>
</div>
</div>
</div>
<div class="columns large-8 pull-4 ">
<div>
<div class="column-84517-par responsivegrid">
<div class="aem-Grid aem-Grid--12">
<div class="aem-GridColumn text">
<div class="ctx-text ">
<p>Citrix Cloud (formerly Citrix Workspace Cloud) is a control plane to manage all Citrix technologies. This cloud-based approach means reduced infrastructure, centralized control and SaaS-style updates, contributing to lower administration cost and complexity. Get the best way to deliver a Citrix environment using any cloud or infrastructure of your choice!</p>
</div>
</div>
<div class="buttons aem-GridColumn">
<div class="ctx-button-wrap ctx-left "><a class="ctx-button primary ctx-blue ctx-medium-btn " href="/products/citrix-cloud/try.html"><span>Try it free</span></a></div>
</div>
<div class="new section aem-Grid-newComponent"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="aem-GridColumn layout-tool">
<div class="ctx-layout-spinner"></div>
<div class="ctx-columns col-count-1 center default top no-bg-img bg-color ">
<div class="bg" style="background-color: rgba(248,248,248,1); filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#4cf8f8f8', endColorstr='#4cf8f8f8');">
<div class="content" style="max-width: 860px;">
<div class="row " style="">
<div>
<div class="columns large-12 ">
<div>
<div class="column-20115-par responsivegrid">
<div class="aem-Grid aem-Grid--12">
<div class="aem-GridColumn text">
<div class="ctx-text ">
<h2 style="text-align: center;">Based on award-winning technologies in XenApp, XenDesktop, XenMobile, NetScaler and ShareFile</h2>
</div>
</div>
<div class="new section aem-Grid-newComponent"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="aem-GridColumn layout-tool">
<div class="ctx-layout-spinner"></div>
<div class="ctx-columns col-count-3 center default drop-padding top no-bg-img bg-color ">
<div class="bg" style="background-color: rgba(248,248,248,1); filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#4cf8f8f8', endColorstr='#4cf8f8f8');">
<div class="content" style="max-width: 960px;">
<div class="row bordered " style="">
<div>
<div class="columns large-4 ">
<div>
<div class="responsivegrid column-32551-par">
<div class="aem-Grid aem-Grid--12">
<div class="aem-GridColumn text">
<div class="ctx-text ">
<p style="text-align: center;"><span class="ctx-style-bold">Fast</span></p>
<ul>
<li>The quickest way to deploy Citrix technologies</li>
<li>Rapidly manage and scale across one or more locations</li>
</ul>
<p></p>
</div>
</div>
<div class="new section aem-Grid-newComponent"></div>
</div>
</div>
</div>
</div>
<div class="columns large-4 ">
<div>
<div class="responsivegrid column-90339-par">
<div class="aem-Grid aem-Grid--12">
<div class="aem-GridColumn text">
<div class="ctx-text ">
<p style="text-align: center;"><span class="ctx-style-bold">Simple</span></p>
<ul>
<li>Less to install</li>
<li>One-click service integration</li>
<li>Easy-to-understand subscription pricing model</li>
</ul>
<p></p>
</div>
</div>
<div class="new section aem-Grid-newComponent"></div>
</div>
</div>
</div>
</div>
<div class="columns large-4 ">
<div>
<div class="column-53463-par responsivegrid">
<div class="aem-Grid aem-Grid--12">
<div class="aem-GridColumn text">
<div class="ctx-text ">
<p style="text-align: center;"><span class="ctx-style-bold">Flexible</span></p>
<ul>
<li>Use any public, private, hybrid cloud, or on-premises infrastructure</li>
<li>Extend your data center into the cloud</li>
</ul>
<p></p>
</div>
</div>
<div class="new section aem-Grid-newComponent"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="aem-GridColumn layout-tool">
<div class="ctx-layout-spinner"></div>
<div class="ctx-columns col-count-1 center default top no-bg-img ">
<div class="bg" style="background-color: ">
<div class="content" style="max-width: 1300px;">
<div class="row " style="">
<div>