/*! HTML5 Boilerplate v5.3.0 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
/*
    overflow-x: hidden;
    overflow-y: scroll;
*/
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */


/* All devices */

/*
@font-face {
    font-family: 'montserratbold';
    src: url('../fonts/montserrat-bold-webfont.woff2') format('woff2'),
         url('../fonts/montserrat-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'montserratlight';
    src: url('../fonts/montserrat-light-webfont.woff2') format('woff2'),
         url('../fonts/montserrat-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
*/

body {
    background-image: url(../img/general/bgBlack.jpg);
    height: 100vh;
    width: 100vw;
    color: #fff;
    
    overflow-y: scroll;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #fff;
}

p {
    font-family: 'montserratlight';
}

h1 {
    font-family: 'montserratsemibold';
    letter-spacing: 1px;
/*    letter-spacing: 0.1em;*/
}

h2 {
    font-family: 'montserratsemibold';
    letter-spacing: 1px;
}

.noMargin {
    margin: 0;
}



/*
.montserratSemiBold {
    font-family: 'montserratsemibold';
    letter-spacing: 3px;
}
*/

::-webkit-scrollbar { 
    display: none; 
}

.underline {
    text-decoration: underline;
}

.whiteBG {
    background-image: url(../img/general/bgWhite.jpg);
    color: rgb(40,40,40) !important;
}

.em3 {
    font-size: 3em;
/*    line-height: 1.5em;*/
}

.em25 {
    font-size: 2.5em;
    line-height: 1.5em;
}

.em1 {
    font-size: 1em;
    line-height: 1.2em;
}

.em12 {
    font-size: 1.2em;
    line-height: 1.5em;
}

.em15 {
    font-size: 1.5em;
    line-height: 1.5em;
}

.trans02s {
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.trans03s {
    transition: all 0.3s cubic-bezier(0.26, 0.86, 0.44, 0.985);
    -webkit-transition: all 0.3s cubic-bezier(0.26, 0.86, 0.44, 0.985);
    -moz-transition: all 0.3s cubic-bezier(0.26, 0.86, 0.44, 0.985);
    -ms-transition: all 0.3s cubic-bezier(0.26, 0.86, 0.44, 0.985);
    -o-transition: all 0.3s cubic-bezier(0.26, 0.86, 0.44, 0.985);
}

.trans05s {
    transition: all 0.5s cubic-bezier(0.26, 0.86, 0.44, 0.985);
}

.trans08s {
    transition: all 0.6s cubic-bezier(0.26, 0.86, 0.44, 0.985);
/*
    -webkit-transition: all 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
    -moz-transition: all 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
    -ms-transition: all 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
    -o-transition: all 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
*/
}

.height100{
    height: 100%;
}

.width100{
    width: 100%;
}

.relative {
    position: relative;
}

.fade {
    opacity: 0;
}

.flexParent {
    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;     /* NEW - Chrome */
    display: flex;
    
    flex-direction: row;
    -webkit- flex-direction: row;
    
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

.parentCenter{
    justify-content: center;
    -webkit-justify-content: center;
}

.parentSpace {
    justify-content: space-between;
    -webkit-justify-content: space-between;
}

.verticalCenter {
    align-self: center;
    -webkit-align-self: center;
}

.scrollDownBtn {
    position: absolute;
    margin: auto;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    border: 2px solid #fff;
    bottom: 7%;
    left: 0;
    right: 0;
    cursor: pointer;
}

.scrollDownBtn:hover {
    transform: scale3d(1.2,1.2,1.2);
    -webkit-transform: scale3d(1.2,1.2,1.2);
    -moz-transform: scale3d(1.2,1.2,1.2);
    -ms-transform: scale3d(1.2,1.2,1.2);
    -o-transform: scale3d(1.2,1.2,1.2);
}

.btnWrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.scrollline {
    width: 12px;
    height: 2px;
    background-color: #fff;
    position: absolute;
}

.scrollDownLine1{
    left: 10px;
    bottom: 17px;
    transform: rotate3d(0,0,1,45deg);
    -webkit-transform: rotate3d(0,0,1,45deg);
    -moz-transform: rotate3d(0,0,1,45deg);
    -ms-transform: rotate3d(0,0,1,45deg);
    -o-transform: rotate3d(0,0,1,45deg);
}

.scrollDownLine2{
    right: 10px;
    bottom: 17px;
    transform: rotate3d(0,0,1,-45deg);
    -webkit-transform: rotate3d(0,0,1,-45deg);
    -moz-transform: rotate3d(0,0,1,-45deg);
    -ms-transform: rotate3d(0,0,1,-45deg);
    -o-transform: rotate3d(0,0,1,-45deg);
}


.slideDown {
    transform: translate3d(0,50vh,0);
    opacity: 0 !important;
}

.slideUp {
    transform: translate3d(0,-100%,0);
    opacity: 0;
}

@keyframes slideOutBottom {
    to{
        transform: translate3d(0,50vh,0);
        opacity: 0;
    }
}

@keyframes slideInBottom {
    from {
        transform: translate3d(0,50vh,0);
        opacity: 0;
    }
    
    to {
        transform: translate3d(0,0,0);
        opacity: 1;
    }
}

.slideOutBottom {
    animation: slideOutBottom 0.5s cubic-bezier(0.26, 0.86, 0.44, 0.985);
}

.slideInBottom {
    animation: slideInBottom 0.5s cubic-bezier(0.26, 0.86, 0.44, 0.985);
}

/*
.pageHome.ng-enter, .pageAbout.ng-enter, .pageContact.ng-enter, .pageLab.ng-enter, .pageWork.ng-enter {
    animation: slideInBottom 0.5s cubic-bezier(0.26, 0.86, 0.44, 0.985) 0.5s;
}

.pageHome.ng-leave, .pageAbout.ng-leave, .pageContact.ng-leave, .pageLab.ng-leave, .pageWork.ng-leave,.pageWork1.ng-leave {
    animation: slideOutBottom 0.5s cubic-bezier(0.26, 0.86, 0.44, 0.985);
}

.pageWork1.ng-enter {
    
}
*/
.mainWrapper {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.section{
    width: 100vw;
    height: 100vh;
    position: relative;
}

.intro {
    text-align: center;
    white-space: pre-line;
    padding: 0 5%;
}

.stopScroll {
    overflow: hidden;
}


/* Mobile & Tablet */
@media only screen and (max-width: 1023px) {
    
/*
    .section2 {
        
    }
*/
    .mainContent {
/*
        overflow-x: hidden;
        overflow-y: scroll;
*/
        overflow: hidden;
    }
    
    html {
        margin: 0;
        padding: 0;
        font-size: 12px;
    }
    
    header {
        width: 100vw;
        height: 100vh;
        position: fixed;
        left: 0;
        top: 0;
        background-color: rgba(0,0,0,1);
        z-index: 3;
        overflow: hidden;
/*        transform: translate3d(0,100%,0);*/
        transform: translate3d(-100%,0,0);
        -webkit-transform: translate3d(-100%,0,0);
        -moz-transform: translate3d(-100%,0,0);
        -ms-transform: translate3d(-100%,0,0);
        -o-transform: translate3d(-100%,0,0);
    }
    
    header.active{
        transform: translate3d(0,0,0);
    }
    
    .mobileHide {
        display: none;
    }
    
    .navBtn {
        width: 50px;
        height: 50px;
        position: fixed;
        left: 20px;
        top: 20px;
        cursor: pointer;
        z-index: 4;
    }
    
    .navBtn img {
        width: 100%;
    }
    
    .logoHeader {
        display: none;
    }
    
    .desktopNav {
        width: 100%;
        height: 100%;
        text-align: center;
    }
    
    .navmenu {
        width: 100%;
        height: 50%;
        flex-direction: column;
        -webkit- flex-direction: column;
        padding: 40% 0 0 0;
    }
    
    .navmenu a{
        font-size: 1.2em;
        cursor: pointer;
        font-family: 'montserratsemibold';
        letter-spacing: 3px;
    }
    
    .homeWork {
        margin: 30px 0 0 0;
        position: relative;
    }
    
    .workBox {
        width: 80vw;
        height: 80vw;
        text-align: center;
        margin: 0 auto 20vw auto;
/*        position: relative;*/
    }
    
    .circlePseudo {
        position: absolute;
        width: 80vw;
        height: 80vw;
        z-index: 1;
        border-radius: 100%;
/*        background-color: rgba(100,0,0,0.5);*/
        top: 0;
        left: 0;
    }
    
    .transActive {
        width: 100vw !important;
        height: 100vh !important;
        border-radius: 0 !important;
        left: 0 !important;
        top:0 !important;
    }
    
    .descClip {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
/*        overflow: hidden;*/
        margin: 10vw 0 0 0;
        border-top-left-radius: 100%;
        border-top-right-radius: 100%;
    }
    
    .descBG {
        width: 100%;
        height: 30%;
/*        background-color: red;*/
/*        position: absolute;*/
        bottom: 0;
        left: 0;
/*        opacity: 0.8;*/
/*        transform: translate3d(0,100%,0);*/
    }
    
    .workDescription {
        position: absolute;
        left: 0px;
        right: 0px;
/*        bottom: 10%;*/
        z-index: 2;
/*        transform: translate3d(0,100%,0);*/
    }
    
    .workCircle{
        width: 100%;
        height: 100%;
        border-radius: 100%;
        cursor: pointer;
        position: relative;
        background-color: rgba(0,0,0,0.2);
        z-index: 2;
/*        overflow: hidden;*/
    }
    
    .clip{
        width: 105%;
        height: 116%;
        border-bottom-left-radius: 100%;
        -webkit-border-bottom-left-radius: 100%;
        -moz-border-bottom-left-radius: 100%;
        -ms-border-bottom-left-radius: 100%;
        -o-border-bottom-left-radius: 100%;
        border-bottom-right-radius: 100%;
        -webkit-border-bottom-right-radius: 100%;
        -moz-border-bottom-right-radius: 100%;
        -ms-border-bottom-right-radius: 100%;
        -o-border-bottom-right-radius: 100%;
        position: absolute;
        left: -2.4%;
        bottom: -0.2%;
        overflow: hidden;
        
        mask-image: url(../img/general/clip2.png);
        -webkit-mask-image: url(../img/general/clip2.png);
        -moz-mask-image: url(../img/general/clip2.png);
        -ms-mask-image: url(../img/general/clip2.png);
        -o-mask-image: url(../img/general/clip2.png);
    }
    
    .ferrariclip{
        transform: rotate3d(0, 0, 1, -120deg);
        top: -4%;
        left: -9%;
    }
    
    .ferrariclip img {
        width: 20%;
/*        transform: translate3d(-16%,66%,0) rotate3d(0,0,1,120deg); */
    }
    
    .clip img{
        height: auto;
    }
    
    .parklandzooclip img {
        width: 80%;
        transform: translate3d(0,13%,0);
    }
    
    .pagespecificWork{
/*        width: 100%;*/
    }
    
    .banner50 {
        width: 100%;
    }
    
    .banner50 img {
        width: 100%;
    }
    
    .bannerImg {
        width: 85% !important;
        height: auto;
        position: absolute;
        left: 0px;
        bottom: 0px;
        right: 0px;
        margin: auto;
        top: 14%;
    }
    
    .workBannerIntro {
        position: absolute;
        text-align: center;
        left: 0px;
        top: 15%;
    }
    
    .workBannerIntro p{
        padding: 0 5%;
        
    }
    .workDetailBox{
        text-align: center;
/*        padding: 0 7%;*/
    }
    
    .workDetail {
        padding: 15px 7% 0 7%;
        
    }
    .workDetail h1 {
/*        text-align: center;*/
    }
    
    .workDetail h2 {
        text-align: left;
/*        margin: 0 0 10px 0;*/
    }
    
    .workDetail h3 {
        text-align: center;
        font-family: 'montserratsemibold';
        font-size: 2em;
        margin: 0 0 5px 0;
    }
    
    .workDetail p {
        text-align: justify;
        white-space: pre-line;
/*        margin: 0 0 20px 0;*/
    }
    
    .workFootnote {
        padding: 10px 0 0 0;
    }
    
    .marginBottom{
        padding: 0 0 40px 0;
    }
}


/* LAPTOP */
/*@media only screen and (min-width: 1024px) and (max-width: 1600px) {*/
@media only screen and (min-width: 1024px) and (max-width: 5000px) {
    .desktopHide {
        display: none;
    }
    
    html {
        margin: 0;
        padding: 0;
        font-size: 16px;
    }
    
    .navBtn {
        display: none;
    }
    
    
    .gridWrapper60 {
        width: 60%;
        height: 100%;
        margin: auto;
        padding: 0;
        
        
/*        background-color: rgba(255,255,255,0.1);*/
    }
    
    .gridWrapper70 {
        width: 70%;
/*        height: 100%;*/
        margin: auto;
        padding: 0;
        
        
/*        background-color: rgba(255,255,255,0.1);*/
    }
    
    header {
        width: 100%;
        height: 140px;
        position: fixed;
        left: 0;
        top: 0;
/*        background-image: url(../img/general/bgBlack.jpg);*/
/*        background-color: rgba(100,0,0,0.5);*/
        z-index: 3;
    }
    
    .headerOverlay {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background-image: url(../img/general/bgBlack.jpg);
        opacity: 0;
        box-shadow: 0px 3px 5px rgba(0,0,0,0.5);
        -webkit-box-shadow: 0px 3px 5px rgba(0,0,0,0.5);
        -moz-box-shadow: 0px 3px 5px rgba(0,0,0,0.5);
        -ms-box-shadow: 0px 3px 5px rgba(0,0,0,0.5);
        -o-box-shadow: 0px 3px 5px rgba(0,0,0,0.5);
        
/*        background-color: rgba(40,40,40,0.7);*/
        
/*
        -webkit-filter: blur(10px);
        -moz-filter: blur(10px);
        -o-filter: blur(10px);
        -ms-filter: blur(10px);
        filter: blur(10px);
*/
        
/*
        background-blend-mode: multiply;
        -webkit-background-blend-mode: multiply;
        -moz-background-blend-mode: multiply;
        -ms-background-blend-mode: multiply;
        -o-background-blend-mode: multiply;
*/
    }
    
    .test2 {
        background-image: url(../img/general/bgBlack.jpg);
        
        width: 100%;
        height: 100%;
        left: 0;
        top:0;
        position: absolute;
    }
    
    .desktopNav {
        width: 60%;
        height: 100%;
        margin: auto;
        position: relative;
        text-align: center;
        
/*        background-color: rgba(255,255,255,0.2);*/
        
    }
    
    .navEqual {
        width: 20%;
        height: 100%;
    }
    
    .logoHeader{
/*        width: 150px;*/
/*        padding: 20px 0 0 0;*/
    }

    .logoHeader img {
        width: auto;
        height: 80%;
    }
    
    .navmenu{
        height: 100%;
        width: 100%;
        list-style: none;
        line-height: 140px;
/*        padding: 20px 0 0 0;*/
/*        background-color: rgba(255,0,0,0.5);*/
    }
    
    .navmenu a{
/*        font-family: 'montserratbold';*/
        font-size: 1.2em;
/*        letter-spacing: 0.1em;*/
        cursor: pointer;
        font-family: 'montserratsemibold';
        letter-spacing: 3px;
    }
    
    .navmenu li {
/*
        display: inline-block;
        padding: 0 3.1%;
*/
/*        padding: 0 4%;*/
    }
    
    .mainContent {
        width: 100%;
/*        height: 100%;*/
/*        height: calc(100% - 100px);*/
/*        padding: 120px 0 0 0;*/
/*        box-sizing: border-box;*/
        
        
    }
    
    .section{
        width: 100%;
/*        height: calc(100vh - 120px);*/
        height: 100vh;
        position: relative;
/*        background-color: rgba(0,100,0,0.5);*/
    }
    
    
    .phoneMock {
        position: absolute;
        width: 20%;
        height: auto;
        left: 1%;
        bottom: 0;
        transform: rotate3d(0,0,1,-10deg);
    }
    
    .intro h1 {
        margin: 0 0 10px 0;
    }
    
    .homeWork {
        position: relative;
/*        padding: 160px 0 0 0;*/
        margin: 30px 0 0 0;
    }
    
    .pagework {
        position: relative;
        padding: 200px 0 0 0;
    }
    
/*
    .workBox{
        width: calc(100vw *0.2);
        height: calc(100vw *0.2);
        text-align: center;
        margin: 0 60px 100px 0;
        position: relative;
        background-color: rgba(100,0,0,0.3);
    }
*/
    
    .workBox {
        width: calc(80vw *0.2);
        height: calc(80vw *0.2);
        text-align: center;
/*        margin: 0 5% 100px 0;*/
        margin: 0 0 10vw 0;
/*        position: relative;*/
    }
    
/*
    .workBox:nth-child(3n) {
        margin: 0 0 0 0;
    }
*/
    .circlePseudo {
        position: absolute;
        width: -webkit-calc(80vw *0.2);
        width: -moz-calc(80vw *0.2);
        width: -o-calc(80vw *0.2);
        width: calc(80vw *0.2);

        height: -o-calc(80vw *0.2);
        height: -moz-calc(80vw *0.2);
        height: -webkit-calc(80vw *0.2);
        height: calc(80vw *0.2);
        z-index: 1;
        border-radius: 100%;
    }
    
    .workCircle{
        width: 100%;
        height: 100%;
        border-radius: 100%;
/*        overflow: hidden;*/
        cursor: pointer;
        position: relative;
/*        background-color: rgba(255,255,255,0.2);*/
        background-color: rgba(0,0,0,0.2);
        z-index: 2;
    }
    
    .descClip {
        display: none;
    }
    
    .clip{
        width: 105%;
        height: 116%;
        border-bottom-left-radius: 100%;
        -webkit-border-bottom-left-radius: 100%;
        -moz-border-bottom-left-radius: 100%;
        -ms-border-bottom-left-radius: 100%;
        -o-border-bottom-left-radius: 100%;
        border-bottom-right-radius: 100%;
        -webkit-border-bottom-right-radius: 100%;
        -moz-border-bottom-right-radius: 100%;
        -ms-border-bottom-right-radius: 100%;
        -o-border-bottom-right-radius: 100%;
        position: absolute;
        left: -2.4%;
        bottom: -0.2%;
        overflow: hidden;
/*        background-color: rgba(100,0,0,0.3);*/
        
        mask-image: url(../img/general/clip2.png);
        -webkit-mask-image: url(../img/general/clip2.png);
        -moz-mask-image: url(../img/general/clip2.png);
        -ms-mask-image: url(../img/general/clip2.png);
        -o-mask-image: url(../img/general/clip2.png);
        mask-type: alpha; 
        -webkit-mask-type: alpha; 
        -moz-mask-type: alpha; 
        -ms-mask-type: alpha; 
        -o-mask-type: alpha; 
    }
    
    .ferrariclip{
        transform: rotate3d(0, 0, 1, -120deg);
        top: -4%;
        left: -9%;
    }
    
    .ferrariclip img {
        width: 115%;
/*        transform: translate3d(-9%,74%,0) rotate3d(0,0,1,120deg); */
        transform: translate3d(-16%,66%,0) rotate3d(0,0,1,120deg); 
    }
    
    .clip img{
/*        width: 100%;*/
        height: auto;
/*        transform: translate3d(0,13%,0);*/
    }
    
    .parklandzooclip img {
        width: 80%;
        transform: translate3d(0,13%,0);
    }
    
    .transActiveLeft {
        width: 100vw !important;
        height: 100vh !important;
        border-radius: 0 !important;
    /*    background-color: rgba(244,153,56,1) !important;*/
    /*    position: absolute !important;*/
        left: 0 !important;
    /*    bottom: 0 !important;*/
        top:0 !important;
    /*    z-index: 2 !important;*/
    /*    overflow: hidden;*/
    /*
        background-image: url(../img/general/bgWhite.jpg);
            background-blend-mode: multiply;
    */
    }

    .transActiveRight {
        width: 100vw !important;
        height: 100vh !important;
        border-radius: 0 !important;
    /*    background-color: rgba(244,153,56,1) !important;*/
    /*    position: absolute !important;*/
        right: 0 !important;
    /*    bottom: 0 !important;*/
        top:0 !important;
    /*    z-index: 2 !important;*/
    /*    overflow: hidden;*/
    /*
        background-image: url(../img/general/bgWhite.jpg);
            background-blend-mode: multiply;
    */
    }


    /* Left Column */
    .workBox:nth-child(3n+1) .circlePseudo {
        left: 20%;
    /*    background-color: rgba(100,0,0,0.5);*/
    }

    /* Middle Column */
    .workBox:nth-child(3n+2) .circlePseudo {
        left: 0;
        right: 0;
        margin: 0 auto;
    /*    background-color: rgba(0,100,0,0.5);*/
    }

    /* Right Column */
    .workBox:nth-child(3n+3) .circlePseudo {

        right: 20%;
    /*    background-color: rgba(0,0,100,0.5);*/
    }

    /* First Row */
    .workBox:nth-child(-n+3) .circlePseudo {
    /*    top: 160px;*/
        top: 0;
    }

    /* Second Row */
    .workBox:nth-child(n+4):nth-child(-n+6) .circlePseudo {
        top: 26vw;
    }

    /* Third Row */
    .workBox:nth-child(n+7):nth-child(-n+9) .circlePseudo {
        top: 52vw;
    }

    /* Fourth Row */
    .workBox:nth-child(n+10):nth-child(-n+12) .circlePseudo {
        top: 78vw;
    }

    /* Fifth Row */
    .workBox:nth-child(n+13):nth-child(-n+15) .circlePseudo {
        top: 104vw;
    }

    /* Sixth Row */
    .workBox:nth-child(n+16):nth-child(-n+18) .circlePseudo {
        top: 130vw;
    }
    
    
/*
    .workCircle:hover > .test3 img {
        transform: translate3d(0,-3%,0);
    }
    
    .workCircle:hover{
        background-color: rgba(244,153,56,1);
    }
*/
    
    .workDescription{
        margin: 15px 0 0 0;
/*
        position: absolute;
        right: -50%;
        bottom: 32%;
        text-align: left;
*/
    }
    
    .workDescription h1{
        margin: 0 0 5px 0;
    }
    
    .workBannerIntro {
        text-align: left;
/*        padding: 0 0 0 5%;*/
        align-self: center;
        -webkit-align-self: center;
        position: relative;
        line-height: 1.5em;
    }
    
    .workBannerIntro h1, .workBannerIntro p  {
        margin: 0 0 10px 5%;
    }
    
    .bannerBG {
/*        background-image: url(../img/general/bgWhite.jpg);*/
/*        background-blend-mode: multiply;*/
        width: 100%;
/*        height: 100%;*/
/*
        position: absolute;
        left: 0;
        top: 0;
*/
/*        z-index: 0;*/
    }
    
    .banner50{
        width: 50%;
    }
    
    .banner50 img {
        height: auto;
    }
    
    .parklandzooBanner{
        width: 100%;
/*        right: 0;*/
        bottom: 0;
        top: 10%;
        left: 0;
        margin: auto;
        position: absolute;
    }
    
    .ferrariBanner{
        width: 110%;
        top:10%;
        bottom: 0;
        margin: auto;
        right: 0;
/*        left: 0;*/
        position: absolute;
        
    }
    
    .workDetailBox {
        padding: 3% 0 0 0;
    }
    
    .workDetail {
        padding: 5% 5% 0 0%;
        box-sizing: border-box;
    }
    
    .workDetail h1 {
        text-align: center;
    }
    
    .workDetail h2 {
        text-align: left;
        margin: 0 0 10px 0;
    }
    
    .workDetail h3 {
        text-align: left;
        font-family: 'montserratsemibold';
        font-size: 2em;
        margin: 0 0 10px 0;
    }
    
    .workDetail p {
        line-height: 1.5em;
        text-align: justify;
        white-space: pre-line;
    }
    
    .workDetail a {
        text-decoration: underline;
    }
    
    .workFootnote {
        padding: 5% 0 5% 0;
    }
    
    .sideImgFeature{
        text-align: center;
    }
    
    .sideImgFeature img {
        width: 60%;
        height: auto;
    }
    
    .fullFeatureImg img{
        padding: 5% 0 0 0;
    }

    
    footer {
        width: 100vw;
        height: 50px;
        position: absolute;
        left: 0;
        bottom: 0;

        background-color: rgba(0,0,0,0.4);
    }
}

/* DESKTOP */
@media only screen and (min-width: 1600px) {
}








/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 1.25dppx),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after,
    *:first-letter,
    *:first-line {
        background: transparent !important;
        color: #000 !important; /* Black prints faster:
                                   http://www.sanbeiji.com/archives/953 */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}


