/*=======================
Variables
=========================*/
/* Fonts */
/* Colors */
/* Box Sizing */
/* Font Smoothing */
/* Transitions */
@keyframes antiClockwiseSpin {
  /* line 129, ../scss/style.scss */
  0% {
    transform: rotate(360deg);
  }

  /* line 130, ../scss/style.scss */
  100% {
    transform: rotate(0deg);
  }
}

@keyframes antiClockwiseSpin {
  /* line 134, ../scss/style.scss */
  0% {
    transform: rotate(360deg);
  }

  /* line 135, ../scss/style.scss */
  100% {
    transform: rotate(0deg);
  }
}

@-webkit-keyframes clockwiseSpin {
  /* line 145, ../scss/style.scss */
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  /* line 146, ../scss/style.scss */
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes clockwiseSpin {
  /* line 149, ../scss/style.scss */
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  /* line 150, ../scss/style.scss */
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Button */
/*=======================
Shared Styles
=========================*/
/* line 219, ../scss/style.scss */
* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  font-family: "ff-enzo-web", Helvetica, Arial, sans-serif;
}

/* line 224, ../scss/style.scss */
html, body {
  height: 100%;
}

/* line 228, ../scss/style.scss */
html {
  overflow-x: hidden;
}

/* line 232, ../scss/style.scss */
body {
  background: white;
  border-top: 9px solid #2b2c30;
  font-size: 1em;
  line-height: 1.5;
  position: relative;
}

/* line 240, ../scss/style.scss */
#page-loader {
  -webkit-transition: all 0.33s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.33s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -ms-transition: all 0.33s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: all 0.33s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.33s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -webkit-transition-delay: .21s;
  /* Safari */
  transition-delay: .21s;
  background: #1b1c20;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  z-index: 999999999999;
}
/* line 251, ../scss/style.scss */
#page-loader.hidden {
  opacity: 0;
  z-index: -1;
}
/* line 255, ../scss/style.scss */
#page-loader .loader-container {
  display: inline-block;
  margin-top: 18%;
  height: 144px;
  width: 144px;
  text-align: center;
}
/* line 261, ../scss/style.scss */
#page-loader .loader-container .loader-outer, #page-loader .loader-container .loader-inner {
  position: absolute;
  height: 144px;
  width: 144px;
}

/* line 269, ../scss/style.scss */
#mobile-nav {
  -webkit-transition: all .15s ease-in;
  -moz-transition: all .15s ease-in;
  -ms-transition: all .15s ease-in;
  -o-transition: all .15s ease-in;
  transition: all .15s ease-in;
  background: #1b1c20;
  box-shadow: 0 0 0 20em rgba(0, 0, 0, 0.33) inset;
  position: fixed;
  border-left: .33em solid transparent;
  bottom: 0;
  display: block !important;
  padding-top: 6em;
  top: 0;
  right: -13.5em;
  width: 13.5em;
  height: 100%;
  z-index: 99999999;
}
/* line 285, ../scss/style.scss */
#mobile-nav .mobile-links a {
  padding: 1em 1.5em;
  font-size: 1.15em;
  color: white;
  cursor: pointer;
  font-weight: 600;
  text-align: right;
  display: block;
  border-bottom: 1px solid #2d2d2d;
}
/* line 299, ../scss/style.scss */
#mobile-nav.expanded {
  right: 0;
}

/* line 304, ../scss/style.scss */
.modal {
  -webkit-transition: all 0.33s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.33s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -ms-transition: all 0.33s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: all 0.33s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.33s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  position: fixed;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  text-align: center;
  z-index: 9999999999999;
  width: 100%;
}
/* line 315, ../scss/style.scss */
.modal.show {
  bottom: 0;
  opacity: 1;
}
/* line 319, ../scss/style.scss */
.modal .overlay {
  background: rgba(0, 0, 0, 0.975);
  position: absolute;
  height: 100%;
  bottom: 100%;
  left: 0;
  right: 0;
  top: 0;
  text-align: center;
  z-index: 999999;
  width: 100%;
}
/* line 331, ../scss/style.scss */
.modal .close {
  color: #dddddd;
  font-size: 1.5em;
  padding: .9em;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 999999999999999;
}
/* line 339, ../scss/style.scss */
.modal .close:hover {
  -webkit-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -ms-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  color: white;
  cursor: pointer;
}
/* line 345, ../scss/style.scss */
.modal .inner-container {
  -webkit-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -ms-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  background: transparent;
  display: inline-block;
  height: 20em;
  margin-top: 13%;
  max-width: 90%;
  padding: 4.5em 1.5em;
  width: 30em;
  z-index: 99999999999;
}

/* line 358, ../scss/style.scss */
h1, h2, h3, h4, h5, h6, header .logo a, nav .links a {
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}

/* line 364, ../scss/style.scss */
p {
  font-feature-settings: "kern", "onum", "liga";
}

/* line 368, ../scss/style.scss */
a {
  color: #277437;
  display: inline-block;
  text-decoration: none;
}
/* line 372, ../scss/style.scss */
a:hover {
  color: #999999;
}
/* line 375, ../scss/style.scss */
a:visited {
  outline: none;
}

/* line 380, ../scss/style.scss */
.button, .submit-button {
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  -webkit-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -ms-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  background: #50ac25;
  border: none;
  border-radius: 1px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "acumin-pro-extra-condensed", Helvetica, Arial, sans-serif;
  font-size: 1.15em;
  font-weight: 300;
  letter-spacing: .05em;
  padding: 0.39em 1em 0.45em;
  text-indent: .05em;
  text-transform: uppercase;
}
/* line 203, ../scss/style.scss */
.button:hover, .submit-button:hover {
  box-shadow: 0 0 2em 0 rgba(255, 255, 255, 0.33) inset;
  color: white !important;
  cursor: pointer;
}

/* line 384, ../scss/style.scss */
img {
  display: inline-block;
  height: auto;
  width: 100%;
}

/* line 390, ../scss/style.scss */
.row {
  height: 100%;
  max-width: 94%;
  position: relative;
  width: 75em;
}
/* line 395, ../scss/style.scss */
.row .row {
  margin: 0;
}

/* HEADER */
/* line 403, ../scss/style.scss */
header {
  -webkit-transition: background 0.045s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: background 0.045s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -ms-transition: background 0.045s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: background 0.045s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: background 0.045s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  background: rgba(255, 255, 255, 0.96);
  background: none;
  box-shadow: 0 0.27em 0 0 rgba(0, 0, 0, 0.05);
  box-shadow: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 7.05em;
  padding-top: 1em;
  z-index: 999999999;
}
/* line 416, ../scss/style.scss */
header .row {
  width: 66em;
}
/* line 419, ../scss/style.scss */
header .logo {
  float: left;
  margin-top: 1.6em;
}
/* line 422, ../scss/style.scss */
header .logo a {
  background: url("../img/logo-alt.png") no-repeat scroll transparent;
  background-size: contain;
  height: 4.5em;
  width: 11em;
}
/* line 429, ../scss/style.scss */
header .links {
  float: right;
  margin-top: 3.6em;
}
/* line 432, ../scss/style.scss */
header .links a {
  -webkit-transition: opacity 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: opacity 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -ms-transition: opacity 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: opacity 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: opacity 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  color: white;
  display: inline-block;
  font-family: "acumin-pro-extra-condensed", Helvetica, Arial, sans-serif;
  font-size: 1.2em;
  font-weight: 100;
  letter-spacing: 0;
  line-height: 1.5;
  margin-left: 1.5em;
  opacity: 0.81;
  text-indent: 0.05em;
  text-transform: uppercase;
}
/* line 445, ../scss/style.scss */
header .links a#contact-link {
  margin-right: 1em;
}
/* line 448, ../scss/style.scss */
header .links a:hover {
  opacity: 1;
}
/* line 451, ../scss/style.scss */
header .links a.active {
  color: #50ac25 !important;
  opacity: 1;
}
/* line 457, ../scss/style.scss */
header .contact-wizpor {
  background: #2b2c30;
  border-radius: 0 0 1em 3em;
  display: inline-block;
  height: 2.555em;
  position: absolute;
  right: 0;
  text-align: right;
  top: -0.9em;
  width: 14em;
  display: none;
}
/* line 468, ../scss/style.scss */
header .contact-wizpor .social {
  border-left: 1px solid #393939;
  display: inline-block;
  height: 0.9em;
  margin: 0.87em 1.5em 0 0;
  padding-left: 0.75em;
}
/* line 474, ../scss/style.scss */
header .contact-wizpor .social a {
  -webkit-transition: color 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: color 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -ms-transition: color 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: color 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: color 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  color: #98c000;
  font-size: 0.6em;
  height: 1.5em;
  opacity: .81;
  text-align: center;
  vertical-align: top;
  width: 1.5em;
}
/* line 483, ../scss/style.scss */
header .contact-wizpor .social a:hover {
  opacity: 1;
}
/* line 488, ../scss/style.scss */
header .contact-wizpor .phone {
  color: #dddddd;
  display: inline-block;
  font-size: 0.69em;
  left: 0;
  letter-spacing: 0.1em;
  padding: 0.9em 1.5em 0.55em 3em;
  position: absolute;
  top: 0.25em;
}
/* line 497, ../scss/style.scss */
header .contact-wizpor .phone i {
  color: #999999;
  font-size: 1em;
  margin-right: 0.15em;
  margin-top: 0.25em;
  vertical-align: top;
}
/* line 504, ../scss/style.scss */
header .contact-wizpor .phone span {
  color: #999999;
  display: inline-block;
  font-family: "acumin-pro-extra-condensed", Helvetica, Arial, sans-serif;
  margin-left: .5em;
  display: none;
}
/* line 513, ../scss/style.scss */
header.scroll {
  background: rgba(27, 28, 32, 0.945);
  box-shadow: 0 0.27em 0 0 rgba(0, 0, 0, 0.09);
  height: 75px;
  padding-top: 0;
}
/* line 518, ../scss/style.scss */
header.scroll .row {
  width: 100%;
  max-width: 100%;
  padding: 0 1.5em 0 .75em;
}
/* line 523, ../scss/style.scss */
header.scroll .logo {
  margin-top: 15px;
}
/* line 525, ../scss/style.scss */
header.scroll .logo a {
  background: url("../img/logo-mark-alt.png") no-repeat scroll transparent !important;
  background-size: contain !important;
  height: 51px;
  width: 51px;
}
/* line 532, ../scss/style.scss */
header.scroll .links {
  margin-top: 21px;
}
/* line 534, ../scss/style.scss */
header.scroll .links a {
  border-bottom: 3px solid transparent;
  color: #ccc;
  font-size: 20px;
  font-weight: 100;
  margin-left: 30px;
  letter-spacing: 0.015em;
  text-indent: 0.015em;
}
/* line 542, ../scss/style.scss */
header.scroll .links a:hover {
  color: white;
}
/* line 547, ../scss/style.scss */
header.scroll .contact-wizpor {
  top: -3em;
}

/* PAGE HEADING */
/* line 554, ../scss/style.scss */
#page-heading {
  height: 15em;
  padding: 8em 0 0;
  position: relative;
  text-align: center;
}

/* CONTENT */
/* line 564, ../scss/style.scss */
#content {
  min-height: 45em;
  position: relative;
  text-align: center;
}

/* FOOTER */
/* line 573, ../scss/style.scss */
footer {
  padding: 3em 0 1.5em;
}
/* line 575, ../scss/style.scss */
footer .copyright {
  color: #a7a7a7;
  display: block;
  font-size: 0.63em;
  font-weight: 300;
  text-align: center;
}

/*=======================
SITE-PAGE
=========================*/
/* line 588, ../scss/style.scss */
.site-page {
  background: url("../img/subtle-dots.png") repeat scroll;
  background: white;
  box-shadow: 0 7em 3em 0 white inset;
}
/* line 592, ../scss/style.scss */
.site-page header {
  -webkit-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -ms-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
/* line 595, ../scss/style.scss */
.site-page header .logo a {
  background: url("../img/logo.png") no-repeat;
  background-size: contain;
}
/* line 601, ../scss/style.scss */
.site-page header .links a {
  color: #999999;
}
/* line 603, ../scss/style.scss */
.site-page header .links a:hover {
  color: #1b1c20 !important;
}
/* line 609, ../scss/style.scss */
.site-page h1 {
  color: #50ac25;
  display: inline-block;
  font-family: "acumin-pro-extra-condensed", Helvetica, Arial, sans-serif;
  font-size: 4.5em;
  font-weight: 100;
  letter-spacing: 0.015em;
  margin-bottom: 0.66em;
  text-indent: 0.015em;
  text-transform: uppercase;
}
/* line 619, ../scss/style.scss */
.site-page.inverse {
  background: #090909;
  box-shadow: none;
}
/* line 625, ../scss/style.scss */
.site-page.inverse header .links a:hover {
  color: white !important;
}
/* line 634, ../scss/style.scss */
.site-page #content {
  padding-top: 1.5em;
  position: relative;
  text-align: center;
}
/* line 639, ../scss/style.scss */
.site-page .sidebar {
  margin-bottom: 3em;
  text-align: left;
}
/* line 642, ../scss/style.scss */
.site-page .sidebar a {
  border-bottom: 1px solid #e9e9e9;
  color: #2b2c30;
  display: block;
  font-family: "acumin-pro-extra-condensed", Helvetica, Arial, sans-serif;
  font-size: 1em;
  font-weight: 400;
  padding: 0.9em 1.5em;
  text-transform: uppercase;
}
/* line 651, ../scss/style.scss */
.site-page .sidebar a:first-child {
  border-top: 1px solid #e9e9e9;
}
/* line 654, ../scss/style.scss */
.site-page .sidebar a.active {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #50ac25;
  font-weight: 500;
}

/*=======================
PAGE-SPECIFIC
=========================*/
/* line 669, ../scss/style.scss */
.home #feature {
  background: white;
  background: -moz-linear-gradient(45deg, rgba(152, 192, 0, 0.4) 0%, rgba(80, 172, 37, 0.45) 41%, rgba(79, 171, 37, 0.45) 42%, rgba(39, 116, 55, 0.54) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg, rgba(152, 192, 0, 0.4) 0%, rgba(80, 172, 37, 0.45) 41%, rgba(79, 171, 37, 0.45) 42%, rgba(39, 116, 55, 0.54) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, rgba(152, 192, 0, 0.4) 0%, rgba(80, 172, 37, 0.45) 41%, rgba(79, 171, 37, 0.45) 42%, rgba(39, 116, 55, 0.54) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6698c000', endColorstr='#8a277437',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
  background: #1b1c20;
  background-size: cover;
  height: 41em;
  overflow: hidden;
  position: relative;
  text-align: center;
}
/* line 681, ../scss/style.scss */
.home #feature video {
  bottom: 0;
  left: -5%;
  position: absolute;
  right: 0;
  top: 0;
  width: 110%;
}
/* line 689, ../scss/style.scss */
.home #feature .feature-mobile {
  background: url("../img/videoframe.jpg") no-repeat transparent;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
/* line 698, ../scss/style.scss */
.home #feature #sliding_background {
  display: none !important;
}
/* line 701, ../scss/style.scss */
.home #feature .feature-content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
}
/* line 708, ../scss/style.scss */
.home #feature .feature-content .container {
  text-align: center;
}
/* line 712, ../scss/style.scss */
.home #feature h1 {
  color: rgba(255, 255, 255, 0.66);
  font-size: 3.75em;
  font-weight: 200;
  letter-spacing: -0.0666em;
  line-height: 1;
  margin-bottom: 1.333em;
  margin-top: 4.05em;
  text-indent: -0.0666em;
}
/* line 721, ../scss/style.scss */
.home #feature h1 .more-space {
  letter-spacing: 0.015em;
}
/* line 724, ../scss/style.scss */
.home #feature h1 .emphasis {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: white;
  font-weight: 700;
}
/* line 735, ../scss/style.scss */
.home #feature h1 .tm {
  display: inline-block;
  font-size: 0.5em;
  font-weight: 300;
  margin-left: 0.25em;
  margin-right: -0.5em;
  padding-top: 0.25em;
  vertical-align: top;
}
/* line 745, ../scss/style.scss */
.home #feature .feature-video-modal-link {
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  -webkit-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -ms-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  background: #50ac25;
  border: none;
  border-radius: 1px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "acumin-pro-extra-condensed", Helvetica, Arial, sans-serif;
  font-size: 1.15em;
  font-weight: 300;
  letter-spacing: .05em;
  padding: 0.39em 1em 0.45em;
  text-indent: .05em;
  text-transform: uppercase;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  -webkit-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -ms-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  background: #98c000;
  border: none;
  border-radius: 1px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "acumin-pro-extra-condensed", Helvetica, Arial, sans-serif;
  font-size: 1.24em;
  font-weight: 300;
  letter-spacing: .05em;
  padding: 0.45em 1.15em 0.55em 1em;
  text-indent: .05em;
}
/* line 203, ../scss/style.scss */
.home #feature .feature-video-modal-link:hover {
  box-shadow: 0 0 2em 0 rgba(255, 255, 255, 0.33) inset;
  color: white !important;
  cursor: pointer;
}
/* line 759, ../scss/style.scss */
.home #feature .feature-video-modal-link:hover {
  box-shadow: 0 0 2em 0 rgba(255, 255, 255, 0.33) inset;
  color: white !important;
  cursor: pointer;
}
/* line 764, ../scss/style.scss */
.home #feature .feature-video-modal-link i {
  margin-right: .5em;
}
/* line 768, ../scss/style.scss */
.home #feature .down-button-container {
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
}
/* line 773, ../scss/style.scss */
.home #feature .down-button-container a {
  -webkit-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -ms-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  color: #999999;
  font-size: 1.15em;
  margin-bottom: 1.5em;
}
/* line 778, ../scss/style.scss */
.home #feature .down-button-container a:hover {
  color: #2b2c30;
  opacity: 1;
}
/* line 785, ../scss/style.scss */
.home section {
  padding: 3em 0 6em;
}
/* line 788, ../scss/style.scss */
.home h2 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: white;
  font-family: "acumin-pro-extra-condensed", Helvetica, Arial, sans-serif;
  font-size: 4.5em;
  font-weight: 100;
  letter-spacing: 0.015em;
  margin-bottom: .66em;
  text-indent: 0.015em;
  text-transform: uppercase;
}
/* line 799, ../scss/style.scss */
.home .why {
  background: #090909;
  background: url("../img/why-wizpor-bg.jpg") no-repeat center scroll #090909;
  background-size: cover;
}
/* line 802, ../scss/style.scss */
.home .why .logo {
  margin-top: 15px;
}
/* line 804, ../scss/style.scss */
.home .why .logo a {
  background: url("../img/logo-mark-alt.png") no-repeat scroll transparent !important;
  background-size: contain !important;
  height: 51px;
  width: 51px;
}
/* line 811, ../scss/style.scss */
.home .why .row {
  max-width: 100%;
  width: 58em;
}
/* line 815, ../scss/style.scss */
.home .why h2 {
  color: white;
  margin-bottom: 0.33em;
}
/* line 819, ../scss/style.scss */
.home .why .blurb, .home .why .highlights {
  text-align: left;
}
/* line 822, ../scss/style.scss */
.home .why .blurb {
  font-size: 1.25em;
  font-weight: 300;
  padding-left: 3em;
}
/* line 827, ../scss/style.scss */
.home .why .benefits {
  margin-top: 1em;
}
/* line 829, ../scss/style.scss */
.home .why .benefits .benefit {
  -webkit-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -ms-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.033);
  display: inline-block;
  font-family: "acumin-pro-extra-condensed", Helvetica, Arial, sans-serif;
  font-size: 0.9em;
  font-weight: 700;
  line-height: 2.75;
  margin: 1.15em;
  padding: 1em 2.333em .75em 1.5em;
  text-align: center;
}
/* line 842, ../scss/style.scss */
.home .why .benefits .benefit:hover {
  background: #181818;
  cursor: pointer;
}
/* line 845, ../scss/style.scss */
.home .why .benefits .benefit:hover .text {
  opacity: .75;
}
/* line 849, ../scss/style.scss */
.home .why .benefits .benefit.active {
  background: #272727;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0.66em 1.15em 0 rgba(0, 0, 0, 0.33);
}
/* line 853, ../scss/style.scss */
.home .why .benefits .benefit.active .icon, .home .why .benefits .benefit.active .text {
  opacity: 1;
}
/* line 857, ../scss/style.scss */
.home .why .benefits .benefit .icon, .home .why .benefits .benefit .text {
  opacity: .57;
}
/* line 860, ../scss/style.scss */
.home .why .benefits .benefit .icon {
  display: inline-block;
  float: left;
  margin-right: 1em;
  height: 3.333em;
  width: 3.333em;
}
/* line 867, ../scss/style.scss */
.home .why .benefits .benefit .text {
  -webkit-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -ms-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  color: white;
  font-family: "acumin-pro-extra-condensed", Helvetica, Arial, sans-serif;
  font-size: 1.33em;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
/* line 878, ../scss/style.scss */
.home .why .image {
  display: none;
  margin: 0 auto;
  padding: .5em 0 0;
  text-align: center;
}
/* line 883, ../scss/style.scss */
.home .why .image.active {
  display: block !important;
}
/* line 886, ../scss/style.scss */
.home .why .image img {
  display: inline-block;
  max-width: 90%;
  width: 15em;
}
/* line 892, ../scss/style.scss */
.home .why .blurb {
  color: white;
  display: none;
  font-size: 0.75em;
  font-weight: 100;
  height: 9em;
  letter-spacing: 0.045em;
  line-height: 2.333;
  margin-top: 2.25em;
  max-width: 100%;
  padding-left: 0;
  text-align: center;
  text-indent: 0.045em;
  width: 37em;
}
/* line 906, ../scss/style.scss */
.home .why .blurb.active {
  display: inline-block !important;
}
/* line 911, ../scss/style.scss */
.home .how {
  background: rgba(39, 116, 55, 0.81);
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#205e2e+0,277437+62,27725a+100&0.81+0,0.84+0,0.81+52,0.71+100 */
  background: -moz-linear-gradient(45deg, rgba(32, 94, 46, 0.84) 0%, rgba(38, 112, 54, 0.81) 52%, rgba(39, 116, 55, 0.79) 62%, rgba(39, 114, 90, 0.71) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg, rgba(32, 94, 46, 0.84) 0%, rgba(38, 112, 54, 0.81) 52%, rgba(39, 116, 55, 0.79) 62%, rgba(39, 114, 90, 0.71) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, rgba(32, 94, 46, 0.84) 0%, rgba(38, 112, 54, 0.81) 52%, rgba(39, 116, 55, 0.79) 62%, rgba(39, 114, 90, 0.71) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d6205e2e', endColorstr='#b527725a',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
  background: white;
  background: url("../img/halftone.png") repeat center scroll white;
}
/* line 920, ../scss/style.scss */
.home .how h2 {
  color: #2b2c30;
}
/* line 923, ../scss/style.scss */
.home .how .steps {
  background: rgba(255, 255, 255, 0.33);
}
/* line 926, ../scss/style.scss */
.home .how .step {
  -webkit-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -ms-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  border: 1px solid transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.033);
  border-top: 1px solid rgba(0, 0, 0, 0.033);
  font-size: 0.9em;
  padding: 1em 3.333em;
}
/* line 933, ../scss/style.scss */
.home .how .step.active, .home .how .step:hover {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(0, 0, 0, 0.09) !important;
  border-top: 1em solid #50ac25 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15) !important;
  box-shadow: 0 0.9em 1.333em 1px rgba(0, 0, 0, 0.09);
  cursor: default;
  margin-top: -1em;
  opacity: 1;
}
/* line 943, ../scss/style.scss */
.home .how .step.one {
  border-left: 1px solid rgba(0, 0, 0, 0.033);
}
/* line 946, ../scss/style.scss */
.home .how .step.two {
  border-left: 1px solid rgba(0, 0, 0, 0.033);
  border-right: 1px solid rgba(0, 0, 0, 0.033);
}
/* line 950, ../scss/style.scss */
.home .how .step.three {
  border-right: 1px solid rgba(0, 0, 0, 0.033);
}
/* line 953, ../scss/style.scss */
.home .how .step .icon {
  background: rgba(255, 255, 255, 0.18);
  background: none;
  border-radius: 30em;
  color: #2b2c30;
  display: inline-block;
  font-size: 7.5em;
  height: 1.5em;
  line-height: 1.66;
  margin-bottom: 0.3em;
  opacity: 0.91;
  text-shadow: 0.015em 0.06em 0 rgba(0, 0, 0, 0.12);
  width: 1.5em;
}
/* line 967, ../scss/style.scss */
.home .how .step .title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.033);
  font-family: "acumin-pro-extra-condensed", Helvetica, Arial, sans-serif;
  font-size: 1.333em;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0 -1em 0.5em;
  padding: 0.5em 0 1em;
  text-indent: 0.1em;
  text-transform: uppercase;
}
/* line 978, ../scss/style.scss */
.home .how .step .image {
  border-bottom: 1px solid rgba(0, 0, 0, 0.033);
  margin-bottom: 1.5em;
  padding: 1.5em;
}
/* line 982, ../scss/style.scss */
.home .how .step .image img {
  max-width: 100%;
}
/* line 986, ../scss/style.scss */
.home .how .step .blurb {
  color: #2b2c30;
  font-size: 0.75em;
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 2em;
}
/* line 995, ../scss/style.scss */
.home .who {
  background: #50ac25;
  background-size: cover;
  text-align: center;
}
/* line 999, ../scss/style.scss */
.home .who .row {
  max-width: 100%;
  width: 60em;
}
/* line 1003, ../scss/style.scss */
.home .who .colums {
  padding: 0 !important;
}
/* line 1006, ../scss/style.scss */
.home .who h2 {
  color: white;
}
/* line 1009, ../scss/style.scss */
.home .who h3 {
  font-family: "acumin-pro-extra-condensed", Helvetica, Arial, sans-serif;
  font-size: 1.5em;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin: 2.1em 0 0.9em;
  text-indent: 0.1em;
  text-transform: uppercase;
  color: white;
}
/* line 1019, ../scss/style.scss */
.home .who .image {
  display: inline-block;
  height: 10.5em;
  width: 10.5em;
}
/* line 1025, ../scss/style.scss */
.home .who .politicians h3 {
  color: white;
}
/* line 1029, ../scss/style.scss */
.home .who .user-type {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  display: inline-block;
  height: 19.5em;
  margin: 0 2.5em;
  overflow: hidden;
  position: relative;
  width: 19.5em;
}
/* line 1038, ../scss/style.scss */
.home .who .user-type.alt {
  background: white;
}
/* line 1042, ../scss/style.scss */
.home .who .user-type:hover .overlay {
  top: 0;
  bottom: 0;
  opacity: 1;
}
/* line 1049, ../scss/style.scss */
.home .who .item {
  display: inline-block;
  padding: 0 2.1em;
  width: 13.5em;
  margin: 0 2.1em 3em;
}
/* line 1055, ../scss/style.scss */
.home .who .icon {
  display: inline-block;
  font-size: 5.1em;
  height: 1.75em;
  line-height: 1.66;
  margin-bottom: 0.15em;
  width: 1.75em;
}
/* line 1063, ../scss/style.scss */
.home .who .text {
  font-size: 1em;
  font-weight: 300;
}
/* line 1067, ../scss/style.scss */
.home .who .overlay {
  -webkit-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -ms-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  background: rgba(0, 0, 0, 0.93);
  border-radius: 50%;
  height: 100%;
  top: -100%;
  left: 0;
  opacity: 0;
  right: 0;
  bottom: 100%;
  position: absolute;
}
/* line 1078, ../scss/style.scss */
.home .who .overlay h3 {
  color: #50ac25;
  margin-bottom: 1em;
}
/* line 1082, ../scss/style.scss */
.home .who .overlay .details {
  color: white;
  font-size: .87em;
}
/* line 1085, ../scss/style.scss */
.home .who .overlay .details span {
  display: block;
  margin-bottom: .5em;
}
/* line 1088, ../scss/style.scss */
.home .who .overlay .details span:hover {
  cursor: default;
}
/* line 1091, ../scss/style.scss */
.home .who .overlay .details span i {
  color: #50ac25;
  margin-right: .5em;
}
/* line 1099, ../scss/style.scss */
.home .get-in-touch {
  background: rgba(39, 116, 55, 0.81);
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5930+0,2a756c+62,5aa6ad+100&0.8+0,0.84+52,0.87+100 */
  background: -moz-linear-gradient(45deg, rgba(30, 89, 48, 0.8) 0%, rgba(40, 112, 98, 0.84) 52%, rgba(42, 117, 108, 0.85) 62%, rgba(90, 166, 173, 0.87) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg, rgba(30, 89, 48, 0.8) 0%, rgba(40, 112, 98, 0.84) 52%, rgba(42, 117, 108, 0.85) 62%, rgba(90, 166, 173, 0.87) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, rgba(30, 89, 48, 0.8) 0%, rgba(40, 112, 98, 0.84) 52%, rgba(42, 117, 108, 0.85) 62%, rgba(90, 166, 173, 0.87) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cc1e5930', endColorstr='#de5aa6ad',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
  background: rgba(0, 0, 0, 0.15);
  background: url("../img/videoframe-green.jpg") no-repeat scroll rgba(255, 255, 255, 0.93);
  margin: 6em 0 -6.6em;
  padding: 4.5em 0 3em !important;
}
/* line 1110, ../scss/style.scss */
.home .get-in-touch .button {
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  -webkit-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -ms-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  background: #50ac25;
  border: none;
  border-radius: 1px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "acumin-pro-extra-condensed", Helvetica, Arial, sans-serif;
  font-size: 1.15em;
  font-weight: 300;
  letter-spacing: .05em;
  padding: 0.39em 1em 0.45em;
  text-indent: .05em;
  text-transform: uppercase;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  background: white;
  border: none;
  color: #277437;
  font-family: "acumin-pro-extra-condensed", Helvetica, Arial, sans-serif;
  font-size: 1.666em;
  font-weight: 400;
  height: auto;
  padding: 0.51em 1em 0.5em;
  text-transform: uppercase;
}
/* line 203, ../scss/style.scss */
.home .get-in-touch .button:hover {
  box-shadow: 0 0 2em 0 rgba(255, 255, 255, 0.33) inset;
  color: white !important;
  cursor: pointer;
}
/* line 1122, ../scss/style.scss */
.home .get-in-touch .button:hover {
  background: #277437;
  border-color: #2b2c30;
  box-shadow: none;
  color: white !important;
  cursor: pointer;
}
/* line 1131, ../scss/style.scss */
.home .feature-video-overlay, .home .about-overlay, .home .contact-overlay {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.975);
  position: fixed;
  z-index: 999999999999999;
  opacity: 0;
  top: 0;
  left: -100%;
  right: 0;
  bottom: 0;
  transition: opacity .5s;
  -webkit-transition: opacity .5s;
}
/* line 1144, ../scss/style.scss */
.home .feature-video-overlay .video-container, .home .about-overlay .video-container, .home .contact-overlay .video-container {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
/* line 1152, ../scss/style.scss */
.home .feature-video-overlay .close, .home .about-overlay .close, .home .contact-overlay .close {
  color: #999999;
  font-size: 1.5em;
  padding: .9em;
  position: absolute;
  top: 0;
  right: 0;
}
/* line 1159, ../scss/style.scss */
.home .feature-video-overlay .close:hover, .home .about-overlay .close:hover, .home .contact-overlay .close:hover {
  -webkit-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -ms-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  color: white;
  cursor: pointer;
}
/* line 1165, ../scss/style.scss */
.home .feature-video-overlay.show, .home .about-overlay.show, .home .contact-overlay.show {
  opacity: 1;
}
/* line 1171, ../scss/style.scss */
.home .about-overlay, .home .contact-overlay {
  background: url("../img/subtle-dots.png") repeat scroll rgba(255, 255, 255, 0.93);
  overflow: auto;
  text-align: center;
}
/* line 1176, ../scss/style.scss */
.home .about-overlay .close:hover, .home .contact-overlay .close:hover {
  color: #2b2c30;
}
/* line 1180, ../scss/style.scss */
.home .about-overlay .container, .home .contact-overlay .container {
  display: inline-block;
  padding-top: 5em;
  padding-bottom: 5em;
  text-align: left;
  width: 30em;
  max-width: 100%;
}
/* line 1188, ../scss/style.scss */
.home .about-overlay h2, .home .contact-overlay h2 {
  color: #50ac25;
  line-height: 1;
  margin: -0.5em 0 0;
}
/* line 1193, ../scss/style.scss */
.home .about-overlay h3, .home .contact-overlay h3 {
  color: #50ac25;
  font-weight: 100;
  margin-top: 2.75em;
  text-transform: uppercase;
}
/* line 1199, ../scss/style.scss */
.home .about-overlay p, .home .contact-overlay p {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #2b2c30;
  font-weight: 300;
}
/* line 1211, ../scss/style.scss */
.home .contact-overlay #success-message {
  color: #50ac25;
  display: none;
  font-weight: bold;
  margin-top: -0.8em;
  margin-bottom: 1.5em;
}
/* line 1217, ../scss/style.scss */
.home .contact-overlay #success-message i {
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}
/* line 1221, ../scss/style.scss */
.home .contact-overlay .note {
  margin-bottom: 1.8em;
}
/* line 1225, ../scss/style.scss */
.home .contact-overlay form input[type=text] {
  background: #f5f5f5;
  border: 2px solid rgba(0, 0, 0, 0.12);
  border-radius: 3px;
  box-shadow: none;
  font-size: 0.825em;
  font-style: normal !important;
  font-weight: 600;
  height: 2.5em;
  padding-left: 0.75em;
}
/* line 1235, ../scss/style.scss */
.home .contact-overlay form input[type=text]:focus, .home .contact-overlay form input[type=text]:active {
  background: white;
}
/* line 1239, ../scss/style.scss */
.home .contact-overlay form textarea, .home .contact-overlay form textarea.error {
  background: #f5f5f5;
  border: 2px solid rgba(0, 0, 0, 0.12);
  border-radius: 3px;
  box-shadow: none;
  color: #1b1c20 !important;
  font-family: "ff-enzo-web", Helvetica, Arial, sans-serif;
  font-size: .75em;
  font-style: normal !important;
  height: 9em;
  padding-left: .81em;
  padding-top: .81em;
}
/* line 1251, ../scss/style.scss */
.home .contact-overlay form textarea:focus, .home .contact-overlay form textarea:active, .home .contact-overlay form textarea.error:focus, .home .contact-overlay form textarea.error:active {
  background: white;
}
/* line 1255, ../scss/style.scss */
.home .contact-overlay form input[type=submit] {
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  -webkit-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -ms-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  background: #50ac25;
  border: none;
  border-radius: 1px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "acumin-pro-extra-condensed", Helvetica, Arial, sans-serif;
  font-size: 1.15em;
  font-weight: 300;
  letter-spacing: .05em;
  padding: 0.39em 1em 0.45em;
  text-indent: .05em;
  text-transform: uppercase;
  margin-top: 1em;
}
/* line 203, ../scss/style.scss */
.home .contact-overlay form input[type=submit]:hover {
  box-shadow: 0 0 2em 0 rgba(255, 255, 255, 0.33) inset;
  color: white !important;
  cursor: pointer;
}
/* line 1259, ../scss/style.scss */
.home .contact-overlay form input.error, .home .contact-overlay form textarea.error {
  margin-bottom: 0;
}
/* line 1263, ../scss/style.scss */
.home .contact-overlay .error {
  display: block;
  font-weight: 600;
  margin: .66em 0 1em;
}

/* line 1279, ../scss/style.scss */
.faq header .links a.faq, .faq header .links a.faq:hover {
  color: #50ac25 !important;
}
/* line 1284, ../scss/style.scss */
.faq [class*="column"] + [class*="column"]:last-child {
  display: inline-block;
  float: none;
}
/* line 1288, ../scss/style.scss */
.faq .main {
  float: none;
}
/* line 1291, ../scss/style.scss */
.faq .faq-category {
  padding-top: 1em;
  margin-bottom: 3em;
  text-align: left;
  padding-right: 4.5em;
}
/* line 1297, ../scss/style.scss */
.faq .faq {
  margin-bottom: 2em;
}
/* line 1300, ../scss/style.scss */
.faq h2 {
  color: #50ac25;
  font-family: "acumin-pro-extra-condensed", Helvetica, Arial, sans-serif;
  font-size: 2.55em;
  margin-bottom: 1em;
  text-transform: uppercase;
}
/* line 1307, ../scss/style.scss */
.faq .question {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 500;
}
/* line 1311, ../scss/style.scss */
.faq .answer {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #999999;
  font-weight: 300;
}

/* line 1324, ../scss/style.scss */
.about header .links a.about, .about header .links a.about:hover {
  color: #50ac25 !important;
}

/* line 1336, ../scss/style.scss */
.contact header .links a.contact, .contact header .links a.contact:hover {
  color: #50ac25 !important;
}

/* 1440px down */
@media only screen and (max-width: 1440px) {
  /* line 1349, ../scss/style.scss */
  header .links a {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.42em;
    font-weight: 300;
  }
  /* line 1357, ../scss/style.scss */
  header.scroll .links a {
    font-size: 19px;
    font-weight: 300;
    line-height: 1.8;
  }
}
/* 960px down */
@media only screen and (max-width: 960px) {
  /* line 1371, ../scss/style.scss */
  body {
    border-top: none;
  }

  /* line 1376, ../scss/style.scss */
  #mobile-nav-toggle {
    color: rgba(255, 255, 255, 0.81);
    display: block;
    font-size: 1.333em;
    padding: .84em 1em;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999999999;
  }
  /* line 1385, ../scss/style.scss */
  #mobile-nav-toggle i {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  /* line 1388, ../scss/style.scss */
  #mobile-nav-toggle.hide {
    display: none;
  }

  /* line 1394, ../scss/style.scss */
  .about-overlay, .contact-overlay {
    padding: 2.333em;
  }
  /* line 1396, ../scss/style.scss */
  .about-overlay .container, .contact-overlay .container {
    width: 100%;
  }

  /* line 1402, ../scss/style.scss */
  header {
    font-size: 1.15em;
    padding-left: 1em;
  }
  /* line 1405, ../scss/style.scss */
  header .links {
    display: none;
  }
  /* line 1408, ../scss/style.scss */
  header.scroll {
    background: #1b1c20;
    font-size: .66em;
    height: 6em;
    padding-left: .5em;
  }
  /* line 1413, ../scss/style.scss */
  header.scroll .logo {
    margin-top: 1.2em;
  }
  /* line 1415, ../scss/style.scss */
  header.scroll .logo a {
    height: 3.9em;
    width: 3.9em;
  }

  /* line 1424, ../scss/style.scss */
  footer {
    padding: 2.1em 0 1.5em;
  }
  /* line 1426, ../scss/style.scss */
  footer .copyright {
    font-size: .81em;
    font-weight: 600;
  }

  /* line 1434, ../scss/style.scss */
  .home h2 {
    font-size: 3.9em;
  }
  /* line 1437, ../scss/style.scss */
  .home #feature {
    height: 61.5em;
  }
  /* line 1440, ../scss/style.scss */
  .home #feature .feature-content .container {
    text-align: left;
  }
  /* line 1444, ../scss/style.scss */
  .home #feature #conditional-content {
    background: url("../img/videoframe.jpg") no-repeat fixed #1b1c20;
    background-size: cover;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
  }
  /* line 1452, ../scss/style.scss */
  .home #feature #conditional-content video {
    display: none;
  }
  /* line 1456, ../scss/style.scss */
  .home #feature h1 {
    font-size: 5.1em;
    line-height: 1.05;
    margin-top: 3.333em;
    margin-left: .33em;
  }
  /* line 1462, ../scss/style.scss */
  .home #feature .feature-video-modal-link {
    font-size: 2.333em;
    font-weight: 500;
    margin-left: 1em;
  }
  /* line 1467, ../scss/style.scss */
  .home #feature .down-button-container {
    display: none;
  }
  /* line 1472, ../scss/style.scss */
  .home #content section {
    padding-top: 6em;
  }
  /* line 1478, ../scss/style.scss */
  .home .why .benefits .benefit {
    display: inline-block;
    font-size: 0.9em;
    margin: 0.72em .54em;
    padding: 2.1em 3em 1.5em;
  }
  /* line 1483, ../scss/style.scss */
  .home .why .benefits .benefit .icon {
    display: block;
    float: none;
    margin: 0 auto;
  }
  /* line 1490, ../scss/style.scss */
  .home .why .blurb {
    font-size: 1.333em;
    padding: 0 3em;
  }
  /* line 1496, ../scss/style.scss */
  .home .how .steps {
    background: transparent;
    width: 36em;
    max-width: 90%;
  }
  /* line 1501, ../scss/style.scss */
  .home .how .step {
    background: rgba(255, 255, 255, 0.33);
    display: block;
    margin-bottom: 1.5em;
    padding: 1em 2.7em;
    width: 100%;
  }
  /* line 1507, ../scss/style.scss */
  .home .how .step .title {
    font-size: 2.1em;
  }
  /* line 1510, ../scss/style.scss */
  .home .how .step .blurb {
    font-size: 1.27em;
  }
  /* line 1515, ../scss/style.scss */
  .home .who {
    padding-bottom: 18em;
    position: relative;
  }
  /* line 1518, ../scss/style.scss */
  .home .who .user-type {
    margin: 0 1.5em 2.333em;
  }
  /* line 1522, ../scss/style.scss */
  .home .get-in-touch {
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
  /* line 1531, ../scss/style.scss */
  .home .about-overlay, .home .contact-overlay {
    padding: 2.333em;
  }
  /* line 1533, ../scss/style.scss */
  .home .about-overlay .container, .home .contact-overlay .container {
    width: 100%;
  }
  /* line 1536, ../scss/style.scss */
  .home .about-overlay h3, .home .contact-overlay h3 {
    font-weight: 600;
    font-size: 1.15em;
  }
}
/* 480px down */
@media only screen and (max-width: 480px) {
  /* line 1550, ../scss/style.scss */
  body {
    border-top: none;
  }

  /* line 1555, ../scss/style.scss */
  #mobile-nav-toggle {
    color: rgba(255, 255, 255, 0.81);
    display: block;
    font-size: 1.333em;
    padding: .84em 1em;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999999999;
  }
  /* line 1564, ../scss/style.scss */
  #mobile-nav-toggle i {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  /* line 1567, ../scss/style.scss */
  #mobile-nav-toggle.hide {
    display: none;
  }

  /* line 1574, ../scss/style.scss */
  header {
    font-size: .75em;
    padding-left: .66em;
  }
  /* line 1577, ../scss/style.scss */
  header .links {
    display: none;
  }
  /* line 1580, ../scss/style.scss */
  header.scroll {
    background: #1b1c20;
    font-size: .66em;
    height: 6em;
    padding-left: .5em;
  }
  /* line 1585, ../scss/style.scss */
  header.scroll .logo {
    margin-top: 1.2em;
  }
  /* line 1587, ../scss/style.scss */
  header.scroll .logo a {
    height: 3.9em;
    width: 3.9em;
  }

  /* line 1596, ../scss/style.scss */
  footer {
    padding: 2.1em 0 1.5em;
  }
  /* line 1598, ../scss/style.scss */
  footer .copyright {
    font-size: .81em;
    font-weight: 600;
  }

  /* line 1606, ../scss/style.scss */
  .home h2 {
    font-size: 3.9em;
  }
  /* line 1609, ../scss/style.scss */
  .home #feature {
    height: 39.5em;
  }
  /* line 1612, ../scss/style.scss */
  .home #feature .feature-content .container {
    text-align: center;
  }
  /* line 1616, ../scss/style.scss */
  .home #feature #conditional-content {
    background: url("../img/videoframe.jpg") no-repeat fixed #1b1c20;
    background-size: cover;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
  }
  /* line 1624, ../scss/style.scss */
  .home #feature #conditional-content video {
    display: none;
  }
  /* line 1628, ../scss/style.scss */
  .home #feature h1 {
    font-size: 2.95em;
    margin-top: 3em;
    margin-left: 0;
  }
  /* line 1633, ../scss/style.scss */
  .home #feature .feature-video-modal-link {
    font-size: 1.5em;
    font-weight: 500;
    margin-left: 0;
  }
  /* line 1638, ../scss/style.scss */
  .home #feature .down-button-container {
    display: none;
  }
  /* line 1644, ../scss/style.scss */
  .home .why .benefits .benefit {
    display: inline-block;
    font-size: 0.54em;
    margin: 0.72em .54em;
    padding: 2.1em 3em 1.5em;
  }
  /* line 1649, ../scss/style.scss */
  .home .why .benefits .benefit .icon {
    display: block;
    float: none;
    margin: 0 auto;
  }
  /* line 1656, ../scss/style.scss */
  .home .why .blurb {
    font-size: 1em;
    padding: 0 1.45em;
  }
  /* line 1662, ../scss/style.scss */
  .home .how .steps {
    width: 100%;
  }
  /* line 1665, ../scss/style.scss */
  .home .how .step {
    padding: 1em 2.1em;
  }
  /* line 1667, ../scss/style.scss */
  .home .how .step .title {
    font-size: 2.1em;
  }
  /* line 1670, ../scss/style.scss */
  .home .how .step .blurb {
    font-size: 1em;
  }
  /* line 1675, ../scss/style.scss */
  .home .who {
    padding-bottom: 15em;
    position: relative;
  }
  /* line 1678, ../scss/style.scss */
  .home .who .user-type {
    margin: 0 0 2.333em;
  }
  /* line 1682, ../scss/style.scss */
  .home .get-in-touch {
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
}
