body
{
    line-height: 1;
    font-family: Roboto, sans-serif;
    font-weight: 300;
    color: #808080;
    margin: 0px;
    width: 100%;
    height: 100%;

    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;

    background-image: -webkit-linear-gradient(top, #f4f4f4 0%, #d8dcdc 100%);
    background-image: -o-linear-gradient(top, #f4f4f4 0%, #d8dcdc 100%);
    background-image: linear-gradient(to bottom, #f4f4f4 0%, #d8dcdc 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff4f4f4', endColorstr='#ffd8dcdc', GradientType=0);
    background-color: #f4f4f4;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.page {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;

    min-height: 100vh;
    flex: 1;
}

*, *:before, *:after {
    box-sizing: border-box;
}

a img {
    border: 0px;
}

.header {
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    background-color: #fff;
    flex: none;
}

.header-link {
    display: block;
}

.header-img {
    height: 3rem;
}

.container {
    margin: 0 auto;
    padding: 1rem;
    width: 100%;
    flex: 1 0 auto;
}

@media (min-width: 1200px) {
    .container {
        padding: 1rem 0;
        width: 1200px;
    }
}

.slogan {
    font-size: 1rem;
    font-weight: 200;
    text-align: right;
    padding-top: 1rem;
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
}

@media (min-width: 1200px) {
    .slogan {
        font-size: 2rem;
    }
}

@media (min-width: 580px) {
    .slogan {
        font-size: 1.5rem;
        -webkit-box-flex: 1;
        -webkit-flex: 1 1 100%;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
    }
}

.services {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row;
    flex-flow: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: auto;
}

.tile {
    min-height: 4.5rem;
    min-width: 20rem;
    max-width: 40rem;
    padding: 1rem;
    margin: 1rem;
    background-color: #fcfcfc;
}
.tile svg {
    display: block;
    height: 4.5rem;
}
.tile p {
    line-height: 1.5rem;
}

.mainContent-header {
    text-align: center;
    padding: 1vw 3vw;
}

.mainContent-H1 {
    font-size: 2rem;
    font-weight: 300;
    color: #ec6500;
}

.mainContent-H2 {
    font-size: 1.625rem;
    font-weight: 300;
    color: #ec6500;
}

.mainContent-H3 {
    font-size: 1.375rem;
    font-weight: 300;
    color: #485859;
    margin: 2rem 0 0.5rem 0;
}

.mainContent-text {
    font-size: 1.25rem;
    line-height: 1.4;
    padding: 0 4vw;
}

.copy-headline {
    /*padding: 0 4vw;*/
}

.copy-text {
    color: #333;
    font-size: 1.125rem;
    line-height: 1.4;
}

.mainContent-footer {
    text-align: center;
    padding: 1vw 3vw 1vw 3vw;
}

.badge {
    font-size: 0.9rem;
    font-weight: 400;
    background-color: #5eb7b9;
    padding: 0.125rem 0.5rem;
    border-radius: 2px;
    border: 1px solid #5eb7b9;
    display: inline-block;
}

.badge_light {
    background: #fefefe;
    background: -moz-linear-gradient(top, #fefefe 0%, #f6f7f2 51%, #ddddd5 100%);
    background: -webkit-linear-gradient(top, #fefefe 0%,#f6f7f2 51%,#ddddd5 100%);
    background: linear-gradient(to bottom, #fefefe 0%,#f6f7f2 51%,#ddddd5 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fefefe', endColorstr='#ddddd5',GradientType=0 );
    border: 1px solid #555452;
}

.badge_dark {
    color: #f4f4f4;
    background: #474747;
    background: -moz-linear-gradient(top, #474747 0%, #3e3e3e 50%, #464646 100%);
    background: -webkit-linear-gradient(top, #474747 0%,#3e3e3e 50%,#464646 100%);
    background: linear-gradient(to bottom, #474747 0%,#3e3e3e 50%,#464646 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#474747', endColorstr='#464646',GradientType=0 );
    border: 1px solid #282828;
    box-shadow: 0 0 0 1px #767676 inset;
}

/* product grid */
.grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    /*align-items: flex-end;*/
}

.grid_space-around {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.grid-item {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    background-color: #ffffff;
    height: auto;
    border-radius: 4px;
    margin: 1vw;
    max-width: 50%;
}

.grid-item:hover {
    z-index: 1;
}

.grid-item_maxwidth {
    max-width: 25rem;
}

.grid-item_transparent {
    background-color: transparent;
}

.hover-animation {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);

    -webkit-box-shadow: 0 5px 35px rgba(50,50,93,.05), 0 5px 15px rgba(0,0,0,.03);
    box-shadow: 0 5px 35px rgba(50,50,93,.07), 0 5px 15px rgba(0,0,0,.05);

    transition-property: color,background-color,box-shadow,transform,-webkit-box-shadow,-webkit-transform;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
}

.hover-animation:hover {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);

    -webkit-box-shadow: 0 18px 35px rgba(50,50,93,.1), 0 5px 15px rgba(0,0,0,.1);
    box-shadow: 0 18px 35px rgba(50,50,93,.1), 0 5px 15px rgba(0,0,0,.1);
}

.grid-item:first-child {
    margin-left: 0;
}

.grid-item:last-child {
    margin-right: 0;
}

.grid-item_download {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    flex-direction: column;
    border-radius: 0;
}

.bg-download_startcenter {
    background-image: url("images/SC_Step_01.jpg");
    background-size: cover;
    width: 215px;
    height: 180px;
}

.grid-item-box {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    flex-direction: column;
}

.grid-item-box_dark {
    background-color: #eaecec;
}

.item-link {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;

    padding: 2vw;
    height: 100%;
    width: 100%;
    color: #ec6500;
}

.button-link {
    padding: 1rem;
    color: #fff;
    font-weight: 400;
    font-size: 1.25rem;
    text-decoration: none;
    text-align: center;
    background-color: #11a0b2;
    border-radius: 5px;
}

.button-link:focus,
.button-link:hover {
    background-color: #0b6874;
}

.text-link {
    color: #11a0b2;
    text-decoration: none;
}

.text-link:focus,
.text-link:hover {
    color: #0b6874;
    text-decoration: underline;
}

.align-left {
    text-align: left;
}

.align-center {
    text-align: center;
}

.align-right {
    text-align: right;
}

.margin-top {
    margin-top: 1rem;
}

.margin-bottom {
    margin-bottom: 1rem;
}

.padding {
    padding: 1rem;
}

.padding-tb {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.padding-lr {
    padding-left: 4vw;
    padding-right: 4vw;
}

.screenShot {
    max-height: 100%;
    max-width: 100%;

    -webkit-box-shadow:  0 10px 30px rgba(95, 95, 95, 0.5), 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow:  0 10px 30px rgba(95, 95, 95, 0.5), 0 5px 15px rgba(0, 0, 0, 0.5);
}

.steps {
    background-color: #ffffff;
}

.steps:nth-child(2n+2) {
    background-color: #f4f4f4;
}

.steps:nth-child(2n+3) {
    background-color: #fcfcfc;
}

/* IE10 + fixes */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {

    .item-link {
        /* height: auto; */
    }
}

.item-img {
    width: 100%;
    height: auto;
}

.bold {
    font-weight: 400;
}

/* footer */
.footer {
    background-color: #485859;
    flex-shrink: 0;
    flex: none;

    border-top: 1px solid #919b9b;
    box-sizing: border-box;
    color: #ffffff;
    min-height: 60px;
    padding: 8px 16px;
    width: 100%;
    z-index: 2;
}

.footer-left {
    float: left;
    font-size: 16px;
    line-height: 44px;
}
.footer-right {
    float: right;
    font-size: 14px;
    line-height: 44px;
    text-transform: uppercase;
}
.footer a {
    color: #ffffff;
    margin-left: 16px;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 560px) {
    .grid {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .grid-item {
        -webkit-box-flex: 1;
        -webkit-flex: 1 1 auto;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        max-width: 100%;
    }

    .grid-item:first-child {
        margin-left: 1vw;
    }

    .grid-item:last-child {
        margin-right: 1vw;
    }

    .item-link {
        width: auto;
    }

    .footer {
        min-height: 98px;
    }

    .footer-left, .footer-right {
        float: none;
        text-align: center;
    }

    .footer a {
        margin: 16px;
    }
}

/* Helper classes */

pre {
    overflow-x: auto;
    text-align: left;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border: 1px solid #BCBEC0;
    background: #F1F3F5;
    font:12px Monaco,Consolas,"Andale  Mono","DejaVu Sans Mono",monospace
}

code {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border: 1px solid #BCBEC0;
    padding: 2px;
    font:11px Monaco,Consolas,"Andale  Mono","DejaVu Sans Mono",monospace
}

pre code {
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border: 0px;
    padding: 2px;
    font: 12px Monaco,Consolas,"Andale  Mono","DejaVu Sans Mono",monospace
}

/**
 * Visually hide an element, but leave it available for screen readers
 * @link https://github.com/h5bp/html5-boilerplate/blob/master/dist/css/main.css
 * @link http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */
.screen-reader {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

/**
 * Extends the .screen-reader class to allow the element to be focusable when navigated to via the keyboard
 * @link https://github.com/h5bp/html5-boilerplate/blob/master/dist/css/main.css
 * @link https://www.drupal.org/node/897638
 */
.screen-reader-focusable:active,
.screen-reader-focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    white-space: normal;
    width: auto;
}

/**
 * @workaround Remove focus from <main> element when using tabindex="-1" hack for skipnav link
 * @link https://code.google.com/p/chromium/issues/detail?id=37721
 */
.tabindex:focus {
    outline: none;
}