@font-face {
  font-family: 'ProductSans';
  font-weight: 400;
  src: url("/static/fonts/ProductSans-Regular.ttf?e71723413600");
}
@font-face {
  font-family: 'LyonDisplayWeb';
  font-weight: 400;
  src: url("/static/fonts/LyonDisplay-Regular.ttf?e71723413600");
}
@font-face {
  font-family: 'LyonDisplayWeb';
  font-weight: 500;
  src: url("/static/fonts/LyonDisplay-Bold.ttf?e71723413600");
}
@font-face {
  font-family: 'Roboto';
  font-weight: 400;
  src: url("/static/fonts/Roboto-Regular.ttf?e71723413600");
}
@font-face {
  font-family: 'Roboto';
  font-weight: 500;
  src: url("/static/fonts/Roboto-Bold.ttf?e71723413600");
}
/******************************
 * BASE
 *****************************/
html,
body {
  height: 100%;
}
body {
  background: #1d2634;
  font-family: Roboto;
  line-height: 1em;
  -webkit-font-smoothing: antialiased;
}
/******************************
 * TYPOGRAPHY
 *****************************/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin: 0;
  padding: 0;
}
h1 {
  color: #ffffff;
  font-family: 'LyonDisplayWeb';
  font-size: 48px;
}
h1.dark {
  color: #000000;
}
h2 {
  color: #ffffff;
  font-family: 'LyonDisplayWeb';
  font-size: 32px;
}
h2.dark {
  color: #000000;
}
h3 {
  color: rgba(255, 255, 255, 0.8);
  font-family: Roboto;
  font-size: 21px;
}
h3.dark {
  color: rgba(0, 0, 0, 0.8);
}
h4 {
  color: rgba(255, 255, 255, 0.8);
  font-family: Roboto;
  font-size: 18px;
}
h4.dark {
  color: rgba(0, 0, 0, 0.8);
}
h6 {
  color: rgba(255, 255, 255, 0.5);
  font-family: Roboto;
  font-size: 12px;
  font-weight: 500;
}
h6.dark {
  color: rgba(0, 0, 0, 0.5);
}
.typography--bold {
  font-weight: 500;
}
/******************************
 * PAGES
 *****************************/
.page {
  width: 1200px;
  margin: auto;
  margin-top: 60px;
}
@media only screen and (max-width : 1199px) {
  .page {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }
}
.page__header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 100px 0;
  position: relative;
}
.page__header h6 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.page__header h1 {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}
@media only screen and (max-width : 767px) {
  .page__header .page__header__title {
    position: relative;
    top: 0;
  }
  .page__header .page__header__image {
    display: none;
  }
}
.page__header--product .page__header__title {
  margin-top: 16px;
}
.page__header--company .page__header__image {
  margin-top: 24px;
  width: 100%;
}
.page__header__title {
  position: absolute;
  top: 100px;
  left: 0;
}
@media only screen and (max-width : 991px) {
  .page__header__title h1 {
    font-size: 36px;
  }
}
@media only screen and (max-width : 767px) {
  .page__header__title h1 {
    font-size: 28px;
  }
}
.page__body {
  padding: 100px 0;
}
/******************************
 * MIXINS
 ******************************/
.responsive-resize-mixin {
  width: 1200px;
  margin: auto;
}
@media only screen and (max-width : 1199px) {
  .responsive-resize-mixin {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }
}
/******************************
 * NAVBAR
 ******************************/
.navbar {
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  color: rgba(0, 0, 0, 0.8);
  height: 60px;
  left: 0;
  margin-bottom: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  -webkit-transition: background-color 0.3s color 0.3s, ease-in-out;
  -moz-transition: background-color 0.3s color 0.3s, ease-in-out;
  -o-transition: background-color 0.3s color 0.3s, ease-in-out;
  transition: background-color 0.3s, color 0.3s ease-in-out;
}
.navbar.navbar--scrolled {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.navbar.navbar--scrolled .navbar__logo span {
  color: rgba(0, 0, 0, 0.8);
}
.navbar.navbar--scrolled .navbar__logo:before {
  background-image: url("/static/images/zx-logo-light-true.png?5bed405acfca");
}
.navbar.navbar--scrolled .navbar__links li:last-child {
  border-left: 1px solid rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width : 767px) {
  .navbar.navbar--scrolled .navbar__links li:last-child {
    border: 1px solid rgba(0, 0, 0, 0.3);
  }
}
.navbar.navbar--scrolled .navbar__links a {
  color: rgba(0, 0, 0, 0.5);
}
.navbar.navbar--scrolled .navbar__links a:hover,
.navbar.navbar--scrolled .navbar__links a:focus {
  color: rgba(0, 0, 0, 0.8);
}
.navbar.navbar--scrolled .navbar__links a:active,
.navbar.navbar--scrolled .navbar__links a.active {
  color: rgba(29, 202, 127, 0.8);
}
@media only screen and (max-width : 767px) {
  .navbar {
    height: 120px;
  }
}
.navbar__logo {
  display: inline-block;
  float: left;
  padding: 20px 32px;
  height: 20px;
}
.navbar__logo span {
  bottom: 2px;
  color: #ffffff;
  font-family: 'ProductSans';
  font-size: 20px;
  position: relative;
}
.navbar__logo:focus,
.navbar__logo:hover {
  text-decoration: none;
}
.navbar__logo:before {
  content: '';
  display: inline-block;
  background-image: url("/static/images/zx-logo-dark-true.png?5bed405acfca");
  background-size: 20px 20px;
  height: 20px;
  margin-right: 8px;
  width: 20px;
}
@media only screen and (max-width : 767px) {
  .navbar__logo {
    padding-left: 16px;
    display: block;
  }
}
.navbar__links {
  display: inline-block;
  float: right;
  height: 100%;
  line-height: 60px;
  list-style: none;
  padding-right: 32px;
}
@media only screen and (max-width : 767px) {
  .navbar__links {
    clear: both;
    display: block;
    float: left;
    padding-left: 16px;
    padding-right: 0;
  }
}
.navbar__links li {
  display: inline-block;
  height: 100%;
  margin-left: 32px;
}
.navbar__links li:first-child {
  margin-left: 0;
}
.navbar__links li:last-child {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 32px;
}
@media only screen and (max-width : 767px) {
  .navbar__links li:last-child {
    position: absolute;
    top: 16px;
    right: 16px;
    border-left: none;
    padding-left: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    height: 32px;
    line-height: 32px;
    padding: 0 8px;
  }
}
@media only screen and (max-width : 767px) {
  .navbar__links li {
    margin-left: 16px;
  }
}
.navbar__links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-decoration: none;
  text-transform: uppercase;
}
.navbar__links a:hover,
.navbar__links a:focus {
  color: #ffffff;
}
.navbar__links a:active,
.navbar__links a.active {
  color: rgba(29, 202, 127, 0.8);
}
/******************************
 * FOOTER
 ******************************/
.footer {
  background-color: #0c0f13;
  color: rgba(0, 0, 0, 0.3);
  width: 100%;
  padding: 32px 0;
}
@media only screen and (max-width : 767px) {
  .footer {
    padding: 40px 0;
  }
}
.footer__wrapper {
  width: 1200px;
  margin: auto;
}
@media only screen and (max-width : 1199px) {
  .footer__wrapper {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }
}
.footer__logo {
  display: inline-block;
  margin-right: 64px;
  vertical-align: top;
}
.footer__logo img {
  height: 20px;
  width: 20px;
}
@media only screen and (max-width : 767px) {
  .footer__logo {
    padding-bottom: 40px;
    width: 100%;
    margin-right: 0;
  }
  .footer__logo img {
    display: block;
    margin: auto;
  }
}
.footer__content {
  display: inline-block;
  width: calc(100% - 84px);
}
.footer__content > div:not(:last-child) {
  margin-bottom: 32px;
}
.footer__content a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
@media only screen and (max-width : 767px) {
  .footer__content {
    width: 100%;
  }
}
.footer__header {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}
.footer__header a:not(:last-child) {
  margin-right: 32px;
}
@media only screen and (max-width : 767px) {
  .footer__header a:not(:last-child) {
    display: block;
    margin-bottom: 32px;
  }
}
.footer__body {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}
.footer__copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}
/******************************
 * HOME
 ******************************/
.homepage__hero {
  background: url("/static/images/homepage-hero.png?e71723413600") no-repeat center center;
  height: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
@media only screen and (max-width : 767px) {
  .homepage__hero {
    position: absolute;
    top: 0;
    width: 100%;
    min-height: 772px;
  }
}
.homepage__content {
  position: absolute;
  top: 60px;
  width: calc(100% - 240px);
  height: calc(100% - 180px);
  margin: 60px 120px;
}
@media only screen and (max-width : 767px) {
  .homepage__content {
    height: auto;
    margin: 60px 0 120px 16px;
    position: relative;
    width: calc(100% - 16px);
    top: 120px;
  }
}
.homepage__content__section {
  width: 100%;
}
.homepage__content__section-1 {
  border-left: 8px solid #1dca7f;
  border-right: 8px solid #1dca7f;
  border-top: 8px solid #1dca7f;
  height: 120px;
}
@media only screen and (max-width : 767px) {
  .homepage__content__section-1 {
    border-right: none;
  }
}
.homepage__content__section-2 {
  border-right: 8px solid #1dca7f;
  padding: 20px 0;
  height: 220px;
}
@media only screen and (max-width : 767px) {
  .homepage__content__section-2 {
    border-left: 8px solid #1dca7f;
    border-right: none;
    height: auto;
    padding: 0 32px;
  }
}
.homepage__content__section-3 {
  border-left: 8px solid #1dca7f;
  border-right: 8px solid #1dca7f;
  /*
   * 120px .homepage__content__section-1 height
   * 220px .homepage__content__section-2 height
   * 100px .homepage__content__section-3 height
   */
  height: calc(100% - 440px);
}
@media only screen and (max-width : 991px) {
  .homepage__content__section-3 {
    /*
     * 120px .homepage__content__section-1 height
     * 220px .homepage__content__section-2 height
     * 140px .homepage__content__section-3 height
     */
    height: calc(100% - 480px);
  }
}
@media only screen and (max-width : 767px) {
  .homepage__content__section-3 {
    border-bottom: 8px solid #1dca7f;
    border-right: none;
    height: 120px;
    margin-bottom: 60px;
  }
}
.homepage__content__section-4 {
  border-bottom: 8px solid #1dca7f;
  border-left: 8px solid #1dca7f;
  border-right: 8px solid #1dca7f;
  height: 100px;
}
@media only screen and (max-width : 991px) {
  .homepage__content__section-4 {
    height: 140px;
  }
}
@media only screen and (max-width : 767px) {
  .homepage__content__section-4 {
    background-color: #1d2634;
    border-bottom: none;
    border-left: none;
    border-right: none;
    height: auto;
    padding: 24px 0;
    position: relative;
    right: 16px;
    width: calc(100% + 16px);
  }
}
.homepage__title-container {
  right: 43px;
  position: relative;
  width: 410px;
}
.homepage__title-container h3 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.5;
  margin-top: 16px;
}
@media only screen and (max-width : 767px) {
  .homepage__title-container {
    left: 0;
    position: relative;
    top: 0;
    width: 100%;
  }
  .homepage__title-container h1 {
    word-spacing: 410px;
  }
}
.homepage__qualities-section {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  width: 100%;
}
.homepage__qualities-section > div {
  display: inline-block;
  height: 100%;
  overflow: hidden;
  padding: 16px;
  vertical-align: top;
  width: 20%;
}
.homepage__qualities-section > div h6 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  letter-spacing: 0.8px;
  padding-bottom: 16px;
  text-transform: uppercase;
}
.homepage__qualities-section > div span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}
.homepage__qualities-section > div:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
@media only screen and (max-width : 767px) {
  .homepage__qualities-section {
    border-top: none;
    height: auto;
  }
  .homepage__qualities-section > div {
    display: block;
    height: auto;
    margin: 0 16px;
    padding: 16px 0;
    width: calc(100% - 16px);
  }
  .homepage__qualities-section > div:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-right: none;
  }
}
/******************************
 * PRODUCT PAGE
 ******************************/
.product-page__section {
  position: relative;
}
.product-page__section h6 {
  color: #1dca7f;
  font-size: 24px;
}
.product-page__section h6 span {
  position: relative;
  top: -8px;
}
.product-page__section p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  line-height: 1.5;
  max-width: 440px;
  margin-left: 64px;
  padding-top: 16px;
}
.product-page__section img {
  position: absolute;
  top: 16px;
  max-width: 100%;
}
.product-page__section:not(:last-child) {
  margin-bottom: 100px;
}
@media only screen and (max-width : 767px) {
  .product-page__section .product-page__section__text {
    padding-top: 16px;
  }
  .product-page__section img {
    position: relative;
    top: 0;
  }
}
.product-page__section--text-left {
  height: 410px;
}
.product-page__section--text-left img {
  right: 0;
  top: 10px;
}
@media only screen and (max-width : 767px) {
  .product-page__section--text-left {
    height: auto;
  }
  .product-page__section--text-left img {
    top: 0;
  }
}
.product-page__section--text-right {
  height: 435px;
}
.product-page__section--text-right .product-page__section__text {
  float: right;
}
.product-page__section--text-right img {
  top: 40px;
}
@media only screen and (max-width : 767px) {
  .product-page__section--text-right {
    height: auto;
  }
  .product-page__section--text-right .product-page__section__text {
    float: initial;
  }
  .product-page__section--text-right img {
    top: 0;
  }
}
/******************************
 * COMPANY PAGE
 ******************************/
.company-page__card {
  display: inline-block;
  margin-bottom: 32px;
  position: relative;
  width: calc((100% / 3) - 24px);
}
.company-page__card img {
  height: 100%;
  width: 100%;
}
.company-page__card:not(:nth-of-type(3n)) {
  margin-right: 32px;
}
@media only screen and (max-width : 767px) {
  .company-page__card {
    width: 100%;
    margin-right: 0;
  }
}
.company-page__card:after {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.company-page__card__title {
  bottom: 16px;
  left: 16px;
  position: absolute;
  z-index: 1;
}
.company-page__card__title h6 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  margin-bottom: 8px;
}
.company-page__card__title h4 {
  color: #ffffff;
  font-family: 'LyonDisplayWeb';
  font-size: 18px;
  font-weight: 500;
}
.company-page__quote-block {
  border: 4px solid #1dca7f;
  display: inline-block;
  margin-bottom: 32px;
  position: relative;
  width: calc(100% - 8px);
}
.company-page__quote-block img {
  display: inline-block;
  width: calc((100% / 3) - 24px);
}
.company-page__quote-block img.right {
  float: right;
}
.company-page__quote-block .company-page__quote-block__text {
  display: inline-block;
  width: calc((100% * 2 / 3) + 24px);
}
@media only screen and (max-width : 767px) {
  .company-page__quote-block img {
    width: 100%;
  }
  .company-page__quote-block .company-page__quote-block__text {
    width: 100%;
  }
}
.company-page__quote-block__text {
  line-height: 1.4;
  padding: 12px 16px;
  vertical-align: top;
}
.company-page__quote-block__text .quote {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}
.company-page__quote-block__text .title {
  bottom: 12px;
  position: absolute;
}
.company-page__quote-block__text .title h6 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 8px;
}
.company-page__quote-block__text .title h4 {
  color: #ffffff;
  font-family: 'LyonDisplayWeb';
  font-size: 18px;
  font-weight: 500;
}
@media only screen and (max-width : 991px) {
  .company-page__quote-block__text .quote {
    font-size: 16px;
  }
}
@media only screen and (max-width: 856px) {
  .company-page__quote-block__text .quote.long {
    font-size: 14px;
  }
}
@media only screen and (max-width : 767px) {
  .company-page__quote-block__text .quote {
    font-size: 18px;
  }
  .company-page__quote-block__text .quote.long {
    font-size: 16px;
  }
  .company-page__quote-block__text .title {
    bottom: 0;
    padding-top: 16px;
    position: relative;
  }
}
/*****************
 * MODALS
 *****************/
.modal-close {
  position: absolute;
  padding: 9px;
  top: 16px;
  right: 16px;
  background-color: rgba(0, 0, 0, 0.1);
}
.modal-close:hover,
.modal-close:active,
.modal-close:focus {
  background-color: rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.modal-content {
  border-radius: 0;
  padding: 16px;
}
.modal-content h4 {
  margin: 32px 0 16px 0;
}
.modal-content p {
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.5;
  margin-bottom: 8px;
}
.modal-content a {
  color: rgba(29, 202, 127, 0.8);
}
.modal-content.contact-modal {
  width: 400px;
  margin: 0 auto;
}
@media only screen and (max-width : 767px) {
  .modal-content.contact-modal {
    max-width: 400px;
    width: 100%;
  }
}
/********** FANCY INPUTS **********/
.input-group {
  margin-bottom: 16px;
  width: 100%;
}
.input-group.required.error input,
.input-group.required.error select,
.input-group.required.error textarea {
  border: 1px solid #cd7178;
}
.input-group.required.error label::after {
  color: #cd7178;
  content: 'required';
  float: right;
  font-family: Roboto;
  font-size: 11px;
  text-transform: uppercase;
}
label {
  color: rgba(0, 0, 0, 0.5);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  width: 100%;
}
label::after {
  content: '';
}
input,
select,
textarea {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 2px;
  width: 100%;
}
input,
select {
  height: 32px;
  padding: 0 8px;
}
textarea {
  height: 100px;
  padding: 8px;
  resize: none;
}
input[type="submit"] {
  width: auto;
  margin: 0 0 0 auto;
}
/********** BUTTONS **********/
.btn {
  height: 24px;
  padding: 0 8px;
  line-height: 24px;
  border-radius: 2px;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 2px 4px 0 rgba(0, 0, 0, 0.24);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}
.btn-submit {
  background: #1dca7f;
  color: #ffffff;
}
/********** PAGE NOT FOUND **********/
.page-not-found {
  margin: 48px 0;
}
