-
Notifications
You must be signed in to change notification settings - Fork 7
/
press.html
1716 lines (1572 loc) · 79.8 KB
/
press.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
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">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>IRIS Press</title>
<link rel="shortcut icon" type="image/ico" href="assets/images/logo/favicon.ico" />
<!-- fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,500,600,700%7COswald:300,400,500,600,700"
rel="stylesheet" type="text/css">
<!-- styles -->
<link href="assets/css/plugins.css" rel="stylesheet" type="text/css">
<link href="assets/css/style.css" rel="stylesheet" type="text/css">
</head>
<body class="loader">
<!-- loading start -->
<div class="loading">
<img class="logo-loading" src="assets/images/logo/logo-loader.png" alt="logo">
</div><!-- loading end -->
<!-- pointer start
<div class="pointer" id="pointer">
<i class="fas fa-long-arrow-alt-right"></i>
<i class="fas fa-search"></i>
<i class="fas fa-link"></i>
</div>pointer end -->
<!-- to-top-btn start -->
<a class="to-top-btn pointer-small" href="#up">
<span class="to-top-arrow"></span>
</a><!-- to-top-btn end -->
<!-- header start -->
<header class="fixed-header">
<!-- header-flex-box start -->
<div class="header-flex-box">
<!-- logo start -->
<a href="index.html" class="logo pointer-large animsition-link">
<div class="logo-img-box">
<img class="logo-white" src="assets/images/logo/logo-white.png" alt="logo">
<img class="logo-black" src="assets/images/logo/logo-black.png" alt="logo">
</div>
</a><!-- logo end -->
<!-- menu-open start -->
<div class="menu-open pointer-large">
<span class="hamburger"></span>
</div><!-- menu-open end -->
</div><!-- header-flex-box end -->
</header><!-- header end -->
<!-- nav-container start -->
<nav class="nav-container dark-bg-1">
<!-- nav-logo start -->
<div class="nav-logo">
<img src="assets/images/logo/logo-white.png" alt="logo">
</div><!-- nav-logo end -->
<!-- menu-close -->
<div class="menu-close pointer-large"></div>
<!-- dropdown-close-box start -->
<div class="dropdown-close-box">
<div class="dropdown-close pointer-large">
<span></span>
</div>
</div><!-- dropdown-close-box end -->
<!-- nav-menu start -->
<ul class="nav-menu dark-bg-1">
<!-- nav-box start -->
<li class="nav-box nav-bg-change">
<a href="index.html" class="animsition-link pointer-large nav-link">
<span class="nav-btn" data-text="Home">Home</span>
</a>
<div class="nav-bg" style="background-image: url(assets/images/backgrounds/MENU_04.jpg);"></div>
</li><!-- nav-box end -->
<!-- nav-box start -->
<!-- <li class="nav-box nav-bg-change">
<a href="mission.html" class="animsition-link pointer-large nav-link">
<span class="nav-btn" data-text="Mission">Mission</span>
</a>
<div class="nav-bg" style="background-image: url(assets/images/backgrounds/MENU_02.jpg);"></div>
</li>
<div class="nav-bg" style="background-image: url(assets/images/backgrounds/art-artistic-artsy-1988681.jpg);"></div>
</li> -->
<!-- nav-box end -->
<!-- nav-box start -->
<li class="nav-box nav-bg-change">
<a href="team.html" class="animsition-link pointer-large nav-link">
<span class="nav-btn" data-text="Meet the Team">Meet the Team</span>
</a>
<div class="nav-bg" style="background-image: url(assets/images/backgrounds/MENU_01.jpg);"></div>
</li><!-- nav-box end -->
<!-- nav-box start -->
<li class="nav-box nav-bg-change">
<a href="research.html" class="animsition-link pointer-large nav-link">
<span class="nav-btn" data-text="Research">Research</span>
</a>
<div class="nav-bg" style="background-image: url(assets/images/backgrounds/MENU_02.jpg);"></div>
</li>
<div class="nav-bg"
style="background-image: url(assets/images/backgrounds/art-artistic-artsy-1988681.jpg);"></div>
</li>
<!-- nav-box end-->
<!-- nav-box start -->
<li class="nav-box nav-bg-change">
<a href="press.html" class="animsition-link pointer-large nav-link">
<span class="nav-btn active" data-text="Press">Press</span>
</a>
<div class="nav-bg" style="background-image: url(assets/images/backgrounds/MENU_03.jpg);"></div>
</li><!-- nav-box end -->
<!--nav-box start -->
<li class="nav-box nav-bg-change">
<a href="contributors.html" class="animsition-link pointer-large nav-link">
<span class="nav-btn" data-text="Contributors">Contributors</span>
</a>
<div class="nav-bg" style="background-image: url(assets/images/backgrounds/MENU_06.jpg);"></div>
</li><!-- nav-box end -->
<!--nav-box start -->
<li class="nav-box nav-bg-change">
<a href="https://irislunarrover.myshopify.com" class="animsition-link pointer-large nav-link">
<span class="nav-btn" data-text="Merchandise">Merchandise</span>
</a>
<div class="nav-bg" style="background-image: url(assets/images/backgrounds/MENU_07.jpg);"></div>
</li><!-- nav-box end -->
</ul><!-- nav-menu end -->
</nav><!-- nav-container end -->
<!-- animsition-overlay start -->
<main class="animsition-overlay" data-animsition-overlay="true">
<!-- page-head start -->
<section id="up" class="page-head flex-min-height-box dark-bg-1">
<!-- page-head-bg -->
<div class="page-head-bg overlay-loading2"
style="background-image: url(assets/images/backgrounds/MENU_03.jpg);"></div>
<!-- flex-min-height-inner start -->
<div class="flex-min-height-inner">
<!-- flex-container start -->
<div class="container top-bottom-padding-120 flex-container response-999">
<!-- column start -->
<div class="six-columns six-offset">
<div class="content-left-margin-40">
<h2 class="overlay-loading2 tr-delay03 medium-title red-color">Press</h2>
<h3 class="large-title-bold text-color-4">
<span class="overlay-loading2 overlay-light-bg-1 tr-delay04">What</span><br>
<span class="overlay-loading2 overlay-light-bg-1 tr-delay04">others</span><br>
<span class="overlay-loading2 overlay-light-bg-1 tr-delay05">are saying</span>
</h3>
</div>
</div><!-- column end -->
</div><!-- flex-container end -->
</div><!-- flex-min-height-inner end -->
<!-- scroll-btn start -->
<a href="#down" class="scroll-btn pointer-large">
<div class="scroll-arrow-box">
<span class="scroll-arrow"></span>
</div>
<div class="scroll-btn-flip-box">
<span class="scroll-btn-flip" data-text="Scroll">Scroll</span>
</div>
</a><!-- scroll-btn end -->
</section><!-- page-head end -->
<!-- light-bg-1 start -->
<div id="down" class="light-bg-1 bottom-padding-30 top-padding-120" data-midnight="black">
<!-- container start -->
<div data-animation-container class="container small bottom-padding-60 text-center">
<h2 data-animation-child class="large-title text-height-10 text-color-1 overlay-anim-box2"
data-animation="overlay-anim2">What others are saying</h2><br>
<p data-animation-child class="fade-anim-box tr-delay02 text-color-1 xsmall-title-oswald top-margin-5"
data-animation="fade-anim">Iris related press and media</p>
</div><!-- container end -->
<!-- start Article:World's First Micro Lunar Rover-->
<!-- bottom-padding-90 start -->
<section class="bottom-padding-90">
<!-- portfolio-content start -->
<div class="portfolio-content flex-min-height-box">
<!-- portfolio-content-inner start -->
<div class="portfolio-content-inner flex-min-height-inner">
<!-- flex-container start -->
<div class="flex-container container small">
<!-- column start -->
<div data-animation-container class="six-columns">
<div class="content-right-margin-40">
<span class="small-title-oswald red-color overlay-anim-box2"
data-animation="overlay-anim2">April 19, 2024</span>
<h3 class="title-style text-color-1">
<span data-animation-child
class="overlay-anim-box2 overlay-dark-bg-2 tr-delay01"
data-animation="overlay-anim2">World's First Micro Lunar Rover</span><br>
</h3>
<p data-animation-child class="p-style-small text-color-2 fade-anim-box tr-delay04"
data-animation="fade-anim"> In January of this year, Peregrine Mission One
launched with at least 22 payloads. One was intended to be the first American
made rover to land on the moon since the Apollo days: 1972. </p>
<div data-animation-child
class="arrow-btn-box top-margin-30 fade-anim-box tr-delay05"
data-animation="fade-anim">
<a href="https://www.youtube.com/watch?v=qz2TXNdL6sI"
class="arrow-btn pointer-large animsition-link">Watch (TechFirst)</a>
</div>
</div>
</div><!-- column end -->
<!-- column start -->
<div class="six-columns top-padding-60">
<a href="project.html"
class="portfolio-content-bg-box pointer-large hover-box hidden-box animsition-link">
<div class="portfolio-content-bg hover-img overlay-anim-box2 overlay-dark-bg-2"
data-animation="overlay-anim2"
style="background-image:url(assets/images/press/PRESS_24.jpg)"></div>
</a>
</div><!-- column end -->
</div><!-- flex-container end -->
</div><!-- portfolio-content-inner end -->
</div><!-- portfolio-content end -->
</section><!-- bottom-padding-90 end -->
<!-- start Article:Peregrine Payloads Returned Useful Data Despite No Lunar Landing-->
<!-- bottom-padding-90 start -->
<section class="bottom-padding-90">
<!-- portfolio-content start -->
<div class="portfolio-content flex-min-height-box">
<!-- portfolio-content-inner start -->
<div class="portfolio-content-inner flex-min-height-inner">
<!-- flex-container start -->
<div class="flex-container container small">
<!-- column start -->
<div data-animation-container class="six-columns">
<div class="content-right-margin-40">
<span class="small-title-oswald red-color overlay-anim-box2"
data-animation="overlay-anim2">March 16, 2024</span>
<h3 class="title-style text-color-1">
<span data-animation-child
class="overlay-anim-box2 overlay-dark-bg-2 tr-delay01"
data-animation="overlay-anim2">Peregrine Payloads Returned Useful Data
Despite No Lunar Landing</span><br>
</h3>
<p data-animation-child class="p-style-small text-color-2 fade-anim-box tr-delay04"
data-animation="fade-anim">Despite not making it to the moon, NASA and others
flying payloads on Astrobotic’s Peregrine lunar lander say they still got useful
data from the mission. </p>
<div data-animation-child
class="arrow-btn-box top-margin-30 fade-anim-box tr-delay05"
data-animation="fade-anim">
<a href="https://spacenews.com/peregrine-payloads-returned-useful-data-despite-no-lunar-landing/"
class="arrow-btn pointer-large animsition-link">Read more (Space News)</a>
</div>
</div>
</div><!-- column end -->
<!-- column start -->
<div class="six-columns top-padding-60">
<a href="project.html"
class="portfolio-content-bg-box pointer-large hover-box hidden-box animsition-link">
<div class="portfolio-content-bg hover-img overlay-anim-box2 overlay-dark-bg-2"
data-animation="overlay-anim2"
style="background-image:url(assets/images/press/PRESS_27.jpg)"></div>
</a>
</div><!-- column end -->
</div><!-- flex-container end -->
</div><!-- portfolio-content-inner end -->
</div><!-- portfolio-content end -->
</section><!-- bottom-padding-90 end -->
<!-- start Article: It Started as Winter Break. It Ended With a Doomed Moon Mission.-->
<!-- bottom-padding-90 start -->
<section class="bottom-padding-90">
<!-- portfolio-content start -->
<div class="portfolio-content flex-min-height-box">
<!-- portfolio-content-inner start -->
<div class="portfolio-content-inner flex-min-height-inner">
<!-- flex-container start -->
<div class="flex-container reverse container small">
<!-- column start -->
<div class="six-columns top-padding-60">
<a href="project.html"
class="portfolio-content-bg-box pointer-large hover-box hidden-box animsition-link">
<div class="portfolio-content-bg hover-img overlay-anim-box2 overlay-dark-bg-2"
data-animation="overlay-anim2"
style="background-image:url(assets/images/press/PRESS_28.jpg)"></div>
</a>
</div><!-- column end -->
<!-- column start -->
<div data-animation-container class="six-columns">
<div class="content-left-margin-40">
<span class="small-title-oswald red-color overlay-anim-box2"
data-animation="overlay-anim2">February 9, 2024</span>
<h3 class="title-style text-color-1">
<span data-animation-child
class="overlay-anim-box2 overlay-dark-bg-2 tr-delay01"
data-animation="overlay-anim2">It Started as Winter Break. It Ended With a
Doomed Moon Mission.</span><br>
</h3>
<p data-animation-child class="p-style-small text-color-2 fade-anim-box tr-delay04"
data-animation="fade-anim">Carnegie Mellon University students built Iris, a
tiny lunar rover. When the spacecraft carrying it to the moon malfunctioned,
they turned their vacation house into mission control.</p>
<div data-animation-child
class="arrow-btn-box top-margin-30 fade-anim-box tr-delay05"
data-animation="fade-anim">
<a href="https://www.nytimes.com/2024/02/09/science/iris-carnegie-mellon-moon-rover.html"
class="arrow-btn pointer-large animsition-link">Read more (New York
Times)</a>
</div>
</div>
</div><!-- column end -->
</div><!-- flex-container end -->
</div><!-- portfolio-content-inner end -->
</div><!-- portfolio-content end -->
</section><!-- bottom-padding-90 end -->
<!-- start Article: CMU’s Iris Rover: A Heartbeat in Space, A Legacy on Earth>
<!-- bottom-padding-90 start -->
<section class="bottom-padding-90">
<!-- portfolio-content start -->
<div class="portfolio-content flex-min-height-box">
<!-- portfolio-content-inner start -->
<div class="portfolio-content-inner flex-min-height-inner">
<!-- flex-container start -->
<div class="flex-container container small">
<!-- column start -->
<div data-animation-container class="six-columns">
<div class="content-right-margin-40">
<span class="small-title-oswald red-color overlay-anim-box2"
data-animation="overlay-anim2">January 19, 2024</span>
<h3 class="title-style text-color-1">
<span data-animation-child
class="overlay-anim-box2 overlay-dark-bg-2 tr-delay01"
data-animation="overlay-anim2">CMU’s Iris Rover: A Heartbeat in Space, A
Legacy on Earth </span><br>
</h3>
<p data-animation-child class="p-style-small text-color-2 fade-anim-box tr-delay04"
data-animation="fade-anim">For Carnegie Mellon University’s Iris team, every
moment seemed to bring a new challenge with it — and they turned every challenge
into an opportunity </p>
<div data-animation-child
class="arrow-btn-box top-margin-30 fade-anim-box tr-delay05"
data-animation="fade-anim">
<a href="https://www.cmu.edu/news/stories/archives/2024/january/cmus-iris-rover-a-heartbeat-in-space-a-legacy-on-earth"
class="arrow-btn pointer-large animsition-link">Read more (Carnegie
Mellon)</a>
</div>
</div>
</div><!-- column end -->
<!-- column start -->
<div class="six-columns top-padding-60">
<a href="project.html"
class="portfolio-content-bg-box pointer-large hover-box hidden-box animsition-link">
<div class="portfolio-content-bg hover-img overlay-anim-box2 overlay-dark-bg-2"
data-animation="overlay-anim2"
style="background-image:url(assets/images/press/PRESS_26.jpg)"></div>
</a>
</div><!-- column end -->
</div><!-- flex-container end -->
</div><!-- portfolio-content-inner end -->
</div><!-- portfolio-content end -->
</section><!-- bottom-padding-90 end -->
<!-- start Article: All Seven CMU Colleges Send Iris to Space-->
<!-- bottom-padding-90 start -->
<section class="bottom-padding-90">
<!-- portfolio-content start -->
<div class="portfolio-content flex-min-height-box">
<!-- portfolio-content-inner start -->
<div class="portfolio-content-inner flex-min-height-inner">
<!-- flex-container start -->
<div class="flex-container reverse container small">
<!-- column start -->
<div class="six-columns top-padding-60">
<a href="project.html"
class="portfolio-content-bg-box pointer-large hover-box hidden-box animsition-link">
<div class="portfolio-content-bg hover-img overlay-anim-box2 overlay-dark-bg-2"
data-animation="overlay-anim2"
style="background-image:url(assets/images/press/PRESS_25.jpg)"></div>
</a>
</div><!-- column end -->
<!-- column start -->
<div data-animation-container class="six-columns">
<div class="content-left-margin-40">
<span class="small-title-oswald red-color overlay-anim-box2"
data-animation="overlay-anim2">January 11, 2024</span>
<h3 class="title-style text-color-1">
<span data-animation-child
class="overlay-anim-box2 overlay-dark-bg-2 tr-delay01"
data-animation="overlay-anim2">All Seven CMU Colleges Send Iris to
Space</span><br>
</h3>
<p data-animation-child class="p-style-small text-color-2 fade-anim-box tr-delay04"
data-animation="fade-anim">Interdisciplinary effort across Carnegie Mellon
University crucial to student-led space project.</p>
<div data-animation-child
class="arrow-btn-box top-margin-30 fade-anim-box tr-delay05"
data-animation="fade-anim">
<a href="https://www.cmu.edu/news/stories/archives/2024/january/all-seven-cmu-colleges-send-iris-to-space"
class="arrow-btn pointer-large animsition-link">Read more (Carnegie
Mellon)</a>
</div>
</div>
</div><!-- column end -->
</div><!-- flex-container end -->
</div><!-- portfolio-content-inner end -->
</div><!-- portfolio-content end -->
</section><!-- bottom-padding-90 end -->
<!-- start Article: Carnegie Mellon University Payloads Iris, MoonArk Launch as Part of Historic Lunar Mission>
<!-- bottom-padding-90 start -->
<section class="bottom-padding-90">
<!-- portfolio-content start -->
<div class="portfolio-content flex-min-height-box">
<!-- portfolio-content-inner start -->
<div class="portfolio-content-inner flex-min-height-inner">
<!-- flex-container start -->
<div class="flex-container container small">
<!-- column start -->
<div data-animation-container class="six-columns">
<div class="content-right-margin-40">
<span class="small-title-oswald red-color overlay-anim-box2"
data-animation="overlay-anim2">January 08, 2024</span>
<h3 class="title-style text-color-1">
<span data-animation-child
class="overlay-anim-box2 overlay-dark-bg-2 tr-delay01"
data-animation="overlay-anim2">Carnegie Mellon University Payloads Iris,
MoonArk Launch as Part of Historic Lunar Mission</span><br>
</h3>
<p data-animation-child class="p-style-small text-color-2 fade-anim-box tr-delay04"
data-animation="fade-anim"> Payloads from CMU launched to the moon at 2:18 a.m.
on Monday, Jan. 8, as part of America’s return to the lunar surface for the
first time in 50 years. Iris, a tiny rover aiming for a big impact, and MoonArk,
a collaborative sculpture project that is as much a work of art as an
engineering marvel, rode aboard the rocket as it cleared the launch tower and
arched toward space. </p>
<div data-animation-child
class="arrow-btn-box top-margin-30 fade-anim-box tr-delay05"
data-animation="fade-anim">
<a href="https://www.cmu.edu/news/stories/archives/2024/january/carnegie-mellon-university-payloads-iris-moonark-launch-as-part-of-historic-lunar-mission"
class="arrow-btn pointer-large animsition-link">Read more (Carnegie
Mellon)</a>
</div>
</div>
</div><!-- column end -->
<!-- column start -->
<div class="six-columns top-padding-60">
<a href="project.html"
class="portfolio-content-bg-box pointer-large hover-box hidden-box animsition-link">
<div class="portfolio-content-bg hover-img overlay-anim-box2 overlay-dark-bg-2"
data-animation="overlay-anim2"
style="background-image:url(assets/images/press/PRESS_24.jpg)"></div>
</a>
</div><!-- column end -->
</div><!-- flex-container end -->
</div><!-- portfolio-content-inner end -->
</div><!-- portfolio-content end -->
</section><!-- bottom-padding-90 end -->
<!-- start Article: Vulcan Centaur launches Peregrine lunar lander on inaugural mission-->
<!-- bottom-padding-90 start -->
<section class="bottom-padding-90">
<!-- portfolio-content start -->
<div class="portfolio-content flex-min-height-box">
<!-- portfolio-content-inner start -->
<div class="portfolio-content-inner flex-min-height-inner">
<!-- flex-container start -->
<div class="flex-container reverse container small">
<!-- column start -->
<div class="six-columns top-padding-60">
<a href="project.html"
class="portfolio-content-bg-box pointer-large hover-box hidden-box animsition-link">
<div class="portfolio-content-bg hover-img overlay-anim-box2 overlay-dark-bg-2"
data-animation="overlay-anim2"
style="background-image:url(assets/images/press/PRESS_23.jpg)"></div>
</a>
</div><!-- column end -->
<!-- column start -->
<div data-animation-container class="six-columns">
<div class="content-left-margin-40">
<span class="small-title-oswald red-color overlay-anim-box2"
data-animation="overlay-anim2">January 08, 2024</span>
<h3 class="title-style text-color-1">
<span data-animation-child
class="overlay-anim-box2 overlay-dark-bg-2 tr-delay01"
data-animation="overlay-anim2">Vulcan Centaur launches Peregrine lunar
lander on inaugural mission</span><br>
</h3>
<p data-animation-child class="p-style-small text-color-2 fade-anim-box tr-delay04"
data-animation="fade-anim"> Peregrine is a lunar lander developed by
Pittsburgh-based Astrobotic. The Centaur placed Peregrine on a highly elliptical
orbit that will take it to the moon, where it will go into orbit in advance of a
landing attempt Feb. 23. </p>
<div data-animation-child
class="arrow-btn-box top-margin-30 fade-anim-box tr-delay05"
data-animation="fade-anim">
<a href="https://spacenews.com/vulcan-centaur-launches-peregrine-lunar-lander-on-inaugural-mission/"
class="arrow-btn pointer-large animsition-link">Read more (SpaceNews)</a>
</div>
</div>
</div><!-- column end -->
</div><!-- flex-container end -->
</div><!-- portfolio-content-inner end -->
</div><!-- portfolio-content end -->
</section><!-- bottom-padding-90 end -->
<!-- start Article: Bloomberg Original>
<!-- bottom-padding-90 start -->
<section class="bottom-padding-90">
<!-- portfolio-content start -->
<div class="portfolio-content flex-min-height-box">
<!-- portfolio-content-inner start -->
<div class="portfolio-content-inner flex-min-height-inner">
<!-- flex-container start -->
<div class="flex-container container small">
<!-- column start -->
<div data-animation-container class="six-columns">
<div class="content-right-margin-40">
<span class="small-title-oswald red-color overlay-anim-box2"
data-animation="overlay-anim2">August 21, 2023</span>
<h3 class="title-style text-color-1">
<span data-animation-child
class="overlay-anim-box2 overlay-dark-bg-2 tr-delay01"
data-animation="overlay-anim2">This Student-Built Rover</span><br>
<span data-animation-child
class="overlay-anim-box2 overlay-dark-bg-2 tr-delay02"
data-animation="overlay-anim2">Is Aiming for the Moon</span>
</h3>
<p data-animation-child class="p-style-small text-color-2 fade-anim-box tr-delay04"
data-animation="fade-anim">Students at Carnegie Mellon University, led by a
28-year-old ex-NASA pro turned PhD student, have crafted the nimble Iris rover.
Iris is setting its sights on moondust close-ups, but by challenging industry
norms with limited resources, the project's success could turbocharge
independent space research. </p>
<div data-animation-child
class="arrow-btn-box top-margin-30 fade-anim-box tr-delay05"
data-animation="fade-anim">
<a href="https://www.bloomberg.com/news/videos/2023-08-21/this-student-built-rover-is-aiming-for-the-moon"
class="arrow-btn pointer-large animsition-link">Watch more (BLOOMBERG
ORIGINALS)</a>
</div>
</div>
</div><!-- column end -->
<!-- column start -->
<div class="six-columns top-padding-60">
<a href="project.html"
class="portfolio-content-bg-box pointer-large hover-box hidden-box animsition-link">
<div class="portfolio-content-bg hover-img overlay-anim-box2 overlay-dark-bg-2"
data-animation="overlay-anim2"
style="background-image:url(assets/images/press/PRESS_22.jpg)"></div>
</a>
</div><!-- column end -->
</div><!-- flex-container end -->
</div><!-- portfolio-content-inner end -->
</div><!-- portfolio-content end -->
</section><!-- bottom-padding-90 end -->
<!-- start Article: New Moon Rover Gives It the Old College Try-->
<!-- bottom-padding-90 start -->
<section class="bottom-padding-90">
<!-- portfolio-content start -->
<div class="portfolio-content flex-min-height-box">
<!-- portfolio-content-inner start -->
<div class="portfolio-content-inner flex-min-height-inner">
<!-- flex-container start -->
<div class="flex-container reverse container small">
<!-- column start -->
<div class="six-columns top-padding-60">
<a href="project.html"
class="portfolio-content-bg-box pointer-large hover-box hidden-box animsition-link">
<div class="portfolio-content-bg hover-img overlay-anim-box2 overlay-dark-bg-2"
data-animation="overlay-anim2"
style="background-image:url(assets/images/press/PRESS_20.jpg)"></div>
</a>
</div><!-- column end -->
<!-- column start -->
<div data-animation-container class="six-columns">
<div class="content-left-margin-40">
<span class="small-title-oswald red-color overlay-anim-box2"
data-animation="overlay-anim2">June 26, 2023</span>
<h3 class="title-style text-color-1">
<span data-animation-child
class="overlay-anim-box2 overlay-dark-bg-2 tr-delay01"
data-animation="overlay-anim2">New Moon Rover Gives</span><br>
<span data-animation-child
class="overlay-anim-box2 overlay-dark-bg-2 tr-delay02"
data-animation="overlay-anim2">It the Old College Try</span>
</h3>
<p data-animation-child class="p-style-small text-color-2 fade-anim-box tr-delay04"
data-animation="fade-anim">The United States' first robotic lunar rover was
built by Carnegie Mellon students. </p>
<div data-animation-child
class="arrow-btn-box top-margin-30 fade-anim-box tr-delay05"
data-animation="fade-anim">
<a href="https://spectrum.ieee.org/moon-rover"
class="arrow-btn pointer-large animsition-link">Read more (IEEE
Spectrum)</a>
</div>
</div>
</div><!-- column end -->
</div><!-- flex-container end -->
</div><!-- portfolio-content-inner end -->
</div><!-- portfolio-content end -->
</section><!-- bottom-padding-90 end -->
<!-- start Article: Iris: Space.com->
<!-- bottom-padding-90 start -->
<section class="bottom-padding-90">
<!-- portfolio-content start -->
<div class="portfolio-content flex-min-height-box">
<!-- portfolio-content-inner start -->
<div class="portfolio-content-inner flex-min-height-inner">
<!-- flex-container start -->
<div class="flex-container container small">
<!-- column start -->
<div data-animation-container class="six-columns">
<div class="content-right-margin-40">
<span class="small-title-oswald red-color overlay-anim-box2"
data-animation="overlay-anim2">April 9, 2023</span>
<h3 class="title-style text-color-1">
<span data-animation-child
class="overlay-anim-box2 overlay-dark-bg-2 tr-delay01"
data-animation="overlay-anim2">The First U.S. Lunar Rover</span><br>
<span data-animation-child
class="overlay-anim-box2 overlay-dark-bg-2 tr-delay02"
data-animation="overlay-anim2">is Headed to the Moon </span><br>
<span data-animation-child
class="overlay-anim-box2 overlay-dark-bg-2 tr-delay03"
data-animation="overlay-anim2">and Students Made It!</span>
</h3>
<p data-animation-child class="p-style-small text-color-2 fade-anim-box tr-delay04"
data-animation="fade-anim">Now, the first lunar rover is almost ready to launch.
But it’s not being sent up by NASA. The whole project—from design to
construction to eventual off-world mission—is being run by college students.</p>
<div data-animation-child
class="arrow-btn-box top-margin-30 fade-anim-box tr-delay05"
data-animation="fade-anim">
<a href=https://www.popularmechanics.com/space/moon-mars/a43517716/first-us-lunar-rover-headed-to-moon/ " class="
arrow-btn pointer-large animsition-link">Read more (POPULAR MECHANICS)</a>
</div>
</div>
</div><!-- column end -->
<!-- column start -->
<div class="six-columns top-padding-60">
<a href="project.html"
class="portfolio-content-bg-box pointer-large hover-box hidden-box animsition-link">
<div class="portfolio-content-bg hover-img overlay-anim-box2 overlay-dark-bg-2"
data-animation="overlay-anim2"
style="background-image:url(assets/images/press/PRESS_21.jpg)"></div>
</a>
</div><!-- column end -->
</div><!-- flex-container end -->
</div><!-- portfolio-content-inner end -->
</div><!-- portfolio-content end -->
</section><!-- bottom-padding-90 end -->
<!-- start Article: Shoebox-sized robot named Iris is among two rovers battling it out to be the first US spacecraft to land on the moon since the Apollo missions 50 years ago-->
<!-- bottom-padding-90 start -->
<section class="bottom-padding-90">
<!-- portfolio-content start -->
<div class="portfolio-content flex-min-height-box">
<!-- portfolio-content-inner start -->
<div class="portfolio-content-inner flex-min-height-inner">
<!-- flex-container start -->
<div class="flex-container reverse container small">
<!-- column start -->
<div class="six-columns top-padding-60">
<a href="project.html"
class="portfolio-content-bg-box pointer-large hover-box hidden-box animsition-link">
<div class="portfolio-content-bg hover-img overlay-anim-box2 overlay-dark-bg-2"
data-animation="overlay-anim2"
style="background-image:url(assets/images/press/PRESS_19.jpg)"></div>
</a>
</div><!-- column end -->
<!-- column start -->
<div data-animation-container class="six-columns">
<div class="content-left-margin-40">
<span class="small-title-oswald red-color overlay-anim-box2"
data-animation="overlay-anim2">March 30, 2023</span>
<h3 class="title-style text-color-1">
<span data-animation-child
class="overlay-anim-box2 overlay-dark-bg-2 tr-delay01"
data-animation="overlay-anim2">University's Students</span><br>
<span data-animation-child
class="overlay-anim-box2 overlay-dark-bg-2 tr-delay02"
data-animation="overlay-anim2"> send the first American</span><br>
<span data-animation-child
class="overlay-anim-box2 overlay-dark-bg-2 tr-delay03"
data-animation="overlay-anim2">lunar rover to the Moon on May 4</span>
</h3>
<p data-animation-child class="p-style-small text-color-2 fade-anim-box tr-delay04"
data-animation="fade-anim">In addition to sending a rover to the Moon before
NASA, Carnegie Mellon University will also be the first to send a museum on the
Moon - the MoonArk project. It consists of chambers made of titanium, platinum,
and sapphire that contain hundreds of images, poems, music, nano-objects,
mechanisms, and samples from Earth. </p>
<div data-animation-child
class="arrow-btn-box top-margin-30 fade-anim-box tr-delay05"
data-animation="fade-anim">
<a href="https://interestingengineering.com/innovation/nasa-universitys-students-send-first-american-lunar-rover-moon"
class="arrow-btn pointer-large animsition-link">Read more (Interesting
Engineering)</a>
</div>
</div>
</div><!-- column end -->
</div><!-- flex-container end -->
</div><!-- portfolio-content-inner end -->
</div><!-- portfolio-content end -->
</section><!-- bottom-padding-90 end -->
<!-- start Article: Iris: Technical.ly-->
<!-- bottom-padding-90 start -->
<section class="bottom-padding-90">
<!-- portfolio-content start -->
<div class="portfolio-content flex-min-height-box">
<!-- portfolio-content-inner start -->
<div class="portfolio-content-inner flex-min-height-inner">
<!-- flex-container start -->
<div class="flex-container container small">
<!-- column start -->
<div data-animation-container class="six-columns">
<div class="content-right-margin-40">
<span class="small-title-oswald red-color overlay-anim-box2"
data-animation="overlay-anim2">March 29, 2023</span>
<h3 class="title-style text-color-1">
<span data-animation-child
class="overlay-anim-box2 overlay-dark-bg-2 tr-delay01"
data-animation="overlay-anim2">College Students Are </span><br>
<span data-animation-child
class="overlay-anim-box2 overlay-dark-bg-2 tr-delay02"
data-animation="overlay-anim2">about to Put a Robot on</span><br>
<span data-animation-child
class="overlay-anim-box2 overlay-dark-bg-2 tr-delay03"
data-animation="overlay-anim2">the Moon before NASA.</span>
</h3>
<p data-animation-child class="p-style-small text-color-2 fade-anim-box tr-delay04"
data-animation="fade-anim">It seems likely that NASA’s robots will also be
beaten by a group made up primarily of students at Carnegie Mellon University.
About 300 students worked on a rover named Iris that they plan to send to the
moon aboard a commercial lunar lander scheduled to launch on May 4.</p>
<div data-animation-child
class="arrow-btn-box top-margin-30 fade-anim-box tr-delay05"
data-animation="fade-anim">
<a href=https://www.bloomberg.com/news/articles/2023-03-29/carnegie-mellon-students-beat-nasa-to-put-robot-on-the-moon#xj4y7vzkg"
class="arrow-btn pointer-large animsition-link">Read more (Bloomberg)</a>
</div>
</div>
</div><!-- column end -->
<!-- column start -->
<div class="six-columns top-padding-60">
<a href="project.html"
class="portfolio-content-bg-box pointer-large hover-box hidden-box animsition-link">
<div class="portfolio-content-bg hover-img overlay-anim-box2 overlay-dark-bg-2"
data-animation="overlay-anim2"
style="background-image:url(assets/images/press/PRESS_18.jpg)"></div>
</a>
</div><!-- column end -->
</div><!-- flex-container end -->
</div><!-- portfolio-content-inner end -->
</div><!-- portfolio-content end -->
</section><!-- bottom-padding-90 end -->
<!-- start Article: Shoebox-sized robot named Iris is among two rovers battling it out to be the first US spacecraft to land on the moon since the Apollo missions 50 years ago-->
<!-- bottom-padding-90 start -->
<section class="bottom-padding-90">
<!-- portfolio-content start -->
<div class="portfolio-content flex-min-height-box">
<!-- portfolio-content-inner start -->
<div class="portfolio-content-inner flex-min-height-inner">
<!-- flex-container start -->
<div class="flex-container reverse container small">
<!-- column start -->
<div class="six-columns top-padding-60">
<a href="project.html"
class="portfolio-content-bg-box pointer-large hover-box hidden-box animsition-link">
<div class="portfolio-content-bg hover-img overlay-anim-box2 overlay-dark-bg-2"
data-animation="overlay-anim2"
style="background-image:url(assets/images/press/PRESS_17.jpg)"></div>
</a>
</div><!-- column end -->
<!-- column start -->
<div data-animation-container class="six-columns">
<div class="content-left-margin-40">
<span class="small-title-oswald red-color overlay-anim-box2"
data-animation="overlay-anim2">March 29, 2022</span>
<h3 class="title-style text-color-1">
<span data-animation-child
class="overlay-anim-box2 overlay-dark-bg-2 tr-delay01"
data-animation="overlay-anim2">College students are</span><br>
<span data-animation-child
class="overlay-anim-box2 overlay-dark-bg-2 tr-delay02"
data-animation="overlay-anim2">sending a rover the size of</span><br>
<span data-animation-child
class="overlay-anim-box2 overlay-dark-bg-2 tr-delay03"
data-animation="overlay-anim2">a shoebox to the Moon</span>
</h3>
<p data-animation-child class="p-style-small text-color-2 fade-anim-box tr-delay04"
data-animation="fade-anim">Iris is tiny and weighs 2 kgs (4.4 lbs)—but the
design is deliberately small. The rover will fly on a private rocket carrying 14
payloads to the moon, which includes Iris, projects for the National Aeronautics
and Space Administration as well as some humans. The project involved around 300
students, who will also control and operate Moonshot Mission Control, the
control center for Iris based in CMU’s campus in Pittsburgh.</p>
<div data-animation-child
class="arrow-btn-box top-margin-30 fade-anim-box tr-delay05"
data-animation="fade-anim">
<a href="https://fortune.com/2023/03/29/college-students-build-moon-rover-carnegie-mellon-iris/"
class="arrow-btn pointer-large animsition-link">Read more (Fortune)</a>
</div>
</div>
</div><!-- column end -->
</div><!-- flex-container end -->
</div><!-- portfolio-content-inner end -->
</div><!-- portfolio-content end -->
</section><!-- bottom-padding-90 end -->
<!-- bottom-padding-90 start -->
<section class="bottom-padding-90">
<!-- portfolio-content start -->
<div class="portfolio-content flex-min-height-box">
<!-- portfolio-content-inner start -->
<div class="portfolio-content-inner flex-min-height-inner">
<!-- flex-container start -->
<div class="flex-container container small">
<!-- column start -->
<div data-animation-container class="six-columns">
<div class="content-right-margin-40">
<span class="small-title-oswald red-color overlay-anim-box2"
data-animation="overlay-anim2">December 21, 2022</span>
<h3 class="title-style text-color-1">
<span data-animation-child
class="overlay-anim-box2 overlay-dark-bg-2 tr-delay01"
data-animation="overlay-anim2">Pittsburgh helped the US</span><br>
<span data-animation-child
class="overlay-anim-box2 overlay-dark-bg-2 tr-delay02"
data-animation="overlay-anim2">win the Space Race.</span><br>
<span data-animation-child
class="overlay-anim-box2 overlay-dark-bg-2 tr-delay03"
data-animation="overlay-anim2">Going to the moon again.</span>
</h3>
<p data-animation-child class="p-style-small text-color-2 fade-anim-box tr-delay04"
data-animation="fade-anim">Iris, a rover developed by a team of CMU students, is
expected to be attached to the Peregrine. Weighing only 4 pounds, Iris will go
down in history as the first American and student-developed rover to land on the
moon in addition to being the smallest and lightest rover.</p>
<div data-animation-child
class="arrow-btn-box top-margin-30 fade-anim-box tr-delay05"
data-animation="fade-anim">
<a href=https://technical.ly/software-development/pittsburgh-space-tech-moon/"
class="arrow-btn pointer-large animsition-link">Read more (Technical.ly)</a>
</div>
</div>
</div><!-- column end -->
<!-- column start -->
<div class="six-columns top-padding-60">
<a href="project.html"
class="portfolio-content-bg-box pointer-large hover-box hidden-box animsition-link">
<div class="portfolio-content-bg hover-img overlay-anim-box2 overlay-dark-bg-2"
data-animation="overlay-anim2"
style="background-image:url(assets/images/press/PRESS_16.jpg)"></div>
</a>
</div><!-- column end -->
</div><!-- flex-container end -->
</div><!-- portfolio-content-inner end -->
</div><!-- portfolio-content end -->
</section><!-- bottom-padding-90 end -->
<!-- start Article: Shoebox-sized robot named Iris is among two rovers battling it out to be the first US spacecraft to land on the moon since the Apollo missions 50 years ago-->
<!-- bottom-padding-90 start -->
<section class="bottom-padding-90">
<!-- portfolio-content start -->
<div class="portfolio-content flex-min-height-box">
<!-- portfolio-content-inner start -->
<div class="portfolio-content-inner flex-min-height-inner">
<!-- flex-container start -->
<div class="flex-container reverse container small">
<!-- column start -->
<div class="six-columns top-padding-60">
<a href="project.html"
class="portfolio-content-bg-box pointer-large hover-box hidden-box animsition-link">
<div class="portfolio-content-bg hover-img overlay-anim-box2 overlay-dark-bg-2"
data-animation="overlay-anim2"
style="background-image:url(assets/images/press/PRESS_15.jpg)"></div>
</a>
</div><!-- column end -->
<!-- column start -->
<div data-animation-container class="six-columns">
<div class="content-left-margin-40">
<span class="small-title-oswald red-color overlay-anim-box2"
data-animation="overlay-anim2">JUNE 23, 2022</span>
<h3 class="title-style text-color-1">
<span data-animation-child
class="overlay-anim-box2 overlay-dark-bg-2 tr-delay01"
data-animation="overlay-anim2">How Pittsburgh</span><br>
<span data-animation-child
class="overlay-anim-box2 overlay-dark-bg-2 tr-delay02"
data-animation="overlay-anim2">Is Leading the U.S.</span><br>
<span data-animation-child
class="overlay-anim-box2 overlay-dark-bg-2 tr-delay03"
data-animation="overlay-anim2">Back to the Moon</span>
</h3>
<p data-animation-child class="p-style-small text-color-2 fade-anim-box tr-delay04"
data-animation="fade-anim">Also on board is a rover the size of a microwave oven
built and designed by students from nearby Carnegie Mellon University. All of
this has at once put Astrobotic—and Pittsburgh—very much on the cosmic map.</p>
<div data-animation-child
class="arrow-btn-box top-margin-30 fade-anim-box tr-delay05"
data-animation="fade-anim">
<a href="https://time.com/6189460/pittsburgh-and-the-moon/?fbclid=IwAR1aJ8auG0P195Tnri14QiwBqbSulayxUrdnvP3X-pkZ-UWuDk-fNqTqi5g"
class="arrow-btn pointer-large animsition-link">Read more (TIME)</a>
</div>
</div>
</div><!-- column end -->
</div><!-- flex-container end -->
</div><!-- portfolio-content-inner end -->
</div><!-- portfolio-content end -->
</section><!-- bottom-padding-90 end -->
<!-- start Article: Iris: Student-built robot rover on track to explore the Moon-->
<!-- bottom-padding-90 start -->
<section class="bottom-padding-90">
<!-- portfolio-content start -->
<div class="portfolio-content flex-min-height-box">
<!-- portfolio-content-inner start -->
<div class="portfolio-content-inner flex-min-height-inner">
<!-- flex-container start -->
<div class="flex-container container small">
<!-- column start -->
<div data-animation-container class="six-columns">
<div class="content-right-margin-40">
<span class="small-title-oswald red-color overlay-anim-box2"
data-animation="overlay-anim2">FEBRUARY 03, 2022</span>
<h3 class="title-style text-color-1">
<span data-animation-child
class="overlay-anim-box2 overlay-dark-bg-2 tr-delay01"
data-animation="overlay-anim2">Iris: Student-built</span><br>
<span data-animation-child
class="overlay-anim-box2 overlay-dark-bg-2 tr-delay02"
data-animation="overlay-anim2">robot rover on track</span><br>
<span data-animation-child
class="overlay-anim-box2 overlay-dark-bg-2 tr-delay03"
data-animation="overlay-anim2">to explore the Moon</span>
</h3>
<p data-animation-child class="p-style-small text-color-2 fade-anim-box tr-delay04"
data-animation="fade-anim">Iris has not been built by experienced engineers at
Nasa or a large aerospace company, but by students at Whittaker's home
institution of Carnegie Mellon University (CMU) in Pittsburgh. The robot was
recently secured to its lunar lander, ahead of a launch scheduled for 2022.</p>
<div data-animation-child
class="arrow-btn-box top-margin-30 fade-anim-box tr-delay05"