* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}


html {
    color: #3d3d3d;
    font-size: 1em;
    line-height: 1.5
}

::-moz-selection {
    background: #2b73ba;
    color: #fff;
    text-shadow: none
}

::selection {
    background: #2b73ba;
    color: #fff;
    text-shadow: none
}

.horiz {
    display: flex;
    flex-wrap: wrap;
}

.content-width {
    width: 100%;
    max-width: 75em;
    padding: 0 1em
}

.content-width,
.less-wide {
    margin-left: auto;
    margin-right: auto
}

body {
    display: flex;
    flex-direction: column
}


.hidden {
    display: none
}

.ir {
    white-space: nowrap;
    overflow: hidden;
    text-indent: 100%
}


.modal {
    margin-top: 0;
    padding: 2em;
    background-color: #fff;
    border: 2px solid #0e3e6d;
    box-shadow: .25em .25em 1em rgba(0, 0, 0, .33), -.25em -.25em 1em rgba(0, 0, 0, .33)
}

    .modal.centered {
        position: fixed;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%)
    }

.modal-close {
    float: right;
    font-size: 3em;
    line-height: 1;
    color: #2b73ba
}

.vertical-align {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.horiz-align {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

input,
select,
textarea {
    border: 1px solid #ccc;
    border-radius: 0;
    padding: .5em .75em;
    background: #fff;
    color: inherit
}

    input:focus,
    select:focus,
    textarea:focus {
        border-color: #2b73ba
    }

textarea {
    resize: vertical
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' preserveAspectRatio='xMaxYMid'%3E%3Cpath fill='none' stroke='%230e3e6d' d='M2 6l10 12L22 6'/%3E%3C/svg%3E") 100% no-repeat;
    background-size: auto 60%;
    background-position: calc(100% - .5em) 50%;
}

    select::-ms-expand {
        display: none
    }

option {
    margin-left: .75rem
}

form label {
    color: #0e3e6d;
}

form input,
form select,
form textarea {
    width: 100%;
    border-radius: .25em;
    border-color: #2b73ba;
    border-width: 2px
}

    form input[type=submit],
    form input[type=checkbox] {
        width: auto
    }

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-family: Helvetica, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 400;
    letter-spacing: .05em;
    text-align: center
}

.h1,
h1 {
    font-size: 2.5rem;
    font-weight: 100
}

.h2,
h2 {
    font-size: 2.25rem;
    font-weight: 300
}

.h3,
h3 {
    font-size: 1.625rem;
    font-weight: 400;
    color: #3d3d3d;
}

.h4,
h4 {
    font-size: 1.375rem
}

.h5,
h5 {
    font-size: 1.125rem
}

.h6,
h6 {
    font-size: 1rem
}

.section-header {
    color: #0e3e6d;
    margin-top: 0;
    margin-bottom: 2rem
}

a {
    text-decoration: none;
    color: #2b73ba;
    transition: color .2s linear
}

    a:hover {
        color: #0e3e6d
    }

.bg-highlight a {
    color: #fff
}

.btn,
.button,
button {
    padding: .5em 1em;
    border: 2px solid #2b73ba;
    color: #fff;
    background-color: #2b73ba;
    display: inline-block;
    text-align: center;
    transition: color .2s linear, background-color .2s linear;
    border-radius: .3em
}

    .btn:hover,
    .button:hover,
    button:hover {
        background-color: #fff;
        color: #2b73ba
    }

    .btn.secondary,
    .button.secondary,
    button.secondary {
        border-color: #0e3e6d;
        color: #0e3e6d;
        transition: background-color .2s linear
    }

        .btn.secondary:hover,
        .button.secondary:hover,
        button.secondary:hover {
            background-color: #0e3e6d;
            color: #fff
        }

    .btn.alt {
        color: #2b73ba;
        background-color: #fff;
        border-color: #2b73ba;
        font-size: 1.25em
    }

        .btn.alt:hover {
            color: #fff;
            background-color: #2b73ba;
            border-color: #fff
        }

.button-group {
    justify-content: center;
    align-items: center;
    margin: 1em
}

    .button-group > * {
        margin: 1em
    }

.icon svg,
svg.icon {
    width: 1em;
    height: 1em;
    margin: 0 .5em .25em;
    display: inline-block;
    vertical-align: middle;
    fill: currentColor
}

    .icon svg .stroked,
    svg.icon .stroked {
        fill: none;
        stroke: currentColor
    }

.big.icon svg,
svg.big.icon {
    width: 2em;
    height: 2em
}

.bigger.icon svg,
svg.bigger.icon {
    width: 3em;
    height: 3em
}

.biggest.icon svg,
svg.biggest.icon {
    width: 5em;
    height: 5em
}

.accordion-content {
    position: relative;
    background-position: top;
    padding-bottom: 4em
}

    .accordion-content li {
        color: #2b73ba;
        border-bottom: 1px solid #2b73ba;
        padding: 1.5em 1em 1em .5em;
        position: relative;
        margin-top: .5em
    }

        .accordion-content li .toggler:after {
            content: url(assets/RightArrow_Icon.svg);
            position: absolute;
            right: 0;
            top: 1.5em;
            width: 1.2em;
            transition: -webkit-transform .2s;
            transition: transform .2s;
            transition: transform .2s, -webkit-transform .2s
        }

        .accordion-content li li {
            color: #2b73ba;
            list-style: disc;
            border: none
        }

    .accordion-content .accordion__body {
        color: #3d3d3d;
        max-height: 0;
        padding-left: 2em;
        transition: max-height .35s ease-in-out
    }

    .accordion-content input.toggler:checked ~ label:after {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg)
    }

    .accordion-content input.toggler:checked ~ .accordion__body {
        max-height: 500px
    }

    .accordion-content .btn-wrap {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-top: 4em
    }

    .accordion-content .btn,
    .accordion-content .btn-primary {
        text-align: center;
        width: 15em;
        margin: 3em auto;
        display: block
    }

    .accordion-content label {
        display: block;
        line-height: 1;
        font-size: 1.5em;
        font-weight: 300
    }

.careers-accordion .location,
.careers-accordion .position {
    display: none
}

.careers-accordion .location {
    position: relative;
    left: 61%
}

.careers-accordion ul {
    margin-top: 0
}

.careers-accordion .job {
    display: flex;
    flex-wrap: wrap
}

.careers-accordion input {
    flex-basis: 0%
}

.careers-accordion label {
    flex-basis: 80%;
    margin-top: .5em
}

.careers-accordion span {
    margin-top: 1em;
    flex-basis: 30%
}

.careers-accordion .accordion__body {
    flex-basis: 90%;
    text-align: left
}

    .careers-accordion .accordion__body .btn {
        margin-left: 0
    }

.company-carousel {
    background-color: #ebebeb;
    padding: 4em 0;
    margin-top: 0
}

    .company-carousel .heading {
        position: relative
    }

        .company-carousel .heading > * {
            display: inline-block
        }

    .company-carousel .head-logo {
        width: 15em;
        position: relative;
        bottom: -.5em
    }

    .company-carousel .flickity-viewport {
        min-height: 50em
    }

    .company-carousel li.carousel-cell {
        list-style: none;
        display: flex;
        flex-direction: column;
        width: 25em;
        margin: 2em 0;
        background-color: #fff;
        border: 1px solid transparent;
        -webkit-transform: scale(.7);
        transform: scale(.7);
        opacity: .5;
        transition: opacity .5s ease, height .5s ease, top .25s linear, -webkit-transform .5s ease;
        transition: transform .5s ease, opacity .5s ease, height .5s ease, top .25s linear;
        transition: transform .5s ease, opacity .5s ease, height .5s ease, top .25s linear, -webkit-transform .5s ease;
        overflow: hidden;
        height: 25em;
        top: 20%
    }

        .company-carousel li.carousel-cell .featured {
            height: 10em
        }

        .company-carousel li.carousel-cell .logo {
            position: relative;
            display: block;
            max-width: 100%;
            height: 9em;
            margin: 1em;
            background-size: 75%;
            background-position: center -3em
        }

            .company-carousel li.carousel-cell .logo:before {
                content: "";
                position: absolute;
                display: block;
                width: 8em;
                height: 2px;
                background-color: #2b73ba;
                margin: 0 auto;
                bottom: -2em;
                left: 50%;
                -webkit-transform: translateX(-50%);
                transform: translateX(-50%)
            }

        .company-carousel li.carousel-cell .content {
            position: absolute;
            padding: 1em;
            margin-top: 1.5em;
            transition: opacity .5s ease;
            top: 100%;
            opacity: 0
        }

        .company-carousel li.carousel-cell.is-selected {
            -webkit-transform: scale(1);
            transform: scale(1);
            opacity: 1;
            border: 1px solid #bcbec0;
            border-top: 8px solid #2b73ba;
            height: 41em;
            top: 0
        }

            .company-carousel li.carousel-cell.is-selected .content {
                opacity: 1;
                top: 22em
            }

    .company-carousel .flickity-prev-next-button,
    .company-carousel .flickity-prev-next-button:focus,
    .company-carousel .flickity-prev-next-button:hover {
        box-shadow: none;
        min-width: unset;
        width: 1.5em;
        height: 4em;
        border-radius: 0;
        background-color: #2b73ba
    }

        .company-carousel .flickity-prev-next-button:focus svg path,
        .company-carousel .flickity-prev-next-button:hover svg path,
        .company-carousel .flickity-prev-next-button svg path {
            fill: #fff
        }

    .company-carousel.company-cards {
        background-color: #fff
    }

        .company-carousel.company-cards li.carousel-cell {
            flex-grow: 0;
            height: 42em
        }

            .company-carousel.company-cards li.carousel-cell .logo:before {
                display: none
            }

            .company-carousel.company-cards li.carousel-cell .content {
                margin-top: 0
            }

.company-grid {
    padding-bottom: 4em
}

    .company-grid ul {
        justify-content: start
    }

    .company-grid li {
        position: relative;
        flex-basis: 40%;
        height: 10em;
        margin: 1em
    }

    .company-grid img {
        position: relative;
        margin-top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }

    .company-grid li.half {
        height: auto;
        margin: 2em 1em;
        flex-basis: 90%
    }

        .company-grid li.half img {
            margin: 0 auto;
            max-height: 18em;
            -webkit-transform: none;
            transform: none
        }

.company-contact,
.contact-mca {
    padding-bottom: 4em
}

    .company-contact figcaption,
    .contact-mca figcaption {
        margin-top: 0
    }

.hero,
.hero-2 {
    min-height: 23em;
    margin-top: 0
}

    .hero-2 .company-logo,
    .hero-2 h1,
    .hero .company-logo,
    .hero h1 {
        background: linear-gradient(180deg, hsla(0, 0%, 100%, .5), #fff 60%);
        padding: 3em .5em .5em;
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        max-width: 100%
    }

    .hero-2 img.company-logo,
    .hero img.company-logo {
        margin: 0;
        font-size: 4.5rem;
        width: 6em;
        padding: .5em
    }

    .hero-2 .btn,
    .hero .btn {
        display: flex;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        max-width: 11em
    }

.intro-text {
    padding: 2em 0;
    font-size: 1.375rem
}

.icon-grid {
    padding-bottom: 3em
}

    .icon-grid ul.horiz {
        justify-content: center
    }

    .icon-grid li.article {
        position: relative;
        list-style: none;
        text-align: center;
        overflow: hidden;
        min-height: 20em;
        flex-grow: 0;
        max-width: 18em;
        padding-top: 4em;
        border: 1px solid transparent
    }

    .icon-grid svg {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 12em;
        z-index: -1
    }

        .icon-grid svg path {
            fill: #ebebeb
        }

    .icon-grid h3 {
        font-weight: 400;
        font-size: 1.3em
    }

        .icon-grid h3:after {
            content: "";
            display: none
        }

    .icon-grid a {
        position: relative
    }

.image-grid div.baby-pics,
.image-grid div.big-pic {
    padding: 0
}

.image-grid figure {
    padding: 0;
    margin: .5em;
    background-size: cover
}

.image-grid .big-pic figure {
    margin-top: 0
}

.image-grid .baby-pics figure:last-of-type,
.image-grid .baby-pics figure:nth-of-type(3n+0) {
    margin-top: .5em
}

.big-pic figure,
.image-grid {
    height: 21em
}

.kaiteki {
    background-color: #2b73ba;
    color: #fff;
    padding: 2em 0
}

    .kaiteki article {
        position: relative;
        margin: 2em auto;
        max-width: 31em
    }

    .kaiteki .h4,
    .kaiteki h2,
    .kaiteki h3 {
        text-align: left
    }

    .kaiteki .h4 {
        line-height: 2em
    }

    .kaiteki h3 {
        font-size: 2em;
        margin-top: 1em;
        font-weight: 200
    }

    .kaiteki img {
        display: none;
        -o-object-fit: cover;
        object-fit: cover
    }

.main-content-block {
    padding: 4em 0
}

    .main-content-block article {
        flex: 1 0 90%;
        margin-top: 2em
    }

        .main-content-block article h3 {
            text-align: left
        }

            .main-content-block article h3:after {
                content: "";
                display: block;
                height: 2px;
                width: 2em;
                position: relative;
                margin: 1em 0;
                bottom: 0;
                background-color: #2b73ba
            }

.masonry-grid {
    margin: 2em 0 4em
}

    .masonry-grid h3 {
        color: #fff;
        position: absolute;
        bottom: 0;
        margin-bottom: 0;
        width: 100%;
        background-color: rgba(14, 62, 109, .8);
        padding: 1.5em 0;
        transition: background-color .15s linear;
        z-index: 3
    }

    .masonry-grid .bg-img {
        background-position-x: 75%
    }

    .masonry-grid a:hover h3 {
        background-color: rgba(43, 115, 186, .8)
    }

    .masonry-grid .bg-img {
        position: relative;
        -webkit-filter: grayscale(1);
        filter: grayscale(1);
        transition: -webkit-filter .25s linear;
        transition: filter .25s linear;
        transition: filter .25s linear, -webkit-filter .25s linear;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 50% 50%;
    }

    .masonry-grid a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: rgba(14, 62, 109, .4);
        transition: background-color .25s linear;
        z-index: 2
    }

    .masonry-grid a:hover .bg-img {
        -webkit-filter: grayscale(0) saturate(120%);
        filter: grayscale(0) saturate(120%)
    }

        .masonry-grid a:hover .bg-img h3 {
            background-color: rgba(43, 115, 186, .8)
        }

    .masonry-grid a:hover:before {
        background-color: transparent
    }

.case-study-photo-grid > div {
    padding: 0 !important
}

.case-study-grid {
    position: relative;
    display: block;
    overflow: hidden
}

    .case-study-grid aside {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: .75em
    }

    .case-study-grid figure {
        line-height: 0;
        width: 80%;
        max-width: 20em;
        margin: 0 auto
    }

    .case-study-grid svg {
        max-height: 100%
    }

    .case-study-grid:hover aside {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    .case-study-grid + a,
    .case-study-grid.last {
        margin-top: .5em
    }

.grid-small {
    flex: 1 1 45%
}

    .grid-small > div {
        height: 0;
        padding-bottom: 100%
    }

    .grid-small + .grid-small {
        margin: 0 0 0 .5em
    }

.grid-big {
    flex: 1 0 90%
}

    .grid-big > div {
        height: 0;
        padding-bottom: 100%
    }

.grid-doublewide {
    flex: 1 0 90%;
    max-height: 294px
}

    .grid-doublewide > div {
        height: 0;
        padding-bottom: 50%
    }

    .grid-doublewide figure {
        max-height: 60%
    }

.case-study-grid + .grid-small + .grid-small {
    margin: .5em 0 0 .5em
}

.grid-column {
    flex: 1 0 90%
}

    .grid-column + .grid-column {
        margin-top: .5em
    }

.narrow-cta {
    margin-top: 0;
    background-color: #2b73ba;
    color: #fff;
    padding: 2em 0
}

    .narrow-cta a,
    .narrow-cta p {
        display: inline-block
    }

    .narrow-cta p {
        font-size: 2em
    }

    .narrow-cta a {
        margin: 0 2em
    }

.select-region ul {
    justify-content: space-around;
    margin-top: 4em
}

.select-region a svg {
    margin-top: 1em;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
    max-width: 10em
}

    .select-region a svg path {
        fill: #3d3d3d
    }

.select-region a:hover svg {
    -webkit-transform: scale(1.2);
    transform: scale(1.2)
}

    .select-region a:hover svg path {
        fill: #2b73ba
    }

.single-product .description {
    margin-top: 4em
}

    .single-product .description .h3,
    .single-product .description .h4 {
        text-align: left;
        margin-bottom: .5em
    }

.single-product .taxes {
    margin: 4em 0
}

    .single-product .taxes li {
        margin-bottom: 1.5em
    }

    .single-product .taxes h2 {
        text-decoration: underline
    }

    .single-product .taxes div {
        margin-right: 4em
    }

.single-product .companies {
    margin: 2em 0 4em;
    justify-content: left
}

    .single-product .companies:before {
        content: "";
        position: absolute;
        top: -1em;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        height: 2px;
        width: 5em;
        background-color: #2b73ba
    }

    .single-product .companies li {
        flex-direction: column
    }

    .single-product .companies .company-logo {
        width: 12em
    }

    .single-product .companies .btn {
        max-height: 2.75em;
        margin-top: 1.25em
    }

.page-404 div {
    margin-top: 8em;
    background-color: hsla(0, 0%, 100%, .9);
    padding: 4em 2em
}

.post-list {
    padding: 1.5em 0 4em;
    justify-content: space-around !important
}

.archive .page-title {
    position: absolute;
    bottom: 1em;
    left: 14%;
    text-shadow: 3px 0 3px #000
}

.archive .company-logo {
    width: 150px;
    height: 150px;
    position: absolute;
    background-color: hsla(0, 0%, 100%, .8);
    background-size: contain;
    transition: background-color .3s ease
}

.archive .image {
    margin-top: 0
}

.pagination {
    text-align: center;
    font-size: 1.25em
}

    .pagination > * {
        padding-right: .5em
    }

.archive article.blog-excerpt {
    margin: 1em;
    padding: 0;
    box-shadow: -3px 2px 8px 2px rgba(0, 0, 0, .1);
    overflow: hidden;
    min-height: 26em;
    transition: box-shadow .3s ease;
    flex-grow: 0;
    min-width: 20em;
    max-width: 25em
}

    .archive article.blog-excerpt h2 {
        font-size: 1.75em;
        font-weight: 200;
        text-align: left;
        margin-top: 0
    }

    .archive article.blog-excerpt .date {
        margin-top: .5em
    }

    .archive article.blog-excerpt .image {
        position: relative;
        height: 13em;
        background-color: #2b73ba;
        z-index: -1
    }

    .archive article.blog-excerpt .post-meta {
        padding: 1em;
        color: #3d3d3d
    }

    .archive article.blog-excerpt .btn {
        margin-bottom: 0
    }

    .archive article.blog-excerpt:hover {
        box-shadow: -3px 2px 10px 2px rgba(0, 0, 0, .2)
    }

        .archive article.blog-excerpt:hover .company-logo {
            background-color: #fff
        }

    .archive article.blog-excerpt:nth-of-type(2n) .image {
        background-color: #0e3e6d
    }

.blog-nav {
    margin-top: 3em
}

    .blog-nav ul {
        justify-content: center
    }

    .blog-nav a {
        padding: 0 .5em
    }

        .blog-nav a:hover {
            text-decoration: underline
        }

.post-content,
footer.main {
    padding: 2em 0
}

footer.main {
    background: #fff;
    text-align: center;
    margin-top: 0
}

.footer-nav {
    margin-bottom: 2em
}

    .footer-nav a {
        color: #3d3d3d;
        font-size: 13px;
    }

        .footer-nav a:hover {
            color: #2b73ba
        }

    .footer-nav ul {
        justify-content: center
    }

    .footer-nav li {
        margin-right: 1em;
        margin-bottom: 1em
    }

    .footer-nav input.nav-toggler,
    .footer-nav label.nav-toggler {
        display: none
    }

header.main {
    padding: 1em 0 0 0;
    border-bottom: 2px solid #2b73ba;
    position: relative;
    background-color: #fff;
    top: 0;
    z-index: 9999999;
    width: 100%;
}

.industry-archive .single-industry {
    border-top: 2px solid #0e3e6d;
    position: relative;
    padding-bottom: 4em
}

    .industry-archive .single-industry .heading {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        margin: 0 auto
    }

    .industry-archive .single-industry svg {
        display: none
    }

    .industry-archive .single-industry h2 {
        padding: 1em 1em 1em .5em;
        display: inline-block
    }

    .industry-archive .single-industry ul li {
        flex-grow: 0;
        padding-left: .75em;
        margin-top: 1em
    }

    .industry-archive .single-industry ul h3:after,
    .industry-archive .single-industry ul p:after {
        content: "";
        display: block;
        height: 2px;
        width: 2em;
        position: relative;
        margin: 1em 0;
        bottom: 0;
        background-color: #2b73ba
    }

    .industry-archive .single-industry ul p:after {
        width: 100%
    }

    .industry-archive .single-industry .content {
        position: relative;
        z-index: 3
    }

    .industry-archive .single-industry:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: hsla(0, 0%, 100%, .9);
        z-index: 2
    }

.industry-archive .child-cats li {
    flex-basis: 49%
}

.industry-archive .child-cats a {
    position: relative
}

    .industry-archive .child-cats a:before {
        content: "";
        position: absolute;
        width: 4px;
        height: 4px;
        border-radius: 100%;
        background-color: #2b73ba;
        left: -.75em;
        top: .5em
    }

section.trustbar {
    background-color: #ebebeb
}

    section.trustbar ul {
        justify-content: center
    }

nav ul {
    position: relative;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

nav li {
    list-style: none
}

nav ul.sub-menu {
    display: none
}

nav a {
    display: inline-block;
    height: 100%;
    text-decoration: none
}

#logo {
    top: 10%
}

    #logo svg,
    .logo svg {
        width: 15em
    }

label.nav-toggler {
    cursor: pointer;
    display: inline-block;
    text-align: center;
    min-width: 1em;
    margin-right: -1em;
    color: #0e3e6d
}

    label.nav-toggler:after {
        content: "+"
    }

input.nav-toggler {
    display: none
}

    input.nav-toggler:checked ~ label.nav-toggler:after {
        content: "-"
    }

    input.nav-toggler:checked ~ ul.sub-menu {
        display: block
    }

.hamburger {
    cursor: pointer;
    position: absolute;
    top: 1em;
    right: 1em;
    width: 3rem;
    height: 3rem;
    margin: 0
}

    .hamburger:after,
    .hamburger:before,
    .hamburger span {
        display: block;
        content: " ";
        background: #0e3e6d;
        width: 3rem;
        height: .5rem;
        margin-top: .5rem;
        transition: opacity .55s ease, -webkit-transform .5s cubic-bezier(.77, .2, .05, 1);
        transition: transform .5s cubic-bezier(.77, .2, .05, 1), opacity .55s ease;
        transition: transform .5s cubic-bezier(.77, .2, .05, 1), opacity .55s ease, -webkit-transform .5s cubic-bezier(.77, .2, .05, 1);
        -webkit-transform-origin: .1rem;
        transform-origin: .1rem
    }

    .hamburger:before {
        margin-top: 0
    }

#mobile-nav-hamburger:checked ~ .hamburger span {
    opacity: 0;
    -webkit-transform: scale(.2);
    transform: scale(.2)
}

#mobile-nav-hamburger:checked ~ .hamburger:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

#mobile-nav-hamburger:checked ~ .hamburger:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

#mobile-nav-hamburger:checked ~ .header-nav,
#mobile-nav-hamburger:checked ~ .util-wrap {
    display: block
}

.header-nav {
    display: none;
    margin: 1em 0
}

    .header-nav ul {
        display: block
    }

        .header-nav ul.sub-menu {
            text-align: right;
            background-color: #fff
        }

    .header-nav .main-menu-item {
        text-align: right;
        padding-right: 2em
    }

    .header-nav .menu-center-logo-spacer {
        display: none
    }

    .header-nav .main-menu-link {
        padding: .75em 1em
    }

    .header-nav a {
        color: #3d3d3d;
    }

    .header-nav .main-menu-link:after {
        content: "";
        height: 2px;
        max-width: 0;
        background-color: transparent;
        transition: max-width .25s ease
    }

    .header-nav .sub-menu-link {
        padding: .75em 1em;
        color: #0e3e6d
    }

        .header-nav .sub-menu-link:hover {
            color: #2b73ba
        }

.util-wrap {
    display: none;
    text-align: right
}

    .util-wrap > * {
        display: inline-block
    }

.utility-nav {
    min-height: 1em;
    flex-basis: 20%;
    margin-right: 1em;
    margin-bottom: 1em;
    padding-top: .5em;
    width: 50%
}

    .utility-nav a {
        position: relative;
        color: #3d3d3d;
    }

    .utility-nav img {
        position: absolute;
        top: .2em;
        right: 110%;
        height: 1em
    }

    .utility-nav ul,
    form.search-form {
        justify-content: flex-end
    }

form.search-form {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: right
}

input.search-field {
    flex: 1 1 15em;
    width: 15em
}

.search-icon {
    height: 1em;
    width: 1em;
    position: absolute;
    bottom: 15px;
    right: 10px;
}

form.search-form {
    position: relative
}

header form input.search-field {
    width: 20em;
}

header form button.secondary {
    position: absolute;
    text-align: right;
    height: 2.5em;
    background-color: transparent;
    border-color: transparent;
    min-width: 2em;
    right: 0;
    bottom: 0;
    padding-top: .625em
}

    header form button.secondary:hover {
        background-color: transparent
    }

.globe a {
    position: relative
}

    .globe a:after {
        position: absolute;
        content: url(assets/icon_globe-01.svg);
        height: 1.5em;
        width: 1.5em;
        right: -2em;
        top: 0
    }

    .globe a:hover a {
        color: #2b73ba
    }

input[type=search]::-ms-clear,
input[type=search]::-ms-reveal {
    display: none;
    width: 0;
    height: 0
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
    display: none
}

.search-results .bg-highlight {
    padding: .5em;
    position: relative;
    margin-top: 2em
}

.search-results h3 {
    text-align: left
}

.category-list ul.x3 {
    justify-content: center
}

.category-list li {
    position: relative;
    max-width: 20em;
    margin: .75em;
    min-height: 20em;
    max-height: 20em;
    background-repeat: no-repeat;
    color: #fff;
    background-color: #2b73ba;
    background-position: 66% top;
    background-size: auto 20em
}

    .category-list li a {
        color: #fff;
        position: absolute;
        bottom: 0;
        margin-bottom: 0;
        width: 100%;
        background-color: rgba(14, 62, 109, .8);
        padding: 1.5em 0;
        transition: background-color .15s linear
    }

    .category-list li:hover a {
        background-color: rgba(43, 115, 186, .8)
    }

.sub-industry-list {
    margin: 2em 0
}

.industry-images > * {
    min-height: 20em;
    margin: 1em
}

.sub-category-list {
    margin: 2em 0
}

    .sub-category-list ul {
        justify-content: center
    }

    .sub-category-list li {
        padding: 0 1em;
        border-right: 2px solid #3d3d3d
    }

        .sub-category-list li:last-of-type {
            border-right: none
        }

    .sub-category-list a {
        text-decoration: underline
    }

.product-list {
    padding-bottom: 4em
}

    .product-list .cat-intro {
        margin-top: -1.1em
    }

    .product-list div.bg-highlight {
        padding: 1em;
        position: relative;
        margin-top: 2em
    }

    .product-list .bg-highlight.dark {
        background-color: #0e3e6d;
        position: relative
    }

    .product-list .h2 {
        display: inline;
        padding: 0
    }

    .product-list .single-product {
        position: relative
    }

        .product-list .single-product h4 {
            display: inline-block;
            color: #0e3e6d;
            flex: 1 1 99%;
            text-align: left;
            margin-top: 1em
        }

        .product-list .single-product:after {
            content: "";
            position: absolute;
            width: 100%;
            bottom: -1em;
            border-bottom: 1px solid #0e3e6d
        }

    .product-list .site-link {
        margin-top: 0
    }

    .product-list .product-info p {
        flex-basis: 0
    }

    .product-list .product-info .p1 {
        flex: 1 1 80%;
        margin-right: 2em
    }

    .product-list .product-info .product-links {
        flex: 0 1 100%;
        text-align: right;
        margin-top: 0;
        margin-bottom: 1em
    }

    .product-list .product-info a {
        margin-bottom: .5em;
        cursor: pointer
    }

        .product-list .product-info a:last-of-type {
            padding: .5em
        }

    .product-list svg {
        display: none
    }

.company-contact {
    background-color: #2b73ba;
    padding-top: 4em
}

    .company-contact .horiz p:first-of-type {
        padding-left: 0
    }

    .company-contact .horiz p:last-of-type {
        padding-right: 0
    }

    .company-contact h2,
    .company-contact p {
        color: #fff
    }

    .company-contact .form-wrap {
        margin: 0 auto
    }

    .company-contact input,
    .company-contact select,
    .company-contact textarea {
        border-color: transparent;
        color: #3d3d3d
    }

    .company-contact label {
        color: #fff
    }

    .company-contact input.btn.alt {
        margin: 1em 0
    }

.aligncenter {
    text-align: center;
    display: block;
    margin: 1em auto
}

.alignright {
    float: right;
    margin: 1em 0 1em 1em
}

.alignleft {
    float: left;
    margin: 1em 1em 1em 0
}

.wp-caption {
    clear: both;
    text-align: center;
    width: auto !important
}

.wp-caption-text {
    padding: 1em .5em .5em;
    border-top: 1px solid #f0f0f0;
    font-size: .75rem
}

.gallery-columns-2,
.gallery-columns-3,
.gallery-columns-4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

    .gallery-columns-2 figure,
    .gallery-columns-3 figure,
    .gallery-columns-4 figure {
        margin: 1em 0
    }

.gallery-icon {
    text-align: center
}

/*added for bullets*/
.posDescriptionContainer317 ul {
    list-style: disc;
    margin-left: 2rem;
    padding-left: 6px;
}

/***/

@media (min-width:50em) {
    .much-less-wide {
        width: 60%
    }

    .careers-accordion .location,
    .careers-accordion .position {
        display: inline-block;
        margin-left: .25em
    }

    .careers-accordion label {
        flex-basis: 70%
    }

    .company-contact form,
    .contact-mca form {
        flex-basis: 60%
    }

    .company-contact figure,
    .contact-mca figure {
        flex-basis: 30%
    }

    .company-contact input.btn,
    .contact-mca input.btn {
        margin: 0 .75em;
        cursor: pointer
    }

    .hero-2 .company-logo,
    .hero-2 h1,
    .hero .company-logo,
    .hero h1 {
        max-width: 11em
    }

    .big-pic figure,
    .image-grid {
        height: 26em
    }

    .kaiteki h3 {
        margin-right: -4em
    }

    .main-content-block article {
        flex-basis: 45%
    }

    .case-study-grid aside {
        transition: -webkit-transform .3s linear;
        transition: transform .3s linear;
        transition: transform .3s linear, -webkit-transform .3s linear;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        padding: 1.5em
    }

    .grid-column {
        flex: 1 0 45%
    }

        .grid-column + .grid-column {
            margin: 0 0 0 .5em
        }

        .grid-column:nth-of-type(3) {
            margin: .5em 0 0
        }

            .grid-column:nth-of-type(3) .grid-doublewide {
                flex-basis: 45%
            }

                .grid-column:nth-of-type(3) .grid-doublewide + .grid-doublewide {
                    margin: 0 0 0 .5em
                }

    .product-list .product-info .product-links {
        flex-direction: column;
        flex-basis: 15%
    }

    .product-list .product-info a:last-of-type {
        top: 1em
    }

    .gallery-columns-2 figure,
    .gallery-columns-4 figure {
        flex: 1 1 45%
    }
}

@media (min-width:77em) {
    .content-width {
        padding-left: 0;
        padding-right: 0
    }
}

@media (min-width:90em) {
    .wider {
        max-width: 90em;
        margin-left: auto;
        margin-right: auto
    }
}

@media (min-width:50rem) {
    .horiz.x2,
    .horiz.x3,
    .horiz.x4 {
        justify-content: space-between
    }

        .horiz.x2 > * {
            flex: 1 1 45%
        }

        .horiz.x2 > *,
        .horiz.x3 > * {
            padding: 1rem;
            margin-top: 0
        }

        .horiz.x3 > * {
            flex: 1 1 30%
        }

        .horiz.x4 > * {
            padding: 1rem;
            margin-top: 0;
            flex: 1 1 45%
        }

    .horiz > .push {
        padding: 1rem;
        flex: 1.5
    }

    .padding-match {
        padding: 1rem
    }

    form .horiz.x2 > *,
    form .horiz.x3 > *,
    form .horiz.x4 > *,
    form .horiz > .push,
    form .padding-match {
        padding: 0 1rem
    }

    #logo {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }

        #logo svg,
        .logo svg {
            width: 20em
        }

    .nav-toggler {
        display: none !important
    }

    .hamburger,
    input.nav-toggler:checked ~ ul.sub-menu {
        display: none
    }

    .header-nav,
    .util-wrap {
        display: block
    }

    .Redeploy .header-nav {
        margin-top: 48px;
    }

    .header-nav {
        padding-right: 0;
        margin: 0
    }
        /*header.main {
	    position: absolute;
    }*/
        .header-nav ul {
            display: flex;
            width: 65%;
            float: right
        }

        .header-nav .menu-item-has-children {
            position: relative
        }

        .header-nav ul.sub-menu {
            position: absolute;
            top: 100%;
            text-align: left;
            width: 145%;
            box-shadow: 0 0 8px 8px #d3d3d3;
            z-index: 99999
        }

        .header-nav li:hover ul.sub-menu {
            display: block;
            box-shadow: -5px 10px 24px -5px rgba(0, 0, 0, .2)
        }

        .header-nav .main-menu-item {
            flex: 1;
            text-align: center;
            line-height: 1.2
        }

            .header-nav .main-menu-item:hover > a:after {
                content: "";
                max-width: 100%;
                height: 2px;
                background-color: #2b73ba;
                margin: 0 1em
            }

            .header-nav .main-menu-item:last-of-type {
                padding-right: 0
            }

        .header-nav .main-menu-link {
            display: flex;
            flex-direction: column;
            justify-content: flex-end
        }

            .header-nav .main-menu-link:last-of-type {
                padding-right: 0;
                padding-left: 0;
            }

        .header-nav .sub-menu-link {
            display: block;
            color: #2b73ba;
            border-left: 2px solid transparent;
            border-right: 2px solid transparent
        }

            .header-nav .sub-menu-link:hover {
                color: #0e3e6d;
                border-color: #2b73ba;
                background-color: #ebebeb
            }
}

@media (min-width:71.25rem) {
    .horiz.x4 > * {
        flex: 1 1 22.5%
    }
}

@media (min-width:40em) {
    .h1,
    h1 {
        font-size: 4rem
    }

    .h2,
    h2 {
        font-size: 2.75rem
    }

    p {
        font-size: 1.125rem
    }

    .company-carousel li.carousel-cell .featured {
        display: block;
        height: 12em;
        position: relative
    }

    .company-carousel .flickity-prev-next-button,
    .company-carousel .flickity-prev-next-button:focus,
    .company-carousel .flickity-prev-next-button:hover {
        background-color: transparent;
        height: 4em;
        width: 3em
    }

        .company-carousel .flickity-prev-next-button:focus svg path,
        .company-carousel .flickity-prev-next-button:hover svg path,
        .company-carousel .flickity-prev-next-button svg path {
            fill: #2b73ba
        }

    .company-grid li {
        flex-basis: 17%
    }

        .company-grid li.half {
            margin: 1em;
            flex-basis: 40%
        }

    .hero,
    .hero-2 {
        min-height: 33em
    }

    .icon-grid li.article {
        transition: border .3s ease, padding-top .3s ease;
        height: 29em
    }

    .icon-grid svg {
        width: 6em;
        height: 6em;
        position: relative;
        left: auto;
        top: auto;
        -webkit-transform: none;
        transform: none
    }

        .icon-grid svg path {
            fill: #0e3e6d;
            transition: fill .3s ease
        }

    .icon-grid h3:after {
        display: block;
        width: 2em;
        height: 2px;
        background-color: #2b73ba;
        margin: 1em auto
    }

    .icon-grid a {
        bottom: -5em;
        opacity: 0;
        transition: opacity .15s linear, bottom .3s ease, color .2s linear, background-color .2s linear
    }

    .icon-grid li.article:hover {
        border: 1px solid #2b73ba;
        padding-top: 1em
    }

        .icon-grid li.article:hover svg path {
            fill: #2b73ba
        }

        .icon-grid li.article:hover a {
            bottom: 0;
            opacity: 1
        }

    .industry-archive .single-industry svg {
        height: 5em;
        display: inline-block;
        position: relative;
        -webkit-transform: translateY(1.5em);
        transform: translateY(1.5em)
    }

        .industry-archive .single-industry svg path {
            fill: #3d3d3d
        }

    .product-list .single-product h4 {
        flex: 0 1 50%
    }
}

@media (min-width:55em) {
    .kaiteki img {
        display: block;
        position: absolute;
        border-radius: 100%;
        border: 3px solid transparent;
        box-shadow: 0 0 0 2px #87bdff
    }

        .kaiteki img:first-of-type {
            width: 17em;
            height: 17em;
            top: 0;
            left: -21em
        }

        .kaiteki img:nth-of-type(2) {
            width: 16em;
            height: 16em;
            bottom: 2em;
            right: -22em;
            z-index: 1
        }

        .kaiteki img:nth-of-type(3) {
            width: 13em;
            height: 13em;
            top: 15em;
            left: -19em;
            z-index: 1
        }

        .kaiteki img:last-of-type {
            width: 13em;
            height: 13em;
            bottom: 15em;
            right: -26em
        }
}

@media (min-width:53.33333em) {
    .hero .videoholder video,
    .hero img {
        margin-top: calc(-1 * (56.25vw - 30em) / 2)
    }
}

@media (min-width:60em) {
    .product-list .h2.has-icon {
        margin-left: 2em
    }

    .product-list svg {
        display: inline-block;
        width: 4em;
        height: 4em;
        bottom: .75em;
        position: absolute
    }

        .product-list svg path {
            fill: #fff
        }

    .gallery-columns-3 figure {
        flex: 1 1 30%
    }

    .gallery-columns-4 figure {
        flex: 1 1 22.5%
    }
}
