* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth; }

body {
  max-width: 1920px;
  margin: 0 auto;
  font-size: 18px;
  font-family: "trade-gothic-next", sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background: url("../images/bg-min.png") repeat-y center 0; }
  body header {
    position: relative;
    background: white; }
    body header .content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      line-height: 1;
      padding: 25px 100px 12.5px; }
      body header .content > div {
        width: 20%; }
      body header .content a {
        text-decoration: none; }
      body header .content .logo {
        line-height: 0; }
        body header .content .logo img {
          width: 150px;
          height: auto; }
      body header .content nav {
        z-index: 1;
        width: 60%;
        text-align: right; }
        body header .content nav .mobile-menu {
          display: none;
          cursor: pointer; }
        body header .content nav > ul {
          display: flex;
          flex-wrap: wrap;
          justify-content: center; }
          body header .content nav > ul li {
            position: relative;
            overflow: hidden;
            padding: 10px;
            /*&.sub-nav {
                a {
                    border-radius: 7px 7px 0 0;
                }
                &:hover {
                    & > a {
                        background: rgba($blue,1);
                    }
                    a {
                        color: $dark-green;
                        text-shadow: none;
                    }
                }
                ul {
                    height: 0;
                    position: absolute;
                    left: 10px;
                    white-space: nowrap;
                    z-index: 100;
                    background: rgba($blue,1);
                    border-radius: 0 0 7px 7px;
                    transition: .5s all ease-in-out;
                    li {
                        opacity: 0;
                        padding: 0;
                        &:first-child {
                        margin-top: 10px;
                        }
                        &:last-child {
                            margin-bottom: 10px;
                        }
                        a {
                            background: none;
                            color: $dark-green;
                            text-shadow: none;
                            &:hover {
                                color: rgba($dark-green,.75);
                            }
                        }
                    }
                }
                &:hover {
                    overflow: visible;
                    ul {
                        height: auto;
                        min-width: 100%;
                        li {
                            opacity: 1;
                        }
                    }
                }
            }*/ }
            body header .content nav > ul li a {
              color: #212121;
              padding: 12px 20px;
              line-height: 1;
              font-weight: 400;
              display: inline-block;
              border-radius: 5px; }
              body header .content nav > ul li a:hover {
                background: rgba(125, 152, 161, 0.25); }
        body header .content nav.mobile-show {
          background: #212121;
          position: absolute;
          top: -25px;
          right: 0;
          width: 100%;
          padding-top: 50px;
          padding-bottom: 25px;
          box-shadow: 0 40px 40px rgba(0, 0, 0, 0.75);
          transition: all 0.3s; }
          body header .content nav.mobile-show .mobile-menu {
            filter: contrast(0%);
            margin: 20px; }
            body header .content nav.mobile-show .mobile-menu div {
              transition: all 0.2s ease-in; }
              body header .content nav.mobile-show .mobile-menu div:nth-child(1) {
                transform: translateY(5px) rotate(45deg); }
              body header .content nav.mobile-show .mobile-menu div:nth-child(2) {
                opacity: 0; }
              body header .content nav.mobile-show .mobile-menu div:nth-child(3) {
                transform: translateY(-15px) rotate(-45deg); }
          body header .content nav.mobile-show > ul {
            display: block; }
            body header .content nav.mobile-show > ul > li {
              padding: 0; }
              body header .content nav.mobile-show > ul > li > a {
                display: block;
                color: #7d98a1;
                border-radius: 0;
                padding-top: 20px;
                padding-bottom: 20px; }
      body header .content .contact-sales {
        text-align: right;
        font-weight: 500; }
        body header .content .contact-sales a {
          font-size: 24px;
          font-weight: 700;
          display: block; }
    body header .hero {
      color: #eaebed;
      background: #212121 url("../images/hero/hero-subpage-min.jpg") center -510px no-repeat;
      position: relative;
      display: flex;
      align-items: center;
      width: 100%;
      overflow: hidden;
      padding: 100px 15px; }
      body header .hero.offset .hero-content {
        text-align: right;
        width: 50%;
        margin: 0; }
      body header .hero .hero-content {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
        position: relative; }
        body header .hero .hero-content h1 {
          font-size: 36px;
          line-height: 1.1;
          margin-bottom: 50px;
          font-size: 72px;
          font-weight: 800;
          margin-bottom: 0;
          opacity: 1; }
        body header .hero .hero-content p {
          font-size: 24px;
          text-shadow: 0 0px 10px #011921; }
        body header .hero .hero-content .cta a {
          padding: 15px 20px;
          line-height: 1;
          font-weight: 400;
          color: white;
          background: #ae0000;
          border-radius: 5px;
          display: inline-block;
          text-align: center;
          text-decoration: none;
          overflow: hidden;
          display: inline-block;
          position: relative; }
          body header .hero .hero-content .cta a::before, body header .hero .hero-content .cta a::after {
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            transform: translateX(-100px) skewX(-15deg);
            content: ""; }
          body header .hero .hero-content .cta a::before {
            width: 60px;
            background: rgba(255, 255, 255, 0.5);
            filter: blur(30px);
            opacity: 0.5; }
          body header .hero .hero-content .cta a::after {
            width: 30px;
            left: 30px;
            background: rgba(255, 255, 255, 0.2);
            filter: blur(5px); }
          body header .hero .hero-content .cta a:hover {
            background-color: #e00000; }
            body header .hero .hero-content .cta a:hover::before {
              opacity: 1; }
            body header .hero .hero-content .cta a:hover::before, body header .hero .hero-content .cta a:hover::after {
              transform: translateX(300px) skewX(-15deg);
              transition: all 0.9s ease; }
  body .main-content section,
  body .main-content .section {
    margin: auto;
    padding: 0 15px;
    margin: 100px 0; }
    body .main-content section .container,
    body .main-content .section .container {
      margin: auto;
      max-width: 900px; }
      body .main-content section .container.full-width,
      body .main-content .section .container.full-width {
        max-width: 1800px; }
        body .main-content section .container.full-width h2,
        body .main-content .section .container.full-width h2 {
          text-align: center;
          max-width: 1200px;
          margin: 0 auto 50px; }
        body .main-content section .container.full-width > div,
        body .main-content .section .container.full-width > div {
          display: flex;
          flex-wrap: wrap;
          gap: 50px;
          justify-content: center; }
          body .main-content section .container.full-width > div .content,
          body .main-content .section .container.full-width > div .content {
            width: calc((100%/3) - 50px);
            padding-bottom: 50px;
            position: relative;
            display: flex;
            flex-wrap: wrap;
            align-content: start; }
            body .main-content section .container.full-width > div .content > div.logo,
            body .main-content .section .container.full-width > div .content > div.logo {
              margin-bottom: 1.6em;
              height: 60px;
              color: #3e3e3e;
              display: flex;
              align-items: center; }
              body .main-content section .container.full-width > div .content > div.logo img,
              body .main-content .section .container.full-width > div .content > div.logo img {
                max-height: 63px;
                max-width: 250px;
                width: auto; }
              body .main-content section .container.full-width > div .content > div.logo div,
              body .main-content .section .container.full-width > div .content > div.logo div {
                font-size: 48px;
                font-weight: 400;
                padding-bottom: 5px; }
            body .main-content section .container.full-width > div .content > div.mfr-img,
            body .main-content .section .container.full-width > div .content > div.mfr-img {
              margin-top: 80%; }
              body .main-content section .container.full-width > div .content > div.mfr-img img,
              body .main-content .section .container.full-width > div .content > div.mfr-img img {
                display: block;
                width: calc(100% + 120px);
                margin-left: -60px;
                border-radius: 0 0 10px 10px;
                position: absolute;
                bottom: 0;
                width: 100%; }
      body .main-content section .container .content,
      body .main-content .section .container .content {
        background: rgba(255, 255, 255, 0.8);
        padding: 50px 60px 1px;
        box-shadow: rgba(1, 25, 33, 0.1) 0px 0px 20px;
        border-radius: 10px; }
        body .main-content section .container .content ul li,
        body .main-content .section .container .content ul li {
          background: url("../images/bullet.png") no-repeat 0 center;
          padding-left: 70px;
          margin-bottom: 40px;
          min-height: 52px;
          align-content: center; }
        body .main-content section .container .content .inputs,
        body .main-content .section .container .content .inputs {
          display: flex;
          flex-wrap: wrap;
          min-width: 290px;
          width: 100%;
          margin: 0 auto; }
          body .main-content section .container .content .inputs .percentage,
          body .main-content .section .container .content .inputs .percentage {
            flex-basis: 100%;
            text-align: center;
            display: none;
            font-size: 24px; }
          body .main-content section .container .content .inputs progress,
          body .main-content .section .container .content .inputs progress {
            margin: 10px 0;
            height: 32px;
            display: none; }
        body .main-content section .container .content #filelist,
        body .main-content .section .container .content #filelist {
          display: flex;
          justify-content: center;
          align-items: center;
          border: #6b6b6b 5px dashed;
          min-width: 290px;
          padding: 80px;
          font-size: 18px;
          width: 100%;
          margin: 0 auto 20px;
          color: rgba(33, 33, 33, 0.5);
          flex-direction: column; }
          body .main-content section .container .content #filelist li,
          body .main-content .section .container .content #filelist li {
            padding-left: 0;
            background: none;
            margin-bottom: 0;
            min-height: auto; }
            body .main-content section .container .content #filelist li:before,
            body .main-content .section .container .content #filelist li:before {
              font-family: "Font Awesome 5 Free";
              content: "\f15b";
              font-weight: 600;
              margin-right: 10px; }
        body .main-content section .container .content a#browse,
        body .main-content section .container .content #start-upload,
        body .main-content .section .container .content a#browse,
        body .main-content .section .container .content #start-upload {
          background: #7d98a1;
          padding: 10px;
          color: white;
          text-decoration: none; }
    body .main-content section h2,
    body .main-content .section h2 {
      opacity: .75; }
    body .main-content section ul,
    body .main-content .section ul {
      margin-bottom: 50px; }
  body .banner {
    margin: 50px auto;
    padding: 50px 15px;
    box-shadow: #212121 0px 0px 50px;
    background: white;
    position: relative;
    z-index: 1; }
    body .banner h2 {
      max-width: 900px;
      margin: 0 auto 50px; }
    body .banner .logos {
      display: flex;
      justify-content: space-around;
      align-items: center;
      gap: 50px;
      margin-left: 50px;
      margin-right: 50px; }
      body .banner .logos a {
        display: block; }
        body .banner .logos a img {
          width: 100%;
          height: auto;
          max-height: 86px; }
    body .banner p {
      margin: 0 auto;
      text-align: left; }
    body .banner.manufacturers h2 {
      text-align: center;
      max-width: 700px;
      opacity: .75; }
  body #contact-form {
    padding-top: 50px;
    padding-left: 15px;
    padding-right: 15px; }
    body #contact-form .container {
      max-width: 1200px;
      margin: 0 auto 100px;
      background: #032835 url("../images/gears-min.jpg") no-repeat;
      display: flex;
      justify-content: flex-end;
      border-radius: 10px; }
      body #contact-form .container form {
        background: #7d98a1;
        color: white;
        width: 50%;
        padding: 30px 60px 50px;
        border-radius: 0 10px 10px 0; }
        body #contact-form .container form h2 {
          background: url("../images/envelope.png") right no-repeat;
          min-height: 60px;
          display: flex;
          align-items: center; }
        body #contact-form .container form h2, body #contact-form .container form h2 + p {
          margin-bottom: 33.3333333333px; }
        body #contact-form .container form .h-captcha {
          background: #fafafa;
          padding: 8px 8px 0;
          border-radius: 5px; }
  body .quote-form {
    padding-bottom: 50px; }
    body .quote-form input,
    body .quote-form select,
    body .quote-form textarea {
      background: rgba(125, 152, 161, 0.4); }
      body .quote-form input:focus,
      body .quote-form select:focus,
      body .quote-form textarea:focus {
        outline: 2px solid #7d98a1; }
      body .quote-form input.btn,
      body .quote-form select.btn,
      body .quote-form textarea.btn {
        margin-top: 25px; }
    body .quote-form .bottom-cap-error {
      width: 302px; }
  body footer {
    background: #212121 url("../images/bg-great-lakes-min.jpg") no-repeat bottom;
    color: rgba(255, 255, 255, 0.85);
    padding: 100px 100px 400px;
    position: relative; }
    body footer section,
    body footer .section {
      max-width: 1700px;
      padding: 0;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between; }
      body footer section > div,
      body footer .section > div {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 32%;
        min-width: 250px; }
        body footer section > div.logo,
        body footer .section > div.logo {
          width: 250px;
          order: 2;
          display: block; }
          body footer section > div.logo > a:first-child:after,
          body footer .section > div.logo > a:first-child:after {
            content: "";
            border-radius: 100%;
            display: block;
            width: calc(100% + 20px);
            height: 3px;
            background: rgba(255, 255, 255, 0.25);
            margin: 10px 0;
            margin-left: -10px; }
          body footer section > div.logo > div a,
          body footer .section > div.logo > div a {
            margin-top: 20px; }
          body footer section > div.logo a,
          body footer .section > div.logo a {
            margin: 0 auto;
            text-align: center;
            display: block; }
        body footer section > div.section1,
        body footer .section > div.section1 {
          order: 1;
          gap: 50px; }
        body footer section > div.section2,
        body footer .section > div.section2 {
          order: 3; }
        body footer section > div a.break,
        body footer .section > div a.break {
          padding-right: 20px; }
      body footer section h2,
      body footer .section h2 {
        font-size: 24px;
        margin-bottom: 1em;
        font-weight: 400;
        line-height: .8; }
      body footer section p,
      body footer .section p {
        margin-bottom: 30px; }
      body footer section ul a,
      body footer .section ul a {
        text-decoration: underline; }
      body footer section .btn,
      body footer .section .btn {
        padding: 15px 20px;
        line-height: 1;
        font-weight: 400;
        color: white;
        background: #ae0000;
        border-radius: 5px;
        display: inline-block;
        text-align: center;
        text-decoration: none;
        overflow: hidden;
        display: inline-block;
        position: relative;
        color: rgba(255, 255, 255, 0.6);
        background: none;
        border: 3px solid #ae0000; }
        body footer section .btn::before, body footer section .btn::after,
        body footer .section .btn::before,
        body footer .section .btn::after {
          height: 100%;
          position: absolute;
          top: 0;
          left: 0;
          transform: translateX(-100px) skewX(-15deg);
          content: ""; }
        body footer section .btn::before,
        body footer .section .btn::before {
          width: 60px;
          background: rgba(255, 255, 255, 0.5);
          filter: blur(30px);
          opacity: 0.5; }
        body footer section .btn::after,
        body footer .section .btn::after {
          width: 30px;
          left: 30px;
          background: rgba(255, 255, 255, 0.2);
          filter: blur(5px); }
        body footer section .btn:hover,
        body footer .section .btn:hover {
          background-color: #e00000; }
          body footer section .btn:hover::before,
          body footer .section .btn:hover::before {
            opacity: 1; }
          body footer section .btn:hover::before, body footer section .btn:hover::after,
          body footer .section .btn:hover::before,
          body footer .section .btn:hover::after {
            transform: translateX(300px) skewX(-15deg);
            transition: all 0.9s ease; }
        body footer section .btn:hover,
        body footer .section .btn:hover {
          background: rgba(255, 255, 255, 0.05); }
    body footer a {
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none; }
      body footer a:hover {
        color: #7d98a1; }
    body footer .bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.15);
      padding-top: 20px;
      text-align: center;
      max-width: 1700px;
      margin: 0 auto; }
  body p {
    margin-bottom: 50px;
    max-width: 900px; }
  body h2 {
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: 50px; }
  body h3 {
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: 50px;
    font-size: 24px; }
  body ul {
    list-style: none; }
  body .btn {
    padding: 15px 20px;
    line-height: 1;
    font-weight: 400;
    color: white;
    background: #ae0000;
    border-radius: 5px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    display: inline-block;
    position: relative; }
    body .btn::before, body .btn::after {
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      transform: translateX(-100px) skewX(-15deg);
      content: ""; }
    body .btn::before {
      width: 60px;
      background: rgba(255, 255, 255, 0.5);
      filter: blur(30px);
      opacity: 0.5; }
    body .btn::after {
      width: 30px;
      left: 30px;
      background: rgba(255, 255, 255, 0.2);
      filter: blur(5px); }
    body .btn:hover {
      background-color: #e00000; }
      body .btn:hover::before {
        opacity: 1; }
      body .btn:hover::before, body .btn:hover::after {
        transform: translateX(300px) skewX(-15deg);
        transition: all 0.9s ease; }
  body .btn2 {
    padding: 15px 20px;
    line-height: 1;
    font-weight: 400;
    color: white;
    background: #ae0000;
    border-radius: 5px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    display: inline-block;
    position: relative;
    padding: 15px 20px;
    line-height: 1;
    font-weight: 400;
    color: white;
    background: #ae0000;
    border-radius: 5px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    display: inline-block;
    position: relative;
    color: rgba(255, 255, 255, 0.6);
    background: none;
    border: 3px solid #ae0000; }
    body .btn2::before, body .btn2::after {
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      transform: translateX(-100px) skewX(-15deg);
      content: ""; }
    body .btn2::before {
      width: 60px;
      background: rgba(255, 255, 255, 0.5);
      filter: blur(30px);
      opacity: 0.5; }
    body .btn2::after {
      width: 30px;
      left: 30px;
      background: rgba(255, 255, 255, 0.2);
      filter: blur(5px); }
    body .btn2:hover {
      background-color: #e00000; }
      body .btn2:hover::before {
        opacity: 1; }
      body .btn2:hover::before, body .btn2:hover::after {
        transform: translateX(300px) skewX(-15deg);
        transition: all 0.9s ease; }
    body .btn2::before, body .btn2::after {
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      transform: translateX(-100px) skewX(-15deg);
      content: ""; }
    body .btn2::before {
      width: 60px;
      background: rgba(255, 255, 255, 0.5);
      filter: blur(30px);
      opacity: 0.5; }
    body .btn2::after {
      width: 30px;
      left: 30px;
      background: rgba(255, 255, 255, 0.2);
      filter: blur(5px); }
    body .btn2:hover {
      background-color: #e00000; }
      body .btn2:hover::before {
        opacity: 1; }
      body .btn2:hover::before, body .btn2:hover::after {
        transform: translateX(300px) skewX(-15deg);
        transition: all 0.9s ease; }
    body .btn2:hover {
      background: rgba(255, 255, 255, 0.05); }
  body a {
    color: #ae0000; }
  body a,
  body .btn {
    transition: .2s all ease-in-out; }
  body .fa-brands {
    font-size: 30px; }
  body sup {
    font-size: .75em; }
  body strong {
    font-weight: 600;
    opacity: .75; }
  body form fieldset {
    border: 1px solid rgba(33, 33, 33, 0.25);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0; }
    body form fieldset legend {
      font-size: 24px;
      font-weight: bold;
      margin: 0;
      padding: 0 10px; }
  body form label {
    display: block;
    margin-bottom: 2px; }
  body form input,
  body form textarea,
  body form select {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    font-family: "trade-gothic-next", sans-serif;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.55);
    color: #212121;
    font-weight: 300; }
    body form input:focus,
    body form textarea:focus,
    body form select:focus {
      outline: 2px solid white; }
    body form input.btn,
    body form textarea.btn,
    body form select.btn {
      background: #212121;
      color: white;
      border: none;
      margin: 35px 0 0 0;
      padding: 20px; }
      body form input.btn:hover,
      body form textarea.btn:hover,
      body form select.btn:hover {
        background: #212121;
        opacity: .75; }
    body form input option,
    body form textarea option,
    body form select option {
      width: 100%; }
  body form select {
    font-weight: 400; }
  body form input[type="radio"] + label {
    margin-right: 20px; }
  body form input[type="radio"],
  body form input[type="checkbox"] {
    width: auto; }
    body form input[type="radio"]:focus,
    body form input[type="checkbox"]:focus {
      outline: none; }
  body form .form-group.rc {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; }
    body form .form-group.rc:not(.full) div {
      width: calc(25% - 8px);
      white-space: nowrap; }
    body form .form-group.rc label {
      display: inline;
      margin-left: 3px; }
  body form .status-msg {
    background: #ae0000;
    color: white;
    padding: 10px;
    margin-bottom: 25px;
    font-weight: bold; }
    body form .status-msg.success {
      background: #0f607b; }
    body form .status-msg p {
      margin-bottom: 0; }
  body form .status-box .bottom-cap-error {
    margin-bottom: 0;
    opacity: 0; }
    body form .status-box .bottom-cap-error p {
      margin: 0;
      background: #e00000;
      color: white;
      padding: 0 10px;
      font-weight: bold; }
  body form .h-captcha {
    margin-top: 0; }
  body .bgModal {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    justify-content: center;
    align-items: center;
    z-index: 999;
    overflow-y: auto;
    padding-top: 40px;
    padding-bottom: 40px;
    transition: .3s all ease-in-out; }
    body .bgModal.open-fade .modalContainer {
      animation: fadeInDown;
      animation-duration: .6s; }
  body .modalContainer {
    width: 650px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    transition: .3s all ease-in-out; }
    body .modalContainer.wide {
      width: 850px; }
  body .modalHeader {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    line-height: 1.25; }
    body .modalHeader p {
      font-size: 24px;
      margin-bottom: 0;
      font-weight: 600; }
      body .modalHeader p span {
        font-size: 18px;
        display: block;
        font-weight: normal;
        font-style: italic; }
  body .modalContent {
    padding-top: 20px; }
    body .modalContent p {
      line-height: 1.5; }
    body .modalContent p:last-child {
      margin-bottom: 0; }
    body .modalContent iframe {
      border: 0px none;
      min-height: 550px;
      width: 100%; }
  body .closeModal {
    border: none;
    cursor: pointer;
    transition: .3s all ease-in-out;
    background: none;
    position: relative;
    top: -15px;
    font-weight: bold;
    font-size: 30px;
    color: #212121;
    margin-left: 20px; }
    body .closeModal img {
      width: 48px;
      height: auto; }
    body .closeModal:hover {
      opacity: .75; }
  body .hidden {
    display: none; }
  body .nowrap {
    white-space: nowrap; }
  body .break {
    overflow-wrap: break-word;
    display: inline-block;
    line-height: 1; }
  body.home {
    background-position-y: 520px; }
    body.home header .content {
      padding-top: 50px;
      padding-bottom: 25px; }
      body.home header .content .logo img {
        width: auto; }
      body.home header .content .contact-sales {
        font-size: 24px; }
        body.home header .content .contact-sales a {
          font-size: 36px; }
    body.home .hero {
      background: #212121 url("../images/hero/hero-min.jpg") center 0/cover no-repeat;
      height: 750px;
      padding-top: 180px; }
      body.home .hero:after {
        content: '';
        position: absolute;
        top: -10px;
        left: 0;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color: white;
        box-shadow: 0 0 60px 30px white, 0 0 100px 60px #7d98a1, 0 0 140px 90px #00d4ff;
        animation: flow 2s ease-in-out forwards; }
      body.home .hero:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        animation: pulse 2s forwards; }
      body.home .hero .hero-content {
        text-align: center;
        margin: 0 auto;
        width: 100%;
        max-width: 900px; }
        body.home .hero .hero-content h1 {
          text-shadow: 0 0 5px #011921, 0 0 10px #011921, 0 0 20px #011921, 0 0 40px #011921, 0 0 80px #011921;
          animation: glow 2s forwards ease-in-out;
          margin-bottom: 25px; }
    body.home .main-content section.intro,
    body.home .main-content .section.intro {
      max-width: 1500px;
      margin: 50px auto;
      position: relative; }
      body.home .main-content section.intro .container,
      body.home .main-content .section.intro .container {
        max-width: 100%; }
        body.home .main-content section.intro .container img,
        body.home .main-content .section.intro .container img {
          position: absolute;
          bottom: -50px;
          left: 800px;
          width: 750px; }
    body.home .main-content section .container,
    body.home .main-content .section .container {
      margin: auto;
      max-width: 900px; }
      body.home .main-content section .container .content,
      body.home .main-content .section .container .content {
        max-width: 900px; }
        body.home .main-content section .container .content ul li,
        body.home .main-content .section .container .content ul li {
          background: url("../images/bullet.png") no-repeat 0 center;
          padding-left: 70px;
          margin-bottom: 40px; }
  body.spaceguard .hero {
    background-image: url("../images/hero/hero-spaceguard-min.jpg"); }
    body.spaceguard .hero:before {
      content: '';
      position: absolute;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.35); }
  body.about .hero {
    background-image: url("../images/hero/hero-about-min.jpg");
    background-position-y: calc(100% + 150px); }
    body.about .hero:before {
      content: '';
      position: absolute;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.35); }
  body.request-quote .hero {
    background-image: url("../images/hero/hero-quote-min.jpg");
    background-position-y: calc(100% + 50px); }
    body.request-quote .hero:before {
      content: '';
      position: absolute;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.35); }
  body.error .main-content section.intro {
    margin-bottom: 50px; }

@media screen and (max-width: 1600px) {
  body header .content {
    justify-content: space-between; }
    body header .content > div {
      width: auto; }
    body header .content .contact-sales {
      text-align: center; }
    body header .content nav {
      order: 3;
      width: auto; }
      body header .content nav ul {
        display: none; }
      body header .content nav .mobile-menu {
        display: inline-block;
        cursor: pointer; }
        body header .content nav .mobile-menu div {
          border-radius: 50px;
          width: 30px;
          height: 4px;
          margin: 6px 0;
          background: #011921; } }
@media screen and (max-width: 1500px) {
  body header .hero .hero-content h1 {
    font-size: 48px; }
  body.home header .hero .hero-content h1 {
    font-size: 72px; } }
@media screen and (max-width: 1400px) {
  body header .content {
    padding-left: 40px;
    padding-right: 40px; }
  body header .hero {
    background-position-x: 0;
    background-position-y: 52%;
    background-size: 100%; }
  body .main-content section .container.full-width > div .content {
    width: calc(50% - 50px); }
  body.home .hero {
    background-position-x: center;
    background-position-y: 0;
    background-size: cover; }
  body.home .main-content section.intro .container .content {
    max-width: 600px; }
  body.home .main-content section.intro .container img {
    left: 600px; }
  body footer {
    padding-left: 40px;
    padding-right: 40px; } }
@media screen and (max-width: 1300px) {
  body.about .hero {
    background-position-y: 100%; } }
@media screen and (max-width: 1200px) {
  body .hero {
    background-position-x: 100%; }
    body .hero header {
      padding: 2em 40px 125px; }
      body .hero header .nav-con {
        justify-content: space-between; }
        body .hero header .nav-con .logo img {
          width: 150px;
          height: auto; }
        body .hero header .nav-con nav .mobile-menu {
          display: block; }
        body .hero header .nav-con nav > ul li a {
          border-radius: 0;
          padding-top: 20px;
          padding-bottom: 20px;
          font-weight: 500;
          font-size: 24px; }
        body .hero header .nav-con nav > ul li.sub-nav {
          overflow: visible; }
          body .hero header .nav-con nav > ul li.sub-nav > a {
            background: rgba(125, 152, 161, 0.1); }
          body .hero header .nav-con nav > ul li.sub-nav:hover * > a {
            border-radius: 0;
            color: #7d98a1; }
          body .hero header .nav-con nav > ul li.sub-nav ul {
            height: auto;
            position: relative;
            display: block;
            background: rgba(125, 152, 161, 0.1);
            opacity: 1;
            left: 0;
            border-radius: 0; }
            body .hero header .nav-con nav > ul li.sub-nav ul li {
              opacity: 1; }
              body .hero header .nav-con nav > ul li.sub-nav ul li a {
                color: #7d98a1;
                font-weight: 400;
                font-size: 18px; }
                body .hero header .nav-con nav > ul li.sub-nav ul li a:hover {
                  color: #7d98a1; }
              body .hero header .nav-con nav > ul li.sub-nav ul li:first-child {
                margin-top: 0; }
              body .hero header .nav-con nav > ul li.sub-nav ul li:last-child {
                margin-bottom: 0; }
          body .hero header .nav-con nav > ul li.sub-nav a {
            border-radius: 0; }
        body .hero header .nav-con nav ul {
          display: none;
          background: none; }
        body .hero header .nav-con .cta {
          position: absolute;
          width: 100%;
          left: 0;
          bottom: 0;
          background: rgba(0, 0, 0, 0.75);
          text-align: center;
          padding: 5px 15px 2px; }
          body .hero header .nav-con .cta a {
            margin: 0; } }
@media screen and (max-width: 1100px) {
  body .main-content section.intro .container .content {
    max-width: 100%; }
  body footer section {
    gap: 50px; }
    body footer section > div {
      width: calc(50% - 25px); }
      body footer section > div.logo {
        margin: 0 auto;
        width: 100%;
        order: 1; }
        body footer section > div.logo > a:first-child::after {
          width: 100%;
          margin-left: 0; }
  body.home .main-content section.intro .container .content {
    max-width: 100%; }
  body.home .main-content section.intro .container img {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 75%;
    left: 0; } }
@media screen and (max-width: 1000px) {
  body header .hero .hero-content {
    max-width: 700px; }
    body header .hero .hero-content h1 {
      font-size: 36px; }
    body header .hero .hero-content p {
      font-size: 18px; }
  body .banner .logos {
    margin-left: 25px;
    margin-right: 25px; }
  body h2 {
    font-size: 24px; }
  body h3 {
    font-size: 18px; }
  body h4 {
    font-weight: 600; }
  body footer {
    padding-left: 15px;
    padding-right: 15px; }
  body.home header .hero {
    height: auto;
    padding: 100px 15px; }
    body.home header .hero .hero-content h1 {
      font-size: 48px; }
  body.request-quote .hero {
    background-position-y: 100%; } }
@media screen and (max-width: 900px) {
  body .main-content section,
  body .main-content .section {
    margin-top: 60px;
    margin-bottom: 60px; }
    body .main-content section .container.full-width h2,
    body .main-content .section .container.full-width h2 {
      text-align: left;
      padding: 0 60px; }
    body .main-content section .container.full-width > div .content,
    body .main-content .section .container.full-width > div .content {
      width: 100%; }
  body #contact-form .container {
    background-position: center 500px;
    background-size: 100%;
    padding-bottom: 400px; }
    body #contact-form .container .form {
      width: 100%;
      border-radius: 10px 10px 0 0; } }
@media screen and (max-width: 800px) {
  body header .hero {
    background-size: 150%; }
    body header .hero.offset .hero-content {
      width: 100%;
      max-width: 100%;
      text-align: center; }
    body header .hero .hero-content {
      width: 100%; }
  body header .content {
    padding: 25px 15px; }
    body header .content .logo img {
      width: 150px;
      height: auto; }
    body header .content .contact-sales {
      font-size: 18px; }
      body header .content .contact-sales a {
        font-size: 24px; }
  body .main-content section.intro .container .content {
    padding: 25px 20px; }
  body .main-content section .container.full-width h2 {
    padding: 0 20px; }
  body .main-content section .container.full-width > div .content {
    display: block;
    padding: 50px 20px; }
    body .main-content section .container.full-width > div .content > div.mfr-img img {
      margin-left: -20px; }
  body footer {
    padding-top: 25px;
    background-size: 150%;
    padding-bottom: 40%; }
  body #contact-form {
    padding-top: 25px; }
    body #contact-form .container {
      margin-bottom: 50px; }
      body #contact-form .container .form {
        padding-left: 20px;
        padding-right: 20px; }
  body form .form-group.rc:not(.full) div {
    width: calc((100% / 3) - 7px); }
  body.home .hero {
    padding-top: 50px;
    padding-bottom: 50px; } }
@media screen and (max-width: 700px) {
  body .banner .logos {
    flex-wrap: wrap;
    justify-content: start;
    margin: 0; }
    body .banner .logos a {
      width: calc(50% - 25px);
      text-align: center; }
      body .banner .logos a img {
        width: auto;
        max-width: 100%; }
  body #contact-form .container {
    background-position: center 700px; } }
@media screen and (max-width: 600px) {
  body header .hero {
    background-position: center;
    background-size: cover;
    padding-top: 50px;
    padding-bottom: 50px; }
    body header .hero:before {
      content: '';
      position: absolute;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5); }
    body header .hero .hero-content {
      max-width: 100%; }
      body header .hero .hero-content h1 {
        font-size: 36px; }
  body #contact-form .container form input {
    padding: 10px; }
    body #contact-form .container form input.btn {
      padding: 15px; }
  body footer section > div {
    width: 100%;
    min-width: auto; }
    body footer section > div.logo {
      width: auto; }
      body footer section > div.logo > a:first-child img {
        width: 150px; }
      body footer section > div.logo > a:first-child::after {
        width: calc(100% + 20px);
        margin-left: -10px; }
      body footer section > div.logo img {
        width: 100px;
        height: auto; }
    body footer section > div.section1 div, body footer section > div.section2 div {
      width: 100%;
      text-align: center; }
  body footer section h2 {
    margin-bottom: .5em; }
  body form .form-group.rc:not(.full) div {
    width: calc(50% - 5px); }
  body.home header .hero .hero-content h1 {
    font-size: 36px; }
  body.home header .content {
    padding-top: 25px; }
    body.home header .content .logo img {
      width: 150px;
      height: auto; }
    body.home header .content .contact-sales {
      font-size: 18px; }
      body.home header .content .contact-sales a {
        font-size: 24px; } }
@media screen and (max-width: 500px) {
  body header .content {
    padding-top: 10px;
    padding-bottom: 10px; }
    body header .content nav {
      text-align: center;
      margin-top: 10px;
      width: 100%; }
      body header .content nav .mobile-menu {
        display: inline-block; }
        body header .content nav .mobile-menu div {
          width: 20px;
          height: 2px;
          margin: 4px; }
      body header .content nav.mobile-show .mobile-menu div:nth-child(1) {
        transform: translateY(0px) rotate(45deg); }
      body header .content nav.mobile-show .mobile-menu div:nth-child(2) {
        opacity: 0; }
      body header .content nav.mobile-show .mobile-menu div:nth-child(3) {
        transform: translateY(-12px) rotate(-45deg); }
  body .banner .logos {
    gap: 25px; }
    body .banner .logos a {
      width: calc(50% - 15px); }
  body.home header .content {
    padding-top: 10px;
    padding-bottom: 10px; } }
@media screen and (max-width: 400px) {
  body #contact-form .container {
    background-position: center 800px; }
    body #contact-form .container form .h-captcha {
      background: none;
      padding: 0; }
  body form fieldset {
    border-top: 0;
    border-width: 0 0 1px;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0; }
    body form fieldset legend {
      padding: 0; }
  body form .form-group.rc:not(.full) div {
    width: 100%;
    white-space: nowrap; } }
@media (max-height: 850px) {
  body.home .hero {
    height: auto; } }
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -195%, 0);
    transform: translate3d(0, -195%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

/*@keyframes slideUp {
	0% {
	  bottom: -50%; }
	50% {
	  right: -50%; }
	100% {
	  right: 0; }
}*/
@keyframes flow {
  0% {
    margin-left: -200px; }
  100% {
    margin-left: calc(100% + 200px); } }
@keyframes glow {
  0% {
    text-shadow: 0 0 5px #ae0000, 0 0 10px #ae0000, 0 0 20px #ae0000 0 40px #ae0000 0 80px #ae0000; }
  50% {
    text-shadow: 0 0 10px #00d4ff, 0 0 20px #00d4ff, 0 0 40px #00d4ff, 0 0 80px #00d4ff, 0 0 160px #00d4ff; }
  100% {
    text-shadow: 0 0 5px #011921, 0 0 10px #011921, 0 0 20px #011921, 0 0 40px #011921, 0 0 80px #011921; } }
@keyframes pulse {
  0% {
    background: #011921; }
  100% {
    background: rgba(1, 25, 33, 0); } }
@supports (-webkit-touch-callout: none) {
  body.home .hero,
  body .hero,
  body .section.banner {
    background-attachment: scroll; } }
