-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHome _ NSBM Green University.html
2507 lines (1647 loc) · 169 KB
/
Home _ NSBM Green University.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>
<!-- saved from url=(0022)http://www.nsbm.ac.lk/ -->
<html lang="en-US" class=" video csspointerevents no-touchevents flexbox objectfit object-fit backgroundcliptext"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="twitter:widgets:csp" content="on">
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="http://www.nsbm.ac.lk/xmlrpc.php">
<title>Home | NSBM Green University</title>
<!-- This site is optimized with the Yoast SEO plugin v12.4 - https://yoast.com/wordpress/plugins/seo/ -->
<meta name="robots" content="max-snippet:-1, max-image-preview:large, max-video-preview:-1">
<link rel="canonical" href="http://www.nsbm.ac.lk/">
<meta property="og:locale" content="en_US">
<meta property="og:type" content="website">
<meta property="og:title" content="Home | NSBM Green University">
<meta property="og:url" content="http://www.nsbm.ac.lk/">
<meta property="og:site_name" content="NSBM Green University">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Home | NSBM Green University">
<meta name="twitter:site" content="@NSBM_SriLanka">
<meta name="twitter:creator" content="@NSBM_SriLanka">
<script src="./Home _ NSBM Green University_files/sdk.js.download" async="" crossorigin="anonymous"></script><script type="text/javascript" async="" src="./Home _ NSBM Green University_files/analytics.js.download"></script><script id="facebook-jssdk" src="./Home _ NSBM Green University_files/sdk.js(1).download"></script><script type="application/ld+json" class="yoast-schema-graph yoast-schema-graph--main">{"@context":"https://schema.org","@graph":[{"@type":"Organization","@id":"http://www.nsbm.ac.lk/#organization","name":"NSBM Green University","url":"http://www.nsbm.ac.lk/","sameAs":["https://www.facebook.com/nsbm.lk/","https://www.instagram.com/nsbmgreenuniversity","https://www.linkedin.com/company/nsbm-green-university-town/","https://www.youtube.com/channel/UCHsodhRyiuri2jD7H7nfsRg","https://twitter.com/NSBM_SriLanka"],"logo":{"@type":"ImageObject","@id":"http://www.nsbm.ac.lk/#logo","url":"http://www.nsbm.ac.lk/wp-content/uploads/2019/08/logo.png","width":241,"height":109,"caption":"NSBM Green University"},"image":{"@id":"http://www.nsbm.ac.lk/#logo"}},{"@type":"WebSite","@id":"http://www.nsbm.ac.lk/#website","url":"http://www.nsbm.ac.lk/","name":"NSBM Green University","publisher":{"@id":"http://www.nsbm.ac.lk/#organization"},"potentialAction":{"@type":"SearchAction","target":"http://www.nsbm.ac.lk/?s={search_term_string}","query-input":"required name=search_term_string"}},{"@type":"WebPage","@id":"http://www.nsbm.ac.lk/#webpage","url":"http://www.nsbm.ac.lk/","inLanguage":"en-US","name":"Home | NSBM Green University","isPartOf":{"@id":"http://www.nsbm.ac.lk/#website"},"about":{"@id":"http://www.nsbm.ac.lk/#organization"},"datePublished":"2019-08-12T07:16:02+00:00","dateModified":"2019-12-19T10:34:31+00:00"}]}</script>
<!-- / Yoast SEO plugin. -->
<link rel="dns-prefetch" href="http://fonts.googleapis.com/">
<link rel="dns-prefetch" href="http://maxcdn.bootstrapcdn.com/">
<link rel="dns-prefetch" href="http://s.w.org/">
<link rel="alternate" type="application/rss+xml" title="NSBM Green University » Feed" href="http://www.nsbm.ac.lk/feed/">
<link rel="alternate" type="application/rss+xml" title="NSBM Green University » Comments Feed" href="http://www.nsbm.ac.lk/comments/feed/">
<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/12.0.0-1\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/12.0.0-1\/svg\/","svgExt":".svg","source":{"concatemoji":"http:\/\/www.nsbm.ac.lk\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.2.4"}};
!function(a,b,c){function d(a,b){var c=String.fromCharCode;l.clearRect(0,0,k.width,k.height),l.fillText(c.apply(this,a),0,0);var d=k.toDataURL();l.clearRect(0,0,k.width,k.height),l.fillText(c.apply(this,b),0,0);var e=k.toDataURL();return d===e}function e(a){var b;if(!l||!l.fillText)return!1;switch(l.textBaseline="top",l.font="600 32px Arial",a){case"flag":return!(b=d([55356,56826,55356,56819],[55356,56826,8203,55356,56819]))&&(b=d([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]),!b);case"emoji":return b=d([55357,56424,55356,57342,8205,55358,56605,8205,55357,56424,55356,57340],[55357,56424,55356,57342,8203,55358,56605,8203,55357,56424,55356,57340]),!b}return!1}function f(a){var c=b.createElement("script");c.src=a,c.defer=c.type="text/javascript",b.getElementsByTagName("head")[0].appendChild(c)}var g,h,i,j,k=b.createElement("canvas"),l=k.getContext&&k.getContext("2d");for(j=Array("flag","emoji"),c.supports={everything:!0,everythingExceptFlag:!0},i=0;i<j.length;i++)c.supports[j[i]]=e(j[i]),c.supports.everything=c.supports.everything&&c.supports[j[i]],"flag"!==j[i]&&(c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&c.supports[j[i]]);c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&!c.supports.flag,c.DOMReady=!1,c.readyCallback=function(){c.DOMReady=!0},c.supports.everything||(h=function(){c.readyCallback()},b.addEventListener?(b.addEventListener("DOMContentLoaded",h,!1),a.addEventListener("load",h,!1)):(a.attachEvent("onload",h),b.attachEvent("onreadystatechange",function(){"complete"===b.readyState&&c.readyCallback()})),g=c.source||{},g.concatemoji?f(g.concatemoji):g.wpemoji&&g.twemoji&&(f(g.twemoji),f(g.wpemoji)))}(window,document,window._wpemojiSettings);
</script><script src="./Home _ NSBM Green University_files/wp-emoji-release.min.js.download" type="text/javascript" defer=""></script>
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel="stylesheet" id="sb_instagram_styles-css" href="./Home _ NSBM Green University_files/sb-instagram-2-1.min.css" type="text/css" media="all">
<link rel="stylesheet" id="zn_all_g_fonts-css" href="./Home _ NSBM Green University_files/css" type="text/css" media="all">
<link rel="stylesheet" id="wp-block-library-css" href="./Home _ NSBM Green University_files/style.min.css" type="text/css" media="all">
<link rel="stylesheet" id="contact-form-7-css" href="./Home _ NSBM Green University_files/styles.css" type="text/css" media="all">
<link rel="stylesheet" id="cff-css" href="./Home _ NSBM Green University_files/cff-style.css" type="text/css" media="all">
<link rel="stylesheet" id="sb-font-awesome-css" href="./Home _ NSBM Green University_files/font-awesome.min.css" type="text/css" media="all">
<link rel="stylesheet" id="ctf_styles-css" href="./Home _ NSBM Green University_files/ctf-styles.min.css" type="text/css" media="all">
<link rel="stylesheet" id="rs-plugin-settings-css" href="./Home _ NSBM Green University_files/rs6.css" type="text/css" media="all">
<style id="rs-plugin-settings-inline-css" type="text/css">
#rs-demo-id {}
#rev_slider_2_1_wrapper .custom.tparrows {
cursor:pointer;
background:#000;
background:rgba(0,0,0,0.5);
width:40px;
height:40px;
position:absolute;
display:block;
z-index:1000;
}
#rev_slider_2_1_wrapper .custom.tparrows:hover {
background:#000;
}
#rev_slider_2_1_wrapper .custom.tparrows:before {
font-family: 'revicons';
font-size:15px;
color:#fff;
display:block;
line-height: 40px;
text-align: center;
}
#rev_slider_2_1_wrapper .custom.tparrows.tp-leftarrow:before {
content: '\e824';
}
#rev_slider_2_1_wrapper .custom.tparrows.tp-rightarrow:before {
content: '\e825';
}
</style>
<link rel="stylesheet" id="kallyas-styles-css" href="./Home _ NSBM Green University_files/style.css" type="text/css" media="all">
<link rel="stylesheet" id="th-bootstrap-styles-css" href="./Home _ NSBM Green University_files/bootstrap.min.css" type="text/css" media="all">
<link rel="stylesheet" id="th-theme-template-styles-css" href="./Home _ NSBM Green University_files/template.min.css" type="text/css" media="all">
<link rel="stylesheet" id="newsletter-css" href="./Home _ NSBM Green University_files/style(1).css" type="text/css" media="all">
<link rel="stylesheet" id="zion-frontend-css" href="./Home _ NSBM Green University_files/znb_frontend.css" type="text/css" media="all">
<link rel="stylesheet" id="16-layout.css-css" href="./Home _ NSBM Green University_files/16-layout.css" type="text/css" media="all">
<link rel="stylesheet" id="style-01-css" href="./Home _ NSBM Green University_files/style_01.css" type="text/css" media="all">
<link rel="stylesheet" id="style-02-css" href="./Home _ NSBM Green University_files/style_02.css" type="text/css" media="all">
<link rel="stylesheet" id="responsive-style-css" href="./Home _ NSBM Green University_files/responsive.css" type="text/css" media="all">
<link rel="stylesheet" id="kallyas-child-css" href="./Home _ NSBM Green University_files/style(2).css" type="text/css" media="all">
<link rel="stylesheet" id="th-theme-print-stylesheet-css" href="./Home _ NSBM Green University_files/print.css" type="text/css" media="print">
<link rel="stylesheet" id="th-theme-options-styles-css" href="./Home _ NSBM Green University_files/zn_dynamic.css" type="text/css" media="all">
<link rel="stylesheet" id="__EPYT__style-css" href="./Home _ NSBM Green University_files/ytprefs.min.css" type="text/css" media="all">
<style id="__EPYT__style-inline-css" type="text/css">
.epyt-gallery-thumb {
width: 33.333%;
}
@media (min-width:0px) and (max-width: 767px) {
.epyt-gallery-rowbreak {
display: none;
}
.epyt-gallery-allthumbs[class*="epyt-cols"] .epyt-gallery-thumb {
width: 100% !important;
}
}
</style>
<script type="text/javascript" src="./Home _ NSBM Green University_files/jquery.js.download"></script>
<script type="text/javascript" src="./Home _ NSBM Green University_files/jquery-migrate.min.js.download"></script>
<script type="text/javascript" src="./Home _ NSBM Green University_files/revolution.tools.min.js.download"></script>
<script type="text/javascript" src="./Home _ NSBM Green University_files/rs6.min.js.download"></script>
<script type="text/javascript">
/* <![CDATA[ */
var _EPYT_ = {"ajaxurl":"http:\/\/www.nsbm.ac.lk\/wp-admin\/admin-ajax.php","security":"6f57f8216d","gallery_scrolloffset":"20","eppathtoscripts":"http:\/\/www.nsbm.ac.lk\/wp-content\/plugins\/youtube-embed-plus\/scripts\/","eppath":"http:\/\/www.nsbm.ac.lk\/wp-content\/plugins\/youtube-embed-plus\/","epresponsiveselector":"[\"iframe[src*='youtube.com']\",\"iframe[src*='youtube-nocookie.com']\",\"iframe[data-ep-src*='youtube.com']\",\"iframe[data-ep-src*='youtube-nocookie.com']\",\"iframe[data-ep-gallerysrc*='youtube.com']\"]","epdovol":"1","version":"13.1.2.1","evselector":"iframe.__youtube_prefs__[src], iframe[src*=\"youtube.com\/embed\/\"], iframe[src*=\"youtube-nocookie.com\/embed\/\"]","ajax_compat":"","ytapi_load":"light","stopMobileBuffer":"1","vi_active":"","vi_js_posttypes":[]};
/* ]]> */
</script>
<script type="text/javascript" src="./Home _ NSBM Green University_files/ytprefs.min.js.download"></script>
<link rel="https://api.w.org/" href="http://www.nsbm.ac.lk/wp-json/">
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://www.nsbm.ac.lk/xmlrpc.php?rsd">
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://www.nsbm.ac.lk/wp-includes/wlwmanifest.xml">
<meta name="generator" content="WordPress 5.2.4">
<link rel="shortlink" href="http://www.nsbm.ac.lk/">
<link rel="alternate" type="application/json+oembed" href="http://www.nsbm.ac.lk/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fwww.nsbm.ac.lk%2F">
<link rel="alternate" type="text/xml+oembed" href="http://www.nsbm.ac.lk/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fwww.nsbm.ac.lk%2F&format=xml">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async="" src="./Home _ NSBM Green University_files/js"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag("js", new Date());
gtag("config", "UA-147085622-1");
</script> <meta name="theme-color" content="#1b579f">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!--[if lte IE 8]>
<script type="text/javascript">
var $buoop = {
vs: {i: 10, f: 25, o: 12.1, s: 7, n: 9}
};
$buoop.ol = window.onload;
window.onload = function () {
try {
if ($buoop.ol) {
$buoop.ol()
}
}
catch (e) {
}
var e = document.createElement("script");
e.setAttribute("type", "text/javascript");
e.setAttribute("src", "http://browser-update.org/update.js");
document.body.appendChild(e);
};
</script>
<![endif]-->
<!-- for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Fallback for animating in viewport -->
<noscript>
<style type="text/css" media="screen">
.zn-animateInViewport {visibility: visible;}
</style>
</noscript>
<meta name="generator" content="Powered by Slider Revolution 6.0.5 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface.">
<!-- Generated inline styles --><style type="text/css" id="zn-inline-styles">.nsbm-contact-bg::before{
background: #f3f3f3;
}</style><link rel="icon" href="http://www.nsbm.ac.lk/wp-content/uploads/2019/08/cropped-nsbm_logo_favicon-32x32.png" sizes="32x32">
<link rel="icon" href="http://www.nsbm.ac.lk/wp-content/uploads/2019/08/cropped-nsbm_logo_favicon-192x192.png" sizes="192x192">
<link rel="apple-touch-icon-precomposed" href="http://www.nsbm.ac.lk/wp-content/uploads/2019/08/cropped-nsbm_logo_favicon-180x180.png">
<meta name="msapplication-TileImage" content="http://www.nsbm.ac.lk/wp-content/uploads/2019/08/cropped-nsbm_logo_favicon-270x270.png">
<script type="text/javascript">function setREVStartSize(a){try{var b,c=document.getElementById(a.c).parentNode.offsetWidth;if(c=0===c||isNaN(c)?window.innerWidth:c,a.tabw=void 0===a.tabw?0:parseInt(a.tabw),a.thumbw=void 0===a.thumbw?0:parseInt(a.thumbw),a.tabh=void 0===a.tabh?0:parseInt(a.tabh),a.thumbh=void 0===a.thumbh?0:parseInt(a.thumbh),a.tabhide=void 0===a.tabhide?0:parseInt(a.tabhide),a.thumbhide=void 0===a.thumbhide?0:parseInt(a.thumbhide),a.mh=void 0===a.mh||""==a.mh?0:a.mh,"fullscreen"===a.layout||"fullscreen"===a.l)b=Math.max(a.mh,window.innerHeight);else{for(var d in a.gw=Array.isArray(a.gw)?a.gw:[a.gw],a.rl)(void 0===a.gw[d]||0===a.gw[d])&&(a.gw[d]=a.gw[d-1]);for(var d in a.gh=void 0===a.el||""===a.el||Array.isArray(a.el)&&0==a.el.length?a.gh:a.el,a.gh=Array.isArray(a.gh)?a.gh:[a.gh],a.rl)(void 0===a.gh[d]||0===a.gh[d])&&(a.gh[d]=a.gh[d-1]);var e,f=Array(a.rl.length),g=0;for(var d in a.tabw=a.tabhide>=c?0:a.tabw,a.thumbw=a.thumbhide>=c?0:a.thumbw,a.tabh=a.tabhide>=c?0:a.tabh,a.thumbh=a.thumbhide>=c?0:a.thumbh,a.rl)f[d]=a.rl[d]<window.innerWidth?0:a.rl[d];for(var d in e=f[0],f)e>f[d]&&0<f[d]&&(e=f[d],g=d);var h=c>a.gw[g]+a.tabw+a.thumbw?1:(c-(a.tabw+a.thumbw))/a.gw[g];b=a.gh[g]*h+(a.tabh+a.thumbh)}void 0===window.rs_init_css&&(window.rs_init_css=document.head.appendChild(document.createElement("style"))),document.getElementById(a.c).height=b,window.rs_init_css.innerHTML+="#"+a.c+"_wrapper { height: "+b+"px }"}catch(a){console.log("Failure at Presize of Slider:"+a)}};</script>
<style>#rev_slider_2_1_wrapper { height: 560px }</style><style id="fit-vids-style">.fluid-width-video-wrapper{width:100%;position:relative;padding:0;}.fluid-width-video-wrapper iframe,.fluid-width-video-wrapper object,.fluid-width-video-wrapper embed {position:absolute;top:0;left:0;width:100%;height:100%;}</style><style type="text/css">.fb_hidden{position:absolute;top:-10000px;z-index:10001}.fb_reposition{overflow:hidden;position:relative}.fb_invisible{display:none}.fb_reset{background:none;border:0;border-spacing:0;color:#000;cursor:auto;direction:ltr;font-family:"lucida grande", tahoma, verdana, arial, sans-serif;font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:1;margin:0;overflow:visible;padding:0;text-align:left;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;visibility:visible;white-space:normal;word-spacing:normal}.fb_reset>div{overflow:hidden}@keyframes fb_transform{from{opacity:0;transform:scale(.95)}to{opacity:1;transform:scale(1)}}.fb_animate{animation:fb_transform .3s forwards}
.fb_dialog{background:rgba(82, 82, 82, .7);position:absolute;top:-10000px;z-index:10001}.fb_dialog_advanced{border-radius:8px;padding:10px}.fb_dialog_content{background:#fff;color:#373737}.fb_dialog_close_icon{background:url(https://static.xx.fbcdn.net/rsrc.php/v3/yq/r/IE9JII6Z1Ys.png) no-repeat scroll 0 0 transparent;cursor:pointer;display:block;height:15px;position:absolute;right:18px;top:17px;width:15px}.fb_dialog_mobile .fb_dialog_close_icon{left:5px;right:auto;top:5px}.fb_dialog_padding{background-color:transparent;position:absolute;width:1px;z-index:-1}.fb_dialog_close_icon:hover{background:url(https://static.xx.fbcdn.net/rsrc.php/v3/yq/r/IE9JII6Z1Ys.png) no-repeat scroll 0 -15px transparent}.fb_dialog_close_icon:active{background:url(https://static.xx.fbcdn.net/rsrc.php/v3/yq/r/IE9JII6Z1Ys.png) no-repeat scroll 0 -30px transparent}.fb_dialog_iframe{line-height:0}.fb_dialog_content .dialog_title{background:#6d84b4;border:1px solid #365899;color:#fff;font-size:14px;font-weight:bold;margin:0}.fb_dialog_content .dialog_title>span{background:url(https://static.xx.fbcdn.net/rsrc.php/v3/yd/r/Cou7n-nqK52.gif) no-repeat 5px 50%;float:left;padding:5px 0 7px 26px}body.fb_hidden{height:100%;left:0;margin:0;overflow:visible;position:absolute;top:-10000px;transform:none;width:100%}.fb_dialog.fb_dialog_mobile.loading{background:url(https://static.xx.fbcdn.net/rsrc.php/v3/ya/r/3rhSv5V8j3o.gif) white no-repeat 50% 50%;min-height:100%;min-width:100%;overflow:hidden;position:absolute;top:0;z-index:10001}.fb_dialog.fb_dialog_mobile.loading.centered{background:none;height:auto;min-height:initial;min-width:initial;width:auto}.fb_dialog.fb_dialog_mobile.loading.centered #fb_dialog_loader_spinner{width:100%}.fb_dialog.fb_dialog_mobile.loading.centered .fb_dialog_content{background:none}.loading.centered #fb_dialog_loader_close{clear:both;color:#fff;display:block;font-size:18px;padding-top:20px}#fb-root #fb_dialog_ipad_overlay{background:rgba(0, 0, 0, .4);bottom:0;left:0;min-height:100%;position:absolute;right:0;top:0;width:100%;z-index:10000}#fb-root #fb_dialog_ipad_overlay.hidden{display:none}.fb_dialog.fb_dialog_mobile.loading iframe{visibility:hidden}.fb_dialog_mobile .fb_dialog_iframe{position:sticky;top:0}.fb_dialog_content .dialog_header{background:linear-gradient(from(#738aba), to(#2c4987));border-bottom:1px solid;border-color:#043b87;box-shadow:white 0 1px 1px -1px inset;color:#fff;font:bold 14px Helvetica, sans-serif;text-overflow:ellipsis;text-shadow:rgba(0, 30, 84, .296875) 0 -1px 0;vertical-align:middle;white-space:nowrap}.fb_dialog_content .dialog_header table{height:43px;width:100%}.fb_dialog_content .dialog_header td.header_left{font-size:12px;padding-left:5px;vertical-align:middle;width:60px}.fb_dialog_content .dialog_header td.header_right{font-size:12px;padding-right:5px;vertical-align:middle;width:60px}.fb_dialog_content .touchable_button{background:linear-gradient(from(#4267B2), to(#2a4887));background-clip:padding-box;border:1px solid #29487d;border-radius:3px;display:inline-block;line-height:18px;margin-top:3px;max-width:85px;padding:4px 12px;position:relative}.fb_dialog_content .dialog_header .touchable_button input{background:none;border:none;color:#fff;font:bold 12px Helvetica, sans-serif;margin:2px -12px;padding:2px 6px 3px 6px;text-shadow:rgba(0, 30, 84, .296875) 0 -1px 0}.fb_dialog_content .dialog_header .header_center{color:#fff;font-size:16px;font-weight:bold;line-height:18px;text-align:center;vertical-align:middle}.fb_dialog_content .dialog_content{background:url(https://static.xx.fbcdn.net/rsrc.php/v3/y9/r/jKEcVPZFk-2.gif) no-repeat 50% 50%;border:1px solid #4a4a4a;border-bottom:0;border-top:0;height:150px}.fb_dialog_content .dialog_footer{background:#f5f6f7;border:1px solid #4a4a4a;border-top-color:#ccc;height:40px}#fb_dialog_loader_close{float:left}.fb_dialog.fb_dialog_mobile .fb_dialog_close_button{text-shadow:rgba(0, 30, 84, .296875) 0 -1px 0}.fb_dialog.fb_dialog_mobile .fb_dialog_close_icon{visibility:hidden}#fb_dialog_loader_spinner{animation:rotateSpinner 1.2s linear infinite;background-color:transparent;background-image:url(https://static.xx.fbcdn.net/rsrc.php/v3/yD/r/t-wz8gw1xG1.png);background-position:50% 50%;background-repeat:no-repeat;height:24px;width:24px}@keyframes rotateSpinner{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}
.fb_iframe_widget{display:inline-block;position:relative}.fb_iframe_widget span{display:inline-block;position:relative;text-align:justify}.fb_iframe_widget iframe{position:absolute}.fb_iframe_widget_fluid_desktop,.fb_iframe_widget_fluid_desktop span,.fb_iframe_widget_fluid_desktop iframe{max-width:100%}.fb_iframe_widget_fluid_desktop iframe{min-width:220px;position:relative}.fb_iframe_widget_lift{z-index:1}.fb_iframe_widget_fluid{display:inline}.fb_iframe_widget_fluid span{width:100%}</style></head>
<body class="home page-template-default page page-id-16 res1170 kl-follow-menu kl-skin--light" itemscope="itemscope" itemtype="https://schema.org/WebPage">
<div class="support_panel support-panel" id="sliding_panel">
<div class="support-panel-close js-toggle-class" data-targets="#sliding_panel,#open_sliding_panel" data-target-classes="is-opened,is-toggled" data-multiple-targets="">×</div> <div class="container support-panel-container">
<div id="text-8" class="widget support-panel-widget widget_text"> <div class="textwidget"></div>
</div> </div>
</div><!--// end #sliding_panel.support_panel -->
<div class="login_register_stuff"></div><!-- end login register stuff --> <div id="fb-root" class=" fb_reset"><div style="position: absolute; top: -10000px; width: 0px; height: 0px;"><div><iframe name="fb_xdm_frame_https" id="fb_xdm_frame_https" aria-hidden="true" title="Facebook Cross Domain Communication Frame" tabindex="-1" frameborder="0" allowtransparency="true" allowfullscreen="true" scrolling="no" allow="encrypted-media" src="./Home _ NSBM Green University_files/xd_arbiter.html" style="border: none;"></iframe></div><div></div></div></div>
<script>(function (d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = "https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v3.0";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<div id="page_wrapper" style="height: auto;">
<header id="header" class="site-header style1 header--follow sticky-resize headerstyle--default site-header--absolute nav-th--light siteheader-classic siteheader-classic-normal sheader-sh--light">
<div class="site-header-wrapper sticky-top-area">
<div class="kl-top-header site-header-main-wrapper clearfix sh--light">
<div class="container siteheader-container header--oldstyles">
<div class="fxb-row fxb-row-col-sm wl-header-main">
<div class="fxb-col fxb fxb-center-x fxb-center-y fxb-basis-auto fxb-grow-0">
<div id="logo-container" class="logo-container logosize--no zn-original-logo">
<!-- Logo -->
<h1 class="site-logo logo " id="logo"><a href="http://www.nsbm.ac.lk/" class="site-logo-anch"><img class="logo-img site-logo-img" src="./Home _ NSBM Green University_files/logo.png" width="150" alt="NSBM Green University" title="National School of Business Management" data-mobile-logo="http://www.nsbm.ac.lk/wp-content/uploads/2019/08/logo.png"></a></h1> <!-- InfoCard -->
</div>
</div>
<div class="fxb-col fxb-basis-auto search-menu">
<div class="separator site-header-separator visible-xs"></div>
<div class="fxb-row site-header-row site-header-top ">
<div class="fxb-col fxb fxb-start-x fxb-center-y fxb-basis-auto site-header-col-left site-header-top-left">
</div>
<div class="fxb-col fxb fxb-end-x fxb-center-y fxb-basis-auto site-header-col-right site-header-top-right">
<div class="sh-component zn_header_top_nav-wrapper "><span class="headernav-trigger js-toggle-class" data-target=".zn_header_top_nav-wrapper" data-target-class="is-opened"></span><ul id="menu-top-menu-1" class="zn_header_top_nav topnav topnav-no-sc clearfix"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1948"><a href="http://www.nsbm.ac.lk/#">Alumni</a>
<ul class="sub-menu">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-173"><a href="http://www.nsbm.ac.lk/alumni/">About Alumni</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1951"><a href="http://www.nsbm.ac.lk/alumni/news-events/">News & Events</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-174"><a href="http://www.nsbm.ac.lk/careers/">Careers</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-175"><a href="http://www.nsbm.ac.lk/contact-us/">Contact Us</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-176"><a href="http://www.nsbm.ac.lk/enroll-now/">Enroll Now</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2455"><a target="_blank" rel="noopener noreferrer" href="http://lmsnew.nsbm.lk/">Student Portal</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2860"><a href="http://www.nsbm.ac.lk/#">Downloads</a></li>
</ul></div> <ul class="sh-component topnav navRight topnav--sliding-panel topnav-no-sc topnav-no-hdnav">
<li class="topnav-li">
<a href="http://www.nsbm.ac.lk/#" id="open_sliding_panel" class="topnav-item open-sliding-panel js-toggle-class" data-target="#sliding_panel" data-target-class="is-opened">
<i class="glyphicon glyphicon-remove-circle kl-icon-white"></i>
<i class="glyphicon glyphicon-info-sign kl-icon-white visible-xs xs-icon"></i>
<span class="hidden-xs"></span></a><a href="tel:+94115445000">INQUIRIES: +94 11 544 5000</a>
</li>
</ul>
<div id="search" class="sh-component header-search headsearch--inp">
<a href="http://www.nsbm.ac.lk/#" class="searchBtn header-search-button">
<span class="glyphicon glyphicon-search kl-icon-white"></span>
</a>
<div class="search-container header-search-container">
<form id="searchform" class="gensearch__form" action="http://www.nsbm.ac.lk/" method="get">
<input id="s" name="s" value="" class="inputbox gensearch__input" type="text" placeholder="SEARCH ...">
<button type="submit" id="searchsubmit" value="go" class="gensearch__submit glyphicon glyphicon-search"></button>
</form> </div>
</div>
</div>
</div><!-- /.site-header-top -->
<div class="separator site-header-separator visible-xs"></div>
<div class="fxb-row site-header-row site-header-main ">
<div class="fxb-col fxb fxb-start-x fxb-center-y fxb-basis-auto site-header-col-left site-header-main-left">
</div>
<div class="fxb-col fxb fxb-center-x fxb-center-y fxb-basis-auto site-header-col-center site-header-main-center">
</div>
<div class="fxb-col fxb fxb-end-x fxb-center-y fxb-basis-auto site-header-col-right site-header-main-right">
<div class="fxb-col fxb fxb-end-x fxb-center-y fxb-basis-auto site-header-main-right-top">
<div class="sh-component main-menu-wrapper" role="navigation" itemscope="itemscope" itemtype="https://schema.org/SiteNavigationElement">
<div class="zn-res-menuwrapper">
<a href="http://www.nsbm.ac.lk/#" class="zn-res-trigger zn-menuBurger zn-menuBurger--3--s zn-menuBurger--anim1" id="zn-res-trigger">
<span></span>
<span></span>
<span></span>
</a>
</div><!-- end responsive menu -->
<div id="main-menu" class="main-nav mainnav--sidepanel mainnav--active-bg mainnav--pointer-dash nav-mm--light zn_mega_wrapper "><ul id="menu-main-menu" class="main-menu main-menu-nav zn_mega_menu "><li id="menu-item-153" class="main-menu-item menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-16 current_page_item menu-item-153 active main-menu-item-top menu-item-even menu-item-depth-0"><a href="http://www.nsbm.ac.lk/" class=" main-menu-link main-menu-link-top"><span>Home</span></a></li>
<li id="menu-item-1852" class="main-menu-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1852 main-menu-item-top menu-item-even menu-item-depth-0"><a href="http://www.nsbm.ac.lk/#" class=" main-menu-link main-menu-link-top"><span>Discover NSBM</span></a>
<ul class="sub-menu clearfix">
<li id="menu-item-1849" class="main-menu-item menu-item menu-item-type-post_type menu-item-object-page menu-item-1849 main-menu-item-sub menu-item-odd menu-item-depth-1"><a href="http://www.nsbm.ac.lk/story-of-nsbm/" class=" main-menu-link main-menu-link-sub"><span>Story of NSBM</span></a></li>
<li id="menu-item-1850" class="main-menu-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1850 main-menu-item-sub menu-item-odd menu-item-depth-1"><a href="http://www.nsbm.ac.lk/#" class=" main-menu-link main-menu-link-sub"><span>Governance</span></a>
<ul class="sub-menu clearfix">
<li id="menu-item-1505" class="main-menu-item menu-item menu-item-type-post_type menu-item-object-page menu-item-1505 main-menu-item-sub main-menu-item-sub-sub menu-item-even menu-item-depth-2"><a href="http://www.nsbm.ac.lk/story-of-nsbm/board-of-directors/" class=" main-menu-link main-menu-link-sub"><span>Board of Directors</span></a></li>
<li id="menu-item-1550" class="main-menu-item menu-item menu-item-type-post_type menu-item-object-page menu-item-1550 main-menu-item-sub main-menu-item-sub-sub menu-item-even menu-item-depth-2"><a href="http://www.nsbm.ac.lk/story-of-nsbm/management-team/" class=" main-menu-link main-menu-link-sub"><span>Management Team</span></a></li>
</ul>
</li>
<li id="menu-item-374" class="main-menu-item menu-item menu-item-type-post_type menu-item-object-page menu-item-374 main-menu-item-sub menu-item-odd menu-item-depth-1"><a href="http://www.nsbm.ac.lk/story-of-nsbm/vice-chancellors-message/" class=" main-menu-link main-menu-link-sub"><span>Vice Chancellor’s Message</span></a></li>
<li id="menu-item-1637" class="main-menu-item menu-item menu-item-type-post_type menu-item-object-page menu-item-1637 main-menu-item-sub menu-item-odd menu-item-depth-1"><a href="http://www.nsbm.ac.lk/story-of-nsbm/academic-staff/" class=" main-menu-link main-menu-link-sub"><span>Academic Staff</span></a></li>
<li id="menu-item-3950" class="main-menu-item menu-item menu-item-type-post_type menu-item-object-page menu-item-3950 main-menu-item-sub menu-item-odd menu-item-depth-1"><a href="http://www.nsbm.ac.lk/affiliated-universities/" class=" main-menu-link main-menu-link-sub"><span>Affiliated Universities</span></a></li>
<li id="menu-item-4970" class="main-menu-item menu-item menu-item-type-post_type menu-item-object-page menu-item-4970 main-menu-item-sub menu-item-odd menu-item-depth-1"><a href="http://www.nsbm.ac.lk/story-of-nsbm/facilities/" class=" main-menu-link main-menu-link-sub"><span>Facilities</span></a></li>
</ul>
</li>
<li id="menu-item-1029" class="main-menu-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1029 main-menu-item-top menu-item-even menu-item-depth-0"><a href="http://www.nsbm.ac.lk/#" class=" main-menu-link main-menu-link-top"><span>Faculties</span></a>
<ul class="sub-menu clearfix">
<li id="menu-item-471" class="main-menu-item menu-item menu-item-type-post_type menu-item-object-page menu-item-471 main-menu-item-sub menu-item-odd menu-item-depth-1"><a href="http://www.nsbm.ac.lk/faculties/faculty-of-business/" class=" main-menu-link main-menu-link-sub"><span>Faculty of Business</span></a></li>
<li id="menu-item-2791" class="main-menu-item menu-item menu-item-type-post_type menu-item-object-page menu-item-2791 main-menu-item-sub menu-item-odd menu-item-depth-1"><a href="http://www.nsbm.ac.lk/faculties/faculty-of-computing/" class=" main-menu-link main-menu-link-sub"><span>Faculty of Computing</span></a></li>
<li id="menu-item-2792" class="main-menu-item menu-item menu-item-type-post_type menu-item-object-page menu-item-2792 main-menu-item-sub menu-item-odd menu-item-depth-1"><a href="http://www.nsbm.ac.lk/faculties/faculty-of-engineering/" class=" main-menu-link main-menu-link-sub"><span>Faculty of Engineering</span></a></li>
<li id="menu-item-4014" class="main-menu-item menu-item menu-item-type-post_type menu-item-object-page menu-item-4014 main-menu-item-sub menu-item-odd menu-item-depth-1"><a href="http://www.nsbm.ac.lk/faculties/postgraduate-studies/" class=" main-menu-link main-menu-link-sub"><span>Postgraduate Studies</span></a></li>
</ul>
</li>
<li id="menu-item-4619" class="main-menu-item menu-item menu-item-type-post_type menu-item-object-page menu-item-4619 main-menu-item-top menu-item-even menu-item-depth-0"><a href="http://www.nsbm.ac.lk/international/" class=" main-menu-link main-menu-link-top"><span>International</span></a></li>
<li id="menu-item-3467" class="main-menu-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3467 main-menu-item-top menu-item-even menu-item-depth-0"><a href="http://www.nsbm.ac.lk/#" class=" main-menu-link main-menu-link-top"><span>Life at NSBM</span></a>
<ul class="sub-menu clearfix">
<li id="menu-item-3840" class="main-menu-item menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-3840 main-menu-item-sub menu-item-odd menu-item-depth-1"><a href="http://www.nsbm.ac.lk/life-at-nsbm/clubs-societies/" class=" main-menu-link main-menu-link-sub"><span>Clubs & Societies</span></a>
<ul class="sub-menu clearfix">
<li id="menu-item-5006" class="main-menu-item menu-item menu-item-type-post_type menu-item-object-page menu-item-5006 main-menu-item-sub main-menu-item-sub-sub menu-item-even menu-item-depth-2"><a href="http://www.nsbm.ac.lk/life-at-nsbm/clubs-societies/academic-clubs/" class=" main-menu-link main-menu-link-sub"><span>Academic Clubs</span></a></li>
<li id="menu-item-5007" class="main-menu-item menu-item menu-item-type-post_type menu-item-object-page menu-item-5007 main-menu-item-sub main-menu-item-sub-sub menu-item-even menu-item-depth-2"><a href="http://www.nsbm.ac.lk/life-at-nsbm/clubs-societies/activity-based-clubs/" class=" main-menu-link main-menu-link-sub"><span>Activity Based Clubs</span></a></li>
<li id="menu-item-5008" class="main-menu-item menu-item menu-item-type-post_type menu-item-object-page menu-item-5008 main-menu-item-sub main-menu-item-sub-sub menu-item-even menu-item-depth-2"><a href="http://www.nsbm.ac.lk/life-at-nsbm/clubs-societies/religious-clubs/" class=" main-menu-link main-menu-link-sub"><span>Religious Clubs</span></a></li>
<li id="menu-item-3847" class="main-menu-item menu-item menu-item-type-post_type menu-item-object-page menu-item-3847 main-menu-item-sub main-menu-item-sub-sub menu-item-even menu-item-depth-2"><a href="http://www.nsbm.ac.lk/life-at-nsbm/clubs-societies/sports-clubs/" class=" main-menu-link main-menu-link-sub"><span>Sports Clubs</span></a></li>
</ul>
</li>
</ul>
</li>
<li id="menu-item-3733" class="main-menu-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3733 main-menu-item-top menu-item-even menu-item-depth-0"><a href="http://www.nsbm.ac.lk/#" class=" main-menu-link main-menu-link-top"><span>Career Guidance</span></a>
<ul class="sub-menu clearfix">
<li id="menu-item-4398" class="main-menu-item menu-item menu-item-type-post_type menu-item-object-page menu-item-4398 main-menu-item-sub menu-item-odd menu-item-depth-1"><a href="http://www.nsbm.ac.lk/career-guidance-unit/" class=" main-menu-link main-menu-link-sub"><span>Career Guidance Unit</span></a></li>
<li id="menu-item-3737" class="main-menu-item menu-item menu-item-type-post_type menu-item-object-page menu-item-3737 main-menu-item-sub menu-item-odd menu-item-depth-1"><a href="http://www.nsbm.ac.lk/industrial-training/" class=" main-menu-link main-menu-link-sub"><span>Industrial Training</span></a></li>
</ul>
</li>
<li id="menu-item-4397" class="main-menu-item menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-4397 main-menu-item-top menu-item-even menu-item-depth-0"><a href="http://www.nsbm.ac.lk/research/" class=" main-menu-link main-menu-link-top"><span>Research</span></a>
<ul class="sub-menu clearfix">
<li id="menu-item-4674" class="main-menu-item menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-4674 main-menu-item-sub menu-item-odd menu-item-depth-1"><a href="http://www.nsbm.ac.lk/research/conferences/" class=" main-menu-link main-menu-link-sub"><span>Conferences</span></a>
<ul class="sub-menu clearfix">
<li id="menu-item-4548" class="main-menu-item menu-item menu-item-type-post_type menu-item-object-page menu-item-4548 main-menu-item-sub main-menu-item-sub-sub menu-item-even menu-item-depth-2"><a href="http://www.nsbm.ac.lk/icobi/" class=" main-menu-link main-menu-link-sub"><span>ICOBI</span></a></li>
<li id="menu-item-4550" class="main-menu-item menu-item menu-item-type-post_type menu-item-object-page menu-item-4550 main-menu-item-sub main-menu-item-sub-sub menu-item-even menu-item-depth-2"><a href="http://www.nsbm.ac.lk/research-symposium/" class=" main-menu-link main-menu-link-sub"><span>SRS</span></a></li>
</ul>
</li>
<li id="menu-item-4673" class="main-menu-item menu-item menu-item-type-post_type menu-item-object-page menu-item-4673 main-menu-item-sub menu-item-odd menu-item-depth-1"><a href="http://www.nsbm.ac.lk/research/centers/" class=" main-menu-link main-menu-link-sub"><span>Centers</span></a></li>
<li id="menu-item-4675" class="main-menu-item menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-4675 main-menu-item-sub menu-item-odd menu-item-depth-1"><a href="http://www.nsbm.ac.lk/research/publications/" class=" main-menu-link main-menu-link-sub"><span>Publications</span></a>
<ul class="sub-menu clearfix">
<li id="menu-item-4547" class="main-menu-item menu-item menu-item-type-post_type menu-item-object-page menu-item-4547 main-menu-item-sub main-menu-item-sub-sub menu-item-even menu-item-depth-2"><a href="http://www.nsbm.ac.lk/business-dialogue/" class=" main-menu-link main-menu-link-sub"><span>Business Dialogue</span></a></li>
<li id="menu-item-4549" class="main-menu-item menu-item menu-item-type-post_type menu-item-object-page menu-item-4549 main-menu-item-sub main-menu-item-sub-sub menu-item-even menu-item-depth-2"><a href="http://www.nsbm.ac.lk/nsbm-journal/" class=" main-menu-link main-menu-link-sub"><span>NSBM Journal</span></a></li>
</ul>
</li>
</ul>
</li>
<li id="menu-item-3906" class="main-menu-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3906 main-menu-item-top menu-item-even menu-item-depth-0"><a href="http://www.nsbm.ac.lk/#" class=" main-menu-link main-menu-link-top"><span>News & Media</span></a>
<ul class="sub-menu clearfix">
<li id="menu-item-159" class="main-menu-item menu-item menu-item-type-post_type menu-item-object-page menu-item-159 main-menu-item-sub menu-item-odd menu-item-depth-1"><a href="http://www.nsbm.ac.lk/news/" class=" main-menu-link main-menu-link-sub"><span>News</span></a></li>
<li id="menu-item-3907" class="main-menu-item menu-item menu-item-type-post_type menu-item-object-page menu-item-3907 main-menu-item-sub menu-item-odd menu-item-depth-1"><a href="http://www.nsbm.ac.lk/media/" class=" main-menu-link main-menu-link-sub"><span>Media</span></a></li>
</ul>
</li>
<li id="menu-item-1692" class="main-menu-item menu-item menu-item-type-post_type menu-item-object-page menu-item-1692 main-menu-item-top menu-item-even menu-item-depth-0"><a href="http://www.nsbm.ac.lk/nsbm-2020/" class=" main-menu-link main-menu-link-top"><span>NSBM 2020</span></a></li>
</ul></div> </div>
<!-- end main_menu -->
</div>
</div>
</div><!-- /.site-header-main -->
</div>
</div>
</div><!-- /.siteheader-container -->
</div><!-- /.site-header-main-wrapper -->
</div><!-- /.site-header-wrapper -->
</header>
<div class="zn_pb_wrapper clearfix zn_sortable_content" data-droplevel="0"> <div class="zn-widget-module eluid0517c6b3 ">
<div class="widget widget_revslider">
<!-- START Home Slider REVOLUTION SLIDER 6.0.5 -->
<rs-fullwidth-wrap id="rev_slider_2_1_forcefullwidth" style="margin-top:0px;margin-bottom:0px;"><rs-module-wrap id="rev_slider_2_1_wrapper" data-source="gallery" style="background: transparent; padding: 0px; margin: 0px auto; position: absolute; overflow: visible; width: 1519px; left: 0px; height: 554px;" class=""><rs-module id="rev_slider_2_1" style="height: 554px; max-height: 700px; margin-top: 0px; margin-bottom: 0px;" data-version="6.0.5" class="revslider-initialised rev_redraw_on_blurfocus" data-idcheck="true">
<rs-slides style="visibility: visible; display: block; max-height: none; height: 100%; width: 100%; overflow: hidden;">
<rs-slide data-key="rs-142" data-title="Slide" data-thumb="//www.nsbm.ac.lk/wp-content/uploads/2019/12/80899337_2681609841932932_3441887276622151680_o-50x100.jpg" data-duration="6000ms" data-anim="ei:d;eo:d;s:1000;r:0;t:fade;sl:0;" data-originalindex="1" data-origindex="0" data-description="" style="overflow: hidden; height: 100%; width: 100%; z-index: 18; visibility: hidden; opacity: 0;" data-sba="" data-scroll-based="false" data-owidth="2000" data-oheight="730" data-ntrid="0" class="active-rs-slide"><rs-sbg-px style="background-color: rgba(255, 255, 255, 0);"><rs-sbg-wrap data-owidth="2000" data-oheight="730" style="transform-origin: 50% 50% 0px; opacity: 1; visibility: inherit; top: 0px; left: 0px;"><!--Runtime Modification - Img tag is Still Available for SEO Goals in Source - <img src="//www.nsbm.ac.lk/wp-content/uploads/2019/12/80899337_2681609841932932_3441887276622151680_o.jpg" title="New Year 2020" width="2000" height="730" data-parallax="off" class="rev-slidebg" data-no-retina="">--><rs-sbg src="http://www.nsbm.ac.lk/wp-content/uploads/2019/12/80899337_2681609841932932_3441887276622151680_o.jpg" class="" data-bgcolor="transparent" style="background-color: transparent; background-repeat: no-repeat; background-image: url("http://www.nsbm.ac.lk/wp-content/uploads/2019/12/80899337_2681609841932932_3441887276622151680_o.jpg"); background-size: cover; background-position: 50% 50%; width: 100%; height: 100%; opacity: 1; top: 0px; left: 0px; visibility: inherit; z-index: 20;"></rs-sbg></rs-sbg-wrap></rs-sbg-px>
<!----> </rs-slide>
<rs-slide data-key="rs-24" data-title="Slide" data-thumb="//www.nsbm.ac.lk/wp-content/uploads/2019/09/1-50x100.jpg" data-anim="ei:d;eo:d;s:1000;r:0;t:fade;sl:0;" data-originalindex="2" data-origindex="1" data-description="" style="overflow: hidden; height: 100%; width: 100%; z-index: 20; visibility: inherit; opacity: 1;" data-sba="" data-scroll-based="false" data-owidth="1920" data-oheight="700" data-ntrid="0" class="active-rs-slide"><rs-sbg-px style="background-color: rgba(255, 255, 255, 0);"><rs-sbg-wrap data-owidth="1920" data-oheight="700" style="transform-origin: 50% 50% 0px; opacity: 1; visibility: inherit; top: 0px; left: 0px; transform: matrix(1, 0, 0, 1, 0, 0);"><!--Runtime Modification - Img tag is Still Available for SEO Goals in Source - <img src="//www.nsbm.ac.lk/wp-content/uploads/2019/09/1.jpg" title="nsbm-green-university-1" width="1920" height="700" data-parallax="off" class="rev-slidebg" data-no-retina="">--><rs-sbg src="http://www.nsbm.ac.lk/wp-content/uploads/2019/09/1.jpg" class="" data-bgcolor="transparent" style="background-color: transparent; background-repeat: no-repeat; background-image: url("http://www.nsbm.ac.lk/wp-content/uploads/2019/09/1.jpg"); background-size: cover; background-position: 50% 50%; width: 100%; height: 100%; opacity: 1; top: 0px; left: 0px; visibility: inherit; z-index: 20;"></rs-sbg></rs-sbg-wrap></rs-sbg-px>
<!----> </rs-slide>
<rs-slide data-key="rs-143" data-title="Slide" data-thumb="//www.nsbm.ac.lk/wp-content/uploads/2020/01/2020-copy-50x100.jpg" data-duration="6000ms" data-anim="ei:d;eo:d;s:1000;r:0;t:fade;sl:0;" data-originalindex="3" data-origindex="2" data-description="" style="overflow: hidden; height: 100%; width: 100%;" data-sba="" data-scroll-based="false"><rs-sbg-px><rs-sbg-wrap><!--Runtime Modification - Img tag is Still Available for SEO Goals in Source - <img src="//www.nsbm.ac.lk/wp-content/uploads/2020/01/2020-copy.jpg" title="Engineering" width="1920" height="700" data-parallax="off" class="rev-slidebg" data-no-retina="">--><rs-sbg src="http://www.nsbm.ac.lk/wp-content/uploads/2020/01/2020-copy.jpg" class="" data-bgcolor="transparent" style="background-color:transparent;background-repeat:no-repeat;background-image:url(http://www.nsbm.ac.lk/wp-content/uploads/2020/01/2020-copy.jpg);background-size:cover;background-position:50% 50%;width:100%;height:100%;opacity:0;"></rs-sbg></rs-sbg-wrap></rs-sbg-px>
<!----> </rs-slide>
<rs-slide data-key="rs-139" data-title="Slide" data-thumb="//www.nsbm.ac.lk/wp-content/uploads/2019/12/WEB-Banner-Buesiness-Dialogue-2019-DEC1-50x100.jpg" data-anim="ei:d;eo:d;s:1000;r:0;t:fade;sl:0;" data-originalindex="4" data-origindex="3" data-description="" style="overflow: hidden; height: 100%; width: 100%;" data-sba="" data-scroll-based="false"><rs-sbg-px><rs-sbg-wrap><!--Runtime Modification - Img tag is Still Available for SEO Goals in Source - <img src="//www.nsbm.ac.lk/wp-content/uploads/2019/12/WEB-Banner-Buesiness-Dialogue-2019-DEC1.jpg" title="WEB Banner Buesiness Dialogue 2019 DEC(1)" width="3425" height="1308" data-parallax="off" class="rev-slidebg" data-no-retina="">--><rs-sbg src="http://www.nsbm.ac.lk/wp-content/uploads/2019/12/WEB-Banner-Buesiness-Dialogue-2019-DEC1.jpg" class="" data-bgcolor="transparent" style="background-color:transparent;background-repeat:no-repeat;background-image:url(http://www.nsbm.ac.lk/wp-content/uploads/2019/12/WEB-Banner-Buesiness-Dialogue-2019-DEC1.jpg);background-size:cover;background-position:50% 50%;width:100%;height:100%;opacity:0;"></rs-sbg></rs-sbg-wrap></rs-sbg-px>
<!----> </rs-slide>
<rs-slide data-key="rs-69" data-title="Slide" data-thumb="//www.nsbm.ac.lk/wp-content/uploads/2019/09/4-50x100.jpg" data-link="//www.nsbm.ac.lk/faculties/faculty-of-computing/" data-target="_self" data-seoz="front" data-anim="ei:d;eo:d;s:1000;r:0;t:fade;sl:0;" data-originalindex="5" data-origindex="4" data-description="" style="overflow: hidden; height: 100%; width: 100%;" data-sba="" data-scroll-based="false"><rs-sbg-px><rs-sbg-wrap><!--Runtime Modification - Img tag is Still Available for SEO Goals in Source - <img src="//www.nsbm.ac.lk/wp-content/uploads/2019/09/4.jpg" title="4" width="1920" height="700" data-parallax="off" class="rev-slidebg" data-no-retina="">--><rs-sbg src="http://www.nsbm.ac.lk/wp-content/uploads/2019/09/4.jpg" class="" data-bgcolor="transparent" style="background-color:transparent;background-repeat:no-repeat;background-image:url(http://www.nsbm.ac.lk/wp-content/uploads/2019/09/4.jpg);background-size:cover;background-position:50% 50%;width:100%;height:100%;opacity:0;"></rs-sbg></rs-sbg-wrap></rs-sbg-px>
<!----> <rs-layer-wrap class="rs-parallax-wrap " style=" width:100% !important;height:100% !important;position:absolute;display:block;;pointer-events:none"><rs-loop-wrap style="width:100% !important;height:100% !important;position:absolute;display:block;"><rs-mask-wrap style="width:100% !important;height:100% !important;position:absolute;display:block;"><rs-layer class="rs-layer slidelink" style="z-index: 60; visibility: hidden;" dataxy="x:c;y:c" data-dim="w:100%;h:100%" data-basealign="slide" data-frame_1="e:Power3.easeInOut;st:100;sp:100" data-frame_999="e:Power3.easeInOut;o:0;st:w;sp:100" id="" data-idcheck="true"><a target="_self" href="http://www.nsbm.ac.lk/faculties/faculty-of-computing/"><span></span></a></rs-layer></rs-mask-wrap></rs-loop-wrap></rs-layer-wrap></rs-slide>
<rs-slide data-key="rs-71" data-title="Slide" data-thumb="//www.nsbm.ac.lk/wp-content/uploads/2019/09/2-50x100.jpg" data-link="//www.nsbm.ac.lk/faculties/faculty-of-engineering/" data-target="_self" data-seoz="front" data-anim="ei:d;eo:d;s:1000;r:0;t:fade;sl:0;" data-originalindex="6" data-origindex="5" data-description="" style="overflow: hidden; height: 100%; width: 100%;" data-sba="" data-scroll-based="false"><rs-sbg-px><rs-sbg-wrap><!--Runtime Modification - Img tag is Still Available for SEO Goals in Source - <img src="//www.nsbm.ac.lk/wp-content/uploads/2019/09/2.jpg" title="2" width="1920" height="700" data-parallax="off" class="rev-slidebg" data-no-retina="">--><rs-sbg src="http://www.nsbm.ac.lk/wp-content/uploads/2019/09/2.jpg" class="" data-bgcolor="transparent" style="background-color:transparent;background-repeat:no-repeat;background-image:url(http://www.nsbm.ac.lk/wp-content/uploads/2019/09/2.jpg);background-size:cover;background-position:50% 50%;width:100%;height:100%;opacity:0;"></rs-sbg></rs-sbg-wrap></rs-sbg-px>
<!----> <rs-layer-wrap class="rs-parallax-wrap " style=" width:100% !important;height:100% !important;position:absolute;display:block;;pointer-events:none"><rs-loop-wrap style="width:100% !important;height:100% !important;position:absolute;display:block;"><rs-mask-wrap style="width:100% !important;height:100% !important;position:absolute;display:block;"><rs-layer class="rs-layer slidelink" style="z-index: 60; visibility: hidden;" dataxy="x:c;y:c" data-dim="w:100%;h:100%" data-basealign="slide" data-frame_1="e:Power3.easeInOut;st:100;sp:100" data-frame_999="e:Power3.easeInOut;o:0;st:w;sp:100" id="_5046" data-idcheck="true"><a target="_self" href="http://www.nsbm.ac.lk/faculties/faculty-of-engineering/"><span></span></a></rs-layer></rs-mask-wrap></rs-loop-wrap></rs-layer-wrap></rs-slide>
<rs-slide data-key="rs-72" data-title="Slide" data-thumb="//www.nsbm.ac.lk/wp-content/uploads/2019/09/3-50x100.jpg" data-link="//www.nsbm.ac.lk/faculties/faculty-of-business/" data-target="_self" data-seoz="front" data-anim="ei:d;eo:d;s:1000;r:0;t:fade;sl:0;" data-originalindex="7" data-origindex="6" data-description="" style="overflow: hidden; height: 100%; width: 100%;" data-sba="" data-scroll-based="false"><rs-sbg-px><rs-sbg-wrap><!--Runtime Modification - Img tag is Still Available for SEO Goals in Source - <img src="//www.nsbm.ac.lk/wp-content/uploads/2019/09/3.jpg" title="3" width="1920" height="700" data-parallax="off" class="rev-slidebg" data-no-retina="">--><rs-sbg src="http://www.nsbm.ac.lk/wp-content/uploads/2019/09/3.jpg" class="" data-bgcolor="transparent" style="background-color:transparent;background-repeat:no-repeat;background-image:url(http://www.nsbm.ac.lk/wp-content/uploads/2019/09/3.jpg);background-size:cover;background-position:50% 50%;width:100%;height:100%;opacity:0;"></rs-sbg></rs-sbg-wrap></rs-sbg-px>
<!----> <rs-layer-wrap class="rs-parallax-wrap " style=" width:100% !important;height:100% !important;position:absolute;display:block;;pointer-events:none"><rs-loop-wrap style="width:100% !important;height:100% !important;position:absolute;display:block;"><rs-mask-wrap style="width:100% !important;height:100% !important;position:absolute;display:block;"><rs-layer class="rs-layer slidelink" style="z-index: 60; visibility: hidden;" dataxy="x:c;y:c" data-dim="w:100%;h:100%" data-basealign="slide" data-frame_1="e:Power3.easeInOut;st:100;sp:100" data-frame_999="e:Power3.easeInOut;o:0;st:w;sp:100" id="_8654" data-idcheck="true"><a target="_self" href="http://www.nsbm.ac.lk/faculties/faculty-of-business/"><span></span></a></rs-layer></rs-mask-wrap></rs-loop-wrap></rs-layer-wrap></rs-slide>
<rs-slide data-key="rs-21" data-title="Slide" data-thumb="//www.nsbm.ac.lk/wp-content/uploads/2019/09/nsbm-slider-3-50x100.jpg" data-duration="6000ms" data-anim="ei:d;eo:d;s:1000;r:0;t:fade;sl:0;" data-originalindex="8" data-origindex="7" data-description="" style="overflow: hidden; height: 100%; width: 100%;" data-sba="" data-scroll-based="false"><rs-sbg-px><rs-sbg-wrap><!--Runtime Modification - Img tag is Still Available for SEO Goals in Source - <img src="//www.nsbm.ac.lk/wp-content/uploads/2019/09/nsbm-slider-3.jpg" title="nsbm-slider (3)" width="1920" height="700" data-parallax="off" class="rev-slidebg" data-no-retina="">--><rs-sbg src="http://www.nsbm.ac.lk/wp-content/uploads/2019/09/nsbm-slider-3.jpg" class="" data-bgcolor="transparent" style="background-color:transparent;background-repeat:no-repeat;background-image:url(http://www.nsbm.ac.lk/wp-content/uploads/2019/09/nsbm-slider-3.jpg);background-size:cover;background-position:50% 50%;width:100%;height:100%;opacity:0;"></rs-sbg></rs-sbg-wrap></rs-sbg-px>
<!----> </rs-slide>
<rs-slide data-key="rs-23" data-title="Slide" data-thumb="//www.nsbm.ac.lk/wp-content/uploads/2019/09/nsbm-slider-1-50x100.jpg" data-duration="6000ms" data-anim="ei:d;eo:d;s:1000;r:0;t:fade;sl:0;" data-originalindex="9" data-origindex="8" data-description="" style="overflow: hidden; height: 100%; width: 100%;" data-sba="" data-scroll-based="false" data-owidth="1920" data-oheight="700"><rs-sbg-px><rs-sbg-wrap data-owidth="1920" data-oheight="700"><!--Runtime Modification - Img tag is Still Available for SEO Goals in Source - <img src="//www.nsbm.ac.lk/wp-content/uploads/2019/09/nsbm-slider-1.jpg" title="nsbm-slider (1)" width="1920" height="700" data-parallax="off" class="rev-slidebg" data-no-retina="">--><rs-sbg src="http://www.nsbm.ac.lk/wp-content/uploads/2019/09/nsbm-slider-1.jpg" class="" data-bgcolor="transparent" style="background-color:transparent;background-repeat:no-repeat;background-image:url(http://www.nsbm.ac.lk/wp-content/uploads/2019/09/nsbm-slider-1.jpg);background-size:cover;background-position:50% 50%;width:100%;height:100%;opacity:0;"></rs-sbg></rs-sbg-wrap></rs-sbg-px>
<!----> </rs-slide>
</rs-slides>
<rs-static-layers data-key="staticlayers"><!--
--></rs-static-layers>
<rs-progress class="rs-bottom" style="visibility: hidden; width: 67.7556%; transform: translate3d(0px, 0px, 0px);"></rs-progress>
<rs-loader class="spinner11" style="display: none;"><div class="rs-spinner-inner"><span style="background:#4cd964"></span> <span style="background:#4cd964"></span> <span style="background:#4cd964"></span> <span style="background:#4cd964"></span> <span style="background:#4cd964"></span> <span style="background:#4cd964"></span> <span style="background:#4cd964"></span> <span style="background:#4cd964"></span> <span style="background:#4cd964"></span></div></rs-loader><rs-arrow style="opacity: 1; top: 50%; transform: matrix(1, 0, 0, 1, 0, -20); left: 0px; visibility: inherit;" class="tp-leftarrow tparrows custom"></rs-arrow><rs-arrow style="opacity: 1; top: 50%; transform: matrix(1, 0, 0, 1, -40, -20); left: 100%; visibility: inherit;" class="tp-rightarrow tparrows custom"></rs-arrow></rs-module>
<script type="text/javascript">
setREVStartSize({c: 'rev_slider_2_1',rl:[1240,1024,768,480],el:[700,768,480,720],gw:[1920,1366,778,480],gh:[700,768,480,320],layout:'fullwidth',mh:"0"});
var revapi2,
tpj;
jQuery(function() {
tpj = jQuery;
if(tpj("#rev_slider_2_1").revolution == undefined){
revslider_showDoubleJqueryError("#rev_slider_2_1");
}else{
revapi2 = tpj("#rev_slider_2_1").show().revolution({
jsFileLocation:"//www.nsbm.ac.lk/wp-content/plugins/revslider/public/assets/js/",
sliderLayout:"fullwidth",
visibilityLevels:"1240,1024,768,480",
gridwidth:"1920,1366,778,480",
gridheight:"700,768,480,320",
minHeight:"",
spinner:"spinner11",
spinnerclr:"#4cd964",
editorheight:"700,768,480,720",
responsiveLevels:"1240,1024,768,480",
disableProgressBar:"on",
navigation: {
onHoverStop:false,
arrows: {
enable:true,
style:"custom",
left: {
h_offset:0
},
right: {
h_offset:0
}
}
},
parallax: {
levels:[5,10,15,20,25,30,35,40,45,46,47,48,49,50,51,30],
type:"scroll",
origo:"slideCenter",
speed:0
},
fallbacks: {
allowHTML5AutoPlayOnAndroid:true
},
});
}
});
</script>
<script>
var htmlDivCss = unescape("%23rev_slider_2_1_wrapper%20.custom.tparrows%20%7B%0A%09cursor%3Apointer%3B%0A%09background%3A%23000%3B%0A%09background%3Argba%280%2C0%2C0%2C0.5%29%3B%0A%09width%3A40px%3B%0A%09height%3A40px%3B%0A%09position%3Aabsolute%3B%0A%09display%3Ablock%3B%0A%09z-index%3A1000%3B%0A%7D%0A%23rev_slider_2_1_wrapper%20.custom.tparrows%3Ahover%20%7B%0A%09background%3A%23000%3B%0A%7D%0A%23rev_slider_2_1_wrapper%20.custom.tparrows%3Abefore%20%7B%0A%09font-family%3A%20%27revicons%27%3B%0A%09font-size%3A15px%3B%0A%09color%3A%23fff%3B%0A%09display%3Ablock%3B%0A%09line-height%3A%2040px%3B%0A%09text-align%3A%20center%3B%0A%7D%0A%23rev_slider_2_1_wrapper%20.custom.tparrows.tp-leftarrow%3Abefore%20%7B%0A%09content%3A%20%27%5Ce824%27%3B%0A%7D%0A%23rev_slider_2_1_wrapper%20.custom.tparrows.tp-rightarrow%3Abefore%20%7B%0A%09content%3A%20%27%5Ce825%27%3B%0A%7D%0A%0A%0A");
var htmlDiv = document.getElementById('rs-plugin-settings-inline-css');
if(htmlDiv) {
htmlDiv.innerHTML = htmlDiv.innerHTML + htmlDivCss;
}else{
var htmlDiv = document.createElement('div');
htmlDiv.innerHTML = '<style>' + htmlDivCss + '</style>';
document.getElementsByTagName('head')[0].appendChild(htmlDiv.childNodes[0]);
}
</script>
</rs-module-wrap><rs-fw-forcer style="height: 554px;"></rs-fw-forcer></rs-fullwidth-wrap>
<!-- END REVOLUTION SLIDER -->
</div> </div>
<div class="zn_custom_html eluid4fac1954 hidden-xs "><p class="register-now-button"><a href="http://www.nsbm.ac.lk/enroll-now/">Register Now</a></p>
<a href="tel:+94115445000" class="fancybox" style="display: none;">
<div class="coccoc-alo-phone coccoc-alo-green coccoc-alo-show" id="coccoc-alo-phoneIcon" style="right:5%; top: 10%;"><div class="coccoc-alo-ph-circle"></div><div class="coccoc-alo-ph-circle-fill"></div><div class="coccoc-alo-ph-img-circle"></div></div>
</a>
</div> <section class="zn_section eluid40900798 wl-faculties-home programme-list-categories section-sidemargins section--no " id="eluid40900798">
<div class="zn_section_size full_width zn-section-height--auto zn-section-content_algn--top ">
<div class="row ">
<div class="eluid2147b760 col-md-1-5 col-sm-1-5 znColumnElement" id="eluid2147b760">
<div class="znColumnElement-innerWrapper-eluid2147b760 znColumnElement-innerWrapper znColumnElement-innerWrapper--valign-top znColumnElement-innerWrapper--halign-left ">
<div class="znColumnElement-innerContent"> <h3 class="eluid1bd1337e modern-tech-fob dn-heading" id="eluid1bd1337e" itemprop="headline"><a href="http://www.nsbm.ac.lk/faculties/faculty-of-business/" class="dn-headingLink" title="Faculty of Business" target="_self" itemprop="url">Faculty of Business</a></h3><div class="image-boxes image-boxes--1 eluid34c6e54a modern-tech-descrioption-text imgboxes_style1"><div class="image-boxes-holder imgboxes-wrapper u-mb-0"><div class="image-boxes-img-wrapper"><img class="image-boxes-img " src="./Home _ NSBM Green University_files/nsbm-business.jpg" alt="" title="nsbm-business"></div></div></div><div class="zn-buttonWrapper zn-buttonWrapper-eluid897cffad text-left"><a href="http://www.nsbm.ac.lk/faculties/faculty-of-business/" id="eluid897cffad" class="eluid897cffad zn-button btn btn-fullcolor btn-block btn-fullwidth btn--square btn-icon--before" title="Faculty of Business" target="_self" itemprop="url"><span class="zn-buttonText">View More</span></a></div> </div>
</div>
</div>
<div class="eluid561023d4 col-md-1-5 col-sm-1-5 znColumnElement" id="eluid561023d4">
<div class="znColumnElement-innerWrapper-eluid561023d4 znColumnElement-innerWrapper znColumnElement-innerWrapper--valign-top znColumnElement-innerWrapper--halign-left ">
<div class="znColumnElement-innerContent"> <h3 class="eluid730c884f modern-tech-foc dn-heading" id="eluid730c884f" itemprop="headline"><a href="http://www.nsbm.ac.lk/faculties/faculty-of-computing/" class="dn-headingLink" title="Faculty of Business" target="_self" itemprop="url">Faculty of Computing</a></h3><div class="image-boxes imgbox-simple eluidfcc01536 "><div class="image-boxes-holder imgboxes-wrapper u-mb-0 "><div class="image-boxes-img-wrapper img-align-center"><img class="image-boxes-img img-responsive " src="./Home _ NSBM Green University_files/nsbm-computing.jpg" alt="" title="nsbm-computing"></div></div></div><div class="zn-buttonWrapper zn-buttonWrapper-eluid059af2be text-left"><a href="http://www.nsbm.ac.lk/faculties/faculty-of-computing/" id="eluid059af2be" class="eluid059af2be zn-button btn btn-fullcolor btn-block btn-fullwidth btn--square btn-icon--before" title="Faculty of Computing" target="_self" itemprop="url"><span class="zn-buttonText">View More</span></a></div> </div>
</div>
</div>
<div class="eluid51dd90e1 col-md-1-5 col-sm-1-5 znColumnElement" id="eluid51dd90e1">
<div class="znColumnElement-innerWrapper-eluid51dd90e1 znColumnElement-innerWrapper znColumnElement-innerWrapper--valign-top znColumnElement-innerWrapper--halign-left ">
<div class="znColumnElement-innerContent"> <h3 class="eluidf8e6b429 modern-tech-foe dn-heading" id="eluidf8e6b429" itemprop="headline"><a href="http://www.nsbm.ac.lk/faculties/faculty-of-engineering/" class="dn-headingLink" title="Faculty of Engineering" target="_self" itemprop="url">Faculty of Engineering</a></h3><div class="image-boxes imgbox-simple eluid453e1207 "><div class="image-boxes-holder imgboxes-wrapper u-mb-0 "><div class="image-boxes-img-wrapper img-align-center"><img class="image-boxes-img img-responsive " src="./Home _ NSBM Green University_files/nsbm-engineering.jpg" alt="" title="nsbm-engineering"></div></div></div><div class="zn-buttonWrapper zn-buttonWrapper-eluida3db5c8f text-left"><a href="http://www.nsbm.ac.lk/faculties/faculty-of-engineering/" id="eluida3db5c8f" class="eluida3db5c8f zn-button btn btn-fullcolor btn-block btn-fullwidth btn--square btn-icon--before" title="Faculty of Engineering" target="_self" itemprop="url"><span class="zn-buttonText">View More</span></a></div> </div>
</div>
</div>
<div class="eluid063f33c1 col-md-1-5 col-sm-1-5 znColumnElement" id="eluid063f33c1">
<div class="znColumnElement-innerWrapper-eluid063f33c1 znColumnElement-innerWrapper znColumnElement-innerWrapper--valign-top znColumnElement-innerWrapper--halign-left ">
<div class="znColumnElement-innerContent"> <h3 class="eluidb31e0ea7 modern-tech-ins dn-heading" id="eluidb31e0ea7" itemprop="headline"><a href="http://www.nsbm.ac.lk/international/international-students/" class="dn-headingLink" title="International Students" target="_self" itemprop="url">International Students</a></h3><div class="image-boxes imgbox-simple eluid7258e915 "><div class="image-boxes-holder imgboxes-wrapper u-mb-0 "><div class="image-boxes-img-wrapper img-align-center"><img class="image-boxes-img img-responsive " src="./Home _ NSBM Green University_files/International-Business.jpg" alt="" title="International-Business"></div></div></div><div class="zn-buttonWrapper zn-buttonWrapper-eluidefb5c916 text-left"><a href="http://www.nsbm.ac.lk/international/international-students/" id="eluidefb5c916" class="eluidefb5c916 zn-button btn btn-fullcolor btn-block btn-fullwidth btn--square btn-icon--before" title="International Students" target="_self" itemprop="url"><span class="zn-buttonText">View More</span></a></div> </div>
</div>
</div>
<div class="eluid290d177c col-md-1-5 col-sm-1-5 znColumnElement" id="eluid290d177c">
<div class="znColumnElement-innerWrapper-eluid290d177c znColumnElement-innerWrapper znColumnElement-innerWrapper--valign-top znColumnElement-innerWrapper--halign-left ">
<div class="znColumnElement-innerContent"> <h3 class="eluida90ee04a modern-tech-pg dn-heading" id="eluida90ee04a" itemprop="headline"><a href="http://www.nsbm.ac.lk/faculties/postgraduate-studies/" class="dn-headingLink" title="International Students" target="_self" itemprop="url">Postgraduate Studies</a></h3><div class="image-boxes imgbox-simple eluidb2b176c3 "><div class="image-boxes-holder imgboxes-wrapper u-mb-0 "><div class="image-boxes-img-wrapper img-align-center"><img class="image-boxes-img img-responsive " src="./Home _ NSBM Green University_files/pgs_thumbn.jpg" alt="" title="pgs_thumbn"></div></div></div><div class="zn-buttonWrapper zn-buttonWrapper-eluid9676465a text-left"><a href="http://www.nsbm.ac.lk/faculties/postgraduate-studies/" id="eluid9676465a" class="eluid9676465a zn-button btn btn-fullcolor btn-block btn-fullwidth btn--square btn-icon--before" title="International Students" target="_self" itemprop="url"><span class="zn-buttonText">View More</span></a></div> </div>
</div>
</div>
</div>
</div>
</section>
<section class="zn_section eluid91b960c3 featured-news-section section-sidemargins section--no " id="eluid91b960c3">
<div class="zn_section_size full_width zn-section-height--custom_height zn-section-content_algn--top ">
<div class="row ">
<div class="eluid47b9236f home-graduation-img col-md-4 col-sm-12 znColumnElement" id="eluid47b9236f">
<div class="znColumnElement-innerWrapper-eluid47b9236f znColumnElement-innerWrapper znColumnElement-innerWrapper--valign-top znColumnElement-innerWrapper--halign-left ">
<div class="znColumnElement-innerContent">
<div class="zn_custom_container eluidc07d1b01 featured-news-left-wrapper smart-cnt--default clearfix">
<div class="row zn_col_container-smart_container ">
<div class="eluid5d8ffc48 col-md-12 col-sm-12 znColumnElement" id="eluid5d8ffc48">
<div class="znColumnElement-innerWrapper-eluid5d8ffc48 znColumnElement-innerWrapper znColumnElement-innerWrapper--valign-top znColumnElement-innerWrapper--halign-left ">
<div class="znColumnElement-innerContent"> </div>
</div>
</div>
</div>
</div><!-- /.zn_custom_container -->
</div>
</div>
</div>
<div class="eluidd6567b43 col-md-8 col-sm-12 znColumnElement" id="eluidd6567b43">
<div class="znColumnElement-innerWrapper-eluidd6567b43 znColumnElement-innerWrapper znColumnElement-innerWrapper--valign-top znColumnElement-innerWrapper--halign-left ">
<div class="znColumnElement-innerContent">
<div class="zn_custom_container eluid41196ba7 smart-cnt--default clearfix">
<div class="row zn_col_container-smart_container ">
<div class="eluidb4bd0c45 col-md-8 col-sm-8 znColumnElement" id="eluidb4bd0c45">
<div class="znColumnElement-innerWrapper-eluidb4bd0c45 znColumnElement-innerWrapper znColumnElement-innerWrapper--valign-top znColumnElement-innerWrapper--halign-left ">
<div class="znColumnElement-innerContent"> <h2 class="eluid43724e12 news-flash-tagline dn-heading" id="eluid43724e12" itemprop="headline">Featured News</h2> </div>
</div>
</div>
<div class="eluid03c56460 col-md-4 col-sm-4 znColumnElement" id="eluid03c56460">
<div class="znColumnElement-innerWrapper-eluid03c56460 znColumnElement-innerWrapper znColumnElement-innerWrapper--valign-top znColumnElement-innerWrapper--halign-left ">
<div class="znColumnElement-innerContent"> <div class="zn-buttonWrapper zn-buttonWrapper-eluid11ed9fcb text-right"><a href="http://www.nsbm.ac.lk/news/" id="eluid11ed9fcb" class="eluid11ed9fcb featured-news-btn zn-button btn btn-primary btn--square btn-icon--before" title="More News" target="_self" itemprop="url"><span class="zn-buttonText">More Featured News</span></a></div> </div>
</div>
</div>
</div>
</div><!-- /.zn_custom_container -->
<div class="zn_custom_container eluidee800c07 home-newsflash smart-cnt--default clearfix">
<div class="row zn_col_container-smart_container ">
<div class="eluid57779ac5 col-md-12 col-sm-12 znColumnElement" id="eluid57779ac5">
<div class="znColumnElement-innerWrapper-eluid57779ac5 znColumnElement-innerWrapper znColumnElement-innerWrapper--valign-top znColumnElement-innerWrapper--halign-left ">
<div class="znColumnElement-innerContent"> <div class="zn_custom_html eluid96c07043 home-single-post"><div class="row">
<div class="col-lg-4 news-media">
<div class="wl-single-post">
<div class="sp-thumb">
<img src="./Home _ NSBM Green University_files/Webp.net-resizeimage-7.jpg" alt="“Haritha Nawathumak”: A CSR Project by the undergraduates of the Faculty of Computing.">
</div>
<div class="wl-post-content">
<span class="post-details element-scheme__faded latest_posts-details wl-post-date text-center">
<span class="wl-date wl-lp-date">02</span>
<span class="wl-date wl-lp-month text-uppercase">Jan</span>
<span class="wl-date wl-lp-year">2020</span>
</span>
<h3 class="m_title m_title_ext text-custom latest_posts-title wl-post-title" itemprop="headline">
<a href="http://www.nsbm.ac.lk/haritha-nawathumak-a-csr-project-by-the-undergraduates-of-the-faculty-of-computing/">
“Haritha Nawathumak”: A CSR Project by the undergraduates of the Faculty of Computing. </a>
</h3>
<div class="latest_posts-desc"><p>CREST (Creative, Responsible, Energetic, Smart, Techie) is a new component included in the undergraduate studies of the UGC approved degree programs in the Faculty of Computing. The course is developed based on scientific techniques, which encompasses a fun-filled approach to course work, interactive sessions, classroom exercises, CSR projects, and field visits. “Haritha Nawathumak” is one</p>
</div>
</div>
<div class="text-right">
<a class="wl-view-more" href="http://www.nsbm.ac.lk/haritha-nawathumak-a-csr-project-by-the-undergraduates-of-the-faculty-of-computing/">Read More</a>
</div>
</div>
</div>
<div class="col-lg-4 news-media">
<div class="wl-single-post">
<div class="sp-thumb">
<img src="./Home _ NSBM Green University_files/Webp.net-resizeimage-4.jpg" alt="Rise Up with NSBM – Rise Up Sri Lanka 2020">
</div>
<div class="wl-post-content">
<span class="post-details element-scheme__faded latest_posts-details wl-post-date text-center">
<span class="wl-date wl-lp-date">01</span>
<span class="wl-date wl-lp-month text-uppercase">Jan</span>
<span class="wl-date wl-lp-year">2020</span>
</span>
<h3 class="m_title m_title_ext text-custom latest_posts-title wl-post-title" itemprop="headline">
<a href="http://www.nsbm.ac.lk/rise-up-with-nsbm-rise-up-sri-lanka-2020/">
Rise Up with NSBM – Rise Up Sri Lanka 2020 </a>
</h3>
<div class="latest_posts-desc"><p>The vice Chancellor of NSBM Green University, Prof. E A Weerasinghe and Deputy Vice-Chancellor Prof. Chaminda Rathnayake commenced work ceremoniously along with his talented and vibrant team of academics and non-academics on the blissful morning of the 1st of January 2020. The staff of NSBM renewed their vows to ensure the best of work ethics</p>
</div>
</div>
<div class="text-right">
<a class="wl-view-more" href="http://www.nsbm.ac.lk/rise-up-with-nsbm-rise-up-sri-lanka-2020/">Read More</a>
</div>
</div>
</div>
<div class="col-lg-4 news-media">
<div class="wl-single-post">
<div class="sp-thumb">
<img src="./Home _ NSBM Green University_files/Webp.net-resizeimage-3-1.jpg" alt="Nsbm Colours Awarding Ceremony 2019">
</div>
<div class="wl-post-content">
<span class="post-details element-scheme__faded latest_posts-details wl-post-date text-center">
<span class="wl-date wl-lp-date">19</span>
<span class="wl-date wl-lp-month text-uppercase">Dec</span>
<span class="wl-date wl-lp-year">2019</span>
</span>
<h3 class="m_title m_title_ext text-custom latest_posts-title wl-post-title" itemprop="headline">
<a href="http://www.nsbm.ac.lk/nsbm-colours-2019/">
Nsbm Colours Awarding Ceremony 2019 </a>
</h3>
<div class="latest_posts-desc"><p>Ending the year on a defining note, applauding the true spirit of sportsmanship and grit, NSBM Green University celebrated the achievements gained by NSBM’s own sportsmen & sportswomen at the prestigious NSBM Colours 2019. The grand awarding ceremony, held at the university auditorium premises on Thursday, 19 December 2019, presented an esteemed insignia of colour</p>
</div>
</div>
<div class="text-right">
<a class="wl-view-more" href="http://www.nsbm.ac.lk/nsbm-colours-2019/">Read More</a>
</div>
</div>
</div>
</div></div> </div>
</div>
</div>
</div>
</div><!-- /.zn_custom_container -->
</div>
</div>
</div>
</div>
</div>
</section>
<div class="zn_separator clearfix eluid1a969335 zn_separator--icon-no "></div>
<section class="zn_section eluid5b422288 nsbm-main section-sidemargins section--no " id="eluid5b422288">
<div class="zn_section_size full_width zn-section-height--auto zn-section-content_algn--top ">
<div class="row ">
<div class="eluid49213a0b col-md-3 col-sm-6 znColumnElement" id="eluid49213a0b">
<div class="znColumnElement-innerWrapper-eluid49213a0b znColumnElement-innerWrapper znColumnElement-innerWrapper--valign-top znColumnElement-innerWrapper--halign-left ">
<div class="znColumnElement-innerContent"> <div class="kl-iconbox eluid5787c2fc nsbm-main-item kl-iconbox--type-icon kl-iconbox--align-center text-center kl-iconbox--theme-light element-scheme--light" id="eluid5787c2fc">
<div class="kl-iconbox__inner clearfix">
<div class="kl-iconbox__icon-wrapper ">
<a href="http://www.nsbm.ac.lk/enroll-now/" class="kl-iconbox__link" title="Enroll Now" target="_self" itemprop="url"><span class="kl-iconbox__icon kl-iconbox__icon--" data-zniconfam="nsbm-icon-usp-icon" data-zn_icon=""></span></a> </div><!-- /.kl-iconbox__icon-wrapper -->
<div class="kl-iconbox__content-wrapper">
<div class="kl-iconbox__el-wrapper kl-iconbox__title-wrapper">
<h3 class="kl-iconbox__title element-scheme__hdg1" itemprop="headline"><a href="http://www.nsbm.ac.lk/enroll-now/" class="kl-iconbox__link" title="Enroll Now" target="_self" itemprop="url">Next Intake – March' 20</a></h3>
</div>
<div class=" kl-iconbox__el-wrapper kl-iconbox__desc-wrapper">
<p class="kl-iconbox__desc">Calling all with the thirst for top notch education that is intrinsically bound to sharpening your skills and developing your talents, within and beyond the classroom. If you aspire to be ‘outstanding’ individuals, this is your platform to shine! </p> </div>
</div><!-- /.kl-iconbox__content-wrapper -->
</div>
</div>
</div>
</div>
</div>
<div class="eluide3fb2c97 col-md-3 col-sm-6 znColumnElement" id="eluide3fb2c97">
<div class="znColumnElement-innerWrapper-eluide3fb2c97 znColumnElement-innerWrapper znColumnElement-innerWrapper--valign-top znColumnElement-innerWrapper--halign-left ">
<div class="znColumnElement-innerContent"> <div class="kl-iconbox eluid6598504f nsbm-main-item kl-iconbox--type-icon kl-iconbox--align-center text-center kl-iconbox--theme-light element-scheme--light" id="eluid6598504f">
<div class="kl-iconbox__inner clearfix">
<div class="kl-iconbox__icon-wrapper ">
<a href="http://www.nsbm.ac.lk/life-at-nsbm/clubs-societies/" class="kl-iconbox__link" target="_self" itemprop="url"><span class="kl-iconbox__icon kl-iconbox__icon--" data-zniconfam="nsbm-icon-student-life" data-zn_icon=""></span></a> </div><!-- /.kl-iconbox__icon-wrapper -->
<div class="kl-iconbox__content-wrapper">
<div class="kl-iconbox__el-wrapper kl-iconbox__title-wrapper">
<h3 class="kl-iconbox__title element-scheme__hdg1" itemprop="headline"><a href="http://www.nsbm.ac.lk/life-at-nsbm/clubs-societies/" class="kl-iconbox__link" target="_self" itemprop="url">Student Life</a></h3>
</div>
<div class=" kl-iconbox__el-wrapper kl-iconbox__desc-wrapper">
<p class="kl-iconbox__desc">NSBM offers a stellar platform for all capabilities and interests within its 45 clubs and societies, thus, musicians, sportsman, fitness maniacs, poets, artists and even techies are afforded a niche community to thrive.</p> </div>
</div><!-- /.kl-iconbox__content-wrapper -->
</div>
</div>
</div>
</div>
</div>
<div class="eluidc0ce54af col-md-3 col-sm-6 znColumnElement" id="eluidc0ce54af">
<div class="znColumnElement-innerWrapper-eluidc0ce54af znColumnElement-innerWrapper znColumnElement-innerWrapper--valign-top znColumnElement-innerWrapper--halign-left ">
<div class="znColumnElement-innerContent"> <div class="kl-iconbox eluid2bd76acf nsbm-main-item kl-iconbox--type-icon kl-iconbox--align-center text-center kl-iconbox--theme-light element-scheme--light" id="eluid2bd76acf">
<div class="kl-iconbox__inner clearfix">
<div class="kl-iconbox__icon-wrapper ">
<a href="http://www.nsbm.ac.lk/international/transfer-options/" class="kl-iconbox__link" title="Transfer Options" target="_self" itemprop="url"><span class="kl-iconbox__icon kl-iconbox__icon--" data-zniconfam="nsbm-icon-usp-icon" data-zn_icon=""></span></a> </div><!-- /.kl-iconbox__icon-wrapper -->
<div class="kl-iconbox__content-wrapper">
<div class="kl-iconbox__el-wrapper kl-iconbox__title-wrapper">
<h3 class="kl-iconbox__title element-scheme__hdg1" itemprop="headline"><a href="http://www.nsbm.ac.lk/international/transfer-options/" class="kl-iconbox__link" title="Transfer Options" target="_self" itemprop="url">Transfer Programmes</a></h3>
</div>
<div class=" kl-iconbox__el-wrapper kl-iconbox__desc-wrapper">
<p class="kl-iconbox__desc">Some of our programmes offer the exciting opportunity of transferring to the international university that you are enrolled in. Depending on your degree specialization and chosen university of affiliation, transfers can occur at the successful completion of first or second year. </p> </div>
</div><!-- /.kl-iconbox__content-wrapper -->
</div>
</div>
</div>
</div>
</div>
<div class="eluidc901b085 col-md-3 col-sm-6 znColumnElement" id="eluidc901b085">
<div class="znColumnElement-innerWrapper-eluidc901b085 znColumnElement-innerWrapper znColumnElement-innerWrapper--valign-top znColumnElement-innerWrapper--halign-left ">
<div class="znColumnElement-innerContent"> <div class="kl-iconbox eluid5753b3a0 nsbm-main-item kl-iconbox--type-icon kl-iconbox--align-center text-center kl-iconbox--theme-light element-scheme--light" id="eluid5753b3a0">
<div class="kl-iconbox__inner clearfix">
<div class="kl-iconbox__icon-wrapper ">
<a href="http://www.nsbm.ac.lk/#calendar" class="kl-iconbox__link" title="Home" target="_self" itemprop="url"><span class="kl-iconbox__icon kl-iconbox__icon--" data-zniconfam="nsbmicons" data-zn_icon=""></span></a> </div><!-- /.kl-iconbox__icon-wrapper -->
<div class="kl-iconbox__content-wrapper">
<div class="kl-iconbox__el-wrapper kl-iconbox__title-wrapper">
<h3 class="kl-iconbox__title element-scheme__hdg1" itemprop="headline"><a href="http://www.nsbm.ac.lk/#calendar" class="kl-iconbox__link" title="Home" target="_self" itemprop="url">Convocation</a></h3>
</div>
<div class=" kl-iconbox__el-wrapper kl-iconbox__desc-wrapper">
<p class="kl-iconbox__desc">The most significant moment of our students’ academic journey with us, is the NSBM convocation week, every December. Every year, NSBM witnesses hundreds of its students soar out into the real world – adorned with the best in education and practice! </p> </div>
</div><!-- /.kl-iconbox__content-wrapper -->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="zn_section eluid784c03c4 section-sidemargins section--no " id="eluid784c03c4">
<div class="zn_section_size container zn-section-height--auto zn-section-content_algn--top ">
<div class="row ">
<div class="eluidc362d55b col-md-12 col-sm-12 znColumnElement" id="eluidc362d55b">
<div class="znColumnElement-innerWrapper-eluidc362d55b znColumnElement-innerWrapper znColumnElement-innerWrapper--valign-top znColumnElement-innerWrapper--halign-left ">
<div class="znColumnElement-innerContent"> <h3 class="eluid9519d178 dn-heading" id="eluid9519d178" itemprop="headline">Affiliated universities</h3>
<div class="zn_custom_container eluid86430d2b smart-cnt--default clearfix">
<div class="row zn_col_container-smart_container ">
<div class="eluid5ac9520a col-md-3 col-sm-3 znColumnElement" id="eluid5ac9520a">
<div class="znColumnElement-innerWrapper-eluid5ac9520a znColumnElement-innerWrapper znColumnElement-innerWrapper--valign-top znColumnElement-innerWrapper--halign-left ">
<div class="znColumnElement-innerContent"> <div class="image-boxes imgbox-simple eluid5c71a81d "><a href="http://www.nsbm.ac.lk/story-of-nsbm/affiliated-universities/" class="image-boxes-link imgboxes-wrapper u-mb-0 znBoxShadow--hov-2 znBoxShadow--hover" title="University of Dublin" target="_self" itemprop="url"><div class="image-boxes-img-wrapper img-align-center"><img class="image-boxes-img img-responsive " src="./Home _ NSBM Green University_files/au-01-1.png" alt="" title="au-01"></div></a></div> </div>
</div>
</div>
<div class="eluida5f051f8 col-md-3 col-sm-3 znColumnElement" id="eluida5f051f8">
<div class="znColumnElement-innerWrapper-eluida5f051f8 znColumnElement-innerWrapper znColumnElement-innerWrapper--valign-top znColumnElement-innerWrapper--halign-left ">
<div class="znColumnElement-innerContent"> <div class="image-boxes imgbox-simple eluida954dfa7 "><a href="http://www.nsbm.ac.lk/story-of-nsbm/affiliated-universities/" class="image-boxes-link imgboxes-wrapper u-mb-0 znBoxShadow--hov-2 znBoxShadow--hover" title="Plymouth University" target="_self" itemprop="url"><div class="image-boxes-img-wrapper img-align-center"><img class="image-boxes-img img-responsive " src="./Home _ NSBM Green University_files/au-02-1.png" alt="" title="au-02"></div></a></div> </div>
</div>
</div>
<div class="eluid6e0b1721 col-md-3 col-sm-3 znColumnElement" id="eluid6e0b1721">
<div class="znColumnElement-innerWrapper-eluid6e0b1721 znColumnElement-innerWrapper znColumnElement-innerWrapper--valign-top znColumnElement-innerWrapper--halign-left ">
<div class="znColumnElement-innerContent"> <div class="image-boxes imgbox-simple eluid769a65ca "><a href="http://www.nsbm.ac.lk/story-of-nsbm/affiliated-universities/" class="image-boxes-link imgboxes-wrapper u-mb-0 znBoxShadow--hov-2 znBoxShadow--hover" title="Victoria University" target="_self" itemprop="url"><div class="image-boxes-img-wrapper img-align-center"><img class="image-boxes-img img-responsive " src="./Home _ NSBM Green University_files/au-03-1.png" alt="" title="au-03"></div></a></div> </div>
</div>
</div>
<div class="eluid33af6366 col-md-3 col-sm-3 znColumnElement" id="eluid33af6366">
<div class="znColumnElement-innerWrapper-eluid33af6366 znColumnElement-innerWrapper znColumnElement-innerWrapper--valign-top znColumnElement-innerWrapper--halign-left ">
<div class="znColumnElement-innerContent"> <div class="image-boxes imgbox-simple eluid94901818 "><a href="http://www.nsbm.ac.lk/story-of-nsbm/affiliated-universities/" class="image-boxes-link imgboxes-wrapper u-mb-0 znBoxShadow--hov-2 znBoxShadow--hover" title="Western Australia" target="_self" itemprop="url"><div class="image-boxes-img-wrapper img-align-center"><img class="image-boxes-img img-responsive " src="./Home _ NSBM Green University_files/au-04-1.png" alt="" title="au-04"></div></a></div> </div>
</div>
</div>
</div>
</div><!-- /.zn_custom_container -->
</div>
</div>
</div>
</div>
</div>
</section>
<section class="zn_section eluid6ad5635a nsbm-2020-home-wrapper section-sidemargins section--no " id="eluid6ad5635a">
<div class="zn_section_size full_width zn-section-height--auto zn-section-content_algn--top ">
<div class="row ">
<div class="eluid2b06ec0b col-md-6 col-sm-6 znColumnElement" id="eluid2b06ec0b">
<div class="znColumnElement-innerWrapper-eluid2b06ec0b znColumnElement-innerWrapper znColumnElement-innerWrapper--valign-top znColumnElement-innerWrapper--halign-left ">
<div class="znColumnElement-innerContent"> <div class="image-boxes imgbox-simple eluid28a87354 nsbm-2020-image"><div class="image-boxes-holder imgboxes-wrapper u-mb-0 "><div class="image-boxes-img-wrapper img-align-center"><img class="image-boxes-img img-responsive " src="./Home _ NSBM Green University_files/nsbm-2020.jpg" alt="" title="nsbm-2020"></div></div></div> </div>
</div>
</div>
<div class="eluid2e17a61e nsbm-beyond-2020 col-md-6 col-sm-6 znColumnElement" id="eluid2e17a61e">
<div class="znColumnElement-innerWrapper-eluid2e17a61e znColumnElement-innerWrapper znColumnElement-innerWrapper--valign-top znColumnElement-innerWrapper--halign-left ">
<div class="znColumnElement-innerContent"> <h2 class="eluid4fc8bf5b dn-heading" id="eluid4fc8bf5b" itemprop="headline">NSBM BEYOND <span class="year">2020</span></h2><div class="zn_text_box eluidca6bb811 zn_text_box-light element-scheme--light"><p><span style="font-family: Avenir-Medium; font-size: 17px; color: #333333;">NSBM prides itself on being a forward-thinking entity, with the constant drive to push boundaries. Thus, it moves onto Phase II, acquiring an additional 15 acres of land, in Pitipana, Homagama in order to deliver greater opportunities to its potential multitudes of students in the fields of social, physical and health sciences. All the new programmes and infrastructure will cater to global trends and competencies. </span></p>
</div><h3 class="eluid0fa5b7d1 slogen-nsbm-heading dn-heading" id="eluid0fa5b7d1" itemprop="headline"><i><span>"Strengthening<span></span></span></i> GROWTH <br>EXPANDING <i><span>Presence<span>"</span></span></i></h3> </div>
</div>
</div>
</div>
</div>
</section>
<section class="zn_section eluidb6d88013 home-youth-diversity section-sidemargins section--no " id="eluidb6d88013">