/* Mask: */
/* //////////////////////////////////////////////
// COLORS & SASS VARS
////////////////////////////////////////////// */
.hide {
    display: none; }
  
  @media screen and (min-width: 768px) {
    .form-group.col {
      width: 48.5%;
      float: left; }
    .form-group.second {
      float: right; } }
  
  .form-group.hidden-field {
    visibility: hidden;
    margin: 0;
    padding: 0;
    height: 0;
    width: 0;
    overflow: hidden; }
    .form-group.hidden-field input, .form-group.hidden-field select {
      height: 0;
      width: 0;
      visibility: hidden;
      overflow: hidden; }
  
  .spinner-container {
    position: relative; }
  
  .loading-spinner {
    animation-play-state: running;
    opacity: 1; }
  
  @keyframes spinner {
    0% {
      transform: translate3d(-50%, -50%, 0) rotate(0deg); }
    100% {
      transform: translate3d(-50%, -50%, 0) rotate(360deg); } }
    .loading-spinner.-paused {
      animation-play-state: paused;
      opacity: 0.2;
      transition: opacity linear 0.1s; }
    .loading-spinner::before {
      animation: 1.5s linear infinite spinner;
      animation-play-state: inherit;
      border: solid 3px #dedede;
      border-bottom-color: #999;
      border-radius: 50%;
      content: "";
      height: 25px;
      right: 0px;
      opacity: inherit;
      position: absolute;
      top: 50%;
      transform: translate3d(-50%, -50%, 0);
      width: 25px;
      will-change: transform; }
  
  .hide-spinner {
    display: none; }
  
  .ie-no-clear::-ms-clear {
    display: none; }
  
  .errorSpacer {
    margin-bottom: 20px !important; }
  
  .validationError {
    position: relative; }
    .validationError .validationText {
      font-size: 13px;
      position: absolute;
      top: -16px;
      right: 0px;
      color: #d24d57;
      display: inherit; }
    .validationError input[type=email] {
      border: 1px solid #d24d57 !important;
      background-image: url("../img/svg/invalid-icon.svg") !important;
      background-repeat: no-repeat !important;
      background-position: right 8px center !important;
    }
  
    .validationError input[type=text], .validationError input[type=password], .validationError input[type=tel], .validationError select {
      border: 1px solid #d24d57 !important;
    }
  
  .validationSuccess {
    position: relative; }
    .validationSuccess .validationText {
      font-size: 13px;
      position: absolute;
      top: -16px;
      right: 0px;
      color: #29d6c7;
      display: inherit; }
    .validationSuccess input[type=text], .validationSuccess input[type=password], .validationSuccess input[type=email], .validationSuccess input[type=tel] {
      border: 1px solid #29d6c7 !important;
      background-image: url("../img/svg/success.svg") !important;
      background-repeat: no-repeat !important;
      background-position: right 8px center !important; }
  
  .validationWarning {
    position: relative; }
    .validationWarning .validationCorrection {
      font-size: 13px;
      position: absolute;
      top: -16px;
      right: 0px;
      color: #0C1119;
      font-weight: 700;
      display: inherit; }
    .validationWarning .validationText {
      font-size: 13px;
      position: absolute;
      top: -16px;
      right: 0px;
      color: #0C1119;
      display: inherit; }
    .validationWarning input[type=text], .validationWarning input[type=password], .validationWarning input[type=email], .validationWarning input[type=tel] {
      border: 1px solid #838c90 !important;
      background-image: url("../img/svg/grey-warning-icon.svg") !important;
      background-repeat: no-repeat !important;
      background-position: right 8px center !important; }
  
  .validationText {
    display: none; }
  
  .validationCorrection {
    display: none; }
  
  button.save-btn-disabled {
    cursor: default;
    opacity: 0.6; }
  
  .embedded-signup-wrapper {
    background: #fff;
    padding: 20px;
    box-shadow: 0 6px 12px rgba(0,0,0,.23), 0 10px 40px rgba(0,0,0,.19);
  }
  
  .embedded-signup-wrapper h4 {
    font-size: 1.1em;
  }
  
  .embedded-signup-wrapper .signup-errors h4 {
    font-size: 16px;
  }
  
  .embedded-signup-wrapper .signup-errors ul li {
    font-size: 14px;
  }
  
  .embedded-signup-wrapper .embedded-signup form {
    margin-top: 16px;
  }
  
  .embedded-signup-wrapper .embedded-signup .form-group {
    margin-bottom: 18px;
  }
  
  .embedded-signup-wrapper .embedded-signup input {
    background-color: #e8ebec;
    border: 1px solid #e8ebec;
    box-shadow: none;
    color: #0C1119;
  }
  
  .embedded-signup-wrapper .embedded-signup input::-moz-placeholder {color: #b6c1c6; }
  .embedded-signup-wrapper .embedded-signup input:-ms-input-placeholder {color: #b6c1c6; }
  .embedded-signup-wrapper .embedded-signup input::-webkit-input-placeholder {color: #b6c1c6; }
  
  .embedded-signup-wrapper .embedded-signup form select {
    background-color: #e8ebec !important;
    border: 1px solid #e8ebec;
    box-shadow: none !important;
    color: #0C1119 !important;
  }
  
  .embedded-signup-wrapper .embedded-signup form select:invalid {
    color: #b6c1c6 !important;
  }
  
  .embedded-signup-wrapper .embedded-signup form select:active, .embedded-signup-wrapper .embedded-signup form select:focus {
    border: 1px solid #aaa;
  }
  
  .embedded-signup-wrapper .embedded-signup form select option {
    color: #0C1119;
  }
  
  .embedded-signup-wrapper .embedded-signup .terms-of-service {
    color: silver;
    font-size: 11px;
  }
  
  .embedded-signup-wrapper .embedded-signup .terms-of-service a {
    color: silver;
    text-decoration: underline;
  }
  
  .embedded-signup-wrapper .embedded-signup .password-requirements-text {
    font-size: 12px;
    padding-top: 5px;
  }
  
  .embedded-signup-wrapper .embedded-signup .password-requirements-text .valid {
    color: green;
  }
  
  .embedded-signup-wrapper .embedded-signup .password-requirements-text .invalid {
    color: #d3555c;
  }
  
  .embedded-signup-wrapper .embedded-signup #newsignupbutton {
    position: relative;
  }
  
  .embedded-signup-wrapper .embedded-signup #newsignupbutton.loading-spinner span {
    visibility: hidden;
  }
  
  .embedded-signup-wrapper .embedded-signup #newsignupbutton.loading-spinner::before {
    right: 50%;
    margin-right: -25px;
  }

/* NEW SIGNUP FORMS CSS ABOVE */

body{background:#fff;}section{padding:2rem 0 4rem}section .hero-content{width:96%;margin:0 auto}@media (min-width: 992px){section .hero-content{width:80vw}}@media (min-width: 1200px){section .hero-content{width:60vw}}section .hero-content h1{margin-bottom:1rem}section .section-intro{text-align:center;max-width:1000px;margin-left:auto;margin-right:auto}section h1{color:#fff}section .h4{font-weight: 600}.pond{text-align:center}.pond>div{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}@media (min-width: 992px){.pond>div{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}}.pond>div div{-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center;-webkit-box-flex:0;-ms-flex:0 0 21%;flex:0 0 21%;margin:0 .5rem;margin:1rem}@media (min-width: 768px){.pond>div div{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}}.pond>div div:last-child{-webkit-box-flex:0;-ms-flex:0 0 36%;flex:0 0 36%;margin-right:0}.pond>div div:first-child{margin-left:0}.pond>div div svg,.pond>div div img{width:100%;height:100%;height:auto}@media (min-width: 768px){.pond>div div svg,.pond>div div img{max-height:2.25rem;width:auto;height:auto}}.other-benefits h3{text-align:center}.other-benefits .flex-col-wrap{margin:2rem auto;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}@media screen and (min-width: 1200px){.other-benefits .flex-col-wrap{margin-bottom:0}}.other-benefits .flex-col{max-width:450px;margin:1rem auto 3rem}.other-benefits .flex-col figure{text-align:center;position:relative;max-width:450px;margin:0 auto 1rem}.other-benefits .flex-col figure img{width:100%}.other-benefits .flex-col figure figcaption{background:rgba(182,193,198,0.4);padding:.5rem 1rem .0C11193rem;position:absolute;bottom:0;left:0;text-align:left;right:0;text-transform:uppercase;font-size:14px;font-weight: 700}@media screen and (min-width: 1200px){.overview .grad-header{padding-bottom:6rem}}.overview section.mf-benefits .secondary.cta{margin:0 auto;display:block}.overview section.mf-benefits .flex-item-wrap{margin-top:3rem;margin-bottom:2rem;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.overview section.mf-benefits .flex-item-wrap .flex-item{text-align:center}@media (min-width: 768px){.overview section.mf-benefits .flex-item-wrap .flex-item{width:50%;text-align:center}}.overview section.real-time-data{background:#0B99C2;background-image:url("../img/svg/bg-clouds.svg"),-webkit-linear-gradient(right, #6BE6B6, #0B99C2);background-image:url("../img/svg/bg-clouds.svg"),linear-gradient(to left, #6BE6B6, #0B99C2);background-repeat:no-repeat;background-position:center bottom;background-size:cover}.overview section.real-time-data p.accent{margin-bottom:.5rem}@media (min-width: 992px){.overview section.real-time-data p.accent{text-align:left}}.overview section.real-time-data .content{-webkit-box-flex:1;-ms-flex:1 2 65%;flex:1 2 65%}@media (min-width: 992px){.overview section.real-time-data .content .cta.secondary{margin-left:0}}@media (min-width: 1200px){.overview section.real-time-data .content h2{text-align:left}.overview section.real-time-data .content h2+p{text-align:left}}.overview section.real-time-data .asset{-webkit-box-flex:0;-ms-flex:0 2 46%;flex:0 2 46%}.overview section.real-time-data .reasons{background:#455a64;padding:2rem 1.5rem;margin:2rem auto;box-shadow:0 6px 12px rgba(0,0,0,0.23),0 10px 40px rgba(0,0,0,0.19)}@media (min-width: 1200px){.overview section.real-time-data .reasons{padding:2rem 2rem 2.5rem}}.overview section.real-time-data .reasons ol{list-style-type:none;padding:0;margin-top:2rem}.overview section.real-time-data .reasons ol li{color:#fff;position:relative;padding-left:3.5rem;margin:1rem 0;min-height:3rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.overview section.real-time-data .reasons ol li span{background:#F5D666;height:48px;width:48px;display:block;border-radius:27px 3px 27px 3px;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:24px;font-weight: 1000;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:absolute;left:0}.overview section.collaboration{background:#455a64}@media (min-width: 992px){.overview section.collaboration .secondary.cta{margin-left:0;margin-right:0}}.overview section.collaboration h2{margin-bottom:3rem}@media (min-width: 992px){.overview section.collaboration .flex-col-wrap{width:90vw;margin:0 auto;display:-webkit-box;display:-ms-flexbox;display:flex}}.overview section.collaboration .flex-col-wrap .flex-col.content{margin-top:2rem;margin-bottom:3rem}.overview section.collaboration .flex-col-wrap .flex-col.content p.accent{text-align:center}@media (min-width: 992px){.overview section.collaboration .flex-col-wrap .flex-col.content p.accent{text-align:left}}.overview section.collaboration .flex-col-wrap .flex-col.asset div{text-align:center}.overview section.collaboration .flex-col-wrap .flex-col.asset div img{max-width:500px;margin:0 auto}@media (min-width: 992px){.overview section.collaboration .flex-col-wrap .flex-col.content{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.overview section.collaboration .flex-col-wrap .flex-col.asset{text-align:right;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.overview section.collaboration .flex-col-wrap .flex-col.asset div{padding-right:4rem;text-align:right}}@media (min-width: 1200px){.overview section.collaboration .flex-col-wrap .flex-col.content{-webkit-box-flex:2;-ms-flex:2 0 62%;flex:2 0 62%}}.overview section.integrations{padding-bottom:2.5rem}.overview section.integrations .asset{margin-top:3rem;text-align:center}.overview section.integrations .asset img{max-width:1200px;display:inline-block;margin:0 auto}.employee-evaluation-form .grad-header{padding-bottom:2rem}@media screen and (min-width: 992px){.employee-evaluation-form .grad-header{padding-bottom:4rem}}.employee-evaluation-form .grad-header .content-start{padding-top:6rem}@media screen and (min-width: 1200px){.employee-evaluation-form .grad-header .content-start{padding-top:8rem}}.employee-evaluation-form .grad-header .grad-elements{top:-7vw;-webkit-transform:skewY(-7deg);transform:skewY(-7deg)}@media screen and (min-width: 992px){.employee-evaluation-form .grad-header .options .cta.primary.btn{margin-left:0}}.employee-evaluation-form .grad-header .flex-item-wrap{margin:0 auto;width:100%;display:block}@media screen and (min-width: 992px){.employee-evaluation-form .grad-header .flex-item-wrap{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;display:-webkit-box;display:-ms-flexbox;display:flex}}@media screen and (min-width: 992px){.employee-evaluation-form .grad-header .flex-item-wrap .flex-item{-webkit-box-flex:1;-ms-flex:1 2 41%;flex:1 2 41%}.employee-evaluation-form .grad-header .flex-item-wrap .flex-item.header-content{-webkit-box-flex:0;-ms-flex:0 1 48%;flex:0 1 48%;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;max-width:800px;padding-right:4rem}.employee-evaluation-form .grad-header .flex-item-wrap .flex-item.header-asset{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;max-width:700px}}@media screen and (min-width: 1200px){.employee-evaluation-form .grad-header .flex-item-wrap .flex-item.header-content{padding-left:3.5rem}}.employee-evaluation-form .header-asset{position:relative}.employee-evaluation-form .header-asset img{width:100%;margin-bottom:2rem}@media screen and (min-width: 992px){.employee-evaluation-form .header-asset img{position:absolute;left:0;top:5rem}}.employee-evaluation-form .header-content p{color:#fff}@media screen and (min-width: 992px){.employee-evaluation-form .header-content{text-align:left}}.employee-evaluation-form .existing-forms{position:relative}.employee-evaluation-form .existing-forms h2,.employee-evaluation-form .existing-forms p{text-align:center}@media screen and (min-width: 992px){.employee-evaluation-form .existing-forms h2,.employee-evaluation-form .existing-forms p{text-align:left}}.employee-evaluation-form .existing-forms .flex-item-wrap{margin-top:3rem;display:block}@media screen and (min-width: 992px){.employee-evaluation-form .existing-forms .flex-item-wrap{display:block;position:relative;left:48.5%;width:44%;max-width:800px}}@media screen and (min-width: 1200px){.employee-evaluation-form .existing-forms .flex-item-wrap{left:53%}}@media screen and (min-width: 1600px){.employee-evaluation-form .existing-forms .flex-item-wrap{left:52%}}.employee-evaluation-form .new-data-types{padding-top:0}@media screen and (min-width: 992px){.employee-evaluation-form .new-data-types{padding-top:3rem}.employee-evaluation-form .new-data-types h2{text-align:left}}@media screen and (min-width: 1200px){.employee-evaluation-form .new-data-types{padding-top:5rem}}.employee-evaluation-form .new-data-types .icon-list{padding-left:0;list-style-type:none;margin-top:1.5rem;margin:1rem auto}.employee-evaluation-form .new-data-types .icon-list li{padding-left:2.25em;line-height:2.8em}.employee-evaluation-form .new-data-types .icon-list li:nth-child(1){background:transparent url("../img/svg/icon-template-location.svg") no-repeat center left}.employee-evaluation-form .new-data-types .icon-list li:nth-child(2){background:transparent url("../img/svg/icon-template-image.svg") no-repeat center left}.employee-evaluation-form .new-data-types .icon-list li:nth-child(3){background:transparent url("../img/svg/icon-template-barcode.svg") no-repeat center left}.employee-evaluation-form .new-data-types .icon-list li:nth-child(4){background:transparent url("../img/svg/icon-template-sketch.svg") no-repeat center left}@media screen and (min-width: 768px){.employee-evaluation-form .smarter-forms .flex-item-wrap .flex-item{-webkit-box-flex:1;-ms-flex:1 1 44%;flex:1 1 44%}}@media screen and (min-width: 992px){.employee-evaluation-form .smarter-forms .flex-item-wrap .flex-item{-webkit-box-flex:1;-ms-flex:1 1 45%;flex:1 1 45%}}@media screen and (min-width: 1200px){.employee-evaluation-form .smarter-forms .flex-item-wrap .flex-item{-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-flex:1;-ms-flex:1 1 21.5%;flex:1 1 21.5%}}.employee-evaluation-form .smarter-forms .flex-item-wrap .flex-item p{font-size:.8em}.employee-evaluation-form .any-device{background:#0B99C2;background:url(https://goformzcdn.blob.core.windows.net/marketing/product/asset-forms-on-any-device@2x.png) bottom right no-repeat;background-image:url(https://goformzcdn.blob.core.windows.net/marketing/product/asset-forms-on-any-device@2x.png),-webkit-linear-gradient(312deg, #14B5EA 0%, #CD5A45 100%),url(https://goformzcdn.blob.core.windows.net/marketing/product/asset-forms-on-any-device@2x.png);background-image:url(https://goformzcdn.blob.core.windows.net/marketing/product/asset-forms-on-any-device@2x.png),linear-gradient(-222deg, #14B5EA 0%, #CD5A45 100%),url(https://goformzcdn.blob.core.windows.net/marketing/product/asset-forms-on-any-device@2x.png);background-size:106%, auto}@media screen and (min-width: 768px){.employee-evaluation-form .any-device{background-size:75%, auto}}@media screen and (min-width: 1200px){.employee-evaluation-form .any-device{background-size:78%, auto}}@media screen and (min-width: 1600px){.employee-evaluation-form .any-device{background-size:1556px, auto}}.employee-evaluation-form .any-device h2{text-align:left;max-width:1100px}.employee-evaluation-form .any-device h2+p{text-align:left}body.real-time-data .flex-stack-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;height:82vw}@media screen and (min-width: 768px){body.real-time-data .flex-stack-wrap{height:52vw}}@media screen and (min-width: 992px){body.real-time-data .flex-stack-wrap{height:46vw}}@media screen and (min-width: 1200px){body.real-time-data .flex-stack-wrap{height:41vw}}@media screen and (min-width: 1600px){body.real-time-data .flex-stack-wrap{height:35vw}}body.real-time-data .flex-stack-wrap .header-content{-ms-flex-item-align:end;align-self:flex-end;width:100%}body.real-time-data .flex-stack-wrap .header-asset{width:100%;position:relative;bottom:-1rem;-ms-flex-item-align:end;align-self:flex-end}@media screen and (min-width: 992px){body.real-time-data .flex-stack-wrap .header-asset{bottom:-2rem}}body.real-time-data .flex-stack-wrap .header-asset img{width:90vw;max-width:60rem}body.real-time-data .grad-header{padding-bottom:0;position:absolute;position:relative;top:-125px}@media screen and (min-width: 1600px){body.real-time-data .grad-header{top:-180px}}body.real-time-data .grad-header .grad-elements{-webkit-transform:skewY(-12deg);transform:skewY(-12deg)}body.real-time-data .grad-header .grad-elements .element.e1{background:#119CEE;background-image:url("../img/svg/bg-clouds.svg"),-webkit-linear-gradient(top right, #82F8A7 15%, #119CEE);background-image:url("../img/svg/bg-clouds.svg"),linear-gradient(to bottom left, #82F8A7 15%, #119CEE);background-repeat:no-repeat;background-position:center bottom}body.real-time-data .grad-header .content-start{padding-top:13rem}@media screen and (min-width: 768px){body.real-time-data .grad-header .content-start{padding-top:16rem}}body.real-time-data .quick-fill{padding-top:0}@media screen and (min-width: 768px){body.real-time-data .quick-fill{padding-top:7rem;text-align:left}}@media screen and (min-width: 768px){body.real-time-data .quick-fill .content h2{text-align:left}body.real-time-data .quick-fill .content h2+p{text-align:left}}@media screen and (min-width: 1200px){body.real-time-data .quick-fill .content{padding-right:3rem}}body.real-time-data .quick-fill .asset img{width:100%;max-width:580px}body.real-time-data .cloud{background:#119CEE;background-image:url("../img/svg/bg-clouds.svg"),-webkit-linear-gradient(bottom right, #82F8A7 5%, #119CEE 85%);background-image:url("../img/svg/bg-clouds.svg"),linear-gradient(to top left, #82F8A7 5%, #119CEE 85%);background-repeat:no-repeat;background-position:center bottom;text-align:center}body.real-time-data .cloud h2{text-align:center}body.real-time-data .cloud h2+p{text-align:center}body.real-time-data .cloud .flex-item-wrap{margin-bottom:2rem;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}body.real-time-data .cloud .flex-item-wrap .flex-item{-webkit-box-flex:0;-ms-flex:0 1 31%;flex:0 1 31%;margin-left:1%;margin-right:1%;margin-bottom:1rem;background:#455a64}body.real-time-data .cloud .flex-item-wrap .flex-item div{padding:1.5rem 1rem}body.real-time-data .cloud .flex-item-wrap .flex-item div h4{color:#E9EEF4;-webkit-box-flex:1;-ms-flex:1;flex:1}body.real-time-data .cloud .flex-item-wrap .flex-item div p{-webkit-box-flex:1;-ms-flex:1;flex:1;color:#fff}body.real-time-data .cloud a{color:#fff;text-decoration:underline}body.real-time-data .cloud .pond{width:70%;margin:0 auto 1rem}@media screen and (min-width: 768px){body.real-time-data .cloud .pond{width:50%}}@media screen and (min-width: 1200px){body.real-time-data .cloud .pond{width:60%}}body.real-time-data .cloud .pond>div{-ms-flex-pack:distribute;justify-content:space-around;-webkit-box-flex:0 !important;-ms-flex:0 0 33% !important;flex:0 0 33% !important}body.real-time-data .cloud .pond>div div{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}@media screen and (min-width: 768px){body.real-time-data .cloud .pond>div div svg{max-height:3.25rem}}body.real-time-data .reporting{background:#0B99C2;background:url("../img/svg/bg-climbing-chart.svg"),#455a64;background-repeat:no-repeat;background-position:center bottom;background-size:101%;padding-bottom:0}@media screen and (min-width: 992px){body.real-time-data .reporting{padding-bottom:4rem}}@media screen and (min-width: 1200px){body.real-time-data .reporting{padding-bottom:7rem}}body.real-time-data .reporting h2+p{color:#fff}body.real-time-data .reporting .flex-col-wrap{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;width:94vw;max-width:1600px}@media screen and (min-width: 992px){body.real-time-data .reporting .flex-col-wrap .flex-col.content{-webkit-box-flex:1;-ms-flex:1 1 36%;flex:1 1 36%}}body.real-time-data .reporting .flex-col-wrap .flex-col.content p.accent{text-align:center}@media screen and (min-width: 992px){body.real-time-data .reporting .flex-col-wrap .flex-col.content p.accent{text-align:left}}body.real-time-data .reporting .flex-col-wrap .flex-col.asset img{width:100%;max-width:830px}@media screen and (min-width: 1200px){body.real-time-data .reporting .flex-col-wrap .flex-col.asset img{margin-top:3rem}}@media screen and (min-width: 1200px){body.real-time-data .reporting .flex-col-wrap .flex-col.asset{-webkit-box-flex:1;-ms-flex:1 1 64%;flex:1 1 64%}}.collaboration .grad-header{padding-bottom:0}.collaboration .grad-header .grad-elements{top:-125px}@media screen and (min-width: 1600px){.collaboration .grad-header .grad-elements{top:-180px}}.collaboration .grad-header .grad-elements .element.e1{background-image:-webkit-linear-gradient(52deg, #0B99C2 45%, #29d6c7 98%);background-image:-webkit-linear-gradient(308deg, #0B99C2 45%, #29d6c7 98%);background-image:linear-gradient(142deg, #0B99C2 45%, #29d6c7 98%)}.collaboration .grad-header .header-asset{margin-top:1.5rem}@media screen and (min-width: 768px){.collaboration .grad-header .header-asset{margin-top:3rem}}.collaboration .grad-header .header-asset img{width:100%;max-width:918px;margin:0 auto}.collaboration .manage-events{margin-top:3rem;padding-bottom:1rem}.collaboration .manage-events .tidbits{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-line-pack:center;align-content:center;margin:.25rem 0 1rem}.collaboration .manage-events .tidbits .tidbit{width:96%;margin:0 auto;line-height:24px}@media screen and (min-width: 768px){.collaboration .manage-events .tidbits .tidbit{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.collaboration .manage-events .tidbits .tidbit div.asset{-webkit-box-flex:0;-ms-flex:0 1 50px;flex:0 1 50px}.collaboration .manage-events .tidbits .tidbit div.content{-webkit-box-flex:0;-ms-flex:0 1 100%;flex:0 1 100%}}.collaboration .manage-events .tidbits .tidbit h4{margin-bottom:0}.integrations .grad-header{padding-bottom:0}@media screen and (min-width: 768px){.integrations .grad-header .grad-elements{max-height:37.5rem}}.integrations .grad-header .grad-elements .element.e1{background:-webkit-linear-gradient(332deg, #14B5EA 20%, #6770EB 80%);background:linear-gradient(-242deg, #14B5EA 20%, #6770EB 80%)}.integrations .grad-header .grad-elements .element.e2{background:rgba(255,255,255,0.04)}.integrations .grad-header .grad-elements .element.e3{background:rgba(255,255,255,0.04)}.integrations .grad-header .header-content{max-width:1200px;margin:0 auto}.integrations .grad-header .header-content h5{color:#fff;margin-top:2rem}.integrations .grad-header .tile-options{max-width:900px;margin:2rem auto}@media screen and (min-width: 768px){.integrations .grad-header .tile-options .step{width:auto;-webkit-box-flex:0;-ms-flex:0 1 46%;flex:0 1 46%;box-shadow:0 3px 12px rgba(0,0,0,0.23),0 3px 12px rgba(0,0,0,0.16)}}.integrations .grad-header .tile-options .step .card{padding:1rem}.integrations .grad-header .tile-options .step .asset{width:96%;margin:0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-pack:distribute;justify-content:space-around;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media screen and (min-width: 992px){.integrations .grad-header .tile-options .step .asset{width:90%}}.integrations .grad-header .tile-options .step .asset svg{width:50%}.integrations .section-intro{margin-bottom:3rem}.integrations .zapier-connections{padding:1rem 0;padding-bottom:0}.integrations .zapier-connections .section-intro img{display:block;margin:1rem auto 0;margin-bottom:2.5rem}.integrations .zapier-connections .zap-container{background:#e8ebec;padding-top:2rem;padding-bottom:2rem;position:relative}.integrations .zapier-connections .zap-container:before{content:"";width:4px;height:2rem;background:#e8ebec;position:absolute;left:50%;top:-2rem;margin-left:-2px}.integrations .zapier-connections .flex-item-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:0 auto 1rem;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;max-width:1150px}.integrations .zapier-connections .flex-item-wrap .flex-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;margin:.75rem auto;-webkit-box-flex:1;-ms-flex:1 0 45%;flex:1 0 45%;padding-left:.5rem;padding-right:.5rem}@media screen and (min-width: 768px){.integrations .zapier-connections .flex-item-wrap .flex-item{margin:.75rem;-webkit-box-flex:0;-ms-flex:0 1 198px;flex:0 1 198px}}.integrations .zapier-connections .flex-item-wrap .flex-item .mini-card{box-shadow:0 3px 12px rgba(0,0,0,0.23),0 3px 12px rgba(0,0,0,0.16);height:130px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:1rem .5rem;padding-top:.5rem;padding-bottom:.5rem;background:#fff;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.integrations .zapier-connections .flex-item-wrap .flex-item .mini-card img{width:auto;height:auto}.integrations .results .section-intro{margin-bottom:3rem}.integrations .results .flex-col-wrap{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.integrations .results .flex-col-wrap .flex-col:first-child{max-width:450px;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.integrations .results .flex-col-wrap .flex-col:last-child{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;-webkit-box-flex:0;-ms-flex:0 1 50%;flex:0 1 50%}.integrations .results .flex-col-wrap .flex-col figure{background:#fff;max-width:450px;box-shadow:0 6px 12px rgba(0,0,0,0.23),0 10px 40px rgba(0,0,0,0.19);margin-bottom:2rem}.integrations .results .flex-col-wrap .flex-col figure img{position:relative;left:50%;margin-left:-145px;padding:2rem 1rem}.integrations .results .checklist{margin-top:1.5rem;padding-left:0}@media screen and (min-width: 992px){.integrations .results .checklist{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}}.integrations .results .checklist li{padding-left:1.5rem;margin-bottom:.5rem;background-size:.825rem}@media screen and (min-width: 992px){.integrations .results .checklist li{-webkit-box-flex:1;-ms-flex:1 1 50%;flex:1 1 50%}}.integrations .api{background-image:-webkit-linear-gradient(bottom, #445A64 0%, #042839 50%);background-image:linear-gradient(0deg, #445A64 0%, #042839 50%);color:#e8ebec}.integrations .api .flex-col-wrap{margin-bottom:1rem}.integrations .api .flex-col-wrap .flex-col:first-child svg{float:left;margin-right:1rem;position:relative;top:-.0C11193rem}.integrations .api .flex-col-wrap .flex-col:first-child h3{margin-bottom:1rem}@media screen and (min-width: 1200px){.integrations .api .flex-col-wrap .flex-col:first-child div{padding-right:6rem}}.integrations .api .flex-col-wrap .flex-col .col-option{background:#3e5c6b;padding:1rem 2rem;margin-bottom:2rem}@media screen and (min-width: 768px){.integrations .api .options{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}.integrations .api .options a.cta.btn{display:block}.integrations .api .options a.cta.btn.primary{background:#F5D666;color:#0C1119}.integrations .api .cross-nav.inverted a{color:#0B99C2} 

.employee-evaluation-form .grad-header{padding-bottom:2rem}@media screen and (min-width: 992px){.employee-evaluation-form .grad-header{padding-bottom:4rem}}.employee-evaluation-form .grad-header .content-start{padding-top:6rem}@media screen and (min-width: 1200px){.employee-evaluation-form .grad-header .content-start{padding-top:8rem}}.employee-evaluation-form .grad-header .grad-elements{top:-7vw;-webkit-transform:skewY(-7deg);transform:skewY(-7deg)}@media screen and (min-width: 992px){.employee-evaluation-form .grad-header .options .cta.primary.btn{margin-left:0}}.employee-evaluation-form .grad-header .flex-item-wrap{margin:0 auto;width:100%;display:block}@media screen and (min-width: 992px){.employee-evaluation-form .grad-header .flex-item-wrap{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;display:-webkit-box;display:-ms-flexbox;display:flex}}@media screen and (min-width: 992px){.employee-evaluation-form .grad-header .flex-item-wrap .flex-item{-webkit-box-flex:1;-ms-flex:1 2 41%;flex:1 2 41%}.employee-evaluation-form .grad-header .flex-item-wrap .flex-item.header-content{-webkit-box-flex:0;-ms-flex:0 1 48%;flex:0 1 48%;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;max-width:800px;padding-right:4rem}.employee-evaluation-form .grad-header .flex-item-wrap .flex-item.header-asset{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;max-width:700px}}@media screen and (min-width: 1200px){.employee-evaluation-form .grad-header .flex-item-wrap .flex-item.header-content{padding-left:3.5rem}}.employee-evaluation-form .header-asset{position:relative}.employee-evaluation-form .header-asset img{width:100%;margin-bottom:2rem}@media screen and (min-width: 992px){.employee-evaluation-form .header-asset img{position:absolute;left:0;top:5rem}}.employee-evaluation-form .header-content p{color:#fff}@media screen and (min-width: 992px){.employee-evaluation-form .header-content{text-align:left}}.employee-evaluation-form .existing-forms{position:relative}.employee-evaluation-form .existing-forms h2,.employee-evaluation-form .existing-forms p{text-align:center}@media screen and (min-width: 992px){.employee-evaluation-form .existing-forms h2,.employee-evaluation-form .existing-forms p{text-align:left}}.employee-evaluation-form .existing-forms .flex-item-wrap{margin-top:3rem;display:block}@media screen and (min-width: 992px){.employee-evaluation-form .existing-forms .flex-item-wrap{display:block;position:relative;left:48.5%;width:44%;max-width:800px}}@media screen and (min-width: 1200px){.employee-evaluation-form .existing-forms .flex-item-wrap{left:53%}}@media screen and (min-width: 1600px){.employee-evaluation-form .existing-forms .flex-item-wrap{left:52%}}.employee-evaluation-form .new-data-types{padding-top:0}@media screen and (min-width: 992px){.employee-evaluation-form .new-data-types{padding-top:3rem}.employee-evaluation-form .new-data-types h2{text-align:left}}@media screen and (min-width: 1200px){.employee-evaluation-form .new-data-types{padding-top:5rem}}.employee-evaluation-form .new-data-types .icon-list{padding-left:0;list-style-type:none;margin-top:1.5rem;margin:1rem auto}.employee-evaluation-form .new-data-types .icon-list li{padding-left:2.25em;line-height:2.8em}.employee-evaluation-form .new-data-types .icon-list li:nth-child(1){background:transparent url("../img/svg/icon-template-location.svg") no-repeat center left}.employee-evaluation-form .new-data-types .icon-list li:nth-child(2){background:transparent url("../img/svg/icon-template-image.svg") no-repeat center left}.employee-evaluation-form .new-data-types .icon-list li:nth-child(3){background:transparent url("../img/svg/icon-template-barcode.svg") no-repeat center left}.employee-evaluation-form .new-data-types .icon-list li:nth-child(4){background:transparent url("../img/svg/icon-template-sketch.svg") no-repeat center left}@media screen and (min-width: 768px){.employee-evaluation-form .smarter-forms .flex-item-wrap .flex-item{-webkit-box-flex:1;-ms-flex:1 1 44%;flex:1 1 44%}}@media screen and (min-width: 992px){.employee-evaluation-form .smarter-forms .flex-item-wrap .flex-item{-webkit-box-flex:1;-ms-flex:1 1 45%;flex:1 1 45%}}@media screen and (min-width: 1200px){.employee-evaluation-form .smarter-forms .flex-item-wrap .flex-item{-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-flex:1;-ms-flex:1 1 21.5%;flex:1 1 21.5%}}.employee-evaluation-form .smarter-forms .flex-item-wrap .flex-item p{font-size:.8em}.employee-evaluation-form .any-device{background:#0B99C2;background:url(https://goformzcdn.blob.core.windows.net/marketing/product/asset-forms-on-any-device@2x.png) bottom right no-repeat;background-image:url(https://goformzcdn.blob.core.windows.net/marketing/product/asset-forms-on-any-device@2x.png),-webkit-linear-gradient(312deg, #14B5EA 0%, #CD5A45 100%),url(https://goformzcdn.blob.core.windows.net/marketing/product/asset-forms-on-any-device@2x.png);background-image:url(https://goformzcdn.blob.core.windows.net/marketing/product/asset-forms-on-any-device@2x.png),linear-gradient(-222deg, #14B5EA 0%, #CD5A45 100%),url(https://goformzcdn.blob.core.windows.net/marketing/product/asset-forms-on-any-device@2x.png);background-size:106%, auto}@media screen and (min-width: 768px){.employee-evaluation-form .any-device{background-size:75%, auto}}@media screen and (min-width: 1200px){.employee-evaluation-form .any-device{background-size:78%, auto}}@media screen and (min-width: 1600px){.employee-evaluation-form .any-device{background-size:1556px, auto}}.employee-evaluation-form .any-device h2{text-align:left;max-width:1100px}.employee-evaluation-form .any-device h2+p{text-align:left}

/* generic header for marketo case studies */

.grad-header-img-generic{background-color:#0B99C2;background-position:center center;background-repeat:no-repeat;background-size:cover;padding-bottom:2rem;padding-top:0;height:30vw;min-height:24rem;max-height:32rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.grad-header-img-generic .content-start{padding-top:0}.grad-header-img-generic .header-content p{color:#fff}.section-intro{margin-bottom:2rem}.sitemix-concrete-construction-mobile-forms-case-study .grad-header-img-generic{background-image:url("../img/generic-cs-bg.png")}

.grad-header-img-generic{background-color:#0B99C2;background-position:center center;background-repeat:no-repeat;background-size:cover;padding-bottom:2rem;padding-top:0;height:30vw;min-height:24rem;max-height:32rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.grad-header-img-generic .content-start{padding-top:0}.grad-header-img-generic .header-content p{color:#fff}.section-intro{margin-bottom:2rem}.generic-case-study .grad-header-img-generic{background-image:url("../img/generic-cs-bg.png")}

/* all other case studies - duplicate these sections and replace and update the company name, replace the unique url, and image name you'll be using for the background */

.grad-header-img-kaw-valley{background-color:#0B99C2;background-position:center center;background-repeat:no-repeat;background-size:cover;padding-bottom:2rem;padding-top:0;height:30vw;min-height:24rem;max-height:32rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.grad-header-img-kaw-valley .content-start{padding-top:0}.grad-header-img-kaw-valley .header-content p{color:#fff}.section-intro{margin-bottom:2rem}.kaw-valley-retail-case-study .grad-header-img-kaw-valley{background-image:url("../img/kaw-valley-hero.jpg")}

.grad-header-img-farrans{background-color:#0B99C2;background-position:center center;background-repeat:no-repeat;background-size:cover;padding-bottom:2rem;padding-top:0;height:30vw;min-height:24rem;max-height:32rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.grad-header-img-farrans .content-start{padding-top:0}.grad-header-img-farrans .header-content p{color:#fff}.section-intro{margin-bottom:2rem}.farrans-construction-and-engineering-case-study .grad-header-img-farrans{background-image:url("../img/farrans2-6662.jpg")}

.grad-header-img-ntl-pipelines{background-color:#0B99C2;background-position:center center;background-repeat:no-repeat;background-size:cover;padding-bottom:2rem;padding-top:0;height:30vw;min-height:24rem;max-height:32rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.grad-header-img-ntl-pipelines .content-start{padding-top:0}.grad-header-img-ntl-pipelines .header-content p{color:#fff}.section-intro{margin-bottom:2rem}.ntl-pipelines-mobile-forms-case-study .grad-header-img-ntl-pipelines{background-image:url("../img/ntl-pipelines-hero.jpg")}

.grad-header-img-lsse{background-color:#0B99C2;background-position:center center;background-repeat:no-repeat;background-size:cover;padding-bottom:2rem;padding-top:0;height:30vw;min-height:24rem;max-height:32rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.grad-header-img-lsse .content-start{padding-top:0}.grad-header-img-lsse .header-content p{color:#fff}.section-intro{margin-bottom:2rem}.lennon-smith-souleret-engineering-mobile-forms-case-study .grad-header-img-lsse{background-image:url("../img/lsse-engineering-hero.jpg")}

.grad-header-img-robert-henry{background-color:#0B99C2;background-position:center center;background-repeat:no-repeat;background-size:cover;padding-bottom:2rem;padding-top:0;height:30vw;min-height:24rem;max-height:32rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.grad-header-img-robert-henry .content-start{padding-top:0}.grad-header-img-robert-henry .header-content p{color:#fff}.section-intro{margin-bottom:2rem}.robert-henry-corporation-mobile-forms-construction-case-study .grad-header-img-robert-henry{background-image:url("../img/robert-henry-hero.jpg")}

.grad-header-img-arcamerican{background-color:#0B99C2;background-position:center center;background-repeat:no-repeat;background-size:cover;padding-bottom:2rem;padding-top:0;height:30vw;min-height:24rem;max-height:32rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.grad-header-img-arcamerican .content-start{padding-top:0}.grad-header-img-arcamerican .header-content p{color:#fff}.section-intro{margin-bottom:2rem}.arc-american-case-study-goformz-mobile-forms-and-smartsheet .grad-header-img-arcamerican{background-image:url("../img/arcamerican-hero.jpg")}

.grad-header-img-municipal{background-color:#0B99C2;background-position:center center;background-repeat:no-repeat;background-size:cover;padding-bottom:2rem;padding-top:0;height:30vw;min-height:24rem;max-height:32rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.grad-header-img-municipal .content-start{padding-top:0}.grad-header-img-municipal .header-content p{color:#fff}.section-intro{margin-bottom:2rem}.municipal-well-and-pump-construction-mobile-forms-case-study .grad-header-img-municipal{background-image:url("../img/municipal-well-and-pump-hero.jpg")}

.grad-header-img-hl-training-services{background-color:#0B99C2;background-position:center center;background-repeat:no-repeat;background-size:cover;padding-bottom:2rem;padding-top:0;height:30vw;min-height:24rem;max-height:32rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.grad-header-img-hl-training-services .content-start{padding-top:0}.grad-header-img-hl-training-services .header-content p{color:#fff}.section-intro{margin-bottom:2rem}.hl-training-services .grad-header-img-hl-training-services{background-image:url("../img/hl-training-services-forklift.jpg")}

.grad-header-img-jaguar{background-color:#0B99C2;background-position:center center;background-repeat:no-repeat;background-size:cover;padding-bottom:2rem;padding-top:0;height:30vw;min-height:24rem;max-height:32rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.grad-header-img-jaguar .content-start{padding-top:0}.grad-header-img-jaguar .header-content p{color:#fff}.section-intro{margin-bottom:2rem}.jaguar-coffee-mobile-forms-case-study .grad-header-img-jaguar{background-image:url("../img/jaguar-coffee-hero.jpg")}

.grad-header-img-wellspring{background-color:#0B99C2;background-position:center center;background-repeat:no-repeat;background-size:cover;padding-bottom:2rem;padding-top:0;height:30vw;min-height:24rem;max-height:32rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.grad-header-img-wellspring .content-start{padding-top:0}.grad-header-img-wellspring .header-content p{color:#fff}.section-intro{margin-bottom:2rem}.wellspring-mobile-forms-case-study .grad-header-img-wellspring{background-image:url("../img/wellspring-therapy-hero.jpg")}

.grad-header-img-octink{background-color:#0B99C2;background-position:center center;background-repeat:no-repeat;background-size:cover;padding-bottom:2rem;padding-top:0;height:30vw;min-height:24rem;max-height:32rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.grad-header-img-octink .content-start{padding-top:0}.grad-header-img-octink .header-content p{color:#fff}.section-intro{margin-bottom:2rem}.octink-case-study .grad-header-img-octink{background-image:url("../img/octink-case-study-hero.jpg")}

.grad-header-img-oscar-larson{background-color:#0B99C2;background-position:center center;background-repeat:no-repeat;background-size:cover;padding-bottom:2rem;padding-top:0;height:30vw;min-height:24rem;max-height:32rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.grad-header-img-oscar-larson .content-start{padding-top:0}.grad-header-img-oscar-larson .header-content p{color:#fff}.section-intro{margin-bottom:2rem}.mobile-energy-inspection-audit-forms-at-Oscar-W-Larson .grad-header-img-oscar-larson{background-image:url("../img/oscar-larson-case-study-hero.jpg")}

.grad-header-img-oscar-larson{background-color:#0B99C2;background-position:center center;background-repeat:no-repeat;background-size:cover;padding-bottom:2rem;padding-top:0;height:30vw;min-height:24rem;max-height:32rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.grad-header-img-oscar-larson .content-start{padding-top:0}.grad-header-img-oscar-larson .header-content p{color:#fff}.section-intro{margin-bottom:2rem}.digital-tools-to-empower-field-teams .grad-header-img-oscar-larson{background-image:url("../img/oscar-larson-case-study-hero.jpg")}

.grad-header-img-construction-ebook{background-color:#0B99C2;background-position:center center;background-repeat:no-repeat;background-size:cover;padding-bottom:2rem;padding-top:0;height:30vw;min-height:24rem;max-height:32rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.grad-header-img-construction-ebook .content-start{padding-top:0}.grad-header-img-construction-ebook .header-content p{color:#fff}.section-intro{margin-bottom:2rem}.ebook-7-common-use-cases-for-construction-mobile-forms .grad-header-img-construction-ebook{background-image:url("../img/ebook-7-common-uses-hero.jpg")}

.grad-header-img-chartworld{background-color:#0B99C2;background-position:center center;background-repeat:no-repeat;background-size:cover;padding-bottom:2rem;padding-top:0;height:30vw;min-height:24rem;max-height:32rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.grad-header-img-chartworld .content-start{padding-top:0}.grad-header-img-chartworld.header-content p{color:#fff}.section-intro{margin-bottom:2rem}.chartworld-case-study .grad-header-img-chartworld{background-image:url("../img/chartworld-case-study-hero.jpg")}

.grad-header-img-roadbridge{background-color:#0B99C2;background-position:center center;background-repeat:no-repeat;background-size:cover;padding-bottom:2rem;padding-top:0;height:30vw;min-height:24rem;max-height:32rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.grad-header-img-roadbridge .content-start{padding-top:0}.grad-header-img-roadbridge.header-content p{color:#fff}.section-intro{margin-bottom:2rem}.roadbridge-and-digital-health-screening-forms-case-study .grad-header-img-roadbridge{background-image:url("../img/roadbridge-case-study-hero.jpg")}

.grad-header-img-leaps-and-bounds{background-color:#0B99C2;background-position:center center;background-repeat:no-repeat;background-size:cover;padding-bottom:2rem;padding-top:0;height:30vw;min-height:24rem;max-height:32rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.grad-header-img-leaps-and-bounds .content-start{padding-top:0}.grad-header-img-leaps-and-bounds.header-content p{color:#fff}.section-intro{margin-bottom:2rem}.leaps-and-bounds-case-study .grad-header-img-leaps-and-bounds{background-image:url("../img/leaps-and-bounds-hero.jpg")}

.grad-header-img-guntner{background-color:#0B99C2;background-position:center center;background-repeat:no-repeat;background-size:cover;padding-bottom:2rem;padding-top:0;height:30vw;min-height:24rem;max-height:32rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.grad-header-img-guntner .content-start{padding-top:0}.grad-header-img-guntner.header-content p{color:#fff}.section-intro{margin-bottom:2rem}.guntner-us-case-study .grad-header-img-guntner{background-image:url("../img/guntner-us-case-study-hero.jpg")}

.grad-header-img-romo{background-color:#0B99C2;background-position:center center;background-repeat:no-repeat;background-size:cover;padding-bottom:2rem;padding-top:0;height:30vw;min-height:24rem;max-height:32rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.grad-header-img-romo .content-start{padding-top:0}.grad-header-img-romo.header-content p{color:#fff}.section-intro{margin-bottom:2rem}.romo-durable-graphics-case-study .grad-header-img-romo{background-image:url("../img/romo-durable-graphics-case-study-hero.jpg")}

.grad-header-img-la-nacional{background-color:#0B99C2;background-position:center center;background-repeat:no-repeat;background-size:cover;padding-bottom:2rem;padding-top:0;height:30vw;min-height:24rem;max-height:32rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.grad-header-img-la-nacional .content-start{padding-top:0}.grad-header-img-la-nacional.header-content p{color:#fff}.section-intro{margin-bottom:2rem}.la-nacional-case-study .grad-header-img-la-nacional{background-image:url("../img/la-nacional-cs-hero.jpg")}

.grad-header-img-omega{background-color:#0B99C2;background-position:center center;background-repeat:no-repeat;background-size:cover;padding-bottom:2rem;padding-top:0;height:30vw;min-height:24rem;max-height:32rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.grad-header-img-omega .content-start{padding-top:0}.grad-header-img-omega.header-content p{color:#fff}.section-intro{margin-bottom:2rem}.omega-construction-case-study .grad-header-img-omega{background-image:url("../img/omega-construction-cs-hero.jpg")}

.grad-header-img-goldwind{background-color:#0B99C2;background-position:center center;background-repeat:no-repeat;background-size:cover;padding-bottom:2rem;padding-top:0;height:30vw;min-height:24rem;max-height:32rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.grad-header-img-goldwind .content-start{padding-top:0}.grad-header-img-goldwind.header-content p{color:#fff}.section-intro{margin-bottom:2rem}.goldwind-usa-case-study .grad-header-img-goldwind{background-image:url("../img/wind-energy-turbines.jpg")}

.grad-header-img-pipe-line{background-color:#0B99C2;background-position:center center;background-repeat:no-repeat;background-size:cover;padding-bottom:2rem;padding-top:0;height:30vw;min-height:24rem;max-height:32rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.grad-header-img-pipe-line .content-start{padding-top:0}.grad-header-img-pipe-line.header-content p{color:#fff}.section-intro{margin-bottom:2rem}.pipe-line-unique-services-case-study .grad-header-img-pipe-line{background-image:url("../img/pipe-line-cs-hero.jpg")}

.grad-header-img-schenk{background-color:#0B99C2;background-position:center center;background-repeat:no-repeat;background-size:cover;padding-bottom:2rem;padding-top:0;height:30vw;min-height:24rem;max-height:32rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.grad-header-img-schenk .content-start{padding-top:0}.grad-header-img-schenk .header-content p{color:#fff}.section-intro{margin-bottom:2rem}.schenk-tanktransport-case-study-goformz-mobile-forms .grad-header-img-schenk{background-image:url("../img/schenk-hero.jpg")}

.grad-header-img-hendrix-heating{background-color:#0B99C2;background-position:center center;background-repeat:no-repeat;background-size:cover;padding-bottom:2rem;padding-top:0;height:30vw;min-height:24rem;max-height:32rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.grad-header-img-hendrix-heating .content-start{padding-top:0}.grad-header-img-hendrix-heating .header-content p{color:#fff}.section-intro{margin-bottom:2rem}.hendrix-heating-hvac-mobile-forms-case-study .grad-header-img-hendrix-heating{background-image:url("../img/goformz-customer-case-study-hendrix-heating-hvac.jpg")}

.grad-header-img-vertex-survey{background-color:#0B99C2;background-position:center center;background-repeat:no-repeat;background-size:cover;padding-bottom:2rem;padding-top:0;height:30vw;min-height:24rem;max-height:32rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.grad-header-img-vertex-survey .content-start{padding-top:0}.grad-header-img-vertex-survey .header-content p{color:#fff}.section-intro{margin-bottom:2rem}.vertex-mobile-forms-field-service-case-study .grad-header-img-vertex-survey{background-image:url("../img/goformz-customer-case-study-vertex-survey-inc-land-survey.jpg")}

.grad-header-img-deshazo{background-color:#0B99C2;background-position:center center;background-repeat:no-repeat;background-size:cover;padding-bottom:2rem;padding-top:0;height:30vw;min-height:24rem;max-height:32rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.grad-header-img-deshazo .content-start{padding-top:0}.grad-header-img-deshazo .header-content p{color:#fff}.section-intro{margin-bottom:2rem}.deshazo-machinery-case-study .grad-header-img-deshazo{background-image:url("../img/deshazo-crane.jpg")}

.grad-header-img-nqcranes{background-color:#0B99C2;background-position:center center;background-repeat:no-repeat;background-size:cover;padding-bottom:2rem;padding-top:0;height:30vw;min-height:24rem;max-height:32rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.grad-header-img-nqcranes .content-start{padding-top:0}.grad-header-img-nqcranes .header-content p{color:#fff}.section-intro{margin-bottom:2rem}.nq-cranes-case-study .grad-header-img-nqcranes{background-image:url("../img/nq-main.jpg")}

.grad-header-img-napipeline{background-color:#0B99C2;background-position:center center;background-repeat:no-repeat;background-size:cover;padding-bottom:2rem;padding-top:0;height:30vw;min-height:24rem;max-height:32rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.grad-header-img-napipeline .content-start{padding-top:0}.grad-header-img-napipeline .header-content p{color:#fff}.section-intro{margin-bottom:2rem}.na-pipelines-case-study .grad-header-img-napipeline{background-image:url("../img/na-pipeline-main.jpg")}


.grad-header-img-challenger{background-color:#0B99C2;background-position:center center;background-repeat:no-repeat;background-size:cover;padding-bottom:2rem;padding-top:0;height:30vw;min-height:24rem;max-height:32rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.grad-header-img-challenger .content-start{padding-top:0}.grad-header-img-challenger .header-content p{color:#fff}.section-intro{margin-bottom:2rem}.challenger-drilling-case-study .grad-header-img-challenger{background-image:url("../img/challenger-drilling-hero.jpg")}

.grad-header-img-oldcastle{background-color:#0B99C2;background-position:center center;background-repeat:no-repeat;background-size:cover;padding-bottom:2rem;padding-top:0;height:30vw;min-height:24rem;max-height:32rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.grad-header-img-oldcastle .content-start{padding-top:0}.grad-header-img-oldcastle .header-content p{color:#fff}.section-intro{margin-bottom:2rem}.mobile-quality-control-forms-at-Old-Castle .grad-header-img-oldcastle{background-image:url("../img/oldcastle-case-study-hero.jpg")}



.grad-header-img-icenhower{background-color:#0B99C2;background-position:center center;background-repeat:no-repeat;background-size:cover;padding-bottom:2rem;padding-top:0;height:30vw;min-height:24rem;max-height:32rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.grad-header-img-icenhower .content-start{padding-top:0}.grad-header-img-icenhower .header-content p{color:#fff}.section-intro{margin-bottom:2rem}.icenhower-oil-and-gas-case-study .grad-header-img-icenhower{background-image:url("../img/icenhower-main.jpg")}

.grad-header-img-crux{background-color:#0B99C2;background-position:center center;background-repeat:no-repeat;background-size:cover;padding-bottom:2rem;padding-top:0;height:30vw;min-height:24rem;max-height:32rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.grad-header-img-crux .content-start{padding-top:0}.grad-header-img-crux .header-content p{color:#fff}.section-intro{margin-bottom:2rem}.crux-subsurface-case-study .grad-header-img-crux{background-image:url("../img/crux-main.jpg")}

.inspection-forms .grad-header{padding-bottom:2rem}@media screen and (min-width: 992px){.inspection-forms .grad-header{padding-bottom:4rem}}.inspection-forms .grad-header .content-start{padding-top:6rem}@media screen and (min-width: 1200px){.inspection-forms .grad-header .content-start{padding-top:8rem}}.inspection-forms .grad-header .grad-elements{top:-7vw;-webkit-transform:skewY(-7deg);transform:skewY(-7deg)}@media screen and (min-width: 992px){.inspection-forms .grad-header .options .cta.primary.btn{margin-left:0}}.inspection-forms .grad-header .flex-item-wrap{margin:0 auto;width:100%;display:block}@media screen and (min-width: 992px){.inspection-forms .grad-header .flex-item-wrap{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;display:-webkit-box;display:-ms-flexbox;display:flex}}@media screen and (min-width: 992px){.inspection-forms .grad-header .flex-item-wrap .flex-item{-webkit-box-flex:1;-ms-flex:1 2 41%;flex:1 2 41%}.inspection-forms .grad-header .flex-item-wrap .flex-item.header-content{-webkit-box-flex:0;-ms-flex:0 1 48%;flex:0 1 48%;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;max-width:800px;padding-right:4rem}.inspection-forms .grad-header .flex-item-wrap .flex-item.header-asset{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;max-width:700px}}@media screen and (min-width: 1200px){.inspection-forms .grad-header .flex-item-wrap .flex-item.header-content{padding-left:3.5rem}}.inspection-forms .header-asset{position:relative}.inspection-forms .header-asset img{width:100%;margin-bottom:2rem}@media screen and (min-width: 992px){.inspection-forms .header-asset img{position:absolute;left:0;top:5rem}}.inspection-forms .header-content p{color:#fff}@media screen and (min-width: 992px){.inspection-forms .header-content{text-align:left}}.inspection-forms .existing-forms{position:relative}.inspection-forms .existing-forms h2,.inspection-forms .existing-forms p{text-align:center}@media screen and (min-width: 992px){.inspection-forms .existing-forms h2,.inspection-forms .existing-forms p{text-align:left}}.inspection-forms .existing-forms .flex-item-wrap{margin-top:3rem;display:block}@media screen and (min-width: 992px){.inspection-forms .existing-forms .flex-item-wrap{display:block;position:relative;left:48.5%;width:44%;max-width:800px}}@media screen and (min-width: 1200px){.inspection-forms .existing-forms .flex-item-wrap{left:53%}}@media screen and (min-width: 1600px){.inspection-forms .existing-forms .flex-item-wrap{left:52%}}.inspection-forms .new-data-types{padding-top:0}@media screen and (min-width: 992px){.inspection-forms .new-data-types{padding-top:3rem}.inspection-forms .new-data-types h2{text-align:left}}@media screen and (min-width: 1200px){.inspection-forms .new-data-types{padding-top:5rem}}.inspection-forms .new-data-types .icon-list{padding-left:0;list-style-type:none;margin-top:1.5rem;margin:1rem auto}.inspection-forms .new-data-types .icon-list li{padding-left:2.25em;line-height:2.8em}.inspection-forms .new-data-types .icon-list li:nth-child(1){background:transparent url("../img/svg/icon-template-location.svg") no-repeat center left}.inspection-forms .new-data-types .icon-list li:nth-child(2){background:transparent url("../img/svg/icon-template-image.svg") no-repeat center left}.inspection-forms .new-data-types .icon-list li:nth-child(3){background:transparent url("../img/svg/icon-template-barcode.svg") no-repeat center left}.inspection-forms .new-data-types .icon-list li:nth-child(4){background:transparent url("../img/svg/icon-template-sketch.svg") no-repeat center left}@media screen and (min-width: 768px){.inspection-forms .smarter-forms .flex-item-wrap .flex-item{-webkit-box-flex:1;-ms-flex:1 1 44%;flex:1 1 44%}}@media screen and (min-width: 992px){.inspection-forms .smarter-forms .flex-item-wrap .flex-item{-webkit-box-flex:1;-ms-flex:1 1 45%;flex:1 1 45%}}@media screen and (min-width: 1200px){.inspection-forms .smarter-forms .flex-item-wrap .flex-item{-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-flex:1;-ms-flex:1 1 21.5%;flex:1 1 21.5%}}.inspection-forms .smarter-forms .flex-item-wrap .flex-item p{font-size:.8em}.inspection-forms .any-device{background:#0B99C2;background:url(https://goformzcdn.blob.core.windows.net/marketing/product/asset-forms-on-any-device@2x.png) bottom right no-repeat;background-image:url(https://goformzcdn.blob.core.windows.net/marketing/product/asset-forms-on-any-device@2x.png),-webkit-linear-gradient(312deg, #14B5EA 0%, #CD5A45 100%),url(https://goformzcdn.blob.core.windows.net/marketing/product/asset-forms-on-any-device@2x.png);background-image:url(https://goformzcdn.blob.core.windows.net/marketing/product/asset-forms-on-any-device@2x.png),linear-gradient(-222deg, #14B5EA 0%, #CD5A45 100%),url(https://goformzcdn.blob.core.windows.net/marketing/product/asset-forms-on-any-device@2x.png);background-size:106%, auto}@media screen and (min-width: 768px){.inspection-forms .any-device{background-size:75%, auto}}@media screen and (min-width: 1200px){.inspection-forms .any-device{background-size:78%, auto}}@media screen and (min-width: 1600px){.inspection-forms .any-device{background-size:1556px, auto}}.inspection-forms .any-device h2{text-align:left;max-width:1100px}.inspection-forms .any-device h2+p{text-align:left}

.hipaa .grad-header{padding-bottom:2rem}@media screen and (min-width: 992px){.hipaa .grad-header{padding-bottom:4rem}}.hipaa .grad-header .content-start{padding-top:6rem}@media screen and (min-width: 1200px){.hipaa .grad-header .content-start{padding-top:8rem}}.hipaa .grad-header .grad-elements{top:-7vw;-webkit-transform:skewY(-7deg);transform:skewY(-7deg)}@media screen and (min-width: 992px){.hipaa .grad-header .options .cta.primary.btn{margin-left:0}}.hipaa .grad-header .flex-item-wrap{margin:0 auto;width:100%;display:block}@media screen and (min-width: 992px){.hipaa .grad-header .flex-item-wrap{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;display:-webkit-box;display:-ms-flexbox;display:flex}}@media screen and (min-width: 992px){.hipaa .grad-header .flex-item-wrap .flex-item{-webkit-box-flex:1;-ms-flex:1 2 41%;flex:1 2 41%}.hipaa .grad-header .flex-item-wrap .flex-item.header-content{-webkit-box-flex:0;-ms-flex:0 1 48%;flex:0 1 48%;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;max-width:800px;padding-right:4rem}.hipaa .grad-header .flex-item-wrap .flex-item.header-asset{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;max-width:700px}}@media screen and (min-width: 1200px){.hipaa .grad-header .flex-item-wrap .flex-item.header-content{padding-left:3.5rem}}.hipaa .header-asset{position:relative}.hipaa .header-asset img{width:100%;margin-bottom:2rem}@media screen and (min-width: 992px){.hipaa .header-asset img{position:absolute;left:0;top:5rem}}.hipaa .header-content p{color:#fff}@media screen and (min-width: 992px){.hipaa .header-content{text-align:left}}.hipaa .existing-forms{position:relative}.hipaa .existing-forms h2,.hipaa .existing-forms p{text-align:center}@media screen and (min-width: 992px){.hipaa .existing-forms h2,.hipaa .existing-forms p{text-align:left}}.hipaa .existing-forms .flex-item-wrap{margin-top:3rem;display:block}@media screen and (min-width: 992px){.hipaa .existing-forms .flex-item-wrap{display:block;position:relative;left:48.5%;width:44%;max-width:800px}}@media screen and (min-width: 1200px){.hipaa .existing-forms .flex-item-wrap{left:53%}}@media screen and (min-width: 1600px){.hipaa .existing-forms .flex-item-wrap{left:52%}}.hipaa .new-data-types{padding-top:0}@media screen and (min-width: 992px){.hipaa .new-data-types{padding-top:3rem}.hipaa .new-data-types h2{text-align:left}}@media screen and (min-width: 1200px){.hipaa .new-data-types{padding-top:5rem}}.hipaa .new-data-types .icon-list{padding-left:0;list-style-type:none;margin-top:1.5rem;margin:1rem auto}.hipaa .new-data-types .icon-list li{padding-left:2.25em;line-height:2.8em}.hipaa .new-data-types .icon-list li:nth-child(1){background:transparent url("../img/svg/icon-template-location.svg") no-repeat center left}.hipaa .new-data-types .icon-list li:nth-child(2){background:transparent url("../img/svg/icon-template-image.svg") no-repeat center left}.hipaa .new-data-types .icon-list li:nth-child(3){background:transparent url("../img/svg/icon-template-barcode.svg") no-repeat center left}.hipaa .new-data-types .icon-list li:nth-child(4){background:transparent url("../img/svg/icon-template-sketch.svg") no-repeat center left}@media screen and (min-width: 768px){.hipaa .smarter-forms .flex-item-wrap .flex-item{-webkit-box-flex:1;-ms-flex:1 1 44%;flex:1 1 44%}}@media screen and (min-width: 992px){.hipaa .smarter-forms .flex-item-wrap .flex-item{-webkit-box-flex:1;-ms-flex:1 1 45%;flex:1 1 45%}}@media screen and (min-width: 1200px){.hipaa .smarter-forms .flex-item-wrap .flex-item{-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-flex:1;-ms-flex:1 1 21.5%;flex:1 1 21.5%}}.hipaa .smarter-forms .flex-item-wrap .flex-item p{font-size:.8em}.hipaa .any-device{background:#0B99C2;background:url(https://goformzcdn.blob.core.windows.net/marketing/product/asset-forms-on-any-device@2x.png) bottom right no-repeat;background-image:url(https://goformzcdn.blob.core.windows.net/marketing/product/asset-forms-on-any-device@2x.png),-webkit-linear-gradient(312deg, #14B5EA 0%, #CD5A45 100%),url(https://goformzcdn.blob.core.windows.net/marketing/product/asset-forms-on-any-device@2x.png);background-image:url(https://goformzcdn.blob.core.windows.net/marketing/product/asset-forms-on-any-device@2x.png),linear-gradient(-222deg, #14B5EA 0%, #CD5A45 100%),url(https://goformzcdn.blob.core.windows.net/marketing/product/asset-forms-on-any-device@2x.png);background-size:106%, auto}@media screen and (min-width: 768px){.hipaa .any-device{background-size:75%, auto}}@media screen and (min-width: 1200px){.hipaa .any-device{background-size:78%, auto}}@media screen and (min-width: 1600px){.hipaa .any-device{background-size:1556px, auto}}.hipaa .any-device h2{text-align:left;max-width:1100px}.hipaa .any-device h2+p{text-align:left}

.bim360 .grad-header{padding-bottom:2rem}@media screen and (min-width: 992px){.bim360 .grad-header{padding-bottom:4rem}}.bim360 .grad-header .content-start{padding-top:6rem}@media screen and (min-width: 1200px){.bim360 .grad-header .content-start{padding-top:8rem}}.bim360 .grad-header .grad-elements{top:-7vw;-webkit-transform:skewY(-7deg);transform:skewY(-7deg)}@media screen and (min-width: 992px){.bim360 .grad-header .options .cta.primary.btn{margin-left:0}}.bim360 .grad-header .flex-item-wrap{margin:0 auto;width:100%;display:block}@media screen and (min-width: 992px){.bim360 .grad-header .flex-item-wrap{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;display:-webkit-box;display:-ms-flexbox;display:flex}}@media screen and (min-width: 992px){.bim360 .grad-header .flex-item-wrap .flex-item{-webkit-box-flex:1;-ms-flex:1 2 41%;flex:1 2 41%}.bim360 .grad-header .flex-item-wrap .flex-item.header-content{-webkit-box-flex:0;-ms-flex:0 1 48%;flex:0 1 48%;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;max-width:800px;padding-right:4rem}.bim360 .grad-header .flex-item-wrap .flex-item.header-asset{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;max-width:700px}}@media screen and (min-width: 1200px){.bim360 .grad-header .flex-item-wrap .flex-item.header-content{padding-left:3.5rem}}.bim360 .header-asset{position:relative}.bim360 .header-asset img{width:100%;margin-bottom:2rem}@media screen and (min-width: 992px){.bim360 .header-asset img{position:absolute;left:0;top:5rem}}.bim360 .header-content p{color:#fff}@media screen and (min-width: 992px){.bim360 .header-content{text-align:left}}.bim360 .existing-forms{position:relative}.bim360 .existing-forms h2,.bim360 .existing-forms p{text-align:center}@media screen and (min-width: 992px){.bim360 .existing-forms h2,.bim360 .existing-forms p{text-align:left}}.bim360 .existing-forms .flex-item-wrap{margin-top:3rem;display:block}@media screen and (min-width: 992px){.bim360 .existing-forms .flex-item-wrap{display:block;position:relative;left:48.5%;width:44%;max-width:800px}}@media screen and (min-width: 1200px){.bim360 .existing-forms .flex-item-wrap{left:53%}}@media screen and (min-width: 1600px){.bim360 .existing-forms .flex-item-wrap{left:52%}}.bim360 .new-data-types{padding-top:0}@media screen and (min-width: 992px){.bim360 .new-data-types{padding-top:3rem}.bim360 .new-data-types h2{text-align:left}}@media screen and (min-width: 1200px){.bim360 .new-data-types{padding-top:5rem}}.bim360 .new-data-types .icon-list{padding-left:0;list-style-type:none;margin-top:1.5rem;margin:1rem auto}.bim360 .new-data-types .icon-list li{padding-left:2.25em;line-height:2.8em}.bim360 .new-data-types .icon-list li:nth-child(1){background:transparent url("../img/svg/icon-template-location.svg") no-repeat center left}.bim360 .new-data-types .icon-list li:nth-child(2){background:transparent url("../img/svg/icon-template-image.svg") no-repeat center left}.bim360 .new-data-types .icon-list li:nth-child(3){background:transparent url("../img/svg/icon-template-barcode.svg") no-repeat center left}.bim360 .new-data-types .icon-list li:nth-child(4){background:transparent url("../img/svg/icon-template-sketch.svg") no-repeat center left}@media screen and (min-width: 768px){.bim360 .smarter-forms .flex-item-wrap .flex-item{-webkit-box-flex:1;-ms-flex:1 1 44%;flex:1 1 44%}}@media screen and (min-width: 992px){.bim360 .smarter-forms .flex-item-wrap .flex-item{-webkit-box-flex:1;-ms-flex:1 1 45%;flex:1 1 45%}}@media screen and (min-width: 1200px){.bim360 .smarter-forms .flex-item-wrap .flex-item{-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-flex:1;-ms-flex:1 1 21.5%;flex:1 1 21.5%}}.bim360 .smarter-forms .flex-item-wrap .flex-item p{font-size:.8em}.bim360 .any-device{background:#0B99C2;background:url(https://goformzcdn.blob.core.windows.net/marketing/product/asset-forms-on-any-device@2x.png) bottom right no-repeat;background-image:url(https://goformzcdn.blob.core.windows.net/marketing/product/asset-forms-on-any-device@2x.png),-webkit-linear-gradient(312deg, #14B5EA 0%, #CD5A45 100%),url(https://goformzcdn.blob.core.windows.net/marketing/product/asset-forms-on-any-device@2x.png);background-image:url(https://goformzcdn.blob.core.windows.net/marketing/product/asset-forms-on-any-device@2x.png),linear-gradient(-222deg, #14B5EA 0%, #CD5A45 100%),url(https://goformzcdn.blob.core.windows.net/marketing/product/asset-forms-on-any-device@2x.png);background-size:106%, auto}@media screen and (min-width: 768px){.bim360 .any-device{background-size:75%, auto}}@media screen and (min-width: 1200px){.bim360 .any-device{background-size:78%, auto}}@media screen and (min-width: 1600px){.bim360 .any-device{background-size:1556px, auto}}.bim360 .any-device h2{text-align:left;max-width:1100px}.bim360 .any-device h2+p{text-align:left}

.digital-invoice .grad-header{padding-bottom:2rem}@media screen and (min-width: 992px){.digital-invoice .grad-header{padding-bottom:4rem}}.digital-invoice .grad-header .content-start{padding-top:6rem}@media screen and (min-width: 1200px){.digital-invoice .grad-header .content-start{padding-top:8rem}}.digital-invoice .grad-header .grad-elements{top:-7vw;-webkit-transform:skewY(-7deg);transform:skewY(-7deg)}@media screen and (min-width: 992px){.digital-invoice .grad-header .options .cta.primary.btn{margin-left:0}}.digital-invoice .grad-header .flex-item-wrap{margin:0 auto;width:100%;display:block}@media screen and (min-width: 992px){.digital-invoice .grad-header .flex-item-wrap{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;display:-webkit-box;display:-ms-flexbox;display:flex}}@media screen and (min-width: 992px){.digital-invoice .grad-header .flex-item-wrap .flex-item{-webkit-box-flex:1;-ms-flex:1 2 41%;flex:1 2 41%}.digital-invoice .grad-header .flex-item-wrap .flex-item.header-content{-webkit-box-flex:0;-ms-flex:0 1 48%;flex:0 1 48%;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;max-width:800px;padding-right:4rem}.digital-invoice .grad-header .flex-item-wrap .flex-item.header-asset{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;max-width:700px}}@media screen and (min-width: 1200px){.digital-invoice .grad-header .flex-item-wrap .flex-item.header-content{padding-left:3.5rem}}.digital-invoice .header-asset{position:relative}.digital-invoice .header-asset img{width:100%;margin-bottom:2rem}@media screen and (min-width: 992px){.digital-invoice .header-asset img{position:absolute;left:0;top:5rem}}.digital-invoice .header-content p{color:#fff}@media screen and (min-width: 992px){.digital-invoice .header-content{text-align:left}}.digital-invoice .existing-forms{position:relative}.digital-invoice .existing-forms h2,.digital-invoice .existing-forms p{text-align:center}@media screen and (min-width: 992px){.digital-invoice .existing-forms h2,.digital-invoice .existing-forms p{text-align:left}}.digital-invoice .existing-forms .flex-item-wrap{margin-top:3rem;display:block}@media screen and (min-width: 992px){.digital-invoice .existing-forms .flex-item-wrap{display:block;position:relative;left:48.5%;width:44%;max-width:800px}}@media screen and (min-width: 1200px){.digital-invoice .existing-forms .flex-item-wrap{left:53%}}@media screen and (min-width: 1600px){.digital-invoice .existing-forms .flex-item-wrap{left:52%}}.digital-invoice .new-data-types{padding-top:0}@media screen and (min-width: 992px){.digital-invoice .new-data-types{padding-top:3rem}.digital-invoice .new-data-types h2{text-align:left}}@media screen and (min-width: 1200px){.digital-invoice .new-data-types{padding-top:5rem}}.digital-invoice .new-data-types .icon-list{padding-left:0;list-style-type:none;margin-top:1.5rem;margin:1rem auto}.digital-invoice .new-data-types .icon-list li{padding-left:2.25em;line-height:2.8em}.digital-invoice .new-data-types .icon-list li:nth-child(1){background:transparent url("../img/svg/icon-template-location.svg") no-repeat center left}.digital-invoice .new-data-types .icon-list li:nth-child(2){background:transparent url("../img/svg/icon-template-image.svg") no-repeat center left}.digital-invoice .new-data-types .icon-list li:nth-child(3){background:transparent url("../img/svg/icon-template-barcode.svg") no-repeat center left}.digital-invoice .new-data-types .icon-list li:nth-child(4){background:transparent url("../img/svg/icon-template-sketch.svg") no-repeat center left}@media screen and (min-width: 768px){.digital-invoice .smarter-forms .flex-item-wrap .flex-item{-webkit-box-flex:1;-ms-flex:1 1 44%;flex:1 1 44%}}@media screen and (min-width: 992px){.digital-invoice .smarter-forms .flex-item-wrap .flex-item{-webkit-box-flex:1;-ms-flex:1 1 45%;flex:1 1 45%}}@media screen and (min-width: 1200px){.digital-invoice .smarter-forms .flex-item-wrap .flex-item{-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-flex:1;-ms-flex:1 1 21.5%;flex:1 1 21.5%}}.digital-invoice .smarter-forms .flex-item-wrap .flex-item p{font-size:.8em}.digital-invoice .any-device{background:#0B99C2;background:url(https://goformzcdn.blob.core.windows.net/marketing/product/asset-forms-on-any-device@2x.png) bottom right no-repeat;background-image:url(https://goformzcdn.blob.core.windows.net/marketing/product/asset-forms-on-any-device@2x.png),-webkit-linear-gradient(312deg, #14B5EA 0%, #CD5A45 100%),url(https://goformzcdn.blob.core.windows.net/marketing/product/asset-forms-on-any-device@2x.png);background-image:url(https://goformzcdn.blob.core.windows.net/marketing/product/asset-forms-on-any-device@2x.png),linear-gradient(-222deg, #14B5EA 0%, #CD5A45 100%),url(https://goformzcdn.blob.core.windows.net/marketing/product/asset-forms-on-any-device@2x.png);background-size:106%, auto}@media screen and (min-width: 768px){.digital-invoice .any-device{background-size:75%, auto}}@media screen and (min-width: 1200px){.digital-invoice .any-device{background-size:78%, auto}}@media screen and (min-width: 1600px){.digital-invoice .any-device{background-size:1556px, auto}}.digital-invoice .any-device h2{text-align:left;max-width:1100px}.digital-invoice .any-device h2+p{text-align:left}



.business-applications {
    background: #0B99C2;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to left #2F8BDD, #24CFFB );
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left,  #2F8BDD, #24CFFB);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}