-
Notifications
You must be signed in to change notification settings - Fork 0
/
MITE-ECO.html
2118 lines (2059 loc) · 135 KB
/
MITE-ECO.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" class="style-green-2 custom-colors-enabled custom-primary-button-color-bright custom-accent-color-bright custom_fonts comps live_website">
<head>
<meta name="description" content="Stand-alone smart IoT humidity and Temperature real-time monitoring sensors. For industries and pharmacies. Temperature and humidity sensors. ">
<meta property="og:title" content="Accurate and Smart Real-Time Industrial Sensors for Precise Monitoring of Temperature and Humidity" />
<meta property="og:description" content="Real-time humidity and tempreture sensors for industrial and pharmacies" />
<meta property="og:image" content="upload/MITE-ECO_smart.png" />
<meta property="og:url" content="https://mite.club/" />
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Flexible Industrial IoT Platform">
<meta name="twitter:description" content="Real-time humidity and tempreture sensors for industrial and pharmacies">
<meta name="twitter:image" content="upload/MITE-ECO_smart.png"/>
<link rel="canonical" href="https://mite.club/MITE-ECO" />
<script>
document.addEventListener("DOMContentLoaded", function () {
fetch("header.html")
.then(response => response.text())
.then(data => {
const head = document.head;
const parser = new DOMParser();
const doc = parser.parseFromString(data, "text/html");
const metaTags = doc.head.children;
Array.from(metaTags).forEach(tag => {
head.appendChild(tag);
});
});
});
</script>
<!-- Minifying JavaScript defer>-->
<script src="https://mite.club/script.js" defer></script>
<!-- Defer FontAwesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" media="print" onload="this.media='all'">
<noscript>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css">
</noscript>
<title>Smart IoT devices for real-time monitoring. Temperature and humidity sensors</title>
</head>
<!-- background: linear-gradient(0deg, #fff 0%, rgba(255, 255, 255, 0) 100%);-->
<body class="custom-google-fonts-enabled comps" id="162060-494844">
<meta name="google-site-verification" content="0nAYvQx_LNSvdl-JMhAr2JcIod0xdUZrY7q5A51MeuU" />
<nav id="uni-navigation-bar" class="js-nav nav-02 ">
<div class="container container--max">
<div class="nav-02__box">
<div class="nav-02__logo">
<a class="nav-02__link" href="/" target="_blank" style="padding-right: 80px;">
<img class="nav-02__logo_img"
alt="Mite: The Future of Industrial IoT Platform"
style="height: 100px;"
src="upload/mite-logo-green-w_o-background.webp"
srcset="upload/mite-logo-green-w_o-background.webp?width=144&height=64 144w,
upload/mite-logo-green-w_o-background.webp?width=288&height=128 288w,
upload/mite-logo-green-w_o-background.webp?width=432&height=192 432w"
sizes="144px" />
</a>
</div>
<div class="nav-02__link js-menu">
<div class="nav-02__list_wrapper ">
<ul class="nav-02__list nav-02__list--desktop">
<div class="nav-02__item">
<button
class="button button--black-outline button--empty button--has-dropdown button--has-arrow js-toggle-dropdown ">
<span class="button__text">About us</span>
<span class="dropdown">
<ul class="dropdown__list">
<li class="dropdown__item">
<a href="/#MITEIoTplatform" target="_blank"
class="button button--empty button--black-outline">
<span class="button__text">Why MITE?</span>
</a>
</li>
<li class="dropdown__item">
<a href="/#IndustrialIoTPlatform" target="_blank"
class="button button--empty button--black-outline">
<span class="button__text">How MITE Works?</span>
</a>
</li>
<li class="dropdown__item">
<a href="/#miteHighlights" target="_blank"
class="button button--empty button--black-outline">
<span class="button__text">MITE Highlights</span>
</a>
</li>
<li class="dropdown__item">
<a href="/#HowtostartIoTJourney" target="_blank"
class="button button--empty button--black-outline">
<span class="button__text">How to start</span>
</a>
</li>
<li class="dropdown__item">
<a href="/#Reviews" target="_blank"
class="button button--empty button--black-outline">
<span class="button__text">Reviews</span>
</a>
</li>
<li class="dropdown__item">
<a href="/#FAQ" target="_blank"
class="button button--empty button--black-outline">
<span class="button__text">FAQ</span>
</a>
</li>
<li class="dropdown__item">
<a href="/#Fact" target="_blank"
class="button button--empty button--black-outline">
<span class="button__text">Fact</span>
</a>
</li>
</ul>
</span>
</button>
</div>
<li class="nav-02__item">
<button class="button button--black-outline button--empty button--has-dropdown button--has-arrow js-toggle-dropdown "><span
class="button__text">Services</span>
<span class="dropdown">
<ul class="dropdown__list">
<li class="dropdown__item">
<a href="/#miteHighlights" target="_blank"
class="button button--empty button--black-outline">
<span class="button__text">Industrial IoT platform</span>
</a>
</li>
<li class="dropdown__item">
<a href="/MITE-ECO.html" target="_blank"
class="button button--empty button--accent-outline">
<span class="button__text">Tempreture and Humidity sensors MITE-ECO</span>
</a>
</li>
<li class="dropdown__item">
<a href="https://mite.club/smart-devices" target="_blank"
class="button button--empty button--black-outline">
<span class="button__text">Industrial Smart Metering</span>
</a>
</li>
</ul>
</span>
</button>
</li>
<li class="nav-02__item">
<a class="button button--black-outline button--empty " href="#contactUs"
target="_blank"><span class="button__text">Price</span>
</a>
</li>
<li class="nav-02__item">
<a class="button button--black-outline button--empty " href="#contact_us"
target="_blank"><span class="button__text">Contact Us</span>
</a>
</li>
<li class="nav-02__item">
<div class="buttons-set">
<ul class="buttons-set__list">
<li class="buttons-set__item">
<a data-stripe-product-id="" data-stripe-mode="payment"
data-successful-payment-url="" data-cancel-payment-url=""
class="button button--accent-bg "
href="https://booking.appointy.com/mite "
target="_blank"><span class="button__text">Get Started</span></a>
</li>
</ul>
</div>
</li>
<li class="nav-02__item">
<div class="lang-widget__wrapper lang-widget--gray lang-widget tab__button--active">
<ul class="lang-widget__current dropdown__list button--has-arrow button--empty js-lang-widget lang-widget--top_right button--has-dropdown js-toggle-dropdown">En 🇺🇸🇬🇧
<span class="state-opened-dropdown dropdown dropdown__item">
<li class="lang-widget__title">
<a href="/uk" target="_blank">
<span class="feature__link"><img src="upload/ua.webp" alt="Industrial IoT platform українською мовою"/> Укр</span>
</a>
</li>
<li class="lang-widget__title">
<a href="/ru" target="_blank">
<span class="feature__link"><img src="upload/ru.webp" alt="Industrial IoT platform на русском языке"/> Ру</span>
</a>
</li>
</span>
</ul>
</div>
</li>
</ul>
<ul class="nav-02__list nav-02__list--mobile">
<li class="nav-02__item">
<button
class="button button--black-outline button--empty button--has-dropdown button--has-arrow js-toggle-dropdown ">
<span class="button__text">About us</span>
<span class="dropdown">
<ul class="dropdown__list">
<li class="dropdown__item">
<a href="/#MITEIoTplatform" target="_blank"
class="button button--empty button--black-outline">
<span class="button__text">Why MITE?</span>
</a>
</li>
<li class="dropdown__item">
<a href="/#IndustrialIoTPlatform" target="_blank"
class="button button--empty button--black-outline">
<span class="button__text">How MITE Works?</span>
</a>
</li>
<li class="dropdown__item">
<a href="/#miteHighlights" target="_blank"
class="button button--empty button--black-outline">
<span class="button__text">MITE Highlights</span>
</a>
</li>
<li class="dropdown__item">
<a href="/#HowtostartIoTJourney" target="_blank"
class="button button--empty button--black-outline">
<span class="button__text">Features</span>
</a>
</li>
<li class="dropdown__item">
<a href="/#IoTFeature" target="_blank"
class="button button--empty button--black-outline">
<span class="button__text">How to start</span>
</a>
</li>
<li class="dropdown__item">
<a href="/#Reviews" target="_blank"
class="button button--empty button--black-outline">
<span class="button__text">Reviews</span>
</a>
</li>
<li class="dropdown__item">
<a href="/#FAQ" target="_blank"
class="button button--empty button--black-outline">
<span class="button__text">FAQ</span>
</a>
</li>
<li class="dropdown__item">
<a href="/#Fact" target="_blank"
class="button button--empty button--black-outline">
<span class="button__text">Fact</span>
</a>
</li>
</ul>
</span>
</button>
</li>
<li class="nav-02__item">
<button class="button button--black-outline button--empty button--has-dropdown button--has-arrow js-toggle-dropdown "><span
class="button__text">Services</span>
<span class="dropdown">
<ul class="dropdown__list">
<li class="dropdown__item">
<a href="/#miteHighlights" target="_blank"
class="button button--empty button--black-outline">
<span class="button__text">Industrial IoT platform</span>
</a>
</li>
<li class="dropdown__item">
<a href="/MITE-ECO.html" target="_blank"
class="button button--empty button--accent-outline">
<span class="button__text">Tempreture and Humidity sensors MITE-ECO</span>
</a>
</li>
<li class="dropdown__item">
<a href="https://mite.club/smart-devices" target="_blank"
class="button button--empty button--black-outline">
<span class="button__text">Industrial Smart Metering</span>
</a>
</li>
</ul>
</span>
</button>
</li>
<li class="nav-02__item">
<a class="button button--black-outline button--empty " href="#contactUs"
target="_blank"><span class="button__text">Price</span>
</a>
</li>
<li class="nav-02__item">
<a class="button button--black-outline button--empty " href="#contact_us"
target="_blank"><span class="button__text">Contact Us</span>
</a>
</li>
<li class="nav-02__item">
<div class="buttons-set">
<ul class="buttons-set__list">
<li class="buttons-set__item">
<a data-stripe-product-id="" data-stripe-mode="payment"
data-successful-payment-url="" data-cancel-payment-url=""
class="button button--accent-bg "
href="https://booking.appointy.com/mite "
target="_blank"><span class="button__text">Get Started</span></a>
</li>
</ul>
</div>
<div class="nav-02__item">
<div class="lang-widget__wrapper lang-widget--gray lang-widget button--empty tab__button--active">
<ul class="lang-widget__current dropdown__list button--has-arrow button--empty js-lang-widget lang-widget--top_right button--has-dropdown js-toggle-dropdown ">En 🇺🇸🇬🇧
<span class="state-opened-dropdown dropdown dropdown__item">
<li class="lang-widget__title">
<a href="uk/index.html" target="_blank">
<span class="feature__link"><img src="upload/ua.webp" alt="Industrial IoT platform українською мовою"/> Укр</span>
</a>
</li>
<li class="lang-widget__title">
<a href="/ru" target="_blank">
<span class="feature__link"><img src="upload/ru.webp" class="link_green" alt="Industrial IoT platform на русском языке"/> Ру</span>
</a>
</li>
</span>
</ul>
</div>
</div>
</li>
</ul>
</div>
<div class="nav-02__burger">
<button class="burger burger--black js-open-menu" type="button" aria-label="Open the MITE IoT platform menu">
<div class="burger__box">
<div class="burger__inner"></div>
</div>
</button>
</div>
</div>
</div>
</div>
</nav>
<div class="page-component__bg_image_box bg-light_gray-color first_component page-component__bg_image_box--has-imaget" id="Smart device MITE-ECO">
<div class="page-component__bg_overlay_box " >
</div>
<div class="page-component__wrapper" style="z-index: 16;" id="">
<header class="header-27">
<div class="container header-27__container">
<h1 class="heading ">MITE-ECO - a range of Smart Devices For Real-Time Monitoring of Temperature and Humidity</h1>
<div class="title-box__text ">
<p>Unleash the Power of MITE-ECO: Precision, Customization, and Real-Time Insights Designed to Meet Every Unique Monitoring Challenge</p>
</div>
</div>
<div class="container container--max">
<div class="posts-02__wrapper">
<div class="posts-02__item ">
<div class="posts-02__text ">
<div class="posts-02__img_box">
<title>Customizable Enclosures</title>
<span class="feature-icon" aria-label="Customizable Enclosures - MITE-ECO sensors with flexible enclosures">
<i class="fal fa-cubes" title="Customizable Enclosures"></i>
</span>
<!--<i class="fal fa-cubes feature-icon" aria-label="Customizable Enclosures - MITE-ECO sensors with flexible enclosures" title="Customizable Enclosures"></i> -->
</div>
<h3 class="posts-02__title ">Customizable Enclosures</h3>
<div class="posts-02__info ">From basic, cost-effective cases to dust-proof, vandal-resistant, and waterproof designs.
Our devices come in various forms to suit the environment, whether it’s a standard indoor setting or a rugged industrial site requiring durable, protected enclosures. Develop for hassle-free insallation.
</div>
</div>
<div class="feature__button_box">
<a data-stripe-product-id="" data-stripe-mode="payment"
data-successful-payment-url="" data-cancel-payment-url=""
class="button button--empty button--accent-outline" href="https://app.mite.club/" target="_blank">
<span class="button__text">Try</span>
<span class="icon">
<svg viewBox="0 0 13 10" xmlns="http://www.w3.org/2000/svg">
<path
d="M12.823 4.164L8.954.182a.592.592 0 0 0-.854 0 .635.635 0 0 0 0 .88l2.836 2.92H.604A.614.614 0 0 0 0 4.604c0 .344.27.622.604.622h10.332L8.1 8.146a.635.635 0 0 0 0 .88.594.594 0 0 0 .854 0l3.869-3.982a.635.635 0 0 0 0-.88z"
fill-rule="nonzero" fill="#00396B"></path>
</svg>
</span>
</a>
</div>
</div>
<div class="posts-02__item ">
<div class="posts-02__text ">
<div class="posts-02__img_box">
<title>Flexible Connectivity</title>
<span class="feature-icon" aria-label="Flexible Connectivity - Multiple communication options for MITE-ECO sensors">
<i class="fal fa-signal" title="Flexible Connectivity"></i>
</span>
<!--<i class="fal fa-signal feature-icon" aria-label="Flexible Connectivity - Multiple communication options for MITE-ECO sensors" title="Flexible Connectivity"></i> -->
</div>
<h3 class="posts-02__title ">Flexible Connectivity</h3>
<div class="posts-02__info ">Supports 2G/3G/4G, Wi-Fi, NB-IoT, Ethernet—choose based on coverage.
We offer multiple communication standards, ensuring reliable data transmission, regardless of your location or network infrastructure.</div>
</div>
<div class="feature__button_box">
<a data-stripe-product-id="" data-stripe-mode="payment"
data-successful-payment-url="" data-cancel-payment-url=""
class="button button--empty button--accent-outline" href="https://app.mite.club/" target="_blank">
<span class="button__text">Try</span>
<span class="icon">
<svg viewBox="0 0 13 10" xmlns="http://www.w3.org/2000/svg">
<path
d="M12.823 4.164L8.954.182a.592.592 0 0 0-.854 0 .635.635 0 0 0 0 .88l2.836 2.92H.604A.614.614 0 0 0 0 4.604c0 .344.27.622.604.622h10.332L8.1 8.146a.635.635 0 0 0 0 .88.594.594 0 0 0 .854 0l3.869-3.982a.635.635 0 0 0 0-.88z"
fill-rule="nonzero" fill="#00396B"></path>
</svg>
</span>
</a>
</div>
</div>
<div class="posts-02__item ">
<div class="posts-02__text ">
<div class="posts-02__img_box">
<title>Adaptable Power Options</title>
<span class="feature-icon" aria-label="Adaptable Power Options - MITE-ECO sensors can be powered via mains or rechargeable batteries">
<i class="fal fa-plug" title="Adaptable Power Options"></i>
</span>
<!--<i class="fal fa-plug feature-icon" aria-label="Adaptable Power Options - MITE-ECO sensors can be powered via mains or rechargeable batteries" title="Adaptable Power Options"></i>-->
</div>
<h3 class="posts-02__title ">Adaptable Power Options</h3>
<div class="posts-02__info ">Power via outlets or long-lasting rechargeable batteries.
Choose the most suitable power source, from mains electricity for stable environments to high-capacity batteries for remote operations.</div>
</div>
<div class="feature__button_box">
<a data-stripe-product-id="" data-stripe-mode="payment"
data-successful-payment-url="" data-cancel-payment-url=""
class="button button--empty button--accent-outline" href="https://app.mite.club/" target="_blank">
<span class="button__text">Try</span>
<span class="icon">
<svg viewBox="0 0 13 10" xmlns="http://www.w3.org/2000/svg">
<path
d="M12.823 4.164L8.954.182a.592.592 0 0 0-.854 0 .635.635 0 0 0 0 .88l2.836 2.92H.604A.614.614 0 0 0 0 4.604c0 .344.27.622.604.622h10.332L8.1 8.146a.635.635 0 0 0 0 .88.594.594 0 0 0 .854 0l3.869-3.982a.635.635 0 0 0 0-.88z"
fill-rule="nonzero" fill="#00396B"></path>
</svg>
</span>
</a>
</div>
</div>
<div class="posts-02__item ">
<div class="posts-02__text ">
<div class="posts-02__img_box">
<title>Wide Measurement Range</title>
<span class="feature-icon" aria-label="Wide measurement range for temperature and humidity.">
<i class="fal fa-thermometer-half" title="Wide Measurement Range"></i>
</span>
<!--<i class="fal fa-thermometer-half feature-icon" aria-label="Wide measurement range for temperature and humidity." title="Wide Measurement Range"></i> -->
</div>
<h3 class="posts-02__title ">Wide Measurement Range</h3>
<div class="posts-02__info ">Measures temperature and humidity across wide ranges.
Our sensors can handle extreme conditions, measuring temperatures from -40°C to 80°C and humidity in varied environments.</div>
</div>
<div class="feature__button_box">
<a data-stripe-product-id="" data-stripe-mode="payment"
data-successful-payment-url="" data-cancel-payment-url=""
class="button button--empty button--accent-outline" href="https://app.mite.club" target="_blank">
<span class="button__text">Try</span>
<span class="icon">
<svg viewBox="0 0 13 10" xmlns="http://www.w3.org/2000/svg">
<path
d="M12.823 4.164L8.954.182a.592.592 0 0 0-.854 0 .635.635 0 0 0 0 .88l2.836 2.92H.604A.614.614 0 0 0 0 4.604c0 .344.27.622.604.622h10.332L8.1 8.146a.635.635 0 0 0 0 .88.594.594 0 0 0 .854 0l3.869-3.982a.635.635 0 0 0 0-.88z"
fill-rule="nonzero" fill="#00396B"></path>
</svg>
</span>
</a>
</div>
</div>
<div class="posts-02__item ">
<div class="posts-02__text ">
<div class="posts-02__img_box">
<title>Unlimited Customization</title>
<span class="feature-icon" aria-label="Unlimited Customization - No-code for custom reports and graphs. Easy customization without programming">
<i class="fal fa-chart-line" title="Unlimited Customization"></i>
</span>
<!--<i class="fal fa-chart-line feature-icon" aria-label="Unlimited Customization - No-code for custom reports and graphs. Easy customization without programming" title="Unlimited Customization"></i>-->
</div>
<h3 class="posts-02__title " >Unlimited Customization</h3>
<div class="posts-02__info ">No-code interfaces with customizable graphs and reports at your fingertips.
Our platform allows you to create and modify reports effortlessly, tailoring them to your specific requirements without the need for programming.
</div>
</div>
<div class="feature__button_box">
<a data-stripe-product-id="" data-stripe-mode="payment"
data-successful-payment-url="" data-cancel-payment-url=""
class="button button--empty button--accent-outline" href="https://app.mite.club" target="_blank">
<span class="button__text">Dominate now</span>
<span class="icon">
<svg viewBox="0 0 13 10" xmlns="http://www.w3.org/2000/svg">
<path
d="M12.823 4.164L8.954.182a.592.592 0 0 0-.854 0 .635.635 0 0 0 0 .88l2.836 2.92H.604A.614.614 0 0 0 0 4.604c0 .344.27.622.604.622h10.332L8.1 8.146a.635.635 0 0 0 0 .88.594.594 0 0 0 .854 0l3.869-3.982a.635.635 0 0 0 0-.88z"
fill-rule="nonzero" fill="#00396B"></path>
</svg>
</span>
</a>
</div>
</div>
<div class="posts-02__item ">
<div class="posts-02__text ">
<div class="posts-02__img_box">
<title>Expandable with Additional Sensors</title>
<span class="feature-icon" aria-label="Ability to expand with additional sensors like pressure or gas sensors.">
<i class="fal fa-project-diagram" title="Expandable with Additional Sensors"></i>
</span>
<!--<i class="fal fa-project-diagram feature-icon" aria-label="Ability to expand with additional sensors like pressure or gas sensors." title="Expandable with Additional Sensors"></i> -->
</div>
<h3 class="posts-02__title " >Expandable with Additional Sensors</h3>
<div class="posts-02__info ">Easily integrate pressure, gas, or other sensors.
If your application requires more data, we can seamlessly add additional sensors, like gas or pressure sensors, to meet your unique needs.
</div>
</div>
<div class="feature__button_box">
<a data-stripe-product-id="" data-stripe-mode="payment"
data-successful-payment-url="" data-cancel-payment-url=""
class="button button--empty button--accent-outline" href="https://app.mite.club" target="_blank">
<span class="button__text">Dominate now</span>
<span class="icon">
<svg viewBox="0 0 13 10" xmlns="http://www.w3.org/2000/svg">
<path d="M12.823 4.164L8.954.182a.592.592 0 0 0-.854 0 .635.635 0 0 0 0 .88l2.836 2.92H.604A.614.614 0 0 0 0 4.604c0 .344.27.622.604.622h10.332L8.1 8.146a.635.635 0 0 0 0 .88.594.594 0 0 0 .854 0l3.869-3.982a.635.635 0 0 0 0-.88z"
fill-rule="nonzero" fill="#00396B"></path>
</svg>
</span>
</a>
</div>
</div>
<div class="posts-02__item ">
<div class="posts-02__text ">
<div class="posts-02__img_box">
<title>Certified for Industrial Use</title>
<span class="feature-icon" aria-label="Certified for Industrial Use - MITE-ECO sensors meet industrial standards">
<i class="fal fa-certificate" title="Certified for Industrial Use"></i>
</span>
<!--<i class="fal fa-certificate feature-icon" aria-label="Certified for Industrial Use - MITE-ECO sensors meet industrial standards" title="Certified for Industrial Use"></i> -->
</div>
<h3 class="posts-02__title " >Certified for Industrial Use</h3>
<div class="posts-02__info ">Registered in the national measuring instrument registry and certified for industries like pharma.
These devices are fully compliant with industrial standards, ensuring accuracy, reliability, and traceability for regulated sectors such as pharmaceuticals. </div>
</div>
<div class="feature__button_box">
<a data-stripe-product-id="" data-stripe-mode="payment"
data-successful-payment-url="" data-cancel-payment-url=""
class="button button--empty button--accent-outline" href="https://app.mite.club" target="_blank">
<span class="button__text">Dominate now</span>
<span class="icon">
<svg viewBox="0 0 13 10" xmlns="http://www.w3.org/2000/svg">
<path
d="M12.823 4.164L8.954.182a.592.592 0 0 0-.854 0 .635.635 0 0 0 0 .88l2.836 2.92H.604A.614.614 0 0 0 0 4.604c0 .344.27.622.604.622h10.332L8.1 8.146a.635.635 0 0 0 0 .88.594.594 0 0 0 .854 0l3.869-3.982a.635.635 0 0 0 0-.88z"
fill-rule="nonzero" fill="#00396B"></path>
</svg>
</span>
</a>
</div>
</div>
<div class="posts-02__item ">
<div class="posts-02__text ">
<div class="posts-02__img_box">
<title>Two-Way Communication</title>
<span class="feature-icon" aria-label="Two-Way Communication - Remotely control sensor settings and data transmission">
<i class="fal fa-exchange-alt" title="Two-Way Communication"></i>
</span>
<!--<i class="fal fa-exchange-alt feature-icon" aria-label="Two-Way Communication - Remotely control sensor settings and data transmission" title="Two-Way Communication"></i> -->
</div>
<h3 class="posts-02__title " >Two-Way Communication </h3>
<div class="posts-02__info ">Remotely control data transmission frequency and measurement intervals. Adjust sensor settings or measurement intervals remotely, giving you full control of your data collection and device management. All data is instantly transmitted and accessible on our platform, ensuring real-time monitoring and management.
</div>
</div>
<div class="feature__button_box">
<a data-stripe-product-id="" data-stripe-mode="payment"
data-successful-payment-url="" data-cancel-payment-url=""
class="button button--empty button--accent-outline" href="https://app.mite.club" target="_blank">
<span class="button__text">Dominate now</span>
<span class="icon">
<svg viewBox="0 0 13 10" xmlns="http://www.w3.org/2000/svg">
<path
d="M12.823 4.164L8.954.182a.592.592 0 0 0-.854 0 .635.635 0 0 0 0 .88l2.836 2.92H.604A.614.614 0 0 0 0 4.604c0 .344.27.622.604.622h10.332L8.1 8.146a.635.635 0 0 0 0 .88.594.594 0 0 0 .854 0l3.869-3.982a.635.635 0 0 0 0-.88z"
fill-rule="nonzero" fill="#00396B"></path>
</svg>
</span>
</a>
</div>
</div>
</div>
<div class="bottom_cta">
</div>
</div>
</header>
</div>
</div>
<div id="HowtostartIoTMITEJorney" class="page-component__bg_image_box steps-03" >
<div class="page-component__bg_overlay_box ">
</div>
<div class="page-component__wrapper" style="z-index: 112;">
<div class="container">
<div class="title-box">
<h2 class="heading">Still Doubting if MITE-ECO is Right for You? Why Choose MITE-ECO?</h2>
<div class="title-box__text"><p>Explore Our Risk-Free Options to See How <br> MITE-ECO Can Meet Your Business Challenges
</div>
</div>
<!--<div class="container">
<ul class="header-27__links">
<li class="header-27__item">
<div class="header-27__emoji">
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80" aria-labelledby="boxCheckDesc">
<title id="boxCheckDesc">Try MITE-ECO with No Commitments</title>
<desc>MITE-ECO devices with no obligations.</desc>
<rect x="10" y="30" width="60" height="40" rx="5" ry="5" fill="#54c54a"/>
<polygon points="10,30 40,10 70,30" fill="#54c54a"/>
<polyline points="25,55 35,65 55,45" stroke="white" stroke-width="5" fill="none"/>
</svg>
<h3 class="header-27__title">Try MITE-ECO easily. Cancel Anytime</h3>
</div>
<div class="header-27__info content_box">
<p>You can easily order our devices and use them in your environment. If you're not satisfied, you’re free to cancel the contract at any time—no obligations, no long-term commitment.
</p>
</div>
<div class="header-27__link">
<a data-stripe-product-id="" data-stripe-mode="payment" data-successful-payment-url=""
data-cancel-payment-url="" class="button button--empty button--accent-outline"
href="#miteHighlights" target="_blank">
<span class="button__text">Learn more</span>
<span class="icon">
<svg viewBox="0 0 13 10" xmlns="http://www.w3.org/2000/svg">
<path
d="M12.823 4.164L8.954.182a.592.592 0 0 0-.854 0 .635.635 0 0 0 0 .88l2.836 2.92H.604A.614.614 0 0 0 0 4.604c0 .344.27.622.604.622h10.332L8.1 8.146a.635.635 0 0 0 0 .88.594.594 0 0 0 .854 0l3.869-3.982a.635.635 0 0 0 0-.88z"
fill-rule="nonzero" fill="#00396B"></path>
</svg>
</span>
</a>
</div>
</li>
<li class="header-27__item">
<div class="header-27__emoji">
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80" aria-labelledby="monitorGearDesc">
<title id="monitorGearDesc">MITE Personalized Demo</title>
<desc>request a personalized demo of the MITE-ECO system.</desc>
<rect x="10" y="20" width="60" height="40" rx="5" ry="5" fill="#54c54a"/>
<circle cx="40" cy="40" r="10" fill="white"/>
<circle cx="40" cy="40" r="5" fill="#54c54a"/>
</svg>
<h3 class="header-27__title">Personalized Demo</h3>
</div>
<div class="header-27__info content_box">
<p>Get a live demo of the MITE-ECO system, where we’ll walk you through its capabilities and quickly tailor it to fit your specific requirements. See how easily it can be customized to your needs.</p>
</div>
<div class="header-27__link" >
<a data-stripe-product-id="" data-stripe-mode="payment" data-successful-payment-url=""
data-cancel-payment-url="" class="button button--empty button--accent-outline"
href="#miteHighlights" target="_blank">
<span class="button__text">Learn more</span>
<span class="icon">
<svg viewBox="0 0 13 10" xmlns="http://www.w3.org/2000/svg">
<path
d="M12.823 4.164L8.954.182a.592.592 0 0 0-.854 0 .635.635 0 0 0 0 .88l2.836 2.92H.604A.614.614 0 0 0 0 4.604c0 .344.27.622.604.622h10.332L8.1 8.146a.635.635 0 0 0 0 .88.594.594 0 0 0 .854 0l3.869-3.982a.635.635 0 0 0 0-.88z"
fill-rule="nonzero" fill="#00396B"></path>
</svg>
</span>
</a>
</div>
</li>
<li class="header-27__item">
<div class="header-27__emoji">
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80" aria-labelledby="puzzleHandDesc">
<title id="puzzleHandDesc">Customization challenge Free</title>
<desc>free customization of MITE-ECO based on your challenges.</desc>
<rect x="25" y="45" width="30" height="25" rx="5" ry="5" fill="#54c54a" />
<path d="M40 35 h10 v5 h5 v10 h-5 v5 h-10 v-5 h-5 v-10 h5 v-5z" fill="none" stroke="#54c54a" stroke-width="3" />
<line x1="45" y1="35" x2="45" y2="45" stroke="#54c54a" stroke-width="2" stroke-dasharray="4" />
</svg>
<h3 class="header-27__title">Customization challenge Free</h3>
</div>
<div class="header-27__info content_box">
<p>Share your unique tasks or challenges with us, and we’ll pre-configure the MITE-ECO system for your specific processes. Experience the system in action, tailored to your workflow, before you commit. Free</p>
</div>
<div class="header-27__link">
<a data-stripe-product-id="" data-stripe-mode="payment" data-successful-payment-url=""
data-cancel-payment-url="" class="button button--empty button--accent-outline"
href="#miteHighlights" target="_blank">
<span class="button__text">Learn more</span>
<span class="icon">
<svg viewBox="0 0 13 10" xmlns="http://www.w3.org/2000/svg">
<path
d="M12.823 4.164L8.954.182a.592.592 0 0 0-.854 0 .635.635 0 0 0 0 .88l2.836 2.92H.604A.614.614 0 0 0 0 4.604c0 .344.27.622.604.622h10.332L8.1 8.146a.635.635 0 0 0 0 .88.594.594 0 0 0 .854 0l3.869-3.982a.635.635 0 0 0 0-.88z"
fill-rule="nonzero" fill="#00396B"></path>
</svg>
</span>
</a>
</div>
</li>
</ul>
</div>-->
<div class="container">
<!-- Smart IoT Sensor -->
<ul class="header-27__links">
<!-- Try MITE-ECO Easily -->
<li class="header-27__item">
<div class="header-27__emoji">
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 1024 1024" aria-labelledby="boxCheckDesc">
<title id="boxCheckDesc">Try MITE-ECO with No Commitments</title>
<desc>MITE-ECO devices with no obligations.</desc>
<g transform="translate(0.000000,1024.000000) scale(0.100000,-0.100000)"
fill="#54c54a" stroke="none">
<path d="M3725 9001 c-35 -9 -56 -20 -150 -76 -39 -23 -140 -83 -225 -132 -85
-49 -373 -217 -640 -373 -887 -517 -1034 -602 -1195 -695 -88 -51 -198 -115
-245 -142 -112 -65 -143 -107 -148 -203 -5 -82 -19 -55 208 -410 467 -732 545
-853 573 -880 17 -16 82 -62 146 -101 64 -39 168 -104 231 -144 63 -40 214
-134 335 -210 121 -76 290 -183 375 -239 153 -100 155 -101 215 -101 74 0 104
19 166 105 24 33 46 60 49 60 3 0 17 -21 32 -48 15 -26 38 -59 51 -73 25 -26
25 -26 10 -90 -42 -179 42 -361 204 -441 57 -28 76 -32 145 -33 76 0 79 -1 85
-25 20 -84 107 -186 198 -233 47 -23 77 -31 136 -35 76 -4 77 -5 83 -35 18
-90 112 -198 213 -244 36 -17 81 -28 124 -31 l69 -5 24 -53 c35 -76 107 -148
185 -186 58 -29 76 -32 151 -33 75 0 93 4 152 32 88 41 156 106 192 182 28 57
30 59 61 54 40 -6 139 14 187 38 76 39 150 122 179 202 12 35 16 37 54 37 57
0 152 26 203 56 77 45 137 124 165 215 4 12 22 18 66 22 172 15 312 156 341
341 9 56 8 85 -5 152 -16 80 -16 83 3 102 27 27 82 108 82 121 0 22 16 8 60
-52 79 -108 145 -131 241 -84 26 12 192 116 370 230 178 114 437 278 574 363
258 159 306 198 361 291 15 27 134 215 264 418 331 518 405 635 424 672 35 70
11 188 -50 244 -16 14 -200 125 -409 246 -209 121 -526 304 -705 408 -179 103
-361 209 -405 235 -44 26 -183 107 -310 180 -126 73 -328 191 -448 262 -251
149 -287 161 -380 134 -75 -22 -120 -63 -189 -173 -31 -49 -111 -176 -178
-283 -292 -465 -433 -680 -442 -674 -281 174 -402 235 -467 234 -51 -1 -129
-37 -299 -139 -98 -59 -177 -100 -181 -95 -11 12 -245 380 -469 739 -205 328
-219 347 -275 374 -48 23 -128 33 -172 22z m82 -438 c101 -157 244 -385 343
-548 54 -88 118 -194 144 -235 25 -41 46 -79 46 -85 0 -6 -35 -31 -77 -55 -43
-24 -102 -59 -131 -78 l-53 -34 98 -63 c54 -35 119 -79 146 -100 l47 -37 83
45 c45 25 212 122 372 216 164 98 297 170 306 168 10 -3 73 -37 141 -77 141
-84 300 -177 475 -279 l122 -71 74 53 c41 28 107 72 146 96 39 24 71 46 71 50
-1 3 -59 40 -131 81 -93 54 -128 79 -126 91 5 18 196 332 384 629 71 113 145
231 164 262 l35 56 50 -27 c27 -15 195 -112 374 -216 179 -103 350 -202 380
-220 30 -17 170 -98 310 -180 140 -81 325 -188 410 -238 351 -204 514 -299
627 -368 l121 -72 -72 -111 c-142 -218 -292 -453 -376 -588 -30 -49 -57 -88
-61 -88 -3 0 -37 44 -76 98 -124 172 -434 595 -475 647 -144 184 -334 320
-496 354 -68 14 -206 14 -274 0 -106 -22 -148 -46 -958 -553 -85 -53 -161
-105 -168 -114 -7 -9 -18 -25 -25 -35 -11 -17 -15 -17 -70 9 -113 51 -137 54
-502 54 -381 0 -417 -5 -544 -67 -41 -20 -100 -61 -133 -91 l-58 -54 0 48 c0
54 -25 116 -60 153 -50 52 -888 569 -1005 620 -72 31 -91 35 -194 39 -142 6
-198 -6 -326 -68 -190 -91 -281 -191 -637 -690 -41 -58 -97 -135 -124 -171
-27 -37 -67 -92 -89 -123 -22 -31 -43 -56 -47 -56 -3 0 -32 42 -64 93 -32 50
-142 223 -244 382 -102 160 -189 295 -193 302 -5 7 29 32 95 71 57 32 168 97
248 144 80 47 269 157 420 245 727 423 1151 670 1315 766 99 59 181 106 183
107 1 0 28 -39 59 -87z m-533 -1227 c46 -14 366 -204 366 -218 0 -4 -21 -36
-47 -72 l-46 -64 -36 24 c-20 13 -96 61 -169 106 -185 115 -210 134 -229 172
-25 53 -14 66 55 66 32 0 80 -6 106 -14z m3835 8 c20 -4 31 -12 31 -24 0 -41
-50 -85 -200 -180 -85 -54 -174 -112 -197 -129 -23 -17 -44 -31 -47 -31 -2 0
-27 31 -55 70 l-51 70 42 27 c24 14 72 45 108 68 194 124 266 149 369 129z
m-3118 -427 c56 -37 94 -69 93 -78 -1 -14 -560 -764 -800 -1074 -47 -60 -89
-116 -94 -124 -6 -12 -26 -3 -104 48 l-95 63 56 77 c31 42 196 267 367 501
170 234 328 450 351 480 23 30 61 81 84 113 23 31 43 57 45 57 2 0 46 -28 97
-63z m2547 -199 c188 -253 451 -615 616 -846 49 -68 84 -127 80 -131 -37 -31
-178 -111 -184 -104 -5 4 -48 61 -97 125 -565 750 -803 1068 -805 1077 -3 11
169 131 189 131 7 0 97 -114 201 -252z m-858 -50 c41 -21 95 -49 120 -63 52
-28 77 -31 124 -11 l34 14 134 -177 c74 -97 166 -219 203 -271 38 -52 133
-182 212 -288 124 -166 142 -195 133 -212 -6 -11 -32 -54 -59 -95 l-47 -74
-55 33 c-30 18 -157 91 -284 161 -126 71 -322 181 -435 245 -478 271 -625 350
-657 350 -48 0 -111 -32 -204 -102 -46 -35 -131 -100 -189 -143 l-104 -80
-141 -3 c-139 -3 -140 -3 -164 22 l-23 25 48 68 c71 101 197 284 299 434 49
72 104 143 122 156 65 50 90 52 488 50 l370 -2 75 -37z m-1376 -87 c16 -18 11
-27 -119 -217 -169 -249 -195 -299 -195 -379 0 -139 108 -261 270 -305 28 -8
104 -12 203 -11 131 1 168 4 219 22 66 22 164 81 263 158 77 60 151 111 162
111 10 0 201 -106 823 -454 505 -283 517 -291 535 -327 33 -62 9 -131 -55
-164 -59 -31 -82 -21 -352 141 -31 19 -63 34 -71 34 -23 0 -47 -39 -47 -75 0
-56 12 -76 71 -116 65 -44 89 -80 89 -134 0 -78 -55 -135 -130 -135 -42 0 -65
10 -198 91 -109 65 -157 89 -172 84 -24 -7 -43 -65 -38 -115 2 -28 10 -38 42
-56 87 -49 117 -102 96 -173 -18 -65 -71 -104 -155 -115 -50 -7 -50 -7 -69 29
-55 102 -187 189 -306 201 -59 5 -70 10 -70 25 0 45 -44 131 -91 180 -63 65
-143 102 -230 107 l-66 4 -6 48 c-13 105 -100 219 -205 268 -60 28 -156 36
-232 19 -35 -7 -36 -6 -50 30 -21 60 -124 156 -195 182 -77 29 -170 30 -253 2
-74 -25 -78 -26 -85 -3 -4 9 -26 47 -50 83 l-45 66 129 174 c71 96 204 273
296 394 91 121 187 248 212 282 25 34 49 62 52 63 3 0 14 -8 23 -19z m-354
-1296 c52 -27 77 -98 54 -153 -21 -51 -41 -71 -85 -82 -46 -13 -104 8 -132 46
-79 108 44 250 163 189z m456 -230 c61 -40 79 -118 44 -190 -19 -39 -32 -52
-74 -71 -61 -28 -77 -29 -122 -8 -106 50 -76 238 46 287 23 9 79 0 106 -18z
m383 -335 c86 -35 94 -167 15 -229 -115 -90 -264 57 -181 180 40 61 98 78 166
49z m433 -327 c28 -25 48 -67 48 -99 0 -39 -35 -89 -77 -109 -90 -43 -194 50
-169 151 9 35 60 82 94 86 37 5 81 -8 104 -29z"fill="#54c54a"/>
<path d="M1935 5721 c-41 -10 -38 -9 -400 -224 -176 -104 -374 -221 -440 -260
-255 -149 -269 -162 -262 -260 5 -86 56 -143 135 -154 55 -7 112 20 377 182
268 163 370 224 389 231 14 5 16 -118 18 -1113 3 -1111 3 -1118 24 -1163 11
-25 37 -61 57 -80 39 -38 60 -50 1567 -955 547 -329 1123 -677 1280 -773 334
-205 367 -222 436 -222 90 0 100 5 539 273 127 77 392 238 590 357 198 120
423 256 500 302 452 274 819 496 880 533 476 285 747 453 777 482 20 20 46 58
58 85 21 49 21 51 20 1163 0 785 3 1115 10 1115 6 0 151 -84 322 -187 392
-237 384 -233 427 -233 50 1 130 47 153 90 25 46 21 134 -9 176 -13 18 -95 72
-210 139 -103 60 -332 194 -508 298 -227 134 -334 192 -370 199 -84 18 -133
-3 -401 -175 -131 -84 -419 -267 -639 -407 -220 -139 -416 -270 -435 -290 -19
-21 -48 -59 -65 -86 -34 -56 -128 -120 -690 -474 -254 -160 -333 -210 -475
-300 -85 -55 -189 -119 -230 -144 -87 -52 -132 -95 -157 -151 -17 -38 -18
-111 -23 -1218 -5 -1152 -5 -1179 -24 -1193 -33 -23 -64 -17 -81 16 -13 25
-15 167 -15 1168 0 1231 2 1192 -53 1273 -32 47 -95 90 -672 457 -431 274
-605 385 -712 456 -100 66 -153 115 -153 140 0 42 -86 105 -523 377 -249 156
-532 334 -629 396 -98 62 -196 122 -218 133 -46 24 -120 33 -165 21z m372
-533 c114 -72 285 -179 378 -238 306 -193 506 -321 740 -475 393 -260 1035
-679 1140 -744 118 -74 141 -94 166 -143 18 -36 19 -71 17 -1067 l-3 -1030
-85 52 c-125 77 -846 513 -1715 1037 -445 268 -786 477 -831 510 -20 14 -21
26 -24 180 -5 235 -1 2050 4 2050 2 0 98 -59 213 -132z m5843 -976 l0 -1109
-203 -126 c-193 -120 -289 -178 -697 -427 -96 -58 -251 -153 -345 -210 -93
-57 -361 -219 -595 -360 -234 -142 -511 -310 -617 -374 -105 -64 -194 -116
-197 -116 -3 0 -6 465 -6 1034 l0 1033 23 34 c14 21 76 69 162 126 77 50 309
203 515 338 619 407 818 537 1185 773 193 124 427 275 520 335 149 98 245 156
253 157 1 0 2 -499 2 -1108z" fill="#87ceeb"/>
<path d="M2373 4839 c-36 -14 -64 -34 -88 -63 -66 -81 -65 -64 -65 -730 -1
-380 3 -621 9 -656 32 -163 149 -304 361 -431 69 -42 298 -181 510 -309 776
-471 768 -466 873 -457 115 10 212 96 236 207 14 65 15 1038 1 1133 -18 122
-93 270 -188 370 -90 94 -302 231 -1137 732 -401 241 -409 244 -512 204z m244
-387 c318 -197 797 -489 1007 -613 169 -100 215 -142 260 -239 20 -44 21 -61
24 -564 3 -480 2 -518 -14 -512 -9 3 -170 99 -358 213 -187 114 -458 278 -601
364 -143 86 -278 170 -300 186 -46 34 -81 81 -95 132 -9 35 -15 1081 -6 1081
3 0 40 -22 83 -48z"fill="#ff6347"/>
<path d="M7725 4846 c-81 -26 -221 -109 -882 -530 -104 -66 -270 -172 -371
-235 -101 -64 -210 -137 -242 -163 -81 -66 -168 -198 -206 -313 l-29 -90 0
-540 0 -540 28 -60 c46 -98 124 -162 220 -179 48 -9 138 9 197 39 48 24 1139
695 1297 797 51 33 116 85 145 116 62 68 122 191 138 282 7 44 10 248 8 640
l-3 575 -23 51 c-53 116 -175 182 -277 150z m-165 -478 c105 -53 115 -135 35
-278 -26 -47 -167 -303 -312 -570 -146 -267 -280 -504 -299 -527 -92 -112
-242 -115 -345 -6 -79 83 -312 360 -327 388 -8 17 -15 51 -15 76 1 75 42 133
115 164 47 19 79 19 126 -1 49 -20 78 -49 179 -177 l86 -108 27 48 c15 26 134
247 264 491 133 247 251 454 267 469 58 55 130 66 199 31z" fill="#87ceeb"/>
</g>
</svg>
<h3 class="header-27__title">Try MITE-ECO Easily. Cancel Anytime</h3>
</div>
<div class="header-27__info content_box">
<p>You can easily order our devices and use them in your environment. If you're not satisfied, you’re free to cancel the contract at any time—no obligations, no long-term commitment.</p>
</div>
<div class="header-27__link">
<a class="button button--empty button--accent-outline" href="#miteHighlights" target="_blank">
<span class="button__text">Learn more</span>
<span class="icon">
<svg viewBox="0 0 13 10" xmlns="http://www.w3.org/2000/svg">
<path d="M12.823 4.164L8.954.182a.592.592 0 0 0-.854 0 .635.635 0 0 0 0 .88l2.836 2.92H.604A.614.614 0 0 0 0 4.604c0 .344.27.622.604.622h10.332L8.1 8.146a.635.635 0 0 0 0 .88.594.594 0 0 0 .854 0l3.869-3.982a.635.635 0 0 0 0-.88z" fill-rule="nonzero" fill="#00396B"></path>
</svg>
</span>
</a>
</div>
</li>
<!-- Personalized Demo -->
<li class="header-27__item">
<div class="header-27__emoji">
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 1024 1024" aria-labelledby="monitorGearDesc">
<title id="monitorGearDesc">MITE Personalized Demo</title>
<desc>Request a personalized demo of the MITE-ECO system.</desc>
<!-- MITE IoT personalized demo-->
<g transform="translate(0.000000,1024.000000) scale(0.100000,-0.100000)"
fill="#54c54a" stroke="none">
<path d="M1055 9562 c-16 -11 -36 -26 -43 -34 -10 -12 -13 -523 -14 -2506 l-3
-2490 25 -25 c34 -34 106 -45 148 -23 67 35 62 -129 62 1888 l0 1828 1230 0
c1064 0 1235 2 1266 15 35 14 526 478 551 520 17 27 16 80 -1 113 -8 15 -40
52 -73 82 -32 30 -148 141 -257 247 -110 106 -214 199 -231 207 -28 13 -175
15 -1151 15 -615 0 -1167 1 -1226 1 l-108 0 0 53 c0 59 -16 89 -60 112 -39 20
-79 19 -115 -3z m803 -557 c127 -38 195 -163 152 -279 -38 -100 -110 -145
-244 -152 -125 -7 -120 -14 -124 215 -3 181 -2 191 17 210 26 26 122 29 199 6z
m539 0 c28 -19 29 -39 3 -65 -17 -17 -33 -20 -110 -20 l-90 0 0 -40 0 -40 85
0 c82 0 85 -1 91 -25 11 -43 -10 -55 -97 -55 l-79 0 0 -45 0 -45 94 0 c100 0
126 -10 126 -49 0 -37 -28 -46 -154 -49 -170 -5 -160 -17 -164 204 -2 97 -1
187 2 199 8 33 41 42 160 44 83 1 115 -2 133 -14z m212 -4 c11 -11 42 -53 70
-94 28 -42 55 -78 60 -81 5 -3 28 24 52 61 69 106 96 133 134 133 56 0 59 -12
61 -219 2 -203 -5 -231 -51 -231 -37 0 -45 28 -45 166 l0 127 -49 -74 c-26
-41 -60 -85 -74 -98 l-27 -24 -36 38 c-19 21 -49 62 -66 92 -16 29 -33 53 -36
53 -4 0 -6 -54 -4 -121 3 -103 1 -124 -14 -140 -19 -22 -54 -25 -72 -7 -15 15
-17 390 -2 419 14 26 73 26 99 0z m744 5 c115 -47 168 -194 113 -311 -28 -60
-46 -77 -111 -106 -169 -75 -345 103 -281 284 43 118 170 179 279 133z" fill="#87ceeb"/>
<path d="M1740 8795 l0 -125 46 0 c50 0 107 28 119 58 22 54 24 75 8 113 -21
55 -59 79 -122 79 l-51 0 0 -125z" fill="#54c54a"/>
<path d="M3208 8900 c-35 -27 -51 -72 -45 -126 9 -84 86 -131 156 -95 85 44
96 171 19 225 -32 22 -100 20 -130 -4z" fill="#87ceeb"/>
<path d="M7435 9391 c-17 -4 -38 -12 -47 -17 -9 -5 -136 -123 -282 -262 -293
-280 -302 -292 -271 -363 12 -26 94 -110 250 -259 269 -255 296 -277 339 -285
17 -3 470 -5 1006 -3 l975 3 40 22 c22 12 51 38 65 59 l25 38 3 454 2 455 -24
53 c-17 37 -37 61 -67 81 l-43 28 -970 1 c-534 1 -985 -2 -1001 -5z m1866
-230 c18 -22 19 -47 19 -374 0 -312 -2 -352 -17 -369 -15 -17 -57 -18 -908
-18 l-891 0 -61 53 c-103 89 -363 331 -363 337 0 7 331 309 400 365 l36 30
884 -1 883 0 18 -23z" fill="#ff6347"/>
<path d="M8234 8956 c-17 -13 -19 -30 -22 -154 -4 -151 3 -182 41 -182 43 0
47 16 47 171 0 121 -3 150 -16 163 -19 20 -25 20 -50 2z" fill="#ff6347"/>
<path d="M8396 8949 c-17 -25 -17 -26 60 -187 62 -131 77 -152 109 -152 34 0
59 35 125 177 64 137 68 166 29 178 -32 10 -53 -17 -100 -130 -24 -58 -47
-105 -50 -105 -3 0 -27 50 -54 110 -56 129 -86 156 -119 109z"/>
<path d="M7891 8941 c-6 -11 -11 -76 -11 -148 0 -174 -1 -173 134 -173 105 0
126 7 126 42 0 26 -31 38 -99 38 -72 0 -70 -5 -74 150 l-2 105 -32 3 c-23 2
-34 -2 -42 -17z"/>
<path d="M8852 8948 c-18 -18 -17 -302 2 -317 9 -8 54 -11 132 -9 118 3 119 3
122 27 6 38 -22 51 -105 51 -71 0 -73 1 -73 25 0 24 3 25 58 25 73 0 99 8 105
30 9 35 -9 45 -93 48 -76 4 -80 5 -80 27 0 22 5 24 68 30 37 3 76 7 86 8 28 3
43 32 27 51 -11 13 -35 16 -125 16 -74 0 -116 -4 -124 -12z"/>
<path d="M5083 9223 c-21 -3 -43 -16 -62 -39 -41 -47 -44 -94 -9 -151 46 -76
164 -63 209 21 21 40 22 48 11 84 -19 63 -75 95 -149 85z"/>
<path d="M5891 9194 c-42 -35 -43 -84 -2 -125 l29 -29 136 0 c75 0 136 -3 136
-7 0 -10 -105 -120 -400 -420 -131 -133 -246 -253 -255 -267 l-17 -26 -565 0
c-579 0 -591 -1 -620 -39 -25 -32 -11 -100 26 -128 12 -9 181 -12 715 -13
l698 0 34 34 c39 39 45 89 19 140 -8 15 -15 35 -15 43 0 17 508 553 524 553 3
0 6 -47 6 -105 0 -57 5 -115 11 -129 25 -53 110 -58 149 -8 20 25 21 36 18
260 l-3 234 -33 29 -32 29 -264 0 -264 0 -31 -26z"/>
<path d="M5064 8756 c-77 -34 -101 -136 -46 -196 56 -63 163 -47 202 30 34 66
5 136 -66 166 -41 17 -50 17 -90 0z"/>
<path d="M1467 7971 c-72 -5 -91 -10 -103 -25 -21 -29 -17 -64 11 -91 22 -23
32 -25 119 -25 111 0 122 3 142 42 19 37 4 84 -30 93 -36 11 -49 11 -139 6z"/>
<path d="M1912 7971 c-77 -5 -96 -9 -108 -25 -21 -30 -17 -64 12 -93 25 -25
29 -25 126 -21 81 4 103 9 118 24 31 32 33 59 8 87 -29 32 -42 34 -156 28z"/>
<path d="M3545 7973 c-51 -14 -62 -88 -17 -123 35 -29 122 -24 154 7 26 27 26
69 0 95 -21 21 -96 33 -137 21z" fill="#87ceeb"/>
<path d="M3913 7966 c-37 -17 -51 -55 -34 -92 21 -46 109 -59 155 -23 32 25
36 77 7 103 -26 24 -89 29 -128 12z"/>
<path d="M8881 7961 c-27 -27 -27 -72 0 -97 17 -16 42 -20 143 -24 170 -7 213
-36 223 -153 10 -107 51 -150 109 -113 34 23 47 61 41 127 -9 106 -72 204
-162 252 -34 18 -61 22 -186 25 -139 4 -148 3 -168 -17z"/>
<path d="M2254 7962 c-21 -14 -34 -52 -28 -77 11 -45 44 -58 135 -53 70 3 83
6 100 27 23 28 24 59 3 89 -14 20 -23 22 -107 22 -51 0 -97 -4 -103 -8z"/>
<path d="M2646 7948 c-22 -31 -20 -71 5 -94 18 -16 37 -19 126 -18 98 0 107 2
124 23 23 28 24 59 3 89 -14 21 -23 22 -129 22 -106 0 -115 -1 -129 -22z"/>
<path d="M3080 7954 c-23 -27 -16 -75 15 -102 27 -23 34 -24 118 -20 83 4 92
6 113 32 29 33 30 60 4 86 -18 18 -33 20 -129 20 -86 0 -111 -3 -121 -16z"/>
<path d="M7820 7649 c-36 -4 -92 -17 -124 -28 -71 -25 -88 -26 -150 -5 -55 19
-72 14 -137 -38 -43 -35 -46 -47 -25 -128 l15 -55 -34 -60 c-18 -33 -45 -94
-60 -135 -23 -65 -26 -86 -22 -159 5 -75 10 -93 56 -186 l51 -102 -9 -69 c-9
-61 -8 -72 10 -101 24 -39 77 -73 112 -73 15 0 45 7 67 16 40 16 44 16 132
-11 138 -42 304 -34 411 22 25 13 33 13 65 0 78 -30 105 -30 151 3 59 43 67
66 53 150 -12 68 -11 71 16 117 65 112 82 165 82 256 0 73 -5 99 -31 163 -16
43 -42 97 -56 121 l-26 44 16 71 15 70 -40 44 c-23 25 -51 47 -64 50 -13 3
-52 -4 -86 -15 l-64 -21 -62 24 c-35 14 -84 28 -110 31 -26 3 -56 7 -67 9 -11
2 -49 -1 -85 -5z m168 -241 c80 -37 131 -129 117 -207 -10 -53 -38 -92 -105
-146 -50 -40 -60 -53 -60 -79 0 -41 -10 -55 -45 -61 -49 -10 -68 12 -68 77 0
68 5 77 78 136 70 56 90 89 75 126 -26 69 -117 81 -210 29 -46 -26 -49 -26
-74 -10 -44 29 -32 80 30 117 84 53 175 59 262 18z m-58 -568 c11 -11 20 -31
20 -45 0 -31 -41 -75 -70 -75 -29 0 -70 44 -70 75 0 34 33 65 70 65 17 0 39
-9 50 -20z" fill="#87ceeb"/>
<path d="M6890 7613 c-30 -11 -60 -47 -66 -79 l-6 -34 -2317 -2 -2316 -3 -56
-26 c-63 -30 -129 -103 -151 -167 -8 -26 -13 -156 -15 -439 l-4 -403 125 0
126 0 0 383 c0 374 1 384 20 402 12 11 35 21 53 23 82 10 917 12 917 2 0 -5
18 -10 40 -10 22 0 40 5 40 10 0 6 18 10 40 10 22 0 40 -5 40 -10 0 -6 7 -6
19 1 10 7 27 9 37 5 25 -10 142 -11 172 -1 19 6 22 4 22 -16 l0 -24 18 23 c14
18 20 20 30 10 6 -6 12 -8 12 -2 0 10 46 12 56 1 3 -3 15 -1 25 6 15 9 23 9
39 -1 25 -15 75 -16 99 0 15 9 29 9 62 -2 33 -11 43 -12 47 -2 4 14 233 6 242
-9 3 -4 17 -3 30 4 19 10 125 12 444 10 230 -1 421 -4 424 -7 3 -3 36 -3 74 1
62 5 68 4 69 -13 0 -15 2 -16 7 -4 8 16 29 19 50 7 7 -5 12 -3 12 3 0 9 33 11
120 8 66 -2 120 -1 120 2 0 3 19 4 42 3 142 -6 185 -6 195 0 6 4 19 0 27 -9 9
-8 16 -11 16 -6 0 5 28 10 63 11 34 1 124 4 200 6 92 4 144 2 158 -6 15 -8 23
-8 28 0 4 6 31 8 71 5 36 -3 141 -6 235 -6 116 -1 173 -5 181 -13 9 -8 13
-120 16 -401 l4 -389 26 -63 c15 -34 40 -83 57 -108 17 -25 27 -43 21 -39 -6
3 -7 -1 -4 -10 4 -8 14 -14 23 -13 9 2 15 -2 14 -8 -1 -6 4 -11 10 -11 17 0
67 -33 67 -44 0 -5 9 -9 20 -9 12 0 34 -7 51 -15 16 -9 35 -15 42 -13 6 1 22
-3 34 -10 14 -8 24 -9 28 -2 4 6 12 7 18 3 6 -4 183 -6 392 -6 275 1 382 -2
387 -11 6 -8 8 -8 8 2 0 6 12 12 28 12 23 0 32 8 49 44 12 24 36 60 53 80 l32
36 -103 0 c-915 4 -891 4 -934 27 -62 33 -113 92 -136 158 -20 57 -21 77 -20
581 1 483 0 523 -16 542 -19 23 -59 34 -83 25z"fill="#ff6347"/>
<path d="M9292 7460 c-27 -11 -42 -47 -42 -103 0 -72 7 -83 58 -95 26 -6 54
-13 63 -17 13 -5 17 5 22 59 9 92 0 130 -33 149 -32 19 -36 19 -68 7z"/>
<path d="M3730 7240 c0 -5 5 -10 10 -10 6 0 10 5 10 10 0 6 -4 10 -10 10 -5 0
-10 -4 -10 -10z"/>
<path d="M3910 7240 c0 -5 5 -10 10 -10 6 0 10 5 10 10 0 6 -4 10 -10 10 -5 0
-10 -4 -10 -10z"/>
<path d="M9165 7114 c-11 -3 -30 -7 -42 -9 -12 -3 -35 -18 -50 -34 -39 -40
-193 -101 -237 -94 -43 7 -81 -14 -134 -71 -41 -44 -42 -48 -37 -94 5 -39 0
-63 -29 -141 -19 -51 -45 -104 -57 -117 -12 -12 -25 -44 -30 -71 -8 -43 -6
-54 26 -122 20 -40 34 -75 33 -76 -2 -2 -44 -23 -94 -48 -77 -38 -97 -45 -131
-40 -38 5 -45 2 -88 -38 -55 -50 -79 -98 -70 -139 7 -33 -34 -139 -71 -183
-31 -37 -34 -135 -5 -175 46 -65 80 -156 78 -209 -2 -51 0 -54 50 -105 47 -47
57 -52 93 -51 45 2 113 -25 183 -73 27 -18 64 -36 83 -40 52 -10 121 4 153 31
45 39 155 84 199 82 30 -1 47 6 80 33 61 48 75 75 73 136 -1 51 23 117 79 214
21 37 27 95 10 105 -20 12 -9 22 30 28 22 3 53 16 70 30 16 14 46 31 67 38 21
6 60 23 86 36 33 16 58 22 76 18 34 -7 107 39 152 96 27 34 31 46 26 79 -6 45
41 172 89 242 24 35 29 51 29 103 0 52 -4 67 -29 99 -15 21 -43 75 -62 122
-29 72 -33 92 -28 137 6 47 3 56 -20 84 -15 17 -47 45 -73 62 -37 25 -53 30
-79 25 -23 -4 -53 2 -101 21 -37 14 -80 31 -95 37 -15 5 -30 18 -33 27 -2 9
-14 22 -25 28 -21 14 -113 25 -145 17z m110 -245 c93 -17 160 -52 221 -116
100 -105 150 -254 125 -375 -27 -130 -111 -247 -215 -300 -259 -131 -550 1
-622 283 -47 184 70 414 244 479 103 39 158 46 247 29z m-596 -811 c8 -18 37
-54 64 -80 42 -41 54 -48 90 -49 26 0 67 -12 107 -32 62 -31 66 -34 78 -82 16
-61 9 -135 -19 -209 -46 -125 -202 -216 -345 -203 -85 8 -142 35 -208 97 -77
73 -101 131 -101 245 0 78 4 97 28 147 35 71 119 150 190 177 77 30 99 27 116
-11z" fill="#ff6347"/>
<path d="M9129 6697 c-97 -36 -162 -108 -181 -201 -41 -196 153 -359 343 -287
95 36 162 119 174 217 13 95 -52 206 -149 256 -50 26 -140 33 -187 15z"/>
<path d="M4935 6976 c-68 -30 -80 -62 -96 -250 l-13 -146 -75 -25 c-42 -15
-96 -36 -121 -49 l-45 -22 -115 104 c-110 100 -158 132 -197 132 -63 0 -98
-24 -234 -157 -75 -74 -145 -149 -153 -168 -21 -43 -20 -117 0 -158 9 -18 56
-72 103 -122 123 -127 116 -114 82 -176 -16 -30 -39 -83 -51 -119 -13 -36 -27
-69 -32 -75 -5 -5 -73 -15 -152 -21 -226 -17 -236 -31 -236 -327 0 -282 9
-294 221 -308 181 -12 173 -9 189 -71 7 -29 30 -86 51 -127 l38 -73 -98 -108
c-55 -59 -106 -121 -115 -138 -22 -42 -20 -105 3 -150 26 -51 259 -278 304
-297 78 -32 159 -12 226 59 19 19 39 32 44 29 6 -3 8 -2 5 3 -3 5 25 34 61 65
l66 56 60 -29 c33 -16 84 -36 113 -44 29 -9 55 -21 57 -27 3 -7 9 -68 15 -137
11 -135 26 -179 74 -214 26 -20 41 -21 240 -21 l213 0 36 28 c46 35 63 92 73
239 l6 107 47 17 c25 9 76 30 113 46 36 15 71 28 76 28 8 0 196 -160 212 -181
15 -19 75 -39 118 -39 37 0 59 7 91 28 56 38 268 249 289 287 20 39 20 112 0
150 -9 17 -59 75 -112 130 -52 55 -95 106 -96 113 0 7 15 43 34 80 18 37 42
92 51 123 l18 57 131 7 c150 7 192 18 224 54 35 41 42 84 42 275 0 161 -2 183
-21 220 -36 72 -55 79 -223 91 l-149 10 -29 84 c-15 47 -39 107 -53 134 -30
56 -35 44 69 153 87 93 115 132 126 180 18 75 0 107 -138 247 -147 148 -194
181 -263 181 -63 0 -75 -8 -270 -192 l-37 -34 -108 42 c-60 23 -116 46 -124
50 -9 4 -16 24 -17 51 -9 151 -25 266 -44 295 -35 57 -64 64 -281 64 -138 -1