<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root{
    --ff-orange: #DC4726;
    --ff-text-dark: #171B25;
    --ff-grey: #55575B;
    --ff-link-color:#171B25;
    --ff-error: red;
    --ff-orange-pale:rgba(218,71,38,.3);
    --ff-container-width:1400px;
    --ff-column-gap:30px;
    --ff-container-padding-x:50px;
    --ff-container-padding-y:100px;  
    --ff-nav-height:80px;
}
*{
    font-family:'Ubuntu', Arial, Helvetica, sans-serif;
}
h1, h2, h3{
    margin-block-end:20px;
}
h4, h5, h6{
    margin-block-end:15px;
}
p{
    margin-block-start:10px;
    margin-block-end:20px;
}
h1{font-size:45px;}
h2{font-size:30px;}
h3{font-size:30px;}
h4{font-size:20px;}
h5{font-size:20px;}
h6{font-size:18px;}
p{font-size:18px;}
.text-light{
    color:#fff;
}
.text-dark {
    color: #171B25;
    color:var(--ff-text-dark);
}
@media only screen and (max-width:1000px){
    h1{font-size:34px;}
    h2{font-size:28px;}
    h3{font-size:24px;}
}

/* links and Buttons */
a {
    color: #171B25;
    color:var(--ff-link-color);
}
a:hover{
    opacity:0.7;
}
.text-light a{
    color:#fff;
}
.text-light a:hover{
    color:rgba(256, 256, 256, 0.7);
}
.ff-navigation a, a.ff-button{
    text-decoration:none;
}
.ff-button{
    font-size: 18px;
    border-radius: 50px;
    padding:15px 30px;
    border:none;
    cursor:pointer;
    transition:all .25s ease;
    display:inline-block;
}
.ff-button.light {
    background: #fff;
    color: #DC4726;
    color: var(--ff-orange);
    border: 2px solid border: 2px solid rgba(218,71,38,.3);
    border: 2px solid var(--ff-orange-pale);
}
.ff-button.light:hover {
    background: #DC4726;
    background:var(--ff-orange);
    color: #fff;
    opacity: 1;
}
.ff-button.dark {
    background: #DC4726;
    background: var(--ff-orange);
    color: #fff;
    border: 2px solid rgba(218,71,38,.3);
    border: 2px solid var(--ff-orange-pale);
}
.ff-button.dark:hover {
    background: #fff;
    color: #DC4726;
    color:var(--ff-orange);
    opacity: 1;
}
.ff-button.ff-button-small{
    font-size:16px;
    padding:10px 24px;
}

/* ADA skip to content element */
.skip {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }
  .skip:focus {
    position: static;
    width: auto;
    height: auto;
  }
.header-space {
    height: 80px;
    height: var(--ff-nav-height);
}
/* Navigation */
.ff-navbar {
    position: fixed;
    top: 0;
    background-color: #fff;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding-top: 10px;
    padding-bottom: 10px;
    height: 80px;
    height: var(--ff-nav-height);
    display: flex;
    align-items: center;
}
.ff-navbar-inner {
    width: 100%;
    display: flex;
    align-items: center;
    color: #171B25;
    color: var(--ff-text-dark);
}
.ff-navigation{
    width:100%;
    display:flex;
    align-items:center;
    justify-content: space-between;
}
    .ff-navigation ul, .ff-navigation li,
    .ff-footer ul, .ff-footer li{
        list-style-type:none;
        padding-inline-start:0;
    }
.ff-navigation ul{
    display:flex;
    padding-left:0;
}
.ff-nav-pull-right{
    margin-left:auto;
    display:flex;
    align-items:center;
}
.ff-close-menu{
    display:none;
    position:absolute;
    top:20px;
    left:20px;
}
.ff-close-menu .ff-nav-icon{
    line-height:0;
}
.ff-nav-icon{
    font-size:50px;
    cursor:pointer;
    display:block;
}
.ff-nav-icon:hover {
    color: #DC4726;
    color:var(--ff-orange);
}
.ff-navigation ul{
    margin-left:20px;
}
.ff-navigation ul li{
    padding-left:20px;
}
.ff-navigation ul li a{
    font-size:18px;
    font-weight:500;
}
#ff-menu-hamburger{
    display:none;
    background:none;
    border:none;
}
@media only screen and (max-width:1000px){
    .ff-navigation{
        display:block;
        position:fixed;
        right:0;
        top:0;
        background:#fff;
        height:100vh;
        transform:translateX(100%);
        width:300px;
        padding-top:50px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        z-index:10000;
        transition:transform .25s ease;
    }
    .ff-navigation a.ff-button{
        margin-left:30px;
    }
    #ff-menu-hamburger{
        display:block;
    }
    .ff-navigation.mobile-active{
        transform:translateX(0);
    }
    .ff-navigation ul{
        display:block;
        margin:20px 0px;
    }
    .ff-navigation ul li{
        border-top:1px solid #efefef;
        padding:10px 20px 10px 50px; 
    }
    .ff-navigation ul li:last-of-type{
        border-bottom:1px solid #efefef;
    }
    .ff-close-menu{
        display:block;
    }
}




/* Page Strucutre */
.ff-contained {
    max-width: 1400px;
    max-width: var(--ff-container-width);
    margin: 0 auto;
    padding-left: 50px;
    padding-left: var(--ff-container-padding-x);
    padding-right: 50px;
    padding-right: var(--ff-container-padding-x);
}
.ff-row { 
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 100px;
    grid-gap: 30px;
    gap: 30px;
    gap: var(--ff-column-gap);
}
.ff-col-6 {
    border: 0 solid transparent;
    border-width: 0 30px 30px 0;
    width: calc(50% - 30px);
    width: calc(50% - var(--ff-column-gap));
}
.ff-col-4 {
    border: 0 solid transparent;
    border-width: 0 30px 30px 0;
    width: calc(33% - 30px);
    width: calc(33% - var(--ff-column-gap));
}
.ff-col-3 {
    border: 0 solid transparent;
    border-width: 0 30px 30px 0;
    width: calc(25% - 30px);
    width: calc(25% - var(--ff-column-gap));
}
@media only screen and (max-width:1200px){
    .ff-col-4 {
        width: calc(50% - 30px );
        width: calc(50% - var(--ff-column-gap) );
    }
    .ff-col-3 {
        width: calc(50% - 30px);
        width: calc(50% - var(--ff-column-gap));
    }
}
@media only screen and (max-width:1000px){
    .ff-col-6, .ff-col-4, .ff-col-3 {
        width: 100%;
    }
    .ff-contained{
        padding-left:2em;
        padding-right:2em;
    }
    .ff-row{
        padding-top:3em;
        padding-bottom:3em;
    }
}



/* ICONS */
.ff-icon.large{
    height:40px;
    width:auto;
}
.ff-icon.small{
    height:20px;
    width:20px;
    display:inline-block;
}
.ff-icon.icon-clip{
    background-image:url(../CommonImages/icon-clipboard.svg);
    background-size:contain;
    background-repeat:no-repeat;
}
.ff-icon.icon-cart {
    background-image: url(../CommonImages/icon-cart.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.ff-icon.icon-gear {
    background-image: url(../CommonImages/icon-gear.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.ff-icon.icon-jar {
    background-image: url(../CommonImages/icon-jar.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.ff-icon.icon-ohs {
    background-image: url(../CommonImages/icon-ohs.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.ff-icon.icon-api {
    background-image: url(../CommonImages/icon-api.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.ff-icon.icon-twitter {
    background-image: url(../CommonImages/icon-twitter.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.ff-icon.icon-instagram {
    background-image: url(../CommonImages/icon-instagram.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.ff-icon.icon-linkedin {
    background-image: url(../CommonImages/icon-linkedin.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.ff-icon.icon-facebook {
    background-image: url(../CommonImages/icon-facebook.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.ff-icon.icon-x {
    background-image: url(../CommonImages/icon-x.svg);
    background-size: contain;
    background-repeat: no-repeat;
}


/* Login section (first row) */
#login {
    background-color: #DC4726 !important;
    background-color: var(--ff-orange) !important;
    background: url('../CommonImages/orange_dot_bg.png');
    background-size: cover;
}
.ff-login-card{
    background:rgba(256,256,256,0.6);
    padding:8%;
    border-radius:10px;
    display:flex;
    flex-flow:column nowrap;
    align-items:center;
}
.ff-login-card form{
    width:100%;
    max-width:450px;
    margin:50px auto 0 auto;
}
.ff-login-card .ff-form-group{
    margin-bottom:15px;
}
.ff-login-card .ff-form-group input {
    width: 100%;
    border-radius: 10px;
    background: none;
    border: 1px solid rgba(218,71,38,.3);
    border: 1px solid var(--ff-orange-pale);
    box-shadow: 0px 0px 5px rgba(218,71,38,.3);
    box-shadow: 0px 0px 5px var(--ff-orange-pale);
    padding: 12px 20px;
    font-size: 16px;
    background: rgba(256, 256, 256, 0.7);
}
.ff-login-card input[type="checkbox"], .ff-login-card label{
    cursor:pointer;
}
.ff-login-card .ff-form-submit{
    text-align:center;
}
.ff-login-card .ff-form-group input:focus-visible {
    outline: 2px solid #DC4726;
    outline: 2px solid var(--ff-orange);
}
.ff-login-card .ff-form-bottom{
    display:flex;
    justify-content:space-between;
    margin-bottom:50px;
}
.ff-form-group .validation.error {
    font-size: 14px;
    color: red;
    color: var(--ff-error);
    margin: 0;
    padding: 5px;
    /* visibility:hidden */
}

/* Section 2 */
#solution-cards .ff-col-4{
    align-self:stretch;
}
.ff-homepage-card {
    background: #F1F1F1;
    border-radius: 20px;
    padding: 10%;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
}
.ff-homepage-card .link-outer{
    margin-top:auto;
}
.ff-homepage-card .ff-icon{
    margin-bottom:30px;
}
.ff-homepage-card p{
    margin-bottom:50px;
}
.ff-homepage-card a{
    margin-bottom:20px;
}

/* Footer */
.ff-footer .ff-footer-sm a{
    margin-right:20px;
}
.ff-footer .ff-row{
    align-items:flex-start;
}
.ff-footer {
    background: #55575B;
    background: var(--ff-grey)
}
.ff-footer .copyright{
    font-size:14px;
    padding-top:0;
    padding-bottom:30px;
}
.ff-footer-first{
    display:flex;
    flex-flow:column;
    height:100%;
}
.ff-footer .ff-footer-sm{
    margin-top:auto;
}</pre></body></html>