-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1079 lines (1025 loc) · 79.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<title>NU ACM Student Chapter</title>
<meta property="og:image" content="">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Cabin:700">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat">
<link rel="stylesheet" href="assets/fonts/fontawesome-all.min.css">
<link rel="stylesheet" href="assets/fonts/font-awesome.min.css">
<link rel="stylesheet" href="assets/fonts/ionicons.min.css">
<link rel="stylesheet" href="assets/fonts/fontawesome5-overrides.min.css">
<link rel="stylesheet" href="assets/css/-Filterable-Gallery-with-Lightbox-BS4-.css">
<link rel="stylesheet" href="assets/css/Animated-Type-Heading.css">
<link rel="stylesheet" href="assets/css/Contact-Form-Clean.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/aos/2.1.1/aos.css">
<link rel="stylesheet" href="assets/css/Parallax-Scroll-Effect.css">
<link rel="icon" href="assets/img/acm-logo.png">
</head>
<body class="main-body">
<nav class="navbar navbar-light navbar-expand-md navbar-expand-lg fixed-top" id="mainNav">
<div class="container"><img src="assets/img/acm-logo.png" style="width: 50px;height: 50px;"><a
class="navbar-brand js-scroll-trigger" href="#" style="color: #ffffff;margin-left: 10px;">NU ACM
SC</a><button data-toggle="collapse" class="navbar-toggler navbar-toggler-right"
data-target="#navbarResponsive" type="button" aria-controls="navbarResponsive" aria-expanded="false"
aria-label="Toggle navigation" value="Menu"><i class="fa fa-bars"></i></button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="nav navbar-nav ml-auto">
<li class="nav-item nav-link js-scroll-trigger" role="presentation"><a
class="nav-link active js-scroll-trigger" href="#home">home</a></li>
<li class="nav-item nav-link js-scroll-trigger" role="presentation"><a
class="nav-link js-scroll-trigger" href="#about">ABOUT US</a></li>
<li class="nav-item nav-link js-scroll-trigger" role="presentation"><a
class="nav-link js-scroll-trigger" href="#objectives">OBJECTIVES</a></li>
<li class="nav-item nav-link js-scroll-trigger" role="presentation"><a
class="nav-link js-scroll-trigger" href="#events">EVENTS</a></li>
<li class="nav-item nav-link js-scroll-trigger" role="presentation"><a
class="nav-link js-scroll-trigger" href="#portfolio">GALLERY</a></li>
<li class="nav-item nav-link js-scroll-trigger" role="presentation"><a
class="nav-link js-scroll-trigger" href="#contact">contact</a></li>
</ul>
</div>
</div>
</nav>
<div class="jumbotron vertical-center align-items-center" id="home"
style="background-image:url("assets/img/intro-bg.jpg"); background-size: cover;">
<div class="container">
<div class="row justify-content-center">
<div class="col" style='text-align: center'>
<div class="caption v-middle text-center" style='display:inline-block; margin:0 auto;'>
<h1 class="text-center" style="display: inline-block; position: relative; text-align: left; font-size: 5vw; font-family: 'Montserrat';">
NAZARBAYEV UNIVERSITY ACM STUDENT CHAPTER
</h1>
</div>
<p class="intro-text" style="font-family: Montserrat, sans-serif;">Aspire Code Move</p><a class="btn btn-link btn-circle" role="button" href="#about"><i
class="fa fa-angle-double-down animated"></i></a>
</div>
</div>
</div>
</div>
<section id="about" class="content-section text-center"
style="padding: 100px 0px;padding-top: 100px;padding-bottom: 50px;">
<div class="container-fluid">
<h2 data-aos="fade" data-aos-delay="400"
style="color: #F5DEB3;font-family: Montserrat, sans-serif;margin-bottom: 60px;/*font-weight: bold;*/">
About Us</h2>
<div class="row" data-aos="fade-up" data-aos-delay="500" style="position: relative;
margin-left: 20px;
margin-right: 20px;
padding-bottom: 56.25%; /* 16:9 */
padding-top: 30px;
height: 0;
overflow: auto;
-webkit-overflow-scrolling:touch;">
<iframe class="embed-responsive-item"
src="https://www.youtube.com/embed/v9poLgitznM" frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen
style="position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;"></iframe>
<!--<img src="assets/img/team.jpg" style="width: 100%;">-->
</div>
<div class="row" style="margin-top: 100px;">
<div class="col-md-6 padding-0 ">
<img class="img-responsive" style="margin-top: 10px;margin-bottom: 10px;max-width: 100%; height: auto;" src="assets/img/team.jpg" alt="best chapter award">
</div>
<div class="col-md-6">
<div class="content-block" style="vertical-align:middle;">
<h4 class="text" style="color: white;font-size: 3vw;font-family: Montserrat, sans-serif;">
Who we are?<br></h4>
<p class="text-left"
style="font-size: vw;color: #eeeeee;font-family: Montserrat, sans-serif;margin-left: 40px">
NU ACM Student Chapter and NU ACM-W Student Chapter - are the Kazakhstani branches of the international ACM organization (Association for Computing Machinery).
<br>
Our common goal is to develop a competitive and high-skilled youth ready to push the Kazakhstani IT industry forward. We aspire to live in the world, where computing
technologies help us in solving the problems of tomorrow, where we use our knowledge and apply our skills to make a positive impact.
<br>
Since Autumn 2017, our organizations have shown great professionalism in the organization of the events on the university, city, and republican level.
<br></p>
<p class="text-left" style="font-size: vw;color: #eeeeee;font-family: Montserrat, sans-serif;margin-left: 40px">Our
main event is <HackNU> international hackathon. More info can be found at <a href="https://www.hacknu.kz/">the website.</a>
<br></p>
<div class="row">
<div class="col-lg-1 col-md-1 col-sm-2 col-xs-2 col-2"><i class="fa fa-trophy"
style="width: 40px;height: 40px;font-size: vw;margin-left: 10px;"></i></div>
<div class="col col-lg-5 col-md-5 col-sm-10 col-xs-10 col-10">
<h6 class="text-left"
style="margin: 0px 0px 8px;font-size: vw;font-family: Montserrat, sans-serif;">2x awarded for the best club at Nazarbayev University</h6>
<p class="text-left"
style="font-size: vw;color: #eeeeee;font-family: Montserrat, sans-serif;">- Technical Club of 2018!<br>
- the Academic Club of 2019!<br></p>
</div>
<div class="col-lg-1 col-md-1 col-sm-2 col-xs-2 col-2"><i class="fa fa-star"
style="font-size: vw;margin-left: 20px;"></i></div>
<div class="col col-lg-5 col-md-5 col-sm-10 col-xs-10 col-10" style="font-size: vw;">
<h6 class="text-left"
style="margin: 0px 0px 8px;font-size: vw;font-family: Montserrat, sans-serif;">
Two more reasons why you should love us</h6>
<p class="text-left"
style="font-size: vw;color: #eeeeee;font-family: Montserrat, sans-serif;">- Contributing to Gender Equality in Kazakhstani STEM sphere<br>
- Partnering with International Companies (Google, Microsoft, Facebook, EPAM)<br></p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="objectives" class="content-section text-center" style="padding-bottom: 0px;padding-top: 0px;">
<div class="container-fluid" style="margin-bottom: 60px;">
<div style="height:60px"></div>
<h2 data-aos="fade" data-aos-duration="400"
style="color: #F5DEB3;font-family: Montserrat, sans-serif;margin-bottom: 60px;">our objectives</h2>
<div class="row card-deck" style="margin-right: 0px;margin-left: 0px;">
<!-- single block -->
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-12 card card-objectives" data-aos="fade-up"
data-aos-duration="500">
<div
style="margin: 0px 0px 30px;padding: 30px 30px;border-left:0px solid rgba(18, 145, 230, 0.863);border-top: 0px solid rgba(18, 145, 230, 0.863);box-shadow: 0px 0px 0px rgba(0, 255, 115, 0.863), 0px 0px 0 rgba(239, 241, 239, 0.699);">
<i class="fas fa-users"
style="margin-right: 12px;width: 50px;height: 50px;font-size: 50px;color: #ed5252;text-shadow: 0 0 15px #776060;"></i>
<h4 class="objectives-heading" style="margin: 30px 0px 10px;color: #F5DEB3;">Sig</h4>
<p class="objectives-text" style="margin-bottom: 0px;">ACM's SIGs - Special Interest Groups -
are the communities that develop together in special technical areas. We have different
SIGs, such as Base, ICPC, CyberSecurity, Machine Learning, Web development, Game
Development, Mobile development.<br></p>
</div>
</div>
<!-- end of single block -->
<!-- single block -->
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-12 card card-objectives" data-aos="fade-up"
data-aos-duration="750">
<div
style="margin: 0px 0px 30px;padding: 30px 30px;border-left:0px solid rgba(18, 145, 230, 0.863);border-top: 0px solid rgba(18, 145, 230, 0.863);box-shadow: 0px 0px 0px rgba(0, 255, 115, 0.863), 0px 0px 0 rgba(239, 241, 239, 0.699);">
<i class="fas fa-hands-helping"
style="width: 50px;height: 50px;font-size: 50px;color: rgb(155,218,210);text-shadow: 0 0 15px #637673;"></i>
<h4 class="objectives-heading" style="margin: 30px 0px 10px;color: #F5DEB3;">Networking<br></h4>
<p class="objectives-text" style="margin-bottom: 0px;">Opportunity to meet guest speakers,
employees of leading world companies like Google, Facebook, and Bloomberg, and professors of
top universities around the globe</p>
</div>
</div>
<!-- end of single block -->
<!-- single block -->
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-12 card card-objectives" data-aos="fade-up"
data-aos-duration="1000">
<div
style="margin: 0px 0px 30px;padding: 30px 30px;border-left:0px solid rgba(18, 145, 230, 0.863);border-top: 0px solid rgba(18, 145, 230, 0.863);box-shadow: 0px 0px 0px rgba(0, 255, 115, 0.863), 0px 0px 0 rgba(239, 241, 239, 0.699);">
<i class="fab fa-react"
style="width: 50px;height: 50px;font-size: 50px;color: rgb(34,34,8);text-shadow: 0 0 15px rgb(242,229,160);"></i>
<h4 class="objectives-heading" style="margin: 30px 0px 10px;color: #F5DEB3;">Tech-Talks<br></h4>
<p class="objectives-text" style="margin-bottom: 0px;">NU ACM Student chapter often organizes
guest lectures with IT specialists from international companies, such as Google, Facebook,
Microsoft, and local companies.<br></p>
</div>
</div>
<!-- end of single block -->
</div>
<div class="row card-deck" style="margin: 0px;margin-right: 0px;margin-left: 0px; margin-top:40px;">
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-12 card card-objectives" data-aos="fade-up"
data-aos-duration="500">
<div
style="margin: 0px 0px 30px;padding: 30px 30px;border-left:0px solid rgba(18, 145, 230, 0.863);border-top: 0px solid rgba(18, 145, 230, 0.863);box-shadow: 0px 0px 0px rgba(0, 255, 115, 0.863), 0px 0px 0 rgba(239, 241, 239, 0.699);">
<i class="fas fa-chalkboard-teacher"
style="width: 50px;height: 50px;font-size: 50px;color: rgb(183,234,144);text-shadow: 0 0 15px #9da39d;"></i>
<h4 class="objectives-heading" style="margin: 30px 0px 10px;color: #F5DEB3;">WorkShops<br></h4>
<p class="objectives-text" style="margin-bottom: 0px;">NU ACM Student Chapter is hosting
workshops such as "Design Thinking & Collaborative Problem-Solving Workshop" with
professor Widom, "Crush Your Coding Workshop" with Facebook engineers.<br></p>
</div>
</div>
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-12 card card-objectives" data-aos="fade-up"
data-aos-duration="750">
<div
style="margin: 0px 0px 30px;padding: 30px 30px;border-left:0px solid rgba(18, 145, 230, 0.863);border-top: 0px solid rgba(18, 145, 230, 0.863);box-shadow: 0px 0px 0px rgba(0, 255, 115, 0.863), 0px 0px 0 rgba(239, 241, 239, 0.699);">
<i class="far fa-smile-beam"
style="width: 50px;height: 50px;font-size: 50px;color: rgb(247,212,122);text-shadow: 0 0 15px #b8b598;"
tar=""></i>
<h4 class="objectives-heading" style="margin: 30px 0px 10px;color: #F5DEB3;">COMMUNITY<br></h4>
<p class="objectives-text" style="margin-bottom: 0px;">The NU ACM Student Chapter is a community
of ambitious developers working together towards a common goal. In our society, in addition
to valuable knowledge and special experience in programming, you will become a part of a
very supportive and close-knit team.</p>
</div>
</div>
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-12 card card-objectives" data-aos="fade-up"
data-aos-duration="1000">
<div
style="margin: 0px 0px 30px;padding: 30px 30px;border-left:0px solid rgba(18, 145, 230, 0.863);border-top: 0px solid rgba(18, 145, 230, 0.863);box-shadow: 0px 0px 0px rgba(0, 255, 115, 0.863), 0px 0px 0 rgba(239, 241, 239, 0.699);">
<i class="fas fa-laptop-code"
style="width: 50px;height: 50px;font-size: 50px;color: rgb(208,131,161);text-shadow: 0 0 15px rgb(160,156,174);"></i>
<h4 class="objectives-heading" style="margin: 30px 0px 10px;color: #F5DEB3;">hackathons<br></h4>
<p class="objectives-text" style="margin-bottom: 0px;">Coding marathons where participants solve
real-life problems provided by top worldwide and Kazakhstani companies. The participation in
Hackathon, which is absolutely free, paves the way of students for the future work at the
sponsor companies.</p>
</div>
</div>
</div>
</div>
<div>
<div class="box-2">
<div class="container">
<div class="row justify-content-center" style="margin-top: 100px;margin-bottom: 10px;">
<div class="col-xl-3 col-lg-3 col-md-6 col-sm-12 awards-box" data-aos="fade-down"
data-aos-duration="300">
<div
style="padding-bottom: 2px;padding-right: 10px;padding-left: 10px;background-color: #112130;padding-top: 20px;">
<i class="icon ion-android-happy"
style="width: 40px;height: 40px;font-size: 40px;color: orange; text-shadow: 0 0 15px orangered;"></i>
<h2 class="text-center" style="margin: 0px 0px 0px;font-size: 35px;">500+</h2>
<p class="text-center objectives-heading" style="font-size: 18px;color: wheat;">
Subscribers<br></p>
</div>
</div>
<div class="col-xl-3 col-lg-3 col-md-6 col-sm-12 awards-box" data-aos="fade-down"
data-aos-duration="600">
<div
style="background-color: #192b3b;padding-top: 20px;padding-bottom: 2px;padding-right: 10px;padding-left: 10px;">
<i class="icon ion-android-globe"
style="width: 40px;height: 40px;font-size: 40px;color: rgb(11, 224, 224); text-shadow: 0 0 15px darkcyan;"></i>
<h2 class="text-center" style="margin: 0px 0px 0px;font-size: 35px;">7+</h2>
<p class="text-center objectives-heading" style="color: wheat;font-size: 18px;">
International Workshops<br></p>
</div>
</div>
<div class="col-xl-3 col-lg-3 col-md-6 col-sm-12 awards-box" data-aos="fade-down"
data-aos-duration="900">
<div
style="background-color: #253b4e;padding-top: 20px;padding-bottom: 2px;padding-right: 10px;padding-left: 10px;">
<i class="icon ion-flag"
style="width: 40px;height: 40px;font-size: 40px;color: lightgreen; text-shadow: 0 0 15px rgb(5, 212, 5);"></i>
<h2 class="text-center" style="margin: 0px 0px 0px;font-size: 35px;">20+</h2>
<p class="text-center objectives-heading" style="color: wheat;font-size: 18px;">National
Workshops<br></p>
</div>
</div>
<div class="col-xl-3 col-lg-3 col-md-6 col-sm-12 awards-box" data-aos="fade-down"
data-aos-duration="1200">
<div
style="background-color: #30495e;padding-top: 20px;padding-bottom: 2px;padding-right: 10px;padding-left: 10px;">
<i class="icon ion-trophy"
style="width: 40px;height: 40px;font-size: 40px;color:gold; text-shadow: 0 0 15px yellow;"></i>
<h2 class="text-center" style="margin: 0px 0px 0px;font-size: 35px;">2x</h2>
<p class="text-center objectives-heading" style="color: wheat;font-size: 18px;">Times
Best Club<br></p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="events" class="content-section" style="padding-bottom: 0px;padding-top: 0px; text-align: center">
<div class="container-fluid" style="margin-bottom: 60px;">
<div style="height:60px"></div>
<!-- section title -->
<h2 data-aos="fade" data-aos-duration="400"
style="color: #F5DEB3;font-family: Montserrat, sans-serif;margin-bottom: 60px;">our events 2019-2020</h2>
<!-- /section title -->
<!-- first row -->
<div class="row card-deck" style="margin-right: 0px;margin-left: 0px;">
<!-- single block -->
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-12 card card-objectives" data-aos="fade-up"
data-aos-duration="500">
<div style="margin: 0px 0px 30px;
padding: 30px 30px;
border-left:0px solid rgba(18, 145, 230, 0.863);
border-top: 0px solid rgba(18, 145, 230, 0.863);
box-shadow: 0px 0px 0px rgba(0, 255, 115, 0.863), 0px 0px 0 rgba(239, 241, 239, 0.699);">
<div style="width: 100%;
text-align: left;
height: 500px;
max-height: 600px;
overflow: hidden;
margin: 0;
position: relative;">
<img src="assets/img/ACMEvents/DigiGirlz.png" alt="ACM Team" class="img-responsive" style="position:absolute;
top: 50%;
transform: translateY(-50%);
max-width: 100%;">
</div>
<div>
<h4 class="objectives-heading" style="margin: 30px 0px 10px; color: #F5DEB3;">Microsoft Digigirlz</h4>
<p class="objectives-text" style="margin-bottom: 0px;">June 1-2, 2019<br></p>
</div>
</div>
</div>
<!-- /single block -->
<!-- single block -->
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-12 card card-objectives" data-aos="fade-up"
data-aos-duration="500">
<div
style="margin: 0px 0px 30px;padding: 30px 30px;border-left:0px solid rgba(18, 145, 230, 0.863);border-top: 0px solid rgba(18, 145, 230, 0.863);box-shadow: 0px 0px 0px rgba(0, 255, 115, 0.863), 0px 0px 0 rgba(239, 241, 239, 0.699);">
<div style="width: 100%;
text-align: left;
height: 500px;
max-height: 600px;
overflow: hidden;
margin: 0;
position: relative;">
<img src="assets/img/ACMEvents/Leetcode Marathon.jpg" alt="ACM Team" class="img-responsive" style="position:absolute;
top: 50%;
transform: translateY(-50%);
max-width: 100%;">
</div>
<h4 class="objectives-heading" style="margin: 30px 0px 10px;color: #F5DEB3;">Leetcode Marathon</h4>
<p class="objectives-text" style="margin-bottom: 0px;">August 29 - September 12, 2019<br></p>
</div>
</div>
<!-- /single block -->
<!-- single block -->
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-12 card card-objectives" data-aos="fade-up"
data-aos-duration="500">
<div
style="margin: 0px 0px 30px;padding: 30px 30px;border-left:0px solid rgba(18, 145, 230, 0.863);border-top: 0px solid rgba(18, 145, 230, 0.863);box-shadow: 0px 0px 0px rgba(0, 255, 115, 0.863), 0px 0px 0 rgba(239, 241, 239, 0.699);">
<div style="width: 100%;
text-align: left;
height: 500px;
max-height: 600px;
overflow: hidden;
margin: 0;
position: relative;">
<img src="assets/img/ACMEvents/InstructionalOyssey.png" alt="ACM Team" class="img-responsive" style="position:absolute;
top: 50%;
transform: translateY(-50%);
max-width: 100%;">
</div>
<h4 class="objectives-heading" style="margin: 30px 0px 10px;color: #F5DEB3;">3.5 day Big Data Course from prof. Widom</h4>
<p class="objectives-text" style="margin-bottom: 0px;">Septmber 4-8, 2019<br>Professor Widom is a dean of Engineering at Stanford
who visited our university as part of her Instructional Odyssey program. She also held the workshop on Design Thinking and the Roundtable for females.<br><a href="https://drive.google.com/drive/u/2/folders/1ehrFr8mSq5eoeRQNV3nkT5app96I3D20">Photos from the event.</a><br></p>
</div>
</div>
<!-- /single block -->
</div>
<!-- second row -->
<div class="row card-deck" style="margin-right: 0px; margin-left: 0px; margin-top: 40px;">
<!-- single block -->
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-12 card card-objectives" data-aos="fade-up"
data-aos-duration="500">
<div
style="margin: 0px 0px 30px;padding: 30px 30px;border-left:0px solid rgba(18, 145, 230, 0.863);border-top: 0px solid rgba(18, 145, 230, 0.863);box-shadow: 0px 0px 0px rgba(0, 255, 115, 0.863), 0px 0px 0 rgba(239, 241, 239, 0.699);">
<div style="width: 100%;
text-align: left;
height: 500px;
max-height: 600px;
overflow: hidden;
margin: 0;
position: relative;">
<img src="assets/img/ACMEvents/InternshipAbroad Aisha Akezhan.jpg" alt="ACM Team" class="img-responsive" style="position:absolute;
top: 50%;
transform: translateY(-50%);
max-width: 100%;">
</div>
<h4 class="objectives-heading" style="margin: 30px 0px 10px;color: #F5DEB3;">Internships Abroad</h4>
<p class="objectives-text" style="margin-bottom: 0px;">September 13, 2019<br>Speakers:<br>- Aishabibi Adambek, 4th year student, twice Google intern: STEP Intern in 2018 and SWE Intern in 2019.<br>- Akezhan Mussa, 3rd year student, had a research internship in Bioinformatics Institute, Singapore.<br></p>
</div>
</div>
<!-- /single block -->
<!-- single block -->
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-12 card card-objectives" data-aos="fade-up"
data-aos-duration="500">
<div
style="margin: 0px 0px 30px;padding: 30px 30px;border-left:0px solid rgba(18, 145, 230, 0.863);border-top: 0px solid rgba(18, 145, 230, 0.863);box-shadow: 0px 0px 0px rgba(0, 255, 115, 0.863), 0px 0px 0 rgba(239, 241, 239, 0.699);">
<div style="width: 100%;
text-align: left;
height: 500px;
max-height: 600px;
overflow: hidden;
margin: 0;
position: relative;">
<img src="assets/img/ACMEvents/Data Structure and Algorithms in Practice.jpg" alt="ACM Team" class="img-responsive" style="position:absolute;
top: 50%;
transform: translateY(-50%);
max-width: 100%;">
</div>
<h4 class="objectives-heading" style="margin: 30px 0px 10px;color: #F5DEB3;">Workshop: Data Structures and Algorithms in Practice</h4>
<p class="objectives-text" style="margin-bottom: 0px;">September 15, 2019<br>Speaker: Daneker Nurgaliyeva, 3rd year Computer Science student.<br></p>
</div>
</div>
<!-- /single block -->
<!-- single block -->
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-12 card card-objectives" data-aos="fade-up"
data-aos-duration="500">
<div
style="margin: 0px 0px 30px;padding: 30px 30px;border-left:0px solid rgba(18, 145, 230, 0.863);border-top: 0px solid rgba(18, 145, 230, 0.863);box-shadow: 0px 0px 0px rgba(0, 255, 115, 0.863), 0px 0px 0 rgba(239, 241, 239, 0.699);">
<div style="width: 100%;
text-align: left;
height: 500px;
max-height: 600px;
overflow: hidden;
margin: 0;
position: relative;">
<img src="assets/img/ACMEvents/Dynamic Programming in Practice.jpg" alt="ACM Team" class="img-responsive" style="position:absolute;
top: 50%;
transform: translateY(-50%);
max-width: 100%;">
</div>
<h4 class="objectives-heading" style="margin: 30px 0px 10px;color: #F5DEB3;">Workshop: Dynamic Programming in Practice</h4>
<p class="objectives-text" style="margin-bottom: 0px;">September 22, 2019<br>Speaker: Danel Batyrbek, 2nd year Computer Science student.<br></p>
</div>
</div>
<!-- /single block -->
</div>
<!-- third row -->
<div class="row card-deck" style="margin-right: 0px; margin-left: 0px; margin-top: 40px;">
<!-- single block -->
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-12 card card-objectives" data-aos="fade-up"
data-aos-duration="500">
<div
style="margin: 0px 0px 30px;padding: 30px 30px;border-left:0px solid rgba(18, 145, 230, 0.863);border-top: 0px solid rgba(18, 145, 230, 0.863);box-shadow: 0px 0px 0px rgba(0, 255, 115, 0.863), 0px 0px 0 rgba(239, 241, 239, 0.699);">
<div style="width: 100%;
text-align: left;
height: 500px;
max-height: 600px;
overflow: hidden;
margin: 0;
position: relative;">
<img src="assets/img/ACMEvents/Females in Kazakhstani IT.jpg" alt="ACM Team" class="img-responsive" style="position:absolute;
top: 50%;
transform: translateY(-50%);
max-width: 100%;">
</div>
<h4 class="objectives-heading" style="margin: 30px 0px 10px;color: #F5DEB3;">Talks: Females in Kazakhstani IT. Real Talk</h4>
<p class="objectives-text" style="margin-bottom: 0px;">September 25, 2019<br>Speakers: Adilyam Tilegen and Yenlik Bokina, members of the founding team of programming school "Alem".<br></p>
</div>
</div>
<!-- /single block -->
<!-- single block -->
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-12 card card-objectives" data-aos="fade-up"
data-aos-duration="500">
<div
style="margin: 0px 0px 30px;padding: 30px 30px;border-left:0px solid rgba(18, 145, 230, 0.863);border-top: 0px solid rgba(18, 145, 230, 0.863);box-shadow: 0px 0px 0px rgba(0, 255, 115, 0.863), 0px 0px 0 rgba(239, 241, 239, 0.699);">
<div style="width: 100%;
text-align: left;
height: 500px;
max-height: 600px;
overflow: hidden;
margin: 0;
position: relative;">
<img src="assets/img/ACMEvents/Google Technical Interview.jpg" alt="ACM Team" class="img-responsive" style="position:absolute;
top: 50%;
transform: translateY(-50%);
max-width: 100%;">
</div>
<h4 class="objectives-heading" style="margin: 30px 0px 10px;color: #F5DEB3;">Technical Interview Demonstration Session</h4>
<p class="objectives-text" style="margin-bottom: 0px;">October 4, 2019<br>Speakers: Carla Hyenne and Todd Davies, software engineers at Google Munich.<br></p>
</div>
</div>
<!-- /single block -->
<!-- single block -->
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-12 card card-objectives" data-aos="fade-up"
data-aos-duration="500">
<div
style="margin: 0px 0px 30px;padding: 30px 30px;border-left:0px solid rgba(18, 145, 230, 0.863);border-top: 0px solid rgba(18, 145, 230, 0.863);box-shadow: 0px 0px 0px rgba(0, 255, 115, 0.863), 0px 0px 0 rgba(239, 241, 239, 0.699);">
<div style="width: 100%;
text-align: left;
height: 500px;
max-height: 600px;
overflow: hidden;
margin: 0;
position: relative;">
<img src="assets/img/ACMEvents/Workshop by Facebook.jpg" alt="ACM Team" class="img-responsive" style="position:absolute;
top: 50%;
transform: translateY(-50%);
max-width: 100%;">
</div>
<h4 class="objectives-heading" style="margin: 30px 0px 10px;color: #F5DEB3;">Crush Your Coding Interview</h4>
<p class="objectives-text" style="margin-bottom: 0px;">October 8, 2019<br>Speakers: Lucas Moscowicz and Mike Berman, software engineers from Facebook London.<br><a href="https://drive.google.com/drive/u/2/folders/1gc-bQJ4KCzsB1cAfEAV4D-jlwZJY9Gz3">Photos from the event.</a><br></p>
</div>
</div>
<!-- /single block -->
</div>
<!-- forth row -->
<div class="row card-deck" style="margin-right: 0px; margin-left: 0px; margin-top: 40px;">
<!-- single block -->
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-12 card card-objectives" data-aos="fade-up"
data-aos-duration="500">
<div
style="margin: 0px 0px 30px;padding: 30px 30px;border-left:0px solid rgba(18, 145, 230, 0.863);border-top: 0px solid rgba(18, 145, 230, 0.863);box-shadow: 0px 0px 0px rgba(0, 255, 115, 0.863), 0px 0px 0 rgba(239, 241, 239, 0.699);">
<div style="width: 100%;
text-align: left;
height: 500px;
max-height: 600px;
overflow: hidden;
margin: 0;
position: relative;">
<img src="assets/img/ACMEvents/Coding marathon Fall2019.jpg" alt="ACM Team" class="img-responsive" style="position:absolute;
top: 50%;
transform: translateY(-50%);
max-width: 100%;">
</div>
<h4 class="objectives-heading" style="margin: 30px 0px 10px;color: #F5DEB3;">Coding Marathon for Females</h4>
<p class="objectives-text" style="margin-bottom: 0px;">October 13, 2019<br></p>
</div>
</div>
<!-- /single block -->
<!-- single block -->
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-12 card card-objectives" data-aos="fade-up"
data-aos-duration="500">
<div
style="margin: 0px 0px 30px;padding: 30px 30px;border-left:0px solid rgba(18, 145, 230, 0.863);border-top: 0px solid rgba(18, 145, 230, 0.863);box-shadow: 0px 0px 0px rgba(0, 255, 115, 0.863), 0px 0px 0 rgba(239, 241, 239, 0.699);">
<div style="width: 100%;
text-align: left;
height: 500px;
max-height: 600px;
overflow: hidden;
margin: 0;
position: relative;">
<img src="assets/img/ACMEvents/Way for scholarships.jpg" alt="ACM Team" class="img-responsive" style="position:absolute;
top: 50%;
transform: translateY(-50%);
max-width: 100%;">
</div>
<h4 class="objectives-heading" style="margin: 30px 0px 10px;color: #F5DEB3;">Way for Scholarships: Girls' Opportunities</h4>
<p class="objectives-text" style="margin-bottom: 0px;">October 14, 2019<br>Speaker: Aishabibi Adambek, 4th year student, winner of Google Women Techmakers, McKinsey NGWL Award, GHC attendee.<br></p>
</div>
</div>
<!-- /single block -->
<!-- single block -->
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-12 card card-objectives" data-aos="fade-up"
data-aos-duration="500">
<div
style="margin: 0px 0px 30px;padding: 30px 30px;border-left:0px solid rgba(18, 145, 230, 0.863);border-top: 0px solid rgba(18, 145, 230, 0.863);box-shadow: 0px 0px 0px rgba(0, 255, 115, 0.863), 0px 0px 0 rgba(239, 241, 239, 0.699);">
<div style="width: 100%;
text-align: left;
height: 500px;
max-height: 600px;
overflow: hidden;
margin: 0;
position: relative;">
<img src="assets/img/ACMEvents/Junior Talks.jpg" alt="ACM Team" class="img-responsive" style="position:absolute;
top: 50%;
transform: translateY(-50%);
max-width: 100%;">
</div>
<h4 class="objectives-heading" style="margin: 30px 0px 10px;color: #F5DEB3;">Junior Talks</h4>
<p class="objectives-text" style="margin-bottom: 0px;">October 21, 2019<br>Speakers: Saadat Nursultan, Saddam Asmatullayev, Almas Kylysh Maksotov, Daulet Issatayev, 3rd year Computer Science Students.<br><a href="https://drive.google.com/drive/u/2/folders/1--5erXD7uhAT0Pn_MDa-332e_wu-u5OB">Photos from the event.</a><br></p>
</div>
</div>
<!-- /single block -->
</div>
<!-- fifth row -->
<div class="row card-deck" style="margin-right: 0px; margin-left: 0px; margin-top: 40px;">
<!-- single block -->
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-12 card card-objectives" data-aos="fade-up"
data-aos-duration="500">
<div
style="margin: 0px 0px 30px;padding: 30px 30px;border-left:0px solid rgba(18, 145, 230, 0.863);border-top: 0px solid rgba(18, 145, 230, 0.863);box-shadow: 0px 0px 0px rgba(0, 255, 115, 0.863), 0px 0px 0 rgba(239, 241, 239, 0.699);">
<div style="width: 100%;
text-align: left;
height: 500px;
max-height: 600px;
overflow: hidden;
margin: 0;
position: relative;">
<img src="assets/img/ACMEvents/Talk by Sergey Lopatin .jpg" alt="ACM Team" class="img-responsive" style="position:absolute;
top: 50%;
transform: translateY(-50%);
max-width: 100%;">
</div>
<h4 class="objectives-heading" style="margin: 30px 0px 10px;color: #F5DEB3;">GameDev Talk by Sergey Lopatin</h4>
<p class="objectives-text" style="margin-bottom: 0px;">October 24, 2019<br></p>
</div>
</div>
<!-- /single block -->
<!-- single block -->
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-12 card card-objectives" data-aos="fade-up"
data-aos-duration="500">
<div
style="margin: 0px 0px 30px;padding: 30px 30px;border-left:0px solid rgba(18, 145, 230, 0.863);border-top: 0px solid rgba(18, 145, 230, 0.863);box-shadow: 0px 0px 0px rgba(0, 255, 115, 0.863), 0px 0px 0 rgba(239, 241, 239, 0.699);">
<div style="width: 100%;
text-align: left;
height: 500px;
max-height: 600px;
overflow: hidden;
margin: 0;
position: relative;">
<img src="assets/img/ACMEvents/ICPC.png" alt="ACM Team" class="img-responsive" style="position:absolute;
top: 50%;
transform: translateY(-50%);
max-width: 100%;">
</div>
<h4 class="objectives-heading" style="margin: 30px 0px 10px;color: #F5DEB3;">ICPC Competition</h4>
<p class="objectives-text" style="margin-bottom: 0px;">October 26, 2019<br></p>
</div>
</div>
<!-- /single block -->
<!-- single block -->
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-12 card card-objectives" data-aos="fade-up"
data-aos-duration="500">
<div
style="margin: 0px 0px 30px;padding: 30px 30px;border-left:0px solid rgba(18, 145, 230, 0.863);border-top: 0px solid rgba(18, 145, 230, 0.863);box-shadow: 0px 0px 0px rgba(0, 255, 115, 0.863), 0px 0px 0 rgba(239, 241, 239, 0.699);">
<div style="width: 100%;
text-align: left;
height: 500px;
max-height: 600px;
overflow: hidden;
margin: 0;
position: relative;">
<img src="assets/img/ACMEvents/Talk by Temirlan Kuntubayev.jpg" alt="ACM Team" class="img-responsive" style="position:absolute;
top: 50%;
transform: translateY(-50%);
max-width: 100%;">
</div>
<h4 class="objectives-heading" style="margin: 30px 0px 10px;color: #F5DEB3;">MobDev Talk by Temirlan Kuntubayev</h4>
<p class="objectives-text" style="margin-bottom: 0px;">November 7, 2019<br></p>
</div>
</div>
<!-- /single block -->
</div>
<!-- sixth row -->
<div class="row card-deck" style="margin-right: 0px; margin-left: 0px; margin-top: 40px;">
<!-- single block -->
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-12 card card-objectives" data-aos="fade-up"
data-aos-duration="500">
<div
style="margin: 0px 0px 30px;padding: 30px 30px;border-left:0px solid rgba(18, 145, 230, 0.863);border-top: 0px solid rgba(18, 145, 230, 0.863);box-shadow: 0px 0px 0px rgba(0, 255, 115, 0.863), 0px 0px 0 rgba(239, 241, 239, 0.699);">
<div style="width: 100%;
text-align: left;
height: 500px;
max-height: 600px;
overflow: hidden;
margin: 0;
position: relative;">
<img src="assets/img/ACMEvents/Local Hack Day.jpg" alt="ACM Team" class="img-responsive" style="position:absolute;
top: 50%;
transform: translateY(-50%);
max-width: 100%;">
</div>
<h4 class="objectives-heading" style="margin: 30px 0px 10px;color: #F5DEB3;">Local Hack Day</h4>
<p class="objectives-text" style="margin-bottom: 0px;">December 2, 2019<br><a href="https://drive.google.com/drive/u/2/folders/11GN5WI8XlFhI208DcRGekDRy6yJrcNYf">Photos from the event.</a><br></p>
</div>
</div>
<!-- /single block -->
<!-- single block -->
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-12 card card-objectives" data-aos="fade-up"
data-aos-duration="500">
<div
style="margin: 0px 0px 30px;padding: 30px 30px;border-left:0px solid rgba(18, 145, 230, 0.863);border-top: 0px solid rgba(18, 145, 230, 0.863);box-shadow: 0px 0px 0px rgba(0, 255, 115, 0.863), 0px 0px 0 rgba(239, 241, 239, 0.699);">
<div style="width: 100%;
text-align: left;
height: 500px;
max-height: 600px;
overflow: hidden;
margin: 0;
position: relative;">
<img src="assets/img/ACMEvents/Hour Of Code.JPG" alt="ACM Team" class="img-responsive" style="position:absolute;
top: 50%;
transform: translateY(-50%);
max-width: 100%;">
</div>
<h4 class="objectives-heading" style="margin: 30px 0px 10px;color: #F5DEB3;">Hour of Code</h4>
<p class="objectives-text" style="margin-bottom: 0px;">December 8, 2019<br><a href="https://drive.google.com/drive/u/2/folders/1-B0OuOlQiBhODek6Fs5pEox0h5Cv-6Db">Photos from the event.</a><br></p>
</div>
</div>
<!-- /single block -->
<!-- single block -->
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-12 card card-objectives" data-aos="fade-up"
data-aos-duration="500">
<div
style="margin: 0px 0px 30px;padding: 30px 30px;border-left:0px solid rgba(18, 145, 230, 0.863);border-top: 0px solid rgba(18, 145, 230, 0.863);box-shadow: 0px 0px 0px rgba(0, 255, 115, 0.863), 0px 0px 0 rgba(239, 241, 239, 0.699);">
<div style="width: 100%;
text-align: left;
height: 500px;
max-height: 600px;
overflow: hidden;
margin: 0;
position: relative;">
<img src="assets/img/ACMEvents/Opportunuties in Open Source.jpg" alt="ACM Team" class="img-responsive" style="position:absolute;
top: 50%;
transform: translateY(-50%);
max-width: 100%;">
</div>
<h4 class="objectives-heading" style="margin: 30px 0px 10px;color: #F5DEB3;">Opportunities in Open Source</h4>
<p class="objectives-text" style="margin-bottom: 0px;">January 30, 2020<br>Speakers:<br>- Assiya Khuzyakhmetova, 4th year student, intern at Mozilla (Outreachy), Blackrock, Bloomberg.<br>- Demezhan Marikov, 3rd year student, participant of Google Summer of Code 2019.<br></p>
</div>
</div>
<!-- /single block -->
</div>
<!-- seventh row -->
<div class="row card-deck" style="margin-right: 0px; margin-left: 0px; margin-top: 40px;">
<!-- single block -->
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-12 card card-objectives" data-aos="fade-up"
data-aos-duration="500">
<div
style="margin: 0px 0px 30px;padding: 30px 30px;border-left:0px solid rgba(18, 145, 230, 0.863);border-top: 0px solid rgba(18, 145, 230, 0.863);box-shadow: 0px 0px 0px rgba(0, 255, 115, 0.863), 0px 0px 0 rgba(239, 241, 239, 0.699);">
<div style="width: 100%;
text-align: left;
height: 500px;
max-height: 600px;
overflow: hidden;
margin: 0;
position: relative;">
<img src="assets/img/ACMEvents/Academic Leave Talk.jpg" alt="ACM Team" class="img-responsive" style="position:absolute;
top: 50%;
transform: translateY(-50%);
max-width: 100%;">
</div>
<h4 class="objectives-heading" style="margin: 30px 0px 10px;color: #F5DEB3;">Academic Leave Talk</h4>
<p class="objectives-text" style="margin-bottom: 0px;">February 11, 2020<br>Speakers:<br>⁃ Alexey Muryshkin, 4th year student, intern at Yandex Navigator (Moscow) and took part in the launch of new car sharing service "Anytime Prime"<br>
⁃ Saken Mukanov, 2nd year student, student at UNIT factory and founding team member of Alem programming school.<br>
⁃ Assiya Khuzyakhmetova, 4th year student, intern at Mozilla, Blackrock, and Bloomberg.<br>
⁃ Aidarbek Suleimenov, 4th year student, SRE Google Intern and three times Bloomberg Intern.
<br></p>
</div>
</div>
<!-- /single block -->
<!-- single block -->
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-12 card card-objectives" data-aos="fade-up"
data-aos-duration="500">
<div
style="margin: 0px 0px 30px;padding: 30px 30px;border-left:0px solid rgba(18, 145, 230, 0.863);border-top: 0px solid rgba(18, 145, 230, 0.863);box-shadow: 0px 0px 0px rgba(0, 255, 115, 0.863), 0px 0px 0 rgba(239, 241, 239, 0.699);">
<div style="width: 100%;
text-align: left;
height: 500px;
max-height: 600px;
overflow: hidden;
margin: 0;
position: relative;">
<img src="assets/img/ACMEvents/Hash Code.jpg" alt="ACM Team" class="img-responsive" style="position:absolute;
top: 50%;
transform: translateY(-50%);
max-width: 100%;">
</div>
<h4 class="objectives-heading" style="margin: 30px 0px 10px;color: #F5DEB3;">HashCode Hub</h4>
<p class="objectives-text" style="margin-bottom: 0px;">February 20, 2020<br></p>
</div>
</div>
<!-- /single block -->
<!-- single block -->
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-12 card card-objectives" data-aos="fade-up"
data-aos-duration="500">
<div
style="margin: 0px 0px 30px;padding: 30px 30px;border-left:0px solid rgba(18, 145, 230, 0.863);border-top: 0px solid rgba(18, 145, 230, 0.863);box-shadow: 0px 0px 0px rgba(0, 255, 115, 0.863), 0px 0px 0 rgba(239, 241, 239, 0.699);">
<div style="width: 100%;
text-align: left;
height: 500px;
max-height: 600px;
overflow: hidden;
margin: 0;
position: relative;">
<img src="assets/img/ACMEvents/Workshop on React by Facebook.jpg" alt="ACM Team" class="img-responsive" style="position:absolute;
top: 50%;
transform: translateY(-50%);
max-width: 100%;">
</div>
<h4 class="objectives-heading" style="margin: 30px 0px 10px;color: #F5DEB3;">Workshop on React</h4>
<p class="objectives-text" style="margin-bottom: 0px;">February 24, 2020<br>Workshop was given by Daniel Buchele and Mike Berman, front end engineers at Facebook London.<br><a href="https://drive.google.com/drive/u/2/folders/1-4t1g1MwBXf2YSAdFME55VcSlScs8W7K">Photos from the event.</a><br></p>
</div>
</div>
<!-- /single block -->
</div>
<!-- eighth row -->
<div class="row card-deck" style="margin-right: 0px; margin-left: 0px; margin-top: 40px;">
<!-- single block -->
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-12 card card-objectives" data-aos="fade-up"
data-aos-duration="500">
<div
style="margin: 0px 0px 30px;padding: 30px 30px;border-left:0px solid rgba(18, 145, 230, 0.863);border-top: 0px solid rgba(18, 145, 230, 0.863);box-shadow: 0px 0px 0px rgba(0, 255, 115, 0.863), 0px 0px 0 rgba(239, 241, 239, 0.699);">
<div style="width: 100%;
text-align: left;
height: 500px;
max-height: 600px;
overflow: hidden;
margin: 0;
position: relative;">
<img src="assets/img/ACMEvents/Quiz Night.jpg" alt="ACM Team" class="img-responsive" style="position:absolute;
top: 50%;
transform: translateY(-50%);
max-width: 100%;">
</div>
<h4 class="objectives-heading" style="margin: 30px 0px 10px;color: #F5DEB3;">Quiz Night</h4>
<p class="objectives-text" style="margin-bottom: 0px;">February 25, 2020<br>Speakers: Ayan Ginet and Daneker Nurgaliyeva, 3rd year Computer Science students who helped freshmen prepare for quiz on CSCI 152 course.<br></p>
</div>
</div>
<!-- /single block -->
<!-- single block -->
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-12 card card-objectives" data-aos="fade-up"
data-aos-duration="500">
<div
style="margin: 0px 0px 30px;padding: 30px 30px;border-left:0px solid rgba(18, 145, 230, 0.863);border-top: 0px solid rgba(18, 145, 230, 0.863);box-shadow: 0px 0px 0px rgba(0, 255, 115, 0.863), 0px 0px 0 rgba(239, 241, 239, 0.699);">
<div style="width: 100%;
text-align: left;
height: 500px;
max-height: 600px;
overflow: hidden;
margin: 0;
position: relative;">
<img src="assets/img/ACMEvents/CodeW.jpg" alt="ACM Team" class="img-responsive" style="position:absolute;
top: 50%;
transform: translateY(-50%);
max-width: 100%;">
</div>
<h4 class="objectives-heading" style="margin: 30px 0px 10px;color: #F5DEB3;">codeW: Republican Coding Competition</h4>
<p class="objectives-text" style="margin-bottom: 0px;">March 7, 2020<br><a href="https://drive.google.com/drive/u/2/folders/1-8J_BkytRFv4j6YwQTdaaD_Jeq3jvtFn">Photos from the event.</a><br></p>
</div>
</div>
<!-- /single block -->
<!-- single block -->
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-12 card card-objectives" data-aos="fade-up"
data-aos-duration="500">
<div
style="margin: 0px 0px 30px;padding: 30px 30px;border-left:0px solid rgba(18, 145, 230, 0.863);border-top: 0px solid rgba(18, 145, 230, 0.863);box-shadow: 0px 0px 0px rgba(0, 255, 115, 0.863), 0px 0px 0 rgba(239, 241, 239, 0.699);">
<div style="width: 100%;
text-align: left;
height: 500px;
max-height: 600px;
overflow: hidden;
margin: 0;
position: relative;">
<img src="assets/img/ACMEvents/Workshops for CodeW.jpg" alt="ACM Team" class="img-responsive" style="position:absolute;
top: 50%;
transform: translateY(-50%);
max-width: 100%;">
</div>
<h4 class="objectives-heading" style="margin: 30px 0px 10px;color: #F5DEB3;">5 workshops for codeW participants</h4>
<p class="objectives-text" style="margin-bottom: 0px;">List of the workshops:<br>
1. Crush Your Coding Interview<br>
Mike Berman and Aidana Serikova<br>
2. Intro to Algorithms and Data Structures<br>
Assiya Khuzyakhmetova and Madina Bektayeva<br>
3. Advanced Algorithms and Data Structures<br>
Askhat Temir<br>
4. Linked Lists<br>
Ayan Ginet<br>
5. Algorithmic Thinking<br>
Daulet Issatayev
<br></p>
</div>
</div>
<!-- /single block -->
</div>
</div> <!-- end container -->
</section>
<section id="portfolio">
<section class="py-5" style="margin-top: 100px;">
<div class="container">
<h2 data-aos="fade" data-aos-duration="400" class="text-center"
style="color: #F5DEB3;font-family: Montserrat, sans-serif;">our gallery</h2>
<div data-aos="fade" data-aos-duration="400" class="filtr-controls"><span class="active"
data-filter="all" style="font-family: Montserrat, sans-serif;">All</span>
<span data-filter="1" style="font-family: Montserrat, sans-serif;">team</span>
<span data-filter="2" style="font-family: Montserrat, sans-serif;">Events</span>
</div>
<div class="row filtr-container" data-aos="fade-up" data-aos-duration="500">
<div class="col-sm-6 col-md-4 col-lg-3 filtr-item" data-category="2"><a
href="assets/img/gallery/photo_2019-08-29_13-06-17.jpg"><img class="img-fluid"
src="assets/img/gallery/photo_2019-08-29_13-06-17.jpg"></a></div>
<div class="col-sm-6 col-md-4 col-lg-3 filtr-item" data-category="2"><a
href="assets/img/gallery/photo_2019-08-29_13-04-40.jpg"><img class="img-fluid"
src="assets/img/gallery/photo_2019-08-29_13-04-40.jpg"></a></div>
<div class="col-sm-6 col-md-4 col-lg-3 filtr-item" data-category="2"><a
href="assets/img/gallery/photo_2019-08-29_13-05-18.jpg"><img class="img-fluid"
src="assets/img/gallery/photo_2019-08-29_13-05-18.jpg"></a></div>
<div class="col-sm-6 col-md-4 col-lg-3 filtr-item" data-category="2"><a
href="assets/img/gallery/photo_2019-08-29_13-05-29.jpg"><img class="img-fluid"
src="assets/img/gallery/photo_2019-08-29_13-05-29.jpg"></a></div>
<div class="col-sm-6 col-md-4 col-lg-3 filtr-item" data-category="2"><a
href="assets/img/gallery/photo_2019-08-29_13-04-30.jpg"><img class="img-fluid"
src="assets/img/gallery/photo_2019-08-29_13-04-30.jpg"></a></div>
<div class="col-sm-6 col-md-4 col-lg-3 filtr-item" data-category="1"><a
href="assets/img/gallery/photo_2019-08-29_13-06-41.jpg"><img class="img-fluid"
src="assets/img/gallery/photo_2019-08-29_13-06-41.jpg"></a></div>
<div class="col-sm-6 col-md-4 col-lg-3 filtr-item" data-category="1"><a
href="assets/img/gallery/DSC_5568.jpg"><img class="img-fluid"
src="assets/img/gallery/DSC_5568.jpg"></a></div>
<div class="col-sm-6 col-md-4 col-lg-3 filtr-item" data-category="1"><a
href="assets/img/gallery/DSC_5577.jpg"><img class="img-fluid"
src="assets/img/gallery/DSC_5577.jpg"></a></div>
<div class="col-sm-6 col-md-4 col-lg-3 filtr-item" data-category="1"><a
href="assets/img/gallery/DSC_5586.jpg"><img class="img-fluid"
src="assets/img/gallery/DSC_5586.jpg"></a></div>
<div class="col-sm-6 col-md-4 col-lg-3 filtr-item" data-category="1"><a
href="assets/img/gallery/DSC_5610.jpg"><img class="img-fluid"
src="assets/img/gallery/DSC_5610.jpg"></a></div>
<div class="col-sm-6 col-md-4 col-lg-3 filtr-item" data-category="1"><a
href="assets/img/gallery/DSC_5651.jpg"><img class="img-fluid"
src="assets/img/gallery/DSC_5651.jpg"></a></div>
<div class="col-sm-6 col-md-4 col-lg-3 filtr-item" data-category="1"><a
href="assets/img/gallery/DSC_5616.jpg"><img class="img-fluid"
src="assets/img/gallery/DSC_5616.jpg"></a></div>
</div>
</div>
</section>
<div data-aos="zoom-in" data-aos-duration="300">
<div class="box-2">
<div class="container" style="margin-top: 80px;">
<h2 class="text-center"
style="margin-bottom: 8px;color: #F5DEB3;font-family: Montserrat, sans-serif;">OPPORTUNITIES
</h2>
<p class="text-center" style="margin-bottom: 8px;font-family: Montserrat, sans-serif;">Join us and
plunge into the world of computing!<br></p>
<p class="text-center" style="font-family: Montserrat, sans-serif;">NU ACM Student Chapter will help
you master coding and problem-solving skills, and provide an opportunity to make yourself known
to developers from all over the world.</p>
</div>
</div>
</div>
</section>
<section id="contact" class="content-section text-center" style="padding-top: 100px;padding-bottom: 100px;">
<div class="container">
<div class="row" data-aos="fade" data-aos-duration="400">
<div class="col-lg-8 mx-auto">
<h2 style="margin-bottom: 16px;color: #F5DEB3;">get in touch</h2>
</div>
</div>
<div class="row" data-aos="fade-up" data-aos-duration="500">
<div class="col col-lg-6 col-md-6 col-sm-12 col-xs-12 col-12">
<h5 class="text-center" style="margin-bottom: 32px;">Contact Details</h5>
<p class="text-left"
style="font-size: 16px;margin-bottom: 18px;font-family: Montserrat, sans-serif;">ACM Student
Chapter at Nazarbayev University</p>
<div class="row">
<div class="col-1"><i class="icon ion-map"
style="font-size: 18px;color: red;text-shadow: 0 0 15px #fc2105;"></i></div>
<div class="col">
<p class="text-left"
style="font-size: 16px;margin-bottom: 8px;font-family: Montserrat, sans-serif;">Kabanbay
Batyr Avenue 53, Nur-Sultan, Kazakhstan</p>
</div>
</div>