-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
795 lines (692 loc) · 35.7 KB
/
index.html
File metadata and controls
795 lines (692 loc) · 35.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<!-- Page Title-->
<title>biogeared.github.io</title>
<!-- Meta Tags-->
<meta name="description" content="Hi, my name is Chao-Yu">
<meta name="keywords" content="A Roboticist in Singapore from Taiwan">
<meta name="author" content="CY Chen">
<!-- Viewport Meta-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- Template Favicon & Icons Start -->
<link rel="icon" href="img/favicon/monochrome/cy/favicon.ico" sizes="any">
<link rel="icon" href="img/favicon/monochrome/cy/favicon-32x32.png" type="image/png" sizes="32x32">
<link rel="apple-touch-icon" sizes="180x180" href="img/favicon/monochrome/cy/apple-touch-icon.png">
<link rel="manifest" href="img/favicon/monochrome/cy/site.webmanifest">
<!-- Template Favicon & Icons End -->
<!-- Facebook Metadata Start -->
<meta property="og:image:height" content="1200">
<meta property="og:image:width" content="1200">
<meta property="og:title" content="CY's website">
<meta property="og:description" content="Nice to meet you">
<meta property="og:url" content="https://biogeared.github.io">
<meta property="og:image" content="https://biogeared.github.io/img/IMG_0104.jpg">
<meta property="og:type" content="website">
<!-- Facebook Metadata End -->
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:domain" content="biogeared.github.io">
<meta property="twitter:url" content="https://biogeared.github.io">
<meta name="twitter:title" content="CY's website">
<meta name="twitter:description" content="Nice to meet you">
<meta name="twitter:image" content="https://biogeared.github.io/img/IMG_0104.jpg">
<!-- Template Styles Start -->
<link rel="stylesheet" type="text/css" href="css/loaders/loader-monochrome.css">
<link rel="stylesheet" type="text/css" href="css/plugins.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
<!-- Template Styles End -->
<!-- Custom Browser Color Start -->
<meta name="theme-color" content="#24262b">
<meta name="msapplication-navbutton-color" content="#24262b">
<meta name="apple-mobile-web-app-status-bar-style" content="#24262b">
<!-- Custom Browser Color End -->
</head>
<body>
<!-- Old Browsers Support Start -->
<!--[if lt IE 9]>
<script src="js/libs/es5-shim.min.js"></script>
<script src="js/libs/html5shiv.min.js"></script>
<script src="js/libs/html5shiv-printshiv.min.js"></script>
<script src="js/libs/respond.min.js"></script>
<![endif]-->
<!-- Old Browsers Support End -->
<!-- Loader Start -->
<div class="loader">
<div class="loader-content">
<div class="loader-logo slideInDown">
<!-- Your Logo Here -->
<img src="img/sign-loader-logo.svg" alt="CY_loading">
</div>
<div class="loader-caption slideInUp">
<span class="loading-dots">
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
</span>
</div>
</div>
</div>
<!-- Loader End -->
<!-- Custom HTML Start -->
<!-- Main Screen Section Start-->
<section id="main" class="main">
<div class="container-fluid p-0 fullheight">
<div class="row g-0 fullheight">
<!-- Main Section Intro Start -->
<div class="col-12 col-xl-6 main__intro">
<div class="intro__content">
<!-- Logo Start -->
<div class="intro__logo">
<img src="img/sign-logo1.svg" alt="CY_sign">
</div>
<!-- Logo End -->
<!-- Main Menu Start -->
<div class="intro__menu">
<nav>
<ul>
<li><a href="#" id="about-trigger">About me</a></li>
<li><a href="#" id="works-trigger">My works</a></li>
<li><a href="#" id="contact-trigger">Contact</a></li>
</ul>
</nav>
</div>
<!-- Main Menu End -->
<!-- Socials Start -->
<div class="intro__socials">
<ul>
<li>
<a href="https://www.medium.com/@e0384158" target="_blank">
<i class="fab fa-medium"></i>
</a>
</li>
<li>
<a href="https://orcid.org/0000-0002-5507-3122" target="_blank">
<i class="fab fa-orcid"></i>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/chao-yu-chen-43bb5410b" target="_blank">
<i class="fab fa-linkedin"></i>
</a>
</li>
<li>
<a href="https://github.com/biogeared" target="_blank">
<i class="fab fa-github"></i>
</a>
</li>
</ul>
</div>
<!-- Socials End -->
<!-- Main Headline Start -->
<div class="intro__headline">
<!-- Headline Content Start -->
<h1>
I am
<br>
</h1>
<p class="headline-text">
A Soft Roboticist, Entrepreneur, 3D printing hobbist, and a badminton enthusiast
</p>
<a href="#0" class="button button-l button-dark-outline" id="notify-trigger">
<span class="button-caption">Request for my latest CV</span>
</a>
<!-- Headline Content End -->
</div>
<!-- Main Headline End -->
</div>
</div>
<!-- Main Section Intro End -->
<!-- Main Section Media Start -->
<div class="col-12 col-xl-6 main__media">
<!-- Main Section Image & Background Effect Start -->
<div class="media__image media-5">
<!-- Color Layer Start -->
<div class="color-layer color-layer-medium"></div>
<!-- Color Layer End -->
<!-- Background Effect Start -->
<div id="particles-js"></div>
<!-- Background Effect End -->
<!-- Countdown Start-->
<div class="media__countdown">
<div id="countdown"></div>
<span class="help-text">Days @Singapore</span>
</div>
<!-- Countdown End-->
</div>
<!-- Main Section Image & Background Effect End -->
</div>
<!-- Main Section Media End -->
</div>
</div>
</section>
<!-- Main Screen Section End -->
<!-- About Me Section Start -->
<section id="about" class="inner about">
<div class="container-fluid p-0 fullheight">
<div class="row g-0 flex-xl-row-reverse fullheight">
<!-- About Info Scroll (on Desktop) Start -->
<div class="col-12 col-xl-6 scroll scroll-left about__info">
<div class="blocks no-padding-bottom">
<!-- Close Button Start -->
<div class="section-controls">
<a href="#0" id="about-close" class="section-close">
<span class="material-icons">arrow_back</span>
</a>
</div>
<!-- Close Button End -->
<!-- Section Title Start -->
<div class="blocks__single section-title">
<h2>
About me
</h2>
<span>Research Associate <br><em>National University of Singapore</em></span>
<span>Chief Operating Officer <br><em>RoPlus Pte. Ltd.</em></span>
<p>
My research focuses on <strong>soft robots design and industrial robotic automation solution</strong>. This includes deep investigations into the generative design of soft end effectors, closed-loop systems of the robotic solution, and communication between devices
to optimize working efficiency and throughput, etc. Currently at RoPlus, we are working on turning these robotics automation solutions affordable and accessible to address market demands. A robotic system that is safe to interact with yet strong enough to endure mistakes,
which facilitates embedded intelligence on the edge.
</p>
<p>
I received my B.Eng. in Mechanical Engineering from <strong>National Taiwan University</strong> and my M.Eng.
in Biomedical Engineering with a specialisation in design of soft robotic end-effector from the <strong>National University of Singapore</strong>. Associated with the <a href="https://www.rayelab.org/">Evolution and Innovation Lab (EI lab)</a> led
by <a href="https://cde.nus.edu.sg/bme/staff/dr-yeowraye/">Assoc. Prof. Raye Yeow</a>, my work stemmed from the 3D printed soft linear actuator to robotics devops automation.
</p>
</div>
<!-- Section Title End -->
<!-- Features Start -->
<div class="blocks__single no-padding no-margin features">
<div class="container-fluid p-0">
<!-- features single item -->
<div class="row g-0 features__item">
<div class="col-12 col-md-6 features__image feature-1"></div>
<div class="col-12 col-md-6 features__descr">
<div class="descr__container">
<h3>My languages?</h3>
<p class="text-s">Chinese(Native)</p>
<p class="text-s">English(Advanced)</p>
<p class="text-s">Japanese(Intermediate)</p>
<p class="text-s">Spainish(Elementary)</p>
<p class="text-s">Korean(Beginner)</p>
</div>
</div>
</div>
<!-- features single item -->
<div class="row g-0 flex-md-row-reverse features__item">
<div class="col-12 col-md-6 features__image feature-2"></div>
<div class="col-12 col-md-6 features__descr">
<div class="descr__container">
<h3>My skills?</h3>
<p class="text-s">Python, C++, Matlab</p>
<p class="text-s">Fusion 360/Solidworks</p>
<p class="text-s">ROS/ROS2/Linux/Unix</p>
<p class="text-s">Docker/DevOps</p>
</div>
</div>
</div>
<!-- features single item -->
<div class="row g-0 features__item">
<div class="col-12 col-md-6 features__image feature-3"></div>
<div class="col-12 col-md-6 features__descr">
<div class="descr__container">
<h3>My learning?</h3>
<p class="text-s">STM32Cube/PlatformIO</p>
<p class="text-s">Data Analytics</p>
<p class="text-s">TensorFlow/Kubernetes</p>
<p class="text-s">HTML/CSS</p>
</div>
</div>
</div>
<!-- features single item -->
<div class="row g-0 flex-md-row-reverse features__item">
<div class="col-12 col-md-6 features__image feature-4"></div>
<div class="col-12 col-md-6 features__descr">
<div class="descr__container">
<h3>My hobbies?</h3>
<p class="text-s">Badminton</p>
<p class="text-s">Cooking</p>
<p class="text-s">Traveling</p>
<p class="text-s">Mountain climbing</p>
</div>
</div>
</div>
</div>
</div>
<!-- Features End -->
<!-- Blockquote Start -->
<div class="blocks__single blockquote">
<div class="container-fluid p-0">
<div class="row g-0">
<div class="col-12 blockquote__content">
<i class="fas fa-quote-left blockquote__icon"></i>
<blockquote cite="">
<p>How selfish soever man may be supposed, there are evidently some principles in his nature,
which interest him in the fortune of others, and render their happiness necessary to him, though he derives nothing from it,
except the pleasure of seeing it.
</p>
<cite>
<span>Adam Smith</span>
<span>The Theory of Moral Sentiments, Chapter 1</span>
</cite>
</blockquote>
</div>
</div>
</div>
</div>
<!-- Blockquote End -->
</div>
</div>
<!-- About Info Scroll (on Desktop) End -->
<!-- About Single Photo Static (on Desktop) Start -->
<div class="col-12 col-xl-6 static fullheight about__photo static-bg-1"></div>
<!-- About Single Photo Static (on Desktop) End -->
</div>
</div>
</section>
<!-- About Us Section End -->
<!-- Our Works Section Start -->
<section id="works" class="inner works">
<div class="container-fluid p-0 fullheight">
<div class="row g-0 flex-xl-row-reverse fullheight">
<!-- Works Info Scroll (on Desktop) Start -->
<div class="col-12 col-xl-6 scroll scroll-left works__info">
<div class="blocks">
<!-- Close Button Start -->
<div class="section-controls">
<a href="#0" id="works-close" class="section-close">
<span class="material-icons">arrow_back</span>
</a>
</div>
<!-- Close Button End -->
<!-- Section Title Start -->
<div class="blocks__single section-title">
<h2>
My work
</h2>
<span>Projects and Conferences <em>updated on April 15th, 2023</em></span>
<p>Here is where I list down my selected past and current projects for your reference, including attended conferences and exhibitions.
</p>
For full list of my publications, please request through the previous page or drop me an email.
</div>
<!-- Section Title End -->
<!-- Team Block Start -->
<div class="blocks__single team">
<div class="container-fluid">
<div class="row gx-5">
<!-- team single item -->
<div class="col-12 col-sm-6 team__item">
<img src="img/Robosoft.png" alt="Robosoft 2023 with Prof Dario Floreano">
<h3>Robosoft 2023
<small>6th IEEE-RAS International Conference on Soft Robotics</small>
</h3>
<p>Launching our latest finger actuator and gathering feedbacks from the leading soft robotics scientist around the world. Sharing my ideas and mission in RoPlus with <a href="https://people.epfl.ch/dario.floreano">Prof. Dario Floreano</a>.</p>
<ul class="team__socials">
<li>
<a href="https://softroboticsconference.org" target="_blank"><i class="fa fa-link"></i></a>
</li>
<li>
<a href="https://www.youtube.com/watch?v=PGmuW-uMXLc" target="_blank"><i class="fa fa-youtube-play"></i></a>
</li>
</ul>
</div>
<!-- team single item -->
<div class="col-12 col-sm-6 team__item">
<img src="img/itap.png" alt="Ramio Template Team Member"> <!--1080*1200-->
<h3>ITAP 2022
<small>Industrial Transformation Asia-Pacific</small>
</h3>
<p>The potential of robotics gripper to possess human-like agility allows the increase of automation efficiency and tolerance towards chaotic scenario. Elaborating on how all-in-one gripper could benefit the industry with <a href="https://www.nrp.gov.sg/who-we-are/people/">Prof. Quek</a>.</p>
<ul class="team__socials">
<li>
<a href="https://www.industrial-transformation.com/page/itap-2022-overview" target="_blank"><i class="fa fa-link"></i></a>
</li>
<li>
<a href="https://www.youtube.com/watch?v=FeULP24jHhc" target="_blank"><i class="fa fa-youtube-play"></i></a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Team Block End -->
</div>
</div>
<!-- Works Info Scroll (on Desktop) End -->
<!-- Works Media Gallery Static (on Desktop) Start -->
<div class="col-12 col-xl-6 static fullheight works__gallery">
<div class="container-fluid p-0">
<div class="row g-0 my-gallery" itemscope itemtype="http://schema.org/ImageGallery">
<!-- gallery single item -->
<figure class="col-12 col-sm-6 my-gallery__item" itemprop="associatedMedia" itemscope itemtype="http://schema.org/ImageObject">
<a href="video/20210129_085544000_iOS.gif" data-image="video/20210129_085544000_iOS.gif" class="my-gallery__link" itemprop="contentUrl" data-size="900x1200">
<img src="video/20210129_085544000_iOS.gif" class="my-gallery__image" itemprop="thumbnail" alt="Video of SEA" />
</a>
<figcaption class="my-gallery__description" itemprop="caption description">
<h4>Papers
<small>3D printed soft extension actuator</small>
</h4>
<p>DOI: 10.1109/RoboSoft51838.2021.9479190<br/>The design of the Soft Extension Actuator(SEA) aims for a high extension ratio performance and modular in different configuration. This research is published in the proceedings of <a href="https://ieeexplore.ieee.org/document/9479190">Robosoft 2021</a>.</p>
</figcaption>
</figure>
<!-- gallery single item -->
<figure class="col-12 col-sm-6 my-gallery__item" itemprop="associatedMedia" itemscope itemtype="http://schema.org/ImageObject">
<a href="img/Patent_0312.png" data-image="img/Patent_0312.png" class="my-gallery__link" itemprop="contentUrl" data-size="900x1200">
<img src="img/Patent_0312.png" class="my-gallery__image" itemprop="thumbnail" alt="Image description" />
</a>
<figcaption class="my-gallery__description" itemprop="caption description">
<h4>Patents
<small>Reconfigurable robotic end-effectors</small>
</h4>
<p><a href="https://patents.google.com/patent/WO2022098300A1">WIPO Publication no.:WO2022098300</a><br/>Soft grippers inherently persist the nature of compliance to a certain degree. This work aims to provide a more univseral solution in pick-and-place application for SKUs by fusing different gripping methods and gaining reconfigurability.</p>
</figcaption>
</figure>
<!-- gallery single item -->
<figure class="col-12 col-sm-6 my-gallery__item" itemprop="associatedMedia" itemscope itemtype="http://schema.org/ImageObject">
<a href="img/Lidar_ROS.png" data-image="img/Lidar_ROS.png" class="my-gallery__link" itemprop="contentUrl" data-size="900x1200">
<img src="img/Lidar_ROS.png" class="my-gallery__image" itemprop="thumbnail" alt="Image description" />
</a>
<figcaption class="my-gallery__description" itemprop="caption description">
<h4>Side projects
<small>Lidar Dataset reconstruction with ROS</small>
</h4>
<p>Dataset reconstruction with pcl library and rviz visualization. Parsed and annotated via <a href="https://supervise.ly/">Supervisely.</a> <br/> Parsing reference: <a href="https://www.nuscenes.org/">NUScenes Dataset</a></p>
</figcaption>
</figure>
<!-- gallery single item -->
<figure class="col-12 col-sm-6 my-gallery__item" itemprop="associatedMedia" itemscope itemtype="http://schema.org/ImageObject">
<a href="video/Pill.gif" data-image="video/Pill.gif" class="my-gallery__link" itemprop="contentUrl" data-size="900x1200">
<img src="video/Pill.gif" class="my-gallery__image" itemprop="thumbnail" alt="Image description" />
</a>
<figcaption class="my-gallery__description" itemprop="caption description">
<h4>Past projects
<small>Pill gripper</small>
</h4>
<p>An derivative study stememd from <a href="https://ieeexplore.ieee.org/document/9813382">the GSG </a>with integrated mechanical sensing. Fully pneumatically driven snap through structure and customized compliant structure.<br/>DOI: 10.1109/LRA.2022.3187819</p>
</figcaption>
</figure>
</div>
</div>
</div>
<!-- Works Media Gallery Static (on Desktop) End -->
</div>
</div>
</section>
<!-- Our Works Section End -->
<!-- Contact Section Start -->
<section id="contact" class="inner contact">
<div class="container-fluid p-0 fullheight">
<div class="row g-0 flex-xl-row-reverse fullheight">
<!-- Contact Info Scroll (on Desktop) Start -->
<div class="col-12 col-xl-6 scroll scroll-left contact__info">
<div class="blocks">
<!-- Close Button Start -->
<div class="section-controls">
<a href="#0" id="contact-close" class="section-close">
<span class="material-icons">arrow_back</span>
</a>
</div>
<!-- Close Button End -->
<!-- Section Title Start -->
<div class="blocks__single section-title">
<h2>
Get in touch
</h2>
<span>Especially if you love badminton too:)</span>
<p class="text-m">Thank you for visiting my website!
If you have similar passion over <strong>robotics and devops automation</strong>,
feel free to reach out to me.
</p>
<p>
For business proposal for the startup, please send it through the RoPlus email below.
I am also looking forward to more interesting collaborations.
</p>
</div>
<!-- Section Title End -->
<!-- Contact Data Start -->
<div class="blocks__single contact-data">
<div class="container-fluid">
<div class="row">
<!-- contact data single item -->
<div class="col-12 col-sm-6 contact-data__item">
<span class="material-icons">location_on</span>
<p>
#07-01, Blk E6, 5 Engineering Drive 1
<br>Kent Ridge, Singapore
<br>117608
</p>
</div>
<!-- contact data single item -->
<div class="col-12 col-sm-6 contact-data__item">
<span class="material-icons">share</span>
<ul>
<li>
<a href="https://www.roplus.sg/contact-us/" target="_blank">RoPlus</a>
</li>
<li>
<a href="https://www.linkedin.com/in/chao-yu-chen-43bb5410b" target="_blank">Linkedin</a>
</li>
</ul>
</div>
</div>
<div class="row">
<!-- contact data single item -->
<div class="col-12 col-sm-6 contact-data__item">
<span class="material-icons">call</span>
<p>
<a href="tel:+6593745875">+65 9374-5875</a>
</p>
</div>
<!-- contact data single item -->
<div class="col-12 col-sm-6 contact-data__item">
<span class="material-icons">edit</span>
<p>
<a href="mailto:biecc@nus.edu.sg?subject=Message%20from%20your%20site">biecc@nus.edu.sg</a>
</p>
<p>
<a href="mailto:chaoyu@roplus.sg?subject=Message%20from%20your%20site">chaoyu@roplus.sg</a>
</p>
</div>
</div>
</div>
</div>
<!-- Contact Data End -->
<div class="contact-buttons">
<a href="#" class="button button-l button-dark-outline" id="contactform-trigger">
<span class="button-caption">Write a line</span>
</a>
</div>
</div>
</div>
<!-- Contact Info Scroll (on Desktop) End -->
<!-- Contact Media Map Static (on Desktop) Start -->
<div class="col-12 col-xl-6 static fullheight contact__map">
<!-- Google Map Start -->
<div class="map">
<div id="google-map">
<div id="google-container"></div>
<div id="zoom-in">
<span class="material-icons">add</span>
</div>
<div id="zoom-out">
<span class="material-icons">remove</span>
</div>
</div>
</div>
<!-- Google Map End -->
</div>
<!-- Contact Media Map Static (on Desktop) End -->
</div>
</div>
</section>
<!-- Contact Section End -->
<!-- Contact Form Section Start -->
<div class="popup writealine">
<!-- Close Button Start -->
<div class="popup__controls">
<a href="#0" id="writealine-close" class="section-close light">
<span class="material-icons">arrow_back</span>
</a>
</div>
<!-- Close Button End -->
<div class="popup__content">
<!-- Contact Form Section Title Start -->
<div class="popup__title">
<h4 class="title txt-light">Stay in touch</h4>
<p class="subtitle txt-light-transparent">Want to know more about me?<br>Drop me a line below to schedule an e-meeting. Thanks!</p>
</div>
<!-- Contact Form Section Title End -->
<!-- Contact Form Block Start -->
<div class="blocks__single">
<div class="form-container">
<!-- Reply Group Start -->
<div class="reply-group">
<span class="material-icons txt-light">done</span>
<p class="reply-group__title txt-light"><span>Done</span>!</p>
<span class="reply-group__text txt-light-transparent">Message well received. I will get back to you as soon as possible!</span>
</div>
<!-- Reply Group End -->
<!-- Contact Form Start -->
<form class="form form-light contact-form" id="contact-form">
<!-- Hidden Required Fields -->
<input type="hidden" name="project_name" value="Website Contact form">
<input type="hidden" name="admin_email" value="contact@biogeared.github.io">
<input type="hidden" name="form_subject" value="Contact Form Message">
<!-- END Hidden Required Fields-->
<div class="container-fluid p-0">
<div class="row gx-5">
<div class="col-12 col-md-6">
<input type="text" name="Name" placeholder="Your Name*" required>
</div>
<div class="col-12 col-md-6">
<input type="text" name="Company" placeholder="Company name">
</div>
<div class="col-12 col-md-6">
<input type="email" name="E-mail" placeholder="Email Adress*" required>
</div>
<div class="col-12 col-md-6">
<input type="tel" name="Phone" placeholder="Phone Number*" required>
</div>
<div class="col-12">
<textarea name="Message" placeholder="A Few Words*" required></textarea>
</div>
<div class="col-12">
<span class="inputs-description">*Required fields</span>
<button class="button button-l button-light">
<span class="button-caption">Send</span>
</button>
</div>
</div>
</div>
</form>
<!-- Contact Form End -->
</div>
</div>
<!-- Contact Form Block End -->
</div>
</div>
<!-- Contact Form Section End -->
<!-- Notify Section Start -->
<div class="popup notify">
<!-- Close Button Start -->
<div class="popup__controls">
<a href="#0" id="notify-close" class="section-close light">
<span class="material-icons">arrow_back</span>
</a>
</div>
<!-- Close Button End -->
<!-- Notify Content Start-->
<div class="popup__content">
<!-- Notify Title Start -->
<div class="popup__title">
<h4 class="title txt-light">Thanks for your interest!</h4>
<p class="subtitle txt-light-transparent">Please leave your email down below to receive my latest CV.</br>Nice e-meeting you in advance!</p>
</div>
<!-- Notify Title End -->
<!-- Notify Form Container Start -->
<div class="blocks__single">
<div class="form-container">
<!-- Reply Messages Start-->
<div class="reply-group subscription-ok">
<span class="material-icons txt-light">done</span>
<p class="reply-group__title txt-light">Done!</p>
<span class="reply-group__text txt-light-transparent">Thank you for your interest! Please contact me for further details or queries.</span>
</div>
<div class="reply-group subscription-error">
<span class="material-icons txt-light">sentiment_dissatisfied</span>
<p class="reply-group__title txt-light">Ooops!</p>
<span class="reply-group__text txt-light-transparent">Something went wrong. Please try again later.</span>
</div>
<!-- Reply Messages End-->
<!-- Notify Contact Form Start-->
<form class="notify-form form form-light">
<input class="" type="email" placeholder="Email Adress*" required>
<button class="button button-l button-light" type="submit">
<span class="button-caption">Send</span>
</button>
</form>
<!-- Notify Contact Form End-->
</div>
</div>
<!-- Notify Form Container End -->
</div>
<!-- Notify Content End-->
</div>
<!-- Notify Section End -->
<!-- Custom HTML End -->
<!-- Root element of PhotoSwipe. Must have class pswp. -->
<div class="pswp" tabindex="-1" role="dialog" aria-hidden="true">
<!-- Background of PhotoSwipe.
It's a separate element, as animating opacity is faster than rgba(). -->
<div class="pswp__bg"></div>
<!-- Slides wrapper with overflow:hidden. -->
<div class="pswp__scroll-wrap">
<!-- Container that holds slides. PhotoSwipe keeps only 3 slides in DOM to save memory. -->
<!-- don't modify these 3 pswp__item elements, data is added later on. -->
<div class="pswp__container">
<div class="pswp__item"></div>
<div class="pswp__item"></div>
<div class="pswp__item"></div>
</div>
<!-- Default (PhotoSwipeUI_Default) interface on top of sliding area. Can be changed. -->
<div class="pswp__ui pswp__ui--hidden">
<div class="pswp__top-bar">
<!-- Controls are self-explanatory. Order can be changed. -->
<div class="pswp__counter"></div>
<button class="pswp__button pswp__button--close" title="Close (Esc)"></button>
<button class="pswp__button pswp__button--share" title="Share"></button>
<button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button>
<button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button>
<!-- Preloader demo http://codepen.io/dimsemenov/pen/yyBWoR -->
<!-- element will get class pswp__preloader-active when preloader is running -->
<div class="pswp__preloader">
<div class="pswp__preloader__icn">
<div class="pswp__preloader__cut">
<div class="pswp__preloader__donut"></div>
</div>
</div>
</div>
</div>
<div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">
<div class="pswp__share-tooltip"></div>
</div>
<button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)">
</button>
<button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)">
</button>
<div class="pswp__caption">
<div class="pswp__caption__center"></div>
</div>
</div>
</div>
</div>
<!-- Load Scripts Start -->
<script src="js/libs.min.js"></script>
<script src="js/gallery-init.js"></script>
<script src="js/ramio-custom.js"></script>
<script src="js/maps/map-monochrome.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBTEZMOVPy3CsTaJOiGPllOZP8CUVzAbQQ"></script>
<!-- Load Scripts End -->
</body>
</html>