@charset "UTF-8";
/* Variables ------------------------------- */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

a {
  text-decoration: none;
  color: #222;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  color: #282828;
  background-color: #fff;
}

h1, h2, h3, h4 {
  font-family: "Roboto Condensed", sans-serif;
}

.responsive {
  width: 100%;
  height: auto;
  display: block;
}

.section-title, section.page-content h1 {
  font-size: 24px;
  border-bottom: 4px solid #001b78;
  line-height: 1.2;
  display: inline-block;
  text-align: left;
  margin: 1rem 0 0 0;
  font-weight: 700;
}
@media (min-width: 768px) {
  .section-title, section.page-content h1 {
    font-size: 30px;
    margin: 0.5rem 0;
  }
}
@media (min-width: 1250px) {
  .section-title, section.page-content h1 {
    font-size: 34px;
  }
}

p, li {
  font-size: 18px;
}
@media (min-width: 768px) {
  p, li {
    font-size: 20px;
  }
}
@media (min-width: 1250px) {
  p, li {
    font-size: inherit;
  }
}

/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 1250px) {
  .container {
    max-width: 1200px;
  }
}

header {
  background-color: #001b78;
  padding: 0.5rem 0;
}
@media (min-width: 768px) {
  header {
    padding: 20px 0;
  }
}
header .container {
  text-align: center;
  padding: 0 20px;
}
@media (min-width: 768px) {
  header .container {
    text-align: left;
  }
}
header .container::after {
  content: "";
  display: block;
  clear: both;
}
header .logo {
  max-width: 200px;
  display: block;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  header .logo {
    display: inline-block;
    float: left;
    margin: 0;
    max-width: 350px;
  }
}
header .button {
  display: none;
  padding: 4px 10px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  background: #ffffff;
  color: #001b78;
  border: 1px solid #ffffff;
}
header .button:hover {
  transition: background 0.5s ease, color 0.5s ease;
  background: #001b78;
  color: #ffffff;
}
@media (min-width: 768px) {
  header .button {
    display: inline-block;
    float: right;
    padding: 6px 12px;
    position: relative;
    top: 2px;
  }
}

#footer {
  background-color: #001b78;
  padding: 2rem 0;
  color: #ffffff;
}
@media (min-width: 769px) {
  #footer {
    padding: 6rem 0;
  }
}
#footer p {
  font-size: 14px;
  text-align: center;
}
@media (min-width: 768px) {
  #footer p {
    font-size: 16px;
  }
}
#footer p.lgl {
  margin-top: 40px;
}
#footer a {
  display: inline;
  text-decoration: underline;
  color: #ffffff;
}

.hero-image {
  overflow: hidden;
  position: relative;
}
@media (min-width: 1441px) {
  .hero-image {
    max-height: 500px;
  }
}
.hero-image .gradient {
  display: none;
}
@media (min-width: 768px) {
  .hero-image .gradient {
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 40%, rgba(0, 0, 0, 0.7098039216) 100%);
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    z-index: 1;
    display: block;
    top: 0;
  }
}
.hero-image .container {
  padding: 0;
}
@media (min-width: 769px) {
  .hero-image .container {
    padding: 0 20px;
  }
}
@media (min-width: 1024px) {
  .hero-image .container {
    position: static;
  }
}
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-image .wrap {
  padding: 20px;
  display: block;
}
@media (min-width: 768px) {
  .hero-image .wrap {
    background: none;
    position: absolute;
    bottom: 0;
    z-index: 2;
    width: 300px;
    left: 0;
  }
}
@media (min-width: 1024px) {
  .hero-image .wrap {
    width: 320px;
    left: -webkit-calc((100vw - 900px) / 2);
    left: -moz-calc((100vw - 900px) / 2);
    left: calc((100vw - 900px) / 2);
    margin-bottom: 30px;
  }
}
@media (min-width: 1250px) {
  .hero-image .wrap {
    width: 400px;
    left: -webkit-calc((100vw - 1200px) / 2);
    left: -moz-calc((100vw - 1200px) / 2);
    left: calc((100vw - 1200px) / 2);
  }
}
.hero-image .wrap p {
  color: #000;
  margin: 0;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
}
@media (min-width: 768px) {
  .hero-image .wrap p {
    font-size: 28px;
    color: #ffffff;
    font-weight: 300;
  }
}
@media (min-width: 1024px) {
  .hero-image .wrap p {
    font-size: 30px;
  }
}
@media (min-width: 1250px) {
  .hero-image .wrap p {
    font-size: 36px;
  }
}

section {
  position: relative;
}
@media (min-width: 768px) {
  section {
    padding: 2rem 0;
  }
}
section.intro {
  /*background-color: #888888;
  color: $white;*/
}
@media (min-width: 768px) {
  section.intro p {
    margin: 0.8rem 0;
  }
}
section.intro-a h3 {
  font-size: 1.5rem;
  margin: 0;
}
@media (min-width: 768px) {
  section.intro-a h3 {
    font-size: 1.8rem;
  }
}
section.intro-a ul {
  padding: 0;
}
@media (min-width: 768px) {
  section.intro-a ul {
    column-count: 2;
  }
}
section.intro-a li {
  text-align: left;
  display: block;
  padding: 0 0 1rem 0;
  margin: 0;
  vertical-align: top;
}
@media (min-width: 768px) {
  section.intro-a li {
    margin: 1%;
    display: inline-block;
    transform: translateY(0px);
    transition: transform 0.1s ease;
  }
  section.intro-a li:hover {
    transform: translateY(-5px);
    transition: transform 0.1s ease;
  }
}
section.intro-a li a {
  display: inline-block;
}
section.intro-a li a img {
  width: 100%;
  height: auto;
}
section.intro-a li .company-logo {
  width: 100px;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}
section.intro-a li .text {
  width: calc(100% - 110px);
  display: inline-block;
  vertical-align: middle;
}
section.start-here {
  color: #ffffff;
  overflow: hidden;
  position: relative;
  background-image: url("../img/bkgd.jpg");
  background-size: cover;
  background-position: 0 0;
  padding: 2rem 0;
  display: block;
  width: 100%;
  min-height: 250px;
}
@media (min-width: 768px) {
  section.start-here {
    min-height: 400px;
  }
}
@media (min-width: 769px) {
  section.start-here {
    height: 73.33vw;
    max-height: 750px;
    padding: 2.5rem 0;
    min-height: 750px;
  }
}
@media (min-width: 992px) {
  section.start-here {
    min-height: initial;
  }
}
section.start-here .gradient {
  background-color: #001b78;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  opacity: 0.8;
}
section.start-here .container {
  position: static;
}
section.start-here .container .wrap {
  display: block;
  position: relative;
}
@media (min-width: 1025px) {
  section.start-here .container .wrap {
    right: calc((100vw - 900px) / 2);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 600px;
    z-index: 1;
    backface-visibility: hidden;
    padding-right: 20px;
  }
}
@media (min-width: 1250px) {
  section.start-here .container .wrap {
    right: calc((100vw - 1200px) / 2);
  }
}
section.start-here .container .wrap.results {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  padding: 0 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (min-width: 1025px) {
  section.start-here .container .wrap.results {
    right: calc((100vw - 900px) / 2);
    left: auto;
    width: 600px;
    z-index: 1;
    backface-visibility: hidden;
  }
}
@media (min-width: 1250px) {
  section.start-here .container .wrap.results {
    right: calc((100vw - 1200px) / 2);
  }
}
section.start-here h2.section-title {
  border-color: #ffffff;
}
section.start-here a {
  color: #ffffff;
  word-break: break-word;
}
section.start-here ul {
  margin: 0;
  padding-left: 20px;
}
section.start-here li {
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  section.start-here li {
    margin: 0;
  }
}
section.start-here #form-supplier-div label {
  font-size: 18px;
  display: block;
}
section.start-here #form-supplier-div input {
  display: block;
  line-height: 18px;
  font-size: 16px;
  border: 3px solid #fff;
  border-radius: 4px;
  padding: 7px;
  margin: 5px 0 15px 0;
  width: 100%;
}
section.start-here #form-supplier-div input[type=checkbox] {
  display: inline-block;
  width: auto;
  margin: 5px 0;
}
section.start-here #form-supplier-div .cert {
  width: 100%;
  display: block;
  margin-bottom: 15px;
}
section.start-here #form-supplier-div .cert p {
  font-size: 18px;
  margin: 0 0 5px 0;
}
section.start-here #form-supplier-div .cert input {
  vertical-align: middle;
}
section.start-here #form-supplier-div .cert label {
  display: inline-block;
  vertical-align: middle;
}
section.start-here #form-supplier-div textarea {
  width: 100%;
  display: block;
  height: 70px;
  line-height: 18px;
  font-size: 16px;
  padding: 7px;
  border-radius: 4px;
  margin: 5px 0 15px 0;
  font-family: inherit;
  border: 0;
  resize: none;
}
section.start-here #form-supplier-div > div, section.start-here #form-supplier-div .cert div {
  width: 100%;
  display: block;
  vertical-align: top;
}
@media (min-width: 768px) {
  section.start-here #form-supplier-div > div, section.start-here #form-supplier-div .cert div {
    width: 50%;
    display: inline-block;
  }
}
section.start-here #form-supplier-div .left-group {
  padding: 0;
}
@media (min-width: 768px) {
  section.start-here #form-supplier-div .left-group {
    padding-right: 15px;
  }
}
section.start-here #form-supplier-div .right-group {
  padding: 0;
}
@media (min-width: 768px) {
  section.start-here #form-supplier-div .right-group {
    padding-left: 15px;
  }
}
section.start-here #form-supplier-div .button {
  cursor: pointer;
}
section.start-here #form-supplier-div span.required {
  color: #ccc;
}
section.start-here #form-supplier-div span.help {
  color: #ccc;
  font-style: italic;
  font-size: 15px;
  margin-right: 5px;
}
section.start-here #form-supplier-div .form-error {
  display: block;
  width: 100%;
  margin: 0px 0 10px 0;
  border-bottom: 2px solid #d80000;
  text-align: center;
  padding-bottom: 2px;
  font-size: 20px;
}
section.start-here #form-supplier-div .input-error .required {
  color: #d80000;
}
section.start-here #form-supplier-div .input-error input, section.start-here #form-supplier-div .input-error textarea {
  border: 3px solid #d80000;
}
section.start-here .error-message {
  text-align: center;
}
section.start-here .error-message a {
  display: block;
  background: #fff;
  width: 140px;
  margin: 20px auto 0 auto;
  text-align: center;
}
section.start-here .error-message a:hover {
  transition: background 0.5s ease, color 0.5s ease;
  background: transparent;
  color: #ffffff;
}
section.start-here .error-message a span {
  font-size: 30px;
  line-height: 20px;
  display: inline-block;
  vertical-align: bottom;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
section.start-here .button {
  color: #001b78;
  background-color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  border: 1px solid #ffffff;
  padding: 8px 16px;
}
section.start-here .button:hover {
  transition: background 0.5s ease, color 0.5s ease;
  background: transparent;
  color: #ffffff;
}
@media (min-width: 768px) {
  section.start-here .button {
    padding: 8px 20px;
    font-size: 22px;
  }
}
section.contact {
  padding: 2rem 0;
}
@media (min-width: 769px) {
  section.contact {
    padding: 2rem 0 5rem 0;
  }
}

.loading {
  opacity: 0;
  margin: 0 auto;
  display: inline-block;
  height: 40px;
  width: 50px;
  position: absolute;
  transition: opacity 1s linear;
  -webkit-transition: opacity 1s linear;
  -moz-transition: opacity 1s linear;
  -o-transition: opacity 1s linear;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 50%;
}
@media (min-width: 768px) {
  .loading {
    height: 50px;
  }
}
.loading .text, .loading .icon {
  opacity: 0;
  display: inline-block;
}
.loading.appear {
  opacity: 1;
  color: #000;
  width: 270px;
  transition: opacity 0.5s ease, width 0.5s ease;
  -webkit-transition: opacity 0.5s ease, width 0.5s ease;
  -moz-transition: opacity 0.5s ease, width 0.5s ease;
  -o-transition: opacity 0.5s ease, width 0.5s ease;
}
@media (min-width: 411px) {
  .loading.appear {
    width: 280px;
  }
}
@media (min-width: 768px) {
  .loading.appear {
    width: 480px;
  }
}
.loading.appear .text {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  font-family: inherit;
  position: relative;
  top: 8px;
  opacity: 1;
  transition: opacity 0.5s ease 0.25s;
  -webkit-transition: opacity 0.5s ease 0.25s;
  -moz-transition: opacity 0.5s ease 0.25s;
  -o-transition: opacity 0.5s ease 0.25s;
}
@media (min-width: 768px) {
  .loading.appear .text {
    font-size: 30px;
    top: 0px;
  }
}
.loading.appear .icon {
  background-repeat: no-repeat;
  background-position: -577px -37px;
  width: 20px;
  height: 18px;
  margin-left: 15px;
  opacity: 1;
  transition: opacity 0.5s ease 0.25s;
  -webkit-transition: opacity 0.5s ease 0.25s;
  -moz-transition: opacity 0.5s ease 0.25s;
  -o-transition: opacity 0.5s ease 0.25s;
}
.loading.grow {
  -webkit-animation: grow 0.25s ease forwards;
  -moz-animation: grow 0.25s ease forwards;
  -o-animation: grow 0.25s ease forwards;
  animation: grow 0.25s ease forwards;
}

.spinner {
  position: relative;
  text-align: center;
  margin: 0 auto;
  height: 50px;
}
.spinner svg {
  position: absolute;
  opacity: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 50%;
}
.spinner .line {
  width: 0;
  visibility: hidden;
  background-color: #fff;
  height: 2px;
  display: block;
  position: absolute;
  bottom: 0px;
  z-index: 1;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 50%;
}
@media (min-width: 768px) {
  .spinner .line {
    height: 4px;
  }
}
.spinner .line.grow {
  width: 100%;
  transition: visibility 0.5s ease, width 1s ease;
  transition-delay: 1s;
  visibility: visible;
}
.spinner.draw svg {
  opacity: 1;
  transition: opacity 0.5s ease;
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
}

.outer {
  fill: transparent;
}

.draw .outer {
  stroke-dashoffset: 534;
  stroke: #fff;
  stroke-width: 6;
  stroke-dasharray: 534;
  -webkit-animation: draw-stroke 2s forwards;
  -moz-animation: draw-stroke 2s forwards;
  -o-animation: draw-stroke 2s forwards;
  animation: draw-stroke 2s forwards;
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  -o-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

@-webkit-keyframes draw-stroke {
  0% {
    stroke-dashoffset: 537;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes draw-stroke {
  0% {
    stroke-dashoffset: 537;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
/*   IE 10 and IE 11 CSS Hacks  */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .draw .outer {
    -webkit-animation: none;
    -moz-animation: none;
    -o-animation: none;
    animation: none;
  }

  .spinner {
    width: 260px;
    margin: 0 auto;
    margin-top: 30px;
  }
  .spinner.draw {
    width: 50px;
  }

  .loading {
    top: 0px;
  }
}
.divider {
  position: relative;
  margin: 2rem auto;
}

.button {
  background: #001b78;
  padding: 10px 20px;
  color: #ffffff;
  border-radius: 5px;
  font-size: 1.5rem;
}

.mobile-btn {
  display: block;
  text-align: center;
  margin-bottom: 5px;
}
.mobile-btn .button {
  padding: 8px 16px;
  display: inline-block;
  text-transform: uppercase;
  font-size: 16px;
}
@media (min-width: 768px) {
  .mobile-btn {
    display: none;
  }
}

.footer-copy {
  font-style: italic;
  padding: 2rem 20px;
  border-top: 1px solid #ccc;
}
@media (min-width: 769px) {
  .footer-copy {
    padding: 6rem 20px;
  }
}
.footer-copy p {
  font-size: 16px;
}
@media (min-width: 1250px) {
  .footer-copy p {
    font-size: 18px;
  }
}

body.err h1.section-title, body.err section.page-content h1, section.page-content body.err h1 {
  margin: 5px 0 15px 0;
}
@media (min-width: 768px) {
  body.err h1.section-title, body.err section.page-content h1, section.page-content body.err h1 {
    color: #ffffff;
    border-color: #ffffff;
    font-size: 36px;
  }
}
@media (min-width: 1250px) {
  body.err h1.section-title, body.err section.page-content h1, section.page-content body.err h1 {
    font-size: 40px;
  }
}
@media (min-width: 1024px) {
  body.err .hero-image .wrap p {
    font-size: 30px;
  }
}

/*# sourceMappingURL=style.css.map */
