* {
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

html {
    height: 100%;
    width: 100%;
}

body {
    height: 100% !important;
    width: 100%;
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-size: 80%;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

.desktopOnly {
    display: none !important;
}

a, a:link, a:visited {
    outline: 0;
    border: 0;
    text-decoration: none;
    color: inherit;
}

.no-touch a:hover, .no-touch a:active {
    text-decoration: none;
    color: inherit;
}

a.bigLink {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 5;
    overflow: hidden;
}

    a.bigLink img {
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
    }

    a img {
        border: 0;
        display: block;
    }

.inline {  }

    .inline:before {
        content: '';
        width: 0px;
        height: 100%;
        margin-right: -4px;
        display: inline-block;
        *display: inline;
        zoom: 1;
        vertical-align: middle;
    }

    .center {
        margin-right: -4px;
        display: inline-block;
        *display: inline;
        zoom: 1;
        vertical-align: middle;
    }

    .bottom {
        margin-right: -4px;
        display: inline-block;
        *display: inline;
        zoom: 1;
        vertical-align: bottom;
    }

    .top {
        margin-right: -4px;
        display: inline-block;
        *display: inline;
        zoom: 1;
        vertical-align: top;
    }


/* ===\\========================//=== *
 * ====\\=== MAIN CONTAINER ===//==== *
 * =====\\====================//===== */

    #wrapper {
        position: relative;
        min-height: 100%;
        width: 100%;
        margin-bottom: -390px;
    }

        #wrapper:after {
            content: '';
            display: block;
            height: 390px;
        }

    #wrapper.splash {
        margin-bottom: 0px;
    }

        #wrapper.splash:after {
            display: none;
        }





/* ===\\================//=== *
 * ====\\=== HEADER ===//==== *
 * =====\\============//===== */

    #header {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 70px;
        color: #fff;
        z-index: 600;
        background-color: #fff;
        overflow: hidden;

        transition-property: height, background-color;
        transition-duration: .2s;
        transition-timing-function: ease-in-out;

        -webkit-transition-property: height, background-color;
        -webkit-transition-duration: .2s;
        -webkit-transition-timing-function: ease-in-out;

        -moz-transition-property: height, background-color;
        -moz-transition-duration: .2s;
        -moz-transition-timing-function: ease-in-out;

        -o-transition-property: height, background-color;
        -o-transition-duration: .2s;
        -o-transition-timing-function: ease-in-out;
    }



        #header .logo {
            margin-left: 6%;
            position: relative;
            z-index: 9999;
        }

            #header .logo img {
                width: 191px;
                height: auto;
                top: 0px;
                left: 0px;

                transition-property: opacity;
                transition-duration: 1s;

                -webkit-transition-property: opacity;
                -webkit-transition-duration: 1s;

                -moz-transition-property: opacity;
                -moz-transition-duration: 1s;

                -o-transition-property: opacity;
                -o-transition-duration: 1s;
            }

            #header .logo img:first-child { opacity: 1; position: relative; }
            .theme_light #header .logo img:first-child { opacity: 0; }

            #header .logo img:last-child { opacity: 0; position: absolute; }
            .theme_light #header .logo img:last-child { opacity: 1; }

        #header .trigger {
            position: absolute;
            left: 0px;
            top: 0px;
            width: 100%;
            height: 70px;
            cursor: pointer;
        }

            #header .trigger .menuBtn {
                width: 28px;
                display: block;
                position: absolute;
                top: 1px;
                right: 0px;
                padding: 25px 6% 25px 6%;
                z-index: 9999;
            }

                #header .trigger .menuBtn .line {
                    display: block;
                    background-color: #000;
                    width: 100%;
                    height: 3px;
                    margin-bottom: 4px;
                    position: relative;
                    left: 0px;
                    top: 0px;
                    opacity: 1;

                    transform: rotate(0deg);
                    -webkit-transform: rotate(0deg);
                    -moz-transform: rotate(0deg);
                    -ms-transform: rotate(0deg);

                    transition: all .3s;
                    -webkit-transition: all .3s;
                    -moz-transition: all .3s;
                    -o-transition: all .3s;
                }

                .theme_light #header .trigger .menuBtn .line {
                    background-color: #fff;
                }

                #header .trigger .menuBtn .line:last-child {
                    margin-bottom: 0px;
                }

                /*3 lines --> X animation*/
                #header.open .trigger .menuBtn .line:first-child {
                    transform: rotate(45deg);
                    -webkit-transform: rotate(45deg);
                    -moz-transform: rotate(45deg);
                    -ms-transform: rotate(45deg);
                    top: 7px;
                }

                #header.open .trigger .menuBtn .line:nth-child(2) {
                    opacity: 0;
                }

                #header.open .trigger .menuBtn .line:last-child {
                    transform: rotate(-45deg);
                    -webkit-transform: rotate(-45deg);
                    -moz-transform: rotate(-45deg);
                    -ms-transform: rotate(-45deg);
                    top: -7px;
                }



            #header .menu {
                position: absolute;
                top: 70px;
                left: 0px;
                width: 100%;
                height: auto;
                text-align: center;
                list-style-type: none;
                padding-bottom: 6%;
            }

                #header .menu:before {
                    display: none;
                }

                #header .menu li {
                    display: block;
                    position: relative;
                    text-align: center;
                }

                    #header .menu li a {
                        font-weight: 700;
                        font-size: 120%;
                        letter-spacing: .05em;
                        color: #000;
                        background-color: transparent;
                        padding: 2% 0%;
                        display: block;
                    }

                    .no-touch #header .menu li:hover a {
                        color: #fff;
                        background-color: #000;
                    }

		    #header .menu li.pageOn a {
                        color: #fff;
                        background-color: #000;
		    }

                    #header .menu li .sub {
                        position: relative;
                        width: 100%;
                        text-align: center;
                        list-style-type: none;
                        padding-bottom: 4%;
                    }

                        #header .menu li .sub li {
                            display: block;
                        }

                            #header .menu li .sub li a {
                                display: block;
                                font-weight: normal;
                                font-size: 100%;
                                padding: 2% 0%;
                                letter-spacing: .02em;
                                color: #ccc;


                                box-sizing: border-box;
                                -webkit-box-sizing: border-box;
                                -moz-box-sizing: border-box;
                            }

                            .no-touch #header .menu li .sub li:hover a {
                                color: #000;
                                background-color: #fff;
                                border: 1px solid #ccc;
                            }


    /*----//----\\----//----\\----*/
    /*splash page color overrides*/

    .splash #header.open {
        background-color: #fff !important;
    }

    .theme_light .splash #header.open {
        background-color: #000 !important;
    }

                    .splash #header .menu li a {
                        color: #000;
                        background-color: transparent;

                        transition: color 1s;
                        -webkit-transition: color 1s;
                        -moz-transition: color 1s;
                        -o-transition: color 1s;
                    }

                    .no-touch .splash #header .menu li:hover a {
                        color: #000;
                        background-color: #fff;

                        transition: all 0s;
                        -webkit-transition: all 0s;
                        -moz-transition: all 0s;
                        -o-transition: all 0s;
                    }

                    .theme_light .splash #header .menu li a {
                        color: #fff;
                        background-color: transparent;

                        transition: color 1s;
                        -webkit-transition: color 1s;
                        -moz-transition: color 1s;
                        -o-transition: color 1s;
                    }

                    .no-touch .theme_light .splash #header .menu li:hover a {
                        color: #fff;
                        background-color: #000;

                        transition: all 0s;
                        -webkit-transition: all 0s;
                        -moz-transition: all 0s;
                        -o-transition: all 0s;
                    }

                        .splash #header .menu li.hasSub a:after {
                            background-image: url('../images/arrow-down-black.png') !important;
                        }

                        .theme_light .splash #header .menu li.hasSub a:after {
                            background-image: url('../images/arrow-down-white.png') !important;
                        }

                            .splash #header .menu li .sub li a {
                                background-color: #fff;
                                color: #000;
                                border: none !important;
                            }
                            .no-touch .splash #header .menu li .sub li a:hover {
                                background-color: #000;
                                color: #fff;
                            }

                            .theme_light .splash #header .menu li .sub li a {
                                background-color: #000;
                                color: #fff;
                            }

                            .no-touch .theme_light .splash #header .menu li .sub li a:hover {
                                background-color: #fff;
                                color: #000;
                            }

                            #header .menu li .sub li a:after {
                                display: none;
                            }
                    /* END splash page color overrides*/
                    /*------//----\\----//----\\------*/




/* ===\\=====================//=== *
 * ====\\=== SPLASH PAGE ===//==== *
 * =====\\=================//===== */

    .splash #header {
        background-color: transparent;
        opacity: 0;
    }

    .splash #main {
        padding-top: 0px;
        width: 100%;
    }

        .splash #main .fullFrame {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .splash #main .fullFrame .cell {
            height: 100%;
            width: 100%;
            background-size: cover;
            background-position: 50% 0%;
            background-repeat: no-repeat;
            text-align: center;
        }

            .splash .cell .caption {
                opacity: 0;
                width: 80%;
                padding: 0%;
                position: relative;
                height: auto;
                text-align: center;
                color: #000;
                margin-top: 45px;

                transition: color 1s;
                -webkit-transition: color 1s;
                -moz-transition: color 1s;
                -o-transition: color 1s;
            }

            .theme_light .splash .cell .caption {
                color: #fff;
            }

                .cell .caption hr {
                    border: 0;
                    height: 1px;
                    width: 142px;
                    background: #000;
                    margin: -15px auto 15px;

                    transition: background 1s;
                    -webkit-transition: background 1s;
                    -moz-transition: background 1s;
                    -o-transition: background 1s;
                }

                .theme_light .cell .caption hr {
                    background: #fff;
                }

                .splash .cell .caption h1,
                .splash .cell .caption h2,
                .splash .cell .caption h3,
                .splash .cell .caption h4,
                .splash .cell .caption h5,
                .splash .cell .caption h6
                .splash .cell .caption p {
                    font-size: 190%;
                    letter-spacing: .03em;
                    line-height: 1.3em;
                    margin-top: 0px;
                    border-bottom: 0px;
                    width: auto;
                    padding-bottom: 0px;
                    font-weight: 700;
                }

            .splash .cell .more {
                display: none !important;
                opacity: 0;
                width: 130px;
                position: absolute;
                bottom: 4%;
                left: 5%;
                color: #000;
                text-align: left;
                padding-bottom: 6px;
                border-bottom: 1px solid #000;
                font-weight: 700;

                transition-property: border-bottom, color;
                transition-duration: 1s;
                -webkit-transition-property: border-bottom, color;
                -webkit-transition-duration: 1s;
                -moz-transition-property: border-bottom, color;
                -moz-transition-duration: 1s;
                -o-transition-property: border-bottom, color;
                -o-transition-duration: 1s;
            }

            .theme_light .splash .cell .more {
                color: #fff;
                border-bottom: 1px solid #fff;
            }

                .splash .cell .more a {
                    display: block;
                }






/* ===\\==============//=== *
 * ====\\=== GRID ===//==== *
 * =====\\==========//===== */

    #main {
        padding-top: 90px;
        width: 88%;
        margin: auto;
        padding-bottom: 100px;
    }

        h1.secTitle {
            width: 100%;
            padding-bottom: 12px;
            border-bottom: 1px solid #ccc;
            color: #a09f9f;
            margin-bottom: 42px;
            text-align: center;
            font-size: 110%;
            letter-spacing: .05em;
        }

        .grid {

        }

            .grid .cell {
                width: auto;
                height: auto;
                background-size: cover;
                background-position: 50% 50%;
                background-repeat: no-repeat;
                position: relative;
                overflow: hidden;
                margin-bottom: 6% !important;

                display: inline-block;
                *display: inline;
                zoom: 1;
                vertical-align: top;

                filter: saturate(1);
                -webkit-filter: saturate(1);

                transition-property: filter, -webkit-filter;
                transition-delay: 0s;
                transition-duration: .3s;

                -webkit-transition-property: filter, -webkit-filter;
                -webkit-transition-delay: 0s;
                -webkit-transition-duration: .3s;

                -moz-transition-property: filter, -webkit-filter;
                -moz-transition-delay: 0s;
                -moz-transition-duration: .3s;

                -o-transition-property: filter, -webkit-filter;
                -o-transition-delay: 0s;
                -o-transition-duration: .3s;
            }

            .no-touch .grid .cell:hover {
                filter: saturate(0);
                -webkit-filter: saturate(0);

                transition-property: filter, -webkit-filter;
                transition-delay: 0s;
                transition-duration: .2s;

                -webkit-transition-property: filter, -webkit-filter;
                -webkit-transition-delay: 0s;
                -webkit-transition-duration: .2s;

                -moz-transition-property: filter, -webkit-filter;
                -moz-transition-delay: 0s;
                -moz-transition-duration: .2s;

                -o-transition-property: filter, -webkit-filter;
                -o-transition-delay: 0s;
                -o-transition-duration: .2s;
            }

            .grid .cell img {
                display: none !important;
            }


                /*fluid cell sizes...*/
                @media screen
                and (max-width: 375px) {
                    .grid .cell {
                        width: 100%; /*for anything iPhone 6-size and under */
                    }
                }

                @media screen
                and (min-width: 376px)
                and (max-width: 768px) {
                    .grid .cell {
                        width: 48%;
                    }

                    .grid .cell:nth-child(2n+2) {
                        margin-right: -4px !important;
                    }
                }



                .grid .cell .overlay {
                    position: absolute;
                    top: 0px;
                    left: 0px;
                    width: 100%;
                    height: 100%;
                    z-index: 3;
                    background-color: rgba(0,0,0,0);

                    transition: background-color .3s;
                    -webkit-transition: background-color .3s;
                    -moz-transition: background-color .3s;
                    -o-transition: background-color .3s;
                }

                .no-touch .grid .cell:hover .overlay {
                    background-color: rgba(0,0,0,.32);

                    transition: background-color .3s;
                    -webkit-transition: background-color .3s;
                    -moz-transition: background-color .3s;
                    -o-transition: background-color .3s;
                }

                .grid .cell h2 {
                    position: absolute;
                    bottom: -50px;
                    left: 10%;
                    width: 80%;
                    text-align: center;
                    color: #fff;
                    opacity: 0;
                    z-index: 4;

                    transition-property: opacity, bottom;
                    transition-duration: .2s, 0s;
                    transition-delay: 0s, .2s;
                    transition-timing-function: linear;

                    -webkit-transition-property: opacity, bottom;
                    -webkit-transition-duration: .2s, 0s;
                    -webkit-transition-delay: 0s, .2s;
                    -webkit-transition-timing-function: linear;

                    -moz-transition-property: opacity, bottom;
                    -moz-transition-duration: .2s, 0s;
                    -moz-transition-delay: 0s, .2s;
                    -moz-transition-timing-function: linear;

                    -o-transition-property: opacity, bottom;
                    -o-transition-duration: .2s, 0s;
                    -o-transition-delay: 0s, .2s;
                    -o-transition-timing-function: linear;
                }

                .no-touch .grid .cell:hover h2 {
                    bottom: 25px;
                    opacity: 1;

                    transition-property: bottom, opacity;
                    transition-duration: .3s, .2s;
                    transition-delay: 0s, 0s;
                    transition-timing-function: cubic-bezier(0,.99,0,.99), linear;

                    -webkit-transition-property: bottom, opacity;
                    -webkit-transition-duration: .3s, .2s;
                    -webkit-transition-delay: 0s, 0s;
                    -webkit-transition-timing-function: cubic-bezier(0,.99,0,.99), linear;

                    -moz-transition-property: bottom, opacity;
                    -moz-transition-duration: .3s, .2s;
                    -moz-transition-delay: 0s, 0s;
                    -moz-transition-timing-function: cubic-bezier(0,.99,0,.99), linear;

                    -o-transition-property: bottom, opacity;
                    -o-transition-duration: .3s, .2s;
                    -o-transition-delay: 0s, 0s;
                    -o-transition-timing-function: cubic-bezier(0,.99,0,.99), linear;
                }


            /*slightly different styling for anything iPhone 6-size and under */
            @media screen
            and (max-width: 375px) {
                .grid .cell {
                    display: block;
                    background-image: none !important;
                    height: auto !important;
                }

                .grid .cell img {
                    display: block !important;
                    position: relative;
                    width: 100%;
                    height: auto;
                }

                .grid .cell h2 {
                    display: block;
                    position: relative;
                    bottom: 0px;
                    left: 0px;
                    opacity: 1;
                    font-size: 90%;
                    line-height: 1.3em;
                    padding: .8em 0em;
                    color: #979797;
                    margin: auto;
                }
            }




/* ===\\===========================//=== *
 * ====\\=== DETAIL SLIDESHOWS ===//==== *
 * =====\\=======================//===== */

        .projDetail {
            text-align: center;
            position: relative;
        }

        .projDetail.noCaseStudy {
            height: auto !important;
            width: 100% !important;
            margin-bottom: 12%;
        }

            .projDetail .projNav {
                font-size: 80%;
                letter-spacing: .03em;
                color: #7b7b7b;
                padding-bottom: 1em;
                text-transform: uppercase;
            }

            .projDetail.noCaseStudy .projNav {
                padding-bottom: 6%;
            }

                .projNav a {
                    transition: color .2s;
                    -webkit-transition: color .2s;
                    -moz-transition: color .2s;
                    -o-transition: color .2s;
                }

                .projNav a:hover {
                    color: #000;

                    transition: color 0s;
                    -webkit-transition: color 0s;
                    -moz-transition: color 0s;
                    -o-transition: color 0s;
                }

            .projDetail .cycle-slideshow {
                height: 80%;
                width: 100%;
                margin: auto;
                text-align: center;
            }

                .projDetail .cycle-slideshow .photo {
                    margin: auto;
                    height: 95%;
                    width: 100%;
                    text-align: center;
                }

                    .projDetail .cycle-slideshow .photo img {
                        height: auto;
                        width: auto;
                        max-width: 100%;
                        max-height: 95%;
                        margin-right: -4px;
                    }

                .projDetail .cycle-slideshow .prev {
                    position: absolute;
                    height: 100%;
                    width: 50%;
                    top: 0%;
                    left: 0%;
                    cursor: url(../images/arrow-left.png) 5 25, auto;
                    z-index: 300;
                }

                .projDetail .cycle-slideshow .next {
                    position: absolute;
                    height: 100%;
                    width: 50%;
                    top: 0%;
                    left: 50%;
                    cursor: url(../images/arrow-right.png) 41 25, auto;
                    z-index: 300;
                }

            .projDetail.noCaseStudy .photo {
                display: block;
                width: 100%;
                height: auto;
                margin-bottom: 6%;
            }

                .projDetail.noCaseStudy .photo:before {
                    display: none;
                }

                .projDetail.noCaseStudy .photo img {
                    width: 100%;
                    height: auto;
                    display: block;
                }


            .projDetail .thumbHolder {
                display: none;
            }


            .projDetail .caption {
                font-size: 90%;
                letter-spacing: .02em;
                color: #313131;
                padding-top: 15px;
            }

                .projDetail .caption h1 {
                    font-size: 120%;
                    padding-bottom: .2em;
                    font-weight: normal;
                }




/* ===\\======================//=== *
 * ====\\=== CASE STUDIES ===//==== *
 * =====\\==================//===== */

                .cycle-slideshow .overlay {
                    position: absolute;
                    top:0px;
                    left:0px;
                    width: 100%;
                    height: 100%;
                    opacity: 1;
                    z-index: 300;
                    text-align: center;
                    background-color: #fff; /*need this so stuff from the cycle doesn't peek out for any reason*/

                    transition-property: z-index, opacity;
                    transition-delay: 0ms, 0ms;
                    transition-duration: 0ms, 300ms;

                    -webkit-transition-property: z-index, opacity;
                    -webkit-transition-delay: 0ms, 0ms;
                    -webkit-transition-duration: 0ms, 300ms;

                    -moz-transition-property: z-index, opacity;
                    -moz-transition-delay: 0ms, 0ms;
                    -moz-transition-duration: 0ms, 300ms;

                    -o-transition-property: z-index, opacity;
                    -o-transition-delay: 0ms, 0ms;
                    -o-transition-duration: 0ms, 300ms;
                }

                .cycle-slideshow.playing .overlay {
                    opacity: 0;
                    z-index: -1;

                    transition-property: opacity, z-index;
                    transition-delay: 0ms, 300ms;
                    transition-duration: 300ms, 0ms;

                    -webkit-transition-property: opacity, z-index;
                    -webkit-transition-delay: 0ms, 300ms;
                    -webkit-transition-duration: 300ms, 0ms;

                    -moz-transition-property: opacity, z-index;
                    -moz-transition-delay: 0ms, 300ms;
                    -moz-transition-duration: 300ms, 0ms;

                    -o-transition-property: opacity, z-index;
                    -o-transition-delay: 0ms, 300ms;
                    -o-transition-duration: 300ms, 0ms;
                }

                    .cycle-slideshow .overlay .inner {
                            height: 95%;
                            width: auto;
                            max-width: 100%;
                            max-height: 95%;
                            margin-right: 0px;
                            overflow: hidden;
                    }

                        .caseStudy_nav {
                            position: absolute;
                            top: 36%;
                            left: 0%;
                            width: 100%;
                            text-align: center;
                            z-index: 1;
                        }

                            .caseStudy_nav p {
                                font-size: 100%;
                                line-height: 1.5em;
                                color: #fff;
                                padding-bottom: .5em;
                                letter-spacing: .03em;
                            }

                            .caseStudy_nav img {
                                width: 49px;
                                height: auto;
                                cursor: pointer;
                                opacity: 1;

                                transition: opacity .2s;
                                -webkit-transition: opacity .2s;
                                -moz-transition: opacity .2s;
                                -o-transition: opacity .2s;
                            }

                        @media all and (orientation:landscape) {
                          .caseStudy_nav {
                            top: 32%;
                          }

                            .caseStudy_nav p {
                              font-size: 70%;
                            }

                              .caseStudy_nav img {
                                width: 30px;
                              }

                        }

                            .touch .caseStudy_nav img {
                                opacity: 1;
                            }

                            .no-touch .caseStudy_nav img:hover {
                                opacity: .7;
                            }

                        .cycle-slideshow .overlay .finishedImg {
                            opacity: 0;
                            background-color: #000;
                        }

                            .cycle-slideshow .overlay .finishedImg img {
                                height: auto;
                                width: 100%;
                                display: block;
                                opacity: .54;
                            }

                            /*
                            We're setting the size of '.finishedImg' based on size of its
                            corresponding cycle image.
                            As long as '.finishedImg' has proper width and height,
                            the new "poster" image inside it will be cool (since its 100% width)
                            */






/* ===\\====================//=== *
 * ====\\=== TEXT PAGES ===//==== *
 * =====\\================//===== */

        .textContent {
            width: 100%;
            max-width: 860px;
            margin: 0px auto 12%;
            text-align: left;
        }

            .textContent h1.secTitle {
                text-align: left;
                border-bottom: none;
                padding-bottom: 1.6em;
                padding-top: 1.2em;
                margin-bottom: 0em;
                font-size: 120%;
                letter-spacing: .03em;
            }

            .textContent h1 {
                font-size: 200%;
                padding-bottom: 1em;
            }

            .textContent h2 {
                font-size: 200%;
                padding-bottom: 1em;
                letter-spacing: .03em;
            }

            .textContent p {
                line-height: 2em;
                padding-bottom: 2em;
                font-size: 90%;
                color: #222;
            }

                .textContent p a {
                    text-decoration: underline;

                    transition: color .2s;
                    -webkit-transition: color .2s;
                    -moz-transition: color .2s;
                    -o-transition: color .2s;
                }

                .no-touch .textContent p a:hover {
                    text-decoration: underline;
                    color: #8e8e8e;

                    transition: color 0s;
                    -webkit-transition: color 0s;
                    -moz-transition: color 0s;
                    -o-transition: color 0s;
                }

            .textContent ul {
                line-height: 1.4em;
                padding-bottom: 2em;
                font-size: 90%;
                color: #222;
                margin-left: 35px;
                margin-top: -1em;
            }

                .textContent ul li {
                    padding-bottom: .6em;
                }

            .textContent .bio {
                padding-top: 6%;
            }

            .bio img.photo {
                display: block;
                width: 100%;
                height: auto;
            }

                .bio .photo.w40 {
                    width: 100%;
                    background-color: #ccc;
                    background-size: cover;
                    background-repeat: no-repeat;
                    background-position: 50% 50%;
                }

                .bio .w55 {
                    width: 100%;
                    margin-top: 6%;
                    margin-bottom: 6%;
                }

                .textContent .bio h1 {
                    padding-bottom: .15em;
                    letter-spacing: .02em;
                }

                .textContent .bio p {
                    font-style: italic;
                }

            .textContent #availableJobs {
                padding-top: 15%;
            }

                .textContent #availableJobs h1 {
                    border-bottom: 1px solid #C2C2C2;
                    padding-bottom: .5em;
                    margin-bottom: .8em;
                }

                .textContent #availableJobs .job {
                    border-bottom: 1px solid #c2c2c2;
                    padding-bottom: 30px;
                    margin-bottom: 55px;
                }

            .textContent.clients ul {
                font-size: 90%;
                list-style-type: none;
                line-height: 1.4em;
                padding-bottom: .8em;
                margin-top: 0px !important;
                margin-left: 0px !important;
                padding-bottom: 75px;
            }

                .textContent.clients ul .linkCol {
                    width: 60%;
                }

                .textContent.clients ul .linkCol:last-child {
                    width: 40%;
                }




/* ===\\================//=== *
 * ====\\=== FOOTER ===//==== *
 * =====\\============//===== */

#footer {
    position: relative;
    height: 390px;
    text-align: left;
    z-index: 200;
    background-color: #2e2d2d;
    color: #aaa;
    width: 88%;
    padding: 0% 6%;
}


    #footer .col {
        width: 100%;
        font-size: 90%;
        letter-spacing: .07em;
        padding-top: 12%;
        display: block;
    }

    @media all and (min-width: 390px) {
      #footer .col {
        padding-top: 30px;
      }
    }

    @media all and (min-width: 620px) {
      #footer .col {
        display: inline-block; *display: inline; zoom: 1;
        vertical-align: top;
      }

      #footer .col:nth-child(2) {
        width: 60%;
      }

      #footer .col:nth-child(3) {
        width: 40%;
      }
    }

    #footer a {
        transition: color .2s;
        -webkit-transition: color .2s;
        -moz-transition: color .2s;
        -o-transition: color .2s;
    }

    .no-touch #footer a:hover {
        transition: color 0s;
        -webkit-transition: color 0s;
        -moz-transition: color 0s;
        -o-transition: color 0s;
    }

        #footer h3 {
            font-size: 110%;
            color: #fff;
            letter-spacing: .1em;
            padding-bottom: .8em;
        }

        #footer p {
            line-height: 1.6em;
        }

            #footer p a {
                color: #fff;
            }

            .no-touch #footer p a:hover {
                color: #aaa;
            }

        #footer ul {
            list-style-type: none;
            line-height: 1.9em;
        }

            #footer ul .linkCol {
                width: 30%;
                margin-right: 10%;
            }

            @media all and (min-width: 390px) {
              #footer ul .linkCol {
                max-width: 125px;
                margin-right: 20px;
              }
            }

                #footer ul li {
                    padding-bottom: .1em;
                }

                    .no-touch #footer ul li a:hover {
                        color: #fff;
                    }

    #footer .footerer {
        background-color: #bebebe;
        position: absolute;
        bottom: 0px;
        left: 0px;
        width: 100%;
    }

        #footer .footerer p {
            padding: 4% 5%;
            font-size: 80%;
            color: #131313;
            letter-spacing: 0.07em;
            text-align: center;
        }

            #footer .footerer p a {
                color: #131313;
                border-bottom: 1px solid rgba(19,19,19,0);
                padding-bottom: 1px;
            }

            .no-touch #footer .footerer p a:hover {
                color: inherit;
                border-bottom: 1px solid rgba(19, 19, 19, 0.39);
            }




/******** 2019 new bio page ********/

    #main {
        padding-bottom: 0;
    }
    .menu li.hasSub {
        display: none;
    }

    .bio.cell {
        width: 48%;
    }


    .infoNew.textContent {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .infoText {
        width: 90%;
        margin: 3% 4%;
        position: relative;
    }

    .infoText img.inline {
        position: absolute;
        width: 150px;
        height: auto;
        bottom: 140px;
        left: 0px;
    }

    .infoText > p {
        font-size: 1.3em;
        line-height: 1.3;
    }

    .infoText h2 {
        color: #8e8e8e;
        font-size: 2em;
        font-weight: 200;
    }

    .infoText h2.team {
        margin-top: 40px;
    }

    .infoText h3 {
        color: #8e8e8e;
        font-size: 1.5em;
        font-weight: 200;
    }


    .team-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        height: 100%;
        padding-top: 0;
        width: 100%;
        margin-top: 10px;
    }

    .textContent .bio .w55 {
        margin-top: 10px;
        width: 100%;
    }

    .textContent .team-grid .bio h1 {
        font-size: 1.5em;

    }

    .textContent .team-grid h2 {
        font-size: 1.2em;
        font-weight: 200;
    }


    .textContent .team-grid .bio {
        padding-top: 0;

    }


    .bio .photo.w40 {
        width: 100%;
    }

    .bio.col.w55 {
        width: 100%;
    }


        .bio.cell {
            width: 100%;
        }

        .menu li.hasSub {
            display: none;
        }

        .textContent .team-grid .bio h1 {
            font-size: 1.5em;
    
        }
    
        .textContent .team-grid h2 {
            font-size: 1.2em;
            font-weight: 200;
        }
        .textContent .infoText p {
            font-size: 1.5em;
        }

    

    /* ************** BIO OVERLAY ******************* */

    #overlay {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 1);
        text-align: center;

        opacity: 0;
        z-index: -1;
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);

        transition: z-index 0s .4s, transform 0s .4s, opacity .3s 0s;
        -webkit-transition: z-index 0s .4s, transform 0s .4s, opacity .3s 0s;
        -ms-transition: z-index 0s .4s, transform 0s .4s, opacity .3s 0s;

    }

    #overlay.on {
        opacity: 1;
        z-index: 700;
        transform: translateX(0%);
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);

        transition: z-index 0s 0s, transform 0s 0s, opacity .3s 0s;
        -webkit-transition: z-index 0s 0s, transform 0s 0s, opacity .3s 0s;
        -ms-transition: z-index 0s 0s, transform 0s 0s, opacity .3s 0s;
    }

    #overlay .closer {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    #overlay #biowrap {
        width: 100%;
        height: 90vh;
        overflow-y: scroll; 
        -webkit-overflow-scrolling: touch;
    }

    #overlay .holder {
        display: flex;
        flex-direction: column;
        width: 90%;
    }

    #overlay .holder .col.text {
        text-align: left;
        display: flex;
        margin: 5% 3% 3% 1%;
        padding: 0;
        width: 95%;
        height: auto;
        position: relative;
        top: 80%;
        left: 7%;
        order: 2;
    }

    #overlay .holder .col.image {
        margin: 10px 3% 10px 5.5%;
        padding: 0;
        position: relative;
        top: 10px;
        width: 100%;
        order: 1;


    }

    #overlay .holder .col{
        display: flex;
        flex-direction: column;
    }

    #overlay .holder .col p {
        line-height: 1.1;
        font-size: 1.3em;
        margin-bottom: 20px;
    }

    #overlay .holder .col h1 {
        font-size: 3em;
    }

    #overlay .holder .col h2 {
        font-size: 1.8em;
        font-weight: 200;
        margin-bottom: 20px;

    }

    #overlay .holder .col img {
        width: 100%;

    }

    #overlay .closeIcon {
        width: 30px;
        height: 30px;
        position: absolute;
        top: 45px;
        left: 45px;
        z-index: 100;
        cursor: pointer;
    }

    #overlay .closeIcon .line {
        height: 1px;
        width: 100%;
        display: block;
        position: absolute;
        right: 0;
        background-color: #000;
        opacity: 1;
        transform: rotate(0deg);
    }

    #overlay .closeIcon .line:nth-child(1) {
        top: 8px;
        transform: rotate(45deg);
    }


    #overlay .closeIcon .line:nth-child(2) {
        top: 8px;
        transform: rotate(135deg);
    }

    #overlay .ui {
        position: absolute;
        bottom: 20px;
        left: 43%;
        font-size: 1.2em;
        display: none;
    }

   