-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path0853c6d83cb97eb87fa075c28109bc40.html
More file actions
1645 lines (1367 loc) · 245 KB
/
0853c6d83cb97eb87fa075c28109bc40.html
File metadata and controls
1645 lines (1367 loc) · 245 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html><html lang="en-US" prefix="og: https://ogp.me/ns#"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="https://gmpg.org/xfn/11">
<!-- Search Engine Optimization by Rank Math PRO - https://rankmath.com/ -->
<title>NASA’s Space Station Laser Comm Terminal Achieves First Link - NASA</title>
<meta name="description" content="A NASA technology experiment on the International Space Station completed its first laser link with an in-orbit laser relay system on Dec. 5, 2023. Together,">
<meta name="robots" content="follow, index, max-snippet:-1, max-video-preview:-1, max-image-preview:large">
<link rel="canonical" href="https://www.nasa.gov/technology/space-comms/nasas-space-station-laser-comm-terminal-achieves-first-link/">
<meta property="og:locale" content="en_US">
<meta property="og:type" content="article">
<meta property="og:title" content="NASA’s Space Station Laser Comm Terminal Achieves First Link - NASA">
<meta property="og:description" content="A NASA technology experiment on the International Space Station completed its first laser link with an in-orbit laser relay system on Dec. 5, 2023. Together,">
<meta property="og:url" content="https://www.nasa.gov/technology/space-comms/nasas-space-station-laser-comm-terminal-achieves-first-link/">
<meta property="og:site_name" content="NASA">
<meta property="article:section" content="Communicating and Navigating with Missions">
<meta property="og:updated_time" content="2023-12-18T09:19:25-05:00">
<meta property="og:image" content="https://www.nasa.gov/wp-content/uploads/2023/10/illuma-t-to-lcrd.jpg">
<meta property="og:image:secure_url" content="https://www.nasa.gov/wp-content/uploads/2023/10/illuma-t-to-lcrd.jpg">
<meta property="og:image:width" content="640">
<meta property="og:image:height" content="360">
<meta property="og:image:alt" content="NASA’s ILLUMA-T payload communicating with LCRD over laser signals">
<meta property="og:image:type" content="image/jpeg">
<meta property="article:published_time" content="2023-12-13T12:23:12-05:00">
<meta property="article:modified_time" content="2023-12-18T09:19:25-05:00">
<meta property="og:video" content="https://www.nasa.gov/wp-content/uploads/2023/12/illuma-t-first-light.mp4">
<meta property="ya:ovs:upload_date" content="2023-12-13EST12:23:12-05:00">
<meta property="ya:ovs:allow_embed" content="false">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="NASA’s Space Station Laser Comm Terminal Achieves First Link - NASA">
<meta name="twitter:description" content="A NASA technology experiment on the International Space Station completed its first laser link with an in-orbit laser relay system on Dec. 5, 2023. Together,">
<meta name="twitter:image" content="https://www.nasa.gov/wp-content/uploads/2023/10/illuma-t-to-lcrd.jpg">
<meta name="twitter:label1" content="Written by">
<meta name="twitter:data1" content="Katherine Schauer">
<meta name="twitter:label2" content="Time to read">
<meta name="twitter:data2" content="2 minutes">
<script type="application/ld+json" class="rank-math-schema-pro">{"@context":"https://schema.org","@graph":[{"@type":"Organization","@id":"https://www.nasa.gov/#organization","name":"NASA"},{"@type":"WebSite","@id":"https://www.nasa.gov/#website","url":"https://www.nasa.gov","name":"NASA","publisher":{"@id":"https://www.nasa.gov/#organization"},"inLanguage":"en-US"},{"@type":"ImageObject","@id":"https://www.nasa.gov/wp-content/uploads/2023/10/illuma-t-to-lcrd.jpg","url":"https://www.nasa.gov/wp-content/uploads/2023/10/illuma-t-to-lcrd.jpg","width":"640","height":"360","caption":"NASA\u2019s ILLUMA-T payload communicating with LCRD over laser signals","inLanguage":"en-US"},{"@type":"WebPage","@id":"https://www.nasa.gov/technology/space-comms/nasas-space-station-laser-comm-terminal-achieves-first-link/#webpage","url":"https://www.nasa.gov/technology/space-comms/nasas-space-station-laser-comm-terminal-achieves-first-link/","name":"NASA\u2019s Space Station Laser Comm Terminal Achieves First Link - NASA","datePublished":"2023-12-13T12:23:12-05:00","dateModified":"2023-12-18T09:19:25-05:00","isPartOf":{"@id":"https://www.nasa.gov/#website"},"primaryImageOfPage":{"@id":"https://www.nasa.gov/wp-content/uploads/2023/10/illuma-t-to-lcrd.jpg"},"inLanguage":"en-US"},{"@type":"Person","@id":"https://www.nasa.gov/technology/space-comms/nasas-space-station-laser-comm-terminal-achieves-first-link/#author","name":"Katherine Schauer","image":{"@type":"ImageObject","@id":"https://www.nasa.gov/wp-content/uploads/2023/02/cropped-microsoftteams-image-14-96x96.jpg","url":"https://www.nasa.gov/wp-content/uploads/2023/02/cropped-microsoftteams-image-14-96x96.jpg","caption":"Katherine Schauer","inLanguage":"en-US"},"worksFor":{"@id":"https://www.nasa.gov/#organization"}},{"headline":"NASA\u2019s Space Station Laser Comm Terminal Achieves First Link - NASA","description":"A NASA technology experiment on the International Space Station completed its first laser link with an in-orbit laser relay system on Dec. 5, 2023. Together,","datePublished":"2023-12-13T12:23:12-05:00","dateModified":"2023-12-18T09:19:25-05:00","image":{"@id":"https://www.nasa.gov/wp-content/uploads/2023/10/illuma-t-to-lcrd.jpg"},"author":{"@id":"https://www.nasa.gov/technology/space-comms/nasas-space-station-laser-comm-terminal-achieves-first-link/#author","name":"Katherine Schauer"},"@type":"BlogPosting","name":"NASA\u2019s Space Station Laser Comm Terminal Achieves First Link - NASA","articleSection":"Communicating and Navigating with Missions, General, Goddard Space Flight Center, International Space Station (ISS), ISS Research, Laser Communications Relay, Space Communications & Navigation Program, Technology Demonstration","@id":"https://www.nasa.gov/technology/space-comms/nasas-space-station-laser-comm-terminal-achieves-first-link/#schema-5101508","isPartOf":{"@id":"https://www.nasa.gov/technology/space-comms/nasas-space-station-laser-comm-terminal-achieves-first-link/#webpage"},"publisher":{"@id":"https://www.nasa.gov/#organization"},"inLanguage":"en-US","mainEntityOfPage":{"@id":"https://www.nasa.gov/technology/space-comms/nasas-space-station-laser-comm-terminal-achieves-first-link/#webpage"}},{"@type":"VideoObject","name":"NASA\u2019s Space Station Laser Comm Terminal Achieves First Link - NASA","description":"A NASA technology experiment on the International Space Station completed its first laser link with an in-orbit laser relay system on Dec. 5, 2023. Together,","uploadDate":"2023-12-13T12:23:12-05:00","thumbnailUrl":"https://www.nasa.gov/wp-content/uploads/2023/10/illuma-t-to-lcrd.jpg","contentUrl":"https://www.nasa.gov/wp-content/uploads/2023/12/illuma-t-first-light.mp4","width":"1920","height":"1080","isFamilyFriendly":"True","@id":"https://www.nasa.gov/technology/space-comms/nasas-space-station-laser-comm-terminal-achieves-first-link/#schema-5101509","isPartOf":{"@id":"https://www.nasa.gov/technology/space-comms/nasas-space-station-laser-comm-terminal-achieves-first-link/#webpage"},"publisher":{"@id":"https://www.nasa.gov/#organization"},"inLanguage":"en-US","mainEntityOfPage":{"@id":"https://www.nasa.gov/technology/space-comms/nasas-space-station-laser-comm-terminal-achieves-first-link/#webpage"}}]}</script>
<!-- /Rank Math WordPress SEO plugin -->
<link rel="dns-prefetch" href="//cdn.parsely.com">
<link rel="alternate" type="application/rss+xml" title="NASA » Feed" href="https://www.nasa.gov/feed/">
<link rel="apple-touch-icon" sizes="180x180" href="https://www.nasa.gov/wp-content/plugins/nasa-hds-core-setup/assets/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.nasa.gov/wp-content/plugins/nasa-hds-core-setup/assets/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.nasa.gov/wp-content/plugins/nasa-hds-core-setup/assets/favicons/favicon-16x16.png">
<link rel="manifest" href="https://www.nasa.gov/wp-content/plugins/nasa-hds-core-setup/assets/favicons/site.webmanifest">
<link rel="mask-icon" href="https://www.nasa.gov/wp-content/plugins/nasa-hds-core-setup/assets/favicons/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<style id="wp-block-library-inline-css">
:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px;--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{clip:rect(1px,1px,1px,1px);word-wrap:normal!important;border:0;-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{clip:auto!important;background-color:#ddd;-webkit-clip-path:none;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}
</style>
<link rel="stylesheet" id="all-css-2" href="https://www.nasa.gov/_static/??-eJyFjEEOgzAMBD9U1yAUcar6FhMMRHUchBOi/r4RvfTW02p3VoN1B580s2b0ElpALLBLWYMaFquzwXJQ5JqO17fjVILMaPktbHdvdsMfSd44sqGSETaGq6SJBJTOv1c+23oZn/HRj93Qd4Nz7gPkFDv2" type="text/css" media="all">
<script type="text/javascript" src="https://www.nasa.gov/_static/??-eJyNzksOwjAMBNALkYbSSrBBnMUEK03k2NA45XN6gmDBiiBZ480by/Z6NoEdlRNmG+tcCs73z+pS4C7mlf2FTAp+BsVv7IQVWa1OmGqFIcOr50mOQIZhacCEXIyK94QNSeUm/M4/HtCQ8CHcOponmNFkcQGo0kPa99v1ZuiHcTfGJ7aucKY=" defer=""></script><link rel="https://api.w.org/" href="https://www.nasa.gov/wp-json/"><link rel="alternate" type="application/json" href="https://www.nasa.gov/wp-json/wp/v2/posts/579624"><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.nasa.gov/xmlrpc.php?rsd">
<meta name="generator" content="WordPress 6.3.2">
<link rel="shortlink" href="https://www.nasa.gov/?p=579624">
<link rel="alternate" type="application/json+oembed" href="https://www.nasa.gov/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.nasa.gov%2Ftechnology%2Fspace-comms%2Fnasas-space-station-laser-comm-terminal-achieves-first-link%2F">
<link rel="alternate" type="text/xml+oembed" href="https://www.nasa.gov/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.nasa.gov%2Ftechnology%2Fspace-comms%2Fnasas-space-station-laser-comm-terminal-achieves-first-link%2F&format=xml">
<link rel="preload" fetchpriority="high" href="https://www.nasa.gov/wp-content/client-mu-plugins/uswds-framework/uswds/fonts/public-sans/PublicSans-Regular.woff2" as="font" type="font/woff2" crossorigin="anonymous">
<link rel="preload" fetchpriority="high" href="https://www.nasa.gov/wp-content/client-mu-plugins/uswds-framework/uswds/fonts-split/inter/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2" as="font" type="font/woff2" crossorigin="anonymous">
<link rel="preload" fetchpriority="high" href="https://www.nasa.gov/wp-content/client-mu-plugins/uswds-framework/uswds/fonts-split/db-mono/aFTU7PB1QTsUX8KYthqQBA.woff2" as="font" type="font/woff2" crossorigin="anonymous">
<script language="javascript" id="_fed_an_ua_tag" src="https://dap.digitalgov.gov/Universal-Federated-Analytics-Min.js?agency=NASA&yt=true&dclink=true&exts=stl,fbx,glb,usdz&enhlink=true&sdor=www.nasa.gov"></script>
<script type="text/javascript">
// DO NOT MODIFY BELOW THIS LINE *****************************************
;(function (g) {
var d = document, am = d.createElement('script'), h = d.head || d.getElementsByTagName('head')[0], fsr = 'fsReady',
aex = { "src": "//gateway.foresee.com/sites/nasa-gov/production/gateway.min.js", "type": "text/javascript", "async": "true", "data-vendor": "fs", "data-role": "gateway" };
for (var attr in aex){am.setAttribute(attr, aex[attr]);}h.appendChild(am);g[fsr] || (g[fsr] = function () {var aT = '__' + fsr + '_stk__';g[aT] = g[aT] || [];g[aT].push(arguments);});
})(window);
// DO NOT MODIFY ABOVE THIS LINE *****************************************
</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-NLJ258M');</script>
<!-- End Google Tag Manager -->
<meta name="searchgov_custom1" content="1::579624">
<meta name="searchgov_custom2" content="">
<meta name="searchgov_custom3" content="post">
<meta name="keywords" content="Communicating and Navigating with Missions, General, Goddard Space Flight Center, International Space Station (ISS), ISS Research, Laser Communications Relay, Space Communications & Navigation Program, Technology Demonstration">
<meta name="parsely-title" content="NASA’s Space Station Laser Comm Terminal Achieves First Link">
<meta name="parsely-link" content="https://www.nasa.gov/technology/space-comms/nasas-space-station-laser-comm-terminal-achieves-first-link/">
<meta name="parsely-type" content="post">
<meta name="parsely-image-url" content="https://www.nasa.gov/wp-content/uploads/2023/10/illuma-t-to-lcrd.jpg?w=150&h=150&crop=1">
<meta name="parsely-pub-date" content="2023-12-13T17:23:12Z">
<meta name="parsely-section" content="Technology">
<meta name="parsely-tags" content="Missions,Technology Demonstration,Communicating and Navigating with Missions,General,Goddard Space Flight Center,International Space Station (ISS),ISS Research,Laser Communications Relay,Space Communications & Navigation Program">
<meta name="parsely-author" content="Katherine Schauer">
<!-- USWDS Includes -->
<!-- End USWDS Includes -->
</head>
<body class="post-template-default single single-post postid-579624 single-format-standard">
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NLJ258M" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<header class="hds-nasa-header usa-header usa-header-mobile color-spacesuit-white bg-carbon-black display-block display-block desktop:display-none padding-x-3 padding-y-2">
<div class="usa-nav-container grid-row">
<div class="grid-col display-flex flex-align-center flex-justify-start">
<button id="global-navigation-trigger--mobile" class="hds-global-menu-toggle menu-toggle menu-mobile-toggle" aria-expanded="false" data-menu-action="open" data-menu-location="left">
<div class="menu-toggle-icon">
<div class="menu-toggle-icon-top"></div>
<div class="menu-toggle-icon-center"></div>
<div class="menu-toggle-icon-bottom"></div>
</div>
</button>
</div>
<div class="grid-col display-flex flex-align-center flex-justify-center">
<a id="mobile-header-logo" href="https://www.nasa.gov/" class="usa-logo display-block margin-0 width-fit-content text-center">
<img fetchpriority="high" width="60" height="50.58" alt="NASA Logo" src="https://www.nasa.gov/wp-content/themes/nasa/assets/images/nasa-logo@2x.png" srcset="https://www.nasa.gov/wp-content/themes/nasa/assets/images/nasa-logo.svg">
</a>
</div>
<div class="grid-col display-flex flex-align-center flex-justify-end">
<button class="hds-search-panel-mobile-trigger search-mobile color-carbon-20 menu-toggle" data-menu-action="open" data-menu-location="right">
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 10.643L8.804 7.447a4.8 4.8 0 10-1.357 1.357L10.642 12 12 10.643zM1.36 4.8a3.44 3.44 0 116.879 0 3.44 3.44 0 01-6.879 0z"></path></svg>
</button>
</div>
</div>
</header>
<header class="usa-header usa-header--basic usa-header-primary padding-y-2 padding-x-2 bg-carbon-black color-spacesuit-white display-none desktop:display-block">
<div class="usa-nav-container padding-0 grid-container grid-container-extrawide grid-row">
<div class="grid-col-5 display-flex flex-align-center">
<ul class="usa-nav__primary usa-accordion">
<li class="hds-explore-nav-trigger usa-nav__primary-item margin-right-2">
<button class="usa-accordion__button usa-nav__link display-flex flex-align-center" aria-expanded="false" id="global-navigation-trigger">
<span>Explore</span>
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="17px" viewBox="0 0 16 17" style="enable-background:new 0 0 16 17;" xml:space="preserve"><g> <g> <path d="M8,16.5c-4.4,0-8-3.6-8-8s3.6-8,8-8s8,3.6,8,8S12.4,16.5,8,16.5z M8,1.5c-3.9,0-7,3.1-7,7c0,3.9,3.1,7,7,7 s7-3.1,7-7C15,4.6,11.9,1.5,8,1.5z"></path> </g> <g> <path d="M8,10l2.6-2.6L11.2,8L8,11.2L4.8,8l0.6-0.6L8,10z"></path> </g></g></svg>
</button>
</li>
</ul>
<form action="https://www.nasa.gov/" class="hds-search usa-search usa-search--small float-none" role="search" style="float: none!important;">
<label class="usa-sr-only" for="search-field-en-small">Search</label>
<input class="hds-search-input hds-search-input-dark usa-input border bg-carbon-black border-color-carbon-70-important" id="search-field-en-small--desktop" type="search" name="search" value="" placeholder="Search...">
<button class="usa-button display-none" type="submit" aria-label="Search">
</button>
</form>
</div>
<div class="grid-col-2 display-flex flex-justify-center flex-align-center">
<a id="header-logo" href="https://www.nasa.gov/" class="usa-logo tablet:display-block margin-0" style="width: 60px;">
<img fetchpriority="high" width="60" height="50.58" alt="NASA Logo" src="https://www.nasa.gov/wp-content/themes/nasa/assets/images/nasa-logo@2x.png" srcset="https://www.nasa.gov/wp-content/themes/nasa/assets/images/nasa-logo.svg">
</a>
</div>
<nav aria-label="Primary navigation" class="usa-nav grid-col-5 color-spacesuit-white">
<div class="usa-nav__inner hds-nav__inner">
<ul class="hds-nav-primary color-spacesuit-white usa-nav__primary">
<li class="hds-nav-has-submenu usa-nav__primary-item">
<button class="usa-nav__link heading-16 color-spacesuit-white padding-y-2 padding-x-2 display-flex flex-align-center" aria-expanded="false" aria-controls="news-events-submenu">
<span>News & Events</span>
<svg version="1.1" fill="#fff" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="306px" height="306px" viewBox="0 0 306 306" style="enable-background:new 0 0 306 306;" xml:space="preserve"><g><polygon points="270.3,58.65 153,175.95 35.7,58.65 0,94.35 153,247.35 306,94.35 "></polygon></g></svg>
</button>
<ul id="news-events-submenu" class="hds-nav__submenu" hidden="">
<a href="https://www.nasa.gov/news/" target="_self" class="button-primary button-primary-md button-light margin-bottom-3">
<h3 class="heading-22 color-spacesuit-white padding-right-2 line-height-alt-1">News & Events</h3>
<svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg>
</a>
<li class="hds-submenu-item usa-nav__submenu-item">
<a href="https://www.nasa.gov/news/all-news/">
<span>All NASA News</span>
</a>
</li>
<li class="hds-submenu-item usa-nav__submenu-item">
<a href="https://plus.nasa.gov/series/">
<span>Video Series on NASA+</span>
</a>
</li>
<li class="hds-submenu-item usa-nav__submenu-item">
<a href="https://www.nasa.gov/podcasts/">
<span>Podcasts</span>
</a>
</li>
<li class="hds-submenu-item usa-nav__submenu-item">
<a href="https://www.nasa.gov/nasa-blogs/">
<span>Blogs</span>
</a>
</li>
<li class="hds-submenu-item usa-nav__submenu-item">
<a href="https://www.nasa.gov/newsletters/">
<span>Newsletters</span>
</a>
</li>
<li class="hds-submenu-item usa-nav__submenu-item">
<a href="https://www.nasa.gov/social-media/">
<span>Social Media</span>
</a>
</li>
<li class="hds-submenu-item usa-nav__submenu-item">
<a href="https://www.nasa.gov/news/media-contacts/">
<span>Media Resources</span>
</a>
</li>
<li class="hds-submenu-item usa-nav__submenu-item">
<a href="https://www.nasa.gov/events/">
<span>Upcoming Launches & Landings</span>
</a>
</li>
<li class="hds-submenu-item usa-nav__submenu-item">
<a href="https://www.nasa.gov/nasa-virtual-guest-program/">
<span>Virtual Events</span>
</a>
</li>
</ul>
</li>
<li class="hds-nav-has-submenu usa-nav__primary-item">
<button class="usa-nav__link heading-16 color-spacesuit-white padding-y-2 padding-x-2 display-flex flex-align-center" aria-expanded="false" aria-controls="news-galleries-submenu">
<span>Multimedia</span>
<svg version="1.1" fill="#fff" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="306px" height="306px" viewBox="0 0 306 306" style="enable-background:new 0 0 306 306;" xml:space="preserve"><g><polygon points="270.3,58.65 153,175.95 35.7,58.65 0,94.35 153,247.35 306,94.35 "></polygon></g></svg>
</button>
<ul id="news-galleries-submenu" class="hds-nav__submenu" hidden="">
<a href="https://www.nasa.gov/multimedia/" target="_self" class="button-primary button-primary-md button-light margin-bottom-3">
<h3 class="heading-22 color-spacesuit-white padding-right-2 line-height-alt-1">Multimedia</h3>
<svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg>
</a>
<li class="hds-submenu-item usa-nav__submenu-item">
<a href="https://plus.nasa.gov/">
<span>NASA+</span>
</a>
</li>
<li class="hds-submenu-item usa-nav__submenu-item">
<a href="https://www.nasa.gov/images/">
<span>Images</span>
</a>
</li>
<li class="hds-submenu-item usa-nav__submenu-item">
<a href="https://www.nasa.gov/nasatv/">
<span>NASA TV</span>
</a>
</li>
<li class="hds-submenu-item usa-nav__submenu-item">
<a href="https://www.nasa.gov/audio-and-ringtones/">
<span>Sounds and Ringtones</span>
</a>
</li>
<li class="hds-submenu-item usa-nav__submenu-item">
<a href="https://www.nasa.gov/interactives/">
<span>Interactives</span>
</a>
</li>
<li class="hds-submenu-item usa-nav__submenu-item">
<a href="https://www.nasa.gov/apps/">
<span>NASA Apps</span>
</a>
</li>
<li class="hds-submenu-item usa-nav__submenu-item">
<a href="https://www.nasa.gov/podcasts/">
<span>Podcasts</span>
</a>
</li>
<li class="hds-submenu-item usa-nav__submenu-item">
<a href="https://www.nasa.gov/ebooks/">
<span>e-Books</span>
</a>
</li>
<li class="hds-submenu-item usa-nav__submenu-item">
<a href="https://www.nasa.gov/learning-resources/search/?terms=8058%2C8059%2C8061%2C8062%2C8068">
<span>STEM Multimedia</span>
</a>
</li>
</ul>
</li>
<li class="hds-nav-has-submenu usa-nav__primary-item">
<a href="https://plus.nasa.gov/" class="hds-nav__link-nasa-live usa-nav__link-nasa-live usa-nav__link heading-16 color-spacesuit-white">
<span>NASA+</span>
</a>
</li>
</ul>
</div>
</nav>
</div>
</header>
<div class="hds-search-panel-mobile bg-spacesuit-white">
<div class="hds-search-panel-bar bg-carbon-black padding-x-3 padding-y-2">
<svg class="hds-search-panel-bar-search-icon" width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 10.6425L8.80427 7.44706C9.30727 6.68769 9.5998 5.77883 9.5998 4.79999C9.5998 2.14872 7.45091 0 4.7999 0C2.14889 0 0 2.1492 0 4.80047C0 7.45079 2.14889 9.60046 4.7999 9.60046C5.77825 9.60046 6.68813 9.30702 7.44719 8.80453L10.6424 12L12 10.6425ZM1.35996 4.80095C1.35996 2.90111 2.9004 1.36176 4.79991 1.36176C6.6999 1.36176 8.24034 2.90111 8.24034 4.80095C8.24034 6.70079 6.6999 8.2411 4.79991 8.2411C2.9004 8.2411 1.35996 6.70079 1.35996 4.80095Z" fill="white"></path></svg>
<form action="https://www.nasa.gov/" class="hds-search usa-search usa-search--small float-none" role="search" style="float: none!important;">
<label class="usa-sr-only" for="search-field-en-small">Search</label>
<input class="usa-input bg-carbon-black color-spacesuit-white" id="search-field-en-small--mobile" type="search" name="search" value="" placeholder="Search the universe">
<button class="usa-button display-none" type="submit">
</button>
</form>
<button class="hds-search-panel-bar-close-icon">
<svg class="hds-search-panel-bar-close-icon" width="13" height="12" viewBox="0 0 13 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M6.14925 6.00038L0.999972 11.1497L1.84975 11.9969L6.99778 6.84891L12.1496 12.0008L12.9994 11.1535L7.8463 6.00038L12.9994 0.847277L12.1496 0L6.99778 5.15186L1.84782 0.0019043L0.998047 0.849182L6.14925 6.00038Z" fill="white"></path></svg>
</button>
</div>
<div class="hds-search-panel-suggestions padding-x-3 padding-y-4">
<h2 class="heading-18 margin-top-0">Suggested Searches</h2>
<ul class="hds-search-suggestions">
<li class="hds-search-suggestion">
<a class="color-carbon-60 padding-x-0 padding-y-2 border-bottom-1px border-color-carbon-20" href="https://www.nasa.gov/?search=Climate%20Change">
<svg class="hds-search-suggestion-search-icon" width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 10.6425L8.80427 7.44706C9.30727 6.68769 9.5998 5.77883 9.5998 4.79999C9.5998 2.14872 7.45091 0 4.7999 0C2.14889 0 0 2.1492 0 4.80047C0 7.45079 2.14889 9.60046 4.7999 9.60046C5.77825 9.60046 6.68813 9.30702 7.44719 8.80453L10.6424 12L12 10.6425ZM1.35996 4.80095C1.35996 2.90111 2.9004 1.36176 4.79991 1.36176C6.6999 1.36176 8.24034 2.90111 8.24034 4.80095C8.24034 6.70079 6.6999 8.2411 4.79991 8.2411C2.9004 8.2411 1.35996 6.70079 1.35996 4.80095Z" fill="#B9B9BB"></path></svg>
<span>Climate Change</span>
<svg class="hds-search-suggestion-go-icon" width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="8" cy="8" r="8" fill="#F64137"></circle><path d="M4 8.47777L10.3018 8.47777L8.37983 10.5311L9.00582 11.2L12 8.00001L9.00581 4.80001L8.37983 5.46893L10.3018 7.52226L4 7.52226L4 8.47777Z" fill="white"></path></svg>
</a>
</li>
<li class="hds-search-suggestion">
<a class="color-carbon-60 padding-x-0 padding-y-2 border-bottom-1px border-color-carbon-20" href="https://www.nasa.gov/?search=Artemis">
<svg class="hds-search-suggestion-search-icon" width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 10.6425L8.80427 7.44706C9.30727 6.68769 9.5998 5.77883 9.5998 4.79999C9.5998 2.14872 7.45091 0 4.7999 0C2.14889 0 0 2.1492 0 4.80047C0 7.45079 2.14889 9.60046 4.7999 9.60046C5.77825 9.60046 6.68813 9.30702 7.44719 8.80453L10.6424 12L12 10.6425ZM1.35996 4.80095C1.35996 2.90111 2.9004 1.36176 4.79991 1.36176C6.6999 1.36176 8.24034 2.90111 8.24034 4.80095C8.24034 6.70079 6.6999 8.2411 4.79991 8.2411C2.9004 8.2411 1.35996 6.70079 1.35996 4.80095Z" fill="#B9B9BB"></path></svg>
<span>Artemis</span>
<svg class="hds-search-suggestion-go-icon" width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="8" cy="8" r="8" fill="#F64137"></circle><path d="M4 8.47777L10.3018 8.47777L8.37983 10.5311L9.00582 11.2L12 8.00001L9.00581 4.80001L8.37983 5.46893L10.3018 7.52226L4 7.52226L4 8.47777Z" fill="white"></path></svg>
</a>
</li>
<li class="hds-search-suggestion">
<a class="color-carbon-60 padding-x-0 padding-y-2 border-bottom-1px border-color-carbon-20" href="https://www.nasa.gov/?search=Expedition%2064">
<svg class="hds-search-suggestion-search-icon" width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 10.6425L8.80427 7.44706C9.30727 6.68769 9.5998 5.77883 9.5998 4.79999C9.5998 2.14872 7.45091 0 4.7999 0C2.14889 0 0 2.1492 0 4.80047C0 7.45079 2.14889 9.60046 4.7999 9.60046C5.77825 9.60046 6.68813 9.30702 7.44719 8.80453L10.6424 12L12 10.6425ZM1.35996 4.80095C1.35996 2.90111 2.9004 1.36176 4.79991 1.36176C6.6999 1.36176 8.24034 2.90111 8.24034 4.80095C8.24034 6.70079 6.6999 8.2411 4.79991 8.2411C2.9004 8.2411 1.35996 6.70079 1.35996 4.80095Z" fill="#B9B9BB"></path></svg>
<span>Expedition 64</span>
<svg class="hds-search-suggestion-go-icon" width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="8" cy="8" r="8" fill="#F64137"></circle><path d="M4 8.47777L10.3018 8.47777L8.37983 10.5311L9.00582 11.2L12 8.00001L9.00581 4.80001L8.37983 5.46893L10.3018 7.52226L4 7.52226L4 8.47777Z" fill="white"></path></svg>
</a>
</li>
<li class="hds-search-suggestion">
<a class="color-carbon-60 padding-x-0 padding-y-2 border-bottom-1px border-color-carbon-20" href="https://www.nasa.gov/?search=Mars%20perseverance">
<svg class="hds-search-suggestion-search-icon" width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 10.6425L8.80427 7.44706C9.30727 6.68769 9.5998 5.77883 9.5998 4.79999C9.5998 2.14872 7.45091 0 4.7999 0C2.14889 0 0 2.1492 0 4.80047C0 7.45079 2.14889 9.60046 4.7999 9.60046C5.77825 9.60046 6.68813 9.30702 7.44719 8.80453L10.6424 12L12 10.6425ZM1.35996 4.80095C1.35996 2.90111 2.9004 1.36176 4.79991 1.36176C6.6999 1.36176 8.24034 2.90111 8.24034 4.80095C8.24034 6.70079 6.6999 8.2411 4.79991 8.2411C2.9004 8.2411 1.35996 6.70079 1.35996 4.80095Z" fill="#B9B9BB"></path></svg>
<span>Mars perseverance</span>
<svg class="hds-search-suggestion-go-icon" width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="8" cy="8" r="8" fill="#F64137"></circle><path d="M4 8.47777L10.3018 8.47777L8.37983 10.5311L9.00582 11.2L12 8.00001L9.00581 4.80001L8.37983 5.46893L10.3018 7.52226L4 7.52226L4 8.47777Z" fill="white"></path></svg>
</a>
</li>
<li class="hds-search-suggestion">
<a class="color-carbon-60 padding-x-0 padding-y-2 border-bottom-1px border-color-carbon-20" href="https://www.nasa.gov/?search=SpaceX%20Crew-2">
<svg class="hds-search-suggestion-search-icon" width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 10.6425L8.80427 7.44706C9.30727 6.68769 9.5998 5.77883 9.5998 4.79999C9.5998 2.14872 7.45091 0 4.7999 0C2.14889 0 0 2.1492 0 4.80047C0 7.45079 2.14889 9.60046 4.7999 9.60046C5.77825 9.60046 6.68813 9.30702 7.44719 8.80453L10.6424 12L12 10.6425ZM1.35996 4.80095C1.35996 2.90111 2.9004 1.36176 4.79991 1.36176C6.6999 1.36176 8.24034 2.90111 8.24034 4.80095C8.24034 6.70079 6.6999 8.2411 4.79991 8.2411C2.9004 8.2411 1.35996 6.70079 1.35996 4.80095Z" fill="#B9B9BB"></path></svg>
<span>SpaceX Crew-2</span>
<svg class="hds-search-suggestion-go-icon" width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="8" cy="8" r="8" fill="#F64137"></circle><path d="M4 8.47777L10.3018 8.47777L8.37983 10.5311L9.00582 11.2L12 8.00001L9.00581 4.80001L8.37983 5.46893L10.3018 7.52226L4 7.52226L4 8.47777Z" fill="white"></path></svg>
</a>
</li>
<li class="hds-search-suggestion">
<a class="color-carbon-60 padding-x-0 padding-y-2 border-bottom-1px border-color-carbon-20" href="https://www.nasa.gov/?search=International%20Space%20Station">
<svg class="hds-search-suggestion-search-icon" width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 10.6425L8.80427 7.44706C9.30727 6.68769 9.5998 5.77883 9.5998 4.79999C9.5998 2.14872 7.45091 0 4.7999 0C2.14889 0 0 2.1492 0 4.80047C0 7.45079 2.14889 9.60046 4.7999 9.60046C5.77825 9.60046 6.68813 9.30702 7.44719 8.80453L10.6424 12L12 10.6425ZM1.35996 4.80095C1.35996 2.90111 2.9004 1.36176 4.79991 1.36176C6.6999 1.36176 8.24034 2.90111 8.24034 4.80095C8.24034 6.70079 6.6999 8.2411 4.79991 8.2411C2.9004 8.2411 1.35996 6.70079 1.35996 4.80095Z" fill="#B9B9BB"></path></svg>
<span>International Space Station</span>
<svg class="hds-search-suggestion-go-icon" width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="8" cy="8" r="8" fill="#F64137"></circle><path d="M4 8.47777L10.3018 8.47777L8.37983 10.5311L9.00582 11.2L12 8.00001L9.00581 4.80001L8.37983 5.46893L10.3018 7.52226L4 7.52226L4 8.47777Z" fill="white"></path></svg>
</a>
</li>
<li class="hds-search-suggestion hds-search-suggestion-more">
<a class="color-carbon-black padding-x-0 padding-y-2 border-bottom-1px border-color-carbon-20" href="https://www.nasa.gov/a-to-z-topics-listing/">
<span>View All Topics A-Z</span>
<svg class="hds-search-suggestion-go-icon" width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="8" cy="8" r="8" fill="#F64137"></circle><path d="M4 8.47777L10.3018 8.47777L8.37983 10.5311L9.00582 11.2L12 8.00001L9.00581 4.80001L8.37983 5.46893L10.3018 7.52226L4 7.52226L4 8.47777Z" fill="white"></path></svg>
</a>
</li>
</ul>
</div>
</div>
<div id="global-navigation" class="usa-nav__submenu usa-megamenu bg-carbon-black-important padding-x-0 desktop:padding-x-2" style="left: 0;" hidden="">
<div class="grid-container grid-container-extrawide padding-x-0">
<div class="grid-row global-nav__menus">
<div class="global-nav__primary global-nav__col grid-col-3">
<div class="global-nav__primary-wrapper global-nav__wrapper border-right-1px border-color-carbon-80">
<ul class="hds-global-menu-primary global-nav__primary-list usa-nav__submenu-list">
<li class="hds-global-menu-item hds-global-menu-item-trigger usa-nav__submenu-item usa-current" submenu-id="global-nav-home"><a href="https://www.nasa.gov/"><span>Home</span><svg width="6" height="8" viewBox="0 0 6 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.05516 4L0.800049 0.767159L1.57249 0L5.60005 4L1.57249 8L0.800049 7.23284L4.05516 4Z"></path></svg></a></li><li class="hds-global-menu-item hds-global-menu-item-trigger usa-nav__submenu-item " submenu-id="global-nav-missions"><a href="https://www.nasa.gov/nasa-missions/"><span>Missions</span><svg width="6" height="8" viewBox="0 0 6 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.05516 4L0.800049 0.767159L1.57249 0L5.60005 4L1.57249 8L0.800049 7.23284L4.05516 4Z"></path></svg></a></li><li class="hds-global-menu-item hds-global-menu-item-trigger usa-nav__submenu-item " submenu-id="global-nav-humans-in-space"><a href="https://www.nasa.gov/humans-in-space/"><span>Humans in Space</span><svg width="6" height="8" viewBox="0 0 6 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.05516 4L0.800049 0.767159L1.57249 0L5.60005 4L1.57249 8L0.800049 7.23284L4.05516 4Z"></path></svg></a></li><li class="hds-global-menu-item hds-global-menu-item-trigger usa-nav__submenu-item " submenu-id="global-nav-earth-climate"><a href="https://science.nasa.gov/earth/"><span>Earth & Climate</span><svg width="6" height="8" viewBox="0 0 6 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.05516 4L0.800049 0.767159L1.57249 0L5.60005 4L1.57249 8L0.800049 7.23284L4.05516 4Z"></path></svg></a></li><li class="hds-global-menu-item hds-global-menu-item-trigger usa-nav__submenu-item " submenu-id="global-nav-solar-system"><a href="https://science.nasa.gov/solar-system/"><span>The Solar System</span><svg width="6" height="8" viewBox="0 0 6 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.05516 4L0.800049 0.767159L1.57249 0L5.60005 4L1.57249 8L0.800049 7.23284L4.05516 4Z"></path></svg></a></li><li class="hds-global-menu-item hds-global-menu-item-trigger usa-nav__submenu-item " submenu-id="global-nav-universe"><a href="https://science.nasa.gov/universe/"><span>The Universe</span><svg width="6" height="8" viewBox="0 0 6 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.05516 4L0.800049 0.767159L1.57249 0L5.60005 4L1.57249 8L0.800049 7.23284L4.05516 4Z"></path></svg></a></li><li class="hds-global-menu-item hds-global-menu-item-trigger usa-nav__submenu-item " submenu-id="global-nav-science"><a href="https://science.nasa.gov/"><span>Science</span><svg width="6" height="8" viewBox="0 0 6 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.05516 4L0.800049 0.767159L1.57249 0L5.60005 4L1.57249 8L0.800049 7.23284L4.05516 4Z"></path></svg></a></li><li class="hds-global-menu-item hds-global-menu-item-trigger usa-nav__submenu-item " submenu-id="global-nav-aeronautics"><a href="https://www.nasa.gov/aeronautics/"><span>Aeronautics</span><svg width="6" height="8" viewBox="0 0 6 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.05516 4L0.800049 0.767159L1.57249 0L5.60005 4L1.57249 8L0.800049 7.23284L4.05516 4Z"></path></svg></a></li><li class="hds-global-menu-item hds-global-menu-item-trigger usa-nav__submenu-item " submenu-id="global-nav-technology"><a href="https://www.nasa.gov/technology/"><span>Technology</span><svg width="6" height="8" viewBox="0 0 6 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.05516 4L0.800049 0.767159L1.57249 0L5.60005 4L1.57249 8L0.800049 7.23284L4.05516 4Z"></path></svg></a></li><li class="hds-global-menu-item hds-global-menu-item-trigger usa-nav__submenu-item " submenu-id="global-nav-learning-resources"><a href="https://www.nasa.gov/learning-resources/"><span>Learning Resources</span><svg width="6" height="8" viewBox="0 0 6 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.05516 4L0.800049 0.767159L1.57249 0L5.60005 4L1.57249 8L0.800049 7.23284L4.05516 4Z"></path></svg></a></li><li class="hds-global-menu-item hds-global-menu-item-trigger usa-nav__submenu-item " submenu-id="global-nav-about-nasa"><a href="https://www.nasa.gov/about/"><span>About NASA</span><svg width="6" height="8" viewBox="0 0 6 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.05516 4L0.800049 0.767159L1.57249 0L5.60005 4L1.57249 8L0.800049 7.23284L4.05516 4Z"></path></svg></a></li><li class="hds-global-menu-item hds-global-menu-item-trigger usa-nav__submenu-item " submenu-id="global-nav-espanol"><a href="https://www.nasa.gov/es/"><span>Español</span><svg width="6" height="8" viewBox="0 0 6 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.05516 4L0.800049 0.767159L1.57249 0L5.60005 4L1.57249 8L0.800049 7.23284L4.05516 4Z"></path></svg></a></li> <hr class="border-color-carbon-60-important display-block desktop:display-none margin-y-3">
<li class="hds-global-menu-item hds-global-menu-item-trigger hds-global-menu-item-mobile usa-nav__submenu-item" submenu-id="media">
<a href="#">
<span>News & Events</span>
<svg width="6" height="8" viewBox="0 0 6 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.05516 4L0.800049 0.767159L1.57249 0L5.60005 4L1.57249 8L0.800049 7.23284L4.05516 4Z"></path></svg>
</a>
</li>
<li class="hds-global-menu-item hds-global-menu-item-trigger hds-global-menu-item-mobile usa-nav__submenu-item" submenu-id="galleries">
<a href="#">
<span>Multimedia</span>
<svg width="6" height="8" viewBox="0 0 6 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.05516 4L0.800049 0.767159L1.57249 0L5.60005 4L1.57249 8L0.800049 7.23284L4.05516 4Z"></path></svg>
</a>
</li>
<li class="hds-global-menu-item hds-global-menu-item-mobile usa-nav__submenu-item">
<a class="hds-nav__link-nasa-live usa-nav__link-nasa-live" href="https://plus.nasa.gov/">
<span>NASA+</span>
</a>
</li>
</ul>
</div>
</div>
<div class="global-nav__home global-nav__features global-nav__col grid-col-9 desktop:padding-left-105"><h3 class="heading-12 color-carbon-40 text-uppercase margin-bottom-2">Featured</h3><div class="grid-row"><a href="https://www.nasa.gov/centers-and-facilities/marshall/nasa-geologist-paves-the-way-for-building-on-the-moon/" class="hds-content-card hds-content-card-home grid-col-12 desktop:grid-col-4 color-spacesuit-white padding-x-0 desktop:padding-right-3 margin-bottom-4" target="_self"><div class="grid-col margin-bottom-2"><div class="bg-carbon-black minh-mobile"><img width="640" height="360" src="https://www.nasa.gov/wp-content/uploads/2023/12/edmunson-jennifer-horizontal.jpg?w=640" class="hds-media-background z-100" alt="A blonde woman with a black jacket poses in for a headshot in front of a blue background." decoding="async" style="object-position: 0% 0%" fetchpriority="high" srcset="https://www.nasa.gov/wp-content/uploads/2023/12/edmunson-jennifer-horizontal.jpg 1920w, https://www.nasa.gov/wp-content/uploads/2023/12/edmunson-jennifer-horizontal.jpg?resize=300,169 300w, https://www.nasa.gov/wp-content/uploads/2023/12/edmunson-jennifer-horizontal.jpg?resize=768,432 768w, https://www.nasa.gov/wp-content/uploads/2023/12/edmunson-jennifer-horizontal.jpg?resize=1024,576 1024w, https://www.nasa.gov/wp-content/uploads/2023/12/edmunson-jennifer-horizontal.jpg?resize=1536,864 1536w, https://www.nasa.gov/wp-content/uploads/2023/12/edmunson-jennifer-horizontal.jpg?resize=400,225 400w, https://www.nasa.gov/wp-content/uploads/2023/12/edmunson-jennifer-horizontal.jpg?resize=600,338 600w, https://www.nasa.gov/wp-content/uploads/2023/12/edmunson-jennifer-horizontal.jpg?resize=900,506 900w, https://www.nasa.gov/wp-content/uploads/2023/12/edmunson-jennifer-horizontal.jpg?resize=1200,675 1200w" sizes="(max-width: 640px) 100vw, 640px"></div></div><div class="grid-col padding-left-0"><div class="label margin-bottom-1">5 min read</div><div class="margin-bottom-2"><h3 class="heading-16 line-height-md">NASA Geologist Paves the Way for Building on the Moon</h3></div><div class="heading-12 display-flex flex-align-center font-weight-bold text-uppercase margin-bottom-1 color-carbon-40"><span class="display-flex flex-align-center margin-right-2"><svg version="1.1" class="square-2 margin-right-1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"><g><g><path d="M8,0C3.5,0-0.1,3.7,0,8.2C0.1,12.5,3.6,16,8,16c4.4,0,8-3.6,8-8C16,3.5,12.4,0,8,0z M8,15.2 C4,15.2,0.8,12,0.8,8C0.8,4,4,0.8,8,0.8c3.9,0,7.2,3.2,7.2,7.1C15.2,11.9,12,15.2,8,15.2z"></path><path d="M5.6,12c0.8-0.8,1.6-1.6,2.4-2.4c0.8,0.8,1.6,1.6,2.4,2.4c0-2.7,0-5.3,0-8C8.8,4,7.2,4,5.6,4 C5.6,6.7,5.6,9.3,5.6,12z"></path></g></g></svg><span>article</span></span><span>1 week ago</span></div></div></a><a href="https://www.nasa.gov/missions/station/iss-research/nasa-una-jugosa-historia-de-tomates-en-la-estacion-espacial-internacional/" class="hds-content-card hds-content-card-home grid-col-12 desktop:grid-col-4 color-spacesuit-white padding-x-0 desktop:padding-right-3 margin-bottom-4" target="_self"><div class="grid-col margin-bottom-2"><div class="bg-carbon-black minh-mobile"><img width="1920" height="1280" src="https://images-assets.nasa.gov/image/iss068e018681/iss068e018681~large.jpg?w=1920&h=1280&fit=clip&crop=faces%2Cfocalpoint" class="hds-media-background z-100" alt="" decoding="async" style="object-position: 0% 0%" srcset="https://images-assets.nasa.gov/image/iss068e018681/iss068e018681~large.jpg?w=1920&h=1280&fit=crop&crop=faces%2Cfocalpoint 1920w, https://images-assets.nasa.gov/image/iss068e018681/iss068e018681~large.jpg?w=300&h=200&fit=crop&crop=faces%2Cfocalpoint 300w, https://images-assets.nasa.gov/image/iss068e018681/iss068e018681~large.jpg?w=768&h=512&fit=crop&crop=faces%2Cfocalpoint 768w, https://images-assets.nasa.gov/image/iss068e018681/iss068e018681~large.jpg?w=1024&h=683&fit=crop&crop=faces%2Cfocalpoint 1024w, https://images-assets.nasa.gov/image/iss068e018681/iss068e018681~large.jpg?w=1536&h=1024&fit=crop&crop=faces%2Cfocalpoint 1536w, https://images-assets.nasa.gov/image/iss068e018681/iss068e018681~large.jpg?w=400&h=267&fit=crop&crop=faces%2Cfocalpoint 400w, https://images-assets.nasa.gov/image/iss068e018681/iss068e018681~large.jpg?w=600&h=400&fit=crop&crop=faces%2Cfocalpoint 600w, https://images-assets.nasa.gov/image/iss068e018681/iss068e018681~large.jpg?w=900&h=600&fit=crop&crop=faces%2Cfocalpoint 900w, https://images-assets.nasa.gov/image/iss068e018681/iss068e018681~large.jpg?w=1200&h=800&fit=crop&crop=faces%2Cfocalpoint 1200w" sizes="(max-width: 1920px) 100vw, 1920px"></div></div><div class="grid-col padding-left-0"><div class="label margin-bottom-1">4 min read</div><div class="margin-bottom-2"><h3 class="heading-16 line-height-md">NASA: Una jugosa historia de tomates en la Estación Espacial Internacional</h3></div><div class="heading-12 display-flex flex-align-center font-weight-bold text-uppercase margin-bottom-1 color-carbon-40"><span class="display-flex flex-align-center margin-right-2"><svg version="1.1" class="square-2 margin-right-1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"><g><g><path d="M8,0C3.5,0-0.1,3.7,0,8.2C0.1,12.5,3.6,16,8,16c4.4,0,8-3.6,8-8C16,3.5,12.4,0,8,0z M8,15.2 C4,15.2,0.8,12,0.8,8C0.8,4,4,0.8,8,0.8c3.9,0,7.2,3.2,7.2,7.1C15.2,11.9,12,15.2,8,15.2z"></path><path d="M5.6,12c0.8-0.8,1.6-1.6,2.4-2.4c0.8,0.8,1.6,1.6,2.4,2.4c0-2.7,0-5.3,0-8C8.8,4,7.2,4,5.6,4 C5.6,6.7,5.6,9.3,5.6,12z"></path></g></g></svg><span>article</span></span><span>1 week ago</span></div></div></a><a href="https://www.nasa.gov/missions/station/iss-research/nasa-lets-ketchup-on-international-space-station-tomato-research/" class="hds-content-card hds-content-card-home grid-col-12 desktop:grid-col-4 color-spacesuit-white padding-x-0 desktop:padding-right-3 margin-bottom-4" target="_self"><div class="grid-col margin-bottom-2"><div class="bg-carbon-black minh-mobile"><img width="640" height="427" src="https://www.nasa.gov/wp-content/uploads/2023/12/iss068e015480.jpg?w=640" class="hds-media-background z-100" alt="NASA astronaut and Expedition 68 Flight Engineer Frank Rubio is photographed performing fluid management and seed cartridge/plant inspections on the eXposed Root On-Orbit Test System (XROOTS) payload." decoding="async" style="object-position: 0% 0%" srcset="https://www.nasa.gov/wp-content/uploads/2023/12/iss068e015480.jpg 5568w, https://www.nasa.gov/wp-content/uploads/2023/12/iss068e015480.jpg?resize=300,200 300w, https://www.nasa.gov/wp-content/uploads/2023/12/iss068e015480.jpg?resize=768,512 768w, https://www.nasa.gov/wp-content/uploads/2023/12/iss068e015480.jpg?resize=1024,683 1024w, https://www.nasa.gov/wp-content/uploads/2023/12/iss068e015480.jpg?resize=1536,1024 1536w, https://www.nasa.gov/wp-content/uploads/2023/12/iss068e015480.jpg?resize=2048,1365 2048w, https://www.nasa.gov/wp-content/uploads/2023/12/iss068e015480.jpg?resize=400,267 400w, https://www.nasa.gov/wp-content/uploads/2023/12/iss068e015480.jpg?resize=600,400 600w, https://www.nasa.gov/wp-content/uploads/2023/12/iss068e015480.jpg?resize=900,600 900w, https://www.nasa.gov/wp-content/uploads/2023/12/iss068e015480.jpg?resize=1200,800 1200w, https://www.nasa.gov/wp-content/uploads/2023/12/iss068e015480.jpg?resize=2000,1333 2000w" sizes="(max-width: 640px) 100vw, 640px"></div></div><div class="grid-col padding-left-0"><div class="label margin-bottom-1">3 min read</div><div class="margin-bottom-2"><h3 class="heading-16 line-height-md">NASA: Let’s Ketchup on International Space Station Tomato Research</h3></div><div class="heading-12 display-flex flex-align-center font-weight-bold text-uppercase margin-bottom-1 color-carbon-40"><span class="display-flex flex-align-center margin-right-2"><svg version="1.1" class="square-2 margin-right-1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"><g><g><path d="M8,0C3.5,0-0.1,3.7,0,8.2C0.1,12.5,3.6,16,8,16c4.4,0,8-3.6,8-8C16,3.5,12.4,0,8,0z M8,15.2 C4,15.2,0.8,12,0.8,8C0.8,4,4,0.8,8,0.8c3.9,0,7.2,3.2,7.2,7.1C15.2,11.9,12,15.2,8,15.2z"></path><path d="M5.6,12c0.8-0.8,1.6-1.6,2.4-2.4c0.8,0.8,1.6,1.6,2.4,2.4c0-2.7,0-5.3,0-8C8.8,4,7.2,4,5.6,4 C5.6,6.7,5.6,9.3,5.6,12z"></path></g></g></svg><span>article</span></span><span>1 week ago</span></div></div></a></div></div><div class="global-nav__secondary global-nav__col grid-col-5 desktop:padding-left-105" hidden="">
<div class="global-nav__secondary-wrapper global-nav__wrapper">
<!-- This is just a mobile button -->
<div class="global-nav__mobile-return">
<button class="global-nav__back" aria-expanded="false">
<svg width="6" height="8" viewBox="0 0 6 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M1.94479 4L5.1999 0.767159L4.42746 3.521e-07L0.399903 4L4.42746 8L5.1999 7.23284L1.94479 4Z"></path></svg>
<span>Back</span>
</button>
<hr class="global-nav__separator margin-top-1 margin-bottom-4">
</div>
<div class="global-nav__secondary-submenu" submenu-id="global-nav-missions"><a href="https://www.nasa.gov/nasa-missions/" target="_self" class="button-primary button-primary-md button-light margin-bottom-3"><h3 class="heading-22 padding-right-2 line-height-alt-1 margin-0">Missions</h3><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a><ul class="global-nav__secondary-list usa-nav__submenu-list"><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/missions/" target="_self"><span>Search All NASA Missions</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/a-to-z-of-nasa-missions/" target="_self"><span>A to Z List of Missions</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/events/" target="_self"><span>Upcoming Launches and Landings</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/humans-in-space/spaceships-and-rockets/" target="_self"><span>Spaceships and Rockets</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/communicating-with-missions/" target="_self"><span>Communicating with Missions</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/humans-in-space/artemis/" target="_self"><span>Artemis</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/mission/webb/" target="_self"><span>James Webb Space Telescope</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/mission/hubble/" target="_self"><span>Hubble Space Telescope</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/international-space-station/" target="_self"><span>International Space Station</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li></ul></div><div class="global-nav__secondary-submenu" submenu-id="global-nav-humans-in-space"><a href="https://www.nasa.gov/humans-in-space/" target="_self" class="button-primary button-primary-md button-light margin-bottom-3"><h3 class="heading-22 padding-right-2 line-height-alt-1 margin-0">Humans in Space</h3><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a><ul class="global-nav__secondary-list usa-nav__submenu-list"><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/humans-in-space/why-go-to-space/" target="_self"><span>Why Go to Space</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/humans-in-space/astronauts/" target="_self"><span>Astronauts</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/humans-in-space/commercial-space/" target="_self"><span>Commercial Space</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/humans-in-space/destinations/" target="_self"><span>Destinations</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/humans-in-space/spaceships-and-rockets/" target="_self"><span>Spaceships and Rockets</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/humans-in-space/living-in-space/" target="_self"><span>Living in Space</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li></ul></div><div class="global-nav__secondary-submenu" submenu-id="global-nav-earth-climate"><a href="https://science.nasa.gov/earth/" target="_self" class="button-primary button-primary-md button-light margin-bottom-3"><h3 class="heading-22 padding-right-2 line-height-alt-1 margin-0">Earth & Climate</h3><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a><ul class="global-nav__secondary-list usa-nav__submenu-list"><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/earth/explore" target="_self"><span>Explore Earth Science</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/climate-change" target="_self"><span>Climate Change</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/earth/facts" target="_self"><span>Earth, Our Planet</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/earth/in-action" target="_self"><span>Earth Science in Action</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/earth/multimedia" target="_self"><span>Earth Multimedia</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/earth/data" target="_self"><span>Earth Data</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/earth-science" target="_self"><span>Earth Science Researchers</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li></ul></div><div class="global-nav__secondary-submenu" submenu-id="global-nav-solar-system"><a href="https://science.nasa.gov/solar-system/" target="_self" class="button-primary button-primary-md button-light margin-bottom-3"><h3 class="heading-22 padding-right-2 line-height-alt-1 margin-0">The Solar System</h3><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a><ul class="global-nav__secondary-list usa-nav__submenu-list"><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/sun/" target="_self"><span>The Sun</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/mercury/" target="_self"><span>Mercury</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/venus" target="_self"><span>Venus</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/earth/" target="_self"><span>Earth</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/moon/" target="_self"><span>The Moon</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/mars" target="_self"><span>Mars</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/jupiter" target="_self"><span>Jupiter</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/saturn" target="_self"><span>Saturn</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/uranus/" target="_self"><span>Uranus</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/dwarf-planets/" target="_self"><span>Pluto & Dwarf Planets</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/asteroids-comets-meteors/" target="_self"><span>Asteroids, Comets & Meteors</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/solar-system/kuiper-belt/" target="_self"><span>The Kuiper Belt</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/solar-system/oort-cloud/" target="_self"><span>The Oort Cloud</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/skywatching/" target="_self"><span>Skywatching</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li></ul></div><div class="global-nav__secondary-submenu" submenu-id="global-nav-universe"><a href="https://science.nasa.gov/universe/" target="_self" class="button-primary button-primary-md button-light margin-bottom-3"><h3 class="heading-22 padding-right-2 line-height-alt-1 margin-0">The Universe</h3><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a><ul class="global-nav__secondary-list usa-nav__submenu-list"><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/exoplanets/" target="_self"><span>Exoplanets</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/universe/search-for-life/" target="_self"><span>The Search for Life in the Universe</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/universe/stars/" target="_self"><span>Stars</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/universe/galaxies/" target="_self"><span>Galaxies</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/universe/black-holes/" target="_self"><span>Black Holes</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/universe/the-big-bang/" target="_self"><span>The Big Bang</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/universe/dark-matter-dark-energy/" target="_self"><span>Dark Energy & Dark Matter</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li></ul></div><div class="global-nav__secondary-submenu" submenu-id="global-nav-science"><a href="https://science.nasa.gov/" target="_self" class="button-primary button-primary-md button-light margin-bottom-3"><h3 class="heading-22 padding-right-2 line-height-alt-1 margin-0">Science</h3><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a><ul class="global-nav__secondary-list usa-nav__submenu-list"><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/earth-science/" target="_self"><span>Earth Science</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/planetary-science/" target="_self"><span>Planetary Science</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/astrophysics/" target="_self"><span>Astrophysics & Space Science</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/heliophysics/" target="_self"><span>The Sun & Heliophysics</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/biological-physical" target="_self"><span>Biological & Physical Sciences</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/lunar-science" target="_self"><span>Lunar Science</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/citizen-science/" target="_self"><span>Citizen Science</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/astromaterials/" target="_self"><span>Astromaterials</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/aeronautics-research/" target="_self"><span>Aeronautics Research</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/human-space-travel-research/" target="_self"><span>Human Space Travel Research</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li></ul></div><div class="global-nav__secondary-submenu" submenu-id="global-nav-aeronautics"><a href="https://www.nasa.gov/aeronautics/" target="_self" class="button-primary button-primary-md button-light margin-bottom-3"><h3 class="heading-22 padding-right-2 line-height-alt-1 margin-0">Aeronautics</h3><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a><ul class="global-nav__secondary-list usa-nav__submenu-list"><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/aeronautics/science-in-the-air/" target="_self"><span>Science in the Air</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/aeronautics/aircraft/" target="_self"><span>NASA Aircraft</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/aeronautics/flight-innovation/" target="_self"><span>Flight Innovation</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/aeronautics/supersonic-flight/" target="_self"><span>Supersonic Flight</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/aeronautics/air-traffic-solutions/" target="_self"><span>Air Traffic Solutions</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/aeronautics/green-aero-tech/" target="_self"><span>Green Aviation Tech</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/aeronautics/drones-and-you/" target="_self"><span>Drones & You</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li></ul></div><div class="global-nav__secondary-submenu" submenu-id="global-nav-technology"><a href="https://www.nasa.gov/technology/" target="_self" class="button-primary button-primary-md button-light margin-bottom-3"><h3 class="heading-22 padding-right-2 line-height-alt-1 margin-0">Technology</h3><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a><ul class="global-nav__secondary-list usa-nav__submenu-list"><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/technology-transfer-spinoffs/" target="_self"><span>Technology Transfer & Spinoffs</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/space-travel-technology/" target="_self"><span>Space Travel Technology</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/space-living-technology/" target="_self"><span>Technology Living in Space</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/manufacturing-and-materials/" target="_self"><span>Manufacturing and Materials</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/robotics/" target="_self"><span>Robotics</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/science-instruments/" target="_self"><span>Science Instruments</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/computing/" target="_self"><span>Computing</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li></ul></div><div class="global-nav__secondary-submenu" submenu-id="global-nav-learning-resources"><a href="https://www.nasa.gov/learning-resources/" target="_self" class="button-primary button-primary-md button-light margin-bottom-3"><h3 class="heading-22 padding-right-2 line-height-alt-1 margin-0">Learning Resources</h3><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a><ul class="global-nav__secondary-list usa-nav__submenu-list"><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/learning-resources/for-kids-and-students/" target="_self"><span>For Kids and Students</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/learning-resources/for-educators/" target="_self"><span>For Educators</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/learning-resources/colleges-and-universities/" target="_self"><span>For Colleges and Universities</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/learning-resources/for-professionals/" target="_self"><span>For Professionals</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://science.nasa.gov/for-everyone/" target="_self"><span>Science for Everyone</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/requests-for-exhibits-artifacts-or-speakers/" target="_self"><span>Requests for Exhibits, Artifacts, or Speakers</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/learning-resources/stem-engagement/" target="_self"><span>STEM Engagement at NASA</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li></ul></div><div class="global-nav__secondary-submenu" submenu-id="global-nav-about-nasa"><a href="https://www.nasa.gov/about/" target="_self" class="button-primary button-primary-md button-light margin-bottom-3"><h3 class="heading-22 padding-right-2 line-height-alt-1 margin-0">About NASA</h3><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a><ul class="global-nav__secondary-list usa-nav__submenu-list"><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/nasa-impacts/" target="_self"><span>NASA's Impacts</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/centers-and-facilities/" target="_self"><span>Centers and Facilities</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/directorates/" target="_self"><span>Directorates</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/organization/" target="_self"><span>Organizations</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/people-of-nasa/" target="_self"><span>People of NASA</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/careers/" target="_self"><span>Careers</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/learning-resources/internship-programs/" target="_self"><span>Internships</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/history/" target="_self"><span>Our History</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/doing-business-with-nasa/" target="_self"><span>Doing Business with NASA</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/get-involved/" target="_self"><span>Get Involved</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/contact/" target="_self"><span>Contact</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li></ul></div><div class="global-nav__secondary-submenu" submenu-id="global-nav-espanol"><a href="https://www.nasa.gov/es/" target="_self" class="button-primary button-primary-md button-light margin-bottom-3"><h3 class="heading-22 padding-right-2 line-height-alt-1 margin-0">Español</h3><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a><ul class="global-nav__secondary-list usa-nav__submenu-list"><li class="usa-nav__submenu-item"><a href="https://beta.ciencia.nasa.gov/" target="_self"><span>Ciencia</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="/nasa-en-espanol/aeronautica-en-espanol/" target="_self"><span>Aeronáutica</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://beta.ciencia.nasa.gov/tierra/" target="_self"><span>Ciencias Terrestres</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://beta.ciencia.nasa.gov/sistema-solar" target="_self"><span>Sistema Solar</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://beta.ciencia.nasa.gov/universo" target="_self"><span>Universo</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li></ul></div><div class="global-nav__secondary-submenu" submenu-id="media"><a href="https://www.nasa.gov/news/" target="_self" class="button-primary button-primary-md button-light margin-bottom-3"><h3 class="heading-22 padding-right-2 line-height-alt-1 margin-0">News & Events</h3><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a><ul class="global-nav__secondary-list usa-nav__submenu-list"><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/news/all-news/" target="_self"><span>All NASA News</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://plus.nasa.gov/series/" target="_self"><span>Video Series on NASA+</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/podcasts/" target="_self"><span>Podcasts</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/nasa-blogs/" target="_self"><span>Blogs</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/newsletters/" target="_self"><span>Newsletters</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/social-media/" target="_self"><span>Social Media</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/news/media-contacts/" target="_self"><span>Media Resources</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/events/" target="_self"><span>Upcoming Launches & Landings</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/nasa-virtual-guest-program/" target="_self"><span>Virtual Events</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li></ul></div><div class="global-nav__secondary-submenu" submenu-id="galleries"><a href="https://www.nasa.gov/multimedia/" target="_self" class="button-primary button-primary-md button-light margin-bottom-3"><h3 class="heading-22 padding-right-2 line-height-alt-1 margin-0">Multimedia</h3><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a><ul class="global-nav__secondary-list usa-nav__submenu-list"><li class="usa-nav__submenu-item"><a href="https://plus.nasa.gov/" target="_self"><span>NASA+</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/images/" target="_self"><span>Images</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/nasatv/" target="_self"><span>NASA TV</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/audio-and-ringtones/" target="_self"><span>Sounds and Ringtones</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/interactives/" target="_self"><span>Interactives</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/apps/" target="_self"><span>NASA Apps</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/podcasts/" target="_self"><span>Podcasts</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/ebooks/" target="_self"><span>e-Books</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li><li class="usa-nav__submenu-item"><a href="https://www.nasa.gov/learning-resources/search/?terms=8058%2C8059%2C8061%2C8062%2C8068" target="_self"><span>STEM Multimedia</span><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle class="button-primary-circle" cx="16" cy="16" r="16"></circle><path d="M8 16.956h12.604l-3.844 4.106 1.252 1.338L24 16l-5.988-6.4-1.252 1.338 3.844 4.106H8v1.912z" class="color-spacesuit-white"></path></svg></a></li></ul></div> </div>
</div>
<div class="global-nav__tertiary global-nav__col grid-col-4 usa-col" hidden="">
<div class="global-nav__tertiary-submenu global-nav__wrapper" style="max-width: 440px" submenu-id="global-nav-missions"><h3 class="heading-12 color-carbon-40 text-uppercase margin-bottom-2">Highlights</h3>
<a href="https://www.nasa.gov/missions/station/commercial-resupply/sierra-spaces-dream-chaser-new-station-resupply-spacecraft-for-nasa/" class="hds-content-card hds-content-card-3 grid-row color-spacesuit-white margin-bottom-4" target="_self">
<div class="grid-col">
<div class="width-full bg-carbon-black minh-15">
<img width="640" height="360" src="https://www.nasa.gov/wp-content/uploads/2023/12/01-near-space-v2-01-high-res.jpg?w=640" class="hds-media-background z-100" alt="NASA and Sierra Space are making progress on the first flight of the company’s Dream Chaser spacecraft to the International Space Station. The uncrewed cargo spaceplane is planned to launch its demonstration mission in 2024 to the orbital complex as part of NASA’s commercial resupply services." decoding="async" style="object-position: 0% 0%" srcset="https://www.nasa.gov/wp-content/uploads/2023/12/01-near-space-v2-01-high-res.jpg 5120w, https://www.nasa.gov/wp-content/uploads/2023/12/01-near-space-v2-01-high-res.jpg?resize=300,169 300w, https://www.nasa.gov/wp-content/uploads/2023/12/01-near-space-v2-01-high-res.jpg?resize=768,432 768w, https://www.nasa.gov/wp-content/uploads/2023/12/01-near-space-v2-01-high-res.jpg?resize=1024,576 1024w, https://www.nasa.gov/wp-content/uploads/2023/12/01-near-space-v2-01-high-res.jpg?resize=1536,864 1536w, https://www.nasa.gov/wp-content/uploads/2023/12/01-near-space-v2-01-high-res.jpg?resize=2048,1152 2048w, https://www.nasa.gov/wp-content/uploads/2023/12/01-near-space-v2-01-high-res.jpg?resize=400,225 400w, https://www.nasa.gov/wp-content/uploads/2023/12/01-near-space-v2-01-high-res.jpg?resize=600,338 600w, https://www.nasa.gov/wp-content/uploads/2023/12/01-near-space-v2-01-high-res.jpg?resize=900,506 900w, https://www.nasa.gov/wp-content/uploads/2023/12/01-near-space-v2-01-high-res.jpg?resize=1200,675 1200w, https://www.nasa.gov/wp-content/uploads/2023/12/01-near-space-v2-01-high-res.jpg?resize=2000,1125 2000w" sizes="(max-width: 640px) 100vw, 640px"> </div>
</div>
<div class="grid-col padding-left-105">
<div class="label margin-bottom-1">5 min read</div>
<div class="margin-bottom-2">
<h3 class="heading-16 line-height-md">Sierra Space’s Dream Chaser New Station Resupply Spacecraft for NASA</h3>
</div>
<div class="heading-12 display-flex flex-align-center font-weight-bold text-uppercase margin-bottom-1 color-carbon-40">
<span class="display-flex flex-align-center margin-right-2">
<svg version="1.1" class="square-2 margin-right-1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"><g><g><path d="M8,0C3.5,0-0.1,3.7,0,8.2C0.1,12.5,3.6,16,8,16c4.4,0,8-3.6,8-8C16,3.5,12.4,0,8,0z M8,15.2 C4,15.2,0.8,12,0.8,8C0.8,4,4,0.8,8,0.8c3.9,0,7.2,3.2,7.2,7.1C15.2,11.9,12,15.2,8,15.2z"></path><path d="M5.6,12c0.8-0.8,1.6-1.6,2.4-2.4c0.8,0.8,1.6,1.6,2.4,2.4c0-2.7,0-5.3,0-8C8.8,4,7.2,4,5.6,4 C5.6,6.7,5.6,9.3,5.6,12z"></path></g></g></svg>
<span>article</span>
</span>
<span>1 week ago</span>
</div>
</div>
</a>
<a href="https://www.nasa.gov/general/experience-the-launch-of-nasas-pace-mission/" class="hds-content-card hds-content-card-3 grid-row color-spacesuit-white margin-bottom-4" target="_self">
<div class="grid-col">
<div class="width-full bg-carbon-black minh-15">
<img width="640" height="436" src="https://www.nasa.gov/wp-content/uploads/2023/12/nhq202112090015large.jpg?w=640" class="hds-media-background z-100" alt="" decoding="async" style="object-position: 0% 0%" srcset="https://www.nasa.gov/wp-content/uploads/2023/12/nhq202112090015large.jpg 1920w, https://www.nasa.gov/wp-content/uploads/2023/12/nhq202112090015large.jpg?resize=300,204 300w, https://www.nasa.gov/wp-content/uploads/2023/12/nhq202112090015large.jpg?resize=768,523 768w, https://www.nasa.gov/wp-content/uploads/2023/12/nhq202112090015large.jpg?resize=1024,697 1024w, https://www.nasa.gov/wp-content/uploads/2023/12/nhq202112090015large.jpg?resize=1536,1046 1536w, https://www.nasa.gov/wp-content/uploads/2023/12/nhq202112090015large.jpg?resize=400,272 400w, https://www.nasa.gov/wp-content/uploads/2023/12/nhq202112090015large.jpg?resize=600,408 600w, https://www.nasa.gov/wp-content/uploads/2023/12/nhq202112090015large.jpg?resize=900,613 900w, https://www.nasa.gov/wp-content/uploads/2023/12/nhq202112090015large.jpg?resize=1200,817 1200w" sizes="(max-width: 640px) 100vw, 640px"> </div>
</div>
<div class="grid-col padding-left-105">
<div class="label margin-bottom-1">5 min read</div>
<div class="margin-bottom-2">
<h3 class="heading-16 line-height-md">Experience the Launch of NASA’s PACE Mission</h3>
</div>
<div class="heading-12 display-flex flex-align-center font-weight-bold text-uppercase margin-bottom-1 color-carbon-40">
<span class="display-flex flex-align-center margin-right-2">
<svg version="1.1" class="square-2 margin-right-1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"><g><g><path d="M8,0C3.5,0-0.1,3.7,0,8.2C0.1,12.5,3.6,16,8,16c4.4,0,8-3.6,8-8C16,3.5,12.4,0,8,0z M8,15.2 C4,15.2,0.8,12,0.8,8C0.8,4,4,0.8,8,0.8c3.9,0,7.2,3.2,7.2,7.1C15.2,11.9,12,15.2,8,15.2z"></path><path d="M5.6,12c0.8-0.8,1.6-1.6,2.4-2.4c0.8,0.8,1.6,1.6,2.4,2.4c0-2.7,0-5.3,0-8C8.8,4,7.2,4,5.6,4 C5.6,6.7,5.6,9.3,5.6,12z"></path></g></g></svg>
<span>article</span>
</span>
<span>1 week ago</span>
</div>
</div>
</a>
<a href="https://www.nasa.gov/missions/cassini/nasa-study-finds-life-sparking-energy-source-and-molecule-at-enceladus/" class="hds-content-card hds-content-card-3 grid-row color-spacesuit-white margin-bottom-4" target="_self">
<div class="grid-col">
<div class="width-full bg-carbon-black minh-15">
<img width="640" height="373" src="https://www.nasa.gov/wp-content/uploads/2023/12/1-pia17184.jpg?w=640" class="hds-media-background z-100" alt="Water from the subsurface ocean of Saturn’s moon Enceladus sprays from huge fissures out into space. NASA’s Cassini spacecraft, which captured this image in 2010, sampled icy particles and scientists are continuing to make new discoveries from the data." decoding="async" style="object-position: 0% 0%" srcset="https://www.nasa.gov/wp-content/uploads/2023/12/1-pia17184.jpg 1016w, https://www.nasa.gov/wp-content/uploads/2023/12/1-pia17184.jpg?resize=300,175 300w, https://www.nasa.gov/wp-content/uploads/2023/12/1-pia17184.jpg?resize=768,447 768w, https://www.nasa.gov/wp-content/uploads/2023/12/1-pia17184.jpg?resize=400,233 400w, https://www.nasa.gov/wp-content/uploads/2023/12/1-pia17184.jpg?resize=600,350 600w, https://www.nasa.gov/wp-content/uploads/2023/12/1-pia17184.jpg?resize=900,524 900w" sizes="(max-width: 640px) 100vw, 640px"> </div>
</div>
<div class="grid-col padding-left-105">
<div class="label margin-bottom-1">5 min read</div>
<div class="margin-bottom-2">
<h3 class="heading-16 line-height-md">NASA Study Finds Life-Sparking Energy Source and Molecule at Enceladus</h3>
</div>
<div class="heading-12 display-flex flex-align-center font-weight-bold text-uppercase margin-bottom-1 color-carbon-40">
<span class="display-flex flex-align-center margin-right-2">
<svg version="1.1" class="square-2 margin-right-1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"><g><g><path d="M8,0C3.5,0-0.1,3.7,0,8.2C0.1,12.5,3.6,16,8,16c4.4,0,8-3.6,8-8C16,3.5,12.4,0,8,0z M8,15.2 C4,15.2,0.8,12,0.8,8C0.8,4,4,0.8,8,0.8c3.9,0,7.2,3.2,7.2,7.1C15.2,11.9,12,15.2,8,15.2z"></path><path d="M5.6,12c0.8-0.8,1.6-1.6,2.4-2.4c0.8,0.8,1.6,1.6,2.4,2.4c0-2.7,0-5.3,0-8C8.8,4,7.2,4,5.6,4 C5.6,6.7,5.6,9.3,5.6,12z"></path></g></g></svg>
<span>article</span>
</span>
<span>1 week ago</span>
</div>
</div>
</a>
</div><div class="global-nav__tertiary-submenu global-nav__wrapper" style="max-width: 440px" submenu-id="global-nav-humans-in-space"><h3 class="heading-12 color-carbon-40 text-uppercase margin-bottom-2">Highlights</h3>
<a href="https://www.nasa.gov/history/apollo-8-christmas-dinner/" class="hds-content-card hds-content-card-3 grid-row color-spacesuit-white margin-bottom-4" target="_self">
<div class="grid-col">
<div class="width-full bg-carbon-black minh-15">
<img width="640" height="443" src="https://www.nasa.gov/wp-content/uploads/2023/12/apollo-8-food.jpg?w=640" class="hds-media-background z-100" alt="4 packets of food and a spoon wrapped in plastic that were served to the Apollo 8 crew for Christmas" decoding="async" style="object-position: 0% 0%" srcset="https://www.nasa.gov/wp-content/uploads/2023/12/apollo-8-food.jpg 3700w, https://www.nasa.gov/wp-content/uploads/2023/12/apollo-8-food.jpg?resize=300,207 300w, https://www.nasa.gov/wp-content/uploads/2023/12/apollo-8-food.jpg?resize=768,531 768w, https://www.nasa.gov/wp-content/uploads/2023/12/apollo-8-food.jpg?resize=1024,708 1024w, https://www.nasa.gov/wp-content/uploads/2023/12/apollo-8-food.jpg?resize=1536,1062 1536w, https://www.nasa.gov/wp-content/uploads/2023/12/apollo-8-food.jpg?resize=2048,1416 2048w, https://www.nasa.gov/wp-content/uploads/2023/12/apollo-8-food.jpg?resize=400,277 400w, https://www.nasa.gov/wp-content/uploads/2023/12/apollo-8-food.jpg?resize=600,415 600w, https://www.nasa.gov/wp-content/uploads/2023/12/apollo-8-food.jpg?resize=900,622 900w, https://www.nasa.gov/wp-content/uploads/2023/12/apollo-8-food.jpg?resize=1200,830 1200w, https://www.nasa.gov/wp-content/uploads/2023/12/apollo-8-food.jpg?resize=2000,1383 2000w" sizes="(max-width: 640px) 100vw, 640px"> </div>
</div>
<div class="grid-col padding-left-105">
<div class="label margin-bottom-1">6 min read</div>
<div class="margin-bottom-2">
<h3 class="heading-16 line-height-md">An Apollo 8 Christmas Dinner Surprise: Turkey and Gravy Make Space History</h3>
</div>
<div class="heading-12 display-flex flex-align-center font-weight-bold text-uppercase margin-bottom-1 color-carbon-40">
<span class="display-flex flex-align-center margin-right-2">
<svg version="1.1" class="square-2 margin-right-1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"><g><g><path d="M8,0C3.5,0-0.1,3.7,0,8.2C0.1,12.5,3.6,16,8,16c4.4,0,8-3.6,8-8C16,3.5,12.4,0,8,0z M8,15.2 C4,15.2,0.8,12,0.8,8C0.8,4,4,0.8,8,0.8c3.9,0,7.2,3.2,7.2,7.1C15.2,11.9,12,15.2,8,15.2z"></path><path d="M5.6,12c0.8-0.8,1.6-1.6,2.4-2.4c0.8,0.8,1.6,1.6,2.4,2.4c0-2.7,0-5.3,0-8C8.8,4,7.2,4,5.6,4 C5.6,6.7,5.6,9.3,5.6,12z"></path></g></g></svg>
<span>article</span>
</span>
<span>2 days ago</span>
</div>
</div>
</a>
<a href="https://www.nasa.gov/centers-and-facilities/kennedy/kennedy-space-center-looks-ahead-busy-2024/" class="hds-content-card hds-content-card-3 grid-row color-spacesuit-white margin-bottom-4" target="_self">
<div class="grid-col">
<div class="width-full bg-carbon-black minh-15">
<img width="640" height="427" src="https://www.nasa.gov/wp-content/uploads/2023/12/ksc-20230816-ph-jbs01-0002.jpg?w=640" class="hds-media-background z-100" alt="NASA's Space Launch System rocket Mobile Launcher moves to the launch pad." decoding="async" style="object-position: 0% 0%" srcset="https://www.nasa.gov/wp-content/uploads/2023/12/ksc-20230816-ph-jbs01-0002.jpg 6720w, https://www.nasa.gov/wp-content/uploads/2023/12/ksc-20230816-ph-jbs01-0002.jpg?resize=300,200 300w, https://www.nasa.gov/wp-content/uploads/2023/12/ksc-20230816-ph-jbs01-0002.jpg?resize=768,512 768w, https://www.nasa.gov/wp-content/uploads/2023/12/ksc-20230816-ph-jbs01-0002.jpg?resize=1024,683 1024w, https://www.nasa.gov/wp-content/uploads/2023/12/ksc-20230816-ph-jbs01-0002.jpg?resize=1536,1024 1536w, https://www.nasa.gov/wp-content/uploads/2023/12/ksc-20230816-ph-jbs01-0002.jpg?resize=2048,1365 2048w, https://www.nasa.gov/wp-content/uploads/2023/12/ksc-20230816-ph-jbs01-0002.jpg?resize=400,267 400w, https://www.nasa.gov/wp-content/uploads/2023/12/ksc-20230816-ph-jbs01-0002.jpg?resize=600,400 600w, https://www.nasa.gov/wp-content/uploads/2023/12/ksc-20230816-ph-jbs01-0002.jpg?resize=900,600 900w, https://www.nasa.gov/wp-content/uploads/2023/12/ksc-20230816-ph-jbs01-0002.jpg?resize=1200,800 1200w, https://www.nasa.gov/wp-content/uploads/2023/12/ksc-20230816-ph-jbs01-0002.jpg?resize=2000,1333 2000w" sizes="(max-width: 640px) 100vw, 640px"> </div>
</div>
<div class="grid-col padding-left-105">
<div class="label margin-bottom-1">5 min read</div>
<div class="margin-bottom-2">
<h3 class="heading-16 line-height-md">Kennedy Space Center Looks Ahead to a Busy Year in 2024</h3>
</div>
<div class="heading-12 display-flex flex-align-center font-weight-bold text-uppercase margin-bottom-1 color-carbon-40">
<span class="display-flex flex-align-center margin-right-2">
<svg version="1.1" class="square-2 margin-right-1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"><g><g><path d="M8,0C3.5,0-0.1,3.7,0,8.2C0.1,12.5,3.6,16,8,16c4.4,0,8-3.6,8-8C16,3.5,12.4,0,8,0z M8,15.2 C4,15.2,0.8,12,0.8,8C0.8,4,4,0.8,8,0.8c3.9,0,7.2,3.2,7.2,7.1C15.2,11.9,12,15.2,8,15.2z"></path><path d="M5.6,12c0.8-0.8,1.6-1.6,2.4-2.4c0.8,0.8,1.6,1.6,2.4,2.4c0-2.7,0-5.3,0-8C8.8,4,7.2,4,5.6,4 C5.6,6.7,5.6,9.3,5.6,12z"></path></g></g></svg>
<span>article</span>
</span>
<span>3 days ago</span>
</div>
</div>
</a>
<a href="https://www.nasa.gov/general/nasa-leadership-participates-in-vice-president-chaired-national-space-council-meeting/" class="hds-content-card hds-content-card-3 grid-row color-spacesuit-white margin-bottom-4" target="_self">
<div class="grid-col">
<div class="width-full bg-carbon-black minh-15">
<img width="640" height="363" src="https://www.nasa.gov/wp-content/uploads/2023/12/nat-sp-council-2023.jpg?w=640" class="hds-media-background z-100" alt="" decoding="async" style="object-position: 0% 0%" srcset="https://www.nasa.gov/wp-content/uploads/2023/12/nat-sp-council-2023.jpg 2048w, https://www.nasa.gov/wp-content/uploads/2023/12/nat-sp-council-2023.jpg?resize=300,170 300w, https://www.nasa.gov/wp-content/uploads/2023/12/nat-sp-council-2023.jpg?resize=768,435 768w, https://www.nasa.gov/wp-content/uploads/2023/12/nat-sp-council-2023.jpg?resize=1024,580 1024w, https://www.nasa.gov/wp-content/uploads/2023/12/nat-sp-council-2023.jpg?resize=1536,870 1536w, https://www.nasa.gov/wp-content/uploads/2023/12/nat-sp-council-2023.jpg?resize=400,227 400w, https://www.nasa.gov/wp-content/uploads/2023/12/nat-sp-council-2023.jpg?resize=600,340 600w, https://www.nasa.gov/wp-content/uploads/2023/12/nat-sp-council-2023.jpg?resize=900,510 900w, https://www.nasa.gov/wp-content/uploads/2023/12/nat-sp-council-2023.jpg?resize=1200,680 1200w, https://www.nasa.gov/wp-content/uploads/2023/12/nat-sp-council-2023.jpg?resize=2000,1133 2000w" sizes="(max-width: 640px) 100vw, 640px"> </div>
</div>
<div class="grid-col padding-left-105">
<div class="label margin-bottom-1">4 min read</div>
<div class="margin-bottom-2">
<h3 class="heading-16 line-height-md">NASA Leadership Participates in Vice President-Chaired National Space Council Meeting </h3>
</div>
<div class="heading-12 display-flex flex-align-center font-weight-bold text-uppercase margin-bottom-1 color-carbon-40">
<span class="display-flex flex-align-center margin-right-2">
<svg version="1.1" class="square-2 margin-right-1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"><g><g><path d="M8,0C3.5,0-0.1,3.7,0,8.2C0.1,12.5,3.6,16,8,16c4.4,0,8-3.6,8-8C16,3.5,12.4,0,8,0z M8,15.2 C4,15.2,0.8,12,0.8,8C0.8,4,4,0.8,8,0.8c3.9,0,7.2,3.2,7.2,7.1C15.2,11.9,12,15.2,8,15.2z"></path><path d="M5.6,12c0.8-0.8,1.6-1.6,2.4-2.4c0.8,0.8,1.6,1.6,2.4,2.4c0-2.7,0-5.3,0-8C8.8,4,7.2,4,5.6,4 C5.6,6.7,5.6,9.3,5.6,12z"></path></g></g></svg>
<span>article</span>
</span>
<span>4 days ago</span>
</div>
</div>
</a>
</div><div class="global-nav__tertiary-submenu global-nav__wrapper" style="max-width: 440px" submenu-id="global-nav-earth-climate"><h3 class="heading-12 color-carbon-40 text-uppercase margin-bottom-2">Highlights</h3>
<a href="https://www.nasa.gov/armstrong/speakers-bureau/" class="hds-content-card hds-content-card-3 grid-row color-spacesuit-white margin-bottom-4" target="_self">
<div class="grid-col">
<div class="width-full bg-carbon-black minh-15">
<img width="640" height="427" src="https://www.nasa.gov/wp-content/uploads/2023/02/ed15-0113-03.jpg?w=640" class="hds-media-background z-100" alt="Speaker stands at podium in front of several people in the audience. A screen, showing a presentation slide, is on the wall behind the speaker." decoding="async" style="object-position: 0% 0%" srcset="https://www.nasa.gov/wp-content/uploads/2023/02/ed15-0113-03.jpg 1575w, https://www.nasa.gov/wp-content/uploads/2023/02/ed15-0113-03.jpg?resize=300,200 300w, https://www.nasa.gov/wp-content/uploads/2023/02/ed15-0113-03.jpg?resize=768,512 768w, https://www.nasa.gov/wp-content/uploads/2023/02/ed15-0113-03.jpg?resize=1024,683 1024w, https://www.nasa.gov/wp-content/uploads/2023/02/ed15-0113-03.jpg?resize=1536,1024 1536w, https://www.nasa.gov/wp-content/uploads/2023/02/ed15-0113-03.jpg?resize=400,267 400w, https://www.nasa.gov/wp-content/uploads/2023/02/ed15-0113-03.jpg?resize=600,400 600w, https://www.nasa.gov/wp-content/uploads/2023/02/ed15-0113-03.jpg?resize=900,600 900w, https://www.nasa.gov/wp-content/uploads/2023/02/ed15-0113-03.jpg?resize=1200,800 1200w" sizes="(max-width: 640px) 100vw, 640px"> </div>
</div>
<div class="grid-col padding-left-105">
<div class="label margin-bottom-1">1 min read</div>
<div class="margin-bottom-2">
<h3 class="heading-16 line-height-md">Armstrong Speaker’s Bureau</h3>
</div>
<div class="heading-12 display-flex flex-align-center font-weight-bold text-uppercase margin-bottom-1 color-carbon-40">
<span class="display-flex flex-align-center margin-right-2">
<svg version="1.1" class="square-2 margin-right-1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"><g><g><path d="M8,0C3.5,0-0.1,3.7,0,8.2C0.1,12.5,3.6,16,8,16c4.4,0,8-3.6,8-8C16,3.5,12.4,0,8,0z M8,15.2 C4,15.2,0.8,12,0.8,8C0.8,4,4,0.8,8,0.8c3.9,0,7.2,3.2,7.2,7.1C15.2,11.9,12,15.2,8,15.2z"></path><path d="M5.6,12c0.8-0.8,1.6-1.6,2.4-2.4c0.8,0.8,1.6,1.6,2.4,2.4c0-2.7,0-5.3,0-8C8.8,4,7.2,4,5.6,4 C5.6,6.7,5.6,9.3,5.6,12z"></path></g></g></svg>
<span>article</span>
</span>
<span>2 days ago</span>
</div>
</div>
</a>
<a href="https://www.nasa.gov/technology/space-comms/deep-space-network/nasas-deep-space-network-turns-60-and-prepares-for-the-future/" class="hds-content-card hds-content-card-3 grid-row color-spacesuit-white margin-bottom-4" target="_self">
<div class="grid-col">
<div class="width-full bg-carbon-black minh-15">
<img width="640" height="360" src="https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg?w=640" class="hds-media-background z-100" alt="The radio antennas of the NASA’s Canberra Deep Space Communications Complex are located near the Australian capital. It’s one of three Deep Space Network complexes around the world that keep the agency in contact with over 40 space missions. The DSN marks its 60th anniversary in December 2023." decoding="async" style="object-position: 0% 0%" srcset="https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg 2000w, https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg?resize=300,169 300w, https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg?resize=768,432 768w, https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg?resize=1024,576 1024w, https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg?resize=1536,864 1536w, https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg?resize=400,225 400w, https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg?resize=600,338 600w, https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg?resize=900,506 900w, https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg?resize=1200,675 1200w" sizes="(max-width: 640px) 100vw, 640px"> </div>
</div>
<div class="grid-col padding-left-105">
<div class="label margin-bottom-1">5 min read</div>
<div class="margin-bottom-2">
<h3 class="heading-16 line-height-md">NASA’s Deep Space Network Turns 60 and Prepares for the Future</h3>
</div>
<div class="heading-12 display-flex flex-align-center font-weight-bold text-uppercase margin-bottom-1 color-carbon-40">
<span class="display-flex flex-align-center margin-right-2">
<svg version="1.1" class="square-2 margin-right-1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"><g><g><path d="M8,0C3.5,0-0.1,3.7,0,8.2C0.1,12.5,3.6,16,8,16c4.4,0,8-3.6,8-8C16,3.5,12.4,0,8,0z M8,15.2 C4,15.2,0.8,12,0.8,8C0.8,4,4,0.8,8,0.8c3.9,0,7.2,3.2,7.2,7.1C15.2,11.9,12,15.2,8,15.2z"></path><path d="M5.6,12c0.8-0.8,1.6-1.6,2.4-2.4c0.8,0.8,1.6,1.6,2.4,2.4c0-2.7,0-5.3,0-8C8.8,4,7.2,4,5.6,4 C5.6,6.7,5.6,9.3,5.6,12z"></path></g></g></svg>
<span>article</span>
</span>
<span>2 days ago</span>
</div>
</div>
</a>
<a href="https://www.nasa.gov/general/nasa-issues-new-space-security-best-practices-guide/" class="hds-content-card hds-content-card-3 grid-row color-spacesuit-white margin-bottom-4" target="_self">
<div class="grid-col">
<div class="width-full bg-carbon-black minh-15">
<img width="501" height="501" src="https://www.nasa.gov/wp-content/uploads/2023/08/cropped-cropped-nasa_meatball_for_carousel_120820.jpg?w=501" class="hds-media-background z-100" alt="NASA circular logo" decoding="async" style="object-position: 0% 0%" srcset="https://www.nasa.gov/wp-content/uploads/2023/08/cropped-cropped-nasa_meatball_for_carousel_120820.jpg 501w, https://www.nasa.gov/wp-content/uploads/2023/08/cropped-cropped-nasa_meatball_for_carousel_120820.jpg?resize=150,150 150w, https://www.nasa.gov/wp-content/uploads/2023/08/cropped-cropped-nasa_meatball_for_carousel_120820.jpg?resize=300,300 300w, https://www.nasa.gov/wp-content/uploads/2023/08/cropped-cropped-nasa_meatball_for_carousel_120820.jpg?resize=50,50 50w, https://www.nasa.gov/wp-content/uploads/2023/08/cropped-cropped-nasa_meatball_for_carousel_120820.jpg?resize=100,100 100w, https://www.nasa.gov/wp-content/uploads/2023/08/cropped-cropped-nasa_meatball_for_carousel_120820.jpg?resize=200,200 200w, https://www.nasa.gov/wp-content/uploads/2023/08/cropped-cropped-nasa_meatball_for_carousel_120820.jpg?resize=400,400 400w" sizes="(max-width: 501px) 100vw, 501px"> </div>
</div>
<div class="grid-col padding-left-105">
<div class="label margin-bottom-1">2 min read</div>
<div class="margin-bottom-2">
<h3 class="heading-16 line-height-md">NASA Issues New Space Security Best Practices Guide </h3>
</div>
<div class="heading-12 display-flex flex-align-center font-weight-bold text-uppercase margin-bottom-1 color-carbon-40">
<span class="display-flex flex-align-center margin-right-2">
<svg version="1.1" class="square-2 margin-right-1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"><g><g><path d="M8,0C3.5,0-0.1,3.7,0,8.2C0.1,12.5,3.6,16,8,16c4.4,0,8-3.6,8-8C16,3.5,12.4,0,8,0z M8,15.2 C4,15.2,0.8,12,0.8,8C0.8,4,4,0.8,8,0.8c3.9,0,7.2,3.2,7.2,7.1C15.2,11.9,12,15.2,8,15.2z"></path><path d="M5.6,12c0.8-0.8,1.6-1.6,2.4-2.4c0.8,0.8,1.6,1.6,2.4,2.4c0-2.7,0-5.3,0-8C8.8,4,7.2,4,5.6,4 C5.6,6.7,5.6,9.3,5.6,12z"></path></g></g></svg>
<span>article</span>
</span>
<span>2 days ago</span>
</div>
</div>
</a>
</div><div class="global-nav__tertiary-submenu global-nav__wrapper" style="max-width: 440px" submenu-id="global-nav-solar-system"><h3 class="heading-12 color-carbon-40 text-uppercase margin-bottom-2">Highlights</h3>
<a href="https://www.nasa.gov/missions/osiris-apex/nasa-asteroid-sampling-mission-renamed-osiris-apex-for-new-journey/" class="hds-content-card hds-content-card-3 grid-row color-spacesuit-white margin-bottom-4" target="_self">
<div class="grid-col">
<div class="width-full bg-carbon-black minh-15">
<img width="640" height="360" src="https://www.nasa.gov/wp-content/uploads/2018/10/osiris-rex-firing-main-engine.png?w=640" class="hds-media-background z-100" alt="OSIRIS-REx firing its main engine." decoding="async" style="object-position: 0% 0%" srcset="https://www.nasa.gov/wp-content/uploads/2018/10/osiris-rex-firing-main-engine.png 2664w, https://www.nasa.gov/wp-content/uploads/2018/10/osiris-rex-firing-main-engine.png?resize=300,169 300w, https://www.nasa.gov/wp-content/uploads/2018/10/osiris-rex-firing-main-engine.png?resize=768,432 768w, https://www.nasa.gov/wp-content/uploads/2018/10/osiris-rex-firing-main-engine.png?resize=1024,577 1024w, https://www.nasa.gov/wp-content/uploads/2018/10/osiris-rex-firing-main-engine.png?resize=1536,865 1536w, https://www.nasa.gov/wp-content/uploads/2018/10/osiris-rex-firing-main-engine.png?resize=2048,1153 2048w, https://www.nasa.gov/wp-content/uploads/2018/10/osiris-rex-firing-main-engine.png?resize=400,225 400w, https://www.nasa.gov/wp-content/uploads/2018/10/osiris-rex-firing-main-engine.png?resize=600,338 600w, https://www.nasa.gov/wp-content/uploads/2018/10/osiris-rex-firing-main-engine.png?resize=900,507 900w, https://www.nasa.gov/wp-content/uploads/2018/10/osiris-rex-firing-main-engine.png?resize=1200,676 1200w, https://www.nasa.gov/wp-content/uploads/2018/10/osiris-rex-firing-main-engine.png?resize=2000,1126 2000w" sizes="(max-width: 640px) 100vw, 640px"> </div>
</div>
<div class="grid-col padding-left-105">
<div class="label margin-bottom-1">5 min read</div>
<div class="margin-bottom-2">
<h3 class="heading-16 line-height-md">NASA Asteroid Sampling Mission Renamed OSIRIS-APEX for New Journey</h3>
</div>
<div class="heading-12 display-flex flex-align-center font-weight-bold text-uppercase margin-bottom-1 color-carbon-40">
<span class="display-flex flex-align-center margin-right-2">
<svg version="1.1" class="square-2 margin-right-1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"><g><g><path d="M8,0C3.5,0-0.1,3.7,0,8.2C0.1,12.5,3.6,16,8,16c4.4,0,8-3.6,8-8C16,3.5,12.4,0,8,0z M8,15.2 C4,15.2,0.8,12,0.8,8C0.8,4,4,0.8,8,0.8c3.9,0,7.2,3.2,7.2,7.1C15.2,11.9,12,15.2,8,15.2z"></path><path d="M5.6,12c0.8-0.8,1.6-1.6,2.4-2.4c0.8,0.8,1.6,1.6,2.4,2.4c0-2.7,0-5.3,0-8C8.8,4,7.2,4,5.6,4 C5.6,6.7,5.6,9.3,5.6,12z"></path></g></g></svg>
<span>article</span>
</span>
<span>2 days ago</span>
</div>
</div>
</a>
<a href="https://www.nasa.gov/missions/webb/nasas-webb-rings-in-holidays-with-ringed-planet-uranus/" class="hds-content-card hds-content-card-3 grid-row color-spacesuit-white margin-bottom-4" target="_self">
<div class="grid-col">
<div class="width-full bg-carbon-black minh-15">
<img width="566" height="409" src="https://www.nasa.gov/wp-content/uploads/2023/12/webb-stsci-01hhfp5g5bxsc5m7dx6dg9yxmb.png?w=566" class="hds-media-background z-100" alt="The planet Uranus on a black background. The planet appears blue with a large, white patch taking up the right half. The patch is whitest at the center, then fades into blue at it expands from right to left. A thin outline of Uranus is also white. Around the planet is a system of nested rings. The outermost ring is the brightest while the innermost ring is the faintest. Unlike Saturn’s horizontal rings, the rings of Uranus are vertical and so they appear to surround the planet in an oval shape. There are 9 blueish white dots scattered around the rings." decoding="async" style="object-position: 0% 0%" srcset="https://www.nasa.gov/wp-content/uploads/2023/12/webb-stsci-01hhfp5g5bxsc5m7dx6dg9yxmb.png 566w, https://www.nasa.gov/wp-content/uploads/2023/12/webb-stsci-01hhfp5g5bxsc5m7dx6dg9yxmb.png?resize=300,217 300w, https://www.nasa.gov/wp-content/uploads/2023/12/webb-stsci-01hhfp5g5bxsc5m7dx6dg9yxmb.png?resize=400,289 400w" sizes="(max-width: 566px) 100vw, 566px"> </div>
</div>
<div class="grid-col padding-left-105">
<div class="label margin-bottom-1">4 min read</div>
<div class="margin-bottom-2">
<h3 class="heading-16 line-height-md">NASA’s Webb Rings in Holidays With Ringed Planet Uranus</h3>
</div>
<div class="heading-12 display-flex flex-align-center font-weight-bold text-uppercase margin-bottom-1 color-carbon-40">
<span class="display-flex flex-align-center margin-right-2">
<svg version="1.1" class="square-2 margin-right-1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"><g><g><path d="M8,0C3.5,0-0.1,3.7,0,8.2C0.1,12.5,3.6,16,8,16c4.4,0,8-3.6,8-8C16,3.5,12.4,0,8,0z M8,15.2 C4,15.2,0.8,12,0.8,8C0.8,4,4,0.8,8,0.8c3.9,0,7.2,3.2,7.2,7.1C15.2,11.9,12,15.2,8,15.2z"></path><path d="M5.6,12c0.8-0.8,1.6-1.6,2.4-2.4c0.8,0.8,1.6,1.6,2.4,2.4c0-2.7,0-5.3,0-8C8.8,4,7.2,4,5.6,4 C5.6,6.7,5.6,9.3,5.6,12z"></path></g></g></svg>
<span>article</span>
</span>
<span>6 days ago</span>
</div>
</div>
</a>
<a href="https://www.nasa.gov/missions/cassini/nasa-study-finds-life-sparking-energy-source-and-molecule-at-enceladus/" class="hds-content-card hds-content-card-3 grid-row color-spacesuit-white margin-bottom-4" target="_self">
<div class="grid-col">
<div class="width-full bg-carbon-black minh-15">
<img width="640" height="373" src="https://www.nasa.gov/wp-content/uploads/2023/12/1-pia17184.jpg?w=640" class="hds-media-background z-100" alt="Water from the subsurface ocean of Saturn’s moon Enceladus sprays from huge fissures out into space. NASA’s Cassini spacecraft, which captured this image in 2010, sampled icy particles and scientists are continuing to make new discoveries from the data." decoding="async" style="object-position: 0% 0%" srcset="https://www.nasa.gov/wp-content/uploads/2023/12/1-pia17184.jpg 1016w, https://www.nasa.gov/wp-content/uploads/2023/12/1-pia17184.jpg?resize=300,175 300w, https://www.nasa.gov/wp-content/uploads/2023/12/1-pia17184.jpg?resize=768,447 768w, https://www.nasa.gov/wp-content/uploads/2023/12/1-pia17184.jpg?resize=400,233 400w, https://www.nasa.gov/wp-content/uploads/2023/12/1-pia17184.jpg?resize=600,350 600w, https://www.nasa.gov/wp-content/uploads/2023/12/1-pia17184.jpg?resize=900,524 900w" sizes="(max-width: 640px) 100vw, 640px"> </div>
</div>
<div class="grid-col padding-left-105">
<div class="label margin-bottom-1">5 min read</div>
<div class="margin-bottom-2">
<h3 class="heading-16 line-height-md">NASA Study Finds Life-Sparking Energy Source and Molecule at Enceladus</h3>
</div>
<div class="heading-12 display-flex flex-align-center font-weight-bold text-uppercase margin-bottom-1 color-carbon-40">
<span class="display-flex flex-align-center margin-right-2">
<svg version="1.1" class="square-2 margin-right-1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"><g><g><path d="M8,0C3.5,0-0.1,3.7,0,8.2C0.1,12.5,3.6,16,8,16c4.4,0,8-3.6,8-8C16,3.5,12.4,0,8,0z M8,15.2 C4,15.2,0.8,12,0.8,8C0.8,4,4,0.8,8,0.8c3.9,0,7.2,3.2,7.2,7.1C15.2,11.9,12,15.2,8,15.2z"></path><path d="M5.6,12c0.8-0.8,1.6-1.6,2.4-2.4c0.8,0.8,1.6,1.6,2.4,2.4c0-2.7,0-5.3,0-8C8.8,4,7.2,4,5.6,4 C5.6,6.7,5.6,9.3,5.6,12z"></path></g></g></svg>
<span>article</span>
</span>
<span>1 week ago</span>
</div>
</div>
</a>
</div><div class="global-nav__tertiary-submenu global-nav__wrapper" style="max-width: 440px" submenu-id="global-nav-universe"><h3 class="heading-12 color-carbon-40 text-uppercase margin-bottom-2">Featured</h3>
<a href="https://www.nasa.gov/armstrong/speakers-bureau/" class="hds-content-card hds-content-card-3 grid-row color-spacesuit-white margin-bottom-4" target="_self">
<div class="grid-col">
<div class="width-full bg-carbon-black minh-15">
<img width="640" height="427" src="https://www.nasa.gov/wp-content/uploads/2023/02/ed15-0113-03.jpg?w=640" class="hds-media-background z-100" alt="Speaker stands at podium in front of several people in the audience. A screen, showing a presentation slide, is on the wall behind the speaker." decoding="async" style="object-position: 0% 0%" srcset="https://www.nasa.gov/wp-content/uploads/2023/02/ed15-0113-03.jpg 1575w, https://www.nasa.gov/wp-content/uploads/2023/02/ed15-0113-03.jpg?resize=300,200 300w, https://www.nasa.gov/wp-content/uploads/2023/02/ed15-0113-03.jpg?resize=768,512 768w, https://www.nasa.gov/wp-content/uploads/2023/02/ed15-0113-03.jpg?resize=1024,683 1024w, https://www.nasa.gov/wp-content/uploads/2023/02/ed15-0113-03.jpg?resize=1536,1024 1536w, https://www.nasa.gov/wp-content/uploads/2023/02/ed15-0113-03.jpg?resize=400,267 400w, https://www.nasa.gov/wp-content/uploads/2023/02/ed15-0113-03.jpg?resize=600,400 600w, https://www.nasa.gov/wp-content/uploads/2023/02/ed15-0113-03.jpg?resize=900,600 900w, https://www.nasa.gov/wp-content/uploads/2023/02/ed15-0113-03.jpg?resize=1200,800 1200w" sizes="(max-width: 640px) 100vw, 640px"> </div>
</div>
<div class="grid-col padding-left-105">
<div class="label margin-bottom-1">1 min read</div>
<div class="margin-bottom-2">
<h3 class="heading-16 line-height-md">Armstrong Speaker’s Bureau</h3>
</div>
<div class="heading-12 display-flex flex-align-center font-weight-bold text-uppercase margin-bottom-1 color-carbon-40">
<span class="display-flex flex-align-center margin-right-2">
<svg version="1.1" class="square-2 margin-right-1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"><g><g><path d="M8,0C3.5,0-0.1,3.7,0,8.2C0.1,12.5,3.6,16,8,16c4.4,0,8-3.6,8-8C16,3.5,12.4,0,8,0z M8,15.2 C4,15.2,0.8,12,0.8,8C0.8,4,4,0.8,8,0.8c3.9,0,7.2,3.2,7.2,7.1C15.2,11.9,12,15.2,8,15.2z"></path><path d="M5.6,12c0.8-0.8,1.6-1.6,2.4-2.4c0.8,0.8,1.6,1.6,2.4,2.4c0-2.7,0-5.3,0-8C8.8,4,7.2,4,5.6,4 C5.6,6.7,5.6,9.3,5.6,12z"></path></g></g></svg>
<span>article</span>
</span>
<span>2 days ago</span>
</div>
</div>
</a>
<a href="https://www.nasa.gov/technology/space-comms/deep-space-network/nasas-deep-space-network-turns-60-and-prepares-for-the-future/" class="hds-content-card hds-content-card-3 grid-row color-spacesuit-white margin-bottom-4" target="_self">
<div class="grid-col">
<div class="width-full bg-carbon-black minh-15">
<img width="640" height="360" src="https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg?w=640" class="hds-media-background z-100" alt="The radio antennas of the NASA’s Canberra Deep Space Communications Complex are located near the Australian capital. It’s one of three Deep Space Network complexes around the world that keep the agency in contact with over 40 space missions. The DSN marks its 60th anniversary in December 2023." decoding="async" style="object-position: 0% 0%" srcset="https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg 2000w, https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg?resize=300,169 300w, https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg?resize=768,432 768w, https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg?resize=1024,576 1024w, https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg?resize=1536,864 1536w, https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg?resize=400,225 400w, https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg?resize=600,338 600w, https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg?resize=900,506 900w, https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg?resize=1200,675 1200w" sizes="(max-width: 640px) 100vw, 640px"> </div>
</div>
<div class="grid-col padding-left-105">
<div class="label margin-bottom-1">5 min read</div>
<div class="margin-bottom-2">
<h3 class="heading-16 line-height-md">NASA’s Deep Space Network Turns 60 and Prepares for the Future</h3>
</div>
<div class="heading-12 display-flex flex-align-center font-weight-bold text-uppercase margin-bottom-1 color-carbon-40">
<span class="display-flex flex-align-center margin-right-2">
<svg version="1.1" class="square-2 margin-right-1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"><g><g><path d="M8,0C3.5,0-0.1,3.7,0,8.2C0.1,12.5,3.6,16,8,16c4.4,0,8-3.6,8-8C16,3.5,12.4,0,8,0z M8,15.2 C4,15.2,0.8,12,0.8,8C0.8,4,4,0.8,8,0.8c3.9,0,7.2,3.2,7.2,7.1C15.2,11.9,12,15.2,8,15.2z"></path><path d="M5.6,12c0.8-0.8,1.6-1.6,2.4-2.4c0.8,0.8,1.6,1.6,2.4,2.4c0-2.7,0-5.3,0-8C8.8,4,7.2,4,5.6,4 C5.6,6.7,5.6,9.3,5.6,12z"></path></g></g></svg>
<span>article</span>
</span>
<span>2 days ago</span>
</div>
</div>
</a>
<a href="https://www.nasa.gov/general/nasa-issues-new-space-security-best-practices-guide/" class="hds-content-card hds-content-card-3 grid-row color-spacesuit-white margin-bottom-4" target="_self">
<div class="grid-col">
<div class="width-full bg-carbon-black minh-15">
<img width="501" height="501" src="https://www.nasa.gov/wp-content/uploads/2023/08/cropped-cropped-nasa_meatball_for_carousel_120820.jpg?w=501" class="hds-media-background z-100" alt="NASA circular logo" decoding="async" style="object-position: 0% 0%" srcset="https://www.nasa.gov/wp-content/uploads/2023/08/cropped-cropped-nasa_meatball_for_carousel_120820.jpg 501w, https://www.nasa.gov/wp-content/uploads/2023/08/cropped-cropped-nasa_meatball_for_carousel_120820.jpg?resize=150,150 150w, https://www.nasa.gov/wp-content/uploads/2023/08/cropped-cropped-nasa_meatball_for_carousel_120820.jpg?resize=300,300 300w, https://www.nasa.gov/wp-content/uploads/2023/08/cropped-cropped-nasa_meatball_for_carousel_120820.jpg?resize=50,50 50w, https://www.nasa.gov/wp-content/uploads/2023/08/cropped-cropped-nasa_meatball_for_carousel_120820.jpg?resize=100,100 100w, https://www.nasa.gov/wp-content/uploads/2023/08/cropped-cropped-nasa_meatball_for_carousel_120820.jpg?resize=200,200 200w, https://www.nasa.gov/wp-content/uploads/2023/08/cropped-cropped-nasa_meatball_for_carousel_120820.jpg?resize=400,400 400w" sizes="(max-width: 501px) 100vw, 501px"> </div>
</div>
<div class="grid-col padding-left-105">
<div class="label margin-bottom-1">2 min read</div>
<div class="margin-bottom-2">
<h3 class="heading-16 line-height-md">NASA Issues New Space Security Best Practices Guide </h3>
</div>
<div class="heading-12 display-flex flex-align-center font-weight-bold text-uppercase margin-bottom-1 color-carbon-40">
<span class="display-flex flex-align-center margin-right-2">
<svg version="1.1" class="square-2 margin-right-1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"><g><g><path d="M8,0C3.5,0-0.1,3.7,0,8.2C0.1,12.5,3.6,16,8,16c4.4,0,8-3.6,8-8C16,3.5,12.4,0,8,0z M8,15.2 C4,15.2,0.8,12,0.8,8C0.8,4,4,0.8,8,0.8c3.9,0,7.2,3.2,7.2,7.1C15.2,11.9,12,15.2,8,15.2z"></path><path d="M5.6,12c0.8-0.8,1.6-1.6,2.4-2.4c0.8,0.8,1.6,1.6,2.4,2.4c0-2.7,0-5.3,0-8C8.8,4,7.2,4,5.6,4 C5.6,6.7,5.6,9.3,5.6,12z"></path></g></g></svg>
<span>article</span>
</span>
<span>2 days ago</span>
</div>
</div>
</a>
</div><div class="global-nav__tertiary-submenu global-nav__wrapper" style="max-width: 440px" submenu-id="global-nav-science"><h3 class="heading-12 color-carbon-40 text-uppercase margin-bottom-2">Highlights</h3>
<a href="https://www.nasa.gov/armstrong/speakers-bureau/" class="hds-content-card hds-content-card-3 grid-row color-spacesuit-white margin-bottom-4" target="_self">
<div class="grid-col">
<div class="width-full bg-carbon-black minh-15">
<img width="640" height="427" src="https://www.nasa.gov/wp-content/uploads/2023/02/ed15-0113-03.jpg?w=640" class="hds-media-background z-100" alt="Speaker stands at podium in front of several people in the audience. A screen, showing a presentation slide, is on the wall behind the speaker." decoding="async" style="object-position: 0% 0%" srcset="https://www.nasa.gov/wp-content/uploads/2023/02/ed15-0113-03.jpg 1575w, https://www.nasa.gov/wp-content/uploads/2023/02/ed15-0113-03.jpg?resize=300,200 300w, https://www.nasa.gov/wp-content/uploads/2023/02/ed15-0113-03.jpg?resize=768,512 768w, https://www.nasa.gov/wp-content/uploads/2023/02/ed15-0113-03.jpg?resize=1024,683 1024w, https://www.nasa.gov/wp-content/uploads/2023/02/ed15-0113-03.jpg?resize=1536,1024 1536w, https://www.nasa.gov/wp-content/uploads/2023/02/ed15-0113-03.jpg?resize=400,267 400w, https://www.nasa.gov/wp-content/uploads/2023/02/ed15-0113-03.jpg?resize=600,400 600w, https://www.nasa.gov/wp-content/uploads/2023/02/ed15-0113-03.jpg?resize=900,600 900w, https://www.nasa.gov/wp-content/uploads/2023/02/ed15-0113-03.jpg?resize=1200,800 1200w" sizes="(max-width: 640px) 100vw, 640px"> </div>
</div>
<div class="grid-col padding-left-105">
<div class="label margin-bottom-1">1 min read</div>
<div class="margin-bottom-2">
<h3 class="heading-16 line-height-md">Armstrong Speaker’s Bureau</h3>
</div>
<div class="heading-12 display-flex flex-align-center font-weight-bold text-uppercase margin-bottom-1 color-carbon-40">
<span class="display-flex flex-align-center margin-right-2">
<svg version="1.1" class="square-2 margin-right-1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"><g><g><path d="M8,0C3.5,0-0.1,3.7,0,8.2C0.1,12.5,3.6,16,8,16c4.4,0,8-3.6,8-8C16,3.5,12.4,0,8,0z M8,15.2 C4,15.2,0.8,12,0.8,8C0.8,4,4,0.8,8,0.8c3.9,0,7.2,3.2,7.2,7.1C15.2,11.9,12,15.2,8,15.2z"></path><path d="M5.6,12c0.8-0.8,1.6-1.6,2.4-2.4c0.8,0.8,1.6,1.6,2.4,2.4c0-2.7,0-5.3,0-8C8.8,4,7.2,4,5.6,4 C5.6,6.7,5.6,9.3,5.6,12z"></path></g></g></svg>
<span>article</span>
</span>
<span>2 days ago</span>
</div>
</div>
</a>
<a href="https://www.nasa.gov/technology/space-comms/deep-space-network/nasas-deep-space-network-turns-60-and-prepares-for-the-future/" class="hds-content-card hds-content-card-3 grid-row color-spacesuit-white margin-bottom-4" target="_self">
<div class="grid-col">
<div class="width-full bg-carbon-black minh-15">
<img width="640" height="360" src="https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg?w=640" class="hds-media-background z-100" alt="The radio antennas of the NASA’s Canberra Deep Space Communications Complex are located near the Australian capital. It’s one of three Deep Space Network complexes around the world that keep the agency in contact with over 40 space missions. The DSN marks its 60th anniversary in December 2023." decoding="async" style="object-position: 0% 0%" srcset="https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg 2000w, https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg?resize=300,169 300w, https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg?resize=768,432 768w, https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg?resize=1024,576 1024w, https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg?resize=1536,864 1536w, https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg?resize=400,225 400w, https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg?resize=600,338 600w, https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg?resize=900,506 900w, https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg?resize=1200,675 1200w" sizes="(max-width: 640px) 100vw, 640px"> </div>
</div>
<div class="grid-col padding-left-105">
<div class="label margin-bottom-1">5 min read</div>
<div class="margin-bottom-2">
<h3 class="heading-16 line-height-md">NASA’s Deep Space Network Turns 60 and Prepares for the Future</h3>
</div>
<div class="heading-12 display-flex flex-align-center font-weight-bold text-uppercase margin-bottom-1 color-carbon-40">
<span class="display-flex flex-align-center margin-right-2">
<svg version="1.1" class="square-2 margin-right-1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"><g><g><path d="M8,0C3.5,0-0.1,3.7,0,8.2C0.1,12.5,3.6,16,8,16c4.4,0,8-3.6,8-8C16,3.5,12.4,0,8,0z M8,15.2 C4,15.2,0.8,12,0.8,8C0.8,4,4,0.8,8,0.8c3.9,0,7.2,3.2,7.2,7.1C15.2,11.9,12,15.2,8,15.2z"></path><path d="M5.6,12c0.8-0.8,1.6-1.6,2.4-2.4c0.8,0.8,1.6,1.6,2.4,2.4c0-2.7,0-5.3,0-8C8.8,4,7.2,4,5.6,4 C5.6,6.7,5.6,9.3,5.6,12z"></path></g></g></svg>
<span>article</span>
</span>
<span>2 days ago</span>
</div>
</div>
</a>
<a href="https://www.nasa.gov/general/nasa-issues-new-space-security-best-practices-guide/" class="hds-content-card hds-content-card-3 grid-row color-spacesuit-white margin-bottom-4" target="_self">
<div class="grid-col">
<div class="width-full bg-carbon-black minh-15">
<img width="501" height="501" src="https://www.nasa.gov/wp-content/uploads/2023/08/cropped-cropped-nasa_meatball_for_carousel_120820.jpg?w=501" class="hds-media-background z-100" alt="NASA circular logo" decoding="async" style="object-position: 0% 0%" srcset="https://www.nasa.gov/wp-content/uploads/2023/08/cropped-cropped-nasa_meatball_for_carousel_120820.jpg 501w, https://www.nasa.gov/wp-content/uploads/2023/08/cropped-cropped-nasa_meatball_for_carousel_120820.jpg?resize=150,150 150w, https://www.nasa.gov/wp-content/uploads/2023/08/cropped-cropped-nasa_meatball_for_carousel_120820.jpg?resize=300,300 300w, https://www.nasa.gov/wp-content/uploads/2023/08/cropped-cropped-nasa_meatball_for_carousel_120820.jpg?resize=50,50 50w, https://www.nasa.gov/wp-content/uploads/2023/08/cropped-cropped-nasa_meatball_for_carousel_120820.jpg?resize=100,100 100w, https://www.nasa.gov/wp-content/uploads/2023/08/cropped-cropped-nasa_meatball_for_carousel_120820.jpg?resize=200,200 200w, https://www.nasa.gov/wp-content/uploads/2023/08/cropped-cropped-nasa_meatball_for_carousel_120820.jpg?resize=400,400 400w" sizes="(max-width: 501px) 100vw, 501px"> </div>
</div>
<div class="grid-col padding-left-105">
<div class="label margin-bottom-1">2 min read</div>
<div class="margin-bottom-2">
<h3 class="heading-16 line-height-md">NASA Issues New Space Security Best Practices Guide </h3>
</div>
<div class="heading-12 display-flex flex-align-center font-weight-bold text-uppercase margin-bottom-1 color-carbon-40">
<span class="display-flex flex-align-center margin-right-2">
<svg version="1.1" class="square-2 margin-right-1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"><g><g><path d="M8,0C3.5,0-0.1,3.7,0,8.2C0.1,12.5,3.6,16,8,16c4.4,0,8-3.6,8-8C16,3.5,12.4,0,8,0z M8,15.2 C4,15.2,0.8,12,0.8,8C0.8,4,4,0.8,8,0.8c3.9,0,7.2,3.2,7.2,7.1C15.2,11.9,12,15.2,8,15.2z"></path><path d="M5.6,12c0.8-0.8,1.6-1.6,2.4-2.4c0.8,0.8,1.6,1.6,2.4,2.4c0-2.7,0-5.3,0-8C8.8,4,7.2,4,5.6,4 C5.6,6.7,5.6,9.3,5.6,12z"></path></g></g></svg>
<span>article</span>
</span>
<span>2 days ago</span>
</div>
</div>
</a>
</div><div class="global-nav__tertiary-submenu global-nav__wrapper" style="max-width: 440px" submenu-id="global-nav-aeronautics"><h3 class="heading-12 color-carbon-40 text-uppercase margin-bottom-2">Highlights</h3>
<a href="https://www.nasa.gov/aeronautics/nasa-flies-autonomous-drones/" class="hds-content-card hds-content-card-3 grid-row color-spacesuit-white margin-bottom-4" target="_self">
<div class="grid-col">
<div class="width-full bg-carbon-black minh-15">
<img width="640" height="389" src="https://www.nasa.gov/wp-content/uploads/2023/12/lrc-2023-h1-p-high-densityvertiplex-00451.jpg?w=640" class="hds-media-background z-100" alt="A small, black drone with multiple helicopter-like blades hovers over some trees during a bright, partly cloudy day in Virginia." decoding="async" style="object-position: 0% 0%" srcset="https://www.nasa.gov/wp-content/uploads/2023/12/lrc-2023-h1-p-high-densityvertiplex-00451.jpg 3000w, https://www.nasa.gov/wp-content/uploads/2023/12/lrc-2023-h1-p-high-densityvertiplex-00451.jpg?resize=300,182 300w, https://www.nasa.gov/wp-content/uploads/2023/12/lrc-2023-h1-p-high-densityvertiplex-00451.jpg?resize=768,467 768w, https://www.nasa.gov/wp-content/uploads/2023/12/lrc-2023-h1-p-high-densityvertiplex-00451.jpg?resize=1024,623 1024w, https://www.nasa.gov/wp-content/uploads/2023/12/lrc-2023-h1-p-high-densityvertiplex-00451.jpg?resize=1536,934 1536w, https://www.nasa.gov/wp-content/uploads/2023/12/lrc-2023-h1-p-high-densityvertiplex-00451.jpg?resize=2048,1245 2048w, https://www.nasa.gov/wp-content/uploads/2023/12/lrc-2023-h1-p-high-densityvertiplex-00451.jpg?resize=400,243 400w, https://www.nasa.gov/wp-content/uploads/2023/12/lrc-2023-h1-p-high-densityvertiplex-00451.jpg?resize=600,365 600w, https://www.nasa.gov/wp-content/uploads/2023/12/lrc-2023-h1-p-high-densityvertiplex-00451.jpg?resize=900,547 900w, https://www.nasa.gov/wp-content/uploads/2023/12/lrc-2023-h1-p-high-densityvertiplex-00451.jpg?resize=1200,730 1200w, https://www.nasa.gov/wp-content/uploads/2023/12/lrc-2023-h1-p-high-densityvertiplex-00451.jpg?resize=2000,1216 2000w" sizes="(max-width: 640px) 100vw, 640px"> </div>
</div>
<div class="grid-col padding-left-105">
<div class="label margin-bottom-1">3 min read</div>
<div class="margin-bottom-2">
<h3 class="heading-16 line-height-md">NASA Flies Drones Autonomously for Air Taxi Research</h3>
</div>
<div class="heading-12 display-flex flex-align-center font-weight-bold text-uppercase margin-bottom-1 color-carbon-40">
<span class="display-flex flex-align-center margin-right-2">
<svg version="1.1" class="square-2 margin-right-1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"><g><g><path d="M8,0C3.5,0-0.1,3.7,0,8.2C0.1,12.5,3.6,16,8,16c4.4,0,8-3.6,8-8C16,3.5,12.4,0,8,0z M8,15.2 C4,15.2,0.8,12,0.8,8C0.8,4,4,0.8,8,0.8c3.9,0,7.2,3.2,7.2,7.1C15.2,11.9,12,15.2,8,15.2z"></path><path d="M5.6,12c0.8-0.8,1.6-1.6,2.4-2.4c0.8,0.8,1.6,1.6,2.4,2.4c0-2.7,0-5.3,0-8C8.8,4,7.2,4,5.6,4 C5.6,6.7,5.6,9.3,5.6,12z"></path></g></g></svg>
<span>article</span>
</span>
<span>3 days ago</span>
</div>
</div>
</a>
<a href="https://www.nasa.gov/aeronautics/nasa-joby-pave-the-way-for-air-taxis-in-busy-airports/" class="hds-content-card hds-content-card-3 grid-row color-spacesuit-white margin-bottom-4" target="_self">
<div class="grid-col">
<div class="width-full bg-carbon-black minh-15">
<img width="640" height="427" src="https://www.nasa.gov/wp-content/uploads/2023/12/acd23-0107-038.jpg?w=640" class="hds-media-background z-100" alt="Savvy Verma and Huy Tran, director of aeronautics at NASA’s Ames Research Center in California’s Silicon Valley, explain a recent air traffic management simulation to guest at Ames’ FutureFlight Central simulator on Sept. 26." decoding="async" style="object-position: 0% 0%" srcset="https://www.nasa.gov/wp-content/uploads/2023/12/acd23-0107-038.jpg 8256w, https://www.nasa.gov/wp-content/uploads/2023/12/acd23-0107-038.jpg?resize=300,200 300w, https://www.nasa.gov/wp-content/uploads/2023/12/acd23-0107-038.jpg?resize=768,512 768w, https://www.nasa.gov/wp-content/uploads/2023/12/acd23-0107-038.jpg?resize=1024,683 1024w, https://www.nasa.gov/wp-content/uploads/2023/12/acd23-0107-038.jpg?resize=1536,1024 1536w, https://www.nasa.gov/wp-content/uploads/2023/12/acd23-0107-038.jpg?resize=2048,1365 2048w, https://www.nasa.gov/wp-content/uploads/2023/12/acd23-0107-038.jpg?resize=400,267 400w, https://www.nasa.gov/wp-content/uploads/2023/12/acd23-0107-038.jpg?resize=600,400 600w, https://www.nasa.gov/wp-content/uploads/2023/12/acd23-0107-038.jpg?resize=900,600 900w, https://www.nasa.gov/wp-content/uploads/2023/12/acd23-0107-038.jpg?resize=1200,800 1200w, https://www.nasa.gov/wp-content/uploads/2023/12/acd23-0107-038.jpg?resize=2000,1333 2000w" sizes="(max-width: 640px) 100vw, 640px"> </div>
</div>
<div class="grid-col padding-left-105">
<div class="label margin-bottom-1">3 min read</div>
<div class="margin-bottom-2">
<h3 class="heading-16 line-height-md">NASA, Joby Pave the Way for Air Taxis in Busy Airports</h3>
</div>
<div class="heading-12 display-flex flex-align-center font-weight-bold text-uppercase margin-bottom-1 color-carbon-40">
<span class="display-flex flex-align-center margin-right-2">
<svg version="1.1" class="square-2 margin-right-1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"><g><g><path d="M8,0C3.5,0-0.1,3.7,0,8.2C0.1,12.5,3.6,16,8,16c4.4,0,8-3.6,8-8C16,3.5,12.4,0,8,0z M8,15.2 C4,15.2,0.8,12,0.8,8C0.8,4,4,0.8,8,0.8c3.9,0,7.2,3.2,7.2,7.1C15.2,11.9,12,15.2,8,15.2z"></path><path d="M5.6,12c0.8-0.8,1.6-1.6,2.4-2.4c0.8,0.8,1.6,1.6,2.4,2.4c0-2.7,0-5.3,0-8C8.8,4,7.2,4,5.6,4 C5.6,6.7,5.6,9.3,5.6,12z"></path></g></g></svg>
<span>article</span>
</span>
<span>4 days ago</span>
</div>
</div>
</a>
<a href="https://www.nasa.gov/centers-and-facilities/armstrong/armstrong-flight-research-center-a-year-in-review/" class="hds-content-card hds-content-card-3 grid-row color-spacesuit-white margin-bottom-4" target="_self">
<div class="grid-col">
<div class="width-full bg-carbon-black minh-15">
<img width="1280" height="1920" src="https://images-assets.nasa.gov/image/AFRC2023-0166-131/AFRC2023-0166-131~large.jpg?w=1280&h=1920&fit=clip&crop=faces%2Cfocalpoint" class="hds-media-background z-100" alt="" decoding="async" style="object-position: 0% 0%" srcset="https://images-assets.nasa.gov/image/AFRC2023-0166-131/AFRC2023-0166-131~large.jpg?w=1280&h=1920&fit=crop&crop=faces%2Cfocalpoint 1280w, https://images-assets.nasa.gov/image/AFRC2023-0166-131/AFRC2023-0166-131~large.jpg?w=200&h=300&fit=crop&crop=faces%2Cfocalpoint 200w, https://images-assets.nasa.gov/image/AFRC2023-0166-131/AFRC2023-0166-131~large.jpg?w=768&h=1152&fit=crop&crop=faces%2Cfocalpoint 768w, https://images-assets.nasa.gov/image/AFRC2023-0166-131/AFRC2023-0166-131~large.jpg?w=683&h=1025&fit=crop&crop=faces%2Cfocalpoint 683w, https://images-assets.nasa.gov/image/AFRC2023-0166-131/AFRC2023-0166-131~large.jpg?w=1024&h=1536&fit=crop&crop=faces%2Cfocalpoint 1024w, https://images-assets.nasa.gov/image/AFRC2023-0166-131/AFRC2023-0166-131~large.jpg?w=267&h=401&fit=crop&crop=faces%2Cfocalpoint 267w, https://images-assets.nasa.gov/image/AFRC2023-0166-131/AFRC2023-0166-131~large.jpg?w=400&h=600&fit=crop&crop=faces%2Cfocalpoint 400w, https://images-assets.nasa.gov/image/AFRC2023-0166-131/AFRC2023-0166-131~large.jpg?w=600&h=900&fit=crop&crop=faces%2Cfocalpoint 600w, https://images-assets.nasa.gov/image/AFRC2023-0166-131/AFRC2023-0166-131~large.jpg?w=800&h=1200&fit=crop&crop=faces%2Cfocalpoint 800w" sizes="(max-width: 1280px) 100vw, 1280px"> </div>
</div>
<div class="grid-col padding-left-105">
<div class="label margin-bottom-1">4 min read</div>
<div class="margin-bottom-2">
<h3 class="heading-16 line-height-md">Armstrong Flight Research Center: A Year in Review</h3>
</div>
<div class="heading-12 display-flex flex-align-center font-weight-bold text-uppercase margin-bottom-1 color-carbon-40">
<span class="display-flex flex-align-center margin-right-2">
<svg version="1.1" class="square-2 margin-right-1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"><g><g><path d="M8,0C3.5,0-0.1,3.7,0,8.2C0.1,12.5,3.6,16,8,16c4.4,0,8-3.6,8-8C16,3.5,12.4,0,8,0z M8,15.2 C4,15.2,0.8,12,0.8,8C0.8,4,4,0.8,8,0.8c3.9,0,7.2,3.2,7.2,7.1C15.2,11.9,12,15.2,8,15.2z"></path><path d="M5.6,12c0.8-0.8,1.6-1.6,2.4-2.4c0.8,0.8,1.6,1.6,2.4,2.4c0-2.7,0-5.3,0-8C8.8,4,7.2,4,5.6,4 C5.6,6.7,5.6,9.3,5.6,12z"></path></g></g></svg>
<span>article</span>
</span>
<span>1 week ago</span>
</div>
</div>
</a>
</div><div class="global-nav__tertiary-submenu global-nav__wrapper" style="max-width: 440px" submenu-id="global-nav-technology"><h3 class="heading-12 color-carbon-40 text-uppercase margin-bottom-2">Highlights</h3>
<a href="https://www.nasa.gov/technology/space-comms/deep-space-network/nasas-deep-space-network-turns-60-and-prepares-for-the-future/" class="hds-content-card hds-content-card-3 grid-row color-spacesuit-white margin-bottom-4" target="_self">
<div class="grid-col">
<div class="width-full bg-carbon-black minh-15">
<img width="640" height="360" src="https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg?w=640" class="hds-media-background z-100" alt="The radio antennas of the NASA’s Canberra Deep Space Communications Complex are located near the Australian capital. It’s one of three Deep Space Network complexes around the world that keep the agency in contact with over 40 space missions. The DSN marks its 60th anniversary in December 2023." decoding="async" style="object-position: 0% 0%" srcset="https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg 2000w, https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg?resize=300,169 300w, https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg?resize=768,432 768w, https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg?resize=1024,576 1024w, https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg?resize=1536,864 1536w, https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg?resize=400,225 400w, https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg?resize=600,338 600w, https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg?resize=900,506 900w, https://www.nasa.gov/wp-content/uploads/2023/12/1-canberra-complex-05.jpg?resize=1200,675 1200w" sizes="(max-width: 640px) 100vw, 640px"> </div>
</div>
<div class="grid-col padding-left-105">
<div class="label margin-bottom-1">5 min read</div>
<div class="margin-bottom-2">
<h3 class="heading-16 line-height-md">NASA’s Deep Space Network Turns 60 and Prepares for the Future</h3>
</div>
<div class="heading-12 display-flex flex-align-center font-weight-bold text-uppercase margin-bottom-1 color-carbon-40">
<span class="display-flex flex-align-center margin-right-2">
<svg version="1.1" class="square-2 margin-right-1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"><g><g><path d="M8,0C3.5,0-0.1,3.7,0,8.2C0.1,12.5,3.6,16,8,16c4.4,0,8-3.6,8-8C16,3.5,12.4,0,8,0z M8,15.2 C4,15.2,0.8,12,0.8,8C0.8,4,4,0.8,8,0.8c3.9,0,7.2,3.2,7.2,7.1C15.2,11.9,12,15.2,8,15.2z"></path><path d="M5.6,12c0.8-0.8,1.6-1.6,2.4-2.4c0.8,0.8,1.6,1.6,2.4,2.4c0-2.7,0-5.3,0-8C8.8,4,7.2,4,5.6,4 C5.6,6.7,5.6,9.3,5.6,12z"></path></g></g></svg>
<span>article</span>
</span>
<span>2 days ago</span>
</div>
</div>
</a>
<a href="https://www.nasa.gov/es/la-movilidad-aerea-avanzada-hace-que-los-viajes-sean-mas-accesibles/" class="hds-content-card hds-content-card-3 grid-row color-spacesuit-white margin-bottom-4" target="_self">
<div class="grid-col">
<div class="width-full bg-carbon-black minh-15">
<img width="640" height="360" src="https://www.nasa.gov/wp-content/uploads/2023/02/accessibility_rev2.jpeg?w=640" class="hds-media-background z-100" alt="" decoding="async" style="object-position: 0% 0%" srcset="https://www.nasa.gov/wp-content/uploads/2023/02/accessibility_rev2.jpeg 1920w, https://www.nasa.gov/wp-content/uploads/2023/02/accessibility_rev2.jpeg?resize=300,169 300w, https://www.nasa.gov/wp-content/uploads/2023/02/accessibility_rev2.jpeg?resize=768,432 768w, https://www.nasa.gov/wp-content/uploads/2023/02/accessibility_rev2.jpeg?resize=1024,576 1024w, https://www.nasa.gov/wp-content/uploads/2023/02/accessibility_rev2.jpeg?resize=1536,864 1536w, https://www.nasa.gov/wp-content/uploads/2023/02/accessibility_rev2.jpeg?resize=400,225 400w, https://www.nasa.gov/wp-content/uploads/2023/02/accessibility_rev2.jpeg?resize=600,338 600w, https://www.nasa.gov/wp-content/uploads/2023/02/accessibility_rev2.jpeg?resize=900,506 900w, https://www.nasa.gov/wp-content/uploads/2023/02/accessibility_rev2.jpeg?resize=1200,675 1200w" sizes="(max-width: 640px) 100vw, 640px"> </div>
</div>
<div class="grid-col padding-left-105">
<div class="label margin-bottom-1">4 min read</div>
<div class="margin-bottom-2">
<h3 class="heading-16 line-height-md">La movilidad aérea avanzada hace que los viajes sean más accesibles</h3>
</div>