* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.container{
  display: block;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 36px;
  padding-right: 36px;
}

@media (max-width: 767px) {
  .container{
    padding-left: 12px;
    padding-right: 12px;
  }

}

.gibsonLight{
  font-family: canada-type-gibson, sans-serif;
  font-weight: 200;
  font-style: normal;
}

.gibsonLightItalic{
  font-family: canada-type-gibson, sans-serif;
  font-weight: 200;
  font-style: italic;
}

.gibsonMedium{
  font-family: canada-type-gibson, sans-serif;
  font-weight: 500;
  font-style: normal;
}

.gibsonMediumItalic{
  font-family: canada-type-gibson, sans-serif;
  font-weight: 500;
  font-style: italic;
}

.gibsonSemiBold{
  font-family: canada-type-gibson, sans-serif;
  font-weight: 600;
  font-style: normal;
}

.gibsonSemiBoldItalic{
  font-family: canada-type-gibson, sans-serif;
  font-weight: 600;
  font-style: italic;
}

.black{
  color: rgba(0, 0, 0, 1);
}

.white{
  color: rgba(255, 255, 255, 1);
}

.mediumBlue{
  color: rgba(13, 51, 209, 1);
}

.darkBlue{
  color: rgba(13, 30, 103, 1);
}

.blackBackground{
  background-color: rgba(0, 0, 0, 1);
}

.whiteBackground{
  background-color: rgba(255, 255, 255, 1);
}

.lightGrayBackground{
  background-color: rgba(247, 247, 247, 1);
}

.mediumBlueBackground{
  background-color: rgba(13, 51, 209, 1);
}

.darkBlueBackground{
  background-color: rgba(13, 30, 103, 1);
}


/***** NAVBAR *****/
#navbar{
  height: 55px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  transition: height 150ms ease-out;
  overflow: hidden;
}

#navbarOpen{
  height: 360px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  transition: height 150ms ease-out;
  overflow: hidden;
}

#navContainer{
  max-width: 1440px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-left: 36px;
  padding-right: 36px;
}

@media (max-width: 991px) {
  #navContainer{
    padding-left: 12px;
    padding-right: 12px;
  }
}

#navFlex{
  display: flex;
  align-items: center;
  vertical-align: middle;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}

#navFlexOpen{
  display: flex;
  align-items:flex-start;
  vertical-align:top;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}

#navLogo{
  height: 30px;
}

#navLogoOpen{
  height: 24px;
  margin-top: 24px;
}

#navRight{

}

#navRightOpen{

}

#navLink1{
  font-size: 16px;
  line-height: 1.5;
  margin-left: 36px;
  text-decoration: none;
}

#navLink1Open{
  font-size: 15px;
  line-height: 1.5;
  margin-left: 0px;
  text-decoration: none;
  display: block;
  margin-top: 36px;
  text-align: right;
}

#navLink2{
  font-size: 16px;
  line-height: 1.5;
  margin-left: 36px;
  text-decoration: none;
}

#navLink2Open{
  font-size: 15px;
  line-height: 1.5;
  margin-left: 0px;
  text-decoration: none;
  display: block;
  margin-top: 36px;
  text-align: right;
}

#navLink3{
  font-size: 16px;
  line-height: 1.5;
  margin-left: 36px;
  text-decoration: none;
}

#navLink3Open{
  font-size: 15px;
  line-height: 1.5;
  margin-left: 0px;
  text-decoration: none;
  display: block;
  margin-top: 36px;
  text-align: right;
}

@media (max-width: 991px) {
  #navRight{
    display: none;
    visibility: hidden;
  }
}

#navHamburger{
  display: none;
  visibility: hidden;
}

#navHamburgerOpen{
  display: none;
  visibility: hidden;
}

@media (max-width: 991px) {
  #navHamburger{
    height: 18px;
    cursor: pointer;
    display: block;
    visibility: visible;
  }

  #navHamburgerOpen{
    display: none;
    visibility: hidden;
  }
}

#navClose{
  display: none;
  visibility: hidden;
}

#navCloseOpen{
  display: none;
  visibility: hidden;
}

@media (max-width: 991px) {
  #navClose{
    display: none;
    visibility: hidden;
  }

  #navCloseOpen{
    cursor: pointer;
    height: 18px;
    margin-left: auto;
    margin-top: 24px;
    display: block;
    visibility: visible;
  }
}

#navCTA{
  font-size: 16px;
  line-height: 1.5;
  margin-left: 36px;
  text-decoration: none;
  padding: 12px 24px;
  text-align: center;
}

#navCTAOpen{
  font-size: 15px;
  line-height: 1.5;
  margin-top: 36px;
  text-decoration: none;
  padding: 12px 24px;
  text-align: center;
  display: block;
}


/***** COMING SOON *****/

.fullHeight{
  height: 100vh;
}
#comingSoonShowcase{
  height: 100vh;
  background-image: url(img/homeShowcaseImg2@2x.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

#comingSoonShowcase img{
  height: 168px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}

#comingSoonShowcase h1{
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 24px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

#comingSoonShowcase h2{
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media (max-width: 991px) {
  #comingSoonShowcase img{
    height: 120px;
    margin-bottom: 36px;
    background-position: right center;
  }

  #comingSoonShowcase h1{
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 24px;
  }

  #comingSoonShowcase h2{
    font-size: 20px;
    line-height: 1.5;
  }
}

@media (max-width: 767px) {
  #comingSoonShowcase h1{
    font-size: 24px;
    line-height: 1.1;
    margin-bottom: 24px;
  }

}


/***** HOME PAGE *****/
#homeShowcase{
  padding-top: 150px;
  padding-bottom: 120px;
  background-image: url(img/homeShowcaseImg2@2x.png);
  background-position: left center;
  background-size: cover;
  background-repeat: no-repeat;
}

#homeShowcase h1{
  font-size: 50px;
  line-height: 1.1;
  margin-bottom: 24px;
}

#homeShowcase h2{
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 60px;
}

#homeShowcase a{
  font-size: 20px;
  padding: 18px 36px;
  transition: border 300ms ease-out;
  border: solid 4px rgba(13, 51, 209, 1);
  text-decoration: none;
}

#homeShowcase a:hover{
  border: solid 4px white;
  transition: border 300ms ease-out;
}

#homeAbout{
  padding-top: 72px;
  padding-bottom: 72px;
}

#homeAbout h1{
  font-size: 35px;
  text-align: center;
  margin-bottom: 72px;
}

#homeAbout h2{
  font-size: 18px;
  text-align: center;

}

#homeAbout img{
  height: 66px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

#homeHow{
  padding-top: 72px;
  padding-bottom: 72px;

}

.homeHowFlex{
  display: flex;
  align-items: center;
  vertical-align: middle;
}

#homeHow h1{
  font-size: 45px;
  padding-bottom: 24px;
}

#homeHow p{
  font-size: 20px;
  line-height: 1.5;
  padding-right: 60px;
}

#homeHow h2{
  font-size: 25px;
  display: inline-block;

}

#homeHow img{
  display: inline-block;
  height: 60px;
  margin-top: 24px;
  margin-bottom: 24px;
  margin-right: 24px;
}


/***** HOME PAGE - MOBILE: MEDIUM *****/
@media (max-width: 1199px) {
  #homeAbout h1{
    font-size: 25px;
  }
  #homeAbout h2{
    font-size: 16px;
    line-height: 1.5;
  }
  #homeHow h2{
    font-size: 20px;
  }
}

/***** HOME PAGE - MOBILE: SMALL *****/

@media (max-width: 991px) {
  #homeShowcase{
    padding-top: 182px;
    padding-bottom: 124px;
  }

  #homeShowcase h1{
    font-size: 40px;
  }

  #homeAbout h1{
    margin-bottom: 0px;
  }

  #homeAbout img{
    margin-top: 72px;
  }

  #homeHow p{
    margin-bottom: 48px;
  }
}

/***** HOME PAGE - MOBILE: XSMALL *****/

@media (max-width: 767px) {
  .CTA h1{
    font-size: 25px;
  }
}

/***** HOME PAGE - MOBILE: XXSMALL *****/

@media (max-width: 450px) {

  #homeShowcase{
    padding-top: 120px;
    padding-bottom: 72px;
    background-position: center center;
  }

  #homeShowcase h1{
    font-size: 28px;
    margin-bottom: 12px;
  }

  #homeShowcase h2{
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 36px;
  }

  #homeShowcase a{
    font-size: 16px;
    line-height: 1.5;
    padding: 12px 32px;
  }

  #homeAbout{
    padding-top: 60px;
    padding-bottom: 60px;
  }

  #homeAbout h1{
    font-size: 20px;
  }

  #homeAbout img{
    height: 60px;
    margin-top: 60px;
    margin-bottom: 18px;
  }

  #homeHow{
    padding-top: 60px;
    padding-bottom: 48px;
  }

  #homeHow h1{
    font-size: 30px;
  }

  #homeHow h2{
    font-size: 18px;
  }

  #homeHow p{
    padding-right: 0px;
  }

  #homeHow img{
    height: 50px;
    margin-top: 18px;
    margin-right: 18px;
    margin-bottom: 18px;
  }

}





/***** FINANCING PAGE *****/

#financingShowcase{
  background-image: url(img/financingShowcaseImg@2x.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-top: 194px;
  padding-bottom: 144px;
}

#financingShowcase h1{
  font-size: 50px;
  margin-bottom: 24px;
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#financingShowcase h2{
  font-size: 25px;
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#financingOptions{
  padding-top: 72px;
  padding-bottom: 72px;
}

#financingOptions h1{
  font-size: 30px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  text-align: center;
  margin-bottom: 24px;
}

#financingOptions h2{
  font-size: 16px;
  line-height: 1.5;
  margin-left: auto;
  margin-right: auto;
  display: block;
  text-align: center;
}


.financingOptionBox{
  width: 100%;
  padding: 24px;
  margin-bottom: 12px;
  display: flex;
}



.financingOptionInnerBox{
  width: 100%;
  padding: 72px;
  display: block;
  height: auto;
}

.financingOptionBox img{
  height: 84px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

.stretch{
  align-items: stretch;
}

/***** FINANCING PAGE - MOBILE: MEDIUM *****/
@media (max-width: 1199px) {
  #financingOptions h1{
    font-size: 25px;
  }
}

/***** FINANCING PAGE - MOBILE: SMALL *****/

@media (max-width: 991px) {

}

/***** FINANCING PAGE - MOBILE: XSMALL *****/

@media (max-width: 767px) {
  #financingShowcase{
    padding-top: 146px;
    padding-bottom: 96px;
  }

  #financingShowcase h1{
    font-size: 35px;
    margin-bottom: 12px;
  }

  #financingShowcase h2{
    font-size: 20px;
  }

  #financingOptions{
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .CTA h1{
    font-size: 25px;
  }
}

/***** FINANCING PAGE - MOBILE: XXSMALL *****/

@media (max-width: 450px) {

  #financingShowcase{
    padding-top: 122px;
    padding-bottom: 72px;
  }

  #financingOptions h1{
    font-size: 20px;
  }

  .financingOptionBox{
    padding: 12px;
  }
  .financingOptionInnerBox{
    padding: 60px 36px;
  }
}


/***** PARTNERS PAGE *****/

#partnersShowcase{
  background-image: url(img/partnersShowcaseImg@2x.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-top: 194px;
  padding-bottom: 144px;
}

#partnersShowcase h1{
  font-size: 50px;
  margin-bottom: 24px;
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#partnersShowcase h2{
  font-size: 25px;
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#partnersBottom{
  padding-top: 60px;
  padding-bottom: 96px;
}

#partnerInfo{
  padding-top: 144px;
  padding-bottom: 96px;
  max-width: 800px;
  display: block;
  margin: 0 auto;
}

#partnerInfo h1{
  font-size: 30px;
  margin-bottom: 24px;
  text-align: center;
}
#partnerInfo h2{
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}

#partnersForm{
  padding: 60px 36px 36px 36px;
}

#partnersForm h1{
  font-size: 30px;
  margin-bottom: 36px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  text-align: center;
}

#partnersForm h2{
  font-size: 20px;
  margin-top: 36px;
  margin-bottom: 12px;
}

#partnersForm input[type="text"]{
  width: 100%;
  font-size: 18px;
  border: none;
  height: 48px;
  padding: 6px;
  border-radius: 0;
  transition: border 100ms ease-out;
}

#partnersForm input[type="text"]:focus{
  border: solid 2px rgba(13, 51, 209, 1);
}

#partnersForm input[type="email"]{
  width: 100%;
  font-size: 18px;
  border: none;
  height: 48px;
  padding: 6px;
  border-radius: 0;
  transition: border 100ms ease-out;
}

#partnersForm input[type="email"]:focus{
  border: solid 2px rgba(13, 51, 209, 1);
}

#partnersForm textarea{
  resize: none;
  width: 100%;
  font-size: 18px;
  border: none;
  height: 240px;
  padding: 6px;
  border-radius: 0;
  transition: border 100ms ease-out;
}

#partnersForm textarea:focus{
  border: solid 2px rgba(13, 51, 209, 1);
}

#partnersForm input[type="submit"]{
  margin-left: auto;
  margin-right: auto;
  margin-top: 36px;
  width: 500px;
  display: block;
  font-size: 25px;
  padding-top: 24px;
  padding-bottom: 24px;
  text-align: center;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: border 300ms ease-out;
  border: solid 4px rgba(13, 51, 209, 1);
  -webkit-appearance: none;
}

#partnersForm input[type="submit"]:hover{
  transition: border 300ms ease-out;
  border: solid 4px black;
}

/***** PARTNERS PAGE - MOBILE: MEDIUM *****/
@media (max-width: 1199px) {

}

/***** PARTNERS PAGE - MOBILE: SMALL *****/

@media (max-width: 991px) {

}

/***** PARTNERS PAGE - MOBILE: XSMALL *****/

@media (max-width: 767px) {
  #partnersShowcase{
    padding-top: 146px;
    padding-bottom: 96px;
  }

  #partnersShowcase h1{
    font-size: 35px;
    margin-bottom: 12px;
  }

  #partnersShowcase h2{
    font-size: 20px;
  }

  #partnerInfo{
    padding-top: 72px;
    padding-bottom: 48px;
    max-width: 800px;
    display: block;
    margin: 0 auto;
  }
  
  #partnerInfo h1{
    font-size: 25px;
    margin-bottom: 24px;
    text-align: center;
  }
  #partnerInfo h2{
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
  }

  #partnersForm{
    padding: 48px 24px 48px 24px;
  }

  #partnersForm h1{
    font-size: 25px;
  }

  #partnersForm input[type="submit"]{
    width: 300px;
  }
  .CTA h1{
    font-size: 25px;
  }
}

/***** PARTNERS PAGE - MOBILE: XXSMALL *****/

@media (max-width: 450px) {

  #partnersShowcase{
    padding-top: 122px;
    padding-bottom: 72px;
  }

  #partnersForm{
    padding: 36px 12px 36px 12px;
  }
  #partnersForm input[type="submit"]{
    font-size: 20px;
    width: 250px;
  }
}


/***** APPLY NOW PAGE *****/

#applyShowcase{
  background-image: url(img/applyShowcaseImg@2x.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-top: 194px;
  padding-bottom: 144px;
}

#applyShowcase h1{
  font-size: 50px;
  margin-bottom: 24px;
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#applyShowcase h2{
  font-size: 25px;
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#applyBottom{
  padding-top: 60px;
  padding-bottom: 96px;
}

#applyForm{
  padding: 60px 36px 36px 36px;
}

#applyForm h1{
  font-size: 30px;
  margin-bottom: 36px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  text-align: center;
}

#applyForm h2{
  font-size: 20px;
  margin-top: 36px;
  margin-bottom: 12px;
}

#applyForm input[type="text"]{
  width: 100%;
  font-size: 18px;
  border: none;
  height: 48px;
  padding: 6px;
  transition: border 100ms ease-out;
  border-radius: 0;
}

#applyForm input[type="text"]:focus{
  border: solid 2px rgba(13, 51, 209, 1);
}



#applyForm input[type="email"]{
  width: 100%;
  font-size: 18px;
  border: none;
  height: 48px;
  padding: 6px;
  transition: border 100ms ease-out;
  border-radius: 0;
}

#applyForm input[type="email"]:focus{
  border: solid 2px rgba(13, 51, 209, 1);
}

#applyForm textarea{
  resize: none;
  width: 100%;
  font-size: 18px;
  border: none;
  height: 180px;
  padding: 6px;
  transition: border 100ms ease-out;
  border-radius: 0;
}

#applyForm textarea:focus{
  border: solid 2px rgba(13, 51, 209, 1);
}

#applyForm input[type="submit"]{
  margin-left: auto;
  margin-right: auto;
  margin-top: 36px;
  width: 500px;
  display: block;
  font-size: 25px;
  padding-top: 24px;
  padding-bottom: 24px;
  text-align: center;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: border 300ms ease-out;
  border: solid 4px rgba(13, 51, 209, 1);
  -webkit-appearance: none;
}

#applyForm input[type="submit"]:hover{
  transition: border 300ms ease-out;
  border: solid 4px black;
}

/***** PARTNERS PAGE - MOBILE: MEDIUM *****/
@media (max-width: 1199px) {

}

/***** PARTNERS PAGE - MOBILE: SMALL *****/

@media (max-width: 991px) {

}

/***** APPLY PAGE - MOBILE: XSMALL *****/

@media (max-width: 767px) {
  #applyShowcase{
    padding-top: 146px;
    padding-bottom: 96px;
  }

  #applyShowcase h1{
    font-size: 30px;
    margin-bottom: 12px;
  }

  #applyShowcase h2{
    font-size: 20px;
  }

  #applyForm{
    padding: 48px 24px 48px 24px;
  }

  #applyForm h1{
    font-size: 25px;
  }

  #applyForm input[type="submit"]{
    width: 300px;
  }

  .CTA h1{
    font-size: 25px;
  }
}

/***** APPLY PAGE - MOBILE: XXSMALL *****/

@media (max-width: 450px) {

  #applyShowcase{
    padding-top: 122px;
    padding-bottom: 72px;
  }

  #applyForm{
    padding: 36px 12px 36px 12px;
  }
  #applyForm input[type="submit"]{
    font-size: 20px;
    width: 250px;
  }
}




/***** THANK YOU PAGE *****/

#thankyouShowcase{
  padding-top: 194px;
  padding-bottom: 144px;
}

#thankyouShowcase h1{
  font-size: 50px;
  margin-bottom: 24px;
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#thankyouShowcase h2{
  font-size: 25px;
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#thankyouShowcase a{
  font-size: 25px;
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 12px;
}

/***** THANK YOU PAGE - MOBILE: XSMALL *****/

@media (max-width: 767px) {
  #thankyouShowcase{
    padding-top: 146px;
    padding-bottom: 96px;
  }

  #thankyouShowcase h1{
    font-size: 35px;
    margin-bottom: 12px;
  }

  #thankyouShowcase h2{
    font-size: 20px;
  }

  #thankyouShowcase a{
    font-size: 20px;
  }
}

/***** THANK YOU PAGE - MOBILE: XXSMALL *****/

@media (max-width: 450px) {

  #thankyouShowcase{
    padding-top: 122px;
    padding-bottom: 72px;
  }
}


/***** PRIVACY PAGE *****/

#privacyShowcase{
  padding-top: 194px;
  padding-bottom: 144px;
}

#privacyShowcase h1{
  font-size: 25px;
  margin-top: 12px;
  margin-bottom: 48px;
}

#privacyShowcase h2{
  font-size: 20px;
  display: block;
  margin-top: 36px;
  margin-bottom: 12px;
}

#privacyShowcase p{
  font-size: 16px;
  margin-top: 12px;
  margin-bottom: 12px;
}

/***** PRIVACY PAGE - MOBILE: XSMALL *****/

@media (max-width: 767px) {
  #privacyShowcase{
    padding-top: 146px;
    padding-bottom: 96px;
  }

}

/***** PRIVACY PAGE - MOBILE: XXSMALL *****/

@media (max-width: 450px) {

  #thankyouShowcase{
    padding-top: 122px;
    padding-bottom: 72px;
  }
}




/***** CTA *****/

.CTA {
  padding-top: 180px;
  padding-bottom: 180px;
}

.CTA h1{
  font-size: 30px;
  text-align: center;
  text-decoration: underline;
}

@media (max-width: 450px) {
  .CTA{
    padding-top: 72px;
    padding-bottom: 72px;

  }

  .CTA h1{
    font-size: 20px;
  }
}

/***** FOOTER *****/
footer{
  padding-top: 72px;
  padding-bottom: 72px;
}

footer a{
  text-decoration: underline;
  color: black;
}

footer img{
  margin-bottom: 36px;
}

footer h1{
  font-size: 16px;
  margin-bottom: 12px;
}

footer p{
  font-size: 16px;
  margin-bottom: 12px;
}

#copyright{
  margin-top: 24px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media (max-width: 991px) {
  .footerSection{
    margin-bottom: 36px;
  }
}
