body {
    background-color: #ffffff;
    color: #272727;
    font-family: 'proxima-nova', 'OpenSans', 'Pridi', 'NotoSans', 'NotoSansSC', 'NotoSansHebrew', 'NotoSansJapanese', 'Hiragino Kaku Gothic Pro', 'Yu Gothic Medium', 'Yu Gothic', 'Meiryo', 'source-han-sans-japanese', 'source-han-sans-korean', 'source-han-sans-simplified-c', 'Helvetica', 'Arial', 'sans-serif';
    font-size: 18px;
    line-height: 24px;
    font-weight: 300;
    box-sizing: border-box;
    max-width: 100vw;
    overflow-x: hidden;
}
p,h1,h2,h3,h4,h5{ margin: 0; }
.contained {
    width: calc(100% - 30px);
    margin: 0 auto;
}
.contained.mobile-full {
    width: 100%;
}
@media (min-width: 768px) {
    .contained {
        max-width: calc(100% - 30px);
    }
}
@media (min-width: 1024px) {
    .contained {
        max-width: 994px;
    }
}
@media (min-width: 1440px) {
    .contained {
        max-width: 1410px;
    }
}
#content {
    min-height: 0;
    padding: 0;
}
#content .parsys.bodyContent {
    margin-bottom: 0;
}
#mainContainer {
    background-color: white;
    min-height: var(--min-body-height);
}
body[page="cart"] #mainContainer {
    background-color: #FAFAFA;
}
body[page="cart"] #mainContainer #mainContent .container {
    padding-top: 20px;
}
.lazy-fade {
    animation: lazyFade .3s ease-in forwards;
}

@keyframes lazyFade {
    0% {
        opacity: 0;
        visibility: hidden;
    }
    100% {
        opacity: 1;
        visibility: visible;
    }
}

.title{
    font-size: 22px;
    line-height: 27px;
    font-weight: 400;
    margin-bottom: 10px;
}
#people-and-culture .contained{
    text-align: center;
}
#people-and-culture .contained > p{
    margin-bottom: 30px;
}
#the-company{
    padding-top: 80px;
}
#the-company .contained{
    position: relative;
}
#the-company .copy-block{
    text-align: center;
}
#the-company ns-image{
    display: flex;
}
#the-company .the-company__image + .contained ns-button{
    margin: 30px auto 80px;
    text-align: center;
}
#benefits-and-perks{
    margin-bottom: 60px;
}

.grid-layout{
    display: grid;
    grid-gap: 5px;
}

.grid-layout + ns-button{
    text-align: center;
    margin-top: 30px;
}

@media (max-width: 767px) {
    #the-company ns-button{
        text-align: center;
        margin: 30px auto 80px;
    }
    #benefits-and-perks .grid-layout__copy-block{
        text-align: center;
        margin-bottom: 15px;
    }
    .grid-layout__copy-block ns-button,
    .hide--xs{
        display: none;
    }
}

@media (min-width: 768px) {
    #people-and-culture .contained{
        max-width: calc(100% / 12 * 6);
    }
    #the-company .copy-block{
        max-width: calc(100% / 12 * 4);
        text-align: left;
        z-index: 100;
        position: relative;
        margin-bottom: -55px;
        margin-right: 0;
        margin-left: auto;
    }
    #the-company p{
        margin-bottom: 20px;
    }
    #benefits-and-perks{
        z-index: 100;
        margin-top: -35px;
    }

    .grid-layout > :nth-child(1){ grid-area: copy1; }
    .grid-layout > :nth-child(2){ grid-area: tile1; }
    .grid-layout > :nth-child(3){ grid-area: tile2; }
    .grid-layout > :nth-child(4){ grid-area: tile3; }
    .grid-layout > :nth-child(5){ grid-area: tile4; }
    .grid-layout > :nth-child(6){ grid-area: tile5; }
    .grid-layout > :nth-child(7){ grid-area: tile6; }

    .grid-layout{
        grid-template-columns: repeat(4, 1fr);
        grid-template-areas:
                "copy1 copy1 tile1 tile2"
                "copy1 copy1 tile3 tile4"
                "copy1 copy1 tile5 tile6";
        width: calc(100% / 12 * 10);
        margin-left: auto;
        margin-right: auto;
    }

    .grid-layout__copy-block{
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-right: 65px;
    }
    .grid-layout__copy-block p{
        margin-bottom: 20px;
    }
    .grid-layout + ns-button,
    .hide--sm-up{
        display: none;
    }
}

@media (min-width: 1024px) {
    #people-and-culture .contained{
        max-width: calc(100% / 12 * 4);
    }
    #the-company .copy-block{
        max-width: calc(100% / 12 * 3);
        position: absolute;
        top: 20px;
        right: calc(100% / 12);
    }
    #benefits-and-perks{
        margin-top: -95px;
        margin-bottom: 220px;
    }
    .grid-layout{
        grid-template-areas:
                "tile1 tile2 tile3 tile4"
                "copy1 copy1 tile5 tile6";
        grid-gap: 10px;
    }
    .grid-layout__copy-block{
        margin-right: 115px;
    }
}