-
Notifications
You must be signed in to change notification settings - Fork 0
/
smart-devices.html
1107 lines (1073 loc) · 54.5 KB
/
smart-devices.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 class="style-green-2 custom-colors-enabled custom-primary-button-color-bright custom-accent-color-bright custom_fonts comps live_website" lang="en">
<head>
<!-- Meta Tags for SEO and Social Media -->
<meta name="description" content="Stand-alone smart IoT devices for monitoring. In-house development and production. For industries. Temperature and humidity sensors">
<meta property="og:title" content="Contract development, smart IoT monitoring devices" />
<meta property="og:description" content="Stand-alone smart IoT devices for monitoring. In-house development and production. For industries. Temperature and humidity sensors" />
<meta property="og:url" content="mite.club/smart-devices.html" />
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Contract development, smart IoT monitoring devices">
<meta name="twitter:description" content="Stand-alone smart IoT devices for monitoring. In-house development and production. For industries. Temperature and humidity sensors">
<meta name="twitter:image" content="/upload/mite_the_future_of_Industrial_IoT.webp">
<link rel="canonical" href="https://mite.club/smart-devices.html" />
<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>
<!-- Google Optimize (added before gtag.js to ensure Optimize runs correctly) -->
<script async src="https://www.googleoptimize.com/optimize.js?id=OPT-5R6SJ2X"></script>
<!-- Global Site Tag (gtag.js) - Google Analytics 4 -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WNZ8GSS8XE"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
// Initialize Google Analytics 4 with your Measurement ID
gtag('config', 'G-WNZ8GSS8XE');
// Optional: Configure Google Optimize if necessary
gtag('config', 'OPT-5R6SJ2X');
</script>
<!-- Предварительная загрузка Material Icons -->
<link rel="preload" href="https://fonts.googleapis.com/icon?family=Material+Icons" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons"></noscript>
<!-- Preload Font Awesome -->
<link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
</noscript>
<title>Contract development, smart IoT monitoring devices</title>
</head>
<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 platfrom" 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" />
<span class="nav-02__logo_text ">MITE - The Future of <br>Industrial IoT</span>
</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--black-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--accent-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="#IoTPlatformprice"
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--black-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--accent-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="#IoTPlatformprice"
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 Features">
<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 ">Smart IoT-devices for monitoring and controlling your business</h1>
<div class="title-box__text ">
<p>Smart IoT devices mite are installed in rooms,
cars or mounted directly into your equipment in order to control
the microclimate according to selected parameters:</p>
</div>
</div>
<div class="container container--max">
<ul class="steps-03__list">
<li class="steps-03__item steps-03__item--1-4">
<div class="steps-03__img_box">
<i class="material-icons">thermostat</i>
<div class="icons-text"><h3>Temperature</h3>
</div>
</li>
<li class="steps-03__item steps-03__item--1-4">
<div class="steps-03__img_box">
<i class="material-icons">scale</i>
</div>
<div class="icons-text"><h3>Volume, mass</h3>
</div>
</li>
<li class="steps-03__item steps-03__item--1-4">
<div class="steps-03__img_box">
<i class="fas fa-percent"></i>
</div>
<div class="icons-text"><h3>Humidity</h3>
</div>
</li>
<li class="steps-03__item steps-03__item--1-4">
<div class="steps-03__img_box">
<i class="fas fa-compress-arrows-alt"></i>
</div>
<div class="icons-text"><h3>Atmospheric <br>Pressure</h3>
</div>
</li>
</ul>
<ul class="steps-03__list">
<li class="steps-03__item steps-03__item--1-4">
<div class="steps-03__img_box">
<i class="material-icons">wb_incandescent</i>
</div>
<div class="icons-text"><h3>Illumination</h3>
</div>
</li>
<li class="steps-03__item steps-03__item--1-4">
<div class="steps-03__img_box">
<i class="material-icons">graphic_eq</i>
</div>
<div class="icons-text"><h3 >Sound <br>Frequency</h3>
</div>
</li>
<li class="steps-03__item steps-03__item--1-4">
<div class="steps-03__img_box">
<i class="fas fa-radiation"></i>
</div>
<div class="icons-text"><h3 >Radiation</h3>
</div>
</li>
<li class="steps-03__item steps-03__item--1-4">
<div class="steps-03__img_box">
<i class="material-icons">blur_on</i>
</div>
<div class="icons-text"><h3 >Dustiness</h3>
</div>
</li>
</ul>
<ul class="steps-03__list">
<li class="steps-03__item steps-03__item--1-4">
<div class="steps-03__img_box">
<i class="fas fa-bullhorn"></i>
</div>
<div class="icons-text"><h3>Industrial <br> noise</h3>
</div>
</li>
<li class="steps-03__item steps-03__item--1-4">
<div class="steps-03__img_box">
<i class="fas fa-magnet"></i>
</div>
<div class="icons-text"><h3>Magnetic <br>Field</h3>
</div>
</li>
<li class="steps-03__item steps-03__item--1-4">
<div class="steps-03__img_box">
<i class="fas fa-tint"></i>
</div>
<div class="icons-text"><h3>Leaks</h3>
</div>
</li>
<li class="steps-03__item steps-03__item--1-4">
<div class="steps-03__img_box">
<i class="fas fa-skull-crossbones"></i>
</div>
<div class="icons-text"><h3>Gases, <br>Toxic Fumes</h3>
</div>
</li>
</ul>
<ul class="steps-03__list">
<li class="steps-03__item steps-03__item--1-4">
<div class="steps-03__img_box">
<i class="material-icons">location_on</i>
</div>
<div class="icons-text"><h3>Coordinates</h3>
</div>
</li>
<li class="steps-03__item steps-03__item--1-4">
<div class="steps-03__img_box">
<i class="fas fa-tachometer-alt"></i>
</div>
<div class="icons-text"><h3>Tire Pressure</h3>
</div>
</li>
<li class="steps-03__item steps-03__item--1-4">
<div class="steps-03__img_box">
<i class="fas fa-smog"></i>
</div>
<div class="icons-text"><h3 >Air Quality <br>Index
</h3>
</div>
</li>
<li class="steps-03__item steps-03__item--1-4">
<div class="steps-03__img_box">
<i class="fas fa-wind"></i>
</div>
<div class="icons-text"><h3>Anemometer</h3></div>
</li>
</ul>
</div>
</header>
</div>
</div>
<div id="miteSmartDevices"class="page-component__bg_image_box bg-white-color features-01-parent" id="features-01-635331">
<div class="page-component__bg_overlay_box " ></div>
<div class="page-component__wrapper" style="z-index: 110;">
<div class="features-01">
<div class="container container">
<div class="title-box">
<h2 class="heading">Build devices specifically designed for your needs</h2>
<div class="title-box__text"><p><strong>Make better management decisions. </strong>
Rely on real, timely and complete data, accumulated statistics and adverse factor analysis,
rather than the intuition or word of mouth of your employees.</p></div>
</div>
</div>
<div class="container">
<ul class="features-01__items">
<li class="features-01__item">
<div class="feature ">
<h3 class="feature__title">
<div class="feature__icon">
<span class="icon"
data="{'type': 'abstractIcon', 'emojiSrc': '1f4f6.svg', 'uploadedSrc': '', 'lineaIconSrc': '', 'abstractIconId': '1', 'uploadedHeight': 30}">
<svg width="40" height="40" viewBox="0 0 40 40"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<path id="a" d="M5 20h30v30H5z" />
</defs>
<g fill="none" fill-rule="evenodd">
<circle fill="#E9F1FF" class="fill-bg-light" cx="20" cy="20" r="20" />
<path fill="#4D61FC" class="fill-main" d="M20 10c5.5 0 10 4.5 10 10s-4.5 10-10 10-10-4.5-10-10 4.5-10 10-10zm0 4c-3.3 0-6 2.7-6 6s2.7 6 6 6 6-2.7 6-6-2.7-6-6-6z"/>
<g transform="translate(10 10)">
<use fill="#00396B" class="fill-secondary" xlink:href="#a" />
<path stroke="#E9F1FF" class="stroke-light fill-secondary" d="M10 20c0-5.5-4.5-10-10-10"/>
</g>
</g>
</svg>
</span>
</div>
<span class="feature__title_text">
Wired and <br>wireless
</span>
</h3>
<div class="feature__content">
<span class="feature__content_text content_box">
Powered by wall, batteries, rechargeable batteries, cigarette lighter or built into current equipment. Wireless sensor operates from a year.
</span>
</div>
</div>
</li>
<li class="features-01__item">
<div class="feature ">
<h3 class="feature__title">
<div class="feature__icon">
<span class="icon"
data="{'type': 'abstractIcon', 'emojiSrc': '', 'uploadedSrc': '', 'lineaIconSrc': '', 'abstractIconId': '3', 'uploadedHeight': 30}">
<svg width="40" height="40" viewBox="0 0 40 40"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<path id="a" d="M0 0h12v12H0z" />
</defs>
<g fill="none" fill-rule="evenodd">
<circle fill="#E9F1FF" class="fill-bg-light" cx="20" cy="20" r="20" />
<g transform="translate(8 8)">
<use fill="#4D61FC" class="fill-main" xlink:href="#a" />
<path stroke="#00396B" class="stroke-secondary" d="M1 1h10v10H1z" />
</g>
<g transform="translate(20 8)">
<use fill="#FFCE00" class="fill-main" xlink:href="#a" />
<path stroke="#00396B" class="stroke-secondary" d="M1 1h10v10H1z" />
</g>
<g transform="translate(8 20)">
<use fill="#00C853" class="fill-main" xlink:href="#a" />
<path stroke="#00396B" class="stroke-secondary" d="M1 1h10v10H1z" />
</g>
<g transform="translate(20 20)">
<use fill="#FF3D00" class="fill-main" xlink:href="#a" />
<path stroke="#00396B" class="stroke-secondary" d="M1 1h10v10H1z" />
</g>
</g>
</svg>
</span>
</div>
<span class="feature__title_text">
In various <br>body materials
</span>
</h3>
<div class="feature__content">
<span class="feature__content_text content_box">
Vandal resistant, dustproof, weather and chemical resistant.
</span>
</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="/" 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>-->
</div>
</li>
<li class="features-01__item">
<div class="feature ">
<h3 class="feature__title">
<div class="feature__icon">
<span class="icon"
data="{'type': 'abstractIcon', 'emojiSrc': '', 'uploadedSrc': '', 'lineaIconSrc': '', 'abstractIconId': '5', 'uploadedHeight': 30}">
<svg width="40" height="40" viewBox="0 0 40 40"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<path id="a" d="M20 10h10v10H20z" />
</defs>
<g fill="none" fill-rule="evenodd">
<circle fill="#E9F1FF" class="fill-bg-light" cx="20" cy="20" r="20" />
<g transform="translate(10 10)">
<path d="M15 10 L10 20 L20 20 Z" fill="#00C853" class="fill-main" />
<path stroke="#1B5E20" class="stroke-secondary" d="M5 5h18v18H5z" />
</g>
<circle fill="#76FF03" class="fill-accent" cx="20" cy="20" r="3" />
<g transform="translate(15 15)">
<use fill="#1B5E20" class="fill-secondary" xlink:href="#a" />
<path stroke="#00396B" class="stroke-secondary" d="M1 1h8v8H1z" />
</g>
</g>
</svg>
</span>
</div>
<span class="feature__title_text">
High measurement <br>accuracy
</span>
</h3>
<div class="feature__content">
<span class="feature__content_text content_box">
Confirmed by official examination, results included in the State Register of Measuring Instruments.
</span>
</div>
</div>
</li>
<li class="features-01__item">
<div class="feature ">
<h3 class="feature__title">
<div class="feature__icon">
<span class="icon"
data="{'type': 'abstractIcon', 'emojiSrc': '', 'uploadedSrc': '', 'lineaIconSrc': '', 'abstractIconId': '4', 'uploadedHeight': 30}">
<svg width="40" height="40" viewBox="0 0 40 40"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<path id="a" d="M5 5h30v30H5z" />
</defs>
<g fill="none" fill-rule="evenodd">
<circle fill="#E9F1FF" class="fill-bg-light" cx="20" cy="20" r="20" />
<rect fill="#4D61FC" class="fill-main" x="14" y="14" width="12" height="12" rx="2" />
<path stroke="#00396B" class="stroke-secondary" d="M16 16h8v8h-8z" />
<path fill="#FFCE00" class="fill-accent" d="M19 19h2v2h-2z" />
<g transform="translate(10 10)">
<use fill="#FF3D00" class="fill-secondary" xlink:href="#a" />
<path stroke="#00396B" class="stroke-secondary" d="M1 1h18v18H1z" />
</g>
</g>
</svg>
</span>
</div>
<span class="feature__title_text">
Compact <br>sizes
</span>
</h3>
<div class="feature__content">
<span class="feature__content_text content_box">
From 120*16*16mm <br>
up to 160*40*43mm
</span>
</div>
</div>
</li>
<li class="features-01__item">
<div class="feature ">
<h3 class="feature__title">
<div class="feature__icon">
<span class="icon"
data="{'type': 'abstractIcon', 'emojiSrc': '', 'uploadedSrc': '', 'lineaIconSrc': '', 'abstractIconId': '6', 'uploadedHeight': 30}">
<svg width="40" height="40" viewBox="0 0 40 40"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<path id="a" d="M5 5h30v30H5z" />
</defs>
<g fill="none" fill-rule="evenodd">
<circle fill="#E9F1FF" class="fill-bg-light" cx="20" cy="20" r="20" />
<rect fill="#00C853" class="fill-main" x="10" y="10" width="20" height="20" rx="2" />
<line x1="5" y1="35" x2="35" y2="5" stroke="#76FF03" stroke-width="3" />
<line x1="35" y1="35" x2="5" y2="5" stroke="#76FF03" stroke-width="3" />
<g transform="translate(8 8)">
<use fill="#00396B" class="fill-secondary" xlink:href="#a" />
<path stroke="#1B5E20" class="stroke-accent" d="M2 2h28v28H2z" />
</g>
</g>
</svg>
</span>
</div>
<span class="feature__title_text">
Attaches to any <br>surface
</span>
</h3>
<div class="feature__content">
<span class="feature__content_text content_box">
The installation takes a few minutes
</span>
</div>
</div>
</li>
<li class="features-01__item">
<div class="feature ">
<h3 class="feature__title">
<div class="feature__icon">
<span class="icon"
data="{'type': 'abstractIcon', 'emojiSrc': '', 'uploadedSrc': '', 'lineaIconSrc': '', 'abstractIconId': '7', 'uploadedHeight': 30}">
<svg width="40" height="40" viewBox="0 0 40 40"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<path id="a" d="M5 5h10v10H5z" />
</defs>
<g fill="none" fill-rule="evenodd">
<circle fill="#E9F1FF" class="fill-bg-light" cx="20" cy="20" r="20" />
<rect fill="#00C853" class="fill-main" x="12" y="12" width="16" height="16" rx="2" />
<path d="M12 20h16M20 12v16" stroke="#76FF03" stroke-width="3" />
<g transform="translate(15 15)">
<use fill="#1B5E20" class="fill-secondary" xlink:href="#a" />
<path stroke="#00396B" class="stroke-secondary" d="M1 1h8v8H1z" />
</g>
</g>
</svg>
</span>
</div>
<span class="feature__title_text">
Integrates with <br>existing systems
</span>
</h3>
<div class="feature__content">
<span class="feature__content_text content_box">
Software and applications.
</span>
</div>
</div>
</li>
</ul>
<div class="bottom_cta">
</div>
</div>
</div>
</div>
</div>
<div id="HowtostartIoTJourney" class="page-component__bg_image_box bg-light_gray-color 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">Design your own MITE smart monitoring solution</h2>
<div class="title-box__text"><p>Choose from our existing ready-made modules or develop customized devices based on them to solve your specific challenges.
</div>
</div>
<div class="container">
<!-- Smart IoT Sensor -->
<ul class="header-27__links">
<li class="header-27__item">
<div class="header-27__emoji">
<svg role="img" aria-labelledby="sensorIconTitle sensorIconDesc" width="80" height="80" viewBox="0 0 80 80" xmlns="http://www.w3.org/2000/svg">
<title id="sensorIconTitle">Smart IoT Sensor </title>
<desc id="sensorIconDesc">An icon representing a customizable smart IoT sensor with network connectivity.</desc>
<circle cx="40" cy="40" r="38" fill="#54c54a" stroke="#388E3C" stroke-width="2"/>
<rect x="28" y="20" width="24" height="40" rx="6" fill="#FFFFFF"/>
<path d="M40 30 h10" stroke="#54c54a" stroke-width="4"/>
<path d="M40 40 h10" stroke="#54c54a" stroke-width="4"/>
<path d="M40 50 h10" stroke="#54c54a" stroke-width="4"/>
<circle cx="40" cy="56" r="5" fill="#54c54a" stroke="#388E3C" stroke-width="2"/>
</svg>
<h3 class="header-27__title">A Family of Smart IoT Sensors</h3>
</div>
<div class="header-27__info content_box">
<p>Our customizable smart IoT sensors are designed to meet your specific requirements, ensuring seamless integration into your system.</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 role="img" aria-labelledby="platformIconTitle platformIconDesc" width="80" height="80" viewBox="0 0 80 80" xmlns="http://www.w3.org/2000/svg">
<title id="platformIconTitle">MITE IoT Platform</title>
<desc id="platformIconDesc">An icon representing the MITE IoT platform with the official MITE logo and interconnected nodes.</desc>
<circle cx="40" cy="40" r="38" fill="#54c54a" stroke="#388E3C" stroke-width="2"/>
<image href="upload/mite_logo_green.webp" x="20" y="20" height="40" width="40" alt="MITE IoT Platform Logo"/>
</svg>
<h3 class="header-27__title">MITE IoT Platform</h3>
</div>
<div class="header-27__info content_box">
<p>The MITE IoT platform is developed on the highly declarative open-source platform lsFusion, allowing us to quickly adapt existing business processes 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 role="img" aria-labelledby="teamIconTitle teamIconDesc" width="80" height="80" viewBox="0 0 80 80" xmlns="http://www.w3.org/2000/svg">
<title id="teamIconTitle">Highly Motivated Team</title>
<desc id="teamIconDesc">An icon representing a highly motivated team of MITE.</desc>
<circle cx="40" cy="40" r="38" fill="#54c54a" stroke="#388E3C" stroke-width="2"/>
<circle cx="28" cy="35" r="9" fill="#FFFFFF" stroke="#388E3C" stroke-width="2"/>
<circle cx="52" cy="35" r="9" fill="#FFFFFF" stroke="#388E3C" stroke-width="2"/>
<circle cx="40" cy="50" r="9" fill="#FFFFFF" stroke="#388E3C" stroke-width="2"/>
<path d="M40 50 a10 10 0 1 1 10 0" fill="none" stroke="#388E3C" stroke-width="2"/>
<path d="M28 50 h24" stroke="#388E3C" stroke-width="4"/>
</svg>
<h3 class="header-27__title">Highly Motivated Professionals</h3>
</div>
<div class="header-27__info content_box">
<p>Our team is highly motivated, with unique expertise and extensive experience in developing electronic devices of varying complexity.</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 class="feature--center">
<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><br>
<span class="content_box cta_bottom_info ">Schedule a personalized demo and experience firsthand <br>how our platform can revolutionize your business.</span>
</div>
</div>
</div>
<div class="page-component__bg_image_box bg-accent-color cta_form-01-parent" id="contactUs" >
<div class="page-component__bg_overlay_box ">
</div>
<div class="page-component__wrapper" style="z-index: 10;">
<div class="cta_form-01 False">
<div class="container cta_form-01__container">
<div class="cta_form-01__wrapper title-box--center">
<div class="container">
<div class="title-box">
<h2 class="heading " >Do you have a similar challenge?</h2>
<div class="title-box__text ">Tell us about your tasks</div>
</div>
</div>
<div class="cta_form-01__form_box">
<form class="form js-no-integration-form" action="https://forms.un-static.com/forms/626c6d4783e2ba0a08e8632748d3d2373c5344a4" method="POST" data-sheet-id="">
<div class="form__inputs">
<div class="form__input">
<div class="form__input__label_box">
<label class="form__input__label " for="business_name-162060-0">
<span class="form__input__label_asterix" title="This field is required.">*</span>
Business Name
</label>
</div>
<input class="text-input js-form-input " type="text" id="business_name-162060-0" name="business_name" required placeholder="Enter your business name"/>
</div>
<div class="form__input ">
<div class="form__input__label_box">
<label class="form__input__label " for="business_email-162060-1">
<span class="form__input__label_asterix" title="This field is required.">*</span>
Email
</label>
</div>
<input class="text-input js-form-input " type="email" id="business_email-162060-1" name="business_email" required placeholder="Enter your business email"/>
</div>
<br>
<div class="form__input form__input--full ">
<div class="form__input__label_box">
<label class="form__input__label" for="task_description">
<span class="form__input__label_asterix" title="This field is required.">*</span>
Tell Us About Your Tasks
</label>
</div>
<textarea class="text-input js-form-input" id="task_description" style="padding-top: 10px;" "task_description" required placeholder="Describe your tasks and needs"></textarea>
</div>
<br>
<div class="form__button ">
<button class="button js-submit-button button--white-bg " type="submit" ><span class="button__text" style="font-size: 10px">Join Now</span>
<div class="spinner"></div>
<div class="button__submit_success">
<div class="button__success_circle "></div>
<div><svg class="button__success_tick" width="13" height="13" viewBox="0 0 13 13" xmlns="http://www.w3.org/2000/svg"><path class="button__success_tick_path" stroke="#FFF" d="M0 8l5.119 3.873L11.709.381" fill="none" fill-rule="evenodd" stroke-linecap="square"/></svg></div>
</div><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" class="fill-main"/></svg></span>
</button>
</div>
<div class="form__messages_box">
<div class="form__messages">
<div class="message message--error js-message js-error-message">
<div class="message__box">
<button class="message__close js-close-message" type="button"><img loading="lazy" class="message__close_icon" src="https://dvzvtsvyecfyp.cloudfront.net/static/img/icons/corner-top--blue.svg"/></button>
<div class="message__body">
<div class="message__in">
<div class="message__bubble">
<div class="message__bubble_text"><b>Error.</b> Your form has not been submitted<img loading="lazy" class="emoji " src="https://dvzvtsvyecfyp.cloudfront.net/static/img/twemoji/1f914.svg" alt="Emoji"/>
</div>
</div>
<div class="message__bubble">
<div class="message__bubble_text">This is what the server says:
<div class="message__bubble_error js-error-message-text">There must be an @ at the beginning.</div>
</div>
</div>
</div>
<div class="message__out">
<div class="message__out_box">
<div class="message__bubble">
<div class="message__bubble_text message__bubble_text--out js-reaction-text">I will retry</div>
</div>
</div>
</div>
</div>
<div class="message__reply_box">
<div class="message__reply_word">Reply</div>
<div class="message__options">
<div class="message__option">
<button class="button js-react-on-message button--ruby-bg " type="submit"><span class="button__text">Uh oh!</span>
</button>
</div>
<div class="message__option">
<button class="button js-react-on-message button--ruby-bg " type="submit"><span class="button__text">I will retry</span>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<div> <!-- End of Wrapper -->
<div class="bg-white-color flex-footer " id="contact_us" >
<footer class="footer-02" id="footer">
<div class ="footer-02__wrapper footer-02__mobile">
<div class="nav-02__logo">
<a class="nav-02__link" href="/" target="_blank">
<span><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" />
<!--<span class="nav-02__logo_text ">MITE - The Future <br> of Industrial IoT</span>-->
</div>
<div class="social-buttons social-buttons">
<ul class="social-buttons__list footer-02__text">
<a class="social-buttons__item" href="https://wa.me/351961034229"><strong>tel:</strong> +351961034229</a>
<a class="social-buttons__item" href="mailto:[email protected]"><strong>e-mail:</strong> [email protected]</a>
<li class="social-buttons__item"><a class="social-buttons__link social-buttons__link--facebook"
href="https://www.facebook.com/mitemonitoring" target="_blank" title="Read about us in facebook"><img
loading="lazy"
class="social-buttons__icon"