@import url("https://cdn.kuriyama.com/assets/css/normalize.css");
@import url("https://cdn.kuriyama.com/assets/css/common.css");
@import url("https://cdn.kuriyama.com/assets/css/boilerplate.css");
@import url("https://cdn.kuriyama.com/assets/css/fonts.css");
@import url("https://cdn.kuriyama.com/assets/css/forms.css");
@import url("https://cdn.kuriyama.com/assets/css/helpers.css");
@import url("https://cdn.kuriyama.com/assets/css/print.css") print;
:root {
  --font-stack: 'Source Sans Pro', Helvetica, sans-serif;
  --KOA-blue: #0055a5;
  --midnight-blue: #003479;
  --font-size: 1em;
  --lightBlue: #aed3f4;
}


/* ==========================================================================
   Layout
   ========================================================================== */

/*  GRID OF TWELVE  */
.span_12_of_12 {
    width: 100%;
}
.span_11_of_12 {
    width: 91.53%;
}
.span_10_of_12 {
    width: 83.06%;
}
.span_9_of_12 {
    width: 74.6%;
}
.span_8_of_12 {
    width: 66.13%;
}
.span_7_of_12 {
    width: 57.66%;
}
.span_6_of_12 {
    width: 49.2%;
}
.span_5_of_12 {
    width: 40.73%;
}
.span_4_of_12 {
    width: 32.26%;
}
.span_3_of_12 {
    width: 23.8%;
}
.span_2_of_12 {
    width: 15.33%;
}
.span_1_of_12 {
    width: 6.866%;
}

body {
    background: white url(/img/water.webp)100px 100px no-repeat;
    background-size: contain;
    font-family: 'Source Sans Pro';
}
main {
    padding: 50px 2.5% 80px 2.5%;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
header {
  width: 100%;
  height: 1000px;
  padding-top : 80px;
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
.right-side,
.features {
  width: 58.4%;
}
.left-side,
.form {
  width: 41%;
}
header h1 {
  width: 100%;
  margin: 0 0 70px 0;
}
header img.logo {
  width: 100%;
  height: auto;
}
header img.tag {
  width: 75%;
  position: relative;
  right: -25px;
  filter: drop-shadow(0 0 4px rgba(255 255 255 / 0.5));
}
img.hoses {
    width: 110%;
    max-width: 1142px;
    position: relative;
    left: -10%;
    top: -100px;
}
p {
    color: #000;
    font-size: 150%;
    line-height: 1.4em;
    margin: 0 0 12px 0;
}
a:link {
    color: #369;
    text-decoration: underline;
}
a:visited {
    color: #369;
    text-decoration: underline;
}
a:hover, a:active {
    color: #01a6fa;
    text-decoration: none;
}
.features {
  padding-top: 2%;
  margin-top: 50px;
}
.features ul {
  padding: 0 8% 0 0;
  margin: 0;
}
.features li {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  padding: 37px 0;
  border-bottom: 2px solid var(--KOA-blue);
}
.features li:last-child {
  border-bottom: 0 none;
}
.features img {
  width: 40%;
  max-width: 380px;
}
.features p {
  font-size: 170%;
  line-height: 1.3em;
  width: 55%;
  margin: 0 0 0 4%;
}
.thanks .features p {
  width: 100%;
  margin-left: 0;
}
.form {
    height: auto;
    padding: 2% 0;
    box-sizing: border-box;
    margin-top: 50px;
}
h2 {
    font: normal 800 220%/1.3em 'Source Sans Pro';
    padding: 0;
    margin: 0 0 5px 0;
    color: var(--KOA-blue);
}
.form p {
  font-size: 140%;
  color: black;
  padding-right: 1%;
}

form.fancy-form label {
  /*font-family: "Source Sans Pro";*/
  font-size: 155%;
  line-height: 1.1em;
}
input[type=submit].g-recaptcha,
button.g-recaptcha {
  width: 266px;
}


h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: var(--KOA-blue);
}
a.catalog:link {
  text-underline: 0;
}
.catalog {
  display: block;
  width: 100%;
  text-align: center;
  position: relative;
  margin-top: 30px;
}
.catalog img {
  width: 90%;
  max-width: 800px;
  position: relative;
  z-index: 1;
}
.catalog button {
  width: 100%;
  position: absolute;
  z-index: 10;
  left: 0;
  top: 75%;
  background: white;
  color: var(--KOA-blue);
  font: normal bold 300%/1.4em var(--font-stack);
  padding: 10px 0;
  border: 1px solid var(--midnight-blue);
}
.catalog:hover button {
  background: rgb(26,20,121);
  background: linear-gradient(180deg, rgba(26,20,121,1) 0%, rgba(0,212,255,1) 100%);
  color: white;
}
.contact-footer {
  border: 1px solid var(--lightBlue);
  border-left: 0 none;
  border-right: 0 none;
  background-color: white;
  /*height: 46px;*/
  padding: 10px 3.3%;
  color: #0056a5;
  font: 400 1.1em / 1.4375em 'Source Sans Pro';
  box-sizing: border-box;
  margin: 0 auto;
  width: 91.53%;
}
footer {
	background-color: white;
	width: 91.53%;
	margin: 0 auto;
}

/* ==========================================================================
   Media Queries
   - MIN 320 PIXELS
   - MAX WRAPPER WIDTH IS 1500
   ========================================================================== */

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

    .span_3_of_12 {
        width: 23.8%;
    }
    .span_4_of_12 {
        width: 32.26%;
    }
    .span_8_of_12 {
        width: 66.13%;
    }
}



@media screen and (max-width: 2400px) {
  header {
    height: 900px
  }
  .features {
    padding-top: 130px;
  }
}
@media screen and (max-width: 2200px) {
  header {
    height: 850px
  }
}
@media screen and (max-width: 2000px) {
  header {
    height: 800px
  }
}
@media screen and (max-width: 1800px) {
  header {
    height: 750px
  }
}
@media screen and (max-width: 1600px) {
  header {
    height: 700px
  }
}
@media screen and (max-width: 1443px) {
    header {
      height: 650px
    }
    p {
      font-size: 1.5em;
    }
}
@media screen and (max-width: 1315px) {
    p {
      font-size: 1.35em;
    }
}
@media screen and (max-width: 1265px) {
  header {
    height: 550px;
    padding-top: 40px;
  }
  img.hoses {
    top: -75px;
  }
  .features,
  .form {
    margin-top: 0;
    padding-top: 50px;
  }
}
@media screen and (max-width: 1245px) {
	header img.tag {
		right: 0;
	}
  .features p {
    font-size: 140%;
  }
}
@media screen and (max-width: 1245px) {
  .features {
    padding-top: 90px;
  }
}
@media screen and (max-width: 1097px) {
    header {
      height: 500px
    }
    p {
      font-size: 1.25em;
    }
	.catalog button {
		font-size: 250%;
	}
}
@media screen and (max-width: 1002px) {
    p {
      font-size: 1em;
    }
}
@media screen and (max-width: 980px) {
  .catalog {
    margin-top: 60px;
  }

}
@media screen and (max-width: 950px) {
    header {
      height:460px;
    }
    header img.tag {
      left: 66px;
    }
    main {
        padding-top: 25px;
    }
}
@media screen and (max-width: 910px) {
  .span_1_of_12,
  .span_2_of_12,
  .span_3_of_12,
  .span_4_of_12,
  .span_5_of_12,
  .span_6_of_12,
  .span_7_of_12,
  .span_8_of_12,
  .span_9_of_12 {
      width: 100%;
  }
  header {
    height: 440px
  }
  footer {
    flex-flow: column wrap;
  }
  footer .logos {
      text-align: center;
  }
  footer .span_1_of_12 {
      width: 100%;
      text-align: center;
  }
  footer img {
    float: none;
  }
  footer img.thomasnet {
      width: 15%;
  }
  footer img.logo {
      width: 60%;
  }
}
@media screen and (max-width: 750px) {
    p {
    font-size: 125%;
  }
  .features,
  .form {
    width: 100%;
  }
  .features ul li:first-of-type {
    padding-top: 0;
  }
  .features {
    padding-top: 0;
  }
  .features ul {
    padding-right: 1%;
  }
}
@media screen and (max-width: 720px) {
    body {
      background-position: 30px 60px;
    }
    header {
      padding-top: 0;
      height: 335px;
    }
    header h1 {
      margin-bottom: 30px;
    }
    img.hoses {
        width: 100%;
        max-width: 526px;
        top: -37px;
    }
    h2 {
      font-size: 190%;
    }
    .form p,
    .features p {
      font-size: 140%;
    }
}

@media screen and (max-width: 580px) {
  body {
    background: transparent;
  }
    header {
      height: 415px;
    }
    .right-side {
      width: 40%;
    }
    .left-side {
      width: 60%;
    }
    img.hoses {
      width: 180%;
      top: 40px;
      left: -15%;
    }
    header h1 {
      margin-bottom: 5px;
    }
    header img.tag {
      left: 120px;
      width: 60%;
    }
}

@media screen and (max-width: 480px) {
  header {
    height: 345px;
  }
  header img.tag {
    left: 100px;
  }
    .form {
        margin: 15px auto;
    }
  .features img,
  .features p {
    width: 100%;
  }
  .features p {
    padding-top: 10px;
    margin-left: 0;
  }
}
@media screen and (max-width: 405px) {
  img.hoses {
    top: 17px;
  }
  header img.tag {
    left: 90px;
  }
  header {
    height: 290px;
  }
}
@media screen and (max-width: 390px) {
  img.hoses {
    left: -22%;
  }
  header {
    height: 265px;
  }
  header img.tag {
    left: 83px;
  }
}
@media screen and (max-width: 330px) {
  body {
    font-size: 95%;
  }
  header img.tag {
    left: 70px;
  }
}