kcc-gem-theme 1.65.59 → 1.66.63

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. checksums.yaml +4 -4
  2. data/_data/cache_bust_css.yml +1 -1
  3. data/_data/navigation.yml +64 -50
  4. data/_data/theme_hash.yml +1 -1
  5. data/_includes/accordion.html +25 -11
  6. data/_includes/accordion_path-sorting.html +29 -0
  7. data/_includes/body.html +10 -8
  8. data/_includes/card-section.html +24 -25
  9. data/_includes/contacts.html +90 -61
  10. data/_includes/document-head.html +11 -3
  11. data/_includes/emergency-alerts.html +21 -21
  12. data/_includes/foot.html +1 -1
  13. data/_includes/footer.html +297 -163
  14. data/_includes/header-global.html +49 -25
  15. data/_includes/hero-slider.html +3 -3
  16. data/_includes/nav-global-bottom.html +45 -30
  17. data/_includes/nav-global-top.html +19 -14
  18. data/_includes/scripts/custom.html +2 -2
  19. data/_includes/scripts/emergency-alerts.html +2 -2
  20. data/_includes/scripts/google-api.html +2 -2
  21. data/_includes/scripts/google-noscript.html +5 -2
  22. data/_includes/scripts/google-tag.html +23 -24
  23. data/_includes/scripts/kcc-alerts.html +2 -2
  24. data/_includes/scripts/kcc-mega-nav.html +2 -2
  25. data/_includes/scripts/kcc-theme.html +2 -2
  26. data/_includes/scripts/translate.html +11 -11
  27. data/_includes/scripts/vendor-cdn.html +1 -1
  28. data/_includes/styles/fonts.html +2 -9
  29. data/_includes/styles/main.html +2 -2
  30. data/_includes/styles/vendor.html +1 -1
  31. data/_includes/svg/kcc.html +69 -59
  32. data/_includes/translate.html +3 -3
  33. data/_layouts/default-core.html +29 -30
  34. data/assets/css/kcc-theme.css +1 -1
  35. data/assets/js/theme/dist/kcc-theme.bundle.js +1 -1
  36. data/assets/js/theme/src/addClassToOpenNavbar.js +20 -0
  37. data/assets/js/theme/src/all.js +2 -0
  38. data/assets/js/theme/src/test.js +36 -0
  39. data/assets/scss/1-base/_header-global.scss +6 -0
  40. data/assets/scss/1-base/_svg.scss +8 -0
  41. data/assets/scss/kcc-theme.scss +1 -0
  42. metadata +5 -3
  43. data/assets/js/theme/src/babelTest.js +0 -18
@@ -7,7 +7,15 @@
7
7
  <title>{{page.title}} - {{site.title}}</title>
8
8
  <meta name="description" content="{{page.description}}">
9
9
  <meta name="viewport" content="width=device-width, initial-scale=1">
10
- {% if site.humans_file == true %}<!-- The human's -->
11
- <link rel="author" type="text/plain" href="/humans.txt" />{% endif %}
10
+ <!-- ==============================
11
+ KCC GEM THEME
12
+ A Jekyll gem-based theme for Kankakee Community College's websites
13
+ Theme & theme's build-process coded and developed by Wesley Zajicek for KCC 2019-2020
14
+ Author: Wesley Zajicek | https://github.com/wdzajicek
15
+ -->
16
+ {% if site.humans_file == true %}
17
+ <!-- The human's, the human's!! -->
18
+ <link rel="author" type="text/plain" href="/humans.txt" />
19
+ {%- endif -%}
12
20
  <!-- Standard Favicon -->
13
- <link rel="icon" type="image/x-icon" href="{{page.baseurl}}favicon.ico" />
21
+ <link rel="icon" type="image/x-icon" href="{{page.baseurl}}favicon.ico"/>
@@ -1,29 +1,29 @@
1
- <div id="emergencyAlerts" class="position__offset-alert{% if site.core_site == true %} position__offset-alert-core{% endif %}{% if site.core_root == true %} position__offset-alert-core--root{% endif %}">
2
- <!-- Alerts get built here via JS if they are set to be active -->
3
- {% comment %}
4
- <div class="container position__offset-alert">
5
- <div class="row">
6
- <div class="col">
7
- <div class="alert alert-warning">
8
- <p class="typography__alert mb-0"><strong>Alert</strong>:&nbsp;All KCC facilities will be closed March 18-30. Credit classes resume online March 23. <a href="https://coronavirus.kcc.edu/" target="_blank" rel="noopener noreferrer">coronavirus.kcc.edu</a> has&nbsp;details.</p>
1
+ <div id="emergencyAlerts" class="position__offset-alert{% if site.core_site == true %} position__offset-alert-core{% endif %}{% if site.core_root == true %} position__offset-alert-core--root{% endif %}">
2
+ <!-- Alerts get built here via JS if they are set to be active -->
3
+ {%- comment -%}
4
+ <div class="container position__offset-alert">
5
+ <div class="row">
6
+ <div class="col">
7
+ <div class="alert alert-warning">
8
+ <p class="typography__alert mb-0"><strong>Alert</strong>:&nbsp;All KCC facilities will be closed March 18-30. Credit classes resume online March 23. <a href="https://coronavirus.kcc.edu/" target="_blank" rel="noopener noreferrer">coronavirus.kcc.edu</a> has&nbsp;details.</p>
9
+ </div>
10
+ </div>
9
11
  </div>
10
12
  </div>
13
+ {% endcomment %}
11
14
  </div>
12
- </div>
13
- {% endcomment %}
14
- </div>
15
- {% comment %}
15
+ {%- comment -%}
16
16
 
17
- <!-- TODO:
17
+ <!-- TODO:
18
18
 
19
- AFTER CORE IS LAUNCHED
19
+ AFTER CORE IS LAUNCHED
20
20
 
21
- REMOVE:
22
- ```
23
- {% if site.core_site == true %} position__offset-alert-core{% endif %}{% if site.core_root == true %} position__offset-alert-core--root{% endif %}
24
- ```
25
- (ALSO REMOVE FROM CONFIG)
21
+ REMOVE:
22
+ ```
23
+ {% if site.core_site == true %} position__offset-alert-core{% endif %}{% if site.core_root == true %} position__offset-alert-core--root{% endif %}
24
+ ```
25
+ (ALSO REMOVE FROM CONFIG)
26
26
 
27
- ENDTODO -->
27
+ ENDTODO -->
28
28
 
29
- {% endcomment %}
29
+ {%- endcomment -%}
@@ -1,3 +1,3 @@
1
1
  <!-- Close body -->
2
2
  </body>
3
- </html>
3
+ </html>
@@ -1,168 +1,302 @@
1
- <footer class="footer footer__margin">
2
- <div class="container">
3
- <div class="row">
4
- <div class="col-lg-6 footer__mobile--margin-bottom">
1
+ <footer class="footer footer__margin">
2
+ <div class="container">
5
3
  <div class="row">
6
- <div class="col-lg-12 text-center">
7
- <a href="{{ site.public-url }}" class="footer-link"><h5 class="typography__footer-heading">{{ site.public-url | replace: "https://", "" | replace: "http://", "" }}</h5></a>
8
- </div>
9
- </div>
10
- <div class="row">
11
- <div class="col-lg-12">
12
- <div class="text-center">
13
- <span>
14
- <a href="http://www.facebook.com/KankakeeCommunityCollege/" class="footer-social-links" target="_blank" rel="noopener">
15
- <svg version="1.1" id="facebook" class="footer-icons" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="512px" height="512px" viewBox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve" aria-labelledby="facebook-title">
16
- <title id="facebook-title" lang="en">Facebook</title>
17
- <path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M320.526,268.436l7.223-51.045h-50.08v-34.799c0-10.788,8.827-19.615,19.615-19.615h32.393v-47.002l-40.702-1.634c-38.005-1.524-63.793,27.143-63.793,60.903v42.146h-42.858v51.045h42.858v129.282h52.487V268.436H320.526z"/>
18
- </svg>
19
- </a>
20
- </span>
21
- <span>
22
- <a href="http://twitter.com/KCCedu" class="footer-social-links" target="_blank" rel="noopener">
23
- <svg version="1.1" id="twitter" class="footer-icons" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="512px" height="512px" viewBox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve" aria-labelledby="twitter-title">
24
- <title id="twitter-title" lang="en">Twitter</title>
25
- <path fill="#FFFFFF" d="M393.859,170.531c-10.142,4.498-21.039,7.539-32.479,8.905c11.677-6.998,20.642-18.081,24.865-31.286c-10.925,6.48-23.028,11.187-35.91,13.723c-10.315-10.991-25.015-17.858-41.278-17.858c-31.234,0-56.554,25.32-56.554,56.55c0,4.433,0.501,8.749,1.465,12.888c-47-2.358-88.67-24.873-116.562-59.087c-4.868,8.354-7.656,18.067-7.656,28.432c0,19.618,9.984,36.929,25.158,47.069c-9.271-0.293-17.99-2.837-25.615-7.073c-0.004,0.236-0.005,0.473-0.005,0.712c0,27.399,19.493,50.256,45.364,55.451c-4.746,1.292-9.742,1.982-14.899,1.982c-3.645,0-7.187-0.354-10.64-1.014c7.196,22.467,28.081,38.816,52.827,39.274c-19.354,15.166-43.738,24.208-70.233,24.208c-4.564,0-9.066-0.269-13.489-0.79c25.026,16.045,54.751,25.406,86.688,25.406c104.021,0,160.9-86.171,160.9-160.901c0-2.452-0.054-4.891-0.163-7.315C376.689,191.833,386.278,181.873,393.859,170.531z"/>
26
- </svg>
27
- </a>
28
- </span>
29
- <span>
30
- <a href="http://www.instagram.com/kccedu/" class="footer-social-links" target="_blank" rel="noopener">
31
- <svg version="1.1" id="instagram" class="footer-icons" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="512px" height="512px" viewBox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve" aria-labelledby="instagram-title">
32
- <name id="instagram-title" lang="en">Instagram</name>
33
- <g>
34
- <path fill="#FFFFFF" d="M317.858,407.985H194.142c-47.339,0-86.071-38.73-86.071-86.07V190.086c0-47.34,38.732-86.071,86.071-86.071h123.717c47.34,0,86.072,38.731,86.072,86.071v131.829C403.931,369.255,365.198,407.985,317.858,407.985 M317.858,385.243c16.82,0,32.697-6.614,44.705-18.623c12.01-12.008,18.622-27.885,18.622-44.705V190.086c0-16.82-6.612-32.697-18.622-44.706c-12.008-12.009-27.885-18.622-44.705-18.622H194.142c-16.82,0-32.697,6.613-44.706,18.622s-18.621,27.886-18.621,44.706v131.829c0,16.82,6.612,32.697,18.621,44.705c12.009,12.009,27.886,18.623,44.706,18.623H317.858z"/>
35
- <path fill="#FFFFFF" d="M337.929,254.827c0,44.994-36.477,81.47-81.472,81.47c-44.994,0-81.471-36.476-81.471-81.47c0-44.995,36.477-81.471,81.471-81.471C301.452,173.356,337.929,209.832,337.929,254.827 M256.065,201.544c-29.464,0-53.348,23.885-53.348,53.347c0,29.464,23.884,53.35,53.348,53.35s53.347-23.886,53.347-53.35C309.412,225.429,285.529,201.544,256.065,201.544"/>
36
- <path fill="#FFFFFF" d="M358.526,172.089c0,10.654-8.637,19.292-19.29,19.292c-10.655,0-19.292-8.638-19.292-19.292c0-10.653,8.637-19.29,19.292-19.29C349.89,152.799,358.526,161.436,358.526,172.089"/>
37
- </g>
38
- </svg>
39
- </a>
40
- </span>
41
- <span>
42
- <a href="http://www.youtube.com/user/KankakeeCommCollege" class="footer-social-links" target="_blank" rel="noopener">
43
- <svg version="1.1" id="youtube" class="footer-icons" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="512px" height="512px" viewBox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve" aria-labelledby="youtube-title">
44
- <title id="youtube-title" lang="en">YouTube</title>
45
- <path fill="#FFFFFF" d="M339.306,134.92H172.691c-91.187,0-91.187,25.977-91.187,89.865v62.432c0,60.757,12.915,89.864,91.187,89.864h166.614c70.7,0,91.19-17.012,91.19-89.864v-62.432C430.496,157.537,427.053,134.92,339.306,134.92z M220.347,303.457v-98.009l94.064,48.846L220.347,303.457z"/>
46
- </svg>
47
- </a>
48
- </span>
49
- <span>
50
- <a href="http://www.pinterest.com/kccedu/" class="footer-social-links" target="_blank" rel="noopener">
51
- <svg version="1.1" id="pinterest" class="footer-icons" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="512px" height="512px" viewBox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve" aria-labelledby="pinterest-title">
52
- <title id="pinterest-title" lang="en">Pinterest</title>
53
- <path fill="#FFFFFF" d="M256.005,105.086c-83.343,0-150.915,67.566-150.915,150.912c0,61.795,37.159,114.882,90.332,138.223c-0.425-10.538-0.076-23.188,2.627-34.653c2.901-12.252,19.418-82.231,19.418-82.231s-4.821-9.636-4.821-23.878c0-22.363,12.962-39.066,29.104-39.066c13.727,0,20.357,10.311,20.357,22.656c0,13.8-8.8,34.439-13.326,53.557c-3.781,16.008,8.026,29.065,23.819,29.065c28.593,0,47.85-36.724,47.85-80.234c0-33.075-22.276-57.832-62.794-57.832c-45.778,0-74.297,34.139-74.297,72.271c0,13.147,3.877,22.42,9.949,29.599c2.791,3.298,3.18,4.625,2.168,8.411c-0.723,2.777-2.386,9.462-3.074,12.111c-1.005,3.821-4.102,5.188-7.556,3.776c-21.085-8.607-30.905-31.698-30.905-57.654c0-42.869,36.155-94.272,107.856-94.272c57.617,0,95.537,41.693,95.537,86.449c0,59.2-32.912,103.428-81.427,103.428c-16.293,0-31.618-8.808-36.868-18.811c0,0-8.761,34.771-10.617,41.484c-3.198,11.636-9.462,23.264-15.188,32.328c13.573,4.007,27.91,6.188,42.771,6.188c83.336,0,150.904-67.565,150.904-150.915C406.909,172.652,339.341,105.086,256.005,105.086z"/>
54
- </svg>
55
- </a>
56
- </span>
57
- <span>
58
- <a href="http://www.linkedin.com/company/kankakee-community-college" class="footer-social-links" target="_blank" rel="noopener">
59
- <svg version="1.1" id="linkedin" class="footer-icons" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="512px" height="512px" viewBox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve" aria-labelledby="linkedin-title">
60
- <title id="linkedin-title">LinkedIn</title>
61
- <g>
62
- <path fill="#FFFFFF" d="M142.394,216.601h48.7v156.684h-48.7V216.601z M166.755,138.716c15.567,0,28.219,12.651,28.219,28.226c0,15.588-12.651,28.24-28.219,28.24c-15.608,0-28.242-12.652-28.242-28.24C138.513,151.368,151.146,138.716,166.755,138.716"/>
63
- <path fill="#FFFFFF" d="M221.638,216.601h46.707v21.408h0.65c6.502-12.316,22.385-25.305,46.076-25.305c49.314,0,58.416,32.454,58.416,74.639v85.941h-48.664v-76.199c0-18.168-0.334-41.54-25.302-41.54c-25.339,0-29.23,19.792-29.23,40.227v77.512h-48.653V216.601z"/>
64
- </g>
65
- </svg>
66
- </a>
67
- </span>
4
+ <div class="col-lg-6 footer__mobile--margin-bottom">
5
+ <div class="row">
6
+ <div class="col-lg-12 text-center">
7
+ <a href="{{ site.public-url }}" class="footer-link"><h5 class="typography__footer-heading">{{ site.public-url | replace: "https://", "" | replace: "http://", "" }}</h5></a>
8
+ </div>
68
9
  </div>
10
+ <div class="row">
11
+ <div class="col-lg-12">
12
+ <div class="text-center">
13
+ <span>
14
+ <a href="http://www.facebook.com/KankakeeCommunityCollege/" class="footer-social-links" target="_blank" rel="noopener">
15
+ <svg version="1.1"
16
+ id="facebook"
17
+ class="footer-icons"
18
+ role="icon"
19
+ xmlns="http://www.w3.org/2000/svg"
20
+ xmlns:xlink="http://www.w3.org/1999/xlink"
21
+ x="0px"
22
+ y="0px"
23
+ width="512px"
24
+ height="512px"
25
+ viewBox="0 0 512 512"
26
+ enable-background="new 0 0 512 512"
27
+ xml:space="preserve"
28
+ aria-labelledby="facebook-title">
29
+ <title id="facebook-title" lang="en">Facebook</title>
30
+ <path fill-rule="evenodd"
31
+ clip-rule="evenodd"
32
+ class="svg__fill--white"
33
+ d="M320.526,268.436l7.223-51.045h-50.08v-34.799
34
+ c0-10.788,8.827-19.615,19.615-19.615h32.393v-47.002l-40.702-1.634
35
+ c-38.005-1.524-63.793,27.143-63.793,60.903v42.146h-42.858
36
+ v51.045h42.858v129.282h52.487V268.436H320.526z"/>
37
+ </svg>
38
+ </a>
39
+ </span>
40
+ <span>
41
+ <a href="http://twitter.com/KCCedu" class="footer-social-links" target="_blank" rel="noopener">
42
+ <svg version="1.1"
43
+ id="twitter"
44
+ role="icon"
45
+ class="footer-icons"
46
+ xmlns="http://www.w3.org/2000/svg"
47
+ xmlns:xlink="http://www.w3.org/1999/xlink"
48
+ x="0px"
49
+ y="0px"
50
+ width="512px"
51
+ height="512px"
52
+ viewBox="0 0 512 512"
53
+ enable-background="new 0 0 512 512"
54
+ xml:space="preserve"
55
+ aria-labelledby="twitter-title">
56
+ <title id="twitter-title" lang="en">Twitter</title>
57
+ <path class="svg__fill--white" d="M393.859,170.531c-10.142,4.498-21.039,7.539-32.479,8.905
58
+ c11.677-6.998,20.642-18.081,24.865-31.286c-10.925,6.48-23.028,11.187-35.91,13.723
59
+ c-10.315-10.991-25.015-17.858-41.278-17.858c-31.234,0-56.554,25.32-56.554,56.55
60
+ c0,4.433,0.501,8.749,1.465,12.888c-47-2.358-88.67-24.873-116.562-59.087
61
+ c-4.868,8.354-7.656,18.067-7.656,28.432c0,19.618,9.984,36.929,25.158,47.069
62
+ c-9.271-0.293-17.99-2.837-25.615-7.073c-0.004,0.236-0.005,0.473-0.005,0.712
63
+ c0,27.399,19.493,50.256,45.364,55.451c-4.746,1.292-9.742,1.982-14.899,1.982
64
+ c-3.645,0-7.187-0.354-10.64-1.014c7.196,22.467,28.081,38.816,52.827,39.274
65
+ c-19.354,15.166-43.738,24.208-70.233,24.208c-4.564,0-9.066-0.269-13.489-0.79
66
+ c25.026,16.045,54.751,25.406,86.688,25.406c104.021,0,160.9-86.171,160.9-160.901
67
+ c0-2.452-0.054-4.891-0.163-7.315C376.689,191.833,386.278,181.873,393.859,170.531z"/>
68
+ </svg>
69
+ </a>
70
+ </span>
71
+ <span>
72
+ <a href="http://www.instagram.com/kccedu/" class="footer-social-links" target="_blank" rel="noopener">
73
+ <svg version="1.1"
74
+ id="instagram"
75
+ role="icon"
76
+ class="footer-icons"
77
+ xmlns="http://www.w3.org/2000/svg"
78
+ xmlns:xlink="http://www.w3.org/1999/xlink"
79
+ x="0px"
80
+ y="0px"
81
+ width="512px"
82
+ height="512px"
83
+ viewBox="0 0 512 512"
84
+ enable-background="new 0 0 512 512"
85
+ xml:space="preserve"
86
+ aria-labelledby="instagram-title">
87
+ <title id="instagram-title" lang="en">Instagram</title>
88
+ <g>
89
+ <path class="svg__fill--white" d="M317.858,407.985H194.142c-47.339,0-86.071-38.73-86.071-86.07V190.086
90
+ c0-47.34,38.732-86.071,86.071-86.071h123.717c47.34,0,86.072,38.731,86.072,86.071
91
+ v131.829C403.931,369.255,365.198,407.985,317.858,407.985 M317.858,385.243
92
+ c16.82,0,32.697-6.614,44.705-18.623c12.01-12.008,18.622-27.885,18.622-44.705V190.086
93
+ c0-16.82-6.612-32.697-18.622-44.706c-12.008-12.009-27.885-18.622-44.705-18.622H194.142
94
+ c-16.82,0-32.697,6.613-44.706,18.622s-18.621,27.886-18.621,44.706v131.829
95
+ c0,16.82,6.612,32.697,18.621,44.705c12.009,12.009,27.886,18.623,44.706,18.623H317.858z"/>
96
+ <path class="svg__fill--white" d="M337.929,254.827c0,44.994-36.477,81.47-81.472,81.47
97
+ c-44.994,0-81.471-36.476-81.471-81.47c0-44.995,36.477-81.471,81.471-81.471
98
+ C301.452,173.356,337.929,209.832,337.929,254.827 M256.065,201.544
99
+ c-29.464,0-53.348,23.885-53.348,53.347c0,29.464,23.884,53.35,53.348,53.35
100
+ s53.347-23.886,53.347-53.35C309.412,225.429,285.529,201.544,256.065,201.544"/>
101
+ <path class="svg__fill--white" d="M358.526,172.089c0,10.654-8.637,19.292-19.29,19.292
102
+ c-10.655,0-19.292-8.638-19.292-19.292c0-10.653,8.637-19.29,19.292-19.29
103
+ C349.89,152.799,358.526,161.436,358.526,172.089"/>
104
+ </g>
105
+ </svg>
106
+ </a>
107
+ </span>
108
+ <span>
109
+ <a href="http://www.youtube.com/user/KankakeeCommCollege" class="footer-social-links" target="_blank" rel="noopener">
110
+ <svg version="1.1"
111
+ id="youtube"
112
+ role="icon"
113
+ class="footer-icons" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
114
+ y="0px"
115
+ width="512px"
116
+ height="512px"
117
+ viewBox="0 0 512 512"
118
+ enable-background="new 0 0 512 512"
119
+ xml:space="preserve"
120
+ aria-labelledby="youtube-title">
121
+ <title id="youtube-title" lang="en">YouTube</title>
122
+ <path class="svg__fill--white" d="M339.306,134.92H172.691c-91.187,0-91.187,25.977-91.187,89.865v62.432
123
+ c0,60.757,12.915,89.864,91.187,89.864h166.614c70.7,0,91.19-17.012,91.19-89.864v-62.432
124
+ C430.496,157.537,427.053,134.92,339.306,134.92z M220.347,303.457v-98.009l94.064,48.846
125
+ L220.347,303.457z"/>
126
+ </svg>
127
+ </a>
128
+ </span>
129
+ <span>
130
+ <a href="http://www.pinterest.com/kccedu/" class="footer-social-links" target="_blank" rel="noopener">
131
+ <svg version="1.1"
132
+ id="pinterest"
133
+ role="icon"
134
+ class="footer-icons"
135
+ xmlns="http://www.w3.org/2000/svg"
136
+ xmlns:xlink="http://www.w3.org/1999/xlink"
137
+ x="0px"
138
+ y="0px"
139
+ width="512px"
140
+ height="512px"
141
+ viewBox="0 0 512 512"
142
+ enable-background="new 0 0 512 512"
143
+ xml:space="preserve"
144
+ aria-labelledby="pinterest-title">
145
+ <title id="pinterest-title" lang="en">Pinterest</title>
146
+ <path class="svg__fill--white" d="M256.005,105.086c-83.343,0-150.915,67.566-150.915,150.912
147
+ c0,61.795,37.159,114.882,90.332,138.223c-0.425-10.538-0.076-23.188,2.627-34.653
148
+ c2.901-12.252,19.418-82.231,19.418-82.231s-4.821-9.636-4.821-23.878
149
+ c0-22.363,12.962-39.066,29.104-39.066c13.727,0,20.357,10.311,20.357,22.656
150
+ c0,13.8-8.8,34.439-13.326,53.557c-3.781,16.008,8.026,29.065,23.819,29.065
151
+ c28.593,0,47.85-36.724,47.85-80.234c0-33.075-22.276-57.832-62.794-57.832
152
+ c-45.778,0-74.297,34.139-74.297,72.271c0,13.147,3.877,22.42,9.949,29.599
153
+ c2.791,3.298,3.18,4.625,2.168,8.411c-0.723,2.777-2.386,9.462-3.074,12.111
154
+ c-1.005,3.821-4.102,5.188-7.556,3.776c-21.085-8.607-30.905-31.698-30.905-57.654
155
+ c0-42.869,36.155-94.272,107.856-94.272c57.617,0,95.537,41.693,95.537,86.449
156
+ c0,59.2-32.912,103.428-81.427,103.428c-16.293,0-31.618-8.808-36.868-18.811
157
+ c0,0-8.761,34.771-10.617,41.484c-3.198,11.636-9.462,23.264-15.188,32.328
158
+ c13.573,4.007,27.91,6.188,42.771,6.188c83.336,0,150.904-67.565,150.904-150.915
159
+ C406.909,172.652,339.341,105.086,256.005,105.086z"/>
160
+ </svg>
161
+ </a>
162
+ </span>
163
+ <span>
164
+ <a href="http://www.linkedin.com/company/kankakee-community-college" class="footer-social-links" target="_blank" rel="noopener">
165
+ <svg version="1.1"
166
+ id="linkedin"
167
+ role="icon"
168
+ class="footer-icons"
169
+ xmlns="http://www.w3.org/2000/svg"
170
+ xmlns:xlink="http://www.w3.org/1999/xlink"
171
+ x="0px"
172
+ y="0px"
173
+ width="512px"
174
+ height="512px"
175
+ viewBox="0 0 512 512"
176
+ enable-background="new 0 0 512 512"
177
+ xml:space="preserve"
178
+ aria-labelledby="linkedin-title">
179
+ <title lang="en" id="linkedin-title">LinkedIn</title>
180
+ <g>
181
+ <path class="svg__fill--white" d="M142.394,216.601h48.7v156.684h-48.7V216.601z M166.755,138.716
182
+ c15.567,0,28.219,12.651,28.219,28.226c0,15.588-12.651,28.24-28.219,28.24
183
+ c-15.608,0-28.242-12.652-28.242-28.24C138.513,151.368,151.146,138.716,166.755,138.716"/>
184
+ <path class="svg__fill--white" d="M221.638,216.601h46.707v21.408h0.65
185
+ c6.502-12.316,22.385-25.305,46.076-25.305c49.314,0,58.416,32.454,58.416,74.639v85.941
186
+ h-48.664v-76.199c0-18.168-0.334-41.54-25.302-41.54c-25.339,0-29.23,19.792-29.23,40.227
187
+ v77.512h-48.653V216.601z"/>
188
+ </g>
189
+ </svg>
190
+ </a>
191
+ </span>
192
+ </div>
193
+ </div>
194
+ </div>
195
+ </div>
196
+ <div class="col-lg-6">
197
+ <a href="http://www.kcc.edu" target="_blank" rel="noopener">
198
+ <svg version="1.1"
199
+ id="KCC-text-logo"
200
+ role="image"
201
+ class="footer__svg--logo img__responsive--svg mx-auto"
202
+ xmlns="http://www.w3.org/2000/svg"
203
+ xmlns:xlink="http://www.w3.org/1999/xlink"
204
+ x="0px" y="0px"
205
+ width="416.394px"
206
+ height="28.682px"
207
+ viewBox="0 0 416.394 28.682"
208
+ enable-background="new 0 0 416.394 28.682"
209
+ xml:space="preserve"
210
+ aria-labelledby="kcc-text-logo-title">
211
+ <title id="kcc-text-logo-title" lang="en">Kankakee Community College</title>
212
+ <g>
213
+ <polygon class="svg__fill--blue" points="6.913,9.049 8.856,9.049 17.992,0.174 23.125,0.174 12.053,10.789 19.401,21.924 14.123,21.924
214
+ 8.098,12.615 6.155,12.615 4.176,21.924 0,21.924 4.623,0.174 8.799,0.174 "></polygon>
215
+ <path class="svg__fill--blue" d="M30.973,20.01h-0.087c-1.157,2.031-3.402,2.088-5.171,2.088c-3.451,0-5.53-0.725-4.655-4.842
216
+ c0.777-3.654,2.907-4.67,6.676-4.67c1.856,0,3.677,0.029,4.184,1.74h0.116l0.419-1.973c0.524-2.465,0.506-3.334-2.54-3.334
217
+ c-1.595,0-2.901,0.145-3.321,2.117h-3.654c0.943-4.438,4.025-4.611,7.505-4.611c4.872,0,6.742,0.754,5.657,5.857l-2.028,9.541
218
+ h-3.654L30.973,20.01z M24.714,17.256c-0.457,2.145,0.371,2.348,2.835,2.348c1.943,0,3.401-0.174,3.863-2.348
219
+ c0.45-2.117-1.104-2.176-2.902-2.176C26.655,15.08,25.176,15.08,24.714,17.256z"></path>
220
+ <path class="svg__fill--blue" d="M44.589,6.699L44.103,8.99h0.116c1.286-2.232,3.163-2.465,5.309-2.465c4.002,0,4.869,1.652,4.08,5.365
221
+ l-2.133,10.033H47.82l2.053-9.656c0.468-2.205,0.136-2.959-2.213-2.959c-3.19,0-3.945,1.508-4.525,4.234l-1.781,8.381h-3.654
222
+ l3.236-15.225H44.589z"></path>
223
+ <polygon class="svg__fill--blue" points="60.645,12.615 61.544,12.615 67.064,6.699 71.182,6.699 64.266,13.863 69.048,21.924 64.64,21.924
224
+ 61.014,15.109 60.115,15.109 58.666,21.924 55.012,21.924 59.635,0.174 63.289,0.174 "></polygon>
225
+ <path class="svg__fill--blue" d="M81.026,20.01h-0.087c-1.157,2.031-3.402,2.088-5.171,2.088c-3.451,0-5.53-0.725-4.655-4.842
226
+ c0.777-3.654,2.907-4.67,6.677-4.67c1.856,0,3.677,0.029,4.183,1.74h0.116l0.419-1.973c0.524-2.465,0.506-3.334-2.54-3.334
227
+ c-1.595,0-2.901,0.145-3.321,2.117h-3.654c0.943-4.438,4.025-4.611,7.505-4.611c4.872,0,6.742,0.754,5.657,5.857l-2.028,9.541
228
+ h-3.654L81.026,20.01z M74.768,17.256c-0.457,2.145,0.371,2.348,2.835,2.348c1.943,0,3.401-0.174,3.863-2.348
229
+ c0.45-2.117-1.104-2.176-2.902-2.176C76.708,15.08,75.229,15.08,74.768,17.256z"></path>
230
+ <polygon class="svg__fill--blue" points="93.356,12.615 94.255,12.615 99.776,6.699 103.894,6.699 96.977,13.863 101.759,21.924
231
+ 97.352,21.924 93.725,15.109 92.826,15.109 91.377,21.924 87.724,21.924 92.347,0.174 96,0.174 "></polygon>
232
+ <path class="svg__fill--blue" d="M117.955,17.082c-1.018,4.785-3.821,5.016-8.171,5.016c-5.829,0-6.623-1.855-5.372-7.742
233
+ c1.159-5.451,2.535-7.83,8.683-7.83c6.263,0,6.716,1.826,5.304,8.469H107.93c-0.697,3.275-0.832,4.32,2.445,4.32
234
+ c2.03,0,3.445,0.029,3.926-2.232H117.955z M115.238,12.674c0.666-3.133,0.251-3.365-2.736-3.365c-3.161,0-3.506,0.668-4.079,3.365
235
+ H115.238z"></path>
236
+ <path class="svg__fill--blue" d="M134.484,17.082c-1.017,4.785-3.82,5.016-8.171,5.016c-5.829,0-6.623-1.855-5.372-7.742
237
+ c1.159-5.451,2.535-7.83,8.683-7.83c6.264,0,6.716,1.826,5.305,8.469H124.46c-0.696,3.275-0.831,4.32,2.445,4.32
238
+ c2.03,0,3.444,0.029,3.926-2.232H134.484z M131.768,12.674c0.666-3.133,0.252-3.365-2.735-3.365c-3.161,0-3.506,0.668-4.079,3.365
239
+ H131.768z"></path>
240
+ <path class="svg__fill--blue" d="M162.747,7.453L163,6.264c0.536-2.521-0.412-2.695-4.066-2.695c-4.205,0-5.078,0.695-5.984,4.959
241
+ l-1.023,4.812c-0.896,4.35-0.553,5.191,3.826,5.191c3.365,0,4.897-0.115,5.557-3.219l0.253-1.189h4.176l-0.302,1.422
242
+ c-1.307,6.553-4.998,6.322-10.441,6.553c-7.717,0.291-8.544-2.232-7.281-8.584l1.061-4.986C150.253,1.566,153.283,0,159.691,0
243
+ c5.423,0,8.52,0.029,7.484,6.264l-0.252,1.189H162.747z"></path>
244
+ <path class="svg__fill--blue" d="M182.254,14.326c-1.252,5.887-2.465,7.771-8.815,7.771s-6.763-1.885-5.511-7.771
245
+ c1.258-5.916,2.471-7.801,8.82-7.801C183.1,6.525,183.511,8.41,182.254,14.326z M171.575,14.355
246
+ c-0.862,4.061-0.793,4.959,2.455,4.959s3.7-0.898,4.563-4.959c0.875-4.117,0.811-5.047-2.438-5.047
247
+ C172.909,9.309,172.451,10.238,171.575,14.355z"></path>
248
+ <path class="svg__fill--blue" d="M190.516,6.699l-0.469,2.205h0.115c1.226-1.943,3.377-2.379,5.291-2.379s4.014,0.492,3.951,2.697h0.115
249
+ c1.146-2.117,3.357-2.697,5.389-2.697c3.943,0,4.959,1.363,4.164,5.104l-2.189,10.295h-3.654l2.115-9.947
250
+ c0.32-1.914,0.016-2.668-1.984-2.668c-2.959,0-3.822,1.334-4.396,4.031l-1.824,8.584h-3.654l2.115-9.947
251
+ c0.319-1.914,0.016-2.668-1.985-2.668c-2.958,0-3.821,1.334-4.395,4.031l-1.825,8.584h-3.653l3.235-15.225H190.516z"></path>
252
+ <path class="svg__fill--blue" d="M217.312,6.699l-0.469,2.205h0.115c1.225-1.943,3.377-2.379,5.291-2.379s4.012,0.492,3.951,2.697h0.115
253
+ c1.146-2.117,3.357-2.697,5.387-2.697c3.943,0,4.959,1.363,4.164,5.104l-2.188,10.295h-3.654l2.113-9.947
254
+ c0.32-1.914,0.018-2.668-1.984-2.668c-2.957,0-3.82,1.334-4.395,4.031l-1.824,8.584h-3.654l2.115-9.947
255
+ c0.318-1.914,0.016-2.668-1.986-2.668c-2.957,0-3.82,1.334-4.395,4.031l-1.824,8.584h-3.654l3.236-15.225H217.312z"></path>
256
+ <path class="svg__fill--blue" d="M247.338,21.924l0.5-2.348h-0.117c-1.271,2.029-3.262,2.521-5.35,2.521c-3.045,0-4.854-1.043-4.174-4.379
257
+ l2.344-11.02h3.654l-2.041,9.6c-0.463,2.174-0.438,3.016,1.91,3.016c2.814,0,3.965-1.189,4.525-3.828l1.869-8.787h3.654
258
+ l-3.236,15.225H247.338z"></path>
259
+ <path class="svg__fill--blue" d="M261.391,6.699l-0.486,2.291h0.115c1.287-2.232,3.164-2.465,5.309-2.465c4.002,0,4.869,1.652,4.08,5.365
260
+ l-2.133,10.033h-3.654l2.053-9.656c0.469-2.205,0.137-2.959-2.213-2.959c-3.189,0-3.945,1.508-4.525,4.234l-1.781,8.381H254.5
261
+ l3.236-15.225H261.391z"></path>
262
+ <path class="svg__fill--blue" d="M275.293,21.924h-3.654l3.236-15.225h3.654L275.293,21.924z M279.258,3.277h-3.654l0.658-3.104h3.654
263
+ L279.258,3.277z"></path>
264
+ <path class="svg__fill--blue" d="M280.066,6.699h1.914l0.732-3.451h3.654l-0.732,3.451h5.828l-0.592,2.783h-5.828l-1.658,7.803
265
+ c-0.268,1.391-0.402,2.029,1.135,2.029c2.059,0,2.172-1.625,2.51-3.219h3.221c-0.924,4.611-2.379,6.002-6.322,6.002
266
+ c-4.002,0-5.023-0.928-4.203-4.785l1.664-7.83h-1.914L280.066,6.699z"></path>
267
+ <path class="svg__fill--blue" d="M299.35,22.533c-1.574,3.451-2.844,6.148-7.107,6.148c-0.521,0-1.025-0.088-1.541-0.117l0.586-2.754
268
+ c0.256,0.029,0.504,0.086,0.766,0.086c2.291,0,3.107-2.203,3.801-3.973h-1.768l-1.781-15.225h3.77l1.102,12.963h0.059l5.713-12.963
269
+ h3.713L299.35,22.533z"></path>
270
+ <path class="svg__fill--blue" d="M331.379,7.453l0.254-1.189c0.535-2.521-0.414-2.695-4.066-2.695c-4.205,0-5.078,0.695-5.984,4.959
271
+ l-1.023,4.812c-0.896,4.35-0.553,5.191,3.826,5.191c3.363,0,4.896-0.115,5.557-3.219l0.252-1.189h4.176l-0.301,1.422
272
+ c-1.307,6.553-4.998,6.322-10.441,6.553c-7.717,0.291-8.545-2.232-7.281-8.584l1.061-4.986C318.885,1.566,321.914,0,328.324,0
273
+ c5.422,0,8.52,0.029,7.484,6.264l-0.254,1.189H331.379z"></path>
274
+ <path class="svg__fill--blue" d="M350.887,14.326c-1.252,5.887-2.465,7.771-8.814,7.771c-6.352,0-6.764-1.885-5.512-7.771
275
+ c1.258-5.916,2.471-7.801,8.82-7.801C351.732,6.525,352.145,8.41,350.887,14.326z M340.209,14.355
276
+ c-0.863,4.061-0.793,4.959,2.455,4.959c3.246,0,3.699-0.898,4.562-4.959c0.875-4.117,0.811-5.047-2.438-5.047
277
+ S341.084,10.238,340.209,14.355z"></path>
278
+ <polygon class="svg__fill--blue" points="356.027,21.924 352.375,21.924 356.998,0.174 360.65,0.174 "></polygon>
279
+ <polygon class="svg__fill--blue" points="363.336,21.924 359.682,21.924 364.305,0.174 367.959,0.174 "></polygon>
280
+ <path class="svg__fill--blue" d="M381.533,17.082c-1.018,4.785-3.822,5.016-8.172,5.016c-5.828,0-6.623-1.855-5.371-7.742
281
+ c1.158-5.451,2.533-7.83,8.682-7.83c6.264,0,6.717,1.826,5.305,8.469h-10.469c-0.697,3.275-0.832,4.32,2.445,4.32
282
+ c2.029,0,3.445,0.029,3.926-2.232H381.533z M378.816,12.674c0.666-3.133,0.25-3.365-2.736-3.365c-3.162,0-3.506,0.668-4.08,3.365
283
+ H378.816z"></path>
284
+ <path class="svg__fill--blue" d="M394.045,19.75h-0.086c-1.383,2-3.4,2.348-5.256,2.348c-5.221,0-5.219-2.871-4.27-7.336
285
+ c0.992-4.67,1.924-8.236,7.58-8.236c2.145,0,3.729,0.465,4.23,2.465h0.117l0.342-2.291h3.654l-3.23,15.195
286
+ c-1.166,5.482-3.182,6.787-8.75,6.787c-3.713,0-6.361-0.639-5.16-5.191h3.422c-0.445,2.088,0.271,2.406,2.33,2.406
287
+ c3.104,0,3.904-0.637,4.459-3.248L394.045,19.75z M388.279,13.863c-0.734,3.449-1.16,5.451,2.088,5.451
288
+ c3.654,0,4.043-1.826,4.812-5.451c0.691-3.248,0.475-4.555-2.686-4.555C389.971,9.309,389.092,10.035,388.279,13.863z"></path>
289
+ <path class="svg__fill--blue" d="M415.289,17.082c-1.018,4.785-3.822,5.016-8.172,5.016c-5.828,0-6.623-1.855-5.371-7.742
290
+ c1.158-5.451,2.533-7.83,8.682-7.83c6.264,0,6.717,1.826,5.305,8.469h-10.469c-0.697,3.275-0.832,4.32,2.445,4.32
291
+ c2.029,0,3.445,0.029,3.926-2.232H415.289z M412.572,12.674c0.666-3.133,0.25-3.365-2.736-3.365c-3.162,0-3.506,0.668-4.08,3.365
292
+ H412.572z"></path>
293
+ </g>
294
+ </svg>
295
+ </a>
296
+ <p>100 College Drive Kankakee, IL 60901 <br>
297
+ <a class="links__darker-link" href="tel:18158028100">815-802-8100</a> <br>
298
+ © <span id="currentYear">2018</span> Kankakee Community College</p>
69
299
  </div>
70
300
  </div>
71
301
  </div>
72
- <div class="col-lg-6">
73
- <a href="http://www.kcc.edu" target="_blank" rel="noopener">
74
- <svg version="1.1" id="KCC-text-logo" class="footer__svg--logo img__responsive--svg mx-auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
75
- width="416.394px" height="28.682px" viewBox="0 0 416.394 28.682" enable-background="new 0 0 416.394 28.682"
76
- xml:space="preserve">
77
- <title id="kcc-text-logo-title" lang="en">Kankakee Community College</title>
78
- <g>
79
- <polygon fill="#0F3B63" points="6.913,9.049 8.856,9.049 17.992,0.174 23.125,0.174 12.053,10.789 19.401,21.924 14.123,21.924
80
- 8.098,12.615 6.155,12.615 4.176,21.924 0,21.924 4.623,0.174 8.799,0.174 "/>
81
- <path fill="#0F3B63" d="M30.973,20.01h-0.087c-1.157,2.031-3.402,2.088-5.171,2.088c-3.451,0-5.53-0.725-4.655-4.842
82
- c0.777-3.654,2.907-4.67,6.676-4.67c1.856,0,3.677,0.029,4.184,1.74h0.116l0.419-1.973c0.524-2.465,0.506-3.334-2.54-3.334
83
- c-1.595,0-2.901,0.145-3.321,2.117h-3.654c0.943-4.438,4.025-4.611,7.505-4.611c4.872,0,6.742,0.754,5.657,5.857l-2.028,9.541
84
- h-3.654L30.973,20.01z M24.714,17.256c-0.457,2.145,0.371,2.348,2.835,2.348c1.943,0,3.401-0.174,3.863-2.348
85
- c0.45-2.117-1.104-2.176-2.902-2.176C26.655,15.08,25.176,15.08,24.714,17.256z"/>
86
- <path fill="#0F3B63" d="M44.589,6.699L44.103,8.99h0.116c1.286-2.232,3.163-2.465,5.309-2.465c4.002,0,4.869,1.652,4.08,5.365
87
- l-2.133,10.033H47.82l2.053-9.656c0.468-2.205,0.136-2.959-2.213-2.959c-3.19,0-3.945,1.508-4.525,4.234l-1.781,8.381h-3.654
88
- l3.236-15.225H44.589z"/>
89
- <polygon fill="#0F3B63" points="60.645,12.615 61.544,12.615 67.064,6.699 71.182,6.699 64.266,13.863 69.048,21.924 64.64,21.924
90
- 61.014,15.109 60.115,15.109 58.666,21.924 55.012,21.924 59.635,0.174 63.289,0.174 "/>
91
- <path fill="#0F3B63" d="M81.026,20.01h-0.087c-1.157,2.031-3.402,2.088-5.171,2.088c-3.451,0-5.53-0.725-4.655-4.842
92
- c0.777-3.654,2.907-4.67,6.677-4.67c1.856,0,3.677,0.029,4.183,1.74h0.116l0.419-1.973c0.524-2.465,0.506-3.334-2.54-3.334
93
- c-1.595,0-2.901,0.145-3.321,2.117h-3.654c0.943-4.438,4.025-4.611,7.505-4.611c4.872,0,6.742,0.754,5.657,5.857l-2.028,9.541
94
- h-3.654L81.026,20.01z M74.768,17.256c-0.457,2.145,0.371,2.348,2.835,2.348c1.943,0,3.401-0.174,3.863-2.348
95
- c0.45-2.117-1.104-2.176-2.902-2.176C76.708,15.08,75.229,15.08,74.768,17.256z"/>
96
- <polygon fill="#0F3B63" points="93.356,12.615 94.255,12.615 99.776,6.699 103.894,6.699 96.977,13.863 101.759,21.924
97
- 97.352,21.924 93.725,15.109 92.826,15.109 91.377,21.924 87.724,21.924 92.347,0.174 96,0.174 "/>
98
- <path fill="#0F3B63" d="M117.955,17.082c-1.018,4.785-3.821,5.016-8.171,5.016c-5.829,0-6.623-1.855-5.372-7.742
99
- c1.159-5.451,2.535-7.83,8.683-7.83c6.263,0,6.716,1.826,5.304,8.469H107.93c-0.697,3.275-0.832,4.32,2.445,4.32
100
- c2.03,0,3.445,0.029,3.926-2.232H117.955z M115.238,12.674c0.666-3.133,0.251-3.365-2.736-3.365c-3.161,0-3.506,0.668-4.079,3.365
101
- H115.238z"/>
102
- <path fill="#0F3B63" d="M134.484,17.082c-1.017,4.785-3.82,5.016-8.171,5.016c-5.829,0-6.623-1.855-5.372-7.742
103
- c1.159-5.451,2.535-7.83,8.683-7.83c6.264,0,6.716,1.826,5.305,8.469H124.46c-0.696,3.275-0.831,4.32,2.445,4.32
104
- c2.03,0,3.444,0.029,3.926-2.232H134.484z M131.768,12.674c0.666-3.133,0.252-3.365-2.735-3.365c-3.161,0-3.506,0.668-4.079,3.365
105
- H131.768z"/>
106
- <path fill="#0F3B63" d="M162.747,7.453L163,6.264c0.536-2.521-0.412-2.695-4.066-2.695c-4.205,0-5.078,0.695-5.984,4.959
107
- l-1.023,4.812c-0.896,4.35-0.553,5.191,3.826,5.191c3.365,0,4.897-0.115,5.557-3.219l0.253-1.189h4.176l-0.302,1.422
108
- c-1.307,6.553-4.998,6.322-10.441,6.553c-7.717,0.291-8.544-2.232-7.281-8.584l1.061-4.986C150.253,1.566,153.283,0,159.691,0
109
- c5.423,0,8.52,0.029,7.484,6.264l-0.252,1.189H162.747z"/>
110
- <path fill="#0F3B63" d="M182.254,14.326c-1.252,5.887-2.465,7.771-8.815,7.771s-6.763-1.885-5.511-7.771
111
- c1.258-5.916,2.471-7.801,8.82-7.801C183.1,6.525,183.511,8.41,182.254,14.326z M171.575,14.355
112
- c-0.862,4.061-0.793,4.959,2.455,4.959s3.7-0.898,4.563-4.959c0.875-4.117,0.811-5.047-2.438-5.047
113
- C172.909,9.309,172.451,10.238,171.575,14.355z"/>
114
- <path fill="#0F3B63" d="M190.516,6.699l-0.469,2.205h0.115c1.226-1.943,3.377-2.379,5.291-2.379s4.014,0.492,3.951,2.697h0.115
115
- c1.146-2.117,3.357-2.697,5.389-2.697c3.943,0,4.959,1.363,4.164,5.104l-2.189,10.295h-3.654l2.115-9.947
116
- c0.32-1.914,0.016-2.668-1.984-2.668c-2.959,0-3.822,1.334-4.396,4.031l-1.824,8.584h-3.654l2.115-9.947
117
- c0.319-1.914,0.016-2.668-1.985-2.668c-2.958,0-3.821,1.334-4.395,4.031l-1.825,8.584h-3.653l3.235-15.225H190.516z"/>
118
- <path fill="#0F3B63" d="M217.312,6.699l-0.469,2.205h0.115c1.225-1.943,3.377-2.379,5.291-2.379s4.012,0.492,3.951,2.697h0.115
119
- c1.146-2.117,3.357-2.697,5.387-2.697c3.943,0,4.959,1.363,4.164,5.104l-2.188,10.295h-3.654l2.113-9.947
120
- c0.32-1.914,0.018-2.668-1.984-2.668c-2.957,0-3.82,1.334-4.395,4.031l-1.824,8.584h-3.654l2.115-9.947
121
- c0.318-1.914,0.016-2.668-1.986-2.668c-2.957,0-3.82,1.334-4.395,4.031l-1.824,8.584h-3.654l3.236-15.225H217.312z"/>
122
- <path fill="#0F3B63" d="M247.338,21.924l0.5-2.348h-0.117c-1.271,2.029-3.262,2.521-5.35,2.521c-3.045,0-4.854-1.043-4.174-4.379
123
- l2.344-11.02h3.654l-2.041,9.6c-0.463,2.174-0.438,3.016,1.91,3.016c2.814,0,3.965-1.189,4.525-3.828l1.869-8.787h3.654
124
- l-3.236,15.225H247.338z"/>
125
- <path fill="#0F3B63" d="M261.391,6.699l-0.486,2.291h0.115c1.287-2.232,3.164-2.465,5.309-2.465c4.002,0,4.869,1.652,4.08,5.365
126
- l-2.133,10.033h-3.654l2.053-9.656c0.469-2.205,0.137-2.959-2.213-2.959c-3.189,0-3.945,1.508-4.525,4.234l-1.781,8.381H254.5
127
- l3.236-15.225H261.391z"/>
128
- <path fill="#0F3B63" d="M275.293,21.924h-3.654l3.236-15.225h3.654L275.293,21.924z M279.258,3.277h-3.654l0.658-3.104h3.654
129
- L279.258,3.277z"/>
130
- <path fill="#0F3B63" d="M280.066,6.699h1.914l0.732-3.451h3.654l-0.732,3.451h5.828l-0.592,2.783h-5.828l-1.658,7.803
131
- c-0.268,1.391-0.402,2.029,1.135,2.029c2.059,0,2.172-1.625,2.51-3.219h3.221c-0.924,4.611-2.379,6.002-6.322,6.002
132
- c-4.002,0-5.023-0.928-4.203-4.785l1.664-7.83h-1.914L280.066,6.699z"/>
133
- <path fill="#0F3B63" d="M299.35,22.533c-1.574,3.451-2.844,6.148-7.107,6.148c-0.521,0-1.025-0.088-1.541-0.117l0.586-2.754
134
- c0.256,0.029,0.504,0.086,0.766,0.086c2.291,0,3.107-2.203,3.801-3.973h-1.768l-1.781-15.225h3.77l1.102,12.963h0.059l5.713-12.963
135
- h3.713L299.35,22.533z"/>
136
- <path fill="#0F3B63" d="M331.379,7.453l0.254-1.189c0.535-2.521-0.414-2.695-4.066-2.695c-4.205,0-5.078,0.695-5.984,4.959
137
- l-1.023,4.812c-0.896,4.35-0.553,5.191,3.826,5.191c3.363,0,4.896-0.115,5.557-3.219l0.252-1.189h4.176l-0.301,1.422
138
- c-1.307,6.553-4.998,6.322-10.441,6.553c-7.717,0.291-8.545-2.232-7.281-8.584l1.061-4.986C318.885,1.566,321.914,0,328.324,0
139
- c5.422,0,8.52,0.029,7.484,6.264l-0.254,1.189H331.379z"/>
140
- <path fill="#0F3B63" d="M350.887,14.326c-1.252,5.887-2.465,7.771-8.814,7.771c-6.352,0-6.764-1.885-5.512-7.771
141
- c1.258-5.916,2.471-7.801,8.82-7.801C351.732,6.525,352.145,8.41,350.887,14.326z M340.209,14.355
142
- c-0.863,4.061-0.793,4.959,2.455,4.959c3.246,0,3.699-0.898,4.562-4.959c0.875-4.117,0.811-5.047-2.438-5.047
143
- S341.084,10.238,340.209,14.355z"/>
144
- <polygon fill="#0F3B63" points="356.027,21.924 352.375,21.924 356.998,0.174 360.65,0.174 "/>
145
- <polygon fill="#0F3B63" points="363.336,21.924 359.682,21.924 364.305,0.174 367.959,0.174 "/>
146
- <path fill="#0F3B63" d="M381.533,17.082c-1.018,4.785-3.822,5.016-8.172,5.016c-5.828,0-6.623-1.855-5.371-7.742
147
- c1.158-5.451,2.533-7.83,8.682-7.83c6.264,0,6.717,1.826,5.305,8.469h-10.469c-0.697,3.275-0.832,4.32,2.445,4.32
148
- c2.029,0,3.445,0.029,3.926-2.232H381.533z M378.816,12.674c0.666-3.133,0.25-3.365-2.736-3.365c-3.162,0-3.506,0.668-4.08,3.365
149
- H378.816z"/>
150
- <path fill="#0F3B63" d="M394.045,19.75h-0.086c-1.383,2-3.4,2.348-5.256,2.348c-5.221,0-5.219-2.871-4.27-7.336
151
- c0.992-4.67,1.924-8.236,7.58-8.236c2.145,0,3.729,0.465,4.23,2.465h0.117l0.342-2.291h3.654l-3.23,15.195
152
- c-1.166,5.482-3.182,6.787-8.75,6.787c-3.713,0-6.361-0.639-5.16-5.191h3.422c-0.445,2.088,0.271,2.406,2.33,2.406
153
- c3.104,0,3.904-0.637,4.459-3.248L394.045,19.75z M388.279,13.863c-0.734,3.449-1.16,5.451,2.088,5.451
154
- c3.654,0,4.043-1.826,4.812-5.451c0.691-3.248,0.475-4.555-2.686-4.555C389.971,9.309,389.092,10.035,388.279,13.863z"/>
155
- <path fill="#0F3B63" d="M415.289,17.082c-1.018,4.785-3.822,5.016-8.172,5.016c-5.828,0-6.623-1.855-5.371-7.742
156
- c1.158-5.451,2.533-7.83,8.682-7.83c6.264,0,6.717,1.826,5.305,8.469h-10.469c-0.697,3.275-0.832,4.32,2.445,4.32
157
- c2.029,0,3.445,0.029,3.926-2.232H415.289z M412.572,12.674c0.666-3.133,0.25-3.365-2.736-3.365c-3.162,0-3.506,0.668-4.08,3.365
158
- H412.572z"/>
159
- </g>
160
- </svg>
161
- </a>
162
- <p>100 College Drive Kankakee, IL 60901 <br>
163
- <a class="links__darker-link" href="tel:18158028100">815-802-8100</a> <br>
164
- © <span id="currentYear">2018</span> Kankakee Community College</p>
165
- </div>
166
- </div>
167
- </div>
168
- </footer>
302
+ </footer>