-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathempty.html
More file actions
1033 lines (1004 loc) · 55.1 KB
/
Copy pathempty.html
File metadata and controls
1033 lines (1004 loc) · 55.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">
<head>
<!-- Metas Basic -->
<meta http-equiv="content-type" content="text/html;charset=utf-8"/>
<meta name="description" content="Baustelle - Education Services School Template"/>
<meta name="keywords" content="Landing Page, Services, Learning"/>
<meta name="author" content="Ioan Drozd"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- Title -->
<title>Baustelle - Construction HTML Template</title>
<!-- Favicon -->
<link rel="shortcut icon" href="images/favicon.png" type="image/x-icon">
<!-- Bootstrap -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- owl carousel theme default CSS file -->
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<!-- owl carousel CSS file -->
<link rel="stylesheet" href="css/owl.carousel.min.css">
<!-- Main Custom CSS -->
<link rel="stylesheet" href="css/main.css">
<!-- Slick -->
<link rel="stylesheet" href="css/slick.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="css/fontawesome.min.css">
<!-- jQuery Fancybox -->
<link rel="stylesheet" href="css/jquery.fancybox.css">
<!-- Magnific Popup core CSS file -->
<link rel="stylesheet" href="css/magnific-popup.css">
</head>
<body>
<!-- header area start -->
<header id="header" class="transparent-header">
<div class="topheader top_header_light hidemobile">
<div class="container">
<div class="row">
<div class="col-lg-7">
<div class="address-icon">
<i class="fas fa-phone"></i>
<a href="tel:(774) 224-9563" alt="Company Phone">(774) 224-9563</a>
</div>
<div class="address-icon">
<i class="fas fa-fax"></i>
<a href="tel:(774) 224-9563" alt="Company Fax">(774) 224-9568</a>
</div>
<div class="address-icon">
<i class="fas fa-home"></i>
<a href="mailto:info@bstarengineering.com" alt="Company-Email">info@bstarengineering.com</a>
</div>
</div>
<div class="col-lg-5 text-right">
<div class="custom-page-top">
<div class="social_top_header">
<a href="https://twitter.com/BSTAREng"><i class="fab fa-twitter" aria-hidden="true"></i></a>
<a href="https://www.youtube.com/channel/UCaExXmUIjuVhYEdWwlN23XQ"><i class="fab fa-youtube" aria-hidden="true"></i></a>
<a href="https://www.linkedin.com/company/bstar-engineering/"><i class="fab fa-linkedin" aria-hidden="true"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- #navigation start -->
<nav class="navbar navbar-default navbar-expand-md navbar-light" id="navigation" data-offset-top="1">
<!-- .container -->
<div class="container">
<!-- Logo and Menu -->
<div class="navbar-header">
<div class="navbar-brand"><a href="index.html"><img src="images/logo.png" alt="Logo"/></a></div>
<!-- site logo -->
</div>
<!-- Menu Toogle -->
<div class="burger-icon">
<div class="bar1"></div>
<div class="bar2"></div>
<div class="bar3"></div>
</div>
<div class="collapse navbar-collapse " id="navbarCollapse">
<ul class="nav navbar-nav ml-auto">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
<div class="header-cta">
<a href="contact.html" class="btn btn-1c">Contact Us Now!</a>
</div>
</div>
<!-- Menu Toogle end -->
</div>
<!-- .container end -->
</nav>
<!-- #navigation end -->
</header>
<!-- end header area -->
<main>
<!-- header content area start -->
<div class="video-play">
<div class="image-overly-primary cover">
<div class="videobg loaded" data-background="images/content/landing/video-overlay.jpg" style="background-image: url(images/content/landing/video-overlay.jpg);">
<video poster="images/content/landing/video-overlay.jpg" playsinline="" autoplay="" muted="" loop="">
<source src="video/video-4.webm" type="video/webm">
<source src="video/video-4.mp4" type="video/mp4">
</video>
</div>
<!-- End Video -->
<div class="position-center header-content" role="banner">
<!-- .container -->
<div class="container">
<!-- .row -->
<div class="row">
<div class="col-xs-12 col-sm-12 header-area">
<div class="header-area-inner header-text"> <!-- single content header -->
<div><span class="subtitle ">Real Estate Template</span></div>
<h1 class="title">High Performance
<span id="typed-strings">
<span>Template</span>
<span>House</span>
<span>Business</span>
</span>
<span id="typed"></span>
</h1>
<p>High Performance HTML Corporate Business Template.
</p>
<div class="btn-section">
<a href="services.html" class="color-two btn-custom">Free Webinar <i class="fas fa-arrow-right"></i></a>
<div class="video-relative">
<a href="https://www.youtube.com/watch?v=TKnufs85hXk" class="video-btn popup-video ">
<i class="fas fa-play"></i>
<span class="ripple orangebg"></span>
<span class="ripple orangebg"></span>
<span class="ripple orangebg"></span>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- .row end -->
</div>
<!-- .container end -->
</div>
</div>
</div>
<!-- end header content area start -->
<!-- services image area start -->
<div id="services_image" class="wrap-bg black-layout">
<div class="container">
<div class="row justify-content-center text-center">
<div class="col-lg-8">
<div class="section-title with-p">
<span class="bg-start-light">Services</span>
<h2>From Concept To Creation</h2>
<p>Let’s Create Something new and awesome Togeather. I can help you create positive and permanent changes in your life.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4">
<div class="services_image services_bg1 image-overly-dark-opacity">
<div class="opac">
<h3>House Renovation</h3>
<p>High Performance Construction Template. Let’s Create Something new and awesome Togeather. Best Services.</p>
<a href="services.html" class="color-one btn-custom">Get Started <i class="fas fa-arrow-right"></i></a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="services_image services_bg2 image-overly-dark-opacity">
<div class="opac">
<h3>Construction Planning</h3>
<p>High Performance Construction Template. Let’s Create Something new and awesome Togeather. Best Services.</p>
<a href="services.html" class="color-one btn-custom">Get Started <i class="fas fa-arrow-right"></i></a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="services_image services_bg3 image-overly-dark-opacity">
<div class="opac">
<h3>Design & Build Package</h3>
<p>High Performance Construction Template. Let’s Create Something new and awesome Togeather. Best Services.</p>
<a href="services.html" class="color-one btn-custom">Get Started <i class="fas fa-arrow-right"></i></a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4">
<div class="services_image services_bg4 image-overly-dark-opacity">
<div class="opac">
<h3>Railway Infrastructure</h3>
<p>High Performance Construction Template. Let’s Create Something new and awesome Togeather. Best Services.</p>
<a href="services.html" class="color-one btn-custom">Get Started <i class="fas fa-arrow-right"></i></a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="services_image services_bg5 image-overly-dark-opacity">
<div class="opac">
<h3>Darfting & Design</h3>
<p>High Performance Construction Template. Let’s Create Something new and awesome Togeather. Best Services.</p>
<a href="services.html" class="color-one btn-custom">Get Started <i class="fas fa-arrow-right"></i></a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="services_image services_bg6 image-overly-dark-opacity">
<div class="opac">
<h3>Office Renovation</h3>
<p>High Performance Construction Template. Let’s Create Something new and awesome Togeather. Best Services.</p>
<a href="services.html" class="color-one btn-custom">Get Started <i class="fas fa-arrow-right"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- services image area end -->
<!-- features area start -->
<div id="features" class="wrap-bg">
<!-- .container -->
<div class="container">
<div class="post-heading-center section-title mb-60">
<span class="bg-start-light">Start Today</span>
<h2>How Can We Help You</h2>
<p>High Performance Corporate Business Template. Let’s Create Something new and awesome Togeather. Learn from any location in the world.</p>
</div>
<!-- .row -->
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-4">
<!-- 1 -->
<div class="single-features-light text-center"><!-- single features -->
<div class="move">
<!-- uses solid style -->
<i class="secondary-color fas fa-drafting-compass fa-3x"></i>
<h4><a href="#">Drafting</a></h4>
<p>Business Consultancy International is your gateway to a successful future in business. Start today to learn more.</p>
<div class="feature_link">
<a href="#">Learn more <i class="fas fa-arrow-right"></i></a>
</div>
</div>
</div><!-- end single features -->
</div>
<div class="col-xs-12 col-sm-12 col-md-4">
<!-- 2 -->
<div class="single-features-light text-center"><!-- single features -->
<div class="move">
<i class="secondary-color fas fa-pencil-ruler fa-3x"></i>
<h4><a href="#">Development</a></h4>
<p>Business Consultancy International is your gateway to a successful future in business. Start today to learn more.</p>
<div class="feature_link">
<a href="#">Learn more <i class="fas fa-arrow-right"></i></a>
</div>
</div>
</div><!-- end single features -->
</div>
<div class="col-xs-12 col-sm-12 col-md-4 ">
<!-- 3 -->
<div class="single-features-light text-center"><!-- single features -->
<div class="move">
<i class="secondary-color fas fa-warehouse fa-3x"></i>
<h4><a href="#">Services</a></h4>
<p>Business Consultancy International is your gateway to a successful future in business. Start today to learn more.</p>
<div class="feature_link">
<a href="#">Learn more <i class="fas fa-arrow-right"></i></a>
</div>
</div>
</div><!-- end single features -->
</div>
</div>
<!-- .row end -->
</div>
<!-- .container end -->
</div>
<!-- features area end -->
<!-- why-us area start -->
<div id="why-us" class="">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-5 col-xl-6 col-lg-5 why-us-left-bg2">
</div>
<div class="col-xs-12 col-sm-12 col-md-7 col-xl-6 col-lg-7 wrap-padding">
<div class="section-title">
<div>
<span class="bg-start-light">HI, I AM SARAH HARRIS</span>
<h3>Looking for a 100% quality and affordable constructor for your biggest dream project?</h3>
</div>
</div>
<p>We’re also experts at finding the sweet spot between Google’s guidelines and what is commercially
right for you. We have progressive theories on search as a tool for retention of customers, not just
for acquisition.
<br/><br/>
We also provider Digital Marketing, SEO Services, SMO Services, Graphics Design. We're also experts
at finding the sweet spot between Google's guidelines.</p>
<ul class="themeioan_ul_icon">
<li><i class="fas fa-check-circle"></i> High Quality Education</li>
<li><i class="fas fa-check-circle"></i> You can learn anything</li>
<li><i class="fas fa-check-circle"></i> We list your options by state</li>
<li><i class="fas fa-check-circle"></i> Expert-created content and resources</li>
<li><i class="fas fa-check-circle"></i> Connections Academy</li>
</ul>
<div class="mt-25 mb-50">
<a href="about.html" class="color-two btn-custom ">Start Today <i class="fas fa-arrow-right"></i></a>
</div>
</div>
</div>
</div>
<!-- why-us area end -->
<!-- pricing area start -->
<div id="pricing" class="wrap-bg wrap-bg-dark">
<!-- .container -->
<div class="container">
<div class="row justify-content-center text-center">
<div class="col-lg-8">
<div class="section-title with-p">
<h2>Choose Your Best Plan</h2>
<p>How to Choose the Best One for Your Budget. Learn about the different student loan repayment
plans. Determine how much you can pay each month.
</p>
</div>
</div>
</div>
<!-- .tbl-pricing -->
<div class="tbl-pricing">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-4 tbl-prc-col">
<!-- 1 -->
<div class="tbl-prc-wrap"><!-- single price plan -->
<div class="tbl-prc-heading">
<h4>House Renovation</h4>
<div class="tbl-prc-price">
<span class="price">$239</span>
<span class="month">/1month</span>
</div>
<div class="small-height bottom-round">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none" class="shape-waves" style="left: 0; transform: rotate3d(0,1,0,180deg);"><path class="shape-fill shape-fill-contrast" d="M790.5,93.1c-59.3-5.3-116.8-18-192.6-50c-29.6-12.7-76.9-31-100.5-35.9c-23.6-4.9-52.6-7.8-75.5-5.3c-10.2,1.1-22.6,1.4-50.1,7.4c-27.2,6.3-58.2,16.6-79.4,24.7c-41.3,15.9-94.9,21.9-134,22.6C72,58.2,0,25.8,0,25.8V100h1000V65.3c0,0-51.5,19.4-106.2,25.7C839.5,97,814.1,95.2,790.5,93.1z"></path></svg>
</div>
</div>
<ul class="tbl-prc-list">
<li><i class="fa fa-check"></i>Unlimited Photos</li>
<li><i class="fa fa-check"></i>Secure Online Transfer</li>
<li><i class="fa fa-check"></i>Cloud Storage</li>
<li><i class="fa fa-check"></i>24/7 Customer Service</li>
<li><i class="fa fa-check"></i>Automatic Backup</li>
</ul>
<div class="tbl-prc-footer">
<a href="#" class="color-two btn-custom">Purchase</a>
</div>
</div><!-- end single price plan -->
</div>
<div class="col-xs-12 col-sm-12 col-md-4 tbl-prc-col tbl-prc-recommended">
<!-- 2 -->
<div class="tbl-prc-wrap"><!-- single price plan -->
<div class="featured-price">Featured!</div>
<div class="tbl-prc-heading">
<h4>Planning</h4>
<div class="tbl-prc-price">
<span class="price">$139</span>
<span class="month">/1month</span>
</div>
<div class="small-height bottom-round">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none" class="shape-waves" style="left: 0; transform: rotate3d(0,1,0,180deg);"><path class="shape-fill shape-fill-contrast" d="M790.5,93.1c-59.3-5.3-116.8-18-192.6-50c-29.6-12.7-76.9-31-100.5-35.9c-23.6-4.9-52.6-7.8-75.5-5.3c-10.2,1.1-22.6,1.4-50.1,7.4c-27.2,6.3-58.2,16.6-79.4,24.7c-41.3,15.9-94.9,21.9-134,22.6C72,58.2,0,25.8,0,25.8V100h1000V65.3c0,0-51.5,19.4-106.2,25.7C839.5,97,814.1,95.2,790.5,93.1z"></path></svg>
</div>
</div>
<ul class="tbl-prc-list">
<li><i class="fa fa-check"></i>Unlimited Photos</li>
<li><i class="fa fa-check"></i>Secure Online Transfer</li>
<li><i class="fa fa-check"></i>Cloud Storage</li>
<li><i class="fa fa-check"></i>24/7 Customer Service</li>
<li><i class="fa fa-check"></i>Automatic Backup</li>
</ul>
<div class="tbl-prc-footer">
<a href="#" class="color-two btn-custom">Purchase</a>
</div>
</div><!-- end single price plan -->
</div>
<div class="col-xs-12 col-sm-12 col-md-4 tbl-prc-col">
<!-- 3 -->
<div class="tbl-prc-wrap"><!-- single price plan -->
<div class="tbl-prc-heading">
<h4>Design</h4>
<div class="tbl-prc-price">
<span class="price">$649</span>
<span class="month">/1month</span>
</div>
<div class="small-height bottom-round">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none" class="shape-waves" style="left: 0; transform: rotate3d(0,1,0,180deg);"><path class="shape-fill shape-fill-contrast" d="M790.5,93.1c-59.3-5.3-116.8-18-192.6-50c-29.6-12.7-76.9-31-100.5-35.9c-23.6-4.9-52.6-7.8-75.5-5.3c-10.2,1.1-22.6,1.4-50.1,7.4c-27.2,6.3-58.2,16.6-79.4,24.7c-41.3,15.9-94.9,21.9-134,22.6C72,58.2,0,25.8,0,25.8V100h1000V65.3c0,0-51.5,19.4-106.2,25.7C839.5,97,814.1,95.2,790.5,93.1z"></path></svg>
</div>
</div>
<ul class="tbl-prc-list">
<li><i class="fa fa-check"></i>Unlimited Photos</li>
<li><i class="fa fa-check"></i>Secure Online Transfer</li>
<li><i class="fa fa-check"></i>Cloud Storage</li>
<li><i class="fa fa-check"></i>24/7 Customer Service</li>
<li><i class="fa fa-check"></i>Automatic Backup</li>
</ul>
<div class="tbl-prc-footer">
<a href="#" class="color-two btn-custom">Purchase</a>
</div>
</div><!-- end single price plan -->
</div>
</div>
</div>
<!-- .tbl-pricing end -->
</div>
<!-- .container end -->
</div>
<!-- pricing area end -->
<!-- widget-call area start -->
<div id="widget-call" class="call-to-action-area wrap-bg-secondary">
<div class="container">
<div class="row justify-content-xl-between justify-content-lg-center justify-content-center">
<div class="col-xl-6 col-lg-7 col-md-10">
<div class="call-to-action-content"> <!-- single widget-call content-->
<div class="post-heading-left ">
<h3 class="text-white">How to become a developer and get your first job.</h3>
</div>
<p class="text-white">Some members enter the profession because they're eager to make a
difference. People tend to remember their members for an entire lifetime.
</p>
<div class="call-to-action-btn">
<a href="#">Get Started Now <i class="fas fa-arrow-right"></i></a>
</div>
</div>
</div>
<div class="col-xl-5 col-lg-0">
<div class="part-img">
<img src="images/content/landing/widget-call.png" alt="Like To Become An Instructor"/>
</div>
</div>
</div>
</div>
</div>
<!-- widget-call area end -->
<!-- members area start -->
<div id="members" class="wrap-bg wrap-bg-dark">
<div class="container">
<div class="row justify-content-center text-center">
<div class="col-lg-8">
<div class="section-title with-p">
<h2>Meet Our Professional Team</h2>
<p>All our members are certified and highly qualified, with the majority holding advanced. Our
staff also takes part in regular programs.
</p>
</div>
</div>
</div>
<div class="row carousel-slider gallery-slider">
<div class="col-lg-3">
<article class="item"><!-- single teacher -->
<a href="images/content/team/1.jpg" class="fancybox"
data-fancybox-group="images_gallery"><img src="images/content/team/1.jpg" alt="Image 1"/></a>
<h5>Ellison Johnson</h5>
<span>Sales Manager</span>
<p>Sales Manager is an academic rank used in universities or colleges in the United States, Canada, and some other countries.</p>
</article><!-- end single teacher -->
</div>
<div class="col-sm-3">
<article class="item">
<a href="images/content/team/2.jpg" class="fancybox"
data-fancybox-group="images_gallery"><img src="images/content/team/2.jpg" alt="Image 2"/></a>
<h5>George Dust</h5>
<span>Engineer</span>
<p>A bachelor's degree in psychology is ideal for would-be professors in this field. Although most psychology Ph.D. programs.</p>
</article><!-- end single teacher -->
</div>
<div class="col-sm-3">
<article class="item"><!-- single teacher -->
<a href="images/content/team/3.jpg" class="fancybox"
data-fancybox-group="images_gallery"><img src="images/content/team/3.jpg" alt="Image 3"/></a>
<h5>Ellison Johnson</h5>
<span>Chief Executive Officer</span>
<p>A bachelor's degree in psychology is ideal for would-be professors in this field. Although most psychology Ph.D. programs.</p>
</article><!-- end single teacher -->
</div>
<div class="col-sm-3">
<article class="item"><!-- single teacher -->
<a href="images/content/team/4.jpg" class="fancybox"
data-fancybox-group="images_gallery"><img src="images/content/team/4.jpg" alt="Image 4"/></a>
<h5>John Doe</h5>
<span>Chief Executive Officer</span>
<p>A bachelor's degree in psychology is ideal for would-be professors in this field. Although most psychology Ph.D. programs.</p>
</article><!-- end single teacher -->
</div>
</div>
</div>
</div>
<!-- members area end -->
<!-- testimonials area start -->
<!-- Video Start Container-->
<div class="video-play">
<div class="bg-overly-color cover">
<div class="videobg loaded" data-background="images/content/landing/video-overlay.jpg" style="background-image: url(images/content/landing/video-overlay.jpg);">
<video poster="images/content/landing/video-overlay.jpg" playsinline="" autoplay="" muted="" loop="">
<source src="video/video-4.webm" type="video/webm">
<source src="video/video-4.mp4" type="video/mp4">
</video>
</div>
<!-- End Video -->
<!-- Container for title and button -->
<div id="testimonials" class="video-play-content wrap-bg">
<div class="container clearfix">
<div class="row">
<div class="col-lg-12">
<div class="section-title text-center text-white">
<span class="bg-start-light">Happy Clients</span>
<h2>What Clients Say About Me</h2>
<p>Find reviews written by students for students to help you choose the best course for you.
Student reviews reflecting first hand experience.
</p>
</div>
</div>
<div class="col-lg-8 center-column">
<div class="carousel-slider general-slider">
<div class="col-sm-3">
<!-- 1 -->
<div class="themeioan_testimonial"><!-- single testimonial item -->
<img src="images/content/students/1.jpg" alt="Avatar"/>
<div class="testimonail-content">
<div class="testimonial-text text-center">
<p>"I always thought that people used to pay much for quality. But these guys
changed my opinion. The quality exceeds the price many times. I recommend it
to
everybody. I recommend it to everybody."
</p>
</div>
<div class="testimonial-author text-center">
<h4>Ellison Johnson</h4>
<div class="course-star">
<i class="fas fa-star"></i><i class="fas fa-star"></i><i
class="fas fa-star"></i><i class="fas fa-star"></i><i
class="fas fa-star"></i>
</div>
<p>Sales Manager</p>
</div>
</div>
</div><!-- end single testimonial item -->
</div>
<div class="col-sm-3">
<!-- 2 -->
<div class="themeioan_testimonial"><!-- single testimonial item -->
<img src="images/content/students/2.jpg" alt="Avatar"/>
<div class="testimonail-content">
<div class="testimonial-text text-center">
<p>"I always thought that people used to pay much for quality. But these guys
changed my opinion. The quality exceeds the price many times. I recommend it
to
everybody. I recommend it to everybody."
</p>
</div>
<div class="testimonial-author text-center">
<h4>Maria D.</h4>
<div class="course-star">
<i class="fas fa-star"></i><i class="fas fa-star"></i><i
class="fas fa-star"></i><i class="fas fa-star"></i><i
class="fas fa-star"></i>
</div>
<p>Engineer</p>
</div>
</div>
</div><!-- end single testimonial item -->
</div>
<div class="col-sm-3">
<!-- 3 -->
<div class="themeioan_testimonial"><!-- single testimonial item -->
<img src="images/content/students/3.jpg" alt="Avatar"/>
<div class="testimonail-content">
<div class="testimonial-text text-center">
<p>"I always thought that people used to pay much for quality. But these guys
changed my opinion. The quality exceeds the price many times. I recommend it
to
everybody. I recommend it to everybody."
</p>
</div>
<div class="testimonial-author text-center">
<h4>Mellisa Doe</h4>
<div class="course-star">
<i class="fas fa-star"></i><i class="fas fa-star"></i><i
class="fas fa-star"></i><i class="fas fa-star"></i><i
class="fas fa-star"></i>
</div>
<p>Chief Executive Officer </p>
</div>
</div>
</div><!-- end single testimonial item -->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- testimonials area end -->
<!-- blog area start -->
<div id="blog" class="wrap-bg wrap-bg-dark">
<div class="container">
<div class="row justify-content-center text-center">
<div class="col-lg-8">
<div class="section-title with-p">
<span class="bg-start-light">Start Today</span>
<h2>Latest Blog Posts</h2>
<p>Check out our latest blog posts, news and articles. We have articles on a range of topics
such as the leaving certificate and career guidance.
</p>
</div>
</div>
</div>
<!-- .row -->
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-4 blog-single">
<!-- 1 -->
<div class="themeioan_blog">
<article><!-- single blog articles -->
<div class="blog-photo">
<a href="blog-detail.html"><img src="images/content/blog/blog-1.jpg" alt="Blog"></a>
</div>
<div class="blog-content">
<div class="course-viewer">
<ul>
<li><i class="fas fa-user"></i> Ioan Drozd</li>
<li><i class="fas fa-user"></i> 10 Oct, 2019</li>
<li><i class="fas fa-comment-dots"></i> 350</li>
</ul>
</div>
<h5 class="title"><a href="blog-detail.html">The basics of good interior design, flow and function</a>
</h5>
<p>Everybody is welcome to our conference this is a free event, just register here visit.
</p>
<a href="blog-detail.html" class="readmore">Learn More <i class="fas fa-arrow-right"></i></a>
</div>
</article><!-- end single blog articles -->
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-4 blog-single">
<!-- 2 -->
<div class="themeioan_blog">
<article><!-- single blog articles -->
<div class="blog-photo">
<a href="blog-detail.html"><img src="images/content/blog/blog-2.jpg" alt="Blog"></a>
</div>
<div class="blog-content">
<div class="course-viewer">
<ul>
<li><i class="fas fa-user"></i> Ioan Drozd</li>
<li><i class="fas fa-user"></i> 10 Oct, 2019</li>
<li><i class="fas fa-comment-dots"></i> 350</li>
</ul>
</div>
<h5 class="title"><a href="blog-detail.html">Which Area Rug Material is Right for Your Apartment?</a></h5>
<p>Everybody is welcome to our conference this is a free event, just register here visit.
</p>
<a href="blog-detail.html" class="readmore">Learn More <i class="fas fa-arrow-right"></i></a>
</div>
</article><!-- end single blog articles -->
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-4 blog-single">
<!-- 3 -->
<div class="themeioan_blog">
<article><!-- single blog articles -->
<div class="blog-photo">
<a href="blog-detail.html"><img src="images/content/blog/blog-3.jpg" alt="Blog"></a>
</div>
<div class="blog-content">
<div class="course-viewer">
<ul>
<li><i class="fas fa-user"></i> Ioan Drozd</li>
<li><i class="fas fa-user"></i> 10 Oct, 2019</li>
<li><i class="fas fa-comment-dots"></i> 350</li>
</ul>
</div>
<h5 class="title"><a href="blog-detail.html">Classic Black, White and Gold Interiors</a>
</h5>
<p>Formal education occurs in a structured environment whose explicit purpose is.
</p>
<a href="blog-detail.html" class="readmore">Learn More <i class="fas fa-arrow-right"></i></a>
</div>
</article><!-- end single blog articles -->
</div>
</div>
</div>
<!-- .row end -->
</div>
</div>
<!-- blog area end -->
<!-- counter area start -->
<div id="counter" class="wrap-bg wrap-bg-secondary">
<div class="container">
<div class="row justify-content-center text-center text-white">
<div class="col-lg-8">
<div class="section-title with-p">
<span class="bg-start-light">Start Today</span>
<h2>Easily Experiment & Optimize</h2>
<p>Our landing page functionality makes it quick and easy to capture subscribers and build your list fast.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="row">
<!-- #counter -->
<div class="col-xs-6 col-sm-6 col-md-3">
<div class="info">
<!-- 1 -->
<div class="themeioan_counter text-center"><!-- single counter item -->
<i class="secondary-color fas fa-drafting-compass fa-3x"></i>
<h4>1700</h4>
<p>Drafting</p>
</div><!-- end single counter item -->
</div>
</div>
<div class="col-xs-6 col-sm-6 col-md-3">
<!-- .row -->
<div class="info">
<!-- 2 -->
<div class="themeioan_counter text-center"><!-- single counter item -->
<i class="secondary-color fas fa-pencil-ruler fa-3x"></i>
<h4>60</h4>
<p>Paint House</p>
</div>
</div>
</div>
<div class="col-xs-6 col-sm-6 col-md-3">
<div class="info">
<!-- 3 -->
<div class="themeioan_counter text-center"><!-- single counter item -->
<i class="secondary-color fas fa-drafting-compass fa-3x"></i>
<h4>800</h4>
<p>House Design</p>
</div><!-- end single counter item -->
</div>
</div>
<div class="col-xs-6 col-sm-6 col-md-3">
<div class="info">
<!-- 4 -->
<div class="themeioan_counter text-center"><!-- single counter item -->
<i class="secondary-color fas fa-warehouse fa-3x"></i>
<h4>1300</h4>
<p>Award Winning</p>
</div><!-- end single counter item -->
</div>
</div>
<!-- .row end -->
<!-- #counter area end -->
</div>
</div>
</div>
</div>
</div>
<!-- counter area end -->
<!-- events area start -->
<div id="events" class="wrap-bg wrap-bg-dark ">
<div class="container">
<div class="row justify-content-center text-center">
<div class="col-lg-8">
<div class="section-title with-p">
<h2>Upcoming Events</h2>
<p>After the successful series of the conferences, Cryptocurrency and Blockchain, we have
decided to hold their 4th edition.
</p>
</div>
</div>
</div>
<!-- .row -->
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-4 course-single mb20">
<!-- 1 -->
<div class="themeioan_event">
<article><!-- single event start -->
<div class="event-photo">
<div class="date">
<h4><span>11</span> Sep, 2019</h4>
</div>
<a href="event-detail.html"><img src="images/content/events/1.jpg" alt=""></a>
</div>
<div class="event-content">
<h5 class="title"><a href="event-detail.html">Register Today for New York Conference on Art Business</a>
</h5>
<p>This conference provides opportunities for the delegates to exchange new ideas and
application experiences face to face, to establish business.
</p>
<ul class="themeioan_ul_icon">
<li><i class="fas fa-check-circle"></i> Automated Software</li>
<li><i class="fas fa-check-circle"></i> House Building</li>
<li><i class="fas fa-check-circle"></i> Automated Software</li>
</ul>
<div class="course-viewer">
<ul>
<li><i class="fas fa-calendar-alt"></i> 11 Sep, 2019</li>
<li><i class="fas fa-map"></i> California, TX 70240</li>
</ul>
</div>
<div class="btn-section">
<a href="event-detail.html" class="color-two btn-custom ">Book Now <i class="fas fa-arrow-right"></i></a>
</div>
</div>
</article><!-- single event end-->
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-4 course-single mb20">
<!-- 2 -->
<div class="themeioan_event">
<article><!-- single event start -->
<div class="event-photo">
<div class="date">
<h4><span>14</span> Jul, 2019</h4>
</div>
<a href="event-detail.html"><img src="images/content/events/2.jpg" alt=""></a>
</div>
<div class="event-content">
<h5 class="title"><a href="event-detail.html">Coaching Secondary Schools United Nations Meet Us</a>
</h5>
<p>This conference provides opportunities for the delegates to exchange new ideas and
application experiences face to face, to establish business.
</p>
<ul class="themeioan_ul_icon">
<li><i class="fas fa-check-circle"></i> Content Engineering</li>
<li><i class="fas fa-check-circle"></i> Product Development</li>
<li><i class="fas fa-check-circle"></i> Data Structuring</li>
</ul>
<div class="course-viewer">
<ul>
<li><i class="fas fa-calendar-alt"></i> 14 Jul, 2019</li>
<li><i class="fas fa-map"></i> California, TX 70240</li>
</ul>
</div>
<div class="btn-section">
<a href="event-detail.html" class="color-two btn-custom ">Book Now <i class="fas fa-arrow-right"></i></a>
</div>
</div>
</article><!-- single event end -->
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-4 course-single mb20">
<!-- 3 -->
<div class="themeioan_event">
<article><!-- single event start -->
<div class="event-photo">
<div class="date">
<h4><span>11</span> Sep, 2019</h4>
</div>
<a href="event-detail.html"><img src="images/content/events/1.jpg" alt=""></a>
</div>
<div class="event-content">
<h5 class="title"><a href="event-detail.html">We are watinging New York Conference on Art Business</a>
</h5>
<p>This conference provides opportunities for the delegates to exchange new ideas and
application experiences face to face, to establish business.
</p>
<ul class="themeioan_ul_icon">
<li><i class="fas fa-check-circle"></i> Automated Software</li>
<li><i class="fas fa-check-circle"></i> House Building</li>
<li><i class="fas fa-check-circle"></i> Automated Software</li>
</ul>
<div class="course-viewer">
<ul>
<li><i class="fas fa-calendar-alt"></i> 11 Sep, 2019</li>
<li><i class="fas fa-map"></i> California, TX 70240</li>
</ul>
</div>
<div class="btn-section">
<a href="event-detail.html" class="color-two btn-custom ">Book Now <i class="fas fa-arrow-right"></i></a>
</div>
</div>
</article><!-- single event end-->
</div>
</div>
</div>
<!-- .row end -->
</div>
</div>
<!-- events area end -->
<!-- newsletter area start -->
<div id="newsletter">
<div class="container">
<div class="footer-subscribe">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12">
<h5 class="subscribe-text">Subscribe to our mailting list for latest updates with flat <b>10%
discount</b> promo code.
</h5>
</div>
<div class="col-lg-6 col-md-6 col-sm-12">
<div class="subscribe-form-pt">
<!-- Begin Newsletter Signup Form -->
<form class="themeioan-form-newsletter form" action="#">
<div class="newslleter-call">
<input class="input-text required-field" type="text" placeholder="Your email"
title="Your email"/>
<input class="newsletter-submit color-two button" type="submit" value="Subscribe"/>
</div>
</form>
<!--End Newsletter-->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- newsletter area end -->
</main>
<!-- #footer area start -->
<footer id="footer">
<div class="footer-top">
<!-- .container -->
<div class="container">
<div class="row">
<div class="col-xl-3 col-lg-4 col-sm-6"><!-- footer widget -->
<!--
<div class="f-widget-title">
<h4>Our Mission</h4>
</div>
<div class="footer-text">
<p>Our role is to be a cost effective supplement to existing engineering teams. We partner with defense industry research firms to provide project-focused engineering services.
</p>
</div>
-->
</div><!-- footer widget -->
<div class="col-xl-2 offset-xl-1 col-lg-3 col-sm-6"><!-- footer widget -->
</div><!-- footer widget -->
<div class="col-xl-3 col-lg-3 col-sm-6"><!-- footer widget -->
<div class="f-widget-title">
<h4>Contact us</h4>
</div>
<div class="sigle-address">
<div class="address-icon">
<i class="fas fa-home"></i>
</div>
<p>41 Dover St.,
Suite 1
Worcester,MA 01609
USA
</p>
</div>
<div class="sigle-address">
<div class="address-icon">
<i class="far fa-envelope-open"></i>
</div>
<p>info@bstarengineering.com</p>
</div>
<div class="sigle-address">
<div class="address-icon">
<i class="fas fa-phone"></i>
</div>
<p>(774) 224-9563</p>
</div>
<div class="sigle-address">
<div class="address-icon">
<i class="fas fa-fax"></i>
</div>
<p>(774) 224-9568</p>
</div>
<div class="icon-round-white footer-social mt-25">
<a href="https://twitter.com/BSTAREng" title="twitter"><i class="fab fa-twitter"></i></a>
<a href="https://www.youtube.com/channel/UCaExXmUIjuVhYEdWwlN23XQ" title="youtube"><i class="fab fa-youtube"></i></a>
<a href="https://www.linkedin.com/company/bstar-engineering/" title="linkedin"><i class="fab fa-linkedin"></i></a>
</div>
</div><!-- footer widget -->
</div>
<!-- to top -->
<div class="cd-top"><i class="fas fa-level-up-alt"></i></div>
</div>
</div>
<!-- .container end -->
<!-- #footer bottom start -->
<div class="container">
<div class="row">
<div class="col-sm-6">
<div class="copyright">
<p>©2020 B-STAR, LLC. All Rights Reserved. Designed By <a href="http://www.drozd.at/" title="ThemeIoan" target="_blank">ThemeIoan</a>
</p>
</div>
</div>
</div>