-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1365 lines (1138 loc) · 63.4 KB
/
Copy pathindex.html
File metadata and controls
1365 lines (1138 loc) · 63.4 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 class="no-js" lang="">
<head>
<meta charset="utf-8">
<title>Kiwrious</title>
<meta name="description" content="Kiwrious empowers kids to explore the world around them and makes scientific inquiry fun. It is a kit of 6 sensors that connect to an online sharing platform.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="Kiwrious">
<meta property="og:description" content="Kiwrious empowers kids to explore the world around them and makes scientific inquiry fun. It is a kit of 6 sensors that connect to an online sharing platform.">
<meta property="og:image" content="https://cdn.auckland.ac.nz/aem/content/auckland/en/news/2020/08/28/lab-in-a-pocket-makes-scientific-inquiry-fun/jcr:content/leftpar/imagecomponent_1520692501/image.img.1024.medium.jpg">
<meta property="og:url" content="https://kiwrious.com">
<meta property="og:site_name" content="Kiwrious">
<meta name="twitter:title" content="Kiwrious">
<meta name="twitter:description" content="Kiwrious empowers kids to explore the world around them and makes scientific inquiry fun. It is a kit of 6 sensors that connect to an online sharing platform.">
<meta name="twitter:image" content="https://cdn.auckland.ac.nz/aem/content/auckland/en/news/2020/08/28/lab-in-a-pocket-makes-scientific-inquiry-fun/jcr:content/leftpar/imagecomponent_1520692501/image.img.1024.medium.jpg">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image:alt" content="Kiwrious">
<link rel="apple-touch-icon" sizes="57x57" href="img/favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="img/favicon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="img/favicon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="img/favicon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="img/favicon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="img/favicon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="img/favicon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="img/favicon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="img/favicon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="img/favicon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="img/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="img/favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="img/favicon/favicon-16x16.png">
<link rel="manifest" href="img/favicon/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="img/favicon/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" href="css/boostrap.min.css" />
<link rel="stylesheet" href="css/main.css"/>
<link rel="stylesheet" href="css/home.css"/>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"/>
<link rel="stylesheet" href="https://use.typekit.net/ekz0aha.css"/>
<!-- Required CSS -->
<link href="css/movingboxes.css" rel="stylesheet">
<!--[if lt IE 9]>
<link href="css/movingboxes-ie.css" rel="stylesheet" media="screen">
<![endif]-->
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.css">
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bxslider/4.2.15/jquery.bxslider.min.css">
<!-- <link rel="stylesheet" href="css/hover.min.css"/>-->
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
<meta name="theme-color" content="#fafafa">
</head>
<body>
<div class="preload">
<img class="img-fluid" src="img/Kiwrious_logo_gradient_wide_animated.svg">
</div>
<!-- Add your site or application content here -->
<div class="container-fluid m-0 p-0" style="max-width: 1979px;margin: auto; overflow: hidden;" id="main-content">
<div class="container-fluid top-header-layer p-0">
<div class="header-charactor">
<div>
<img src="img/zally.svg"/>
</div>
<img class="z_index_99" src="img/zally_hand.svg"/>
</div>
<div class="container-fluid top-header p-0">
<nav class="top-navbar">
<a href="/" class="navbar-left">
<img class="navbar-logo" src="img/Kiwrious_logo_white_wide.svg" alt="Kiwrious" />
</a>
<div class="navbar-right">
<a class="btn btn-outline-light btn-register d-none d-lg-inline-flex" href="/register.html">
Register Interest
</a>
<a class="btn btn-link btn-login d-lg-none d-xl-none" href="/register.html">
Register
</a>
<button class="btn btn-link btn-menu d-none d-lg-inline-flex nav-toggler-desktop">
<img src="img/menu_icon.svg" alt="Menu" />
</button>
<button class="btn btn-link btn-menu navbar-toggler d-lg-none" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<img src="img/menu_icon.svg" alt="Menu" />
</button>
</div>
<div class="navigation-desktop d-sm-none d-md-none">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="#">Meet Kiwrious</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="modal" data-target="#contact-us">Contact Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/#news">News</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/#team">Our Team</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://kiwrious.medium.com/" target="_blank">Blog</a>
</li>
</ul>
</div>
</nav>
<div class="collapse navbar-collapse bg-dark px-3" id="navbarCollapse">
<div class="mobile-nav-header">
<div>
<img src="img/Kiwrious_logo_white_wide.svg" alt="Kiwrious" />
</div>
<button class="btn btn-link btn-menu navbar-toggler d-flex justify-content-center align-content-center" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<img class="btn-close" src="img/plus_thin.svg" alt="Menu" />
</button>
</div>
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="#">Meet Kiwrious</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="modal" data-target="#contact-us">Contact Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/#news">News</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/#team">Our Team</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/register.html">Register Interest</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://kiwrious.medium.com/" target="_blank">Blog</a>
</li>
</ul>
<div class="social">
<a href="https://www.facebook.com/Kiwrious" target="_blank">
</a>
<a href="https://twitter.com/kiwrious" target="_blank">
</a>
<a href="https://instagram.com/kiwrious" target="_blank">
</a>
<a href="https://www.youtube.com/channel/UCub9PeFM-4-FOD8LzRGACQQ" target="_blank">
</a>
</div>
</div>
<div class="center-jumbotron">
<h1 class="center-jumbotron-header">Inspire Curiosity</h1>
<p class="description">Kiwrious believes science is fun, creative and social. We help students experience this firsthand.</p>
<button class="play-btn hvr-ripple-out" style="visibility: hidden"></button>
</div>
<div class="header-graphics">
<img src="img/header_sensors.png"/>
</div>
</div>
<div class="header-social">
<h5>Connect with us</h5>
<div class="links">
<a href="https://www.facebook.com/Kiwrious" target="_blank">
</a>
<a href="https://twitter.com/kiwrious" target="_blank">
</a>
<a href="https://instagram.com/kiwrious" target="_blank">
</a>
<a href="https://www.youtube.com/channel/UCub9PeFM-4-FOD8LzRGACQQ" target="_blank">
</a>
</div>
</div>
</div>
<div class="container-fluid px-0 mx-0 middle-content">
<h2 class="meet-kiwrious mt-5 mb-3">Meet Kiwrious</h2>
<p class="meet-kiwrious-extended mb-5 px-sm-4">The Kiwrious Science Experience consists of the Kiwrious Sensor Kit, the Kiwrious Inquiry Editor and the Kiwrious Teacher Resources. It empowers students to engage in scientific inquiries in and out of school.</p>
<div class="container-fluid row image-box-container mx-0 d-none d-lg-flex">
<div class="mb-3 col-sm-6 col-md-6 col-lg-6 col-xl-3 justify-content-lg-end d-lg-flex">
<div class="image-box m-xl-auto">
<div class="content">
<div class="visible-title">
<h4>See the invisible</h4>
<button class="icon-btn">
<i class="fa fa-plus"></i>
</button>
</div>
<p class="invisible-content">
The Kiwrious Science Experience challenges students to make invisible natural phenomena visible. This encourages them to carry out exciting and interesting investigations.
</p>
</div>
</div>
</div>
<div class="mb-3 col-sm-6 col-md-6 col-lg-6 col-xl-3">
<div class="image-box m-xl-auto">
<div class="content">
<div class="visible-title">
<h4>Discover, share and discuss</h4>
<button class="icon-btn">
<i class="fa fa-plus"></i>
</button>
</div>
<p class="invisible-content">
The Kiwrious Inquiry Editor is an online based learning platform, aligned with the science capabilities of the New Zealand science curriculum. It focuses on encouraging students to make multiple observations, represent findings in creative ways and discuss them with their peers.
</p>
</div>
</div>
</div>
<div class="mb-3 col-sm-6 col-md-6 col-lg-6 col-xl-3 justify-content-lg-end d-lg-flex">
<div class="image-box m-xl-auto">
<div class="content">
<div class="visible-title">
<h4>Supporting teachers</h4>
<button class="icon-btn">
<i class="fa fa-plus"></i>
</button>
</div>
<p class="invisible-content">
The Kiwrious Sensor Kit is the first integrated science learning tool to be designed in New Zealand and aligned with levels four and five of the national science curriculum to ensure students learning requirements are met.
</p>
</div>
</div>
</div>
<div class="mb-3 col-sm-6 col-md-6 col-lg-6 col-xl-3">
<div class="image-box m-xl-auto">
<div class="content">
<div class="visible-title">
<h4>Inspiring fearless problem solvers</h4>
<button class="icon-btn">
<i class="fa fa-plus"></i>
</button>
</div>
<p class="invisible-content">
Kiwrious aims to help reduce the digital divide, to have a direct impact on the future of science in New Zealand by assisting in the development of the next generation of critical thinkers and innovators.
</p>
</div>
</div>
</div>
</div>
<div class="swiper-container">
<div class="swiper-wrapper image-box-container-mobile container-fluid mx-0 px-0 d-lg-none">
<div class="swiper-slide image-box">
<div class="content">
<div class="image">
<img class="img-fluid" src="img/kiwrious.jpg" />
</div>
<h4>See the invisible</h4>
<p>
The Kiwrious Science Experience challenges students to make invisible natural phenomena visible. This encourages them to carry out exciting and interesting investigations.
</p>
</div>
</div>
<div class="swiper-slide image-box">
<div class="content">
<div class="image">
<img style="height: 100%;" src="img/20151126_NZStory_Furnwear_Room_096.jpg" />
</div>
<h4>Discover, share and discuss</h4>
<p class="invisible-content">
The Kiwrious Inquiry Editor is an online based learning platform, aligned with the science capabilities of the New Zealand science curriculum. It focuses on encouraging students to make multiple observations, represent findings in creative ways and discuss them with their peers.
</p>
</div>
</div>
<div class="swiper-slide image-box">
<div class="content">
<div class="image">
<img style="min-height: 100%; width: 100%;padding-top: 60px;" src="img/supporting_teachers.jpg" />
</div>
<h4>Supporting teachers</h4>
<p class="invisible-content">
The Kiwrious Sensor Kit is the first integrated science learning tool to be designed in New Zealand and aligned with levels four and five of the national science curriculum to ensure students learning requirements are met.
</p>
</div>
</div>
<div class="swiper-slide image-box">
<div class="content">
<div class="image">
<img class="img-fluid" src="img/inspiring_fearless_thumb.JPG" />
</div>
<h4>Inspiring fearless problem solvers</h4>
<p class="invisible-content">
Kiwrious aims to help reduce the digital divide, to have a direct impact on the future of science in New Zealand by assisting in the development of the next generation of critical thinkers and innovators.
</p>
</div>
</div>
</div>
</div>
<div class="row m-0 how-it-works">
<div class="col-lg- 4 d-flex justify-content-center align-items-start">
<p class="vertical-text">
How it works
</p>
<div class="vertical-description">
<p>
The Kiwrious Sensor Kit comes with 6 different sensors that help measure different scientific phenomena. The accompanying lesson plans and supplementary learning materials are aligned with the New Zealand curriculum and support teachers in introducing their students to the Kiwrious sensors and the Inquiry Editor
</p>
<a href="register.html" class="btn btn-link request-sensor-kit-btn">
Request a sensor kit
</a>
</div>
</div>
<div class="offset-6"></div>
</div>
</div>
<div class="container-fluid row mx-0 px-0 sensors-kit">
<h2 class="mt-5 mb-5">The Kiwrious Sensor Kit </h2>
<div class="content">
<div class="swiper-container-hexagons">
<div class="hexagons-mobile d-lg-none swiper-wrapper">
<div class="swiper-slide">
<div class="hex-image meter-blue">
<img src="img/red_hexagon.svg" />
<img class="middle" src="img/graphics/temperature_sensor.png" />
</div>
<h2 style="color: #D90033;">Temperature</h2>
<p class="description">Measures surface temperature</p>
<p class="units">UNITS</p>
<p class="units-content">Celsius</p>
</div>
<div class="swiper-slide">
<div class="hex-image circuit-z-blue">
<img src="img/yellow_hexagon.svg" />
<img class="middle" src="img/graphics/conductivity_sensor.png" />
</div>
<h2 style="color:#FEB826;">Conductance</h2>
<p class="description">Measures conductivity of objects</p>
<p class="units">UNITS</p>
<p class="units-content">Siemens</p>
</div>
<div class="swiper-slide">
<div class="hex-image heart">
<img src="img/pink_hexagon.svg" />
<img class="middle" src="img/graphics/heartrate_sensor.png" />
</div>
<h2 style="color: #FF006E;">Heart Rate</h2>
<p class="description">Measures heart rate in a safe and non-invasive way</p>
<p class="units">UNITS</p>
<p class="units-content">beats per minute</p>
</div>
<div class="swiper-slide">
<div class="hex-image circuit-green">
<img src="img/green_hexagon.svg" />
<img class="middle" src="img/graphics/air_sensor.png" />
</div>
<h2 style="color: #00D36A;">Air quality</h2>
<p class="description">Measures volatile organic compounds in the air</p>
<p class="units">UNITS</p>
<p class="units-content">parts per billion</p>
</div>
<div class="swiper-slide">
<div class="hex-image oval-blue">
<img src="img/light_blue_hexagon.svg" />
<img class="middle" src="img/graphics/humidity_sensor.png" />
</div>
<h2 style="color: #3BA4FF;">Humidity</h2>
<p class="description">Measures relative humidity and air temperature</p>
<p class="units">UNITS</p>
<p class="units-content">% ; Celsius</p>
</div>
<div class="swiper-slide">
<div class="hex-image circuit-blue">
<img src="img/purple_hexagon.svg" />
<img class="middle" src="img/graphics/uv_sensor.png" />
</div>
<h2>UV & Light</h2>
<p class="description">Measures the amount of light and ultraviolet radiation</p>
<p class="units">UNITS</p>
<p class="units-content">Lux; UV index</p>
</div>
</div>
<!-- <div class="swiper-pagination"></div>-->
<!-- If we need navigation buttons -->
<!-- <div class="swiper-button-prev"></div>-->
<!-- <div class="swiper-button-next"></div>-->
<!-- If we need scrollbar -->
<!-- <div class="swiper-scrollbar"></div>-->
</div>
<div class="hexagon-wrapper flip-card-container">
<div class="hexagons hexagons-one d-none d-lg-flex">
<div class="hexagon-flip-card-container">
<div class="hexagon-flip-card">
<div class="hexagon-flip-card-front">
<img src="img/graphics/temperature_sensor.png" />
</div>
<div class="hexagon-flip-card-back">
<div class="hex-content">
<h2>Temperature</h2>
<p class="description">Measures surface temperature</p>
<p class="unit">UNITS</p>
<p class="units-content">Celsius</p>
</div>
</div>
</div>
</div>
<div class="hexagon-flip-card-container">
<div class="hexagon-flip-card">
<div class="hexagon-flip-card-front">
<img src="img/graphics/conductivity_sensor.png" />
</div>
<div class="hexagon-flip-card-back">
<div class="hex-content">
<h2>Conductance</h2>
<p class="description">Measures conductivity of objects</p>
<p class="unit">UNITS</p>
<p class="units-content">Siemens</p>
</div>
</div>
</div>
</div>
<div class="hexagon-flip-card-container">
<div class="hexagon-flip-card">
<div class="hexagon-flip-card-front">
<img src="img/graphics/heartrate_sensor.png" />
</div>
<div class="hexagon-flip-card-back">
<div class="hex-content">
<h2>Heart Rate</h2>
<p class="description">Measures heart rate in a safe and non-invasive way</p>
<p class="unit">UNITS</p>
<p class="units-content">beats per minute</p>
</div>
</div>
</div>
</div>
</div>
<div class="hexagons hexagons-two d-none d-lg-flex">
<div class="hexagon-flip-card-container">
<div class="hexagon-flip-card">
<div class="hexagon-flip-card-front">
<img src="img/graphics/air_sensor.png" />
</div>
<div class="hexagon-flip-card-back">
<div class="hex-content">
<h2>Air quality</h2>
<p class="description">Measures volatile organic compounds in the air</p>
<p class="unit">UNITS</p>
<p class="units-content">parts per billion</p>
</div>
</div>
</div>
</div>
<div class="hexagon-flip-card-container">
<div class="hexagon-flip-card">
<div class="hexagon-flip-card-front">
<img src="img/graphics/humidity_sensor.png" />
</div>
<div class="hexagon-flip-card-back">
<div class="hex-content">
<h2>Humidity</h2>
<p class="description">Measures relative humidity and air temperature</p>
<p class="unit">UNITS</p>
<p class="units-content">% ; Celsius</p>
</div>
</div>
</div>
</div>
<div class="hexagon-flip-card-container">
<div class="hexagon-flip-card">
<div class="hexagon-flip-card-front">
<img src="img/graphics/uv_sensor.png" />
</div>
<div class="hexagon-flip-card-back">
<div class="hex-content">
<h2>UV & Light</h2>
<p class="description">Measures the amount of light and ultraviolet radiation</p>
<p class="unit">UNITS</p>
<p class="units-content">Lux; UV index</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="video-thumb" style="overflow: hidden">
<div class="thumb-overlay"></div>
<div class="video" style="border-radius: 10px;">
<video style="max-width: 100%;border-radius: 10px;" id="video-sensors">
<source src="video/using_the_sensors.mp4" type="video/mp4">
</video>
</div>
<!-- <div class="thumb-overlay"></div>-->
<button class="play-btn hvr-ripple-out white"></button>
<p class="play-btn-label">Using the Sensors</p>
</div>
</div>
</div>
<div class="container-fluid row mx-0 px-0 sologan">
<div class="sologan-text">
<h2> Explore </h2>
<img class="wavy-line" src="img/wavy_line.svg"/>
<h2> Collaborate </h2>
<img class="wavy-line" src="img/wavy_line.svg"/>
<h2> Learn </h2>
</div>
<div class="container-fluid row mx-0 px-0 discover-together">
<div class="col-md-6 background">
<img class="img-fluid" src="img/discover_together_bg.png"/>
</div>
<div class="col-md-6 text">
<h2>The Kiwrious Inquiry Editor</h2>
<p>The Kiwrious Inquiry Editor was designed for students to formulate scientific inquiries, make multiple observations, represent their findings in creative ways and discuss these findings.</p>
<p>At Kiwrious we recognise that science is empirical and involves testing ideas and gathering relevant data. We strongly believe that emerging scientists need to work together and share their ideas to thrive.</p>
</div>
</div>
</div>
<div class="container-fluid mx-auto text-center flow-chart">
<img class="img-fluid d-none d-md-flex" src="img/process.png" alt="Process" style="max-width: 1330px;">
<img class="img-fluid d-md-none d-lg-none d-xl-none" src="img/process_mobile.png" style="max-width: 320px;" alt="Process">
</div>
<div class="container-fluid mx-0 px-0 resources">
<div class="left-books">
<img class="img-fluid" src="img/left_books.png" alt="Left Books"/>
</div>
<div class="text">
<h2>The Kiwrious Teacher Resources</h2>
<p class="mb-1">Resources designed by teachers, for teachers</p>
<p class="mb-1">Each Kiwrious sensor comes with a lesson plan and challenges to familiarise students and teachers with the functionality of the sensor. Students are then invited to conduct their own experiments using the Kiwrious Inquiry Editor.
</p>
<div class="btn-container">
</div>
</div>
<div class="right-books">
<img class="img-fluid" src="img/right_books.png" alt="Right Books"/>
</div>
</div>
<div class="grid-wrap mb-4 mt-5">
<h2>Impact</h2>
<div class="grid-container row">
<div class="col-md-4 grid-image">
<div class="grid-thumb">
<img class="img-fluid" src="img/schools.jpg"/>
</div>
<h3>Schools</h3>
<p class="mb-1">
The Kiwrious Science Experience is the first “Kiwi made” science learning tool of its kind in New Zealand.
</p>
<p class="mt-0">
The additional teaching material and resources enable teachers to support the New Zealand science curriculum.
</p>
</div>
<div class="col-md-4 grid-image">
<div class="grid-thumb">
<img class="img-fluid" src="img/students.jpg" />
</div>
<h3>Students</h3>
<p>The Kiwrious Inquiry Editor provides students a unique opportunity to explore science, expand their curiosity and enhance their awareness of their environment. By collaborating with their peers and other schools, students broaden their learning horizon and expand their inquiring minds across New Zealand.</p>
</div>
<div class="col-md-4 grid-image">
<div class="grid-thumb">
<img class="img-fluid" src="img/wider_community.JPG" />
</div>
<h3>Wider Community</h3>
<p>The Kiwrious Science Experience enable students and teachers to engage with their local community on local issues such as; climate change, water purity and/or air quality. These interactions encourage students to develop a love of science and become the innovators of the future.</p>
</div>
</div>
</div>
<div class="download-brochure">
<a class="btn register-interest ripple" href="register.html">
Register your interest
</a>
</div>
<div class="text-slider">
<div class="text-slider-image d-none d-md-flex">
<img src="img/whiteborad_learning.JPG" />
</div>
<div class="text-slider-content">
<h2 class="title">
Hear it from them
</h2>
<div class="text-slider-image d-sm-flex d-flex d-md-none d-lg-none d-xl-none justify-content-center">
<img src="img/whiteborad_learning.JPG" />
</div>
<div style="max-width: 748px;">
<div class="content text-slider-wrap">
<div class="slider-content">
<p class="description">“A very fun experiment, that was easy to use, and provided facts and answers you may not know about UV”</p>
<p class="author">Student – King’s School, Auckland</p>
</div>
<div class="slider-content">
<p class="description">“I liked how we could experiment with different materials and collaborate with friends”</p>
<p class="author">Student - Panmure Bridge school, Auckland</p>
</div>
</div>
</div>
</div>
</div>
<div class="schools">
<h3>Schools who helped us along the way</h3>
<div class="school-wrapper">
<div class="school-boxes swiper-wrapper">
<div class="color_ffffff baradene-logo swiper-slide">
<img src="img/schools/baradene_logo.png"/>
</div>
<div class="color_aa1e20 panmure-bridge-logo swiper-slide">
<img src="img/schools/panmure_bridge_logo.png"/>
</div>
<div class="color_fafafa kings-logo swiper-slide">
<img src="img/schools/kings_logo.png"/>
</div>
<div class="color_fafafa mangawahi-beach-logo swiper-slide">
<img src="img/schools/mangawahi_beach.png"/>
</div>
<div class="color_161d4a eggs-logo swiper-slide">
<img src="img/schools/eggs_logo.png"/>
</div>
<div class="color_f8f8f8 mags-logo swiper-slide">
<img src="img/schools/mags_logo.png"/>
</div>
<div class="color_823240 flax-lux-logo swiper-slide">
<img src="img/schools/flat_lux_logo.png"/>
</div>
<div class="color_gradient join-btn swiper-slide">
<a class="btn btn-link" href="register.html">
Join Us
</a>
</div>
</div>
<!-- If we need navigation buttons -->
<div class="d-none d-lg-flex swiper-button-prev"></div>
<div class="d-none d-lg-flex swiper-button-next"></div>
</div>
</div>
<div class="supporters">
<h3>Friends and supporters of Kiwrious</h3>
<div class="supporters-img">
<div>
<img alt="Auckland University" src="img/brands/uoa@2x.png"/>
</div>
<div>
<img alt="SCAD" src="img/brands/ESW-SCP-VC-RGB@2x.png"/>
</div>
<div>
<img alt="ABI" src="img/brands/ABI_logo.png"/>
</div>
<div>
<img alt="ABI" src="img/brands/CIE_logo.png"/>
</div>
</div>
<div class="supporters-img mt-1">
<div>
<img alt="Curious Minds" src="img/brands/logo-x2@2x.png"/>
</div>
<div>
<img class="p-4" alt="ABI" src="img/brands/MERW_logo.jpg"/>
</div>
<div>
<img class="p-1" alt="AHLAB" src="img/brands/AHLab_Logo.png"/>
</div>
<div>
<img class="p-1" alt="AHLAB" src="img/brands/cloud_9.png"/>
</div>
</div>
</div>
<div class="support" id="support">
<h2>Support Us</h2>
<p>Kiwrious Limited is a not-for-profit company with charitable status.</p>
<p>Kiwrious is seeking partnerships with corporate sponsors and philanthropic donors to distribute 100 Kiwrious Sensor Kits per school across New Zealand, as well as a free individual Sensor Kits to students interested in continuing their science inquiry journey out of school.</p>
<p>Get in touch to learn more on how you can support us.</p>
<button class="btn register-interest mt-5 ripple" data-toggle="modal" data-target="#contact-us">
Contact Us
</button>
</div>
<div class="news" id="news">
<div class="header">
<h3>Latest News</h3>
</div>
<div class="news-swiper">
<div class="news-grid swiper-wrapper">
<!-- start of slide item -->
<div class="news-item swiper-slide">
<div class="thumb">
<img src="https://miro.medium.com/max/1161/1*495IkBR1B0I5f8ZE8M8dlA.jpeg"/>
</div>
<p>28 Jan 2021</p>
<div class="title">
<a href="https://kiwrious.medium.com/super-kiwrious-users-on-a-space-mission-9cb8a7f47e08">
‘Super Kiwrious’ Users on a Space Mission…
</a>
</div>
</div>
<!-- end of slide item -->
<!-- start of slide item -->
<div class="news-item swiper-slide">
<div class="thumb">
<img src="https://cdn.auckland.ac.nz/aem/content/auckland/en/news/2020/10/29/serious-scientific-fun-a-winner-at-velocity/jcr:content/leftpar/imagecomponent/image.img.1024.medium.jpg/1603928232130.jpg"/>
</div>
<p>29th October 2020</p>
<div class="title">
<a href="https://www.auckland.ac.nz/en/news/2020/10/29/serious-scientific-fun-a-winner-at-velocity.html">Serious scientific fun a winner at Velocity</a>
</div>
</div>
<!-- end of slide item -->
<div class="news-item swiper-slide">
<iframe id="player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="thumb" style="max-height: 295px; height: 295px; width: 100%; border-radius: 10px;"
src="https://www.youtube.com/embed/3rNzoGGSkbQ?enablejsapi=1">
</iframe>
<p>12 September 2020</p>
<div class="title">
<a href="https://youtu.be/3rNzoGGSkbQ">The Kiwrious journey: A Nation of Curious Mind funded project to inspire intermediate and junior high school students into science</a>
</div>
</div>
<div class="news-item swiper-slide">
<div class="thumb">
<img src="https://cdn.auckland.ac.nz/aem/content/auckland/en/news/2020/08/28/lab-in-a-pocket-makes-scientific-inquiry-fun/jcr:content/leftpar/imagecomponent_1520692501/image.img.1024.medium.jpg/1598434819671.png"/>
</div>
<p>30th August 2020</p>
<div class="title">
<a href="https://www.auckland.ac.nz/en/news/2020/08/28/lab-in-a-pocket-makes-scientific-inquiry-fun.html">‘Lab in a pocket’ awakens young minds to the world around them, making scientific inquiry fun</a>
</div>
</div>
<div class="news-item swiper-slide">
<div class="thumb">
<img src="img/news/news_2020_jun_10.jpg"/>
</div>
<p>10 June 2020</p>
<div class="title">
<a href="#">Visiting Kowhai Intermediate with our first prototype of the UV sensor</a>
</div>
</div>
</div>
<!-- If we need navigation buttons -->
<div class="swiper-button-prev"></div>
<div class="swiper-button-next"></div>
</div>
<div class="blog-btn-holder">
<a href="https://kiwrious.medium.com/" class="btn btn-link read-our-blog-btn" target="_blank">
Read Our Blog
</a>
</div>
</div>
<div class="footer">
<div class="top" id="team">
<h2>Our Team</h2>
<p>Kiwrious has been established by a multidisciplinary team at the University of Auckland headed by Associate Professor Suranga Nanayakkara from the Auckland Bioengineering Institute and Associate Professor Dawn Garbett from the Faculty of Education. Both of whom are world leaders in their respective fields.</p>
<div class="avatar-container row mx-0 px-0 mt-5">
<div class="avatar-block col-md-4">
<div class="avatar-thumb" data-toggle="modal" data-target="#suranga">
<img src="img/avatars/suranga.png" alt="Suranga" />
<img class="plus-icon" src="img/plus.svg" alt="Suranga" />
</div>
<h6>Suranga Nanayanakkara</h6>
<p>Founder</p>
<div class="social">
<a href="#">
<img src="img/icon_linkedin.svg"/>
</a>
</div>
</div>
<div class="avatar-block col-md-4">
<div class="avatar-thumb" data-toggle="modal" data-target="#dawn">
<img src="img/avatars/dawn.png" alt="Dawn" />
<img class="plus-icon" src="img/plus.svg" alt="Dawn" />
</div>
<h6>Dawn Garbett</h6>
<p>Education Leader</p>
<div class="social">
<a href="https://www.linkedin.com/in/dawn-garbett-a71a231b/" target="_blank">
<img src="img/icon_linkedin.svg" />
</a>
</div>
</div>
<div class="avatar-block col-md-4">
<div class="avatar-thumb" data-toggle="modal" data-target="#sonia">
<img src="img/avatars/sonia.png" alt="Sonia" />
<img class="plus-icon" src="img/plus.svg" alt="Sonia" />
</div>
<h6>Sonia Dupuch</h6>
<p>Business Development</p>
<div class="social">
<a href="https://www.linkedin.com/in/sonia-dupuch" target="_blank">
<img src="img/icon_linkedin.svg"/>
</a>
</div>
</div>
</div>
</div>
<div class="middle">
<img class="footer_combined_circuit d-none d-lg-flex" src="img/graphics/Footer_Left.png"/>
<img class="footer_combined_circuit_right d-none d-lg-flex" src="img/graphics/Footer_Right.png"/>
<a class="btn btn-outline-light meet-team-btn" href="/team.html">
Meet our team
</a>
<div class="subscribe-form" id="mc_embed_signup">
<h2>Subscribe for the latest news</h2>
<form action="https://Kiwrious.us17.list-manage.com/subscribe/post?u=fc1fff1af91e59f092c8e82ac&id=e13fb13097" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate register-form" target="_blank" novalidatedate>
<div class="form-group row px-0 mx-0">
<div class="col-sm-12 col-md-6">
<input type="text" class="form-control" placeholder="First Name" name="FNAME" id="mce-FNAME"/>
</div>
<div class="col-sm-12 col-md-6">
<input type="text" class="form-control" placeholder="Last Name" name="LNAME" id="mce-LNAME"/>
</div>
<div class="col-sm-12 col-md-12">
<input type="text" class="form-control full-width" placeholder="Enter your email" name="EMAIL" id="mce-EMAIL"/>
</div>
<div id="mce-responses" class="clear">
<div class="response" id="mce-error-response" style="display:none"></div>
<div class="response" id="mce-success-response" style="display:none"></div>
</div>
<input class="d-none" type="text" name="b_fc1fff1af91e59f092c8e82ac_e13fb13097" tabindex="-1" value=""/>
<div class="col-12">
<button type="submit" class="btn ripple" id="mc-embedded-subscribe">
Sign me Up
</button>
</div>
</div>
</form>
</div>
</div>
<div class="bottom">
<div class="content">
<a href="/" class="logo">
<img class="navbar-logo" src="img/Kiwrious_logo_white_wide.svg" alt="Kiwrious" />
</a>
<div class="links">
<a href="register.html">Register your interest</a>
<a href="/#news">News</a>
<a href="/#team">Our Team</a>
<a href="/#support">Support Us</a>
</div>
<div class="social">
<a href="https://www.facebook.com/Kiwrious" target="_blank">
</a>
<a href="https://twitter.com/kiwrious" target="_blank">
</a>
<a href="https://instagram.com/kiwrious" target="_blank">
</a>
<a href="https://www.youtube.com/channel/UCub9PeFM-4-FOD8LzRGACQQ" target="_blank">
</a>
</div>
</div>
<div class="copyright">
<p>2021 © Kiwrious Ltd.</p>
<a class="btn" id="privacyBtn" data-toggle="modal" data-target="#privacy-policy" href="#privacy-policy">Privacy Policy</a>