-
Notifications
You must be signed in to change notification settings - Fork 0
/
join-us.html
785 lines (717 loc) · 36.3 KB
/
join-us.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Co2Action – Join us</title>
<link
href="https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&display=swap"
rel="stylesheet">
<link
href="https://fonts.googleapis.com/css?family=Raleway:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap"
rel="stylesheet">
<link rel="stylesheet" id="bootstrap-css" href="css/bootstrap.css" type="text/css" media="all">
<link rel="stylesheet" id="awesome-font-css" href="css/font-awesome.css" type="text/css" media="all">
<link rel="stylesheet" id="ionicon-font-css" href="css/ionicon.css" type="text/css" media="all">
<link rel="stylesheet" id="industris-style-css" href="style.css" type="text/css" media="all">
<link rel="shortcut icon" href="favicon.png">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-203729925-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-203729925-1');
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-K6HSG5DLPW"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-K6HSG5DLPW');
</script>
<style>
html{
scroll-behavior: smooth;
}
.scrolling-box {
background-color: #eaeaea;
display: block;
height: 200px;
overflow-y: scroll;
scroll-behavior: smooth;
text-align: center;
width: 200px;
}
section {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
}
</style>
</head>
<body>
<!--<div class="collapse searchbar" id="searchbar">
<div class="search-area">
<div class="container">
<div class="row">
<div class="col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12">
<div class="input-group">
<input type="text" class="form-control" placeholder="Search for...">
<span class="input-group-btn">
<button class="btn btn-primary" type="button">Go!</button>
</span>
</div>-->
<!-- /input-group -->
<!--</div>-->
<!-- /.col-lg-6 -->
<!--</div>
</div>
</div>
</div>-->
<header id="site-header" class="site-header mobile-header-blue header-style-1">
<div id="header_topbar" class="header-topbar md-hidden sm-hidden clearfix">
<div class="container-custom">
<div class="row">
<div class="col-md-8">
<!-- Info on Topbar -->
<ul class="topbar-left">
<li><i class="icon ion-md-pin"></i>Houston - U.S.</li>
<li><i class="icon ion-md-call"></i>+1 (832) 983-7052</li>
<li><i class="icon ion-md-mail"></i>[email protected]</li>
</ul>
</div>
<!-- Info on topbar close -->
<!--<div class="col-md-4">
<ul class="topbar-right pull-right">
<li class="toggle_search topbar-search"><a href="#"><i class="icon ion-md-search"></i></a></li>
<li class="topbar-login"><a href="#"> Login </a></li>
<li class="topbar-languages"><a href="#"> English <i class="icon ion-ios-arrow-down"></i></a></li>
</ul>
</div>-->
</div>
</div>
</div>
<!-- Top bar close -->
<div class="main-header md-hidden sm-hidden">
<div class="container-custom">
<div class="row">
<div class="col-md-3">
<div class="logo-brand">
<a href="index.html"><img src="images/logo-co2.png" style="padding-left: 60px;padding-top: 10px;" alt="Co2action"></a>
</div>
</div>
<div class="col-md-9">
<div class="main-navigation">
<ul id="primary-menu" class="menu">
<li class="menu-item menu-item-has-children current-menu-ancestor current-menu-parent">
<a href="index.html">Home</a>
<!--<ul class="sub-menu">
<li class="menu-item"><a href="index.html">Home 1</a></li>
<li class="menu-item current-menu-item page_item current_page_item"><a href="index-2.html">Home 2</a></li>
<li class="menu-item"><a href="index-3.html">Home 3</a></li>
<li class="menu-item"><a href="index-4.html">Home 4</a></li>
</ul>-->
</li>
<li class="menu-item menu-item-has-children"><a href="service.html">Services</a>
<ul class="sub-menu">
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1874">
<a href="service.html#service-1" class="ancla">Diagnosis and Report of Your CO<sub>2</sub> Generation</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1875">
<a href="service.html#service-2" class="ancla">CO<sub>2</sub> Footprint Calculation</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1877">
<a href="service.html#service-3" class="ancla">Custom CO<sub>2</sub> Emissions Management Strategy,
Action Plan, and Monitoring
</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1878">
<a href="service.html#service-4" class="ancla">Custom Net Zero Roadmap – Carbon Neutrality Targets</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1879">
<a href="service.html#service-5" class="ancla">Energy Consumption Consulting</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1881">
<a href="service.html#service-6" class="ancla">CO<sub>2</sub> Offsetting</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1883">
<a href="service.html#service-7" class="ancla">Environmental Social Governance
(ESG) / Corporate Positioning and Ranking for CO<sub>2</sub> Management</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1883">
<a href="service.html#service-8" class="ancla">Strategic Communication and Marketing</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1882">
<a href="service.html#service-9" class="ancla">Corporate Carbon Education</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1884">
<a href="service.html#service-10" class="ancla">Third-Party Auditing and Compliance</a>
</li>
</ul>
</li>
<li class="menu-item menu-item-has-children"><a href="about-us.html">Who we are</a>
<ul class="sub-menu">
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1888">
<a href="about-us.html#About">Who we are</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1889">
<a href="about-us.html#What-We-Do">What We Do</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1890">
<a href="about-us.html#Mission">Mission</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1891">
<a href="about-us.html#Vision">Vision</a>
</li>
<!-- <li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1892">
<a href="#">Our Team</a>
</li> -->
<!-- <li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1893">
<a href="about-us.html#Partnerships-Affiliations">Alliances</a>
</li> -->
</ul>
</li>
<!-- <li class="menu-item menu-item-has-children"><a href="resources.html">Resources</a>
<ul class="sub-menu">
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1894">
<a href="news.html">News</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1895">
<a href="#">Newsletter</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1896">
<a href="podcast.html">Podcast</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1897">
<a href="social-media.html">Social Media</a>
</li>
</ul>
</li> -->
<!--<li class="menu-item menu-item-has-children"><a href="#">Projects and Clients</a>
<ul class="sub-menu">
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1898">
<a href="#">Projects</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1899">
<a href="#">Clients</a>
</li>
</ul>
</li>-->
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1873">
<a href="join-us.html">Join us</a>
<!--<ul class="sub-menu">
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1900">
<a href="join-us.html#work">Work</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1901">
<a href="join-us.html#internship">Internship</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1902">
<a href="#">Volunteer</a>
</li>
</ul>-->
</li>
<li class="menu-item menu-item-has-children"><a href="contact-us.html">Contact us</a>
</li>
</ul>
<!--<a href="#" class="btn btn-primary">Get a quote<i class="icon ion-md-paper-plane">--></i>
<!--</a>-->
</div>
</div>
</div>
</div>
</div>
<!-- Main header start -->
<!-- Mobile header start -->
<div class="mobile-header">
<div class="container-custom">
<div class="row">
<div class="col-xs-6">
<div class="logo-brand-mobile">
<a href="index.html"><img src="images/logo-co2.png" alt="Co2action"></a>
</div>
</div>
<div class="col-xs-6">
<div id="mmenu_toggle">
<button></button>
</div>
</div>
<div class="col-xs-12">
<div class="mobile-nav">
<ul id="primary-menu-mobile" class="mobile-menu">
<li class="menu-item menu-item-has-children current-menu-ancestor current-menu-parent">
<a href="index-2.html">Home</a>
<!--<ul class="sub-menu">
<li class="menu-item"><a href="index.html">Home 1</a></li>
<li class="menu-item"><a href="index-2.html">Home 2</a></li>
<li class="menu-item"><a href="index-3.html">Home 3</a></li>
<li class="menu-item"><a href="index-4.html">Home 4</a></li>
</ul>-->
</li>
<li class="menu-item menu-item-has-children"><a href="service.html">Services</a>
<ul class="sub-menu">
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1874">
<a href="service.html#service-1" class="ancla">Diagnosis and Report of Your CO<sub>2</sub> Generation</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1875">
<a href="service.html#service-2" class="ancla">CO<sub>2</sub> Footprint Calculation</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1877">
<a href="service.html#service-3" class="ancla">Custom CO<sub>2</sub> Emissions Management Strategy,
Action Plan, and Monitoring
</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1878">
<a href="service.html#service-4" class="ancla">Custom Net Zero Roadmap – Carbon Neutrality Targets</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1879">
<a href="service.html#service-5" class="ancla">Energy Consumption Consulting</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1881">
<a href="service.html#service-6" class="ancla">CO<sub>2</sub> Offsetting</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1883">
<a href="service.html#service-7" class="ancla">Environmental Social Governance
(ESG) / Corporate Positioning and Ranking for CO<sub>2</sub> Management</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1883">
<a href="service.html#service-8" class="ancla">Strategic Communication and Marketing</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1882">
<a href="service.html#service-9" class="ancla">Corporate Carbon Education</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1884">
<a href="service.html#service-10" class="ancla">Third-Party Auditing and Compliance</a>
</li>
</ul>
</li>
<li class="menu-item menu-item-has-children"><a href="about-us.html">Who we are</a>
<ul class="sub-menu">
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1888">
<a href="about-us.html#About">Who we are</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1889">
<a href="about-us.html#What-We-Do">What We Do</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1890">
<a href="about-us.html#Mission">Mission</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1891">
<a href="about-us.html#Vision">Vision</a>
</li>
<!-- <li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1892">
<a href="#">Our Team</a>
</li> -->
<!-- <li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1893">
<a href="about-us.html#Partnerships-Affiliations">Alliances</a>
</li> -->
</ul>
</li>
<!-- <li class="menu-item menu-item-has-children"><a href="resources.html">Resources</a>
<ul class="sub-menu">
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1894">
<a href="news.html">News</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1895">
<a href="#">Newsletter</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1896">
<a href="podcast.html">Podcast</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1897">
<a href="social-media.html">Social Media</a>
</li>
</ul>
</li> -->
<!-- <li class="menu-item menu-item-has-children"><a href="#">Projects and Clients</a>
<ul class="sub-menu">
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1898">
<a href="#">Projects</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1899">
<a href="#">Clients</a>
</li>
</ul>
</li> -->
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1873">
<a href="join-us.html">Join US</a>
<!--<ul class="sub-menu">
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1900">
<a href="join-us.html#work">Work</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1901">
<a href="join-us.html#internship">Internship</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1902">
<a href="#">Volunteer</a>
</li>
</ul>-->
</li>
<li class="menu-item menu-item-has-children"><a href="contact-us.html">Contact us</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- Mobile header start -->
<div id="content" class="site-content">
<div class="page-header"
style="background: url('images/subheader-join-us.jpg') no-repeat center center;">
<div class="container">
<div class="breadc-box no-line">
<div class="row">
<div class="col-md-12">
<h2 class="page-title">Join us</h2>
<ul id="breadcrumbs" class="breadcrumbs none-style">
<li><a href="index.html">Home</a></li>
<li class="active">Join us</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<section>
<div class="container">
<!--<div class="row flex-row">
<div class="col-sm-7 col-xs-12">
<h4 class="text-primary">WE FIND YOU</h4>
<h2>You want to accompany us</h2>
<p>We are looking for smart individuals who want to have a positive impact on the world. If
that’s you, visit our Careers page or send us a <br><a class="text-second" href="#">CV
at:[email protected]</a></p>
<br>
</div>
<div class="col-sm-5 col-xs-12 align-self-center text-right text-mb-left">
<div class="career-download">
<a href="#" class="btn btn-border btn-download">The Industris book <span
class="text-primary">PDF</span><i class="i-btn icon ion-md-archive"></i></a>
</div>
<div class="industris-space-xs"></div>
</div>
</div>-->
<!--<div class="row">
<div class="col-md-8 col-sm-12">
<h3>Parental leave for employees</h3>
<p>All employees in our group now qualify for paid parental leave. Our new policy allows 16
weeks of paid leave for all employees having children.</p>
<p>“Giving both parents time to bond with a new child is a contribution towards providing more
flexibility and support to employees and ensures a good start with a new family member. We
are delighted to offer this opportunity to all employees in Industris as part of our
benefits package,” says Magne André Hovden, senior vice president for corporate people and
leadership. <br>Entitlement to paid parental leave currently differs from country to
country, based on legal entitlements and company benefits. They are often a mix of
state/social security entitlements and company benefits. The Industris parental leave
benefit will be combined with any entitlements from social security/insurance schemes or
equivalent in the employment country.</p>
<p>The new policy for Industris employees applies from 1 January 2019.</p>
<div class="industris-space-xs"></div>
</div>
<div class="col-md-4 col-sm-12">
<img src="https://via.placeholder.com/360x466.png" alt="">
</div>
</div>-->
<div class="row flex-row">
<div class="col-sm-8 col-xs-12">
<a name ="work"></a>
<h2 class="no-margin-bottom" id="wok">Important Information</h2>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="industris-space-xs"></div>
<div class="career-box">
<h4>Unfortunately, at this time, we don't have any job vacancies.
</h4>
<p style="text-align: justify;">We thank you for choosing Co<sub>2</sub>Action as your
employer of choice. <br>That means a lot to us!
Best regards and best of luck with your job search.</p>
<h4>Come back soon!</h4>
<a id="back-to-top" href="contact-us.html" class="btn btn-back-to-top show pull-left">
Contact us<i class="icon ion-ios-arrow-dropright-circle"></i></a><br>
<div class="industris-space-xs"></div>
</div>
<!--<div class="row flex-row">
<div class="col-sm-8 col-xs-12">
<a name ="work"></a>
<h2 class="no-margin-bottom" id="wok">Work</h2>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="industris-space-xs"></div>
<div class="career-box">
<p style="text-align: justify;">Are you looking for a new challenge? Are you
interested in innovative and technically challenging projects in the
carbon sector? We may have the right position for you!</p>
<h4>Employment opportunities:</h4>
<h4 style="text-align: justify;">PART-TIME CO<sub>2</sub> MANAGEMENT SPECIALIST
(2 POSITIONS AVAILABLE/100% REMOTE</p>
<h4>Summary:</h4>
<p style="text-align: justify;">We are seeking an ambitious, proactive, curious,
and energetic candidate capable of working directly with clients to deliver
support for the successful implementation of CO<sub>2</sub> management.</p>
<p style="text-align: justify;">In addition to a fun, adventurous, and
challenging atmosphere, we offer you an international work environment in
which initiative and personal input really make a difference. You can
contribute to innovative and technically challenging climate change
projects for several industries, within an expanding company.</p>
<h4>We also offer:</h4>
<p>
- An attractive salary working from home<br>
- Flexible schedules<br>
- Training and potential growth opportunities<br>
- Numerous fun events such as our annual Christmas party, team building,
family day... You become part of the "Co2action family"!</p>
<h4>Our ideal candidate has:</h4>
<p>
* BS in energy, science, engineering, or a related field <br>
* Certification/qualification in CO<sub>2</sub> management<br>
* Proven experience in an energy management role<br>
* Strong communication skills and guarantees a results-oriented and
constructive consultation with our clients<br>
* An operative knowledge of English
</p>
<h4>Send us your CV at [email protected] today!</h4>
<p style="text-align: justify;">We are an equal opportunity employer.
Everyone will be considered for employment, internship, promotions, transfers,
and other conditions of employment without regard to race, color, religion, sex,
national origin, physical or mental handicap, age, marital status, sexual
orientation, political affiliation, or any other basis prohibited by state or
federal law.
</p>
<a id="back-to-top" href="contact-us.html" class="btn btn-back-to-top show pull-left">
More Information<i class="icon ion-ios-arrow-dropright-circle"></i></a><br>
<div class="industris-space-xs"></div>
</div>-->
<!----End Work--->
<!--<div class="row flex-row">
<div class="col-sm-8 col-xs-12">
<a name ="internship"></a>
<h2 class="no-margin-bottom" id="internship">Internship Opportunities</h2>
</div>
</div><br>
<div class="career-box">
<h4>Summary:</h4>
<p style="text-align: justify;">Interns are integral to the success of Co2action’s
work to ensure a net-zero future. Whether you’re interested in science,
engineering, or technology, we are always looking for talented and passionate
students.
</p>
<h4>ENERGY/SCIENCES/ENGINEERING UNDERGRADUATE STUDENT OR MASTER’S
STUDENT (2 POSITIONS AVAILABLE/100% REMOTE/PART-TIME OR FULL-TIME)
</h4>
<p style="text-align: justify;">We are looking for a senior-year student who
wants to innovate, grow, and lead in our company. You will carry out
assignments and projects designed to develop your skills as a CO<sub>2</sub> management
analyst while continuously learning from the future leader in CO<sub>2</sub> management.
NO EXPERIENCE IS REQUIRED.
</p>
<h4>We also offer:</h4>
<p>
- Flexible schedules working from home<br>
- Training and potential growth opportunities
</p>
<h4>Our ideal candidate:</h4>
<p>
- Current student of energy, science, engineering, or a related field <br>
- Interested in CO<sub>2</sub> management and climate change<br>
- Has strong communication skills<br>
- Fluent in English<br>
</p>
<h4>Send us your CV at [email protected] today!</h4>
<p style="text-align: justify;">We are an equal opportunity employer.
Everyone will be considered for employment, internship, promotions,
transfers, and other conditions of employment without regard to race, color,
religion, sex, national origin, physical or mental handicap, age, marital
status, sexual orientation, political affiliation, or any other basis
prohibited by state or federal law.
</p>
<a id="back-to-top" href="contact-us.html" class="btn btn-back-to-top show pull-left">
More Information<i class="icon ion-ios-arrow-dropright-circle"></i></a><br>
<div class="industris-space-xs"></div>
</div>
</div>-->
</div>
</div>
</section>
</div>
<footer id="site-footer" class="site-footer bg-footer">
<div class="main-footer">
<div class="container-custom">
<div class="row">
<div class="col-md-3 col-sm-6">
<div class="widget-footer">
<div id="media_image-1" class="widget widget_media_image">
<a href="index.html"><img src="images/logo-co2-blanco.png" alt="Co2action"></a>
</div>
<div id="custom_html-1" class="widget_text widget widget_custom_html">
<div class="textwidget custom-html-widget">
<p>Co<sub>2</sub>Action © 2021. All Rights Reserved</p>
<!-- <p>All the illustrated images we use on this site are from<br />
<strong>Freepik.es</strong>, <strong>Pexels.com</strong>,<br />
<strong>Pixabay.com</strong> y <strong>Google images</strong>
</p> -->
</div>
</div>
</div>
</div>
<!-- end col-lg-3 -->
<div class="col-md-3 col-sm-6">
<div class="widget-footer">
<div id="custom_html-2" class="widget_text widget widget_custom_html padding-left">
<div class="textwidget custom-html-widget">
<!--<ul>
<li><a href="service-detail.html">Oil & Gas exploited</a></li>
<li><a href="service-detail.html">Automotive Manufacturing</a></li>
<li><a href="service-detail.html">Transportation & Distribution</a></li>
<li><a href="service-detail.html">Manufacture</a></li>
<li><a href="service-detail.html">Industrial Construction</a></li>
<li><a href="service-detail.html">Green Energy</a></li>
</ul>-->
</div>
</div>
</div>
</div>
<!-- end col-lg-3 -->
<div class="col-md-3 col-sm-6">
<div class="widget-footer">
<div id="custom_html-3"
class="widget_text widge widget-footer widget_custom_html padding-left">
<div class="textwidget custom-html-widget">
<ul>
<li><a href="service.html">Services</a></li>
<li><a href="about-us.html">Who we are</a></li>
<!-- <li><a href="resources.html">Resources</a></li> -->
<!-- <li><a href="project-clients.html">Projects and Clients </a></li> -->
<li><a href="join-us.html">Join us </a></li>
<li><a href="contact-us.html">Contact us</a></li>
</ul>
</div>
</div>
</div>
</div>
<!-- end col-lg-3 -->
<div class="col-md-3 col-sm-6">
<div class="widget-footer">
<div id="mc4wp_form_widget-1" class="widget widget_mc4wp_form_widget">
<!-- Mailchimp for WordPress v4.5.2 - https://wordpress.org/plugins/mailchimp-for-wp/ -->
<form action="NLprocess.php" class="mc4wp-form" method="post"
data-name="Subscribe">
<div class="input-group">
<input type="email" name="email" class="form-control"
placeholder="Email Address" required="">
<span class="input-group-btn">
<button type="submit" class="btn btn-subcribe"><i
class="icon ion-md-checkmark"></i></button>
</span>
</div>
</form>
</div>
<!-- / Mailchimp for WordPress Plugin -->
<div class="footer-social ot-socials bg-white">
follow us:
<a href="https://www.facebook.com/Co2action"><i class="icon ion-logo-facebook"></i></a>
<a href="https://twitter.com/Co2action1"><i class="icon ion-logo-twitter"></i></a>
<a href="https://www.linkedin.com/company/co2action"><i class="icon ion-logo-linkedin"></i></a>
<a href="https://www.instagram.com/co2action/"><i class="icon ion-logo-instagram"></i></a>
<!-- <a href="Co2action"><i class="icon ion-logo-linkedin"></i></a> -->
</div>
</div>
</div>
<!-- end col-lg-3 -->
</div>
</div>
</div>
<!-- .main-footer -->
<div class="footer-bottom">
<div class="container-custom">
<div class="row">
<div class="col-md-12">
<ul class="topbar-left">
<li><i class="icon ion-md-pin"></i>Houston - U.S.</li>
<li><i class="icon ion-md-call"></i>+1 (832) 983-7052</li>
<li><i class="icon ion-md-mail"></i>[email protected]</li>
</ul>
<a id="back-to-top" href="#" class="btn btn-back-to-top show pull-right">Back to top<i
class="icon ion-ios-arrow-dropup-circle"></i></a>
</div>
</div>
</div>
</div>
<!-- .copyright-footer -->
</footer>
</div>
<script src='js/jquery.min.js'></script>
<script src='js/slick.min.js'></script>
<script src='js/jquery.sticky.js'></script>
<script src='js/countto.min.js'></script>
<script src='js/jquery.magnific-popup.min.js'></script>
<script src='js/jquery.isotope.min.js'></script>
<script src='js/scripts.js'></script>
<script src='js/parallax.min.js'></script>
<script>
var scene = document.getElementById('scene');
var parallax = new Parallax(scene);
</script>
</body>
</html>