landing-page-gem 0.11.1 → 0.12.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e45af74de1b6ff4f0e1f452a46a0f8e2171d71941f675ff99168e133ce7464ca
4
- data.tar.gz: 5751de01575e37f9d5e4ddc773476ea8c8c49f530074022ea70a3f7a7c504e37
3
+ metadata.gz: e49551163e98bb66b684049378ac7978c26499540e49fd796129ba1aaab5ea08
4
+ data.tar.gz: 1bc7faf1437c7f225d6bbf51f9611ccf21878700e57c72196ca4bf6fb62e8c6e
5
5
  SHA512:
6
- metadata.gz: ae8470ec9a5d73d01f7279da02aa4a3b068868c8718948bdce01956aa28330cdd23ad5bcb8d1c0ecc11b81e17cdb75842ad3eb6e634c28ac9631599439f521e1
7
- data.tar.gz: 3de809895bbcd47a7539210a30924080d09050c54f1d9239f8e0192f7aeb016ffb3fdd41d7b2e367f8400e3a1e907505f87f9c6b707b56423090a24288d17547
6
+ metadata.gz: febaa83a880b34978df4021407bdca3bdf14e16ec8f15040a257e6667a12da9f162a135c24d6b6e39a7d9a445b4115e2e9d712d3aab5ddb01bd61d27c5ff7b83
7
+ data.tar.gz: af7c1b5d43e0053529c815be71ce52185a3ac5819746780665202cede1062e2074368cd53b004b4accd4fd73c85ce5bbfbe4920bfbb021faf75e7f7e06ab887c
data/_config.yml CHANGED
@@ -1,7 +1,9 @@
1
1
  #### ANY CHANGE TO THIS FILE REQUIRES THE BUILD-COMMAND TO BE RESTARTED ####
2
2
  title: "KCC"
3
3
  site_name: Veterans
4
- public-url: "https://subdomain.kcc.edu"
4
+ public-url: "https://subdomain.kcc.edu" # `public-url` is used to construct footer link and it's text, unless...
5
+ # footer_link: 'https://itcert.kcc.edu' # `footer_link` & `footer_link_text` are present they override `public-url`
6
+ # footer_link_text: 'ITcert.kcc.edu' # Use `footer_link` & `footer_link_text` to create text/href that don't match
5
7
  url: 'URL is needed for robots.txt to work properly' ## NO TRAILING SLASHES!!/<--nope
6
8
  port: 3000
7
9
  ## contact_phone: 815-802-8888 ### Set to phone number in the `815-802-8888` format or `false` to remove the phone number from navbar. ###
@@ -43,4 +45,4 @@ exclude:
43
45
  - "postcss.config.js"
44
46
 
45
47
  uploads_dir: # specifies the default uploads directory for uploads in CloudCannon
46
- - "uploads/"
48
+ - "uploads/"
@@ -1,18 +1,30 @@
1
1
  <footer class="footer footer__margin">
2
- <div class="container">
2
+ <div class="container-fluid">
3
3
  <div class="row">
4
- <div class="col-lg-6 footer__mobile--margin-bottom">
4
+ <div class="col-lg-4 text-center mb-4">
5
+ <img
6
+ src="{{ page.baseurl }}assets/img/iccmc-logo_blue-transparent.png"
7
+ class="img-fluid"
8
+ height="171"
9
+ width="300"
10
+ alt="The Community Colleges of Illinois. For every student, for every community.">
11
+ </div>
12
+ <div class="col-lg-4 footer__mobile--margin-bottom mb-4 my-lg-auto">
5
13
  <div class="row">
6
14
  <div class="col-lg-12 text-center">
7
- <a href="{{ site.public-url }}" class="footer-link">
8
- <h5 class="typography__footer-heading{% if site.public-url.size > 25 %} typography__footer-heading--long{% endif %}">
15
+ <a href="{% if site.footer_link %}{{ site.footer_link }}{% else %}{{ site.public-url }}{% endif %}" class="footer-link">
16
+ <h5 class="typography__footer-heading{% if site.footer_link %}{% if site.footer_link.size > 20 %} typography__footer-heading--long{% endif %}{% else %}{% if site.public-url.size > 20 %} typography__footer-heading--long{% endif %}{% endif %}">
17
+ {% if site.footer_link_text %}
18
+ {{ site.footer_link_text }}
19
+ {% else %}
9
20
  {{ site.public-url | replace: "https://", "" | replace: "http://", "" }}
21
+ {% endif %}
10
22
  </h5>
11
23
  </a>
12
24
  </div>
13
25
  </div>
14
26
  <div class="row">
15
- <div class="col-lg-12">
27
+ <div class="col-lg-12 px-0">
16
28
  <div class="text-center">
17
29
  <span>
18
30
  <a href="https://www.facebook.com/KankakeeCommunityCollege/" class="footer-social-links" target="_blank" rel="noopener">
@@ -164,7 +176,7 @@
164
176
  </div>
165
177
  </div>
166
178
  </div>
167
- <div class="col-lg-6">
179
+ <div class="col-sm-8 offset-sm-2 col-md-6 offset-md-3 col-lg-4 offset-lg-0 my-auto">
168
180
  <a href="https://www.kcc.edu" target="_blank" rel="noopener">
169
181
  <svg
170
182
  id="KCC-text-logo"
@@ -262,7 +274,7 @@
262
274
  </a>
263
275
  <p>100 College Drive Kankakee, IL 60901 <br>
264
276
  <a class="links__darker-link" href="tel:18158028100">815-802-8100</a> <br>
265
- &copy;&nbsp;<span id="currentYear">{{ 'now' | date: '%Y' }}</span> Kankakee Community College</p>
277
+ &copy;&nbsp;<span id="currentYear">{{ "now" | date: "%Y" }}</span> Kankakee Community College</p>
266
278
  </div>
267
279
  </div>
268
280
  </div>
@@ -1 +1 @@
1
- 086cdaabfd88c44deaec
1
+ 021a12c5186589a5e21d
@@ -1,3 +1,3 @@
1
1
  <!-- CDN links to Bootstrap 4 beta dependancies -->
2
- <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js" integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ==" crossorigin="anonymous"></script>
3
- <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-Piv4xVNRyMGpqkS2by6br4gNJ7DXjqk09RmUpJ8jgGtD7zP9yug3goQfGII0yAns" crossorigin="anonymous"></script>
2
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js" integrity="sha512-v2CJ7UaYy4JwqLDIrZUI/4hqeoQieOmAZNXBeQyjo21dadnwR+8ZaIJVT8EE2iyI61OV8e6M8PP2/4hpQINQ/g==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
3
+ <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/js/bootstrap.min.js" integrity="sha384-+sLIOodYLS7CIrQpBjl+C7nPvqq+FbNUBDunl/OZv93DB7Ln/533i8e/mZXLi/P+" crossorigin="anonymous"></script>
@@ -1,3 +1,3 @@
1
1
  <!-- CDN assets -->
2
2
  <!-- Bootstrap 4 minified stylesheet -->
3
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
3
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/css/bootstrap.min.css" integrity="sha384-xOolHFLEh07PJGoPkLv1IbcEPTNtaed2xpHsD9ESMhqIYd0nLMwNLD69Npy4HI+N" crossorigin="anonymous">
@@ -1 +1 @@
1
- !function(){"use strict";var e,n,t={},r={};function o(e){var n=r[e];if(void 0!==n)return n.exports;var a=r[e]={exports:{}};return t[e](a,a.exports,o),a.exports}o.m=t,o.f={},o.e=function(e){return Promise.all(Object.keys(o.f).reduce((function(n,t){return o.f[t](e,n),n}),[]))},o.u=function(e){return e+"."+o.h()+".bundle.js"},o.miniCssF=function(e){return"kcc-landing-page."+o.h()+".css"},o.h=function(){return"086cdaabfd88c44deaec"},o.o=function(e,n){return Object.prototype.hasOwnProperty.call(e,n)},e={},n="landing-page-gem:",o.l=function(t,r,a,i){if(e[t])e[t].push(r);else{var u,c;if(void 0!==a)for(var d=document.getElementsByTagName("script"),s=0;s<d.length;s++){var f=d[s];if(f.getAttribute("src")==t||f.getAttribute("data-webpack")==n+a){u=f;break}}u||(c=!0,(u=document.createElement("script")).charset="utf-8",u.timeout=120,o.nc&&u.setAttribute("nonce",o.nc),u.setAttribute("data-webpack",n+a),u.src=t),e[t]=[r];var l=function(n,r){u.onerror=u.onload=null,clearTimeout(p);var o=e[t];if(delete e[t],u.parentNode&&u.parentNode.removeChild(u),o&&o.forEach((function(e){return e(r)})),n)return n(r)},p=setTimeout(l.bind(null,void 0,{type:"timeout",target:u}),12e4);u.onerror=l.bind(null,u.onerror),u.onload=l.bind(null,u.onload),c&&document.head.appendChild(u)}},o.p="/assets/js/dist/",function(){var e={771:0};o.f.j=function(n,t){var r=o.o(e,n)?e[n]:void 0;if(0!==r)if(r)t.push(r[2]);else{var a=new Promise((function(t,o){r=e[n]=[t,o]}));t.push(r[2]=a);var i=o.p+o.u(n),u=new Error;o.l(i,(function(t){if(o.o(e,n)&&(0!==(r=e[n])&&(e[n]=void 0),r)){var a=t&&("load"===t.type?"missing":t.type),i=t&&t.target&&t.target.src;u.message="Loading chunk "+n+" failed.\n("+a+": "+i+")",u.name="ChunkLoadError",u.type=a,u.request=i,r[1](u)}}),"chunk-"+n,n)}};var n=function(n,t){var r,a,i=t[0],u=t[1],c=t[2],d=0;if(i.some((function(n){return 0!==e[n]}))){for(r in u)o.o(u,r)&&(o.m[r]=u[r]);c&&c(o)}for(n&&n(t);d<i.length;d++)a=i[d],o.o(e,a)&&e[a]&&e[a][0](),e[a]=0},t=self.webpackChunklanding_page_gem=self.webpackChunklanding_page_gem||[];t.forEach(n.bind(null,0)),t.push=n.bind(null,t.push.bind(t))}(),window.addEventListener("load",(async()=>{if(document.querySelector("img[data-src]")){const{default:e}=await o.e(582).then(o.bind(o,582));e()}const{default:e}=await o.e(909).then(o.bind(o,909));if(e(),document.querySelector('a[href="#page-top"]')){const{default:e}=await o.e(321).then(o.bind(o,321));e()}if(document.getElementById("SearchTermForm")){const{default:e}=await o.e(737).then(o.bind(o,737));e()}}))}();
1
+ !function(){"use strict";var e,n,t={},r={};function o(e){var n=r[e];if(void 0!==n)return n.exports;var a=r[e]={exports:{}};return t[e](a,a.exports,o),a.exports}o.m=t,o.f={},o.e=function(e){return Promise.all(Object.keys(o.f).reduce((function(n,t){return o.f[t](e,n),n}),[]))},o.u=function(e){return e+"."+o.h()+".bundle.js"},o.miniCssF=function(e){return"kcc-landing-page."+o.h()+".css"},o.h=function(){return"021a12c5186589a5e21d"},o.o=function(e,n){return Object.prototype.hasOwnProperty.call(e,n)},e={},n="landing-page-gem:",o.l=function(t,r,a,i){if(e[t])e[t].push(r);else{var u,c;if(void 0!==a)for(var d=document.getElementsByTagName("script"),s=0;s<d.length;s++){var l=d[s];if(l.getAttribute("src")==t||l.getAttribute("data-webpack")==n+a){u=l;break}}u||(c=!0,(u=document.createElement("script")).charset="utf-8",u.timeout=120,o.nc&&u.setAttribute("nonce",o.nc),u.setAttribute("data-webpack",n+a),u.src=t),e[t]=[r];var f=function(n,r){u.onerror=u.onload=null,clearTimeout(p);var o=e[t];if(delete e[t],u.parentNode&&u.parentNode.removeChild(u),o&&o.forEach((function(e){return e(r)})),n)return n(r)},p=setTimeout(f.bind(null,void 0,{type:"timeout",target:u}),12e4);u.onerror=f.bind(null,u.onerror),u.onload=f.bind(null,u.onload),c&&document.head.appendChild(u)}},o.p="/assets/js/dist/",function(){var e={771:0};o.f.j=function(n,t){var r=o.o(e,n)?e[n]:void 0;if(0!==r)if(r)t.push(r[2]);else{var a=new Promise((function(t,o){r=e[n]=[t,o]}));t.push(r[2]=a);var i=o.p+o.u(n),u=new Error;o.l(i,(function(t){if(o.o(e,n)&&(0!==(r=e[n])&&(e[n]=void 0),r)){var a=t&&("load"===t.type?"missing":t.type),i=t&&t.target&&t.target.src;u.message="Loading chunk "+n+" failed.\n("+a+": "+i+")",u.name="ChunkLoadError",u.type=a,u.request=i,r[1](u)}}),"chunk-"+n,n)}};var n=function(n,t){var r,a,i=t[0],u=t[1],c=t[2],d=0;if(i.some((function(n){return 0!==e[n]}))){for(r in u)o.o(u,r)&&(o.m[r]=u[r]);c&&c(o)}for(n&&n(t);d<i.length;d++)a=i[d],o.o(e,a)&&e[a]&&e[a][0](),e[a]=0},t=self.webpackChunklanding_page_gem=self.webpackChunklanding_page_gem||[];t.forEach(n.bind(null,0)),t.push=n.bind(null,t.push.bind(t))}(),window.addEventListener("load",(async()=>{if(document.querySelector("img[data-src]")){const{default:e}=await o.e(582).then(o.bind(o,582));e()}const{default:e}=await o.e(909).then(o.bind(o,909));if(e(),document.querySelector('a[href="#page-top"]')){const{default:e}=await o.e(321).then(o.bind(o,321));e()}if(document.getElementById("SearchTermForm")){const{default:e}=await o.e(737).then(o.bind(o,737));e()}}))}();
@@ -0,0 +1 @@
1
+ .navbar-brand{margin-right:0}@media screen and (min-width: 768px){.navbar-brand{margin-right:1rem}}.btn{vertical-align:baseline}.btn-primary{background-color:#0051a7;border-color:#003773}.btn-primary:hover{background-color:#022b55;border-color:#021e3d}.editor-link{display:none}.cms-editor-active .editor-link{display:block}.editor-button{display:none}.cms-editor-active .editor-button{display:inline-block}.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}.footer__margin{margin-top:20px}.footer{background-color:#f8f9fa;margin-bottom:-56px;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: 330px){.footer-icons{height:40px;width:40px}}@media screen and (min-width: 360px){.footer-icons{height:40px;margin:5px;width:40px}}@media screen and (min-width: 412px){.footer-icons{height:45px;width:45px}}@media screen and (min-width: 576px){.footer-icons{height:50px;width:50px}}@media screen and (min-width: 992px){.footer-icons{height:45px;margin:3px;width:45px}}@media screen and (min-width: 1053px){.footer-icons{height:45px;margin:5px;width:45px}}@media screen and (min-width: 1200px){.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;max-width:100%}.header__bg{background-image:url("/assets/img/banner-bg.jpg");background-size:cover;background-position:center;background-repeat:no-repeat;height:55%;height:55vh}@media screen and (min-width: 1200px){.header__bg{height:auto}}html{background-color:#b8babc}body{overflow-x:hidden}.links__darker-link{color:#006ce0}.links__phone--span{color:#fff;position:relative;text-decoration:none}.links__phone--span:visited{color:#fff}.links__phone--span:hover,.links__phone--span:focus{color:#fff;text-decoration:none}.links__phone--span:focus:after,.links__phone--span:hover:after{opacity:1;transform:translateY(-0.2em)}.links__phone--span:after{background-color:#f99e1b;bottom:-0.325rem;content:"";display:block;height:.1875rem;opacity:0;position:absolute;transition:opacity .3s,transform .3s;width:100%}.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--fill-green{fill:#00a14b}.svg__earn-more{transform:scale(1.35)}.svg__fill--bright-red{fill:#c81f49}.svg__fill--red-shadow{fill:#8f0f28}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:hover,.typography__nav-heading:focus{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__footer-heading--long{font-size:1.75rem}@media screen and (min-width: 360px){.typography__footer-heading--long{font-size:1.75rem}}@media screen and (min-width: 375px){.typography__footer-heading--long{font-size:2rem}}@media screen and (min-width: 410px){.typography__footer-heading--long{font-size:2.2rem}}.typography__h2{color:#555;font-family:"Roboto",sans-serif;font-size:2rem;font-weight:500}.typography__h3{color:#0f3b63;font-family:"Roboto",sans-serif;font-size:1.75rem;font-weight:600}.typography__h4{color:#c61f48;font-family:"Roboto",sans-serif;font-size:1.7rem;font-weight:600}.typography__h5{color:#555;font-family:"Roboto",sans-serif;font-weight:700;font-size:1.5rem}.typography__h6{color:#555;font-family:"Roboto",sans-serif;font-weight:700;font-size:1.4rem}.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,p,ul:not(.navbar-nav),ol{color:#555;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:normal}.typography__register--h2{color:#fff;font-family:eurostile,sans-serif;font-size:2rem;font-weight:500;letter-spacing:.03rem;position:relative;top:30%;margin-bottom:-10px}@media screen and (min-width: 360px){.typography__register--h2{font-size:2.2rem}}@media screen and (min-width: 400px){.typography__register--h2{font-size:2.4rem}}@media screen and (min-width: 768px){.typography__register--h2{font-size:4rem}}@media screen and (min-width: 1200px){.typography__register--h2{font-size:4.5rem}}@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.4rem;font-weight:500;letter-spacing:.03rem;position:relative;top:31%}@media screen and (min-width: 400px){.typography__register--h3{font-size:1.6rem;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{bottom:15px;color:#fff;filter:drop-shadow(0 0 2px rgba(0, 0, 0, 0.25));font-family:"Oswald",sans-serif;font-size:1rem;font-weight:500;letter-spacing:.07rem;position:absolute;right:25px}@media screen and (min-width: 768px){.typography__register--caption{font-size:1.1rem}}@media screen and (min-width: 1000px){.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__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}}.typography--text-shadow{text-shadow:0 0 10px rgba(0,0,0,.75)}.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__check-svg{margin-top:-60px;width:80px}.benefits__blue-section{background-color:#ccdde1;padding-bottom:25px;padding-top:25px}.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__accredited--card{background-color:#0f3b63;padding-bottom:25px;padding-left:10px;padding-right:10px;padding-top:15px;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:-0.04rem}.benefits__accredited--span--source{display:block}.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}.breadcrumbs{background-color:rgba(0,0,0,0);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}.error__main-heading{color:#c61f48;font-weight:700}.error__sub-heading{color:#0f3b63;font-weight:700}.error__main{min-height:50vh}@media screen and (min-width: 992px){.error__main{min-height:65vh}}.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__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}}.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%}}.positioning__offset-global-nav{margin-top:60px}.positioning__form--margins{margin-top:15px;padding-left:5px;padding-right:5px}@media screen and (min-width: 992px){.positioning__form--margins{margin-top:60px}}.positioning__heading--row{margin-top:35%}@media screen and (min-width: 768px){.positioning__heading--row{margin-top:26%}}@media screen and (min-width: 1200px){.positioning__heading--row{margin-top:35%}}@media screen and (min-width: 1800px){.positioning__heading--row{margin-top:25%}}.positioning__col--offset{margin-right:-25px}@media screen and (min-width: 768px){.positioning__col--offset{margin-right:-45px}}.positioning__max-width-600{max-width:600px;margin-left:auto;margin-right:auto}@media screen and (min-width: 992px){.positioning--min-height-100{min-height:calc(100vh - 265px)}}.thank-you__check-mark{height:75px;position:relative;top:-1rem;width:75px}.thank-you__main{min-height:50vh}@media screen and (min-width: 768px){.thank-you__check-mark{position:static}}@media screen and (min-width: 992px){.thank-you__main{min-height:65vh}}
@@ -16,7 +16,7 @@
16
16
  border-top-width: thin;
17
17
  }
18
18
 
19
- // Footer's "athletics.kcc.edu link"
19
+ // Footer's project self-link
20
20
  a.footer-link {
21
21
  color: $primary-blue;
22
22
 
@@ -44,6 +44,13 @@ a.footer-link {
44
44
  width: 33px;
45
45
  }
46
46
 
47
+ @media screen and (min-width: 330px) {
48
+ .footer-icons {
49
+ height: 40px;
50
+ width: 40px;
51
+ }
52
+ }
53
+
47
54
  @media screen and (min-width: 360px) {
48
55
  .footer-icons {
49
56
  height: 40px;
@@ -53,13 +60,44 @@ a.footer-link {
53
60
  }
54
61
 
55
62
  @media screen and (min-width: 412px) {
63
+ .footer-icons {
64
+ height: 45px;
65
+ width: 45px;
66
+ }
67
+ }
68
+
69
+ @media screen and (min-width: 576px) {
70
+ .footer-icons {
71
+ height: 50px;
72
+ width: 50px;
73
+ }
74
+ }
75
+
76
+ @media screen and (min-width: 992px) {
77
+ .footer-icons {
78
+ height: 45px;
79
+ margin: 3px;
80
+ width: 45px;
81
+ }
82
+ }
83
+
84
+ @media screen and (min-width: 1053px) {
85
+ .footer-icons {
86
+ height: 45px;
87
+ margin: 5px;
88
+ width: 45px;
89
+ }
90
+ }
91
+
92
+ @media screen and (min-width: 1200px) {
56
93
  .footer-icons {
57
94
  height: 50px;
58
95
  width: 50px;
59
96
  }
60
97
  }
61
98
 
62
- a.footer-social-links, a.footer-social-links .footer-icons {
99
+ a.footer-social-links,
100
+ a.footer-social-links .footer-icons {
63
101
  text-decoration: none !important; // Get rid of default link-underline on hover
64
102
  }
65
103
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: landing-page-gem
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.1
4
+ version: 0.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - wdzajicek
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-01 00:00:00.000000000 Z
11
+ date: 2023-09-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -74,6 +74,7 @@ files:
74
74
  - assets/img/banner-bg.jpg
75
75
  - assets/img/culture.svg
76
76
  - assets/img/d-daun2.jpg
77
+ - assets/img/iccmc-logo_blue-transparent.png
77
78
  - assets/img/itransfer.png
78
79
  - assets/img/keyboard_arrow_right.svg
79
80
  - assets/img/miguel2.jpg
@@ -83,12 +84,12 @@ files:
83
84
  - assets/img/schedule.svg
84
85
  - assets/img/support.svg
85
86
  - assets/img/zippia.png
86
- - assets/js/dist/321.086cdaabfd88c44deaec.bundle.js
87
- - assets/js/dist/582.086cdaabfd88c44deaec.bundle.js
88
- - assets/js/dist/737.086cdaabfd88c44deaec.bundle.js
89
- - assets/js/dist/909.086cdaabfd88c44deaec.bundle.js
90
- - assets/js/dist/kcc-landing-page.086cdaabfd88c44deaec.bundle.js
91
- - assets/js/dist/kcc-landing-page.086cdaabfd88c44deaec.css
87
+ - assets/js/dist/321.021a12c5186589a5e21d.bundle.js
88
+ - assets/js/dist/582.021a12c5186589a5e21d.bundle.js
89
+ - assets/js/dist/737.021a12c5186589a5e21d.bundle.js
90
+ - assets/js/dist/909.021a12c5186589a5e21d.bundle.js
91
+ - assets/js/dist/kcc-landing-page.021a12c5186589a5e21d.bundle.js
92
+ - assets/js/dist/kcc-landing-page.021a12c5186589a5e21d.css
92
93
  - assets/js/src/footerDate.js
93
94
  - assets/js/src/landingPage.js
94
95
  - assets/js/src/lazyLoad.js
@@ -1 +0,0 @@
1
- .navbar-brand{margin-right:0}@media screen and (min-width: 768px){.navbar-brand{margin-right:1rem}}.btn{vertical-align:baseline}.btn-primary{background-color:#0051a7;border-color:#003773}.btn-primary:hover{background-color:#022b55;border-color:#021e3d}.editor-link{display:none}.cms-editor-active .editor-link{display:block}.editor-button{display:none}.cms-editor-active .editor-button{display:inline-block}.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}.footer__margin{margin-top:20px}.footer{background-color:#f8f9fa;margin-bottom:-56px;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;max-width:100%}.header__bg{background-image:url("/assets/img/banner-bg.jpg");background-size:cover;background-position:center;background-repeat:no-repeat;height:55%;height:55vh}@media screen and (min-width: 1200px){.header__bg{height:auto}}html{background-color:#b8babc}body{overflow-x:hidden}.links__darker-link{color:#006ce0}.links__phone--span{color:#fff;position:relative;text-decoration:none}.links__phone--span:visited{color:#fff}.links__phone--span:hover,.links__phone--span:focus{color:#fff;text-decoration:none}.links__phone--span:focus:after,.links__phone--span:hover:after{opacity:1;transform:translateY(-0.2em)}.links__phone--span:after{background-color:#f99e1b;bottom:-0.325rem;content:"";display:block;height:.1875rem;opacity:0;position:absolute;transition:opacity .3s,transform .3s;width:100%}.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--fill-green{fill:#00a14b}.svg__earn-more{transform:scale(1.35)}.svg__fill--bright-red{fill:#c81f49}.svg__fill--red-shadow{fill:#8f0f28}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:hover,.typography__nav-heading:focus{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__footer-heading--long{font-size:1.75rem}@media screen and (min-width: 360px){.typography__footer-heading--long{font-size:1.75rem}}@media screen and (min-width: 375px){.typography__footer-heading--long{font-size:2rem}}@media screen and (min-width: 410px){.typography__footer-heading--long{font-size:2.2rem}}.typography__h2{color:#555;font-family:"Roboto",sans-serif;font-size:2rem;font-weight:500}.typography__h3{color:#0f3b63;font-family:"Roboto",sans-serif;font-size:1.75rem;font-weight:600}.typography__h4{color:#c61f48;font-family:"Roboto",sans-serif;font-size:1.7rem;font-weight:600}.typography__h5{color:#555;font-family:"Roboto",sans-serif;font-weight:700;font-size:1.5rem}.typography__h6{color:#555;font-family:"Roboto",sans-serif;font-weight:700;font-size:1.4rem}.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,p,ul:not(.navbar-nav),ol{color:#555;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:normal}.typography__register--h2{color:#fff;font-family:eurostile,sans-serif;font-size:2rem;font-weight:500;letter-spacing:.03rem;position:relative;top:30%;margin-bottom:-10px}@media screen and (min-width: 360px){.typography__register--h2{font-size:2.2rem}}@media screen and (min-width: 400px){.typography__register--h2{font-size:2.4rem}}@media screen and (min-width: 768px){.typography__register--h2{font-size:4rem}}@media screen and (min-width: 1200px){.typography__register--h2{font-size:4.5rem}}@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.4rem;font-weight:500;letter-spacing:.03rem;position:relative;top:31%}@media screen and (min-width: 400px){.typography__register--h3{font-size:1.6rem;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{bottom:15px;color:#fff;filter:drop-shadow(0 0 2px rgba(0, 0, 0, 0.25));font-family:"Oswald",sans-serif;font-size:1rem;font-weight:500;letter-spacing:.07rem;position:absolute;right:25px}@media screen and (min-width: 768px){.typography__register--caption{font-size:1.1rem}}@media screen and (min-width: 1000px){.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__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}}.typography--text-shadow{text-shadow:0 0 10px rgba(0,0,0,.75)}.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__check-svg{margin-top:-60px;width:80px}.benefits__blue-section{background-color:#ccdde1;padding-bottom:25px;padding-top:25px}.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__accredited--card{background-color:#0f3b63;padding-bottom:25px;padding-left:10px;padding-right:10px;padding-top:15px;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:-0.04rem}.benefits__accredited--span--source{display:block}.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}.breadcrumbs{background-color:rgba(0,0,0,0);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}.error__main-heading{color:#c61f48;font-weight:700}.error__sub-heading{color:#0f3b63;font-weight:700}.error__main{min-height:50vh}@media screen and (min-width: 992px){.error__main{min-height:65vh}}.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__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}}.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%}}.positioning__offset-global-nav{margin-top:60px}.positioning__form--margins{margin-top:15px;padding-left:5px;padding-right:5px}@media screen and (min-width: 992px){.positioning__form--margins{margin-top:60px}}.positioning__heading--row{margin-top:35%}@media screen and (min-width: 768px){.positioning__heading--row{margin-top:26%}}@media screen and (min-width: 1200px){.positioning__heading--row{margin-top:35%}}@media screen and (min-width: 1800px){.positioning__heading--row{margin-top:25%}}.positioning__col--offset{margin-right:-25px}@media screen and (min-width: 768px){.positioning__col--offset{margin-right:-45px}}.positioning__max-width-600{max-width:600px;margin-left:auto;margin-right:auto}@media screen and (min-width: 992px){.positioning--min-height-100{min-height:calc(100vh - 265px)}}.thank-you__check-mark{height:75px;position:relative;top:-1rem;width:75px}.thank-you__main{min-height:50vh}@media screen and (min-width: 768px){.thank-you__check-mark{position:static}}@media screen and (min-width: 992px){.thank-you__main{min-height:65vh}}