-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1043 lines (969 loc) · 45.1 KB
/
index.html
File metadata and controls
1043 lines (969 loc) · 45.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>
Zachary Mathews, EIT - Electrical Designer & Revit Add-In Developer
</title>
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1"
/>
<meta
name="description"
content="Zachary Mathews, EIT - Electrical Designer & Revit Add-In Developer"
/>
<meta
name="keywords"
content="zachary, mathews, electrical, designer, bim, revit, engineer, eit"
/>
<meta name="author" content="Zachary Mathews" />
<link rel="shortcut icon" href="favicon.ico" />
<link rel="stylesheet" href="css/reset.css" type="text/css" />
<link rel="stylesheet" href="css/bootstrap-grid.min.css" type="text/css" />
<link rel="stylesheet" href="css/animations.css" type="text/css" />
<link rel="stylesheet" href="css/perfect-scrollbar.css" type="text/css" />
<link rel="stylesheet" href="css/owl.carousel.css" type="text/css" />
<link rel="stylesheet" href="css/magnific-popup.css" type="text/css" />
<link rel="stylesheet" href="css/main.css" type="text/css" />
</head>
<body>
<!-- Animated Background -->
<div
class="lm-animated-bg"
style="background-image: url(img/main_bg.png)"
></div>
<!-- /Animated Background -->
<!-- Loading animation -->
<div class="preloader">
<div class="preloader-animation">
<div class="preloader-spinner"></div>
</div>
</div>
<!-- /Loading animation -->
<div class="page">
<div class="page-content">
<header id="site_header" class="header mobile-menu-hide">
<div class="header-content">
<div class="header-photo">
<img src="img/profile.jpg" alt="Alex Smith" />
</div>
<div class="header-titles">
<h2>Zachary Mathews, EIT</h2>
<h4>Electrical Designer</h4>
<h4>Revit Add-In Developer</h4>
</div>
</div>
<ul class="main-menu">
<li class="active">
<a href="#home" class="nav-anim">
<span class="menu-icon lnr lnr-home"></span>
<span class="link-text">Home</span>
</a>
</li>
<li>
<a href="#about-me" class="nav-anim">
<span class="menu-icon lnr lnr-user"></span>
<span class="link-text">About Me</span>
</a>
</li>
<li>
<a href="#resume" class="nav-anim">
<span class="menu-icon lnr lnr-graduation-hat"></span>
<span class="link-text">Resume</span>
</a>
</li>
<li>
<a href="#contact" class="nav-anim">
<span class="menu-icon lnr lnr-envelope"></span>
<span class="link-text">Contact</span>
</a>
</li>
</ul>
<div class="social-links">
<ul>
<li>
<a href="https://linkedin.com/in/zachcmathews" target="_blank"
><i class="fab fa-linkedin-in"></i
></a>
</li>
</ul>
</div>
<div class="header-buttons">
<a
href="/zachary_mathews_resume.pdf"
target="_blank"
class="btn btn-primary"
>Download CV</a
>
</div>
<div class="copyrights">© 2024 All rights reserved.</div>
</header>
<!-- Mobile Navigation -->
<div class="menu-toggle">
<span></span>
<span></span>
<span></span>
</div>
<!-- End Mobile Navigation -->
<!-- Arrows Nav -->
<div class="lmpixels-arrows-nav">
<div class="lmpixels-arrow-right">
<i class="lnr lnr-chevron-right"></i>
</div>
<div class="lmpixels-arrow-left">
<i class="lnr lnr-chevron-left"></i>
</div>
</div>
<!-- End Arrows Nav -->
<div class="content-area">
<div class="animated-sections">
<!-- Home Subpage -->
<section data-id="home" class="animated-section start-page">
<div class="section-content vcentered">
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-12">
<div class="title-block">
<h2>Zachary Mathews, EIT</h2>
<div class="owl-carousel text-rotation">
<div class="item">
<div class="sp-subtitle">Electrical Designer</div>
</div>
<div class="item">
<div class="sp-subtitle">Revit Add-In Developer</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End of Home Subpage -->
<!-- About Me Subpage -->
<section data-id="about-me" class="animated-section">
<div class="section-content">
<div class="page-title">
<h2>About <span>Me</span></h2>
</div>
<!-- Personal Information -->
<div class="row">
<div class="col-xs-12 col-sm-7">
<p>
With experience in building electrical system design and
Revit add-in development, I bring a unique skill set that
combines technical expertise with innovative problem-solving.
</p>
<br />
<p>
My career is marked by a commitment to technical
excellence and innovation, whether through advanced
electrical design or developing cutting-edge add-ins.
I am passionate about leveraging my skills to drive
impactful projects and deliver exceptional results
in every role.
</p>
</div>
<div class="col-xs-12 col-sm-5">
<div class="info-list">
<ul>
<li>
<span class="title">Location</span>
<span class="value">Atlanta, Georgia, USA</span>
</li>
<li>
<span class="title">Email</span>
<span class="value">
<a
style="color: #cecece"
href="mailto:rm6nw3r6q@mozmail.com"
>
rm6nw3r6q@mozmail.com
</a>
</span>
</li>
<li>
<span class="title">Phone</span>
<span class="value">
<a
style="color: #cecece"
href="mailto:+14044800512"
>
(404) 480-0512
</a>
</span>
</li>
</ul>
</div>
</div>
</div>
<!-- End of Personal Information -->
<div class="white-space-50"></div>
<!-- Services -->
<div class="row">
<div class="col-xs-12 col-sm-12">
<div class="block-title">
<h3>What <span>I Do</span></h3>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-6">
<div class="col-inner">
<div class="info-list-w-icon">
<div class="info-block-w-icon">
<div class="ci-icon">
<i class="lnr lnr-apartment"></i>
</div>
<div class="ci-text">
<h4>Electrical Design</h4>
<p>
I excel in designing and inspecting electrical
systems, including power distribution, fire alarm,
intercom, security and data networks. My
approach ensures that all systems meet
safety and functionality requirements while
adhering to regulatory standards.
</p>
</div>
</div>
<!-- <div class="info-block-w-icon">
<div class="ci-icon">
<i class="lnr lnr-laptop-phone"></i>
</div>
<div class="ci-text">
<h4>Web Design</h4>
<p>
Pellentesque pellentesque, ipsum sit amet auctor
accumsan, odio tortor bibendum massa, sit amet
ultricies ex lectus scelerisque nibh. Ut non
sodales.
</p>
</div>
</div> -->
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6">
<div class="col-inner">
<div class="info-list-w-icon">
<div class="info-block-w-icon">
<div class="ci-icon">
<i class="lnr lnr-code"></i>
</div>
<div class="ci-text">
<h4>Revit Add-In Development</h4>
<p>
In addition to my electrical design expertise, I
have substantial experience in Revit add-in
development. I have developed custom add-ins
using the .NET API, automating repetitive design
tasks to enhance efficiency and accuracy.
</p>
</div>
</div>
<!-- <div class="info-block-w-icon">
<div class="ci-icon">
<i class="lnr lnr-flag"></i>
</div>
<div class="ci-text">
<h4>Management</h4>
<p>
Pellentesque pellentesque, ipsum sit amet auctor
accumsan, odio tortor bibendum massa, sit amet
ultricies ex lectus scelerisque nibh. Ut non
sodales.
</p>
</div>
</div> -->
</div>
</div>
</div>
</div>
<!-- End of Services -->
<div class="white-space-30"></div>
</div>
</section>
<!-- End of About Me Subpage -->
<!-- Resume Subpage -->
<section data-id="resume" class="animated-section">
<div class="section-content">
<div class="page-title">
<h2>Resume</h2>
</div>
<div class="row">
<div class="col-xs-12 col-sm-7">
<div class="block-title">
<h3>Education</h3>
</div>
<div class="timeline timeline-second-style clearfix">
<div class="timeline-item clearfix">
<div class="left-part">
<h5 class="item-period">Aug 2015 <br />- Dec 2020</h5>
<span class="item-company"
>Georgia Institute of Technology</span
>
</div>
<div class="divider"></div>
<div class="right-part">
<h4 class="item-title">
B.S. Electrical Engineering
</h4>
<p>
I attended Georgia Tech from 2015 to 2020 and
obtained a Bachelor of Science in Electrical
Engineering. My electives were initially focused on
signal processing but shifted toward power systems
near the end of my program.
</p>
</div>
</div>
</div>
<div class="white-space-50"></div>
<div class="block-title">
<h3>Experience</h3>
</div>
<div class="timeline timeline-second-style clearfix">
<div class="timeline-item clearfix">
<div class="left-part">
<h5 class="item-period">Aug 2018 <br />- Dec 2020</h5>
<span class="item-company">Southern A&E</span>
</div>
<div class="divider"></div>
<div class="right-part">
<h4 class="item-title">
Electrical Engineering Intern
</h4>
<p>
I worked full-time as an intern in the Fall 2018
semester. This served as a great opportunity to
learn the fundamentals of building electrical
systems -- power distribution, lighting, fire alarm,
intercom, and data networks. It also introduced me
to BIM and the Dynamo visual programming environment
which I used to automate many of the day-to-day
tasks I was assigned as an intern. I received an
offer to return for part-time work in the following
semesters and continued working with the firm until
I graduated in December of 2020.
</p>
</div>
</div>
<div class="timeline-item clearfix">
<div class="left-part">
<h5 class="item-period">Dec 2020 <br />- May 2024</h5>
<span class="item-company">Southern A&E</span>
</div>
<div class="divider"></div>
<div class="right-part">
<h4 class="item-title">
Electrical Designer<br />
& BIM Specialist
</h4>
<p>
I received an offer from Southern A&E despite being mired in
the uncertainty of the COVID-19 pandemic and accepted. I
accepted the role of Electrical Designer I & BIM
Manager Intern with leadership hoping that I may
one day take on the role of BIM Manager as I had already
demonstrated a marked aptitude for the role.
</p>
<p>
I continued designing electrical systems and
automating various aspects of the job using the API
made available through pyRevit.
</p>
<p>
I was initially assigned HVAC renovation projects
including replacement of mini-splits, wall-hung heat
pumps, split systems, water source heat pumps, and
variable refrigerant heat pumps. Over time, my
design work gradually grew to encompass other
systems in the building including lighting, power
distribution, data networks, fire alarms, security
systems, audio-visual systems, storm shelters and
life safety/standby power systems comprised of
inverters and generators.
</p>
<p>
Much of my work focused on renovation and new
construction of K-12 education facilities.
</p>
</div>
</div>
<div class="timeline-item clearfix">
<div class="left-part">
<h5 class="item-period">Jan 2023 <br />- Present</h5>
<span class="item-company">Alzumal</span>
</div>
<div class="divider"></div>
<div class="right-part">
<h4 class="item-title">Owner & Revit Add-In Developer</h4>
<p>
In late 2022, I envisioned a more efficient method
of performing lighting calculations: a method which
would make use of data in the BIM model as well as
the nascient ray-tracing extensions made available
to Nvidia graphics cards through the Vulkan API.
Ray-tracing capable cards are set to become
commonplace in the building design industry over the
next few years.
</p>
<p>
Over the following months, I set about creating the
business structure to market the software and began
developing a proof-of-concept in earnest. After a
few failed attempts in early 2023, I finally
developed a workable proof-of-concept for real-time
point-by-point illuminance calculations around
October 2023.
</p>
The initial beta version of the add-in was released to
a small audience of beta program participants on June
14th, 2024. Development of beta versions continues.
</p>
<p>
<i>
If you would like to participate in the beta
program, please contact me and I will ensure you
have compatible hardware before sending you an
installer and support files.
</i>
</p>
</div>
</div>
</div>
</div>
<!-- Skills & Certificates -->
<div class="col-xs-12 col-sm-5">
<!-- Knowledges -->
<div class="block-title">
<h3>Expertise</h3>
</div>
<ul class="knowledges">
<li>Power Distribution</li>
<li>Lighting Systems</li>
<li>Data Networks</li>
<li>Surveillance Systems</li>
<li>Access Control Systems</li>
<li>Life Safety/Standby Systems</li>
<li>BIM</li>
<li>Revit</li>
<li>System Administration</li>
<li>K-12 Education Facilities</li>
<li>Revit Add-In Development</li>
</ul>
<!-- End of Knowledges -->
</div>
<!-- End of Skills & Certificates -->
</div>
<div class="white-space-50"></div>
<!-- Certificates -->
<div class="row">
<div class="col-xs-12 col-sm-12">
<div class="block-title">
<h3>Certificates</h3>
</div>
</div>
</div>
<div class="row">
<!-- Certificate 1 -->
<div class="col-xs-12 col-sm-6">
<div class="certificate-item clearfix">
<div class="certi-logo">
<svg width="70" height="70">
<image
xlink:href="img/resume/georgia_sos_logo.svg"
src="img/resume/georgia_sos_logo.svg"
width="70"
height="70"
/>
</svg>
</div>
<div class="certi-content">
<div class="certi-title">
<h4>Engineer-In-Training</h4>
</div>
<div class="certi-id">
<span>License No: EIT029482</span>
</div>
<div class="certi-date">
<span>06 Feb 2023</span>
</div>
<div class="certi-company">
<span>Georgia Professional Engineers and Land Surveyors Board</span>
</div>
</div>
</div>
</div>
<!-- End of Certificate 1 -->
<!-- Certificate 2 -->
<div class="col-xs-12 col-sm-6">
<div class="certificate-item clearfix">
<div class="certi-logo">
<img
src="img/resume/cisco_logo.jpg"
alt="cisco_logo"
width="70"
height="70"
/>
</div>
<div class="certi-content">
<div class="certi-title">
<h4>Cisco Certified Network Associate</h4>
</div>
<div class="certi-id">
<span>Certificate ID: CSCO14109529</span>
</div>
<div class="certi-date">
<span>20 March 2022</span>
</div>
<div class="certi-company">
<span>Cisco</span>
</div>
</div>
</div>
</div>
<!-- End of Certificate 2 -->
</div>
<!-- End of Certificates -->
</div>
</section>
<!-- End of Resume Subpage -->
<!-- Portfolio Subpage -->
<section data-id="portfolio" class="animated-section">
<div class="section-content">
<div class="page-title">
<h2>Portfolio</h2>
</div>
<div class="row">
<div class="col-xs-12 col-sm-12">
<!-- Portfolio Content -->
<div class="portfolio-content">
<ul class="portfolio-filters">
<li class="active">
<a
class="filter btn btn-sm btn-link"
data-group="category_all"
>All</a
>
</li>
<li>
<a
class="filter btn btn-sm btn-link"
data-group="category_detailed"
>Detailed</a
>
</li>
<li>
<a
class="filter btn btn-sm btn-link"
data-group="category_mockups"
>Mockups</a
>
</li>
<li>
<a
class="filter btn btn-sm btn-link"
data-group="category_soundcloud"
>SoundCloud</a
>
</li>
<li>
<a
class="filter btn btn-sm btn-link"
data-group="category_vimeo-videos"
>Vimeo Videos</a
>
</li>
<li>
<a
class="filter btn btn-sm btn-link"
data-group="category_youtube-videos"
>YouTube Videos</a
>
</li>
</ul>
<!-- Portfolio Grid -->
<div class="portfolio-grid three-columns">
<figure
class="item lbaudio"
data-groups='["category_all", "category_soundcloud"]'
>
<div class="portfolio-item-img">
<img
src="img/portfolio/1.jpg"
alt="SoundCloud Audio"
title=""
/>
<a
href="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/221650664&color=%23ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"
class="lightbox mfp-iframe"
title="SoundCloud Audio"
></a>
</div>
<i class="fa fa-volume-up"></i>
<h4 class="name">SoundCloud Audio</h4>
<span class="category">SoundCloud</span>
</figure>
<figure
class="item standard"
data-groups='["category_all", "category_detailed"]'
>
<div class="portfolio-item-img">
<img
src="img/portfolio/2.jpg"
alt="Media Project 2"
title=""
/>
<a
href="portfolio-1.html"
class="ajax-page-load"
></a>
</div>
<i class="far fa-file-alt"></i>
<h4 class="name">Detailed Project 2</h4>
<span class="category">Detailed</span>
</figure>
<figure
class="item lbvideo"
data-groups='["category_all", "category_vimeo-videos"]'
>
<div class="portfolio-item-img">
<img
src="img/portfolio/3.jpg"
alt="Vimeo Video 1"
title=""
/>
<a
href="https://player.vimeo.com/video/158284739"
class="lightbox mfp-iframe"
title="Vimeo Video 1"
></a>
</div>
<i class="fas fa-video"></i>
<h4 class="name">Vimeo Video 1</h4>
<span class="category">Vimeo Videos</span>
</figure>
<figure
class="item standard"
data-groups='["category_all", "category_detailed"]'
>
<div class="portfolio-item-img">
<img
src="img/portfolio/4.jpg"
alt="Media Project 1"
title=""
/>
<a
href="portfolio-1.html"
class="ajax-page-load"
></a>
</div>
<i class="far fa-file-alt"></i>
<h4 class="name">Detailed Project 1</h4>
<span class="category">Detailed</span>
</figure>
<figure
class="item lbimage"
data-groups='["category_all", "category_mockups"]'
>
<div class="portfolio-item-img">
<img
src="img/portfolio/5.jpg"
alt="Mockup Design 1"
title=""
/>
<a
class="lightbox"
title="Mockup Design 1"
href="img/portfolio/full/5.jpg"
></a>
</div>
<i class="far fa-image"></i>
<h4 class="name">Mockup Design 1</h4>
<span class="category">Mockups</span>
</figure>
<figure
class="item lbvideo"
data-groups='["category_all", "category_youtube-videos"]'
>
<div class="portfolio-item-img">
<img
src="img/portfolio/6.jpg"
alt="YouTube Video 1"
title=""
/>
<a
href="https://www.youtube.com/embed/bg0gv2YpIok"
class="lightbox mfp-iframe"
title="YouTube Video 1"
></a>
</div>
<i class="fas fa-video"></i>
<h4 class="name">YouTube Video 1</h4>
<span class="category">YouTube Videos</span>
</figure>
</div>
</div>
<!-- End of Portfolio Content -->
</div>
</div>
</div>
</section>
<!-- End of Portfolio Subpage -->
<!-- Blog Subpage -->
<section data-id="blog" class="animated-section">
<div class="section-content">
<div class="page-title">
<h2>Blog</h2>
</div>
<div class="row">
<div class="col-xs-12 col-sm-12">
<div class="blog-masonry two-columns clearfix">
<!-- Blog Post 1 -->
<div class="item post-1">
<div class="blog-card">
<div class="media-block">
<div class="category">
<a href="#" title="View all posts in Design"
>Design</a
>
</div>
<a href="blog-post-1.html">
<img
src="img/blog/blog_post_1.jpg"
class="size-blog-masonry-image-two-c"
alt="Why I Switched to Sketch For UI Design"
title=""
/>
<div class="mask"></div>
</a>
</div>
<div class="post-info">
<div class="post-date">05 Mar 2020</div>
<a href="blog-post-1.html">
<h4 class="blog-item-title">
Why I Switched to Sketch For UI Design
</h4>
</a>
</div>
</div>
</div>
<!-- End of Blog Post 1 -->
<!-- Blog Post 2 -->
<div class="item post-2">
<div class="blog-card">
<div class="media-block">
<div class="category">
<a href="#" title="View all posts in UI">UI</a>
</div>
<a href="blog-post-1.html">
<img
src="img/blog/blog_post_2.jpg"
class="size-blog-masonry-image-two-c"
alt="Best Practices for Animated Progress Indicators"
title=""
/>
<div class="mask"></div>
</a>
</div>
<div class="post-info">
<div class="post-date">23 Feb 2020</div>
<a href="blog-post-1.html">
<h4 class="blog-item-title">
Best Practices for Animated Progress Indicators
</h4>
</a>
</div>
</div>
</div>
<!-- End of Blog Post 2 -->
<!-- Blog Post 3 -->
<div class="item post-1">
<div class="blog-card">
<div class="media-block">
<div class="category">
<a href="#" title="View all posts in Design"
>Design</a
>
</div>
<a href="blog-post-1.html">
<img
src="img/blog/blog_post_3.jpg"
class="size-blog-masonry-image-two-c"
alt="Designing the Perfect Feature Comparison Table"
title=""
/>
<div class="mask"></div>
</a>
</div>
<div class="post-info">
<div class="post-date">06 Feb 2020</div>
<a href="blog-post-1.html">
<h4 class="blog-item-title">
Designing the Perfect Feature Comparison Table
</h4>
</a>
</div>
</div>
</div>
<!-- End of Blog Post 3 -->
<!-- Blog Post 4 -->
<div class="item post-2">
<div class="blog-card">
<div class="media-block">
<div class="category">
<a href="#" title="View all posts in E-Commerce"
>UI</a
>
</div>
<a href="blog-post-1.html">
<img
src="img/blog/blog_post_4.jpg"
class="size-blog-masonry-image-two-c"
alt="An Overview of E-Commerce Platforms"
title=""
/>
<div class="mask"></div>
</a>
</div>
<div class="post-info">
<div class="post-date">07 Jan 2020</div>
<a href="blog-post-1.html">
<h4 class="blog-item-title">
An Overview of E-Commerce Platforms
</h4>
</a>
</div>
</div>
</div>
<!-- End of Blog Post 4 -->
</div>
</div>
</div>
</div>
</section>
<!-- End of Blog Subpage -->
<!-- Contact Subpage -->
<section data-id="contact" class="animated-section">
<div class="section-content">
<div class="page-title">
<h2>Contact</h2>
</div>
<div class="row">
<!-- Contact Info -->
<div class="col-xs-12 col-sm-4">
<div class="lm-info-block gray-default">
<i class="lnr lnr-phone-handset"></i>
<h4>
<a style="color: #eeeeee" href="tel:+14044800512"
>(404) 480-0512</a
>
</h4>
<span class="lm-info-block-value"></span>
<span class="lm-info-block-text"></span>
</div>
<div class="lm-info-block gray-default">
<i class="lnr lnr-envelope"></i>
<h4>
<a
style="color: #eeeeee"
href="mailto:rm6nw3r6q@mozmail.com"
>rm6nw3r6q@mozmail.com</a
>
</h4>
<span class="lm-info-block-value"></span>
<span class="lm-info-block-text"></span>
</div>
<div class="lm-info-block gray-default">
<i class="lnr lnr-checkmark-circle"></i>
<h4>
Freelance Available
</h4>
<span class="lm-info-block-value"></span>
<span class="lm-info-block-text"></span>
</div>
</div>
<!-- End of Contact Info -->
<!-- Contact Form -->
<div class="col-xs-12 col-sm-8">
<div class="lmpixels-map">
<iframe
frameborder="0"
scrolling="no"
marginheight="0"
marginwidth="0"
></iframe>
</div>
<div class="block-title">
<h3>How Can I <span>Help You?</span></h3>
</div>
<p>Get in touch using one of the listed methods.</p>
<!--
<form id="contact_form" class="contact-form" action="contact_form/contact_form.php" method="post">
<div class="messages"></div>
<div class="controls two-columns">
<div class="fields clearfix">
<div class="left-column">
<div class="form-group form-group-with-icon">
<input id="form_name" type="text" name="name" class="form-control" placeholder=""
required="required" data-error="Name is required." />
<label>Full Name</label>
<div class="form-control-border"></div>
<div class="help-block with-errors"></div>
</div>
<div class="form-group form-group-with-icon">
<input id="form_email" type="email" name="email" class="form-control" placeholder=""
required="required" data-error="Valid email is required." />
<label>Email Address</label>
<div class="form-control-border"></div>
<div class="help-block with-errors"></div>
</div>
<div class="form-group form-group-with-icon">
<input id="form_subject" type="text" name="subject" class="form-control" placeholder=""
required="required" data-error="Subject is required." />
<label>Subject</label>
<div class="form-control-border"></div>
<div class="help-block with-errors"></div>
</div>
</div>
<div class="right-column">
<div class="form-group form-group-with-icon">