kcc-gem-theme 1.72.76 → 1.75.78
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_data/cache_bust_css.yml +1 -1
- data/_includes/breadcrumbs.html +44 -0
- data/_includes/main-call-to-action.html +32 -0
- data/_includes/svg/check_circle-24px.html +13 -0
- data/_includes/svg/email-24px.html +13 -0
- data/_includes/svg/place-24px.html +13 -0
- data/_layouts/default-core.html +1 -0
- data/assets/css/kcc-theme.css +1 -1
- data/assets/img/arrow-right.svg +1 -0
- data/assets/img/arrow_right_alt.svg +1 -0
- data/assets/img/home.svg +8 -0
- data/assets/img/keyboard_arrow_right.svg +1 -0
- data/assets/scss/0-tools/_vars.scss +1 -0
- data/assets/scss/1-base/_buttons.scss +38 -0
- data/assets/scss/1-base/_header-global.scss +7 -0
- data/assets/scss/1-base/_svg.scss +58 -1
- data/assets/scss/2-modules/_breadcrumbs.scss +32 -0
- data/assets/scss/kcc-theme.scss +1 -0
- metadata +12 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4308fcbab241684b47327399597de30bba4cfc1aa67203f9d3a66730d04ad245
|
4
|
+
data.tar.gz: b04baaece166e565258acdec4cdce90e3ddbeeb6e8a2992d0d2fac7b1c5c0163
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b99678599098fe03790c87ce2d61c1c347f6409ef151d8cf5ec364d87b179e2023efdc22339b7929b638738c234ee636b176cfc1f688cf12a3cc116f9b8c8241
|
7
|
+
data.tar.gz: 5d960106554f667054e2833fc5f8e89357f432908f472903e7c22d4688af9c562acd4d7f30434c9ccc3bc3202a0e1df85b08b74244ed4a889d39ca0ce38b19a5
|
data/_data/cache_bust_css.yml
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
3055a8b45d280f695147af732f602576 ../assets/scss/kcc-theme.css
|
@@ -0,0 +1,44 @@
|
|
1
|
+
|
2
|
+
<nav aria-label="breadcrumb">
|
3
|
+
<ol class="breadcrumb breadcrumbs">
|
4
|
+
{% if site.core_root == true %}
|
5
|
+
<li class="breadcrumb-item">Home</li>
|
6
|
+
{% else %}
|
7
|
+
{% if page.url == "/" %}
|
8
|
+
<li class="breadcrumb-item">
|
9
|
+
<a href="../">
|
10
|
+
<svg id="home-icon" role="image" class="breadcrumbs--home" height="24px" width="24px" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-labelledby="home-icon-title">
|
11
|
+
<title lang="en" id="home-icon-title">Home</title>
|
12
|
+
<path class="breadcrumbs--home--border" d="M0,0h24v24H0V0z"/>
|
13
|
+
<polygon class="breadcrumbs--home--house" points="14.5,19.5 14.5,13.5 9.5,13.5
|
14
|
+
9.5,19.5 5.5,19.5 5.5,11.5 3.3,11.5 12,3.7 20.7,11.5 18.5,11.5 18.5,19.5 "/>
|
15
|
+
</svg>
|
16
|
+
</a>
|
17
|
+
</li>
|
18
|
+
<li class="breadcrumb-item active" aria-current="page">{{ page.title }}</li>
|
19
|
+
{% else %}
|
20
|
+
{% assign url_arr = page.url | split: "/" %}
|
21
|
+
<li class="breadcrumb-item">
|
22
|
+
<a href="../{{ page.baseurl }}">
|
23
|
+
<svg id="home-icon" role="image" class="breadcrumbs--home" height="24px" width="24px" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-labelledby="home-icon-title">
|
24
|
+
<title lang="en" id="home-icon-title">Home</title>
|
25
|
+
<path class="breadcrumbs--home--border" d="M0,0h24v24H0V0z"/>
|
26
|
+
<polygon class="breadcrumbs--home--house" points="14.5,19.5 14.5,13.5 9.5,13.5
|
27
|
+
9.5,19.5 5.5,19.5 5.5,11.5 3.3,11.5 12,3.7 20.7,11.5 18.5,11.5 18.5,19.5 "/>
|
28
|
+
</svg>
|
29
|
+
</a>
|
30
|
+
</li>
|
31
|
+
<li class="breadcrumb-item"><a href="{{ page.baseurl }}">{{ site.site_name }}</a></li>
|
32
|
+
{% for item in url_arr %}
|
33
|
+
{% if item != '' %}
|
34
|
+
{% if forloop.last %}
|
35
|
+
<li class="breadcrumb-item active" aria-current="page">{{ page.title }}</li>
|
36
|
+
{% else %}
|
37
|
+
<li class="breadcrumb-item"><a href="../">{{ item | capitalize }}</a></li>
|
38
|
+
{% endif %}
|
39
|
+
{% endif %}
|
40
|
+
{% endfor %}
|
41
|
+
{% endif %}
|
42
|
+
{% endif %}
|
43
|
+
</ol>
|
44
|
+
</nav>
|
@@ -0,0 +1,32 @@
|
|
1
|
+
<div class="container mb-3 mt-5">
|
2
|
+
<div class="row">
|
3
|
+
<div class="col">
|
4
|
+
<div class="row no-gutters">
|
5
|
+
<div class="col-md-4 px-1 my-1">
|
6
|
+
<a class="btn buttons__action"
|
7
|
+
target="_blank"
|
8
|
+
rel="noopener noreferrer"
|
9
|
+
href="https://kccedu.force.com/portal/TX_SiteLogin?startURL=%2Fportal%2FTargetX_Base__Portal">
|
10
|
+
{% include svg/check_circle-24px.html %} Apply
|
11
|
+
</a>
|
12
|
+
</div>
|
13
|
+
<div class="col-md-4 px-1 my-1">
|
14
|
+
<a class="btn buttons__action"
|
15
|
+
target="_blank"
|
16
|
+
rel="noopener noreferrer"
|
17
|
+
href="https://info.kcc.edu">
|
18
|
+
{% include svg/email-24px.html %} Request Info
|
19
|
+
</a>
|
20
|
+
</div>
|
21
|
+
<div class="col-md-4 px-1 my-1">
|
22
|
+
<a class="btn buttons__action"
|
23
|
+
target="_blank"
|
24
|
+
rel="noopener noreferrer"
|
25
|
+
href="https://visit.kcc.edu">
|
26
|
+
{% include svg/place-24px.html %} Visit KCC
|
27
|
+
</a>
|
28
|
+
</div>
|
29
|
+
</div>
|
30
|
+
</div>
|
31
|
+
</div>
|
32
|
+
</div>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
{% comment %}
|
2
|
+
<!-- aria-hidden="true" b/c they add no meaning to the button -->
|
3
|
+
{% endcomment %}
|
4
|
+
<svg
|
5
|
+
aria-hidden="true"
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
7
|
+
viewBox="0 0 24 24"
|
8
|
+
class="svg--max-width svg__button svg__apply">
|
9
|
+
<path class="svg--fill-none" d="M0,0h24v24H0V0z"/>
|
10
|
+
<path class="svg--fill-white"
|
11
|
+
d="M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M10,17l-5-5l1.4-1.4
|
12
|
+
l3.6,3.6l7.6-7.6L19,8 L10,17z"/>
|
13
|
+
</svg>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
{% comment %}
|
2
|
+
<!-- aria-hidden="true" b/c they add no meaning to the button -->
|
3
|
+
{% endcomment %}
|
4
|
+
<svg
|
5
|
+
aria-hidden="true"
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
7
|
+
viewBox="0 0 24 24"
|
8
|
+
class="svg--max-width svg__button svg__action">
|
9
|
+
<path class="svg--fill-white"
|
10
|
+
d="M20,4H4C2.9,4,2,4.9,2,6l0,12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4
|
11
|
+
z M20,8l-8,5L4,8V6l8,5 l8-5V8z"/>
|
12
|
+
<path class="svg--fill-none" d="M0,0h24v24H0V0z"/>
|
13
|
+
</svg>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
{% comment %}
|
2
|
+
<!-- aria-hidden="true" b/c they add no meaning to the button -->
|
3
|
+
{% endcomment %}
|
4
|
+
<svg
|
5
|
+
aria-hidden="true"
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
7
|
+
viewBox="0 0 24 24"
|
8
|
+
class="svg--max-width svg__button svg__action--place">
|
9
|
+
<path class="svg--fill-white"
|
10
|
+
d="M12,2C8.1,2,5,5.1,5,9c0,5.2,7,13,7,13s7-7.8,7-13C19,5.1,15.9,2,12,2z M12,11.5
|
11
|
+
c-1.4,0-2.5-1.1-2.5-2.5 s1.1-2.5,2.5-2.5s2.5,1.1,2.5,2.5S13.4,11.5,12,11.5z"/>
|
12
|
+
<path class="svg--fill-none" d="M0,0h24v24H0V0z"/>
|
13
|
+
</svg>
|
data/_layouts/default-core.html
CHANGED
@@ -16,6 +16,7 @@
|
|
16
16
|
{% include header-global.html %}
|
17
17
|
{% if site.core_root != true and page.no_alert != true %}{% include emergency-alerts.html %}{% endif %}
|
18
18
|
{{ content }}
|
19
|
+
{% if page.no_main_call_to_action != true %}{% include main-call-to-action.html %}{% endif %}
|
19
20
|
{% include footer.html %}
|
20
21
|
{% include scripts/vendor-cdn.html %}
|
21
22
|
{% include scripts/kcc-mega-nav.html %}
|
data/assets/css/kcc-theme.css
CHANGED
@@ -1 +1 @@
|
|
1
|
-
.nav-tabs{border-bottom:1px solid #b1b1b1}.nav-tabs .nav-link{background-color:#f8f9fa;border-left-color:#e5e8ed;border-left-style:solid;border-left-width:1px;border-right-color:#e5e8ed;border-right-style:solid;border-right-width:1px;border-top-color:#e5e8ed;border-top-style:solid;border-top-width:1px;border-bottom-color:#b1b1b1}.nav-tabs .nav-link.active{border-color:#b1b1b1 #b1b1b1 #fff}.navbar-brand{margin-right:0}@media screen and (min-width:768px){.navbar-brand{margin-right:1rem}}.btn{vertical-align:baseline}.modal-open .gsc-search-button{margin-right:15px}@media screen and (max-width:992px){.dropdown-toggle:after{transform:rotate(0deg);transition:transform .3s ease-in-out}.nav-item.dropdown.show .dropdown-toggle:after{transform:rotate(-180deg)}}.dropdown-toggle.btn:after{transform:rotate(0deg);transition:transform .3s ease-in-out}.nav-item.dropdown.show .dropdown-toggle.btn:after{transform:rotate(-180deg)}@media screen and (min-width:992px){.dropdown-toggle:not(.btn):after{display:none}}.editor-link{display:none}.cms-editor-active .editor-link{display:block}.editor-button{display:none}.cms-editor-active .editor-button{display:inline-block}.header-global__search-collapse #___gcse_0:focus #gsc-iw-id1,.header-global__search-collapse #___gcse_0:hover #gsc-iw-id1{filter:drop-shadow(2px 2px 6px rgba(128,128,128,.5))}.header-global__search-collapse #gsc-iw-id1{border-radius:2rem;padding-left:.5rem;border:thin solid #b1b1b1;line-height:1;padding-top:3px;padding-bottom:3px}.header-global__search-collapse .gsc-search-button-v2{background-color:transparent!important;border:none!important;pointer-events:auto;position:relative;right:-.5rem;top:-.25rem;transition-property:right;transition-duration:.2s}.header-global__search-collapse button.gsc-overrides__clear-x{right:.5rem;padding-right:5px!important}@media screen and (min-width:992px){.header-global__search-collapse .gsc-search-button-v2{top:0;right:.5rem}.header-global__search-collapse button.gsc-overrides__clear-x{right:1.125rem;padding-right:5px!important}}.header-global__search-collapse .gsst_a .gscb_a{vertical-align:middle}.header-global__search-collapse .gsc-search-button-v2 svg{fill:#0f3b63!important;height:1.25rem;width:1.25rem;transition-property:fill;transition-duration:.2s}.header-global__search-collapse .gsc-search-button-v2:focus svg,.header-global__search-collapse .gsc-search-button-v2:hover svg{fill:#c61f48!important}.header-global__search-collapse td.gsc-search-button{display:inline;pointer-events:none;position:absolute;right:50px}@media screen and (min-width:1400px){.header-global__search-collapse td.gsc-search-button{right:44px}}.header-global__search-collapse .gsc-search-box-tools .gsc-search-box .gsc-input{padding-right:0!important}.nav-global__gcse-wrapper #___gcse_0:focus #gsc-iw-id1,.nav-global__gcse-wrapper #___gcse_0:hover #gsc-iw-id1{filter:drop-shadow(2px 2px 6px rgba(128,128,128,.5))}.nav-global__gcse-wrapper #gsc-iw-id1{border-radius:2rem;padding-left:.5rem;border:thin solid #b1b1b1;line-height:1;padding-top:3px;padding-bottom:3px}.nav-global__gcse-wrapper .gsc-search-button-v2{background-color:transparent!important;border:none!important;pointer-events:auto;position:relative;right:30px;transition-property:right;transition-duration:.2s}.nav-global__gcse-wrapper .gsst_a .gscb_a{vertical-align:middle}.nav-global__gcse-wrapper button.gsc-overrides__clear-x{right:48px;padding-right:5px!important}.nav-global__gcse-wrapper .gsc-search-button-v2 svg{fill:#0f3b63!important;height:1.25rem;width:1.25rem;transition-property:fill;transition-duration:.2s}.nav-global__gcse-wrapper .gsc-search-button-v2:focus svg,.nav-global__gcse-wrapper .gsc-search-button-v2:hover svg{fill:#c61f48!important}.nav-global__gcse-wrapper td.gsc-search-button{display:inline;pointer-events:none;position:absolute;right:50px}@media screen and (min-width:1400px){.nav-global__gcse-wrapper td.gsc-search-button{right:44px}}.nav-global__search-collapse--visible #___gcse_0{margin-bottom:20px}.targetx__wrapper{margin-top:-35px;z-index:-1}p.supportInfo{display:none}@media screen and (min-width:1200px){.wForm form>div.oneField{margin-top:0!important}}@media screen and (min-width:1800px){.wForm form>div.oneField{margin-top:10px!important}}.wFormContainer{padding-left:5px!important;padding-right:5px!important}@media screen and (min-width:1600px){.wFormContainer{padding:1rem 2rem!important}}#tfa_11:before{display:block;content:" ";margin-top:-60px;height:60px;visibility:hidden;pointer-events:none}@media screen and (min-width:1800px){#tfa_775-D{margin-top:5px!important}}.oneField.field-container-D{max-width:100%}#submit_button{background-color:#0051a7!important;border-color:#003773!important;font-family:Open Sans,sans-serif!important;font-weight:400!important;font-size:1.25rem!important;padding-top:.5rem!important;padding-bottom:.5rem!important;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}#submit_button:hover{background-color:#022b55!important;border-color:#021e3d!important}.goog-te-gadget-simple{white-space:nowrap;border-radius:20px;padding-left:10px;padding-right:10px;margin-right:5px;height:100%}#google_translate_element{position:fixed;bottom:.25rem;right:.25rem!important;z-index:99999}.goog-te-gadget{font-family:Roboto,Open Sans,sans-serif!important;text-transform:uppercase;font-weight:500}.goog-te-gadget:hover{color:#fff}.goog-te-gadget-simple{background-color:hsla(0,0%,100%,.85)!important;border:1px solid rgba(0,0,0,.95)!important;padding:8px!important;border-radius:4px!important;font-size:1rem!important;line-height:2rem!important;display:inline-block;transition:background-color .2s;cursor:pointer;zoom:1}.goog-te-gadget-simple:focus,.goog-te-gadget-simple:hover{background-color:rgba(0,123,255,.85)!important}.goog-te-menu2{max-width:100%;width:100%}.goog-te-gadget-simple:hover .goog-te-menu-value{color:#fff!important}.goog-te-menu-value{color:#000!important;text-decoration:none!important}.goog-te-menu-value:before{font-family:Material Icons;content:"\E927";margin-right:16px;font-size:2rem;vertical-align:-10px}.goog-te-menu-value span:nth-child(5){display:none}.goog-te-menu-value span:nth-child(3){border:none!important;font-family:Material Icons}.goog-te-menu-value span:nth-child(3):after{font-family:Material Icons;content:"\E5C5";font-size:1.5rem;vertical-align:-6px}.goog-te-gadget-icon{background-image:url(https://placehold.it/32)!important;background-position:0 0;height:32px!important;width:32px!important;margin-right:8px!important;display:none}.goog-te-banner-frame.skiptranslate{display:none!important}body{top:0!important}@media (max-width:667px){#google_translate_element{bottom:.25rem;left:16px!important;width:100%!important}#google_translate_element .skiptranslate,#google_translate_element goog-te-gadget{width:100%!important}#google_translate_element .goog-te-gadget-simple{width:calc(100% - 32px)!important;text-align:center}}a.goog-te-menu-value,a.goog-te-menu-value:hover{text-decoration:none!important}body{font-size:1rem}.typography__nav-heading{color:#0f3b63;display:inline;font-family:Eurostile,sans-serif;font-size:1.5rem;font-style:italic;font-weight:700;text-transform:uppercase;transition-property:color;transition-timing-function:ease;transition-duration:.4s}.typography__nav-heading:focus,.typography__nav-heading:hover{color:#c61f48}.typography__nav-heading--smaller{font-size:1.25rem}@media screen and (min-width:360px){.typography__nav-heading{font-size:1.8rem}.typography__nav-heading--smaller{font-size:1.5rem}}@media screen and (min-width:410px){.typography__nav-heading{font-size:2rem}}@media screen and (min-width:576px){.typography__nav-heading{font-size:2.3rem}}@media screen and (min-width:768px){.typography__nav-heading{font-size:2.4rem}}@media screen and (min-width:1500px){.typography__nav-heading{font-size:2.6rem}}.typography__footer-heading{font-family:Roboto,sans-serif;font-size:1.95rem;font-weight:900}@media screen and (min-width:360px){.typography__footer-heading{font-size:2.2rem}}@media screen and (min-width:375px){.typography__footer-heading{font-size:2.4rem}}@media screen and (min-width:410px){.typography__footer-heading{font-size:2.6rem}}.typography__call-to-action{color:#c61f48;font-family:Oswald,sans-serif;font-size:2.8rem;font-weight:600;line-height:2.8rem;margin-bottom:30px;margin-top:20px}.typography__contacts--name{color:#0f3b63;font-size:1.3em}.typography__contacts--name,.typography__contacts--title{font-family:Roboto,sans-serif;font-weight:700;margin-bottom:.2rem}.typography__contacts--title{color:#666;font-size:1.1em}.typography__orange-h4{color:#f99e1b;font-family:Oswald,sans-serif;font-size:2.4rem}.typography__sub-nav--red-h2{color:#c61f48;font-family:Oswald,sans-serif;font-size:1.4rem;font-weight:500;text-transform:uppercase}@media screen and (min-width:768px){.typography__sub-nav--red-h2{font-size:1.8rem}}.typography__section--heading{color:#c61f48;font-family:Oswald,sans-serif;font-size:2rem;font-weight:500}.typography__header-global--nav-bottom,.typography__header-global--nav-local,.typography__header-global--nav-top{color:#0f3b63;font-family:Oswald,sans-serif;font-size:1rem;font-weight:500;letter-spacing:.05rem;padding-bottom:.25rem;padding-top:.25rem;text-transform:capitalize}@media screen and (min-width:992px){.typography__header-global--nav-top{color:#b8babc;font-size:1.1rem}.typography__header-global--nav-top:focus,.typography__header-global--nav-top:hover{color:#b8babc}}@media screen and (min-width:992px){.typography__header-global--nav-bottom{color:#fff;font-size:1.05rem;font-weight:400}}@media screen and (min-width:992px){.header-global__dropdown:focus .typography__header-global--nav-bottom,.header-global__dropdown:hover .typography__header-global--nav-bottom,.typography__header-global--nav-bottom:focus,.typography__header-global--nav-bottom:hover{color:#0f3b63}}@media screen and (min-width:992px){.typography__header-global--nav-local{font-size:1rem;font-weight:400}.nav-link:not([role=tab]){margin-left:5px;margin-right:5px}}.typography__nav-link{color:#fff;font-family:Oswald,sans-serif;font-size:1.05rem;font-weight:400;letter-spacing:.05rem;text-transform:capitalize}.typography__nav-local--nav-link{font-family:Oswald,sans-serif;font-size:1rem;font-weight:500;text-transform:uppercase}.typography__nav-local--color{color:#0f3b63}.typography__power-text{color:#fff;font-family:Libre Franklin,sans-serif;font-size:1.1rem;font-weight:700;letter-spacing:.02em;text-transform:uppercase}@media screen and (min-width:360px){.typography__power-text{font-size:1.3rem}}@media screen and (min-width:768px){.typography__power-text{font-size:2.2rem}}@media screen and (min-width:992px){.typography__power-text{font-size:2.9rem}}@media screen and (min-width:1200px){.typography__power-text{font-size:3.1rem}}.typography__h2{color:#666;font-family:Roboto,sans-serif;font-size:2rem;font-weight:500}.typography__h3{color:#0f3b63;font-size:1.75rem}.typography__h3,.typography__h4{font-family:Roboto,sans-serif;font-weight:600}.typography__h4{color:#c61f48;font-size:1.7rem}.typography__h5{font-size:1.5rem}.typography__h5,.typography__h6{color:#666;font-family:Roboto,sans-serif;font-weight:700}.typography__h6{font-size:1.4rem}.typography__h5--description{color:#58585b;font-family:Oswald,sans-serif;font-size:1.25rem;font-weight:400}.typography__phone--span{color:#fff;font-family:Oswald,sans-serif;font-size:1.3rem;font-weight:400;letter-spacing:.07rem;white-space:nowrap}@media screen and (min-width:768px){.typography__phone--span{font-size:1.45rem}}@media screen and (min-width:1024px){.typography__phone--span{font-size:1.5rem}}.typography__p--bold{color:#666;font-family:Roboto,sans-serif;font-weight:700;font-size:1.25rem;line-height:1.2}.typography__stories--quote{color:#0f3b63;font-family:Oswald,sans-serif;font-size:1.1em;font-weight:300}@media screen and (min-width:488px){.typography__stories--quote{font-size:1.3rem}}@media screen and (min-width:768px){.typography__stories--quote{font-size:1.2rem}}@media screen and (min-width:992px){.typography__stories--quote{font-size:1.4rem}}.typography__col--heading-underline{background-image:url(/assets/img/heading-bg-underline.png);background-repeat:no-repeat;background-position:0 50px}.typography__col--heading-underline-tan{background-image:url(/assets/img/heading-bg-underline-tan.png);background-repeat:no-repeat;background-position:0 50px}ol,p,ul:not(.navbar-nav){color:#666;font-family:Open Sans,sans-serif;font-size:1rem}.typography__tables th{color:#c61f48;font-family:Roboto,sans-serif;font-weight:700}.typography__tables td{color:#666;font-family:Open Sans,sans-serif;font-size:1rem}h1 sup,h2 sup,h3 sup,h4 sup,h5 sup,h6 sup{font-size:45%!important;top:-1em;font-weight:400}.typography__register--h2{color:#fff;font-family:eurostile,sans-serif;font-size:2.4rem;font-weight:500;letter-spacing:.03rem;position:relative;top:30%;margin-bottom:-10px}@media screen and (min-width:400px){.typography__register--h2{font-size:3rem}}@media screen and (min-width:768px){.typography__register--h2{font-size:5.2rem}}@media screen and (min-width:1200px){.typography__register--h2{font-size:6rem}}@media screen and (min-width:1800px){.typography__register--h2{font-size:6.6rem}}.typography__register--h3{color:#fff;font-family:eurostile,sans-serif;font-size:1.2rem;font-weight:500;letter-spacing:.03rem;position:relative;top:31%}@media screen and (min-width:400px){.typography__register--h3{font-size:1.45rem;top:30.5%}}@media screen and (min-width:768px){.typography__register--h3{font-size:2.5rem;top:30%}}@media screen and (min-width:1200px){.typography__register--h3{font-size:2.6rem;top:30%}}@media screen and (min-width:1800px){.typography__register--h3{font-size:2.7rem;top:30%}}.typography__register--caption{color:#fff;font-family:Oswald,sans-serif;font-size:1rem;font-weight:500;letter-spacing:.07rem;position:absolute;bottom:15px}@media screen and (min-width:1200px){.typography__register--caption{font-size:1.2rem}}.typography__register-h4{font-family:Oswald,sans-serif;font-size:1.6rem}@media screen and (min-width:768px){.typography__register-h4{font-size:2rem}}@media screen and (min-width:1200px){.typography__register-h4{font-size:2rem}}@media screen and (min-width:1800px){.typography__register-h4{font-size:2.3rem}}.typography__register--h5{color:#c61f48;font-family:Oswald,sans-serif;font-size:2rem;font-weight:700;letter-spacing:.03rem;margin-bottom:50px}@media screen and (min-width:768px){.typography__register--h5{font-size:2.8rem}}@media screen and (min-width:992px){.typography__register--h5{margin-bottom:60px}}@media screen and (min-width:1200px){.typography__register-h5{font-size:3rem}}.typography__register--student-p{color:#000;font-weight:600;font-size:1.2em;margin-top:15px}.typography__register--img-cap{font-weight:600;display:block}.typography__register-itransfer{font-size:1.7rem;font-weight:600;line-height:1;position:absolute;top:4rem;margin-left:-20px}@media screen and (min-width:400px){.typography__register-itransfer{font-size:1.8rem}}@media screen and (min-width:768px){.typography__register-itransfer{font-size:1.9rem}}.typography__register--h6{color:#c61f48;font-family:Saira,"sans-serif";font-weight:700;font-size:2rem;letter-spacing:.03rem}.typography__larger-p{font-size:1.2rem}.typography__register--thank-you{color:#0f3b63;font-family:Eurostile,sans-serif;font-size:2rem}.typography__register--thank-you--message{color:#c61f48;font-family:Saira,"sans-serif";font-weight:700;font-size:1.4rem}@media screen and (min-width:768px){.typography__register--thank-you{font-size:2.4rem;margin-left:100px;margin-top:-10px}.typography__register--thank-you--message{font-size:1.6rem;margin-left:95px}}@media screen and (min-width:1200px){.typography__register--thank-you{font-size:2.6rem}}@media screen and (min-width:1800px){.typography__register--thank-you{font-size:3rem;margin-top:-15px}}@media screen and (max-width:992px){.typography__nowrap--sm{white-space:nowrap}}.typography__color--inherit{color:inherit}.typography__dropdown--category{color:#0f3b63!important;font-size:1.15em;font-weight:600}.typography__my-kcc{font-family:Eurostile,sans-serif;line-height:1.2;font-size:1.2rem}.typography__alert{color:#856404}.typography__alert:last-child{margin-bottom:0}.links__kcc-logo{display:inline;float:left;width:120px;height:80px}.links__offset{pointer-events:none}.links__offset a,.links__offset button{pointer-events:auto}.links__offset:before{content:" ";display:block;height:171px;margin-top:-171px;pointer-events:none;visibility:hidden}@media screen and (min-width:768px){.links__offset:before{height:150px;margin-top:-150px}}.links__darker-link{color:#006ce0}.navbar-light .navbar-nav .nav-link.links__nav-link--color:not(.btn-primary){color:#0f3b63}.navbar-light .navbar-nav .nav-link.links__nav-link--color:not(.btn-primary):focus,.navbar-light .navbar-nav .nav-link.links__nav-link--color:not(.btn-primary):hover{color:#c61f48}.navbar-light .navbar-nav .nav-link.links__nav-link--color.btn-primary{color:#fff}.navbar-light .navbar-nav .active>.nav-link{border-bottom-color:#c61f48;border-bottom-style:solid;border-bottom-width:thick;color:#0f3b63;padding-bottom:0}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:#c61f48}.links__phone--span{color:#fff;position:relative;text-decoration:none}.links__phone--span:visited{color:#fff}.links__phone--span:focus,.links__phone--span:hover{color:#fff;text-decoration:none}.links__phone--span:focus:after,.links__phone--span:hover:after{opacity:1;transform:translateY(-.2em)}.links__phone--span:after{background-color:#f99e1b;bottom:-.325rem;content:"";display:block;height:.1875rem;opacity:0;position:absolute;transition:opacity .3s,transform .3s;width:100%}.links__no-underline,.links__no-underline:hover{text-decoration:none}@media screen and (min-width:992px){.links__header-global--nav-local{position:relative}.active .links__header-global--nav-local:after{background-color:#c61f48;bottom:.125rem;content:"";display:block;height:.145rem;position:absolute;width:calc(100% - 1rem)}}.navbar-light .navbar-nav .nav-link.buttons__btn-primary-custom{background-color:#c61f48;color:#fff}.navbar-light .navbar-nav .nav-link.buttons__btn-primary-custom:hover{background-color:#0f3b63}.buttons__yt-subscribe{display:inline-block;height:1rem;margin-top:-4px;margin-right:5px;transform:scale(1.8);vertical-align:middle;width:1rem}.buttons__custom-danger{margin-right:20px}.buttons__btn-margin-top{margin-top:20px}.btn-primary{background-color:#0051a7;border-color:#003773}.btn-primary:hover{background-color:#022b55;border-color:#021e3d}.buttons__no-decoration,.buttons__no-decoration:focus,.buttons__no-decoration:hover,.buttons__no-decoration:visited{text-decoration:none}.buttons{display:inline-block;padding:.125rem .9rem}.buttons__my-kcc{border-color:#7a7b7b;padding-top:.125rem;padding-bottom:.125rem;margin-top:.25rem;margin-bottom:.375rem}.buttons__my-kcc--mobile{position:absolute;bottom:.65rem;left:1rem}@media screen and (min-width:992px){.buttons__my-kcc:focus,.buttons__my-kcc:hover{background-color:#0c3050}}@media screen and (max-width:992px){.buttons__my-kcc:focus,.buttons__my-kcc:hover{color:#c61f48}}.img__responsive--svg{height:auto;max-width:100%}.img__full-width{width:100%}.img__shadow,.img__shadow--border{filter:drop-shadow(3px 3px 10px rgba(126,126,126,.45))}.img__shadow--border{border:3px solid #0f3b63}.header-global{padding-left:0;padding-right:0}.header-global__brand{left:1rem;position:absolute;right:3.25rem;top:0;z-index:1044}.header-global__navbar--padding{padding:0}.header-global__nav-top{background-color:#0f3b63;flex-direction:row;padding-left:1rem;padding-right:calc(2.5rem + 20px);width:100%}.header-global__nav-bottom{background-color:#c61f48;flex-direction:row;padding:.3125rem 1rem;width:100%}.header-global__nav-local{border-bottom-color:#b1b1b1;flex-direction:row;border-bottom-style:solid;border-bottom-width:1px;padding:.5rem 1rem;width:100%}.header-global__navbar--toggler{border-color:rgba(0,0,0,.1);color:rgba(0,0,0,.5);position:absolute;right:1rem;top:3.25rem;z-index:1032}.header-global__navbar--toggler .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.header-global__close-icon,.header-global__search-icon{background-color:transparent;border:1px solid transparent;border-radius:.25rem;display:inline-block;font-size:1rem;font-weight:400;line-height:1.5;padding:.375rem .75rem;position:absolute;text-align:center;top:.125rem;right:.3125rem;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;transition-property:opacity;transition-timing-function:ease-in-out;transition-duration:.1s;z-index:1032}.header-global__open{bottom:0;overflow-x:hidden;overflow-y:auto}@media screen and (min-width:410px){.header-global__navbar--toggler{top:3.2rem}}@media screen and (min-width:576px){.header-global__navbar--toggler{top:3.25rem}}.header-global__close-icon--hidden,.header-global__search-icon--hidden{opacity:0;pointer-events:none;z-index:-1}@media screen and (max-width:992px){#headerGlobalNavbarContent.collapse.show .header-global__nav-top,#headerGlobalNavbarContent.collapsing .header-global__nav-top{padding-right:1rem}}@media screen and (max-width:992px){#headerGlobalNavbarContent.collapse.show .header-global__navbar-nav--divider:after,#headerGlobalNavbarContent.collapsing .header-global__navbar-nav--divider:after{background-color:#b1b1b1;content:"";display:block;height:.125rem;margin-bottom:1rem;margin-top:.5rem;width:100%}#headerGlobalNavbarContent.collapse.show .header-global__navbar-nav--divider:nth-child(2):after,#headerGlobalNavbarContent.collapsing .header-global__navbar-nav--divider:nth-child(2):after{margin-bottom:0}}#headerGlobalNavbar.header-global__navbar--search-toggle{top:3.5rem}@media screen and (min-width:992px){.navbar-expand-lg .navbar-nav .header-global__nav-local--navbar-brand.nav-link{padding-left:0}}@media screen and (min-width:992px){.header-global__nav-bottom--nav-link{padding-top:.75rem;padding-bottom:.75rem}}@media screen and (min-width:992px){.header-global__nav-top--nav-link{padding-top:.3125rem;padding-bottom:.3125rem}}@media screen and (min-width:992px){.navbar-expand-lg .navbar-nav .header-global__nav-top--nav-link{padding-left:.9rem;padding-right:.9rem}}@media screen and (min-width:992px){a.header-global__nav-top--nav-link{position:relative}a.header-global__nav-top--nav-link:after{background-color:#f99e1b;bottom:0;content:"";display:block;height:.125rem;opacity:0;position:absolute;transition:opacity .3s,transform .3s;width:calc(100% - 1.8rem)}a.header-global__nav-top--nav-link:focus:after,a.header-global__nav-top--nav-link:hover:after{opacity:1;transform:translateY(-.2em)}}@media screen and (min-width:992px){.header-global__nav-bottom{padding-bottom:0;padding-top:0}}@media screen and (min-width:992px){a.header-global__nav-bottom--nav-link{position:relative}a.header-global__nav-bottom--nav-link.header-global__nav-bottom--underlined:after{background-color:#f99e1b;color:#f99e1b;bottom:.25rem;border-top-width:.125rem;content:"";display:block;height:.125rem;margin-left:0;opacity:0;position:absolute;transition:opacity .3s,transform .3s;width:calc(100% - 1rem);opacity:1;transform:translateY(-.2em)}}@media screen and (min-width:992px){.header-global__nav-local{padding-bottom:.5rem;padding-top:.5rem}}.header-global__brand--svg{fill:#fff;height:28px;max-width:100%}.header-global__brand--svg .st0{fill:none}@media screen and (min-width:992px) and (max-width:1040px){.header-global__brand--svg{height:26px}}@media screen and (min-width:992px){.header-global__brand{top:3.125rem;right:unset}}#headerGlobalNavbarContent.collapse.show .typography__nav-heading,#headerGlobalNavbarContent.collapsing .typography__nav-heading{font-size:1.5rem}#headerGlobalNavbarContent.collapse.show .navbar-nav,#headerGlobalNavbarContent.collapsing .navbar-nav{flex-direction:column;background-color:#f8f9fa}#headerGlobalNavbarContent.collapse.show .header-global__nav-top,#headerGlobalNavbarContent.collapsing .header-global__nav-top{position:relative;top:2.65rem;margin-bottom:2.65rem}#headerGlobalNavbarContent.collapse.show .header-global__nav-top:before,#headerGlobalNavbarContent.collapsing .header-global__nav-top:before{background-color:#c61f48;content:"";display:block;height:2.65rem;position:absolute;top:-2.65rem;left:0;right:0;width:100%;z-index:-1}@media screen and (max-width:991px){#headerGlobalNavbarContent.collapse:not(.show){display:block}#headerGlobalNavbarContent.collapse:not(.show) .header-global__nav-top{display:none;position:absolute}#headerGlobalNavbarContent.collapse:not(.show) .header-global__nav-bottom .nav-link,#headerGlobalNavbarContent.collapse:not(.show) .header-global__nav-local .nav-link:not(.navbar-brand){visibility:hidden}}.header-global__nav--close-icon,.header-global__nav--search-icon{background-size:20px 20px;background-position:50%;background-repeat:no-repeat;display:block;height:20px;margin-top:.3125rem;pointer-events:none;width:20px}.header-global__search-collapse{left:.5rem;margin-left:auto;margin-right:auto;position:absolute;right:2rem;top:-56px;width:95%}@media screen and (min-width:360px){.header-global__search-collapse{left:.55rem}}@media screen and (min-width:410px){.header-global__search-collapse{left:.65rem;left:1rem}}@media screen and (min-width:768px){.header-global__search-collapse{left:1.25rem}}@media screen and (min-width:992px){.header-global__search-collapse{left:1.5rem}}.header-global__search-collapse.header-global__search-collapse--visible{top:-46px}@media screen and (min-width:992px){.header-global__search-collapse.header-global__search-collapse--visible{top:-40px}}.header-global__navbar--search-toggle{top:50px}.header-global__navbar--search-toggle:before{background-color:#c61f48;content:"";display:block;height:64px;position:absolute;top:-60px;width:100%}@media screen and (min-width:992px){.header-global__navbar--search-toggle:before{background-color:#0f3b63}}@media screen and (min-width:992px){.header-global__dropdown.show{background-color:#b8babc}}@keyframes a{0%{opacity:0}to{opacity:1}}@media screen and (min-width:992px){.header-global__nav-bottom .dropdown .dropdown-menu:hover,.header-global__nav-bottom .dropdown:hover .dropdown-menu{animation-duration:.5s;animation-name:a;display:block!important}}.header-global__nav-bottom .dropdown-item{color:#666}.header-global__nav-bottom .dropdown-item:active{background-color:#0f3b63;color:#fff}.header-global__nav-bottom .dropdown-item:focus,.header-global__nav-bottom .dropdown-item:hover{background-color:#e2e3e4;border-radius:.175rem}@media screen and (min-width:992px){.header-global__nav-bottom .dropdown:hover{background-color:#b8babc}}@media screen and (min-width:992px){.nav-item.dropdown.header-global__dropdown--position{position:static}}@media screen and (min-width:992px){.header-global__dropdown-menu--full-width{left:.75rem;right:.75rem;top:5.77rem}}@media screen and (min-width:1300px){.header-global__dropdown-menu--full-width{left:1rem;right:1rem}}@media screen and (min-width:992px){.header-global__drodpown-menu--img{width:280px}.header-global__drodpown-menu--img--border{border:thin solid #d9d9d9}}@media screen and (max-width:991px){.header-global__core:after{content:"";display:block;height:60px;background-color:#f8f9fa;border-bottom-color:#b1b1b1;border-bottom-style:solid;border-bottom-width:1px}}@media screen and (min-width:992px){#navGlobalTop .header-global__nav-top--nav-link{margin-top:.3125rem}}.svg__fill--blue{fill:#0f3b63}.svg__fill--white{fill:#fff}.svg{height:100px;width:100px}.svg--none{fill:none}.svg--blue{fill:#0f3b63}.svg--red{fill:#c61f48}.header__bg{background-image:url(/assets/img/DSC_8724_4x3.jpg);background-size:cover;background-position:50%;background-repeat:no-repeat;height:55%;height:55vh}@media screen and (min-width:1200px){.header__bg{height:auto}}.footer__margin{margin-top:20px}.footer{background-color:#f8f9fa;margin-top:60px;padding-bottom:40px;padding-top:40px;width:100%;border-top-color:rgba(0,0,0,.15);border-top-style:solid;border-top-width:thin}a.footer-link{color:#0f3b63}a.footer-link:hover{text-decoration:none!important;color:#c61f48}.footer-heading{transition-property:color;transition-timing-function:ease;transition-duration:.3s}.footer-icons{background-color:#c61f48;border-radius:50%;transition-property:background-color;transition-timing-function:ease;transition-duration:.3s;height:33px;margin:4px;padding:2px;width:33px}@media screen and (min-width:360px){.footer-icons{height:40px;margin:5px;width:40px}}@media screen and (min-width:412px){.footer-icons{height:50px;width:50px}}a.footer-social-links,a.footer-social-links .footer-icons{text-decoration:none!important}a.footer-social-links:hover .footer-icons{text-decoration:none!important;background-color:#0f3b63}.footer__mobile--margin-bottom{margin-bottom:20px}@media screen and (min-width:992px){.footer__mobile--margin-bottom{margin-bottom:0}}.footer__svg--logo{height:36px}.slider-container{padding-left:0;padding-right:0}@media screen and (min-width:1400px){.index-slider-container,.slider-container{max-width:1300px}}.slider-row{margin-left:0;margin-right:0}.heading-container{border-left-color:#fff;border-left-style:solid;border-left-width:2px;margin-left:.9%;padding-left:5px;position:absolute;top:55%;width:7%;z-index:4444}@media screen and (min-width:488px){.heading-container{top:60%;width:6%}}@media screen and (min-width:768px){.heading-container{margin-left:.7%;padding-left:10px;top:61%;width:6%}}@media screen and (min-width:992px){.heading-container{margin-left:.6%;padding-left:20px;top:67%}}@media screen and (min-width:1200px){.heading-container{top:69%}}.baseballSlider .slide-img,.heroSlider .slide-img{position:relative;width:100%}.baseballSlider .slick-next,.heroSlider .slick-next{right:20px}.baseballSlider .slick-prev,.heroSlider .slick-prev{left:20px;z-index:4}@media screen and (min-width:576px){.baseballSlider .slick-next,.heroSlider .slick-next{right:25px}.baseballSlider .slick-prev,.heroSlider .slick-prev{left:25px;z-index:4}}.baseballSlider .slick-next,.baseballSlider .slick-prev,.heroSlider .slick-next,.heroSlider .slick-prev{height:25px;top:75%;width:25px}@media screen and (min-width:992px){.baseballSlider .slick-next,.baseballSlider .slick-prev,.heroSlider .slick-next,.heroSlider .slick-prev{height:40px;top:80%;width:40px}}.baseballSlider .slick-dots li button:before,.heroSlider .slick-dots li button:before{color:#e5e8ed;font-size:12px;line-height:30px;opacity:1;text-shadow:-1px -1px 0 #000,1px -1px 0 #000,-1px 1px 0 #000,1px 1px 0 #000}.baseballSlider .slick-dots li.slick-active button:before,.heroSlider .slick-dots li.slick-active button:before{color:#0f3b63;opacity:1;text-shadow:-1px -1px 0 #000,1px -1px 0 #000,-1px 1px 0 #000,1px 1px 0 #000}.baseballSlider .slick-dots li,.heroSlider .slick-dots li{margin-left:1px;margin-right:1px;padding-left:0;padding-right:0}.njcaa-link{margin-top:30px;position:absolute;right:15%;z-index:1000}@media screen and (min-width:1600px){.njcaa-link{right:20%}}@media screen and (min-width:1900px){.njcaa-link{right:25%}}@media screen and (min-width:1200px){.njcaa-logo{width:175px}}@media screen and (min-width:1600px){.njcaa-logo{width:200px}}.baseballSlider{visibility:hidden}.slick-track{margin-left:0}.social-icons__icons{background-color:#c61f48;border-radius:50%;height:33px;margin:4px;padding:2px;transition-property:background-color;transition-timing-function:ease;transition-duration:.3s;width:33px}@media screen and (min-width:360px){.social-icons__icons{height:40px;margin:5px;width:40px}}@media screen and (min-width:412px){.social-icons__icons{height:50px;width:50px}}a.social-icons__links,a.social-icons__links .social-icons__icons{text-decoration:none!important}a.social-icons__links:hover .social-icons__icons{text-decoration:none!important;background-color:#0f3b63}.nav-landing{background-color:#c61f48;height:56px;margin-left:0;margin-right:0;max-width:100%;min-width:100%;padding-bottom:5px;padding-left:5%;padding-top:5px;width:100%;z-index:1031}.nav-landing__kcc-logo{margin-left:5px;width:190px}@media screen and (min-width:360px){.nav-landing__kcc-logo{width:220px}}@media screen and (min-width:375px){.nav-landing__kcc-logo{width:230px}}@media screen and (min-width:410px){.nav-landing__kcc-logo{width:255px}}@media screen and (min-width:488px){.nav-landing__kcc-logo{width:260px}}@media screen and (min-width:576px){.nav-landing__kcc-logo{width:300px}}@media screen and (min-width:768px){.nav-landing__kcc-logo{width:320px}}@media screen and (min-width:992px) and (max-width:1100px){.nav-landing__kcc-logo{margin-left:-25px;width:310px}}@media screen and (min-width:1100px){.nav-landing__kcc-logo{margin-left:-25px;width:340px}}.nav-landing__navbar-brand{margin-left:-10px}@media screen and (min-width:410px){.nav-landing__navbar-brand{margin-left:-15px}}@media screen and (min-width:488px){.nav-landing__navbar-brand{margin-left:-20px}}@media screen and (min-width:576px){.nav-landing__navbar-brand{margin-left:-25px}}@media screen and (min-width:768px){.nav-landing__navbar-brand{margin-left:-35px}}@media screen and (min-width:992px){.nav-landing__navbar-brand{margin-left:-20px}}@media screen and (min-width:1000px){.nav-landing__navbar-brand{margin-left:-18px}}@media screen and (min-width:1080px){.nav-landing__navbar-brand{margin-left:-22px}}@media screen and (min-width:1200px){.nav-landing__navbar-brand{margin-left:-2.5%}}@media screen and (min-width:1600px){.nav-landing__navbar-brand{margin-left:-3%}}@media screen and (min-width:1900px){.nav-landing__navbar-brand{margin-left:-3.25%}}@media screen and (min-width:2000px){.nav-landing__navbar-brand{margin-left:-3.5%}}.nav-landing__kcc-logo-inverse{margin-left:-3px;width:50px;margin-right:-10px}@media screen and (min-width:360px){.nav-landing__kcc-logo-inverse{width:60px}}@media screen and (min-width:410px){.nav-landing__kcc-logo-inverse{width:68px}}@media screen and (min-width:488px){.nav-landing__kcc-logo-inverse{width:68px}}@media screen and (min-width:576px){.nav-landing__kcc-logo-inverse{width:73px}}@media screen and (min-width:768px){.nav-landing__kcc-logo-inverse{width:80px}}@media screen and (min-width:992px){.nav-landing__kcc-logo-inverse{width:80px;margin-left:-30px;margin-right:20px}}@media screen and (min-width:1100px){.nav-landing__kcc-logo-inverse{width:85px;margin-right:15px}}@media screen and (min-width:1300px){.nav-landing__kcc-logo-inverse{width:85px;margin-left:-35px}}@media screen and (min-width:1400px){.nav-landing__kcc-logo-inverse{width:85px;margin-left:-40px}}.error__main-heading{color:#c61f48;font-weight:700}.error__sub-heading{color:#0f3b63;font-weight:700}.benefits__typography--caption{bottom:15px;color:#fff;filter:drop-shadow(0 0 2px rgba(0,0,0,.25));font-family:Oswald,sans-serif;font-size:1rem;font-weight:700;letter-spacing:.07rem;position:absolute;right:25px}@media screen and (min-width:768px){.benefits__typography--caption{font-size:1.1rem}}@media screen and (min-width:1000px){.benefits__typography--caption{font-size:1.2rem}}.benefits__typography-h4{font-family:Oswald,sans-serif;font-size:1.6rem;margin-bottom:.5rem}@media screen and (min-width:768px){.benefits__typography-h4{font-size:2rem}}@media screen and (min-width:1200px){.benefits__typography-h4{font-size:2rem;margin-bottom:1.5rem}}@media screen and (min-width:1800px){.benefits__typography-h4{font-size:2.4rem;margin-bottom:1.8rem}}.benefits__typography--h5{color:#c61f48;font-family:Oswald,sans-serif;font-size:2rem;font-weight:700;letter-spacing:.03rem}.benefits__typography--h5--mb{margin-bottom:40px}@media screen and (min-width:768px){.benefits__typography--h5{font-size:2.8rem}}@media screen and (min-width:992px){.benefits__typography--h5--mb{margin-bottom:60px}}.benefits__testimonials--mb{margin-bottom:40px}@media screen and (min-width:1200px){.benefits__testimonials--mb{margin-bottom:0}}.benefits__typography--h5--black{color:#000;font-family:Oswald,sans-serif;font-size:2rem;font-weight:400;letter-spacing:.03rem;margin-bottom:60px}@media screen and (min-width:768px){.benefits__typography--h5--black{font-size:2.1rem}}@media screen and (min-width:1200px){.benefits__typography-h5--black{font-size:3rem}}.benefits__typography--student-p{font-family:Open Sans,sans-serif;color:#000;font-weight:600;font-size:1.15rem;margin-top:15px;margin-bottom:.5rem}@media screen and (min-width:1200px){.benefits__typography--student-p--larger{font-size:1.3rem}}.benefits__typography--img-cap{font-family:Open Sans,sans-serif;font-size:1.35rem;font-weight:600;display:block}.benefits__typography-itransfer{font-size:1.7rem;font-weight:600;line-height:1;position:absolute;top:4rem;margin-left:-20px}@media screen and (min-width:400px){.benefits__typography-itransfer{font-size:1.8rem}}@media screen and (min-width:768px){.benefits__typography-itransfer{font-size:1.9rem}}.benefits__typography--h6{color:#c61f48;font-family:Saira,"sans-serif";font-weight:700;font-size:2rem;letter-spacing:.03rem}.benefits__typography--thank-you{color:#0f3b63;font-family:Eurostile,sans-serif;font-size:2rem}.benefits__typography--thank-you--message{color:#c61f48;font-family:Saira,"sans-serif";font-weight:700;font-size:1.4rem}@media screen and (min-width:768px){.benefits__typography--thank-you{font-size:2.4rem;margin-left:100px;margin-top:-10px}.benefits__typography--thank-you--message{font-size:1.6rem;margin-left:95px}}@media screen and (min-width:1200px){.benefits__typography--thank-you{font-size:2.6rem}}@media screen and (min-width:1800px){.benefits__typography--thank-you{font-size:3rem;margin-top:-15px}}.benefits__check-svg{margin-top:-60px;width:80px}.benefits__blue-section{background-color:#ccdde1;padding-bottom:25px;padding-top:25px}.benefits__card--spacing{margin-bottom:40px}.benefits__first-section--marg{margin-top:15px;background-color:#ccdde1;padding-bottom:25px;padding-top:25px}@media screen and (min-width:1200px){.benefits__first-section--marg{margin-top:15px}}.benefits__section--marg{margin-top:35px}@media screen and (min-width:1200px){.benefits__section--marg{margin-top:65px}}.benefits__row--pad{margin-top:25px}@media screen and (min-width:1200px){.benefits__row--pad{margin-top:0}}.benefits__itransfer-img{width:120px;margin-top:40px}@media screen and (min-width:400px){.benefits__itransfer-img{width:140px}}@media screen and (min-width:768px){.benefits__itransfer-img{width:150px}}@media screen and (min-width:992px){.benefits__itransfer-img{margin-top:20px;width:160px}}.benefits__idfpr-img{width:330px}@media screen and (max-width:992px){.benefits__idfpr-img{margin-bottom:15px;margin-top:40px}}.benefits__iccb-img{width:250px}@media screen and (max-width:992px){.benefits__iccb-img{margin-top:15px}}.benefits__offset-global-nav{margin-top:60px}.benefits__accredited--card{background-color:#0f3b63;padding:15px 10px 25px;width:90%}@media screen and (min-width:400px){.benefits__accredited--card{width:75%}}@media screen and (min-width:768px){.benefits__accredited--card{width:50%}}@media screen and (min-width:992px){.benefits__accredited--card{width:100%}}@media screen and (min-width:1200px){.benefits__accredited--card{width:75%}}.benefits__accredited--span-l{color:#fff;font-size:2.1rem;font-weight:bolder;display:block;line-height:1;margin-top:-10px;margin-bottom:5px}.benefits__accredited--span-s{color:#fff;font-size:1.1rem;font-style:italic;line-height:.5;font-weight:600;letter-spacing:-.04rem}.benefits__accredited--span--source{display:block}.benefits__accredited--itransfer--wrapper{width:50%}.benefits__borders--circle-img{border:3px solid #fff;filter:drop-shadow(5px 5px 12px #b1b1b1);width:50%}@media screen and (min-width:768px){.benefits__borders--circle-img{width:100%}}#page-top:before{display:block;content:" ";margin-top:-60px;height:60px;visibility:hidden;pointer-events:none}.hero-slider__slider--sub-heading{color:#fff;font-family:Roboto,sans-serif;font-size:.7em;font-weight:400;letter-spacing:.01em;margin-bottom:2px;padding-top:5px;text-transform:uppercase}@media screen and (min-width:768px){.hero-slider__slider--sub-heading{font-size:.9em}}@media screen and (min-width:992px){.hero-slider__slider--sub-heading{font-size:1em}}@media screen and (min-width:1200px){.hero-slider__slider--sub-heading{font-size:1.2em}}.hero-slider__slider--slide-heading{color:#fff;font-family:Libre Franklin,sans-serif;font-size:1em;font-weight:300;letter-spacing:.02em;text-transform:uppercase}@media screen and (min-width:360px){.hero-slider__slider--slide-heading{font-size:1.2em}}@media screen and (min-width:768px){.hero-slider__slider--slide-heading{font-size:2.1em}}@media screen and (min-width:992px){.hero-slider__slider--slide-heading{font-size:2.8em}}@media screen and (min-width:1200px){.hero-slider__slider--slide-heading{font-size:3em}}.hero-slider__heading--bold{color:#fff;filter:drop-shadow(2px 2px 5px #000);font-family:Libre Franklin,sans-serif;font-size:1em;font-weight:500;letter-spacing:.02em;text-transform:uppercase}@media screen and (min-width:360px){.hero-slider__heading--bold{font-size:1.2em}}@media screen and (min-width:768px){.hero-slider__heading--bold{font-size:2.1em}}@media screen and (min-width:992px){.hero-slider__heading--bold{font-size:2.8em}}@media screen and (min-width:1200px){.hero-slider__heading--bold{font-size:3em}}.hero-slider__slider{padding-left:0;padding-right:0}.hero-slider__slider--heading-container{margin-left:.5%;padding-left:5px;position:absolute;top:55%;width:10%;z-index:4444}@media screen and (min-width:488px){.hero-slider__slider--heading-container{top:63%}}@media screen and (min-width:576px){.hero-slider__slider--heading-container{top:64%}}@media screen and (min-width:768px){.hero-slider__slider--heading-container{padding-left:10px;top:64.5%}}@media screen and (min-width:992px){.hero-slider__slider--heading-container{padding-left:20px;top:70%}}@media screen and (min-width:1200px){.hero-slider__slider--heading-container{top:71%}}.hero-slider__slides-4{width:10%}.hero-slider__slides-8{width:5%}.hero-slider__slider--slide-img{position:relative;width:100%}.hero-slider__slider .slick-next{right:10px}.hero-slider__slider .slick-prev{left:10px;z-index:1}@media screen and (min-width:488px){.hero-slider__slider .slick-next{right:20px}}@media screen and (min-width:488px){.hero-slider__slider .slick-prev{left:20px}}@media screen and (min-width:576px){.hero-slider__slider .slick-next{right:25px}.hero-slider__slider .slick-prev{left:25px}}.hero-slider__slider .slick-next,.hero-slider__slider .slick-prev{height:25px;top:75%;width:25px}@media screen and (min-width:992px){.hero-slider__slider .slick-next,.hero-slider__slider .slick-prev{height:40px;top:80%;width:40px}}.hero-slider__slider .slick-dots li button:before{color:#e5e8ed;font-size:12px;line-height:30px;opacity:1;text-shadow:-1px -1px 0 #000,1px -1px 0 #000,-1px 1px 0 #000,1px 1px 0 #000}.hero-slider__slider .slick-dots li.slick-active button:before{color:#0f3b63;opacity:1;text-shadow:-1px -1px 0 #000,1px -1px 0 #000,-1px 1px 0 #000,1px 1px 0 #000}.hero-slider__slider .slick-dots li{margin-left:1px;margin-right:1px;padding-left:0;padding-right:0}.hero-slider__slide-img--border{border:thin solid #d9d9d9}.hero-slider__slider{visibility:hidden}.slick-initialized{visibility:visible}.slick-next:before{content:url(/assets/img/dbl-next_mobile.svg)}.slick-prev:before{content:url(/assets/img/dbl-prev_mobile.svg)}@media screen and (min-width:992px){.slick-next:before{content:url(/assets/img/dbl-next.svg)}.slick-prev:before{content:url(/assets/img/dbl-prev.svg)}}.hero-slider__button--toggle{background:transparent;border:none;color:transparent;cursor:pointer;display:block;font-size:0;height:25px;right:50%;margin-right:-12.5px;line-height:0;outline:none;padding:0;position:absolute;bottom:0;transform:translateY(-50%);width:25px}@media screen and (min-width:992px){.hero-slider__button--toggle{width:40px;bottom:25px;margin-right:-20px}}.hero-slider__button--toggle:before{content:url(/assets/img/pause_mobile.svg);opacity:.75}@media screen and (min-width:992px){.hero-slider__button--toggle:before{content:url(/assets/img/pause.svg)}}.hero-slider__button--play:before{content:url(/assets/img/play_mobile.svg);opacity:.75}@media screen and (min-width:992px){.hero-slider__button--play:before{content:url(/assets/img/play.svg)}}.hero-slider__button--toggle:focus,.hero-slider__button--toggle:hover{color:transparent;outline:none;background:transparent}.hero-slider__button--toggle:focus:before,.hero-slider__button--toggle:hover:before{opacity:1}.img-hover__img-wrapper{margin:0 0 15px;right:0}@media (min-width:767px){.img-hover__img-wrapper{margin:0 0 30px}}.img-hover__img-link{border-radius:5px;cursor:pointer;display:block;margin:0 auto;max-width:400px;overflow:hidden;position:relative}.img-hover__hover{background:#0f3b63;border:5px solid #c61f48;border-radius:5px;height:100%;position:absolute;transition:all .5s ease;width:100%;z-index:2;opacity:0}.img-hover__hover--inverse{opacity:.7}.img-hover__hover:hover,.img-hover__thumb-caption:hover+.img-hover__hover{opacity:.85}.img-hover__hover--inverse:hover,.img-hover__thumb-caption:hover+.img-hover__hover--inverse{opacity:0}.img-hover__img-ease{transition:all 1s ease-in-out}.img-hover__img-link:hover img.img-hover__img-ease{transform:scale(1.2)}.img-hover__thumb-caption{color:#fff;font-size:20px;height:20px;margin-top:-12px;position:absolute;text-align:center;top:50%;width:100%;z-index:3}.sub-nav__nav-link{color:#0f3b63;font-family:Oswald,sans-serif;font-weight:500;margin-left:10px;margin-right:10px;padding-left:5px;padding-right:5px}.sub-nav__nav-link:hover{color:#c61f48}.nav-item.active .sub-nav__nav-link{border-bottom-color:#c61f48;border-bottom-style:solid;border-bottom-width:thick;padding-bottom:0}.sub-nav__navbar{border:1px solid #b1b1b1;border-radius:3px}.sub-nav__content--wrapper{padding-left:25px;padding-right:25px}.card-section__col--margin-btm{margin-bottom:2.5rem}.card-section__text-wrapper{margin-bottom:10px;min-height:14rem}.contacts__section-margin{margin-top:40px}.contacts__col-bottom-margin{margin-bottom:40px}.contacts__padding-top{padding-top:40px}.contacts__col--img{margin-left:0;margin-right:-15px}@media screen and (min-width:360px){.contacts__col--img{margin-left:5px}}@media screen and (min-width:410px){.contacts__col--img{margin-left:10px}}@media screen and (min-width:992px){.contacts__padding-left{padding-left:50px}}@media screen and (min-width:1200px){.contacts__padding-left{padding-left:70px}}.contacts__portrait{border:5px solid #fff}.accordion__padding-left{padding-left:0}.accordion__typography--card-header .btn-link{color:#0f3b63;font-family:Open Sans,sans-serif;font-size:1.4rem;font-weight:700;text-align:left}.accordion__typography--card-header .btn-link:hover{color:#c61f48}.accordion__button:before{background-color:#0f3b63;border-radius:50%;color:#fff;content:" \002D";display:inline-block;font-family:Open Sans,sans-serif;font-size:2rem;font-weight:400;height:30px;line-height:30px;margin-right:10px;text-align:center;text-decoration:none!important;text-indent:0;vertical-align:middle;width:30px}.accordion__button.collapsed:before{content:" \002B"}.accordion__button{text-indent:-45px;margin-left:45px}.loader{text-align:center}.loader__img{height:100px;width:100px}.nav-global{background-color:#c61f48;height:56px;margin-left:0;margin-right:0;max-width:100%;min-width:100%;padding-bottom:5px;padding-left:5%;padding-top:5px;width:100%;z-index:1031}.nav-global__kcc-logo{margin-left:5px;width:190px}@media screen and (min-width:360px){.nav-global__kcc-logo{width:220px}}@media screen and (min-width:375px){.nav-global__kcc-logo{width:230px}}@media screen and (min-width:410px){.nav-global__kcc-logo{width:255px}}@media screen and (min-width:488px){.nav-global__kcc-logo{width:260px}}@media screen and (min-width:576px){.nav-global__kcc-logo{width:300px}}@media screen and (min-width:768px){.nav-global__kcc-logo{width:320px}}@media screen and (min-width:992px) and (max-width:1100px){.nav-global__kcc-logo{margin-left:-25px;width:310px}}@media screen and (min-width:1100px){.nav-global__kcc-logo{margin-left:-25px;width:340px}}.clearSearch{background-position:center 72px;padding-top:72px}.search-row{background-color:#005bac;height:46px}.nav-global__gcse-wrapper{margin-left:-5px}@media screen and (min-width:992px){.nav-global__gcse-wrapper{display:block;float:right;margin-top:-18px;width:50%}}.nav-global__search-icon{background-position:50%;background-size:20px 20px;background-repeat:no-repeat;display:inline;height:22px;margin:4px;pointer-events:none;width:22px}@media screen and (min-width:360px){.nav-global__search-icon{background-size:21px 21px}}@media screen and (min-width:410px){.nav-global__search-icon{background-size:22px 22px}}@media screen and (min-width:576px){.nav-global__search-icon{background-size:24px 24px;height:24px;width:24px}}@media screen and (min-width:768px){.nav-global__search-icon{background-size:25px 25px;height:26px;width:26px}}.nav-global .nav-global__search-toggle .nav-global__search-icon{float:right}.nav-global__search-collapse{display:none;margin-top:-113px}@media screen and (min-width:576px){.nav-global__search-collapse{margin-top:-115px}}@media screen and (min-width:992px){.nav-global__search-collapse{display:block;margin-left:0;margin-right:0;margin-top:0}}.nav-global__search-collapse--visible{display:block;width:100%}.nav-global__search-toggle{top:40px;text-decoration:none!important}.nav-global__search--conatiner{max-width:1100px;margin-left:auto;margin-right:auto}.nav-global__search--open-background{width:120%;background-color:#c61f48;height:65px;position:absolute;z-index:-1;top:-60px;left:-40px}.nav-global__navbar-brand{margin-left:-10px}@media screen and (min-width:410px){.nav-global__navbar-brand{margin-left:-15px}}@media screen and (min-width:488px){.nav-global__navbar-brand{margin-left:-20px}}@media screen and (min-width:576px){.nav-global__navbar-brand{margin-left:-25px}}@media screen and (min-width:768px){.nav-global__navbar-brand{margin-left:-35px}}@media screen and (min-width:992px){.nav-global__navbar-brand{margin-left:-20px}}@media screen and (min-width:1000px){.nav-global__navbar-brand{margin-left:-18px}}@media screen and (min-width:1080px){.nav-global__navbar-brand{margin-left:-22px}}@media screen and (min-width:1200px){.nav-global__navbar-brand{margin-left:-2.5%}}@media screen and (min-width:1600px){.nav-global__navbar-brand{margin-left:-3%}}@media screen and (min-width:1900px){.nav-global__navbar-brand{margin-left:-3.25%}}@media screen and (min-width:2000px){.nav-global__navbar-brand{margin-left:-3.5%}}.nav-global__kcc-logo-inverse{margin-left:-3px;width:50px;margin-right:-10px}@media screen and (min-width:360px){.nav-global__kcc-logo-inverse{width:60px}}@media screen and (min-width:410px){.nav-global__kcc-logo-inverse{width:68px}}@media screen and (min-width:488px){.nav-global__kcc-logo-inverse{width:68px}}@media screen and (min-width:576px){.nav-global__kcc-logo-inverse{width:73px}}@media screen and (min-width:768px){.nav-global__kcc-logo-inverse{width:80px}}@media screen and (min-width:992px){.nav-global__kcc-logo-inverse{width:80px;margin-left:-30px;margin-right:20px}}@media screen and (min-width:1100px){.nav-global__kcc-logo-inverse{width:85px;margin-right:15px}}@media screen and (min-width:1300px){.nav-global__kcc-logo-inverse{width:85px;margin-left:-35px}}@media screen and (min-width:1400px){.nav-global__kcc-logo-inverse{width:85px;margin-left:-40px}}.nav-local{top:55px;border-bottom-color:#b1b1b1;border-bottom-style:solid;border-bottom-width:1px}.nav-local__search-toggle{top:86px}.nav-local .nav-link{margin-left:10px;margin-right:10px}@media screen and (min-width:992px){.nav-local .nav-link{margin-left:5px;margin-right:5px}}@media screen and (min-width:1200px){.nav-local .nav-link{margin-left:10px;margin-right:10px}}#mainNav .navbar-brand{transition:all .4s ease}@media screen and (min-width:992px){#mainNav.navbar-shrink{padding-top:0;padding-bottom:0;opacity:.96}#mainNav.navbar-shrink .navbar-brand{transform:scale(.8)}}.yt-embed__wrapper{height:0;overflow:hidden;padding-bottom:56.25%;padding-top:30px;position:relative}.yt-embed__wrapper iframe{height:100%;left:0;position:absolute;top:0;width:100%}.positioning__margin-bottom{margin-bottom:30px}@media screen and (min-width:1200px){.positioning__margin-bottom{margin-bottom:40px}}.positioning__margin-top{margin-top:30px}@media screen and (min-width:1200px){.positioning__margin-top{margin-top:40px}}.positioning__heading-margin-bottom{margin-bottom:15px}@media screen and (min-width:1200px){.positioning__heading-margin-bottom{margin-bottom:20px}}.position__offset-fixed-nav{margin-top:105px}@media screen and (min-width:360px){.position__offset-fixed-nav{margin-top:110px}}@media screen and (min-width:410px){.position__offset-fixed-nav{margin-top:120px}}@media screen and (min-width:576px){.position__offset-fixed-nav{margin-top:125px}}@media screen and (min-width:768px){.position__offset-fixed-nav{margin-top:130px}}@media screen and (min-width:992px){.position__offset-fixed-nav{margin-top:170px}}.position__sub-nav--offset-fixed-nav{margin-bottom:15px;margin-top:130px}@media screen and (min-width:360px){.position__sub-nav--offset-fixed-nav{margin-bottom:20px;margin-top:135px}}@media screen and (min-width:410px){.position__sub-nav--offset-fixed-nav{margin-top:140px}}@media screen and (min-width:576px){.position__sub-nav--offset-fixed-nav{margin-top:145px}}@media screen and (min-width:768px){.position__sub-nav--offset-fixed-nav{margin-top:150px}}@media screen and (min-width:992px){.position__sub-nav--offset-fixed-nav{margin-top:155px}}@media screen and (min-width:1200px){.position__sub-nav--offset-fixed-nav{margin-top:160px}}.positioning__iframe-wrapper{margin-bottom:20px;position:relative;padding-bottom:56.25%;padding-top:25px;height:0}.positioning__iframe-wrapper iframe{position:absolute;top:0;left:0;width:100%;height:100%}.positioning__accordian--padding{margin-top:15px;padding-left:5px;padding-right:5px}@media screen and (min-width:992px){.positioning__accordian--padding{margin-top:60px}}.positioning__accordian-marg{margin-top:75px}.positioning__card--spacing{margin-bottom:40px}.positioning__first-section--marg{margin-top:15px;background-color:#ccdde1;padding-bottom:25px;padding-top:25px}@media screen and (min-width:1200px){.positioning__first-section--marg{margin-top:15px}}.positioning__section--marg{margin-top:35px}@media screen and (min-width:1200px){.positioning__section--marg{margin-top:65px}}.positioning__row--pad{margin-top:25px}.positioning__register--itransfer-img{width:120px;margin-top:40px}@media screen and (min-width:400px){.positioning__register--itransfer-img{width:140px}}@media screen and (min-width:768px){.positioning__register--itransfer-img{width:150px}}@media screen and (min-width:992px){.positioning__register--itransfer-img{padding-left:25px}}.positioning__register--mobile-row--pad{padding-left:0}@media screen and (min-width:576px){.positioning__register--mobile-row--pad{padding-left:20%}}@media screen and (min-width:992px){.positioning__register--mobile-row--pad{padding-left:0}}.positioning__register--idfpr-img{width:330px;margin-top:60px}@media screen and (max-width:992px){.positioning__register--idfpr-img{margin-bottom:15px}}.positioning__register--iccb-img{width:250px}@media screen and (max-width:992px){.positioning__register--iccb-img{margin-top:15px}}.positioning__heading--row{margin-top:16%}.positioning__check-svg{margin-top:-60px;width:80px}.positioning__blue-section{background-color:#ccdde1;padding-bottom:25px;padding-top:25px}.positioning__col--offset{margin-right:-25px}@media screen and (min-width:768px){.positioning__col--offset{margin-right:-45px}}.positioning__offset-global-nav{margin-top:60px}@media screen and (min-width:768px){.position__col--min-height{min-height:15rem}}@media screen and (min-width:992px){.position__col--min-height{min-height:12rem}}@media screen and (min-width:1200px){.position__col--min-height{min-height:9rem}}.position__offset-core-nav{margin-top:99px}.position__offset-core-nav.position__campus-alerts--open{margin-top:109px}@media screen and (min-width:992px){.position__offset-core-nav{margin-top:80px}.position__offset-core-nav.position__campus-alerts--open{margin-top:93px}}.position__offset-alert{margin-top:125px;height:1px}.position__offset-alert--visible{height:auto}@media screen and (min-width:400px){.position__offset-alert{margin-top:135px}}@media screen and (min-width:576px){.position__offset-alert{margin-top:140px}}@media screen and (min-width:768px){.position__offset-alert{margin-top:145px}}@media screen and (min-width:992px){.position__offset-alert{margin-top:150px}}.position__offset-alert.position__offset-alert-core{margin-top:115px}@media screen and (min-width:992px){.position__offset-alert.position__offset-alert-core{margin-top:110px}}.margins__col--top{margin-top:40px}.margins__col--btm,.margins__heading--btm{margin-bottom:40px}.margins__heading-tan--btm{margin-bottom:21px}.margins__bottom--none{margin-bottom:0}.padding__col--mobile-none{padding-left:0;padding-right:0}@media screen and (min-width:992px){.padding__col--mobile-none{padding-left:15px;padding-right:15px}}.padding__x--none{padding-left:0;padding-right:0}.tables td,.tables th{border:thin solid gray;padding-left:5px;padding-right:5px}.section__heading-underline{background-image:url(/assets/img/heading-bg-underline.png);background-repeat:no-repeat;background-position:0 50px}.section__heading-underline--transparent{background-image:url(/assets/img/heading-bg-underline-transparent.png);background-repeat:no-repeat;background-position:0 50px}.section__heading-underline-tan{background-image:url(/assets/img/heading-bg-underline-tan.png);background-repeat:no-repeat;background-position:0 50px}.section__margin-bottom{margin-bottom:3rem}.background__color--tan{background-color:#fcf1d6}.thank-you__check-mark{height:75px;width:75px}.home__col--heading-underline{background-image:url(/assets/img/heading-bg-underline.png);background-repeat:no-repeat;background-position:0 50px}.home__col--heading-underline-tan{background-image:url(/assets/img/heading-bg-underline-tan.png);background-repeat:no-repeat;background-position:0 50px;bottom:-20px}
|
1
|
+
.nav-tabs{border-bottom:1px solid #b1b1b1}.nav-tabs .nav-link{background-color:#f8f9fa;border-left-color:#e5e8ed;border-left-style:solid;border-left-width:1px;border-right-color:#e5e8ed;border-right-style:solid;border-right-width:1px;border-top-color:#e5e8ed;border-top-style:solid;border-top-width:1px;border-bottom-color:#b1b1b1}.nav-tabs .nav-link.active{border-color:#b1b1b1 #b1b1b1 #fff}.navbar-brand{margin-right:0}@media screen and (min-width:768px){.navbar-brand{margin-right:1rem}}.btn{vertical-align:baseline}.modal-open .gsc-search-button{margin-right:15px}@media screen and (max-width:992px){.dropdown-toggle:after{transform:rotate(0deg);transition:transform .3s ease-in-out}.nav-item.dropdown.show .dropdown-toggle:after{transform:rotate(-180deg)}}.dropdown-toggle.btn:after{transform:rotate(0deg);transition:transform .3s ease-in-out}.nav-item.dropdown.show .dropdown-toggle.btn:after{transform:rotate(-180deg)}@media screen and (min-width:992px){.dropdown-toggle:not(.btn):after{display:none}}.editor-link{display:none}.cms-editor-active .editor-link{display:block}.editor-button{display:none}.cms-editor-active .editor-button{display:inline-block}.header-global__search-collapse #___gcse_0:focus #gsc-iw-id1,.header-global__search-collapse #___gcse_0:hover #gsc-iw-id1{filter:drop-shadow(2px 2px 6px rgba(128,128,128,.5))}.header-global__search-collapse #gsc-iw-id1{border-radius:2rem;padding-left:.5rem;border:thin solid #b1b1b1;line-height:1;padding-top:3px;padding-bottom:3px}.header-global__search-collapse .gsc-search-button-v2{background-color:transparent!important;border:none!important;pointer-events:auto;position:relative;right:-.5rem;top:-.25rem;transition-property:right;transition-duration:.2s}.header-global__search-collapse button.gsc-overrides__clear-x{right:.5rem;padding-right:5px!important}@media screen and (min-width:992px){.header-global__search-collapse .gsc-search-button-v2{top:0;right:.5rem}.header-global__search-collapse button.gsc-overrides__clear-x{right:1.125rem;padding-right:5px!important}}.header-global__search-collapse .gsst_a .gscb_a{vertical-align:middle}.header-global__search-collapse .gsc-search-button-v2 svg{fill:#0f3b63!important;height:1.25rem;width:1.25rem;transition-property:fill;transition-duration:.2s}.header-global__search-collapse .gsc-search-button-v2:focus svg,.header-global__search-collapse .gsc-search-button-v2:hover svg{fill:#c61f48!important}.header-global__search-collapse td.gsc-search-button{display:inline;pointer-events:none;position:absolute;right:50px}@media screen and (min-width:1400px){.header-global__search-collapse td.gsc-search-button{right:44px}}.header-global__search-collapse .gsc-search-box-tools .gsc-search-box .gsc-input{padding-right:0!important}.nav-global__gcse-wrapper #___gcse_0:focus #gsc-iw-id1,.nav-global__gcse-wrapper #___gcse_0:hover #gsc-iw-id1{filter:drop-shadow(2px 2px 6px rgba(128,128,128,.5))}.nav-global__gcse-wrapper #gsc-iw-id1{border-radius:2rem;padding-left:.5rem;border:thin solid #b1b1b1;line-height:1;padding-top:3px;padding-bottom:3px}.nav-global__gcse-wrapper .gsc-search-button-v2{background-color:transparent!important;border:none!important;pointer-events:auto;position:relative;right:30px;transition-property:right;transition-duration:.2s}.nav-global__gcse-wrapper .gsst_a .gscb_a{vertical-align:middle}.nav-global__gcse-wrapper button.gsc-overrides__clear-x{right:48px;padding-right:5px!important}.nav-global__gcse-wrapper .gsc-search-button-v2 svg{fill:#0f3b63!important;height:1.25rem;width:1.25rem;transition-property:fill;transition-duration:.2s}.nav-global__gcse-wrapper .gsc-search-button-v2:focus svg,.nav-global__gcse-wrapper .gsc-search-button-v2:hover svg{fill:#c61f48!important}.nav-global__gcse-wrapper td.gsc-search-button{display:inline;pointer-events:none;position:absolute;right:50px}@media screen and (min-width:1400px){.nav-global__gcse-wrapper td.gsc-search-button{right:44px}}.nav-global__search-collapse--visible #___gcse_0{margin-bottom:20px}.targetx__wrapper{margin-top:-35px;z-index:-1}p.supportInfo{display:none}@media screen and (min-width:1200px){.wForm form>div.oneField{margin-top:0!important}}@media screen and (min-width:1800px){.wForm form>div.oneField{margin-top:10px!important}}.wFormContainer{padding-left:5px!important;padding-right:5px!important}@media screen and (min-width:1600px){.wFormContainer{padding:1rem 2rem!important}}#tfa_11:before{display:block;content:" ";margin-top:-60px;height:60px;visibility:hidden;pointer-events:none}@media screen and (min-width:1800px){#tfa_775-D{margin-top:5px!important}}.oneField.field-container-D{max-width:100%}#submit_button{background-color:#0051a7!important;border-color:#003773!important;font-family:Open Sans,sans-serif!important;font-weight:400!important;font-size:1.25rem!important;padding-top:.5rem!important;padding-bottom:.5rem!important;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}#submit_button:hover{background-color:#022b55!important;border-color:#021e3d!important}.goog-te-gadget-simple{white-space:nowrap;border-radius:20px;padding-left:10px;padding-right:10px;margin-right:5px;height:100%}#google_translate_element{position:fixed;bottom:.25rem;right:.25rem!important;z-index:99999}.goog-te-gadget{font-family:Roboto,Open Sans,sans-serif!important;text-transform:uppercase;font-weight:500}.goog-te-gadget:hover{color:#fff}.goog-te-gadget-simple{background-color:hsla(0,0%,100%,.85)!important;border:1px solid rgba(0,0,0,.95)!important;padding:8px!important;border-radius:4px!important;font-size:1rem!important;line-height:2rem!important;display:inline-block;transition:background-color .2s;cursor:pointer;zoom:1}.goog-te-gadget-simple:focus,.goog-te-gadget-simple:hover{background-color:rgba(0,123,255,.85)!important}.goog-te-menu2{max-width:100%;width:100%}.goog-te-gadget-simple:hover .goog-te-menu-value{color:#fff!important}.goog-te-menu-value{color:#000!important;text-decoration:none!important}.goog-te-menu-value:before{font-family:Material Icons;content:"\E927";margin-right:16px;font-size:2rem;vertical-align:-10px}.goog-te-menu-value span:nth-child(5){display:none}.goog-te-menu-value span:nth-child(3){border:none!important;font-family:Material Icons}.goog-te-menu-value span:nth-child(3):after{font-family:Material Icons;content:"\E5C5";font-size:1.5rem;vertical-align:-6px}.goog-te-gadget-icon{background-image:url(https://placehold.it/32)!important;background-position:0 0;height:32px!important;width:32px!important;margin-right:8px!important;display:none}.goog-te-banner-frame.skiptranslate{display:none!important}body{top:0!important}@media (max-width:667px){#google_translate_element{bottom:.25rem;left:16px!important;width:100%!important}#google_translate_element .skiptranslate,#google_translate_element goog-te-gadget{width:100%!important}#google_translate_element .goog-te-gadget-simple{width:calc(100% - 32px)!important;text-align:center}}a.goog-te-menu-value,a.goog-te-menu-value:hover{text-decoration:none!important}body{font-size:1rem}.typography__nav-heading{color:#0f3b63;display:inline;font-family:Eurostile,sans-serif;font-size:1.5rem;font-style:italic;font-weight:700;text-transform:uppercase;transition-property:color;transition-timing-function:ease;transition-duration:.4s}.typography__nav-heading:focus,.typography__nav-heading:hover{color:#c61f48}.typography__nav-heading--smaller{font-size:1.25rem}@media screen and (min-width:360px){.typography__nav-heading{font-size:1.8rem}.typography__nav-heading--smaller{font-size:1.5rem}}@media screen and (min-width:410px){.typography__nav-heading{font-size:2rem}}@media screen and (min-width:576px){.typography__nav-heading{font-size:2.3rem}}@media screen and (min-width:768px){.typography__nav-heading{font-size:2.4rem}}@media screen and (min-width:1500px){.typography__nav-heading{font-size:2.6rem}}.typography__footer-heading{font-family:Roboto,sans-serif;font-size:1.95rem;font-weight:900}@media screen and (min-width:360px){.typography__footer-heading{font-size:2.2rem}}@media screen and (min-width:375px){.typography__footer-heading{font-size:2.4rem}}@media screen and (min-width:410px){.typography__footer-heading{font-size:2.6rem}}.typography__call-to-action{color:#c61f48;font-family:Oswald,sans-serif;font-size:2.8rem;font-weight:600;line-height:2.8rem;margin-bottom:30px;margin-top:20px}.typography__contacts--name{color:#0f3b63;font-size:1.3em}.typography__contacts--name,.typography__contacts--title{font-family:Roboto,sans-serif;font-weight:700;margin-bottom:.2rem}.typography__contacts--title{color:#666;font-size:1.1em}.typography__orange-h4{color:#f99e1b;font-family:Oswald,sans-serif;font-size:2.4rem}.typography__sub-nav--red-h2{color:#c61f48;font-family:Oswald,sans-serif;font-size:1.4rem;font-weight:500;text-transform:uppercase}@media screen and (min-width:768px){.typography__sub-nav--red-h2{font-size:1.8rem}}.typography__section--heading{color:#c61f48;font-family:Oswald,sans-serif;font-size:2rem;font-weight:500}.typography__header-global--nav-bottom,.typography__header-global--nav-local,.typography__header-global--nav-top{color:#0f3b63;font-family:Oswald,sans-serif;font-size:1rem;font-weight:500;letter-spacing:.05rem;padding-bottom:.25rem;padding-top:.25rem;text-transform:capitalize}@media screen and (min-width:992px){.typography__header-global--nav-top{color:#b8babc;font-size:1.1rem}.typography__header-global--nav-top:focus,.typography__header-global--nav-top:hover{color:#b8babc}}@media screen and (min-width:992px){.typography__header-global--nav-bottom{color:#fff;font-size:1.05rem;font-weight:400}}@media screen and (min-width:992px){.header-global__dropdown:focus .typography__header-global--nav-bottom,.header-global__dropdown:hover .typography__header-global--nav-bottom,.typography__header-global--nav-bottom:focus,.typography__header-global--nav-bottom:hover{color:#0f3b63}}@media screen and (min-width:992px){.typography__header-global--nav-local{font-size:1rem;font-weight:400}.nav-link:not([role=tab]){margin-left:5px;margin-right:5px}}.typography__nav-link{color:#fff;font-family:Oswald,sans-serif;font-size:1.05rem;font-weight:400;letter-spacing:.05rem;text-transform:capitalize}.typography__nav-local--nav-link{font-family:Oswald,sans-serif;font-size:1rem;font-weight:500;text-transform:uppercase}.typography__nav-local--color{color:#0f3b63}.typography__power-text{color:#fff;font-family:Libre Franklin,sans-serif;font-size:1.1rem;font-weight:700;letter-spacing:.02em;text-transform:uppercase}@media screen and (min-width:360px){.typography__power-text{font-size:1.3rem}}@media screen and (min-width:768px){.typography__power-text{font-size:2.2rem}}@media screen and (min-width:992px){.typography__power-text{font-size:2.9rem}}@media screen and (min-width:1200px){.typography__power-text{font-size:3.1rem}}.typography__h2{color:#666;font-family:Roboto,sans-serif;font-size:2rem;font-weight:500}.typography__h3{color:#0f3b63;font-size:1.75rem}.typography__h3,.typography__h4{font-family:Roboto,sans-serif;font-weight:600}.typography__h4{color:#c61f48;font-size:1.7rem}.typography__h5{font-size:1.5rem}.typography__h5,.typography__h6{color:#666;font-family:Roboto,sans-serif;font-weight:700}.typography__h6{font-size:1.4rem}.typography__h5--description{color:#58585b;font-family:Oswald,sans-serif;font-size:1.25rem;font-weight:400}.typography__phone--span{color:#fff;font-family:Oswald,sans-serif;font-size:1.3rem;font-weight:400;letter-spacing:.07rem;white-space:nowrap}@media screen and (min-width:768px){.typography__phone--span{font-size:1.45rem}}@media screen and (min-width:1024px){.typography__phone--span{font-size:1.5rem}}.typography__p--bold{color:#666;font-family:Roboto,sans-serif;font-weight:700;font-size:1.25rem;line-height:1.2}.typography__stories--quote{color:#0f3b63;font-family:Oswald,sans-serif;font-size:1.1em;font-weight:300}@media screen and (min-width:488px){.typography__stories--quote{font-size:1.3rem}}@media screen and (min-width:768px){.typography__stories--quote{font-size:1.2rem}}@media screen and (min-width:992px){.typography__stories--quote{font-size:1.4rem}}.typography__col--heading-underline{background-image:url(/assets/img/heading-bg-underline.png);background-repeat:no-repeat;background-position:0 50px}.typography__col--heading-underline-tan{background-image:url(/assets/img/heading-bg-underline-tan.png);background-repeat:no-repeat;background-position:0 50px}ol,p,ul:not(.navbar-nav){color:#666;font-family:Open Sans,sans-serif;font-size:1rem}.typography__tables th{color:#c61f48;font-family:Roboto,sans-serif;font-weight:700}.typography__tables td{color:#666;font-family:Open Sans,sans-serif;font-size:1rem}h1 sup,h2 sup,h3 sup,h4 sup,h5 sup,h6 sup{font-size:45%!important;top:-1em;font-weight:400}.typography__register--h2{color:#fff;font-family:eurostile,sans-serif;font-size:2.4rem;font-weight:500;letter-spacing:.03rem;position:relative;top:30%;margin-bottom:-10px}@media screen and (min-width:400px){.typography__register--h2{font-size:3rem}}@media screen and (min-width:768px){.typography__register--h2{font-size:5.2rem}}@media screen and (min-width:1200px){.typography__register--h2{font-size:6rem}}@media screen and (min-width:1800px){.typography__register--h2{font-size:6.6rem}}.typography__register--h3{color:#fff;font-family:eurostile,sans-serif;font-size:1.2rem;font-weight:500;letter-spacing:.03rem;position:relative;top:31%}@media screen and (min-width:400px){.typography__register--h3{font-size:1.45rem;top:30.5%}}@media screen and (min-width:768px){.typography__register--h3{font-size:2.5rem;top:30%}}@media screen and (min-width:1200px){.typography__register--h3{font-size:2.6rem;top:30%}}@media screen and (min-width:1800px){.typography__register--h3{font-size:2.7rem;top:30%}}.typography__register--caption{color:#fff;font-family:Oswald,sans-serif;font-size:1rem;font-weight:500;letter-spacing:.07rem;position:absolute;bottom:15px}@media screen and (min-width:1200px){.typography__register--caption{font-size:1.2rem}}.typography__register-h4{font-family:Oswald,sans-serif;font-size:1.6rem}@media screen and (min-width:768px){.typography__register-h4{font-size:2rem}}@media screen and (min-width:1200px){.typography__register-h4{font-size:2rem}}@media screen and (min-width:1800px){.typography__register-h4{font-size:2.3rem}}.typography__register--h5{color:#c61f48;font-family:Oswald,sans-serif;font-size:2rem;font-weight:700;letter-spacing:.03rem;margin-bottom:50px}@media screen and (min-width:768px){.typography__register--h5{font-size:2.8rem}}@media screen and (min-width:992px){.typography__register--h5{margin-bottom:60px}}@media screen and (min-width:1200px){.typography__register-h5{font-size:3rem}}.typography__register--student-p{color:#000;font-weight:600;font-size:1.2em;margin-top:15px}.typography__register--img-cap{font-weight:600;display:block}.typography__register-itransfer{font-size:1.7rem;font-weight:600;line-height:1;position:absolute;top:4rem;margin-left:-20px}@media screen and (min-width:400px){.typography__register-itransfer{font-size:1.8rem}}@media screen and (min-width:768px){.typography__register-itransfer{font-size:1.9rem}}.typography__register--h6{color:#c61f48;font-family:Saira,"sans-serif";font-weight:700;font-size:2rem;letter-spacing:.03rem}.typography__larger-p{font-size:1.2rem}.typography__register--thank-you{color:#0f3b63;font-family:Eurostile,sans-serif;font-size:2rem}.typography__register--thank-you--message{color:#c61f48;font-family:Saira,"sans-serif";font-weight:700;font-size:1.4rem}@media screen and (min-width:768px){.typography__register--thank-you{font-size:2.4rem;margin-left:100px;margin-top:-10px}.typography__register--thank-you--message{font-size:1.6rem;margin-left:95px}}@media screen and (min-width:1200px){.typography__register--thank-you{font-size:2.6rem}}@media screen and (min-width:1800px){.typography__register--thank-you{font-size:3rem;margin-top:-15px}}@media screen and (max-width:992px){.typography__nowrap--sm{white-space:nowrap}}.typography__color--inherit{color:inherit}.typography__dropdown--category{color:#0f3b63!important;font-size:1.15em;font-weight:600}.typography__my-kcc{font-family:Eurostile,sans-serif;line-height:1.2;font-size:1.2rem}.typography__alert{color:#856404}.typography__alert:last-child{margin-bottom:0}.links__kcc-logo{display:inline;float:left;width:120px;height:80px}.links__offset{pointer-events:none}.links__offset a,.links__offset button{pointer-events:auto}.links__offset:before{content:" ";display:block;height:171px;margin-top:-171px;pointer-events:none;visibility:hidden}@media screen and (min-width:768px){.links__offset:before{height:150px;margin-top:-150px}}.links__darker-link{color:#006ce0}.navbar-light .navbar-nav .nav-link.links__nav-link--color:not(.btn-primary){color:#0f3b63}.navbar-light .navbar-nav .nav-link.links__nav-link--color:not(.btn-primary):focus,.navbar-light .navbar-nav .nav-link.links__nav-link--color:not(.btn-primary):hover{color:#c61f48}.navbar-light .navbar-nav .nav-link.links__nav-link--color.btn-primary{color:#fff}.navbar-light .navbar-nav .active>.nav-link{border-bottom-color:#c61f48;border-bottom-style:solid;border-bottom-width:thick;color:#0f3b63;padding-bottom:0}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:#c61f48}.links__phone--span{color:#fff;position:relative;text-decoration:none}.links__phone--span:visited{color:#fff}.links__phone--span:focus,.links__phone--span:hover{color:#fff;text-decoration:none}.links__phone--span:focus:after,.links__phone--span:hover:after{opacity:1;transform:translateY(-.2em)}.links__phone--span:after{background-color:#f99e1b;bottom:-.325rem;content:"";display:block;height:.1875rem;opacity:0;position:absolute;transition:opacity .3s,transform .3s;width:100%}.links__no-underline,.links__no-underline:hover{text-decoration:none}@media screen and (min-width:992px){.links__header-global--nav-local{position:relative}.active .links__header-global--nav-local:after{background-color:#c61f48;bottom:.125rem;content:"";display:block;height:.145rem;position:absolute;width:calc(100% - 1rem)}}.navbar-light .navbar-nav .nav-link.buttons__btn-primary-custom{background-color:#c61f48;color:#fff}.navbar-light .navbar-nav .nav-link.buttons__btn-primary-custom:hover{background-color:#0f3b63}.buttons__yt-subscribe{display:inline-block;height:1rem;margin-top:-4px;margin-right:5px;transform:scale(1.8);vertical-align:middle;width:1rem}.buttons__custom-danger{margin-right:20px}.buttons__btn-margin-top{margin-top:20px}.btn-primary{background-color:#0051a7;border-color:#003773}.btn-primary:hover{background-color:#022b55;border-color:#021e3d}.buttons__no-decoration,.buttons__no-decoration:focus,.buttons__no-decoration:hover,.buttons__no-decoration:visited{text-decoration:none}.buttons{display:inline-block;padding:.125rem .9rem}.buttons__my-kcc{border-color:#7a7b7b;padding-top:.125rem;padding-bottom:.125rem;margin-top:.25rem;margin-bottom:.375rem}.buttons__my-kcc--mobile{position:absolute;bottom:.65rem;left:1rem}@media screen and (min-width:992px){.buttons__my-kcc:focus,.buttons__my-kcc:hover{background-color:#0c3050}}@media screen and (max-width:992px){.buttons__my-kcc:focus,.buttons__my-kcc:hover{color:#c61f48}}.buttons__action{color:#fff;background-color:#c61f48;border-color:#8a1632;font-family:Roboto,sans-serif;font-size:1.3rem;font-weight:600;line-height:36px;letter-spacing:.075rem;width:100%}.buttons__action:focus,.buttons__action:hover{color:#fff;background-color:#0f3b63}@media screen and (min-width:360px){.buttons__action{font-size:1.75rem;line-height:48px}}@media screen and (min-width:768px){.buttons__action{font-size:1.3rem;line-height:36px}}@media screen and (min-width:992px){.buttons__action{font-size:1.75rem;line-height:48px}}.img__responsive--svg{height:auto;max-width:100%}.img__full-width{width:100%}.img__shadow,.img__shadow--border{filter:drop-shadow(3px 3px 10px rgba(126,126,126,.45))}.img__shadow--border{border:3px solid #0f3b63}.header-global{padding-left:0;padding-right:0}.header-global__brand{left:1rem;position:absolute;right:3.25rem;top:0;z-index:1044}.header-global__navbar--padding{padding:0}.header-global__nav-top{background-color:#0f3b63;flex-direction:row;padding-left:1rem;padding-right:calc(2.5rem + 20px);width:100%}.header-global__nav-bottom{background-color:#c61f48;flex-direction:row;padding:.3125rem 1rem;width:100%}.header-global__nav-local{border-bottom-color:#b1b1b1;flex-direction:row;border-bottom-style:solid;border-bottom-width:1px;padding:.5rem 1rem;width:100%}.header-global__navbar--toggler{border-color:rgba(0,0,0,.1);color:rgba(0,0,0,.5);position:absolute;right:1rem;top:3.25rem;z-index:1032}.header-global__navbar--toggler .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.header-global__close-icon,.header-global__search-icon{background-color:transparent;border:1px solid transparent;border-radius:.25rem;display:inline-block;font-size:1rem;font-weight:400;line-height:1.5;padding:.375rem .75rem;position:absolute;text-align:center;top:.125rem;right:.3125rem;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;transition-property:opacity;transition-timing-function:ease-in-out;transition-duration:.1s;z-index:1032}.header-global__open{bottom:0;overflow-x:hidden;overflow-y:auto}@media screen and (min-width:410px){.header-global__navbar--toggler{top:3.2rem}}@media screen and (min-width:576px){.header-global__navbar--toggler{top:3.25rem}}.header-global__close-icon--hidden,.header-global__search-icon--hidden{opacity:0;pointer-events:none;z-index:-1}@media screen and (max-width:992px){#headerGlobalNavbarContent.collapse.show .header-global__nav-top,#headerGlobalNavbarContent.collapsing .header-global__nav-top{padding-right:1rem}}@media screen and (max-width:992px){#headerGlobalNavbarContent.collapse.show .header-global__navbar-nav--divider:after,#headerGlobalNavbarContent.collapsing .header-global__navbar-nav--divider:after{background-color:#b1b1b1;content:"";display:block;height:.125rem;margin-bottom:1rem;margin-top:.5rem;width:100%}#headerGlobalNavbarContent.collapse.show .header-global__navbar-nav--divider:nth-child(2):after,#headerGlobalNavbarContent.collapsing .header-global__navbar-nav--divider:nth-child(2):after{margin-bottom:0}}#headerGlobalNavbar.header-global__navbar--search-toggle{top:3.5rem}@media screen and (min-width:992px){.navbar-expand-lg .navbar-nav .header-global__nav-local--navbar-brand.nav-link{padding-left:0}}@media screen and (min-width:992px){.header-global__nav-bottom--nav-link{padding-top:.75rem;padding-bottom:.75rem}}@media screen and (min-width:992px){.header-global__nav-top--nav-link{padding-top:.3125rem;padding-bottom:.3125rem}}@media screen and (min-width:992px){.navbar-expand-lg .navbar-nav .header-global__nav-top--nav-link{padding-left:.9rem;padding-right:.9rem}}@media screen and (min-width:992px){a.header-global__nav-top--nav-link{position:relative}a.header-global__nav-top--nav-link:after{background-color:#f99e1b;bottom:0;content:"";display:block;height:.125rem;opacity:0;position:absolute;transition:opacity .3s,transform .3s;width:calc(100% - 1.8rem)}a.header-global__nav-top--nav-link:focus:after,a.header-global__nav-top--nav-link:hover:after{opacity:1;transform:translateY(-.2em)}}@media screen and (min-width:992px){.header-global__nav-bottom{padding-bottom:0;padding-top:0}}@media screen and (min-width:992px){a.header-global__nav-bottom--nav-link{position:relative}a.header-global__nav-bottom--nav-link.header-global__nav-bottom--underlined:after{background-color:#f99e1b;color:#f99e1b;bottom:.25rem;border-top-width:.125rem;content:"";display:block;height:.125rem;margin-left:0;opacity:0;position:absolute;transition:opacity .3s,transform .3s;width:calc(100% - 1rem);opacity:1;transform:translateY(-.2em)}}@media screen and (min-width:992px){.header-global__nav-local{padding-bottom:.5rem;padding-top:.5rem}}.header-global__brand--svg{fill:#fff;height:28px;max-width:100%;transition:all .5s ease-in-out}.header-global__brand--svg .st0{fill:none}@media screen and (min-width:992px) and (max-width:1040px){.header-global__brand--svg{height:22px}}@media screen and (min-width:1041px){.header-global__brand--svg{height:26px}}@media screen and (min-width:992px){.header-global__brand{top:3.125rem;right:unset}}#headerGlobalNavbarContent.collapse.show .typography__nav-heading,#headerGlobalNavbarContent.collapsing .typography__nav-heading{font-size:1.5rem}#headerGlobalNavbarContent.collapse.show .navbar-nav,#headerGlobalNavbarContent.collapsing .navbar-nav{flex-direction:column;background-color:#f8f9fa}#headerGlobalNavbarContent.collapse.show .header-global__nav-top,#headerGlobalNavbarContent.collapsing .header-global__nav-top{position:relative;top:2.65rem;margin-bottom:2.65rem}#headerGlobalNavbarContent.collapse.show .header-global__nav-top:before,#headerGlobalNavbarContent.collapsing .header-global__nav-top:before{background-color:#c61f48;content:"";display:block;height:2.65rem;position:absolute;top:-2.65rem;left:0;right:0;width:100%;z-index:-1}@media screen and (max-width:991px){#headerGlobalNavbarContent.collapse:not(.show){display:block}#headerGlobalNavbarContent.collapse:not(.show) .header-global__nav-top{display:none;position:absolute}#headerGlobalNavbarContent.collapse:not(.show) .header-global__nav-bottom .nav-link,#headerGlobalNavbarContent.collapse:not(.show) .header-global__nav-local .nav-link:not(.navbar-brand){visibility:hidden}}.header-global__nav--close-icon,.header-global__nav--search-icon{background-size:20px 20px;background-position:50%;background-repeat:no-repeat;display:block;height:20px;margin-top:.3125rem;pointer-events:none;width:20px}.header-global__search-collapse{left:.5rem;margin-left:auto;margin-right:auto;position:absolute;right:2rem;top:-56px;width:95%}@media screen and (min-width:360px){.header-global__search-collapse{left:.55rem}}@media screen and (min-width:410px){.header-global__search-collapse{left:.65rem;left:1rem}}@media screen and (min-width:768px){.header-global__search-collapse{left:1.25rem}}@media screen and (min-width:992px){.header-global__search-collapse{left:1.5rem}}.header-global__search-collapse.header-global__search-collapse--visible{top:-46px}@media screen and (min-width:992px){.header-global__search-collapse.header-global__search-collapse--visible{top:-40px}}.header-global__navbar--search-toggle{top:50px}.header-global__navbar--search-toggle:before{background-color:#c61f48;content:"";display:block;height:64px;position:absolute;top:-60px;width:100%}@media screen and (min-width:992px){.header-global__navbar--search-toggle:before{background-color:#0f3b63}}@media screen and (min-width:992px){.header-global__dropdown.show{background-color:#b8babc}}@keyframes a{0%{opacity:0}to{opacity:1}}@media screen and (min-width:992px){.header-global__nav-bottom .dropdown .dropdown-menu:hover,.header-global__nav-bottom .dropdown:hover .dropdown-menu{animation-duration:.5s;animation-name:a;display:block!important}}.header-global__nav-bottom .dropdown-item{color:#666}.header-global__nav-bottom .dropdown-item:active{background-color:#0f3b63;color:#fff}.header-global__nav-bottom .dropdown-item:focus,.header-global__nav-bottom .dropdown-item:hover{background-color:#e2e3e4;border-radius:.175rem}@media screen and (min-width:992px){.header-global__nav-bottom .dropdown:hover{background-color:#b8babc}}@media screen and (min-width:992px){.nav-item.dropdown.header-global__dropdown--position{position:static}}@media screen and (min-width:992px){.header-global__dropdown-menu--full-width{left:.75rem;right:.75rem;top:5.77rem}}@media screen and (min-width:1300px){.header-global__dropdown-menu--full-width{left:1rem;right:1rem}}@media screen and (min-width:992px){.header-global__drodpown-menu--img{width:280px}.header-global__drodpown-menu--img--border{border:thin solid #d9d9d9}}@media screen and (max-width:991px){.header-global__core:after{content:"";display:block;height:60px;background-color:#f8f9fa;border-bottom-color:#b1b1b1;border-bottom-style:solid;border-bottom-width:1px}}@media screen and (min-width:992px){#navGlobalTop .header-global__nav-top--nav-link{margin-top:.3125rem}}.svg__fill--blue{fill:#0f3b63}.svg__fill--white{fill:#fff}.svg{height:100px;width:100px}.svg--none{fill:none}.svg--blue{fill:#0f3b63}.svg--red{fill:#c61f48}.svg--max-width{max-width:100%}.svg__button{height:48px;width:48px}.svg--fill-none{fill:none}.svg--fill-white{fill:#fff}.svg--fill-blue{fill:#0f3b63}.svg__action--place{margin-left:-2rem}@media screen and (min-width:360px){.svg__action--place{margin-left:-3rem}}@media screen and (min-width:768px){.svg__action--place{margin-left:0}}@media screen and (min-width:360px){.svg__button{height:48px;width:48px}}@media screen and (min-width:768px){.svg__button{height:36px;width:36px}}@media screen and (min-width:992px){.svg__button{height:48px;width:48px}}.header__bg{background-image:url(/assets/img/DSC_8724_4x3.jpg);background-size:cover;background-position:50%;background-repeat:no-repeat;height:55%;height:55vh}@media screen and (min-width:1200px){.header__bg{height:auto}}.footer__margin{margin-top:20px}.footer{background-color:#f8f9fa;margin-top:60px;padding-bottom:40px;padding-top:40px;width:100%;border-top-color:rgba(0,0,0,.15);border-top-style:solid;border-top-width:thin}a.footer-link{color:#0f3b63}a.footer-link:hover{text-decoration:none!important;color:#c61f48}.footer-heading{transition-property:color;transition-timing-function:ease;transition-duration:.3s}.footer-icons{background-color:#c61f48;border-radius:50%;transition-property:background-color;transition-timing-function:ease;transition-duration:.3s;height:33px;margin:4px;padding:2px;width:33px}@media screen and (min-width:360px){.footer-icons{height:40px;margin:5px;width:40px}}@media screen and (min-width:412px){.footer-icons{height:50px;width:50px}}a.footer-social-links,a.footer-social-links .footer-icons{text-decoration:none!important}a.footer-social-links:hover .footer-icons{text-decoration:none!important;background-color:#0f3b63}.footer__mobile--margin-bottom{margin-bottom:20px}@media screen and (min-width:992px){.footer__mobile--margin-bottom{margin-bottom:0}}.footer__svg--logo{height:36px}.slider-container{padding-left:0;padding-right:0}@media screen and (min-width:1400px){.index-slider-container,.slider-container{max-width:1300px}}.slider-row{margin-left:0;margin-right:0}.heading-container{border-left-color:#fff;border-left-style:solid;border-left-width:2px;margin-left:.9%;padding-left:5px;position:absolute;top:55%;width:7%;z-index:4444}@media screen and (min-width:488px){.heading-container{top:60%;width:6%}}@media screen and (min-width:768px){.heading-container{margin-left:.7%;padding-left:10px;top:61%;width:6%}}@media screen and (min-width:992px){.heading-container{margin-left:.6%;padding-left:20px;top:67%}}@media screen and (min-width:1200px){.heading-container{top:69%}}.baseballSlider .slide-img,.heroSlider .slide-img{position:relative;width:100%}.baseballSlider .slick-next,.heroSlider .slick-next{right:20px}.baseballSlider .slick-prev,.heroSlider .slick-prev{left:20px;z-index:4}@media screen and (min-width:576px){.baseballSlider .slick-next,.heroSlider .slick-next{right:25px}.baseballSlider .slick-prev,.heroSlider .slick-prev{left:25px;z-index:4}}.baseballSlider .slick-next,.baseballSlider .slick-prev,.heroSlider .slick-next,.heroSlider .slick-prev{height:25px;top:75%;width:25px}@media screen and (min-width:992px){.baseballSlider .slick-next,.baseballSlider .slick-prev,.heroSlider .slick-next,.heroSlider .slick-prev{height:40px;top:80%;width:40px}}.baseballSlider .slick-dots li button:before,.heroSlider .slick-dots li button:before{color:#e5e8ed;font-size:12px;line-height:30px;opacity:1;text-shadow:-1px -1px 0 #000,1px -1px 0 #000,-1px 1px 0 #000,1px 1px 0 #000}.baseballSlider .slick-dots li.slick-active button:before,.heroSlider .slick-dots li.slick-active button:before{color:#0f3b63;opacity:1;text-shadow:-1px -1px 0 #000,1px -1px 0 #000,-1px 1px 0 #000,1px 1px 0 #000}.baseballSlider .slick-dots li,.heroSlider .slick-dots li{margin-left:1px;margin-right:1px;padding-left:0;padding-right:0}.njcaa-link{margin-top:30px;position:absolute;right:15%;z-index:1000}@media screen and (min-width:1600px){.njcaa-link{right:20%}}@media screen and (min-width:1900px){.njcaa-link{right:25%}}@media screen and (min-width:1200px){.njcaa-logo{width:175px}}@media screen and (min-width:1600px){.njcaa-logo{width:200px}}.baseballSlider{visibility:hidden}.slick-track{margin-left:0}.social-icons__icons{background-color:#c61f48;border-radius:50%;height:33px;margin:4px;padding:2px;transition-property:background-color;transition-timing-function:ease;transition-duration:.3s;width:33px}@media screen and (min-width:360px){.social-icons__icons{height:40px;margin:5px;width:40px}}@media screen and (min-width:412px){.social-icons__icons{height:50px;width:50px}}a.social-icons__links,a.social-icons__links .social-icons__icons{text-decoration:none!important}a.social-icons__links:hover .social-icons__icons{text-decoration:none!important;background-color:#0f3b63}.nav-landing{background-color:#c61f48;height:56px;margin-left:0;margin-right:0;max-width:100%;min-width:100%;padding-bottom:5px;padding-left:5%;padding-top:5px;width:100%;z-index:1031}.nav-landing__kcc-logo{margin-left:5px;width:190px}@media screen and (min-width:360px){.nav-landing__kcc-logo{width:220px}}@media screen and (min-width:375px){.nav-landing__kcc-logo{width:230px}}@media screen and (min-width:410px){.nav-landing__kcc-logo{width:255px}}@media screen and (min-width:488px){.nav-landing__kcc-logo{width:260px}}@media screen and (min-width:576px){.nav-landing__kcc-logo{width:300px}}@media screen and (min-width:768px){.nav-landing__kcc-logo{width:320px}}@media screen and (min-width:992px) and (max-width:1100px){.nav-landing__kcc-logo{margin-left:-25px;width:310px}}@media screen and (min-width:1100px){.nav-landing__kcc-logo{margin-left:-25px;width:340px}}.nav-landing__navbar-brand{margin-left:-10px}@media screen and (min-width:410px){.nav-landing__navbar-brand{margin-left:-15px}}@media screen and (min-width:488px){.nav-landing__navbar-brand{margin-left:-20px}}@media screen and (min-width:576px){.nav-landing__navbar-brand{margin-left:-25px}}@media screen and (min-width:768px){.nav-landing__navbar-brand{margin-left:-35px}}@media screen and (min-width:992px){.nav-landing__navbar-brand{margin-left:-20px}}@media screen and (min-width:1000px){.nav-landing__navbar-brand{margin-left:-18px}}@media screen and (min-width:1080px){.nav-landing__navbar-brand{margin-left:-22px}}@media screen and (min-width:1200px){.nav-landing__navbar-brand{margin-left:-2.5%}}@media screen and (min-width:1600px){.nav-landing__navbar-brand{margin-left:-3%}}@media screen and (min-width:1900px){.nav-landing__navbar-brand{margin-left:-3.25%}}@media screen and (min-width:2000px){.nav-landing__navbar-brand{margin-left:-3.5%}}.nav-landing__kcc-logo-inverse{margin-left:-3px;width:50px;margin-right:-10px}@media screen and (min-width:360px){.nav-landing__kcc-logo-inverse{width:60px}}@media screen and (min-width:410px){.nav-landing__kcc-logo-inverse{width:68px}}@media screen and (min-width:488px){.nav-landing__kcc-logo-inverse{width:68px}}@media screen and (min-width:576px){.nav-landing__kcc-logo-inverse{width:73px}}@media screen and (min-width:768px){.nav-landing__kcc-logo-inverse{width:80px}}@media screen and (min-width:992px){.nav-landing__kcc-logo-inverse{width:80px;margin-left:-30px;margin-right:20px}}@media screen and (min-width:1100px){.nav-landing__kcc-logo-inverse{width:85px;margin-right:15px}}@media screen and (min-width:1300px){.nav-landing__kcc-logo-inverse{width:85px;margin-left:-35px}}@media screen and (min-width:1400px){.nav-landing__kcc-logo-inverse{width:85px;margin-left:-40px}}.error__main-heading{color:#c61f48;font-weight:700}.error__sub-heading{color:#0f3b63;font-weight:700}.benefits__typography--caption{bottom:15px;color:#fff;filter:drop-shadow(0 0 2px rgba(0,0,0,.25));font-family:Oswald,sans-serif;font-size:1rem;font-weight:700;letter-spacing:.07rem;position:absolute;right:25px}@media screen and (min-width:768px){.benefits__typography--caption{font-size:1.1rem}}@media screen and (min-width:1000px){.benefits__typography--caption{font-size:1.2rem}}.benefits__typography-h4{font-family:Oswald,sans-serif;font-size:1.6rem;margin-bottom:.5rem}@media screen and (min-width:768px){.benefits__typography-h4{font-size:2rem}}@media screen and (min-width:1200px){.benefits__typography-h4{font-size:2rem;margin-bottom:1.5rem}}@media screen and (min-width:1800px){.benefits__typography-h4{font-size:2.4rem;margin-bottom:1.8rem}}.benefits__typography--h5{color:#c61f48;font-family:Oswald,sans-serif;font-size:2rem;font-weight:700;letter-spacing:.03rem}.benefits__typography--h5--mb{margin-bottom:40px}@media screen and (min-width:768px){.benefits__typography--h5{font-size:2.8rem}}@media screen and (min-width:992px){.benefits__typography--h5--mb{margin-bottom:60px}}.benefits__testimonials--mb{margin-bottom:40px}@media screen and (min-width:1200px){.benefits__testimonials--mb{margin-bottom:0}}.benefits__typography--h5--black{color:#000;font-family:Oswald,sans-serif;font-size:2rem;font-weight:400;letter-spacing:.03rem;margin-bottom:60px}@media screen and (min-width:768px){.benefits__typography--h5--black{font-size:2.1rem}}@media screen and (min-width:1200px){.benefits__typography-h5--black{font-size:3rem}}.benefits__typography--student-p{font-family:Open Sans,sans-serif;color:#000;font-weight:600;font-size:1.15rem;margin-top:15px;margin-bottom:.5rem}@media screen and (min-width:1200px){.benefits__typography--student-p--larger{font-size:1.3rem}}.benefits__typography--img-cap{font-family:Open Sans,sans-serif;font-size:1.35rem;font-weight:600;display:block}.benefits__typography-itransfer{font-size:1.7rem;font-weight:600;line-height:1;position:absolute;top:4rem;margin-left:-20px}@media screen and (min-width:400px){.benefits__typography-itransfer{font-size:1.8rem}}@media screen and (min-width:768px){.benefits__typography-itransfer{font-size:1.9rem}}.benefits__typography--h6{color:#c61f48;font-family:Saira,"sans-serif";font-weight:700;font-size:2rem;letter-spacing:.03rem}.benefits__typography--thank-you{color:#0f3b63;font-family:Eurostile,sans-serif;font-size:2rem}.benefits__typography--thank-you--message{color:#c61f48;font-family:Saira,"sans-serif";font-weight:700;font-size:1.4rem}@media screen and (min-width:768px){.benefits__typography--thank-you{font-size:2.4rem;margin-left:100px;margin-top:-10px}.benefits__typography--thank-you--message{font-size:1.6rem;margin-left:95px}}@media screen and (min-width:1200px){.benefits__typography--thank-you{font-size:2.6rem}}@media screen and (min-width:1800px){.benefits__typography--thank-you{font-size:3rem;margin-top:-15px}}.benefits__check-svg{margin-top:-60px;width:80px}.benefits__blue-section{background-color:#ccdde1;padding-bottom:25px;padding-top:25px}.benefits__card--spacing{margin-bottom:40px}.benefits__first-section--marg{margin-top:15px;background-color:#ccdde1;padding-bottom:25px;padding-top:25px}@media screen and (min-width:1200px){.benefits__first-section--marg{margin-top:15px}}.benefits__section--marg{margin-top:35px}@media screen and (min-width:1200px){.benefits__section--marg{margin-top:65px}}.benefits__row--pad{margin-top:25px}@media screen and (min-width:1200px){.benefits__row--pad{margin-top:0}}.benefits__itransfer-img{width:120px;margin-top:40px}@media screen and (min-width:400px){.benefits__itransfer-img{width:140px}}@media screen and (min-width:768px){.benefits__itransfer-img{width:150px}}@media screen and (min-width:992px){.benefits__itransfer-img{margin-top:20px;width:160px}}.benefits__idfpr-img{width:330px}@media screen and (max-width:992px){.benefits__idfpr-img{margin-bottom:15px;margin-top:40px}}.benefits__iccb-img{width:250px}@media screen and (max-width:992px){.benefits__iccb-img{margin-top:15px}}.benefits__offset-global-nav{margin-top:60px}.benefits__accredited--card{background-color:#0f3b63;padding:15px 10px 25px;width:90%}@media screen and (min-width:400px){.benefits__accredited--card{width:75%}}@media screen and (min-width:768px){.benefits__accredited--card{width:50%}}@media screen and (min-width:992px){.benefits__accredited--card{width:100%}}@media screen and (min-width:1200px){.benefits__accredited--card{width:75%}}.benefits__accredited--span-l{color:#fff;font-size:2.1rem;font-weight:bolder;display:block;line-height:1;margin-top:-10px;margin-bottom:5px}.benefits__accredited--span-s{color:#fff;font-size:1.1rem;font-style:italic;line-height:.5;font-weight:600;letter-spacing:-.04rem}.benefits__accredited--span--source{display:block}.benefits__accredited--itransfer--wrapper{width:50%}.benefits__borders--circle-img{border:3px solid #fff;filter:drop-shadow(5px 5px 12px #b1b1b1);width:50%}@media screen and (min-width:768px){.benefits__borders--circle-img{width:100%}}#page-top:before{display:block;content:" ";margin-top:-60px;height:60px;visibility:hidden;pointer-events:none}.hero-slider__slider--sub-heading{color:#fff;font-family:Roboto,sans-serif;font-size:.7em;font-weight:400;letter-spacing:.01em;margin-bottom:2px;padding-top:5px;text-transform:uppercase}@media screen and (min-width:768px){.hero-slider__slider--sub-heading{font-size:.9em}}@media screen and (min-width:992px){.hero-slider__slider--sub-heading{font-size:1em}}@media screen and (min-width:1200px){.hero-slider__slider--sub-heading{font-size:1.2em}}.hero-slider__slider--slide-heading{color:#fff;font-family:Libre Franklin,sans-serif;font-size:1em;font-weight:300;letter-spacing:.02em;text-transform:uppercase}@media screen and (min-width:360px){.hero-slider__slider--slide-heading{font-size:1.2em}}@media screen and (min-width:768px){.hero-slider__slider--slide-heading{font-size:2.1em}}@media screen and (min-width:992px){.hero-slider__slider--slide-heading{font-size:2.8em}}@media screen and (min-width:1200px){.hero-slider__slider--slide-heading{font-size:3em}}.hero-slider__heading--bold{color:#fff;filter:drop-shadow(2px 2px 5px #000);font-family:Libre Franklin,sans-serif;font-size:1em;font-weight:500;letter-spacing:.02em;text-transform:uppercase}@media screen and (min-width:360px){.hero-slider__heading--bold{font-size:1.2em}}@media screen and (min-width:768px){.hero-slider__heading--bold{font-size:2.1em}}@media screen and (min-width:992px){.hero-slider__heading--bold{font-size:2.8em}}@media screen and (min-width:1200px){.hero-slider__heading--bold{font-size:3em}}.hero-slider__slider{padding-left:0;padding-right:0}.hero-slider__slider--heading-container{margin-left:.5%;padding-left:5px;position:absolute;top:55%;width:10%;z-index:4444}@media screen and (min-width:488px){.hero-slider__slider--heading-container{top:63%}}@media screen and (min-width:576px){.hero-slider__slider--heading-container{top:64%}}@media screen and (min-width:768px){.hero-slider__slider--heading-container{padding-left:10px;top:64.5%}}@media screen and (min-width:992px){.hero-slider__slider--heading-container{padding-left:20px;top:70%}}@media screen and (min-width:1200px){.hero-slider__slider--heading-container{top:71%}}.hero-slider__slides-4{width:10%}.hero-slider__slides-8{width:5%}.hero-slider__slider--slide-img{position:relative;width:100%}.hero-slider__slider .slick-next{right:10px}.hero-slider__slider .slick-prev{left:10px;z-index:1}@media screen and (min-width:488px){.hero-slider__slider .slick-next{right:20px}}@media screen and (min-width:488px){.hero-slider__slider .slick-prev{left:20px}}@media screen and (min-width:576px){.hero-slider__slider .slick-next{right:25px}.hero-slider__slider .slick-prev{left:25px}}.hero-slider__slider .slick-next,.hero-slider__slider .slick-prev{height:25px;top:75%;width:25px}@media screen and (min-width:992px){.hero-slider__slider .slick-next,.hero-slider__slider .slick-prev{height:40px;top:80%;width:40px}}.hero-slider__slider .slick-dots li button:before{color:#e5e8ed;font-size:12px;line-height:30px;opacity:1;text-shadow:-1px -1px 0 #000,1px -1px 0 #000,-1px 1px 0 #000,1px 1px 0 #000}.hero-slider__slider .slick-dots li.slick-active button:before{color:#0f3b63;opacity:1;text-shadow:-1px -1px 0 #000,1px -1px 0 #000,-1px 1px 0 #000,1px 1px 0 #000}.hero-slider__slider .slick-dots li{margin-left:1px;margin-right:1px;padding-left:0;padding-right:0}.hero-slider__slide-img--border{border:thin solid #d9d9d9}.hero-slider__slider{visibility:hidden}.slick-initialized{visibility:visible}.slick-next:before{content:url(/assets/img/dbl-next_mobile.svg)}.slick-prev:before{content:url(/assets/img/dbl-prev_mobile.svg)}@media screen and (min-width:992px){.slick-next:before{content:url(/assets/img/dbl-next.svg)}.slick-prev:before{content:url(/assets/img/dbl-prev.svg)}}.hero-slider__button--toggle{background:transparent;border:none;color:transparent;cursor:pointer;display:block;font-size:0;height:25px;right:50%;margin-right:-12.5px;line-height:0;outline:none;padding:0;position:absolute;bottom:0;transform:translateY(-50%);width:25px}@media screen and (min-width:992px){.hero-slider__button--toggle{width:40px;bottom:25px;margin-right:-20px}}.hero-slider__button--toggle:before{content:url(/assets/img/pause_mobile.svg);opacity:.75}@media screen and (min-width:992px){.hero-slider__button--toggle:before{content:url(/assets/img/pause.svg)}}.hero-slider__button--play:before{content:url(/assets/img/play_mobile.svg);opacity:.75}@media screen and (min-width:992px){.hero-slider__button--play:before{content:url(/assets/img/play.svg)}}.hero-slider__button--toggle:focus,.hero-slider__button--toggle:hover{color:transparent;outline:none;background:transparent}.hero-slider__button--toggle:focus:before,.hero-slider__button--toggle:hover:before{opacity:1}.img-hover__img-wrapper{margin:0 0 15px;right:0}@media (min-width:767px){.img-hover__img-wrapper{margin:0 0 30px}}.img-hover__img-link{border-radius:5px;cursor:pointer;display:block;margin:0 auto;max-width:400px;overflow:hidden;position:relative}.img-hover__hover{background:#0f3b63;border:5px solid #c61f48;border-radius:5px;height:100%;position:absolute;transition:all .5s ease;width:100%;z-index:2;opacity:0}.img-hover__hover--inverse{opacity:.7}.img-hover__hover:hover,.img-hover__thumb-caption:hover+.img-hover__hover{opacity:.85}.img-hover__hover--inverse:hover,.img-hover__thumb-caption:hover+.img-hover__hover--inverse{opacity:0}.img-hover__img-ease{transition:all 1s ease-in-out}.img-hover__img-link:hover img.img-hover__img-ease{transform:scale(1.2)}.img-hover__thumb-caption{color:#fff;font-size:20px;height:20px;margin-top:-12px;position:absolute;text-align:center;top:50%;width:100%;z-index:3}.sub-nav__nav-link{color:#0f3b63;font-family:Oswald,sans-serif;font-weight:500;margin-left:10px;margin-right:10px;padding-left:5px;padding-right:5px}.sub-nav__nav-link:hover{color:#c61f48}.nav-item.active .sub-nav__nav-link{border-bottom-color:#c61f48;border-bottom-style:solid;border-bottom-width:thick;padding-bottom:0}.sub-nav__navbar{border:1px solid #b1b1b1;border-radius:3px}.sub-nav__content--wrapper{padding-left:25px;padding-right:25px}.card-section__col--margin-btm{margin-bottom:2.5rem}.card-section__text-wrapper{margin-bottom:10px;min-height:14rem}.contacts__section-margin{margin-top:40px}.contacts__col-bottom-margin{margin-bottom:40px}.contacts__padding-top{padding-top:40px}.contacts__col--img{margin-left:0;margin-right:-15px}@media screen and (min-width:360px){.contacts__col--img{margin-left:5px}}@media screen and (min-width:410px){.contacts__col--img{margin-left:10px}}@media screen and (min-width:992px){.contacts__padding-left{padding-left:50px}}@media screen and (min-width:1200px){.contacts__padding-left{padding-left:70px}}.contacts__portrait{border:5px solid #fff}.accordion__padding-left{padding-left:0}.accordion__typography--card-header .btn-link{color:#0f3b63;font-family:Open Sans,sans-serif;font-size:1.4rem;font-weight:700;text-align:left}.accordion__typography--card-header .btn-link:hover{color:#c61f48}.accordion__button:before{background-color:#0f3b63;border-radius:50%;color:#fff;content:" \002D";display:inline-block;font-family:Open Sans,sans-serif;font-size:2rem;font-weight:400;height:30px;line-height:30px;margin-right:10px;text-align:center;text-decoration:none!important;text-indent:0;vertical-align:middle;width:30px}.accordion__button.collapsed:before{content:" \002B"}.accordion__button{text-indent:-45px;margin-left:45px}.loader{text-align:center}.loader__img{height:100px;width:100px}.nav-global{background-color:#c61f48;height:56px;margin-left:0;margin-right:0;max-width:100%;min-width:100%;padding-bottom:5px;padding-left:5%;padding-top:5px;width:100%;z-index:1031}.nav-global__kcc-logo{margin-left:5px;width:190px}@media screen and (min-width:360px){.nav-global__kcc-logo{width:220px}}@media screen and (min-width:375px){.nav-global__kcc-logo{width:230px}}@media screen and (min-width:410px){.nav-global__kcc-logo{width:255px}}@media screen and (min-width:488px){.nav-global__kcc-logo{width:260px}}@media screen and (min-width:576px){.nav-global__kcc-logo{width:300px}}@media screen and (min-width:768px){.nav-global__kcc-logo{width:320px}}@media screen and (min-width:992px) and (max-width:1100px){.nav-global__kcc-logo{margin-left:-25px;width:310px}}@media screen and (min-width:1100px){.nav-global__kcc-logo{margin-left:-25px;width:340px}}.clearSearch{background-position:center 72px;padding-top:72px}.search-row{background-color:#005bac;height:46px}.nav-global__gcse-wrapper{margin-left:-5px}@media screen and (min-width:992px){.nav-global__gcse-wrapper{display:block;float:right;margin-top:-18px;width:50%}}.nav-global__search-icon{background-position:50%;background-size:20px 20px;background-repeat:no-repeat;display:inline;height:22px;margin:4px;pointer-events:none;width:22px}@media screen and (min-width:360px){.nav-global__search-icon{background-size:21px 21px}}@media screen and (min-width:410px){.nav-global__search-icon{background-size:22px 22px}}@media screen and (min-width:576px){.nav-global__search-icon{background-size:24px 24px;height:24px;width:24px}}@media screen and (min-width:768px){.nav-global__search-icon{background-size:25px 25px;height:26px;width:26px}}.nav-global .nav-global__search-toggle .nav-global__search-icon{float:right}.nav-global__search-collapse{display:none;margin-top:-113px}@media screen and (min-width:576px){.nav-global__search-collapse{margin-top:-115px}}@media screen and (min-width:992px){.nav-global__search-collapse{display:block;margin-left:0;margin-right:0;margin-top:0}}.nav-global__search-collapse--visible{display:block;width:100%}.nav-global__search-toggle{top:40px;text-decoration:none!important}.nav-global__search--conatiner{max-width:1100px;margin-left:auto;margin-right:auto}.nav-global__search--open-background{width:120%;background-color:#c61f48;height:65px;position:absolute;z-index:-1;top:-60px;left:-40px}.nav-global__navbar-brand{margin-left:-10px}@media screen and (min-width:410px){.nav-global__navbar-brand{margin-left:-15px}}@media screen and (min-width:488px){.nav-global__navbar-brand{margin-left:-20px}}@media screen and (min-width:576px){.nav-global__navbar-brand{margin-left:-25px}}@media screen and (min-width:768px){.nav-global__navbar-brand{margin-left:-35px}}@media screen and (min-width:992px){.nav-global__navbar-brand{margin-left:-20px}}@media screen and (min-width:1000px){.nav-global__navbar-brand{margin-left:-18px}}@media screen and (min-width:1080px){.nav-global__navbar-brand{margin-left:-22px}}@media screen and (min-width:1200px){.nav-global__navbar-brand{margin-left:-2.5%}}@media screen and (min-width:1600px){.nav-global__navbar-brand{margin-left:-3%}}@media screen and (min-width:1900px){.nav-global__navbar-brand{margin-left:-3.25%}}@media screen and (min-width:2000px){.nav-global__navbar-brand{margin-left:-3.5%}}.nav-global__kcc-logo-inverse{margin-left:-3px;width:50px;margin-right:-10px}@media screen and (min-width:360px){.nav-global__kcc-logo-inverse{width:60px}}@media screen and (min-width:410px){.nav-global__kcc-logo-inverse{width:68px}}@media screen and (min-width:488px){.nav-global__kcc-logo-inverse{width:68px}}@media screen and (min-width:576px){.nav-global__kcc-logo-inverse{width:73px}}@media screen and (min-width:768px){.nav-global__kcc-logo-inverse{width:80px}}@media screen and (min-width:992px){.nav-global__kcc-logo-inverse{width:80px;margin-left:-30px;margin-right:20px}}@media screen and (min-width:1100px){.nav-global__kcc-logo-inverse{width:85px;margin-right:15px}}@media screen and (min-width:1300px){.nav-global__kcc-logo-inverse{width:85px;margin-left:-35px}}@media screen and (min-width:1400px){.nav-global__kcc-logo-inverse{width:85px;margin-left:-40px}}.nav-local{top:55px;border-bottom-color:#b1b1b1;border-bottom-style:solid;border-bottom-width:1px}.nav-local__search-toggle{top:86px}.nav-local .nav-link{margin-left:10px;margin-right:10px}@media screen and (min-width:992px){.nav-local .nav-link{margin-left:5px;margin-right:5px}}@media screen and (min-width:1200px){.nav-local .nav-link{margin-left:10px;margin-right:10px}}#mainNav .navbar-brand{transition:all .4s ease}@media screen and (min-width:992px){#mainNav.navbar-shrink{padding-top:0;padding-bottom:0;opacity:.96}#mainNav.navbar-shrink .navbar-brand{transform:scale(.8)}}.yt-embed__wrapper{height:0;overflow:hidden;padding-bottom:56.25%;padding-top:30px;position:relative}.yt-embed__wrapper iframe{height:100%;left:0;position:absolute;top:0;width:100%}.breadcrumbs{background-color:transparent;border-bottom-color:rgba(0,0,0,.25);border-bottom-left-radius:0;border-bottom-right-radius:0;border-bottom-style:solid;border-bottom-width:thin;margin-bottom:1.5rem}.breadcrumbs--margin-top{margin-top:125px}.breadcrumbs--home{vertical-align:bottom}.breadcrumbs--home--house{fill:none;stroke:#666;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:10}.breadcrumbs--home--border{fill:none}.breadcrumb-item+.breadcrumb-item:before{content:url(/assets/img/keyboard_arrow_right.svg);opacity:.5}.positioning__margin-bottom{margin-bottom:30px}@media screen and (min-width:1200px){.positioning__margin-bottom{margin-bottom:40px}}.positioning__margin-top{margin-top:30px}@media screen and (min-width:1200px){.positioning__margin-top{margin-top:40px}}.positioning__heading-margin-bottom{margin-bottom:15px}@media screen and (min-width:1200px){.positioning__heading-margin-bottom{margin-bottom:20px}}.position__offset-fixed-nav{margin-top:105px}@media screen and (min-width:360px){.position__offset-fixed-nav{margin-top:110px}}@media screen and (min-width:410px){.position__offset-fixed-nav{margin-top:120px}}@media screen and (min-width:576px){.position__offset-fixed-nav{margin-top:125px}}@media screen and (min-width:768px){.position__offset-fixed-nav{margin-top:130px}}@media screen and (min-width:992px){.position__offset-fixed-nav{margin-top:170px}}.position__sub-nav--offset-fixed-nav{margin-bottom:15px;margin-top:130px}@media screen and (min-width:360px){.position__sub-nav--offset-fixed-nav{margin-bottom:20px;margin-top:135px}}@media screen and (min-width:410px){.position__sub-nav--offset-fixed-nav{margin-top:140px}}@media screen and (min-width:576px){.position__sub-nav--offset-fixed-nav{margin-top:145px}}@media screen and (min-width:768px){.position__sub-nav--offset-fixed-nav{margin-top:150px}}@media screen and (min-width:992px){.position__sub-nav--offset-fixed-nav{margin-top:155px}}@media screen and (min-width:1200px){.position__sub-nav--offset-fixed-nav{margin-top:160px}}.positioning__iframe-wrapper{margin-bottom:20px;position:relative;padding-bottom:56.25%;padding-top:25px;height:0}.positioning__iframe-wrapper iframe{position:absolute;top:0;left:0;width:100%;height:100%}.positioning__accordian--padding{margin-top:15px;padding-left:5px;padding-right:5px}@media screen and (min-width:992px){.positioning__accordian--padding{margin-top:60px}}.positioning__accordian-marg{margin-top:75px}.positioning__card--spacing{margin-bottom:40px}.positioning__first-section--marg{margin-top:15px;background-color:#ccdde1;padding-bottom:25px;padding-top:25px}@media screen and (min-width:1200px){.positioning__first-section--marg{margin-top:15px}}.positioning__section--marg{margin-top:35px}@media screen and (min-width:1200px){.positioning__section--marg{margin-top:65px}}.positioning__row--pad{margin-top:25px}.positioning__register--itransfer-img{width:120px;margin-top:40px}@media screen and (min-width:400px){.positioning__register--itransfer-img{width:140px}}@media screen and (min-width:768px){.positioning__register--itransfer-img{width:150px}}@media screen and (min-width:992px){.positioning__register--itransfer-img{padding-left:25px}}.positioning__register--mobile-row--pad{padding-left:0}@media screen and (min-width:576px){.positioning__register--mobile-row--pad{padding-left:20%}}@media screen and (min-width:992px){.positioning__register--mobile-row--pad{padding-left:0}}.positioning__register--idfpr-img{width:330px;margin-top:60px}@media screen and (max-width:992px){.positioning__register--idfpr-img{margin-bottom:15px}}.positioning__register--iccb-img{width:250px}@media screen and (max-width:992px){.positioning__register--iccb-img{margin-top:15px}}.positioning__heading--row{margin-top:16%}.positioning__check-svg{margin-top:-60px;width:80px}.positioning__blue-section{background-color:#ccdde1;padding-bottom:25px;padding-top:25px}.positioning__col--offset{margin-right:-25px}@media screen and (min-width:768px){.positioning__col--offset{margin-right:-45px}}.positioning__offset-global-nav{margin-top:60px}@media screen and (min-width:768px){.position__col--min-height{min-height:15rem}}@media screen and (min-width:992px){.position__col--min-height{min-height:12rem}}@media screen and (min-width:1200px){.position__col--min-height{min-height:9rem}}.position__offset-core-nav{margin-top:99px}.position__offset-core-nav.position__campus-alerts--open{margin-top:109px}@media screen and (min-width:992px){.position__offset-core-nav{margin-top:80px}.position__offset-core-nav.position__campus-alerts--open{margin-top:93px}}.position__offset-alert{margin-top:125px;height:1px}.position__offset-alert--visible{height:auto}@media screen and (min-width:400px){.position__offset-alert{margin-top:135px}}@media screen and (min-width:576px){.position__offset-alert{margin-top:140px}}@media screen and (min-width:768px){.position__offset-alert{margin-top:145px}}@media screen and (min-width:992px){.position__offset-alert{margin-top:150px}}.position__offset-alert.position__offset-alert-core{margin-top:115px}@media screen and (min-width:992px){.position__offset-alert.position__offset-alert-core{margin-top:110px}}.margins__col--top{margin-top:40px}.margins__col--btm,.margins__heading--btm{margin-bottom:40px}.margins__heading-tan--btm{margin-bottom:21px}.margins__bottom--none{margin-bottom:0}.padding__col--mobile-none{padding-left:0;padding-right:0}@media screen and (min-width:992px){.padding__col--mobile-none{padding-left:15px;padding-right:15px}}.padding__x--none{padding-left:0;padding-right:0}.tables td,.tables th{border:thin solid gray;padding-left:5px;padding-right:5px}.section__heading-underline{background-image:url(/assets/img/heading-bg-underline.png);background-repeat:no-repeat;background-position:0 50px}.section__heading-underline--transparent{background-image:url(/assets/img/heading-bg-underline-transparent.png);background-repeat:no-repeat;background-position:0 50px}.section__heading-underline-tan{background-image:url(/assets/img/heading-bg-underline-tan.png);background-repeat:no-repeat;background-position:0 50px}.section__margin-bottom{margin-bottom:3rem}.background__color--tan{background-color:#fcf1d6}.thank-you__check-mark{height:75px;width:75px}.home__col--heading-underline{background-image:url(/assets/img/heading-bg-underline.png);background-repeat:no-repeat;background-position:0 50px}.home__col--heading-underline-tan{background-image:url(/assets/img/heading-bg-underline-tan.png);background-repeat:no-repeat;background-position:0 50px;bottom:-20px}
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24"><path fill="#666" d="M10 17l5-5-5-5v10z"/><path d="M0 24V0h24v24H0z" fill="none"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24"><path d="M0 0h24v24H0V0z" fill="none"/><path fill="#666" d="M16.01 11H4v2h12.01v3L20 12l-3.99-4v3z"/></svg>
|
data/assets/img/home.svg
ADDED
@@ -0,0 +1,8 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!-- Generator: Adobe Illustrator 25.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3
|
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4
|
+
viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
|
5
|
+
<path fill="none" d="M0,0h24v24H0V0z"/>
|
6
|
+
<polygon fill="none" stroke="#000000" stroke-width="1.5" stroke-linejoin="round" stroke-miterlimit="10" points="14.5,19.5
|
7
|
+
14.5,13.5 9.5,13.5 9.5,19.5 5.5,19.5 5.5,11.5 3.3,11.5 12,3.7 20.7,11.5 18.5,11.5 18.5,19.5 "/>
|
8
|
+
</svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24"><path d="M0 0h24v24H0V0z" fill="none"/><path fill="#666" d="M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"/></svg>
|
@@ -81,3 +81,41 @@
|
|
81
81
|
color: $primary-red;
|
82
82
|
}
|
83
83
|
}
|
84
|
+
|
85
|
+
.buttons__action {
|
86
|
+
color: $white;
|
87
|
+
background-color: $primary-red;
|
88
|
+
border-color: $color-red-darker;
|
89
|
+
font-family: $font-family-headings;
|
90
|
+
font-size: 1.3rem;
|
91
|
+
font-weight: $font-weight-bolder; //dash
|
92
|
+
line-height: 36px;
|
93
|
+
letter-spacing: .075rem;
|
94
|
+
width: 100%;
|
95
|
+
&:hover,
|
96
|
+
&:focus {
|
97
|
+
color: $white;
|
98
|
+
background-color: $primary-blue;
|
99
|
+
}
|
100
|
+
}
|
101
|
+
|
102
|
+
@media screen and (min-width: 360px) {
|
103
|
+
.buttons__action {
|
104
|
+
font-size: 1.75rem;
|
105
|
+
line-height: 48px;
|
106
|
+
}
|
107
|
+
}
|
108
|
+
|
109
|
+
@media screen and (min-width: 768px) {
|
110
|
+
.buttons__action {
|
111
|
+
font-size: 1.3rem;
|
112
|
+
line-height: 36px;
|
113
|
+
}
|
114
|
+
}
|
115
|
+
|
116
|
+
@media screen and (min-width: 992px) {
|
117
|
+
.buttons__action {
|
118
|
+
font-size: 1.75rem;
|
119
|
+
line-height: 48px;
|
120
|
+
}
|
121
|
+
}
|
@@ -224,9 +224,16 @@
|
|
224
224
|
& .st0 {
|
225
225
|
fill: none;
|
226
226
|
}
|
227
|
+
transition: all .5s ease-in-out;
|
227
228
|
}
|
228
229
|
|
229
230
|
@media screen and (min-width: 992px) and (max-width: 1040px) { // the KCC word logo needs to shrink a little bit at these screen sizes
|
231
|
+
.header-global__brand--svg {
|
232
|
+
height: 22px;
|
233
|
+
}
|
234
|
+
}
|
235
|
+
|
236
|
+
@media screen and (min-width: 1041px) {
|
230
237
|
.header-global__brand--svg {
|
231
238
|
height: 26px;
|
232
239
|
}
|
@@ -19,4 +19,61 @@
|
|
19
19
|
&--red {
|
20
20
|
fill: $primary-red;
|
21
21
|
}
|
22
|
-
}
|
22
|
+
}
|
23
|
+
|
24
|
+
.svg--max-width {
|
25
|
+
max-width: 100%;
|
26
|
+
}
|
27
|
+
|
28
|
+
.svg {
|
29
|
+
&__button {
|
30
|
+
height: 48px;
|
31
|
+
width: 48px;
|
32
|
+
}
|
33
|
+
&--fill-none {
|
34
|
+
fill: none;
|
35
|
+
}
|
36
|
+
&--fill-white {
|
37
|
+
fill: $white;
|
38
|
+
}
|
39
|
+
&--fill-blue {
|
40
|
+
fill: $primary-blue;
|
41
|
+
}
|
42
|
+
}
|
43
|
+
|
44
|
+
.svg__action--place {
|
45
|
+
margin-left: -2rem;
|
46
|
+
}
|
47
|
+
|
48
|
+
@media screen and (min-width: 360px) {
|
49
|
+
.svg__action--place {
|
50
|
+
margin-left: -3rem;
|
51
|
+
}
|
52
|
+
}
|
53
|
+
|
54
|
+
@media screen and (min-width: 768px) {
|
55
|
+
.svg__action--place {
|
56
|
+
margin-left: 0;
|
57
|
+
}
|
58
|
+
}
|
59
|
+
|
60
|
+
@media screen and (min-width: 360px) {
|
61
|
+
.svg__button {
|
62
|
+
height: 48px;
|
63
|
+
width: 48px;
|
64
|
+
}
|
65
|
+
}
|
66
|
+
|
67
|
+
@media screen and (min-width: 768px) {
|
68
|
+
.svg__button {
|
69
|
+
height: 36px;
|
70
|
+
width: 36px;
|
71
|
+
}
|
72
|
+
}
|
73
|
+
|
74
|
+
@media screen and (min-width: 992px) {
|
75
|
+
.svg__button {
|
76
|
+
height: 48px;
|
77
|
+
width: 48px;
|
78
|
+
}
|
79
|
+
}
|
@@ -0,0 +1,32 @@
|
|
1
|
+
|
2
|
+
.breadcrumbs {
|
3
|
+
background-color: transparent; // Override the Bootstrap 4 grey background-color for the breadcrumb component.
|
4
|
+
border-bottom-color: rgba(0,0,0,.25);
|
5
|
+
border-bottom-left-radius: 0;
|
6
|
+
border-bottom-right-radius: 0;
|
7
|
+
border-bottom-style: solid;
|
8
|
+
border-bottom-width: thin;
|
9
|
+
margin-bottom: 1.5rem;
|
10
|
+
&--margin-top {
|
11
|
+
margin-top: 125px;
|
12
|
+
}
|
13
|
+
&--home {
|
14
|
+
vertical-align: bottom;
|
15
|
+
&--house {
|
16
|
+
fill: none;
|
17
|
+
stroke: $grey-1;
|
18
|
+
stroke-width: 1.5;
|
19
|
+
stroke-linejoin: round;
|
20
|
+
stroke-miterlimit: 10;
|
21
|
+
}
|
22
|
+
&--border {
|
23
|
+
fill: none;
|
24
|
+
}
|
25
|
+
}
|
26
|
+
}
|
27
|
+
|
28
|
+
// This is a Bootstrap 4 override to customize the breadcrumb divider
|
29
|
+
.breadcrumb-item+.breadcrumb-item::before { // Breadcrumb divider is a CSS pseudo-element
|
30
|
+
content: url('/assets/img/keyboard_arrow_right.svg');
|
31
|
+
opacity: .5;
|
32
|
+
}
|
data/assets/scss/kcc-theme.scss
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kcc-gem-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.75.78
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- wdzajicek
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-02-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -70,6 +70,7 @@ files:
|
|
70
70
|
- _includes/benefits.html
|
71
71
|
- _includes/body.html
|
72
72
|
- _includes/bottom-action-call.html
|
73
|
+
- _includes/breadcrumbs.html
|
73
74
|
- _includes/card-section.html
|
74
75
|
- _includes/chat-now.html
|
75
76
|
- _includes/check-mark.svg
|
@@ -84,6 +85,7 @@ files:
|
|
84
85
|
- _includes/header.html
|
85
86
|
- _includes/hero-slider.html
|
86
87
|
- _includes/image-slider.html
|
88
|
+
- _includes/main-call-to-action.html
|
87
89
|
- _includes/nav-global-bottom.html
|
88
90
|
- _includes/nav-global-local.html
|
89
91
|
- _includes/nav-global-top.html
|
@@ -110,11 +112,14 @@ files:
|
|
110
112
|
- _includes/styles/main.html
|
111
113
|
- _includes/styles/vendor.html
|
112
114
|
- _includes/svg/check.html
|
115
|
+
- _includes/svg/check_circle-24px.html
|
116
|
+
- _includes/svg/email-24px.html
|
113
117
|
- _includes/svg/goals.html
|
114
118
|
- _includes/svg/kcc-copy.html
|
115
119
|
- _includes/svg/kcc.html
|
116
120
|
- _includes/svg/kcc.svg
|
117
121
|
- _includes/svg/love.html
|
122
|
+
- _includes/svg/place-24px.html
|
118
123
|
- _includes/svg/save-money.html
|
119
124
|
- _includes/tabbed-content.html
|
120
125
|
- _includes/targetx-form.html
|
@@ -140,6 +145,8 @@ files:
|
|
140
145
|
- assets/img/DSC_8724_4x3.jpg
|
141
146
|
- assets/img/admissions-navigation-menu.jpg
|
142
147
|
- assets/img/alert.svg
|
148
|
+
- assets/img/arrow-right.svg
|
149
|
+
- assets/img/arrow_right_alt.svg
|
143
150
|
- assets/img/baseball.svg
|
144
151
|
- assets/img/basketball.svg
|
145
152
|
- assets/img/blank-contact.svg
|
@@ -161,6 +168,7 @@ files:
|
|
161
168
|
- assets/img/heading-bg-underline-tan.png
|
162
169
|
- assets/img/heading-bg-underline-transparent.png
|
163
170
|
- assets/img/heading-bg-underline.png
|
171
|
+
- assets/img/home.svg
|
164
172
|
- assets/img/instagram-white.svg
|
165
173
|
- assets/img/itransfer.png
|
166
174
|
- assets/img/kankakee-community-college-word-logo.svg
|
@@ -169,6 +177,7 @@ files:
|
|
169
177
|
- assets/img/kcc-placeholder-square.png
|
170
178
|
- assets/img/kcc-placeholder.png
|
171
179
|
- assets/img/kcc-text-logo.svg
|
180
|
+
- assets/img/keyboard_arrow_right.svg
|
172
181
|
- assets/img/linkedin-white.svg
|
173
182
|
- assets/img/loader.gif
|
174
183
|
- assets/img/menu-bg.png
|
@@ -250,6 +259,7 @@ files:
|
|
250
259
|
- assets/scss/1-base/_typography.scss
|
251
260
|
- assets/scss/2-modules/_accordion.scss
|
252
261
|
- assets/scss/2-modules/_benefits.scss
|
262
|
+
- assets/scss/2-modules/_breadcrumbs.scss
|
253
263
|
- assets/scss/2-modules/_campus-alerts.scss
|
254
264
|
- assets/scss/2-modules/_card-section.scss
|
255
265
|
- assets/scss/2-modules/_contacts.scss
|