a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:after, blockquote:before, q:after, q:before {
        content: "";
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

@font-face {
    font-family: Graphik;
    src: url(../assets/fonts/Graphik/Graphik-Regular-Web.woff2) format("woff2"),url(../assets/fonts/Graphik/Graphik-Regular-Web.woff) format("woff");
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: Graphik;
    src: url(../assets/fonts/Graphik/Graphik-Medium-Web.woff2) format("woff2"),url(../assets/fonts/Graphik/Graphik-Medium-Web.woff) format("woff");
    font-style: normal;
    font-weight: 500;
}

@font-face {
    font-family: Graphik;
    src: url(../assets/fonts/Graphik/Graphik-Semibold.woff2) format("woff2"),url(../assets/fonts/Graphik/Graphik-Semibold.woff) format("woff");
    font-style: normal;
    font-weight: 600;
}

@font-face {
    font-family: Northwell;
    src: url(../assets/fonts/Northwell/Northwell.woff2) format("woff2"),url(../assets/fonts/Northwell/Northwell.woff) format("woff");
    font-style: normal;
    font-weight: 400;
}

.text--white {
    color: #fff;
}

.grid-container {
    margin: 0 auto;
    width: 90%;
    max-width: 1180px;
}

.header__container {
    height: 100%;
}

.header__container, .header__title {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.header__title {
    padding-right: 20px;
    margin: 0;
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .header__title a, .header__title a:hover {
        color: #fff;
    }

.header__nav {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.header__nav-item {
    display: inline-block;
}

    .header__nav-item a {
        padding: 30px 20px;
        color: #ccc;
        font-weight: 500;
        letter-spacing: 1px;
        -webkit-transition: background-color .2s ease;
        transition: background-color .2s ease;
    }

        .header__nav-item a:hover {
            color: #fff;
            background-color: #222;
        }

.header a {
    border: 0;
}

.footer__container {
    padding: 50px 0;
    border-top: 1px solid #ccc;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.modal--opened {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.modal__overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .75;
    cursor: pointer;
}

.modal__box {
    position: relative;
    padding: 40px;
    max-width: 80%;
    color: #000;
    background-color: #fff;
    z-index: 10;
}

.modal__title {
    font-size: calc(24px + 36*(100vw - 420px)/860);
}

.modal__content, .modal__content p {
    font-size: calc(14px + 4*(100vw - 420px)/860);
    line-height: calc(20px + 6*(100vw - 420px)/860);
}

.button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    display: inline-block;
    cursor: pointer;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: #191818;
}

    .button .button__arrow, .button .button__content {
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
    }

    .button .button__arrow {
        position: relative;
        overflow: hidden;
        box-sizing: border-box;
        border: 1px solid #5d5d5d;
        -webkit-box-pack: center;
        justify-content: center;
        width: 48px;
        height: 48px;
    }

        .button .button__arrow.text {
            margin-left: 13px;
        }

        .button .button__arrow:after {
            content: "";
            position: absolute;
            z-index: -1;
            top: 0;
            left: 0;
            height: 100%;
            width: 0;
            background-color: #5d5d5d;
            -webkit-transition: all .2s ease;
            transition: all .2s ease;
        }

        .button .button__arrow > svg {
            fill: #5d5d5d;
            -webkit-transition: fill .2s ease;
            transition: fill .2s ease;
        }

    .button:hover .button__arrow:after {
        width: 100%;
    }

    .button:hover .button__arrow > svg {
        fill: #fff;
    }

    .button:focus {
        outline: none;
    }

    .button[disabled] {
        background-color: #5d5d5d;
        pointer-events: none;
    }

.button--solid .button__arrow {
    border: 1px solid #5d5d5d;
}

    .button--solid .button__arrow:after {
        width: 100%;
    }

    .button--solid .button__arrow > svg {
        fill: #fff;
    }

.button--solid:hover .button__arrow:after {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.button--solid:hover .button__arrow > svg {
    fill: #5d5d5d;
}

.button--white .button__arrow {
    border: 1px solid #fff;
}

    .button--white .button__arrow:after {
        background-color: #fff;
    }

    .button--white .button__arrow > svg {
        fill: #fff;
    }

.button--white:hover .button__arrow > svg {
    fill: #5d5d5d;
}

.button--white-orange .button__arrow {
    border: 1px solid #fff;
}

    .button--white-orange .button__arrow:after {
        background-color: #fff;
    }

    .button--white-orange .button__arrow > svg {
        fill: #fff;
    }

.button--white-orange:hover .button__arrow > svg {
    fill: #ee9439;
}

.button--orange .button__arrow {
    border: 1px solid #ee9439;
}

    .button--orange .button__arrow:after {
        background-color: #ee9439;
    }

    .button--orange .button__arrow > svg {
        fill: #ee9439;
    }

.button--orange:hover .button__arrow > svg {
    fill: #fff;
}

.button--white-blue .button__arrow {
    border: 1px solid #fff;
}

    .button--white-blue .button__arrow:after {
        background-color: #fff;
    }

    .button--white-blue .button__arrow > svg {
        fill: #fff;
    }

.button--white-blue:hover .button__arrow > svg {
    fill: #143642;
}

.button--blue .button__arrow {
    border: 1px solid #143642;
}

    .button--blue .button__arrow:after {
        background-color: #143642;
    }

    .button--blue .button__arrow > svg {
        fill: #143642;
    }

.button--blue:hover .button__arrow > svg {
    fill: #fff;
}

.button--red .button__arrow {
    border: 1px solid #c42424;
}

    .button--red .button__arrow:after {
        background-color: #c42424;
    }

    .button--red .button__arrow > svg {
        fill: #c42424;
    }

.button--red:hover .button__arrow > svg {
    fill: #fff;
}

.button--red-solid .button__arrow {
    border: 1px solid #c42424;
}

    .button--red-solid .button__arrow:after {
        background-color: #c42424;
        width: 100%;
    }

    .button--red-solid .button__arrow > svg {
        fill: #fff;
    }

.button--red-solid:hover .button__arrow:after {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.button--red-solid:hover .button__arrow > svg {
    fill: #c42424;
}

.hero {
    position: relative;
    height: calc(100vh - 145px);
    background-size: cover;
    background-position: 50%;
}

.hero__heading {
    position: absolute;
    top: 60%;
    left: 50%;
    -webkit-transform: translate(-50%,-25%);
    transform: translate(-50%,-25%);
    width: 80%;
    text-align: center;
    color: #fff;
    opacity: 0;
    -webkit-transition: all .75s ease-in-out;
    transition: all .75s ease-in-out;
    overflow: visible;
    padding-top: 10px;
}

    .hero__heading.active {
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
        opacity: 1;
    }

        .hero__heading.active > span span, .hero__heading.active > span span:after {
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }

    .hero__heading > span {
        position: relative;
        font-family: Northwell,Graphik,Helvetica,Arial,sans-serif;
        font-size: 100px;
        line-height: 110px;
        font-weight: 200;
        padding-top: 35px;
    }

        .hero__heading > span:last-child span, .hero__heading > span:last-child span:after {
            -webkit-transition-delay: 1.5s;
            transition-delay: 1.5s;
        }

        .hero__heading > span span {
            left: -15px;
            bottom: -10px;
            width: 110%;
            -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
            z-index: -1;
            overflow: hidden;
        }

            .hero__heading > span span, .hero__heading > span span:after {
                position: absolute;
                height: 50px;
                -webkit-transition: -webkit-transform .5s ease-in-out;
                transition: -webkit-transform .5s ease-in-out;
                transition: transform .5s ease-in-out;
                transition: transform .5s ease-in-out,-webkit-transform .5s ease-in-out;
                -webkit-transition-delay: 1s;
                transition-delay: 1s;
            }

                .hero__heading > span span:after {
                    content: "";
                    left: 0;
                    bottom: 0;
                    background-image: url(../assets/img/hero/home-hero-underline.png);
                    background-size: contain;
                    background-repeat: no-repeat;
                    width: 100%;
                    -webkit-transform: translateX(100%);
                    transform: translateX(100%);
                }

.hero__button {
    -webkit-transform: translateX(-50%) rotate(90deg);
    transform: translateX(-50%) rotate(90deg);
    position: absolute;
    bottom: 45px;
    left: 50%;
    z-index: 1;
}

.featured-news-items {
    margin: 58px 0 94px;
}

.featured-news-items__left {
    position: relative;
}

.featured-news-items__image-container {
    display: none;
}

    .featured-news-items__image-container img {
        position: absolute;
        top: 0;
        width: 100%;
        height: auto;
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
        -webkit-transition: all .25s ease;
        transition: all .25s ease;
    }

        .featured-news-items__image-container img.active {
            display: block;
            opacity: 1;
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }

.featured-news-items__title {
    margin-bottom: 70px;
}

.featured-news-items__list-item {
    margin-bottom: 103px;
}

    .featured-news-items__list-item:last-child {
        margin-bottom: 110px;
    }

    .featured-news-items__list-item span {
        display: block;
        font-weight: 500;
        font-size: 14px;
        line-height: 22px;
        color: #c42424;
        margin-bottom: 16px;
    }

    .featured-news-items__list-item p {
        font-weight: 400;
        font-size: 27px;
        line-height: 33px;
    }

.impact-metrics {
    padding: 70px 0 50px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0;
    color: #fff;
}

.impact-metrics__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.05);
}

.impact-metrics .grid-container {
    position: relative;
}

.impact-metrics__title {
    font-size: 33px;
    line-height: 20px;
    margin-bottom: 23px;
}

.impact-metrics__description {
    margin-bottom: 100px;
    max-width: 450px;
    font-size: 18px;
    line-height: 24px;
}

.impact-metrics__item {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    margin-bottom: 38px;
}

    .impact-metrics__item:last-child {
        margin: 0;
    }

.impact-metrics__item-number {
    font-weight: 600;
    font-size: 60px;
    line-height: 60px;
}

.impact-metrics__label {
    font-size: 16px;
    line-height: 23px;
}

.text-full-width {
    max-width: 890px;
    margin: 0 auto;
    width: 75%;
    padding: 145px 0 160px;
    padding: 80px 0 80px;
    text-align: center;
}

.text-full-width__heading {
    font-weight: 400;
}

.gallery-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 145px;
    margin-bottom: 80px;
}

.gallery-slider__container {
    padding-left: 5%;
    width: 75%;
}

.gallery-slider__top {
    padding-left: 10px;
    padding-bottom: 35px;
}

.gallery-slider__title {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #191818;
}

.gallery-slider__count {
    position: absolute;
    top: 0;
    right: 5%;
    display: -webkit-box;
    display: flex;
    font-size: 10px;
    line-height: 18px;
}

.gallery-slider__count--current:after {
    content: "-";
    margin-left: 5px;
    margin-right: 5px;
}

.gallery-slider__nav {
    position: absolute;
    bottom: 41px;
    left: 1px;
    z-index: 2;
    
}

.gallery-slider__nav--left .button:hover .button__arrow:after {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.gallery-slider__nav--left .button .button__arrow:after {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    width: 100%;
}

.gallery-slider__nav--left .button__arrow {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    border-top-width: 0 !important;
}

.gallery-slider__wrapper {
    position: relative;
}

    .gallery-slider__wrapper:before {
        position: absolute;
        top: 0;
        right: 100%;
        height: 100%;
        width: 100%;
        background-color: #f8f7f0;
        z-index: 2;
    }

    .gallery-slider__wrapper .slick-list {
        overflow: visible;
        -webkit-transform: none;
        transform: none;
    }

.gallery-slider__slide--wrapper {
    position: relative;
    height: 530px;
    background-color: #efede7;
    overflow: hidden;
    margin: 0 10px;
}

    .gallery-slider__slide--wrapper:after {
        content: "";
        left: 0;
        bottom: 0;
        height: 100%;
        width: 100%;
        background-color: #fff;
        -webkit-transform: translateY(35%);
        transform: translateY(35%);
    }

    .gallery-slider__slide--wrapper:after, .gallery-slider__slide--wrapper img {
        position: absolute;
        -webkit-transition: -webkit-transform .5s ease-out;
        transition: -webkit-transform .5s ease-out;
        transition: transform .5s ease-out;
        transition: transform .5s ease-out,-webkit-transform .5s ease-out;
    }

    .gallery-slider__slide--wrapper img {
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%,-85%) scale(1.05);
        transform: translate(-50%,-85%) scale(1.05);
        z-index: 1;
        max-width: 45%;
    }

.gallery-slider__slide--copy {
    position: absolute;
    left: 50%;
    top: 75%;
    z-index: 1;
    width: calc(100% - 60px);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    opacity: 1;
    -webkit-transition: all .5s ease-out .15s;
    transition: all .5s ease-out .15s;
}

.gallery-slider__slide--description {
    font-size: 16px;
    line-height: 24px;
}

.gallery-slider__slide--cta {
    margin-top: 20px;
    font-size: 14px;
    line-height: 18px;
}

    .gallery-slider__slide--cta a:hover {
        color: #c42424;
    }

.gallery-slider__slide--title {
    padding: 25px 10px 0;
    font-weight: 400;
    margin: 0;
}

.two-image-stack-with-text {
    margin-bottom: 80px;
}

.two-image-stack-with-text__heading {
    margin-bottom: 15px;
}

.two-image-stack-with-text__subheading {
    font-weight: 400;
    margin-bottom: 40px;
}

.two-image-stack-with-text__images {
    position: relative;
    margin-bottom: 50px;
}

    .two-image-stack-with-text__image-1, .two-image-stack-with-text__images img {
        width: 100%;
    }

.two-image-stack-with-text__image-1-text {
    position: absolute;
    top: 11px;
    left: 20px;
    font-size: 12px;
    line-height: 33px;
}

.two-image-stack-with-text__image-2 {
    width: 80%;
    margin: -40% auto 0;
}

.text-with-image-overlay {
    margin: 70px 0;
    position: relative;
    overflow: hidden;
}

.text-with-image-overlay__bg {
    height: 200%;
    width: 150vw;
    background: #ee9439;
    z-index: 1;
    position: absolute;
    top: 100%;
    -webkit-transform: translate(-75%,-25%);
    transform: translate(-75%,-25%);
    left: 100%;
}

.text-with-image-overlay__image img, .text-with-image-overlay__text-content {
    position: relative;
    z-index: 2;
}

.text-with-image-overlay__image {
    line-height: 0;
    position: relative;
}

    .text-with-image-overlay__image img {
        width: 100%;
        display: block;
        margin: 0 auto;
    }

.text-with-image-overlay__text-content {
    padding: 52px 0;
    width: 89%;
}

.text-with-image-overlay__cta .button, .text-with-image-overlay__description, .text-with-image-overlay__description-heading, .text-with-image-overlay__title {
    color: #fff;
}

.text-with-image-overlay__title {
    margin-bottom: 5px;
}

.text-with-image-overlay__description {
    margin-bottom: 25px;
}

.text-with-image-overlay__description-heading {
    font-size: 48px;
    line-height: 53px;
}

.text-with-image-overlay__description-copy {
    color: #f7c99c;
    font-size: 18px;
    line-height: 27px;
}

.text-with-image-overlay.inverse .text-with-image-overlay__content {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    flex-direction: column-reverse;
}

.text-with-image-overlay.inverse .text-with-image-overlay__bg {
    top: -100%;
}

.text-with-image-overlay--careers {
    margin-top: 0;
}

    .text-with-image-overlay--careers .text-with-image-overlay__bg {
        background: #143642;
    }

    .text-with-image-overlay--careers .text-with-image-overlay__title {
        margin-bottom: 35px;
    }

    .text-with-image-overlay--careers .text-with-image-overlay__description {
        max-width: 325px;
    }

    .text-with-image-overlay--careers .text-with-image-overlay__description-heading {
        margin-bottom: 12px;
    }

    .text-with-image-overlay--careers .text-with-image-overlay__description-copy {
        margin-bottom: 64px;
        font-size: 21px;
        line-height: 27px;
        color: #899ba0;
    }

.offset-image-columns {
    background-color: #fff;
    padding: 70px 0 95px;
}

    .offset-image-columns .grid-container {
        position: relative;
    }

.offset-image-columns__intro {
    margin-bottom: 65px;
}

.offset-image-columns__heading {
    margin-bottom: 15px;
    font-size: 33px;
    line-height: 20px;
}

.offset-image-columns__subheading {
    font-weight: 400;
}

.offset-image-columns__row:last-child .offset-image-columns__row--left {
    margin-bottom: 0;
}

.offset-image-columns__row:nth-child(odd) {
    margin-bottom: -20px;
}

.offset-image-columns__row img {
    width: 100%;
}

.offset-image-columns__row--left, .offset-image-columns__row--right {
    margin-bottom: 110px;
}

.offset-image-columns__row--title {
    margin-top: 20px;
}

.mailing-list {
    margin-bottom: 150px;
}

.mailing-list__title {
    margin-bottom: 15px;
}

.mailing-list__heading {
    font-size: 30px;
    line-height: 39px;
    margin-bottom: 35px;
}

.mailing-list__form {
    position: relative;
    border-bottom: 1px solid #898784;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: end;
    align-items: flex-end;
}

    .mailing-list__form input[type=email] {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border: none;
        background: transparent;
        height: 33px;
        width: calc(100% - 75px);
        font-size: 21px;
        line-height: 33px;
        margin-bottom: 28px;
    }

        .mailing-list__form input[type=email]:focus {
            outline: none;
        }

    .mailing-list__form button {
        position: absolute;
        right: 0;
        bottom: 25px;
    }

body {
    color: #5d5d5d;
    font-family: Graphik,Helvetica,Arial,sans-serif;
    font-family: Arial,Helvetica,Verdana,sans-serif;
    font-size: 15px;
    background: #f8f7f0;
    
}

.error-noid {
    padding: 10px;
    margin: 10px 0;
    font-size: 14px;
    line-height: 20px;
    background-color: pink;
}

h1 {
    font-size: 72px;
    line-height: 26px;
}

h1, h2 {
    text-rendering: optimizeLegibility;
    font-family: Graphik,Helvetica,Arial,sans-serif;
    color: #191818;
    font-weight: 600;
    margin: 0;
    letter-spacing: -2px;
}

h2 {
    font-size: 48px;
    line-height: 54px;
}

h3 {
    font-size: 33px;
    line-height: 53px;
}

h3, h4 {
    
    font-family: Graphik,Helvetica,Arial,sans-serif;
    color: #191818;
    font-weight: 600;
    margin: 0;
}

h4 {
    font-size: 24px;
    line-height: 33px;
}

h5 {
    font-size: 18px;
    line-height: 24px;
}

h5, h6 {
    text-rendering: optimizeLegibility;
    font-family: Graphik,Helvetica,Arial,sans-serif;
    color: #191818;
    font-weight: 600;
    margin: 0;
}

h6 {
    font-size: 19px;
    line-height: 29px;
}

p {
    margin: 0;
    line-height: 22px;
}

a {
    color: #191818;
    text-decoration: none;
    -webkit-transition: color .2s ease;
    transition: color .2s ease;
    font-weight: 500;
}

    a:hover {
        color: #8c8c8c;
    }

mark {
    background-color: #ff0;
}

del, mark {
    padding: 3px 7px 1px;
}

del {
    background-color: pink;
}

del, s {
    text-decoration: line-through;
}

ins {
    padding: 3px 7px 1px;
    background-color: #90ee90;
    text-decoration: none;
}

u {
    text-decoration: underline;
}

/*small {
    font-size: 75%;
}*/

b, strong {
    font-weight: 700;
}

em, i {
    font-style: italic;
}

abbr[title] {
    text-decoration: none;
    border-bottom: 2px solid #333;
    cursor: help;
}

cite {
    font-style: italic;
}

button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    display: inline-block;
    cursor: pointer;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: #191818;
}

    button .button__arrow, button .button__content {
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
    }

    button .button__arrow {
        position: relative;
        overflow: hidden;
        box-sizing: border-box;
        border: 1px solid #5d5d5d;
        -webkit-box-pack: center;
        justify-content: center;
        width: 48px;
        height: 48px;
    }

        button .button__arrow.text {
            margin-left: 13px;
        }

        button .button__arrow:after {
            content: "";
            position: absolute;
            z-index: -1;
            top: 0;
            left: 0;
            height: 100%;
            width: 0;
            background-color: #5d5d5d;
            -webkit-transition: all .2s ease;
            transition: all .2s ease;
        }

        button .button__arrow > svg {
            fill: #5d5d5d;
            -webkit-transition: fill .2s ease;
            transition: fill .2s ease;
        }

    button:hover .button__arrow:after {
        width: 100%;
    }

    button:hover .button__arrow > svg {
        fill: #fff;
    }

    button:focus {
        outline: none;
    }

    button[disabled] {
        background-color: #5d5d5d;
        pointer-events: none;
    }

@media only screen and (min-width:768px) {
    
    .hero {
        height: 700px;
    }

    .hero__heading {
        top: 50%;
        width: 100%;
        padding-top: 0;
        line-height: 210px;
    }

    .hero__button {
        display: none;
    }

    .featured-news-items {
        margin: 68px 0 137px;
    }

    .featured-news-items__list-item {
        margin-bottom: 92px;
    }

        .featured-news-items__list-item p {
            font-size: 39px;
            line-height: 45px;
        }

    .impact-metrics {
        padding: 85px 0 97px;
    }

    .impact-metrics__title {
        font-size: 39px;
        line-height: 45px;
        margin-bottom: 15px;
    }

    .impact-metrics__description {
        margin-bottom: 38px;
        font-weight: 400;
        font-size: 21px;
        line-height: 27px;
    }

    .impact-metrics__item-number {
        font-size: 100px;
        line-height: 100px;
    }

    .text-full-width {
        width: 80%;
        padding: 210px 0 200px;
    }

    .gallery-slider {
        margin-bottom: 140px;
    }

    .gallery-slider__slide--wrapper img {
        max-width: 65%;
    }

    .two-image-stack-with-text {
        margin-bottom: 175px;
    }

    .two-image-stack-with-text__content {
        display: grid;
        grid-template-columns: 55% 1fr;
        grid-gap: 50px;
    }

    .two-image-stack-with-text__images {
        margin-bottom: 0;
    }

    .text-with-image-overlay {
        margin: 140px 0 150px;
    }

    .text-with-image-overlay__content {
        height: 500px;
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        flex-direction: row-reverse;
        -webkit-box-align: center;
        align-items: center;
    }

    .text-with-image-overlay__bg {
        -webkit-transform: none;
        transform: none;
        left: auto;
        right: 50%;
        top: -50%;
    }

    .text-with-image-overlay__image img {
        max-width: 315px;
    }

    .text-with-image-overlay__text-content {
        padding: 0;
        width: 43%;
        width: 52%;
    }

    .text-with-image-overlay.inverse .text-with-image-overlay__content {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
        -webkit-box-pack: start;
        justify-content: flex-start;
    }

    .text-with-image-overlay.inverse .text-with-image-overlay__text-content {
        margin-left: 50px;
    }

    .text-with-image-overlay.inverse .text-with-image-overlay__bg {
        left: 50%;
        right: auto;
        top: -50%;
    }

    .text-with-image-overlay--careers {
        margin: 120px 0 117px;
    }

        .text-with-image-overlay--careers .text-with-image-overlay__description {
            margin: 35px 0 64px;
        }

    .offset-image-columns {
        padding: 120px 0 125px;
    }

    .offset-image-columns__intro {
        position: absolute;
        top: 0;
        left: 0;
        width: 50%;
    }

    .offset-image-columns__row {
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }

    .offset-image-columns__row--left, .offset-image-columns__row--right {
        margin-bottom: 0;
        max-width: 46%;
    }

    .offset-image-columns__row--right {
        -webkit-box-ordinal-group: 2;
        order: 1;
    }

    .offset-image-columns__row--left {
        margin-top: 55%;
    }

    .mailing-list {
        margin-bottom: 80px;
        margin-bottom: 173px;
    }

    .mailing-list__title {
        margin-bottom: 35px;
    }

    .mailing-list__heading {
        width: 60%;
        margin-bottom: 60px;
    }
}

@media only screen and (min-width:992px) {
    .hero__heading > span {
        font-size: 170px;
        line-height: 110px;
        padding-top: 0;
    }

        .hero__heading > span span {
            bottom: 15px;
        }

    .featured-news-items__list-item a {
        display: inline-block;
        opacity: .65;
        -webkit-transition: all .25s ease;
        transition: all .25s ease;
    }

        .featured-news-items__list-item a:hover {
            opacity: 1;
            color: #191818;
        }

    .text-full-width {
        width: 100%;
        padding: 155px 0 145px;
    }

    .gallery-slider {
        margin-bottom: 215px;
    }

    .gallery-slider__slide--wrapper img {
        max-width: 55%;
    }

    .gallery-slider__slide--title {
        padding: 15px 10px 0;
    }

    .two-image-stack-with-text {
        margin-bottom: 405px;
    }

    .two-image-stack-with-text__subheading {
        margin-bottom: 120px;
    }

    .two-image-stack-with-text__content {
        grid-gap: 100px;
    }

    .two-image-stack-with-text__image-2 {
        margin: 0;
        position: absolute;
        top: 270px;
        right: -75px;
        max-width: 340px;
    }

    .offset-image-columns {
        padding: 155px 0 170px;
    }

    .offset-image-columns__intro {
        width: 40%;
    }

    .offset-image-columns__heading {
        font-size: 39px;
        line-height: 45px;
    }

    .offset-image-columns__row:nth-child(odd) {
        margin-bottom: 20px;
    }

    .offset-image-columns__row:nth-child(2n) .offset-image-columns__row--right {
        max-width: 36%;
    }

    .offset-image-columns__row--right, .offset-image-columns__row:nth-child(2n) .offset-image-columns__row--left {
        max-width: 45%;
    }

    .offset-image-columns__row--left {
        max-width: 32%;
        margin-top: 25%;
    }

    .offset-image-columns__row--description {
        margin-bottom: 5px;
    }

    .mailing-list__container {
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }

    .mailing-list__heading {
        width: 35%;
        margin-bottom: 0;
    }

    .mailing-list__form {
        width: 50%;
        margin-bottom: 10px;
    }

    h1 {
        font-size: 120px;
        line-height: 26px;
    }

    h2 {
        font-size: 100px;
        line-height: 100px;
    }

    h3 {
        font-size: 48px;
        line-height: 53px;
    }

    h4 {
        font-size: 39px;
        line-height: 45px;
    }

    h5 {
        font-size: 21px;
        line-height: 27px;
    }

    h6 {
        font-size: 18px;
        line-height: 24px;
    }
}

@media only screen and (min-width:1200px) {
    .featured-news-items .grid-container, .featured-news-items__left {
        display: -webkit-box;
        display: flex;
    }

    .featured-news-items__left {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        width: 330px;
        min-width: 330px;
        line-height: 0;
    }

    .featured-news-items__right {
        padding-left: 150px;
    }

    .featured-news-items__image-container {
        display: block;
        position: relative;
    }

    .impact-metrics {
        background-position: 0;
    }

    .gallery-slider__container {
        position: relative;
        width: 90%;
        margin: 0 auto;
        max-width: 1050px;
        padding-left: 50px;
    }

    .gallery-slider__top {
        padding-bottom: 0;
    }

    .gallery-slider__title {
        position: absolute;
        top: 10%;
        left: -100px;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        z-index: 4;
        padding-left: 0;
    }

    .gallery-slider__count {
        display: none;
    }

    .gallery-slider__nav {
        display: block;
    }

    .gallery-slider__wrapper:before {
        content: "";
    }

    .gallery-slider__slide--wrapper:hover:after {
        -webkit-transform: translateY(35%);
        transform: translateY(35%);
    }

    .gallery-slider__slide--wrapper:hover img {
        -webkit-transform: translate(-50%,-85%) scale(1.05);
        transform: translate(-50%,-85%) scale(1.05);
    }

    .gallery-slider__slide--wrapper:hover .gallery-slider__slide--copy {
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
        opacity: 1;
        -webkit-transition: all .5s ease-out .15s;
        transition: all .5s ease-out .15s;
    }

    .gallery-slider__slide--wrapper:after {
        -webkit-transform: translateY(50%);
        transform: translateY(50%);
    }

    .gallery-slider__slide--wrapper img {
        max-width: 65%;
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
    }

    .gallery-slider__slide--copy {
        -webkit-transform: translate(-50%);
        transform: translate(-50%);
        opacity: 0;
        -webkit-transition: all .5s ease-out;
        transition: all .5s ease-out;
    }

    .two-image-stack-with-text__image-2 {
        top: 320px;
        right: -150px;
        max-width: 440px;
    }

    .text-with-image-overlay {
        margin: 216px 0 200px;
    }

    .text-with-image-overlay__content {
        height: 700px;
    }

    .text-with-image-overlay__image img {
        max-width: 490px;
    }

    .text-with-image-overlay__description {
        margin: 117px 0 88px;
    }

    .text-with-image-overlay__description-copy {
        font-size: 39px;
        line-height: 45px;
    }

    .text-with-image-overlay.inverse .text-with-image-overlay__text-content {
        margin-left: 110px;
    }

    .text-with-image-overlay--careers {
        margin: 200px 0;
    }

        .text-with-image-overlay--careers .text-with-image-overlay__description {
            margin: 158px 0 148px;
            max-width: 430px;
        }

        .text-with-image-overlay--careers .text-with-image-overlay__description-copy {
            font-size: 21px;
            line-height: 27px;
        }
}

@media screen and (min-width:1280px) {
    .modal__title {
        font-size: 60px;
    }

    .modal__content, .modal__content p {
        line-height: 26px;
        font-size: 18px;
    }
}

@media screen and (max-width:420px) {
    .modal__title {
        font-size: 24px;
    }

    .modal__content, .modal__content p {
        line-height: 20px;
        font-size: 14px;
    }
}

/* Footer */

.footer {
    margin-top: auto;
    background-color: #f2f2f2;
}

.footer__sitemap {
    background-color: #f2f2f2;
}
.footer__in {
    padding: 5.55556vw;
}
.footer__navi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    line-height: 1.3;
    margin: 0 0 -5.55556vw -8.88889vw;
    font-size: 3.88889vw;
}
.footer__navi-item {
    margin: 0 0 5.55556vw 8.88889vw;
}
.footer__navi-link {
    color: #666;
}
.footer__copy {
    line-height: 1.3;
    margin-top: 5.55556vw;
    font-size: 3.33333vw;
    color: #666;
}
.footer__menu, .footer__submenu {
    line-height: 1.3;
    font-size: 5vw;
}
.footer__menu-trigger {
    display: block;
    border-bottom: 1px solid #d7d7d7;
}
.footer__menu-link[role="button"], .footer__submenu-link[role="button"] {
    pointer-events: none;
}
.footer__menu-link, .footer__submenu-link {
    position: relative;
    display: block;
    padding: 3.61111vw 11.11111vw 3.61111vw 5.55556vw;
    font-weight: bold;
    color: #333;
}
.footer__submenu {
    background-color: #e8e8e8;
    display: none;
}
.footer__submenu>*:last-child {
    margin-bottom: 0;
}
.footer__submenu-title {
    display: block;
    border-bottom: 1px solid #ccc;
    padding: 3.61111vw 5.55556vw;
    font-weight: bold;
    color: #333;
}
.footer__submenu-item {
    border-bottom: 1px solid #ccc;
}
.footer__submenu-link {
    font-weight: normal;
}
/* Header */

.wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.wrapper>* {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.header {
    position: relative;
    z-index: 100;
    background-color: #fff;
}
.header {
    position: relative;
    z-index: 100;
}

.header__logo-image {
    width: 23.88889vw;
}
.header__head {
    width: auto;
    padding-right: 5.55556vw;
    padding-left: 5.55556vw;
    padding-top: 1.94444vw;
    padding-bottom: 1.94444vw;
    background-color: #f2f2f2;
}
.header__search {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #f2f2f2;
    -webkit-box-shadow: 0 0.83333vw 1.66667vw rgba(0,0,0,0.16);
    box-shadow: 0 0.83333vw 1.66667vw rgba(0,0,0,0.16);
    overflow: hidden;
}

.header__in {
    width: auto;
    padding-right: 5.55556vw;
    padding-left: 5.55556vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 2.77778vw;
    padding-bottom: 2.77778vw;
}
.header__logo {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 0;
}

a img {
    border: none;
}

.header__contents {
    margin-left: auto;
}
.header__utility-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header__utility-item {
    font-size: 0;
}

.header__utility-item--trigger {
    width: 6.94444vw;
    height: 6.94444vw;
}
.header__utility-link {
    position: relative;
    display: inline-block;
    width: 6.94444vw;
    height: 6.94444vw;
    padding: 0;
}
.header__trigger {
    z-index: 0;
}
.header__trigger, .header__navi-close, .header__submenu-close {
    position: relative;
    z-index: 11;
    width: 6.94444vw;
    height: 6.94444vw;
    padding: 0;
    background: none;
}

.header__name {
    line-height: 1.3;
    font-size: 3.88889vw;
    color: #666;
}
.wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.header__utility-item+.header__utility-item {
    margin-left: 8.33333vw;
}
.header__navi {
    position: relative;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
}
.header__navi-in {
    height: 100%;
    padding-bottom: 5.55556vw;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}
.header__menu {
    position: relative;
    border-bottom: 1px solid #d7d7d7;
    font-size: 5vw;
}
.header__menu-item, .header__submenu-item {
    border-top: 1px solid #d7d7d7;
}
.header__menu-link, .header__submenu-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 2.77778vw 5.55556vw;
    color: #333;
}
.header__menu-link[role="button"]::after, .header__submenu-link[role="button"]::after {
    content: '';
    display: block;
    width: 2.5vw;
    height: 4.16667vw;
    margin-left: 2.77778vw;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background: url(/assets/img/ico_next.svg) no-repeat center;
    background-size: contain;
}
.header__submenu {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    padding-bottom: 5.55556vw;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    background-color: #f2f2f2;
}
.header__info {
    width: auto;
    padding-right: 5.55556vw;
    padding-left: 5.55556vw;
    margin-top: 13.05556vw;
    font-size: 4.44444vw;
}
.header__info-link {
    color: #666;
    font-size: 14px;
}
.header__info-item+.header__info-item {
    margin-top: 6.66667vw;
}
:not(hr):not(legend), ::before, *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.p-breadcrumbs {
    border-top: 2px solid #e8e8e8;
}
.p-breadcrumbs__list {
    display: none;
}
.p-breadcrumbs__link {
    color: #666;
    font-style: normal;
}
.p-breadcrumbs__item+.p-breadcrumbs__item::before {
    content: '>';
    margin: 0 7px;
}
.c-heading-01 {
    margin-bottom: 8.88889vw;
    padding-top: 8.88889vw;
}
.container, .container--narrow {
    padding-left: 5.55556vw;
    padding-right: 5.55556vw;
}
.c-heading-01>:last-child {
    margin-bottom: 0;
}
.c-heading-01__title {
    margin-bottom: 2.22222vw;
    line-height: 1.22;
    font-size: 10vw;
    font-weight: bold;
}
.c-text, .c-text--caption {
    margin-bottom: 8.88889vw;
}

.p-list, .p-list--circle, .p-list--scroll, .p-list--notes, .p-list--counter, .p-list--counter-notes {
    margin-bottom: 8.88889vw;
}
.p-list--circle .p-list__item {
    padding-left: 4.44444vw;
    text-indent: -4.44444vw;
}
.p-list__item {
    position: relative;
    margin-top: 0;
    margin-top: 4.44444vw;
}
.p-list--circle .p-list__item::before {
    background-color: #666;
    border-radius: 50%;
}
.p-list--circle .p-list__item::before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 1.11111vw;
    height: 1.11111vw;
    margin-right: 12px;
}
.p-list__item>* {
    display: inline;
}
@media screen and (max-width: 1024px) {
    .header__name {
        position: absolute;
        top: 20px;
        margin-left: 175px;
    }
    .header__head {
    position: static;
    padding: 0;
    background: none;
}
    .header__logo-image {
    width: 120px;
}
}
@media screen and (min-width: 768px) {
    .p-list--circle .p-list__item::before {
        width: 6px;
        height: 6px;
        margin-right: 12px;
    }
    .p-list__item {
        margin-top: 16px;
    }
    .p-list--circle .p-list__item {
        padding-left: 18px;
        text-indent: -18px;
    }
    .p-list, .p-list--circle, .p-list--scroll, .p-list--notes, .p-list--counter, .p-list--counter-notes {
        margin-bottom: 40px;
    }
    .c-text>*, .c-text--caption>* {
        margin-bottom: 16px;
    }
    .c-text, .c-text--caption {
        margin-bottom: 40px;
    }
    .c-heading-01__title {
        margin-bottom: 16px;
        line-height: 1.17;
        font-size: 48px;
    }
    .c-heading-01 {
        padding-top: 40px;
        margin-bottom: 40px;
    }
    .p-breadcrumbs {
        border-top: none;
        background-color: #f7f7f7;
    }
    .p-breadcrumbs__list {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        max-width: 1366px;
        margin-right: auto;
        margin-left: auto;
        padding-left: 39px;
        padding-right: 39px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        padding-top: 15px;
        padding-bottom: 15px;
        font-size: 12px;
        color: #666;
    }
    .footer__in {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: baseline;
        -ms-flex-align: baseline;
        align-items: baseline;
        padding: 11px 39px;
    }
    .footer__navi {
        margin: 0 0 -20px -24px;
        font-size: 14px;
    }
    .footer__navi-item {
        margin: 0 0 20px 24px;
    }
    .footer__copy {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        margin: 0 0 0 24px;
        font-size: 12px;
    }
    .footer__menu, .footer__submenu {
        font-size: 18px;
    }
    .footer__menu-link, .footer__submenu-link {
        padding: 13px 78px 13px 39px;
    }
    .footer__submenu-title {
        padding: 13px 39px;
    }
     .header__info-item+.header__info-item {
    margin-top: 24px;
}
    .header__info {
    margin-top: 47px;
    padding: 0;
    font-size: 16px;
}
    .header__submenu {
    padding-bottom: 39px;
}
    .header__menu-link[role="button"]::after, .header__submenu-link[role="button"]::after {
    width: 9px;
    height: 15px;
    margin-left: 10px;
}
    .header__menu-link, .header__submenu-link {
    padding: 10px 39px;
}
    .header__menu {
    margin-left: -39px;
    margin-right: -39px;
    font-size: 18px;
}
    .header__navi-in {
    padding-bottom: 39px;
    padding-left: 39px;
    padding-right: 39px;
}
.header__name {
    font-size: 14px;
}
.header__navi {
    padding-top: 112px;
}
.header__trigger, .header__navi-close, .header__submenu-close {
    width: 25px;
    height: 25px;
}
.header__utility-item--trigger {
    width: 25px;
    height: 25px;
}
.header__utility-item{
    margin-left: 30px;
}
.header__utility-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 25px;
    height: 25px;
}
.header__contents {
    padding-left: 16px;
}
.header__search {
    -webkit-box-shadow: 0 3px 6px rgba(0,0,0,0.16);
    box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}
.header__head {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 1366px;
    margin-right: auto;
    margin-left: auto;
    padding-left: 39px;
    padding-right: 39px;
    padding-top: 7px;
    padding-bottom: 7px;
}
.header__in {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 1366px;
    margin-right: auto;
    margin-left: auto;
    padding-left: 39px;
    padding-right: 39px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.header__logo-image {
    width: 86px;
}

.header__utility-item--trigger {
    width: 25px;
    height: 25px;
}
.container, .container--narrow {
    max-width: 100vw;
    padding-left: 39px;
    padding-right: 39px;
}
}

@media screen and (min-width: 926px) {
    .container--narrow {
        padding-left: calc((100% - 848px) / 2);
        padding-right: calc((100% - 848px) / 2);
    }
}


@media screen and (max-width: 767px) {
    table tr td {
        padding: 1px;
        font-size: 12px;
    }
    .footer__submenu {
        display: block;
        background: none;
        line-height: 1.5;
        font-size: 12px;
    }
    .header__menu {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    border-bottom: none;
}
    .header__navi-in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: auto;
    padding: 0;
    overflow: visible;
}
.header__name {
    position: absolute;
    bottom: 0px;
    margin-left: 10px;
    font-size: 12px;
    top:79px;
}
.header__info {
    width: auto;
    padding-right: 5.55556vw;
    padding-left: 5.55556vw;
    margin-top: 20px;
    font-size: 3.44444vw;
}
.header__navi {
    position: static;
    height: auto;
    padding: 0;
    line-height: 1.2;
    overflow: visible;
    background: none;
}
.header__utility-item--trigger {
    display: none;
}
.header__utility-item+.header__utility-item {
    margin-left: 16px;
}
.header__utility-text {
    line-height: 1.3;
    font-size: 12px;
    color: #666;
    vertical-align: bottom;
}
.header__utility-link {
    width: auto;
    height: auto;
    -webkit-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out;
}
.header__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 16px;
}
.header__search {
    top: auto;
    left: auto;
    position: relative;
}
.header__head {
    position: static;
    padding: 0;
    background: none;
}
.header__in {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    padding-top: 19px;
    padding-bottom: 19px;
}
.header__logo-image {
    width: 80px;
}
}

@media screen and (min-width: 768px) {
    .footer__in {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        max-width: 1366px;
        margin-right: auto;
        margin-left: auto;
        padding-left: 39px;
        padding-right: 39px;
    }
    .footer__sitemap-in {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        max-width: 1366px;
        margin-right: auto;
        margin-left: auto;
        padding-left: 39px;
        padding-right: 39px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding-top: 32px;
        padding-bottom: 32px;
    }
    .footer__menu {
        width: 75%;
    }
    .footer__menu-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .footer__menu-item {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        padding-right: 20px;
    }
    .footer__menu-trigger {
        border-bottom: none;
    }
    .footer__menu-link[role="button"], .footer__submenu-link[role="button"] {
        pointer-events: auto;
    }
    .footer__menu-link {
        margin-bottom: 12px;
        line-height: 1.7;
    }
    .footer__menu-link, .footer__submenu-link {
        padding: 0;
    }
    .footer__submenu {
        display: block;
        background: none;
        line-height: 1.5;
        font-size: 16px;
    }
    .footer__submenu-title {
        display: none;
    }
    .footer__submenu-list {
        margin-bottom: 16px;
    }
    .footer__submenu-item {
        border-bottom: none;
    }
    .header__info-item+.header__info-item {
    margin-top: 0;
    margin-left: 16px;
}
    .header__info-link {
    position: relative;
    display: block;
    height: 38px;
    padding: 2px 0 0;
    margin-bottom: calc(-1em - 3px);
    -webkit-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out;
}
    .header__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0;
    padding: 0;
}
    .header__menu-item+.header__menu-item, .header__submenu-item+.header__submenu-item {
    margin-left: 16px;
}
    .header__submenu-in {
    position: relative;
    height: 100%;
    padding: 44px 0;
}
    .header__submenu {
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    max-height: 0;
    min-height: 0;
    padding: 0 39px;
    line-height: 1.33;
    background-color: #f2f2f2;
    overflow: hidden;
    -webkit-transition: max-height .4s ease-in-out,min-height .4s ease-in-out,visibility .4s ease-in-out;
    transition: max-height .4s ease-in-out,min-height .4s ease-in-out,visibility .4s ease-in-out;
}
    .header__menu-link[role="button"]::after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    margin-left: 0; 
    background: #666;
    opacity: 0;
}
    .header__menu-link {
    position: relative;
    display: block;
    height: 38px;
    padding: 0;
    margin-bottom: calc(-1em - 1px);
    -webkit-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out;
}
    .header__menu-item, .header__submenu-item {
    border-top: none;
}
    .header__menu {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    border-bottom: none;
}
    .header__navi-in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: auto;
    padding: 0;
    overflow: visible;
}
.header__name {
    position: absolute;
    bottom: 90px;
    margin-left: 175px;
}
.header__navi {
    position: static;
    height: auto;
    padding: 0;
    line-height: 1.2;
    overflow: visible;
    background: none;
}
.header__utility-item--trigger {
    display: none;
}
.header__utility-item+.header__utility-item {
    margin-left: 16px;
}
.header__utility-text {
    line-height: 1.3;
    font-size: 14px;
    color: #666;
}
.header__utility-link {
    width: auto;
    height: auto;
    -webkit-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out;
}
.header__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 16px;
}
.header__search {
    top: auto;
    left: auto;
    position: relative;
}
.header__head {
    position: static;
    padding: 0;
    background: none;
}
.header__in {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    padding-top: 19px;
    padding-bottom: 19px;
}
.header__logo-image {
    width: 120px;
}
}

@media screen and (min-width: 1366px) {
    .header__name {
        margin-left: 199px;
    }
}

/* Privacy */

.page-title {
    background: none !important;
}
.page-title {
    padding: 2rem 0;
    background: #ffffff;
    background: -webkit-radial-gradient(center, ellipse cover, #ffffff 0%, #f0f0f0 100%);
    background: -webkit-radial-gradient(center ellipse, #ffffff 0%, #f0f0f0 100%);
    background: radial-gradient(ellipse at center, #ffffff 0%, #f0f0f0 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f0f0f0',GradientType=1 );
}
.page-title h1 {
    border-bottom: 1px solid #b5babf;
    color: #cc0033;
    font-size: 1.625rem;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    letter-spacing: 0.6px;
}
    
.container, .content-container {
    margin: 0 auto;
}
.page-title.overview .container header, .page-title.overview .content-container header, .page-title.overview .social-info header, .page-title.overview .hero article header, .hero .page-title.overview article header, .page-title.overview .solution-grid header {
    width: 100%;
}
.content-container p {
    line-height: 1.8;
    font-size: 13pt;
    color: #333333;
    padding-bottom: 10px;
}
.content-container h2 {
    font-size: 136%;
    font-weight: 600;
    color: #333333;
    line-height: 1.5;
    letter-spacing: normal;
    margin-bottom: 5px;
    margin-top: 5px;
}
.ne-details .content-container ul {
    padding-bottom: 10px;
}
.ne-details .content-container ul li {
    line-height: 2rem;
    margin: 0;
    list-style: none;
    color: #333333;
}
.ne-details .content-container ul li:before {
    display: inline-block;
    content: "";
    width: .5rem;
    height: .5rem;
    margin: .125rem .5rem .125rem 0;
    border-radius: 100px;
    background-color: #cc0033;
}
table {
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
}
.thHeader {
    background-color: #f0f0f0;
}
table tr td {
    padding: 3px;
    border: 1px solid #000;
    border-right: 0px solid #000;
    border-bottom: 0px solid #000;
}
.ne-details .content-container a {
    color: #cc0033;
    text-decoration: none;
    padding: 0 1rem;
}
.c-heading-01>:last-child {
    margin-bottom: 0;
}
.main>:last-child {
    margin-bottom: 0;
}
.c-text>:last-child, .c-text--caption>:last-child {
    margin-bottom: 0;
}
.c-text>*, .c-text--caption>* {
    margin-bottom: 4.44444vw;
}
@media only screen and (max-width: 1400px) {
    
}

@media only screen and (max-width: 1400px) {
    .social-info, .hero article, .solution-grid {
        padding: 0 3rem;
        
    }
}






