/** #######################   [ 01 ]   NORMALIZE #################################  ***/
/** #######################   [ 02 ]   GRIDS     #################################  ***/
/** #######################   [ 03 ]   SPINNER   #################################  ***/
/** #######################   [ 04 ]   CONTENT   #################################  ***/
/** #######################   [ 05 ]   FOOTER    #################################  ***/
/** #######################   [ 06 ]   ASIDE     #################################  ***/


/** #######################   [ 01 ]   NORMALIZE #################################  ***/
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

#page {
  height: 100%;
  margin-top: 0;
}

article,
aside,
details,
figcaption,
figure,
.contact-form-footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
}


[hidden] {
  display: none;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  color: #fff;
  text-decoration: none;
}

a:active,
a:hover {
  outline-width: 0;
  text-decoration: underline;
}

b,
strong {
  font-weight: inherit;
  font-weight: bolder;
}

h1 {
  font-size: 2em;
  margin: .67em 0;
}

mark {
  color: #000;
  background-color: #ff0;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

figure {
  margin: 1em 40px;
}

hr {
  overflow: visible;

  box-sizing: content-box;
  height: 0;
}

button,
input,
select,
textarea {
  font: inherit;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
html [type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  padding: 0;

  border-style: none;
}

button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
  outline: 1px dotted ButtonText;
}


textarea {
  overflow: auto;
}

[type='checkbox'],
[type='radio'] {
  box-sizing: border-box;
  padding: 0;
}

[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}

[type='search'] {
  outline-offset: -2px;

  -webkit-appearance: textfield;
}

[type='search']::-webkit-search-cancel-button,
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-input-placeholder {
  opacity: .54;
  color: inherit;
}

::-webkit-file-upload-button {
  font: inherit;

  -webkit-appearance: button;
}


html {
  background: #8abed7;
}

body {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 400;
}



/** #######################   [ 02 ]   GRIDS     #################################  ***/


/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative;

  box-sizing: border-box;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

.column,
.columns {
  float: left;

  box-sizing: border-box;
  width: 100%;
}

/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
    width: 85%;
    padding: 0;
  }
}

/* For devices larger than 550px */
@media (min-width: 550px) {
  .container {
    width: 80%;
  }

  .column,
  .columns {
    margin-left: 4%;
  }

  .column:first-child,
  .columns:first-child {
    margin-left: 0;
  }

  .one.column,
  .one.columns {
    width: 4.66666666667%;
  }

  .two.columns {
    width: 13.3333333333%;
  }

  .three.columns {
    width: 22%;
  }

  .four.columns {
    width: 30.6666666667%;
  }

  .five.columns {
    width: 39.3333333333%;
  }

  .six.columns {
    width: 48%;
  }

  .seven.columns {
    width: 56.6666666667%;
  }

  .eight.columns {
    width: 65.3333333333%;
  }

  .nine.columns {
    width: 74.0%;
  }

  .ten.columns {
    width: 82.6666666667%;
  }

  .eleven.columns {
    width: 91.3333333333%;
  }

  .twelve.columns {
    width: 100%;
    margin-left: 0;
  }

  .one-third.column {
    width: 30.6666666667%;
  }

  .two-thirds.column {
    width: 65.3333333333%;
  }

  .one-half.column {
    width: 48%;
  }
}




/** #######################   [ 03 ]   SPINNER   ##################################  ***/

.cromax-spinner {
  position: absolute;
  bottom: 50%;
  left: 25%;

  width: 40px;
  height: 40px;

  margin-left: -20px;
  margin-bottom: -20px;

  -webkit-animation: cromax-scaleout 1.0s infinite ease-in-out;
  animation: cromax-scaleout 1.0s infinite ease-in-out;

  border-radius: 100%;
  background-color: #fff;
  display: block;
}

@media screen and (max-width: 765px) {
  .cromax-spinner {
    left: 50%;
  }
}

form .cromax-spinner {
  position: absolute;
  bottom: 0px;
  left: -40px;

  width: 40px;
  height: 40px;

  margin-left: 0px;
  margin-bottom: 0px;

  -webkit-animation: cromax-scaleout 1.0s infinite ease-in-out;
  animation: cromax-scaleout 1.0s infinite ease-in-out;

  border-radius: 100%;
  background-color: #fff;
  display: none;
}

@-webkit-keyframes cromax-scaleout {
  0% {
    -webkit-transform: scale(0);
  }

  100% {
    -webkit-transform: scale(1.0);

    opacity: 0;
  }
}

@keyframes cromax-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);

    opacity: 0;
  }
}




@media screen and (max-width: 480px) {

  h1.cromax-mainintro-bottom,
  h1.cromax-mainintro-top {
    font-size: 20px;
  }

  .main-intro {
    position: relative;
    z-index: 3;
    top: 250px;
    opacity: 0;
  }

  .main-intro svg {
    height: 90%;
    width: 90%;
  }
}





/** #######################   [ 04 ]   CONTENT   ##################################  ***/

main#page-head {
  position: relative;

  overflow: hidden;

  height: 800px;

  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;

  color: #fff;
  background: #8abed7;
}

.site-inner {
  height: 100%;
  position: relative;
}

#site-intro {
  display: none;
}

.cromax-banner {
  position: absolute;
  top: 0;
  right: 50%;
  bottom: 10%;
  left: 0;
  z-index: 1;

  opacity: 0;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;

  content: '';
}



.cromax-banner h1,
.cromax-banner h2,
.cromax-banner h3,
.cromax-banner h4,
.cromax-banner h5,
.cromax-banner h6 {
  position: relative;
  z-index: 4;
  text-align: center;
}

.cromax-banner h5 {
  position: absolute;
  bottom: 8%;
  width: 100%;
  left: 0;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
}

.cromax-banner h3 {
  font-weight: 300;
  padding-top: 60px;
  font-size: 46px;
  line-height: 1.4;
  font-family: "schoolbook-web", serif;
  font-weight: 400;
  color: #8ABED7;
}

.cromax-banner h4 {
  font-family: "schoolbook-web", serif;
  font-weight: 300;
  font-size: 30px;
  letter-spacing: 1px;
}

.cromax-banner:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  content: '';
}


.cromax-banner-show {
  -webkit-animation: animationFrames ease 3s;
  -moz-animation: animationFrames ease 3s;
  -ms-animation: animationFrames ease 3s;
  -o-animation: animationFrames ease 3s;
  animation: animationFrames ease 3s;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -ms-animation-iteration-count: 1;
  -o-animation-iteration-count: 1;
  animation-iteration-count: 1;

  animation-fill-mode: forwards;
  /*when the spec is finished*/
  -webkit-animation-fill-mode: forwards;
  /*Chrome 16+, Safari 4+*/
  -moz-animation-fill-mode: forwards;
  /*FF 5+*/
  -o-animation-fill-mode: forwards;
  /*Not implemented yet*/
  -ms-animation-fill-mode: forwards;
  /*IE 10+*/
}

@keyframes animationFrames {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes animationFrames {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes animationFrames {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes animationFrames {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-ms-keyframes animationFrames {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


/** #######################   [ 05 ]   FOOTER    #################################  ***/

.contact-form-footer {
  background: #8abed7;
  z-index: 10;
  overflow: auto;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

.footer-copy,
.footer-logo {
  display: inline-block;
  vertical-align: middle;
  width: 200px;
  text-align: center;
  color: #fff;
  letter-spacing: 2px;
  font-weight: 400;
  font-size: 12px;
}

.footer-desc {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 410px);
  font-size: 12px;
  line-height: 1.4;
  color: #fff;
  padding: 20px 0;
  font-weight: 300;
}


/** #######################   [ 06 ]   ASIDE     #################################  ***/
aside.intro-1 {
  background: #fff;
  z-index: 9;
  color: #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
}


.intro-1 {}

.intro-1 img {
  max-width: 275px;
  height: auto;
}

.intro-1 h3 {
  font-family: "schoolbook-web", serif;
  font-weight: 400;
  color: #8abed7;
  line-height: 1.5;
  padding-top: 70px;
  padding-bottom: 10px;
  font-size: 34px;
}

.intro-1 h3.thankyou-title {
  padding-top: 60px;
  margin: 0;
}

.intro-1 h3.thankyou-desc {
  font-family: "brandon-grotesque", sans-serif;
  padding-top: 20px;
  margin: 0;
  font-size: 16px;
  padding-left: 40px;
  padding-right: 40px;
}

.intro-1 h3.thankyou-desc a {
  letter-spacing: 0px;
}



.intro-1 a {
  display: inline-block;
  padding: 15px 35px;
  color: #8abed7;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 21px;
  border: 2px solid;
  cursor: pointer;
}



.intro-1 a:hover {
  color: #56565a;
  text-decoration: none;
}


.intro-1 h3.thankyou-desc a {
  color: #CC793F;
  font-size: 16px;
  padding: 0;
  border: 0px solid #000;
  text-transform: none;
  font-weight: normal;
}


.introwrap {
  position: relative;
  top: 40%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 960px) {
  .introwrap {
    position: absolute;
    top: 50%;
    width: 100%;
  }
}

aside.intro-2 {
  background: #8abed7;
  z-index: 9;
  color: #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  -moz-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.intro2-active aside.intro-2 {
  -moz-transform: translateY(0%);
  -webkit-transform: translateY(0%);
  -o-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
}

.intro-2 img {
  max-width: 250px;
  height: auto;
}

.intro-2 .introwrap {
  padding-left: 20px;
  padding-right: 20px;
}

#introform {
  margin: 0 auto;
  display: block;
  max-width: 80%;
  padding-top: 5%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#introform.submitted {
  max-height: 0px !important;
  overflow: hidden;
}

#introform p {
  text-align: left;
  border-bottom: 1px solid #fff;
  position: relative;
  margin-bottom: 30px;
  margin-top: 35px;
  padding-bottom: 5px;
}

#introform p#wheheard {
  margin-bottom: 40px !important;
}

#introform p label {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "schoolbook-web", serif;
  font-weight: 400;
}

#introform input {
  border: none;
  color: #fff;
  background: transparent;
  line-height: 1;
  width: 100%;
  font-family: "schoolbook-web", serif;
  font-weight: bolder;
  font-size: 18px;
  padding: 0;
}

#introform input:focus {
  box-shadow: none;
  outline: none;
  opacity: 1;
}

#introform p.tickbox {
  border: none;
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 156px);
  margin: 0;

}

#introform #phoneBlock,
#introform #nameBlock {
  display: inline-block;
  vertical-align: top;
  width: calc(49.4% - 20px);
  margin-right: 20px;
  margin-bottom: 0;
}

#introform #cityBlock,
#introform #surBlock {
  display: inline-block;
  vertical-align: top;
  width: calc(49.0% - 20px);
  margin-left: 20px;
  margin-bottom: 0;
}

#introform select {
  background: transparent;
  width: 100%;
  border: none !important;
  outline: none !important;
  color: #fff;
  font-family: "schoolbook-web", serif;
  font-weight: bolder;
  font-size: 18px;
  line-height: 1;
  padding: 0;
  text-indent: 0 !important;
  opacity: 0.6;
}

#introform select option {
  background: #8ABED7;
  color: #fff;
}

#introform select option:hover {
  background: #DE8445;
  color: #fff;
}

#introform select:focus {
  opacity: 1;
}

p.err {
  border-bottom: 1px solid #be1238 !important;
}

#formError {
  display: block;
  border: none !important;
  color: #fff;
  padding: 10px !important;
  text-align: center !important;
  background: #be1238;
  margin: 20px 0 0 !important;
}

#formSucc {
  display: block;
  border: none !important;
  color: #fff;
  padding: 10px;
  text-align: center !important;
  background: #D47E42;
  margin: 0 !important;
  display: none;
}


#introform input::-webkit-input-placeholder {
  color: white;
  opacity: 0.6;
}

#introform input:-moz-placeholder {
  /* Firefox 18- */
  color: white;
  opacity: 0.6;
}

#introform input::-moz-placeholder {
  /* Firefox 19+ */
  color: white;
  opacity: 0.6;
}

#introform input:-ms-input-placeholder {
  color: white;
  opacity: 0.6;
}


#introform p.tickbox input[type=checkbox] {
  border: 1px solid #fff;
  cursor: pointer;
  display: inline-block;
  margin-top: 5px;
  vertical-align: top;
  width: 20px;
}

#introform p.tickbox input[type=checkbox]:before {
  line-height: .9;
}

#introform p.tickbox span {
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 25px);
  padding-left: 10px;
  padding-right: 20px;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  box-sizing: border-box;
}

#introform button {
  display: inline-block;
  box-sizing: border-box;
  width: 150px;
  vertical-align: top;
  padding: 12px 0;
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
  letter-spacing: 1px;
  cursor: pointer;
  font-weight: 300;
  position: relative;
  outline: none;
}

#introform button:hover {
  border: 1px solid #56565a !important;
  background: #56565a;
}

p.disclaimer {
  max-width: 80%;
  display: block;
  margin: 0 auto;
  text-align: left;
  font-size: 12px;
  line-height: 1.4;
  padding-top: 30px;
  opacity: 1;
  font-weight: 300;
}

#introform .style-light p.disclaimer a:hover {
  color: #E8844D;
}

.close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1000;
}

.close:before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  content: '';
  background: #fff;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
}

.close:after {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  content: '';
  background: #fff;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
}

.topnote {
  background: #de8445;
  display: block;
  position: absolute;
  color: #fff;
  font-size: 25px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 10px;
  left: 0;
  top: 0;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}


.financing-logo {
  position: absolute;
  bottom: 130px;
  right: 50px;
}

.financing-logo img {
  width: 100px;
  height: auto;
}

.financing-logo span {
  color: #56565a;
  display: inline-block;
  font-size: 8pt;
  font-weight: 400;
  margin-top: 30px;
  margin: 0;
  padding: 0;
  border: none;
  padding-right: 10px;

}

.financing-logo a,
.financing-logo span a {
  color: #56565a;
  font-weight: 400;
  margin: 0;
  padding: 0;
  border: none;
  text-decoration: none;
  font-size: 8pt;
}



@media screen and (min-width: 1600px) {

  #introform p {
    margin-top: 75px;
  }

  #introform input,
  #introform select {
    font-size: 24px;
  }

  #introform,
  p.disclaimer {
    max-width: 75%;
  }

  #introform p#wheheard {
    margin-bottom: 50px !important;
  }

  #introform p.tickbox span {
    font-size: 16px;
  }

  .intro-1 img {
    max-width: 400px;
  }

  .intro-1 h3 {
    font-size: 44px;
  }

  .cromax-banner h3 {
    font-size: 54px;
    padding-top: 100px;
  }

  .cromax-banner h5 {
    bottom: 6%;
    font-size: 18px;
  }

  .topnote {
    font-size: 32px;
  }

  .intro-1 a {
    padding: 20px 40px;
    font-size: 24px;
  }

}


@media screen and (max-width: 1030px) {
  .financing-logo {
    bottom: 150px;
  }
}

@media screen and (max-width: 960px) {

  .topnote {
    font-size: 20px;
  }

  .contact-form-footer {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 0 !important;
    width: 100%;
  }

  .cromax-banner {
    bottom: 0;
  }

  #introform input,
  #introform select {
    font-size: 16px;
  }

  #introform {
    padding-top: 90px;
  }

  #page-head .cromax-spinner {
    display: none !important;
  }

  .financing-logo {
    bottom: 20px;
  }

}

@media screen and (max-width: 960px) {

  .topnote {
    font-size: 25px;
  }

  .cromax-banner {
    width: 100%;
    height: 660px;
    background: url(/img/thewade-main-bg.jpg) no-repeat center !important;
    background-size: cover !important;
    position: static;
    height: 0px;
    !important;
  }

  main#page-head {
    max-height: 660px;
    background: url(/img/thewade-main-bg.jpg) no-repeat center !important;
    background-size: cover !important;
    position: relative;
  }

  aside.intro-1 {
    position: relative;
    ;
    width: 100%;
    min-height: 700px;
  }

  aside.intro-2 {
    position: relative;
    width: 100%;
    -moz-transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -o-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    display: none;
    overflow: hidden;
  }

  .footer-logo,
  .footer-desc,
  .footer-copy {
    float: none;
    width: 100%;
    padding: 20px 40px;
    box-sizing: border-box;
    text-align: center;
  }

  .intro2-active aside.intro-2 {
    display: block;
    min-height: 700px;
  }

  .intro2-active aside.intro-1 {
    display: none;
  }

  #introform p.tickbox {
    width: 100%;
    padding-bottom: 20px;
  }

  .financing-logo {
    right: auto;
    left: 50%;

    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  @media screen and (max-width: 480px) {

    .topnote {
      font-size: 15px;
    }

    main#page-head {
      max-height: 460px;
    }

    .cromax-banner h3 {
      padding-top: 40px;
      font-size: 32px;
    }

    .cromax-banner h5 {
      bottom: 5%;
      font-size: 10px;
      letter-spacing: 1px;
    }

    .intro-1 h3 {
      font-size: 26px;
    }

    #introform,
    p.disclaimer {
      max-width: 95%;
    }

  }