@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/layout.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;
  --condensed: 'Roboto Condensed', Helvetica, sans-serif;
  --KOA-blue: #0055a5;
  --midnight-blue: #003479;
  --yellow: #ffe02b;
}

.mobile-hose {
  display: none;
}
body {
    background: url(/img/superhero-lg.webp), url(/img/clouds-lg.webp), #00000f;
    background-repeat: no-repeat, no-repeat;
    background-position: 100% 49px;
    background-size: contain, contain;
    font-size: 1em;
    font-family: var(--font-stack);
    color: white;
}
body.thanks {
  background-size: contain, cover;
}
.wrapper {
    margin: 0 auto;
    max-width: 1500px;
    padding-top: 84px;
}
header {
    margin-bottom: 274px;
}
header h1 {
  margin: 18px 0;
  color: white;
  font: bold italic 412.5%/1.2em var(--condensed);
  text-shadow: 0px 5px 4.8px rgba(0, 0, 0, 0.9);
}
main {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 100%;
    margin: 20px 0;
    position: relative;
    transition: all 0.3s ease-out;
}
.logo {
    margin: 0 0 0.1em 0;
}
.thanks .logo {
    filter: drop-shadow(3px 5px 2px rgb(0 0 0 / 0.7));
}
.thanks figcaption {
  text-shadow: 0px -1px 4px rgba(0, 0, 0, 0.9);
}
h3 {
    color: var(--yellow);
    font: bold italic 220%/1em var(--condensed);
    margin-bottom: 20px;
}
p {
    color: white;
    font-size: 185%;
    line-height: 1.4em;
    margin: 0 0 24px 0;
    padding-right: 20px;
}
p.intro {
    font: bold italic 425%/1em var(--condensed);
    text-shadow: 0px 5px 4.8px rgba(0, 0, 0, 0.9);
    margin-bottom: 0;
}
a:link, a:visited {
    color: var(--yellow);
    text-decoration: underline;
}
a:hover, a:active {
    color: white;
    text-decoration: none;
}
figcaption {
    color: var(--yellow);
    text-align: center;
    font: bold italic 250%/1em Helvetica, sans-serif;
}
sup {
    font-weight: normal;
    font-style: normal;
    font-size: 63%;
}
#hoses {
    position: absolute;
    top: 550px;
    right: 0;
    max-width:850px;
	width: 39%;
    z-index: 10;
    padding:0;
    margin:0;
}
main ul {
  font-size: 185%;
  margin-top: 0;
}
main li {
  margin-bottom: 20px;
}
.form {
    box-sizing: border-box;
    position: relative;
    margin-top: 70px;
    height: 50%;
}
.form h2 {
  width: 100%;
  background: none;
  font: bold normal 212.5%/1.15em var(--condensed);
  border-bottom: 12px solid var(--yellow);
  text-shadow: 0px 5px 4.8px rgba(0, 0, 0, 0.9);
  padding: 0 0 15px 0;
  margin: 0 0 5px 0;
}
input:focus {
    outline: none;
    border: 1px solid var(--yellow);
}
textarea {
   border: 1px solid black;
    color: #4c4c4c;
    box-sizing: border-box;
    box-shadow:inset 2px 2px 5px 0 rgba(0,0,0,0.4);
    width: 100%;
    padding: 6px 5px 5px 10px;
    height: 100px;
    resize: vertical;
    min-height: 50px;
    font-size: 120%;
}
textarea:focus {
    outline: none;
    border: 1px solid var(--yellow);
}
form.fancy-form label {
  color: white;
}
a.button:link,
a.button:visited {
  background-color: black;
  color: var(--yellow);
  font: 700 normal 200%/1em var(--condensed);
  text-align: center;
  border: 1px solid var(--yellow);
}
button.g-recaptcha:hover,
button.g-recaptcha:active,
a.button:hover,
a.button:active {
  border: 1px solid black;
  color: black;
  outline: 0 none;
  background-color: var(--yellow);
  box-shadow: none;
}
button.g-recaptcha,
a.button-newsletter {
    font-size: 180%;
    width: 200px;
    padding: 8px 0;
}
input[disabled][type=submit].g-recaptcha,
input[disabled][type=submit].g-recaptcha:hover {
    color:lightgray;
    border: 1px solid lightgray;
    background-color: black;
}
a.button {
    margin: 0 auto;
    padding: 8px 0;
    text-decoration: none;
    display: inline-block;
    width: 70%;
    transition: all 0.3s ease-out;
}
.buttons {
    display:flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
.button-bg {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin: 0 auto 15px auto;
  width: 48%;
  height: 370px;
  text-align: center;
}
.catalog {
    background: url(/img/catalog.webp) center no-repeat;
    background-size: contain;
}
.video {
    background: url(/img/hose-video.webp) center no-repeat;
    background-size: contain;
}
img.left {
    margin: 0 1.5% 10px 0;
}
img.small {
    width: 40%;
}
img.medium {
    width: 60%;
}
main h1 img {
  width: auto;
  position: relative;
  top: -13px;
}
.span_12_of_12>img.left {
    margin-bottom: 35px;
}
p a.button {
    display: inline-block;
    width: 40%;
}
form ul {
    list-style: none;
}
form li {
    margin: 10px;
}

button.g-recaptcha,
a.button-newsletter {
  background-color: black;
  color: var(--yellow);
  font: 700 normal 200%/1em var(--condensed);
  text-align: center;
  border: 1px solid var(--yellow);
}
button.g-recaptcha:hover,
button.g-recaptcha:active,
a.button-newsletter:hover,
a.button-newsletter:active {
  border: 1px solid black;
  color: black;
  outline: 0 none;
  background-color: var(--yellow);
  box-shadow: none;
}
a.button-newsletter {
  text-decoration: none;
  padding: 10px 25px;
}
p.center {
  text-align: center;
}
.contact-footer {
    width: 100%;
    background: transparent;
    border: 1px solid var(--yellow);
    border-left: 0;
    border-right:0;
    padding: 10px 3.3%;
    color: white;
    font: 400 110% / 1.4375em var(--font-stack);
}
.contact-footer svg.fax,
.contact-footer svg.phone {
  fill: var(--yellow);
}
.social a:link svg {
  fill: white;
}
footer {
  background-color: transparent;
  padding: 40px 32px 21px 32px;
  color: white;
}
footer div.address {
    color: white;
}
footer ul {
    margin: 5px 15px;
}
footer ul a {
    border-right: 1px solid white;
}
footer a:link, footer a:visited {
    color: white;
}
footer a:hover, footer a:active {
    color: var(--yellow);
}
.social a:hover svg {
    fill: var(--yellow);
}

/**
 * Featherlight – ultra slim jQuery lightbox
 * Version 1.7.13 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2018, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/

html.with-featherlight {
  /* disable global scrolling when featherlights are visible */
  overflow: hidden;
}

.featherlight {
  display: none;

  /* dimensions: spanning the background from edge to edge */
  position:fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 2147483647; /* z-index needs to be >= elements on the site. */

  /* position: centering content */
  text-align: center;

  /* insures that the ::before pseudo element doesn't force wrap with fixed width content; */
  white-space: nowrap;

  /* styling */
  cursor: pointer;
  background: #333;
  /* IE8 "hack" for nested featherlights */
  background: rgba(0, 0, 0, 0);
}

/* support for nested featherlights. Does not work in IE8 (use JS to fix) */
.featherlight:last-of-type {
  background: rgba(0, 0, 0, 0.6);
}

.featherlight:before {
  /* position: trick to center content vertically */
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.featherlight .featherlight-content video {
  width: auto;
  height: 100%
}
.featherlight .featherlight-content {
  position: relative;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
  overflow: auto;
  padding: 25px 25px 0;
  border-bottom: 25px solid transparent;
  margin-left: 5%;
  margin-right: 5%;
  height: 90%;
  background: #fff;
  cursor: auto;
  white-space: normal;
  width: 90%;
}
.featherlight-loading .featherlight-content {
  height: 200px;
  background: #fff url('img/loading.gif') center center no-repeat;
}

.featherlight.small .featherlight-content {
  width: 50%;
}
.featherlight-content img {
  width: auto;
  margin: 10px auto;
}
.featherlight-content .col img {
  width: 100%;
}
.featherlight-content p,
.featherlight-content ul {
  font-size: 125%;
  line-height: 1.5em;
}

/* contains the content */
.featherlight .featherlight-inner {
  /* make sure its visible */
  display: block;
}

/* don't show these though */
.featherlight script.featherlight-inner,
.featherlight link.featherlight-inner,
.featherlight style.featherlight-inner {
  display: none;
}

.featherlight .featherlight-close-icon {
  /* position: centering vertical and horizontal */
  position: absolute;
  z-index: 9999;
  top: 0;
  right: 0;

  /* dimensions: 25px x 25px */
  line-height: 25px;
  width: 25px;

  /* styling */
  cursor: pointer;
  text-align: center;
  font-family: Arial, sans-serif;
  background: #fff; /* Set the background in case it overlaps the content */
  background: rgba(255, 255, 255, 0.3);
  color: #000;
  border: none;
  padding: 0;
}

/* See http://stackoverflow.com/questions/16077341/how-to-reset-all-default-styles-of-the-html5-button-element */
.featherlight .featherlight-close-icon::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.featherlight .featherlight-image {
  /* styling */
  width: 100%;
}


.featherlight-iframe .featherlight-content {
  /* removed the border for image croping since iframe is edge to edge */
  border-bottom: 0;
  padding: 0;
  -webkit-overflow-scrolling: touch;
}

.featherlight iframe {
  /* styling */
  border: none;
}

.featherlight * { /* See https://github.com/noelboss/featherlight/issues/42 */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* handling phones and small screens */
@media only screen and (max-width: 1024px) {
  .featherlight .featherlight-content {
    margin-left: 0;
    margin-right: 0;
    max-height: 98%;
    width: 95%;
    padding: 10px 10px 0;
    border-bottom: 10px solid transparent;
  }
}

/* hide non featherlight items when printing */
@media print {
  html.with-featherlight > * > :not(.featherlight) {
    display: none;
  }
}
.hide {
  display: none;
}
.show {
  display: block;
}
/* ==========================================================================
   Media Queries
   ========================================================================== */
@media screen and (max-width: 1840px) {
  .featherlight .featherlight-content video {
    width: 100%;
    height: auto;
  }
  .featherlight .featherlight-content {
    height: auto;
    width: auto;
  }
}
@media screen and (max-width: 1840px) {
  header.span_9_of_12 {
	  margin-bottom: 160px;
  }
  p, main ul {
	  font-size: 170%;
	  line-height: 1.3em;
  }
  .form {
    margin-top: 114px;
  }
  #hoses {
    width: 38%;
    top: 485px;
  }
  figcaption {
    font-size: 200%;
  }
  header h1 {
    text-shadow:
     -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000,
    0px 5px 4.8px rgba(0, 0, 0, 0.9);;
  }
}
@media screen and (max-width: 1795px) {
  header.span_9_of_12 {
    width: 80%;
  }
  #hoses {
    top: 460px;
  }
  .form {
    margin-top: 100px;
  }
}
@media screen and (max-width: 1546px) {
    header.span_9_of_12 {
      width: 85%;
    }
    p,
    main ul {
        font-size: 1.65em;
    }
    .form h2 {
      font-size: 200%;
    }
    #hoses {
      top: 405px;
    }
    figcaption {
      font-size: 180%;
    }
}
@media screen and (max-width: 1443px) {
    p,
    main ul {
      font-size: 1.5em;
    }
    header h1,
    p.intro {
      font-size: 350%;
    }
    .form {
        margin-top: 50px;
    }
}
@media screen and (max-width: 1315px) {
    p,
    main ul {
      font-size: 1.35em;
    }
    h2 {
      font-size: 1.5em;
    }
    form.fancy-form label {
      font-size: 130%;
    }
    .form h2 {
        font-size: 185%;
    }
    input[type=submit].g-recaptcha,
	button.g-recaptcha {
      font-size: 170%;
      padding: 5px 0;
      width: 150px;
    }
    figcaption {
      font-size: 150%;
    }
}
@media screen and (max-width: 1250px) {
  .span_10_of_12 {
    width: 90%;
  }
  .form h2 {
      font-size: 170%;
  }
  .buttons {
    width: 98%;
  }
  #hoses {
    top: 340px;
  }
  .form {
      margin-top: 25px;
  }
}
@media screen and (max-width: 1150px) {
    header h1,
    p.intro {
      font-size: 300%;
    }
    main li {
      margin-bottom: 15px;
    }
}

@media screen and (max-width: 1097px) {
    p,
    main ul {
      font-size: 1.25em;
    }
    h2 {
      font-size: 1.4em;
    }
}

@media screen and (max-width: 1022px) {
   header.span_9_of_12 {
       margin-bottom: 95px;
   }
    .form h2 {
      font-size: 150%;
      margin-top: 0;
    }
    #hoses {
      top: 275px;
    }
}
@media screen and (max-width: 1002px) {
    p,
    main ul {
      font-size: 1em;
    }
    h2 {
      font-size: 1.9em;
    }
    form.fancy-form label {
      font-size: 110%;
    }
}
@media screen and (max-width: 910px) {
	.wrapper.span_10_of_12 {
		width: 96%;
	}
}
@media screen and (max-width: 910px) {
    header h1 {
      font-size: 250%;
    }
    header.span_9_of_12 {
      margin-bottom: 50px;
    }
    figure {
      margin: 0 0 20px 0;
    }
    p.intro {
      display: none;
    }
    #hoses {
      top: 232px;
    }
    .form h2 {
      font-size: 125%;
    }
    main li {
      margin-bottom: 10px;
    }
}

@media screen and (max-width: 850px) {
    header h2 {
      font-size: 150%;
    }
  }

@media screen and (max-width: 770px) {
    header h1 {
      width: 90%;
      margin: 0 auto 15px auto;
    }
    .logo {
      filter: drop-shadow(3px 5px 2px rgb(0 0 0 / 0.7));
    }
    p,
    main ul {
    font-size: 1.4em;
    }
}
@media screen and (max-width: 760px) {
  .desktop {
    display: none;
  }
  .mobile-hose {
    display: block;
    position: relative;
    right: -50px;
    top:-50px;
  }
  h3 {
    margin-top: 0;
  }
  #corporatebanner {
	  display: block;
  }
  footer {
	  flex-direction: column;
	  align-items: center;
  }
  footer div.logos {
	  padding-left: 0;
  }
  footer img {
	  float: none;
  }
  footer img.logo {
	  width: 65%;
	  margin: 0 auto 20px auto;
  }
  footer .span_1_of_12 {
	  width: 100%
  }
  footer img.thomasnet {
	  width: 15%;
  }
}
@media screen and (max-width: 520px) {
    body {
      font-size: 0.85em;
    }
    header h1 {
      margin: 10px 0 15px 0;
    }
    .buttons {
      flex-flow: column wrap;
    }
    .button-bg {
      width: 100%;
      margin-bottom: 30px;
    }
}
@media screen and (max-width: 480px) {
  .mobile-hose {
    right: -20px;
  }
}