/**********************************
*** STYLE GUIDE 

*** Fonts
    Raleway Extra Bold
    font-family: 'ralewayextrabold', sans-serif;
    ** used in heading and buttons
    
    Roboto Regular
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    ** Use in paragraphs

    Roboto Bold
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    ** used in sub-headings

*** Fonts
    Montserrat Bold
    font-family: 'Montserrat', sans-serif;
    
    Open Sans Regular
    font-family: 'Open Sans', sans-serif;

**********************************/


/*
** Helpers
*/
.hide {
    display: none !important;
}

.noScroll {
    overflow: hidden !important;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}


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

.underline {
    text-decoration: underline;
}

/*
** General Style
*/

html {
/*
    width:100vw;
    height: 100vh;
*/
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    
}

body {
    width: 100%;
    height: 100%;
    min-height: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    
    background-image: url(../img/general/bgBlack.jpg);
    background-color: #252525;
}

nav {
    width: 100%;
/*
    height: 60px;
    line-height: 60px;
*/
    height: 140px;
    padding: 0.5% 0;
    position: fixed;
    z-index: 5;
    left: 0;
    top: 0;
    text-align: center;
/*    border-bottom: 1px solid #e6e6e6;*/
/*    background-color: #fff;*/
    transition: height 0.2s ease-in-out;
    -webkit-transition: height 0.2s ease-in-out;
    -moz-transition: height 0.2s ease-in-out;
    -ms-transition: height 0.2s ease-in-out;
    -o-transition: height 0.2s ease-in-out;
}

h1 {
    font-size: 2em;
    margin: 0.5em 0;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

p {
    font-family: 'Open Sans', sans-serif;
    color: #fff;
    line-height: 30px;
    font-size: 1.2em;
    white-space: pre-line;
}

@media only screen and (max-width: 767px) {
    p {
        line-height: 24px;
        font-size: 1em;
    }
}


a{
/*    font-family: 'ralewayextrabold', sans-serif;*/
/*    font-size: 1em;*/
    text-decoration: none;
    color: #fff;
}

/*
textarea:focus, input:focus, select:focus{
    outline: none;
}

.btn-container {
    width: 100%;
    text-align: center;
}

.btn {
    display: inline-block;
    cursor: pointer;
    border-radius: 4px;
    white-space: nowrap;
    text-align: center;
    padding: 10px 30px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
}

.btn-grey {
    background-color: #939393;
    color: #fff;
}

.btn-grey:hover {
    background-color: #666564;
}

.btn-red {
    background-color: #dd2828;
    color: #fff;
}

.btn-red:hover {
    background-color: #ad1717;
}
*/

.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;
}

.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 ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}


/*
** Navigation
*/

.navOverlay {
    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);
    
    transition: opacity 0.2s ease-in-out;
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    -ms-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
}

/*
.navSpacing {
    padding-top: 140px;
}
*/

.navWrapper {
    margin: 0 auto;
    max-width: 980px;
    height: 100%;
    padding: 0 22px;
    position: relative;
    z-index: 2;
/*    background-color: rgba(200,0,0,0.5);*/
}

.navHeader{
    display: none;
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    overflow: hidden;
}

/*
.navYear{
    position: absolute;
    bottom: 1%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s linear;
}

.navYear.active {
    opacity: 1;
}
*/

.navYear p{
    font-size: 0.85em !important;
    color: #6d6d6d !important;
}

nav a {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3em;
    position: relative;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

.navItem {
    display: inline-block;
    position: relative;
    height: 100%;
    width: 20%;
/*    width: 60px;*/
    z-index: 1;
    vertical-align: top;
/*    background-color: rgba(0,200,0,0.5);*/
}

/*
.navItem a {
    padding: 0 10px;
}
*/

.navMenu{
    position: absolute;
    z-index: 2;
    width: 80px;
    height: 80px;
    top: 0;
    text-align: center;
    left: 0;
}

.navUnderline {
    width: 0;
    height: 4px;
    background: #fff;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
}

.contactUnderline{
    width: 0;
    height: 3px;
    background: #fff;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
}

/*
nav a:hover > .navUnderline, .navUnderline.active{
    width: 100%;
}
*/

.navUnderline.active{
    width: 100%;
}

.navLogo {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}


/*
.navLogo{
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 2;
    width: 60px;
    height: 60px;
    top: 0;
    text-align: center;
    
    width: 160px !important;
}

.navLogo img {
    height: 80%;
    width: auto;
    height: 40px !important;
    width: auto !important;
}
*/

.navItem img {
    width: auto;
    height: 80%;
}

.navCart{
    position: absolute;
    z-index: 2;
    width: 60px;
    height: 60px;
    top: 0;
    text-align: center;
    right: 0;
}



/*
** Main
*/

main {
    width: 100%;
    height: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
}

.section-full {
/*
    width: 100vw;
    height: 100vh;
*/
    width: 100%;
    height: 100%;
    min-height: 100%;
    position: relative;
    text-align: center;
}

.section-full h1{
    font-size: 3em;
}

.section-full p{
    font-size: 1.3em;
}

.contentParentDiv {
    height: 100%;
    padding: 0 15%;
}

#homegallery-container {
    
}



/*
#homegallery-container {
    position: relative;
    z-index: 1;
    height: 400px;
    width: 100%;
    background-image: url(../img/banner/home.jpg);
    background-position: right bottom;
    background-size: cover;
}
*/



.bannerPhrase {
    position: absolute;
    right: 5%;
    bottom: 2%;
    color: #fff;
    font-size: 2em;
    font-style: italic;
}

.home-introduction {
    max-width: 980px;
    position: relative;
    z-index: 1;
    margin: 20px auto 0 auto;
    text-align: center;
    
    padding: 0 5%;
    
/*    background-color: rgba(200,0,0,0.3);*/
}

.home-introduction h1{
    color: #dd2828;
    font-size: 1.5em;
/*    margin-bottom: 0.5em;*/
    margin: 0.2em 0;
} 
.home-introduction p{
    color:#59554d;
    margin: 0;
}
.intro-blurb{
    position: relative;
    z-index: 1;
    width: 100%;
    
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content:space-around;
    -ms-flex-pack: space-around;
    justify-content: space-around;
}

.blurb {
    width: 15%;
    min-width: 100px;
    margin: 5% 0;
    text-align: center;
}

.blurb h2 {
    color:#59554d;
    font-size: 1.2em;
}

.blurb img {
    width: 80%;
    height: auto;
}

.page-title-container{
    position: absolute;
    z-index: 1;
    max-width: 980px;
    left: 15%;
    right: 0;
    top: 35%;
    margin: auto;
}

.page-title {
    margin: 0;
    font-size: 2em;
    color: #fff;
}

.gallery-container {
    position: relative;
    z-index: 1;
    height: 500px;
    width: 100%;
/*    background-image: url(../img/parklandzoo/banner.jpg);*/
/*    background-position: center center;*/
    background-size: cover;
    margin-bottom: 50px;
    text-align: center;
}
.gallery-container .banner {
    width: 100%;
    height: 100%;
}
.gallery-container .banner::after{
    display: inline-block;
    vertical-align: middle;
    content: ' ';
    width: 0;
    height: 100%;
}


.gallery-container .title {
    display: inline-block;
    vertical-align: middle;
    font-size: 3em;
}

@media only screen and (max-width: 767px) {
    .gallery-container .title {
        font-size: 2em;
    }
    
    .gallery-container {
        height: 300px;
        margin-bottom: 25px;
    }
}

.section-content {
    max-width: 980px;
    position: relative;
    z-index: 1;
    padding: 0 5% 30px 5%;
    margin: auto;
}

.section-content h1{
    font-size: 1.5em;
    margin-top: 0;
}

.section-content p{
    margin: 0;
}

/*
** About
*/

.about-introduction {
    max-width: 980px;
    position: relative;
    z-index: 1;
    margin: 20px auto 0 auto;
    text-align: center;
    
    padding: 0 5%;
}

.about-introduction h1, .about-why-container h1{
    color: #dd2828;
    font-size: 1.5em;
/*    margin-bottom: 0.5em;*/
    margin: 0.2em 0;
} 
.about-introduction p, .about-why-container p{
    color:#59554d;
    margin: 0;
}

.about-why-container {
    width: 100%;
    background-color: #f0f0f0;
    text-align: center;
}

.about-why-btn {
    margin: 30px 20px 0 0px;
}



/*
** Contact
*/

.contactLink {
    -webkit-margin-before: 1em;
    -webkit-margin-after: 1em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
}

.contact-detail {
    text-align: center;
}
.contact-detail h1 {
    color: #59554d;
}

.contact-detail a, .contact-detail p {
    font-family: 'Open Sans', sans-serif;
    color: #59554d;
    display: block;
    padding: 10px 0 0 0;
}

.contact-detail a:hover {
    color: #dd2828;
}

.contact-blurb-container {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    align-items:flex-start;
    -webkit-justify-content:space-around;
    -ms-flex-pack: space-around;
    justify-content: space-around;
}

.contact-blurb {
    width: 30%;
    text-align: center;
}

.contact-blurb img {
    width: 80px;
    height: auto;
}

.contact-form-container {
    width: 100%;
    background-color: #f0f0f0;
    text-align: center;
}
.contact-form-container h1{
    color: #59554d;
}

.contact-form {
    width: 600px;
    max-width: 100%;
    margin: auto;
    background-color: #fff;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0px 3px 15px rgba(0,0,0,0.4); /*#888888*/
}

.error-message {
    width: 100%;
    padding: 10px 0;
    background-color: #dd2828;
    color: #fff;
    border-radius: 3px;
}

.form-content label {
    margin: 10px 0 0px 0;
    display: block;
    text-align: left;
    
    font-family: 'Open Sans', sans-serif;
    color: #59554d;
    font-size: 0.9em;
    position: relative;
}

.form-content input, .form-content textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 0;
    border: none;
    
    border-bottom: 1px solid #59554d;
    width: 100%;
    display: block;
    margin: 0 0 15px 0;
    
    padding-left: 0;
    padding-right: 0;
    
    font-family: 'Open Sans', sans-serif;
    color: #59554d;
}

.submit-btn {
    border-bottom: none !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: normal !important;
    color: #fff !important;
    margin: 25px 0 0 0 !important;
}

.form-content select {
    display: block;
    width: 100%;
    margin: 0 0 15px 0;
    
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 0;
    border: none;
    
    padding-left: 0;
    padding-right: 0;
    
    background-color: rgba(0,0,0,0);
    border-bottom: 1px solid #59554d;
    
    font-family: 'Open Sans', sans-serif;
    color: #59554d;
}

.required-sign {
    width: 7px;
    height: 7px;
    border-radius: 7px;
    display: inline-block;
    background-color: #dd2828;
    margin: 0 0 1px 5px;
}



/*
** Work
*/

.work-hero {
    position: relative;
    z-index: 1;
    height: 350px;
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
}

.work-hero::after {
    display: inline-block;
    vertical-align: middle;
    content: ' ';
    width: 0;
    height: 100%
}

.work-hero .text {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    z-index: 5;
    max-height: 48px;
}

.work-hero .title {
    margin: 80px 0 0 0;
}

@media only screen and (max-width: 767px) {
    .work-hero {
        height: 200px;
    }
    
    .work-hero .title {
        margin: 60px 0 0 0;
    }
}

.work-tiles {
    list-style: none;
    margin-bottom: 0px;
    padding: 0;
    overflow: hidden;
}

.work-tiles li {
    float: left;
    width: 50%;
    margin: 0;
    padding: 0 0 25%;
    position: relative;
    height: 0;
    line-height: 1;
    font-size: 1em;
}

@media only screen and (max-width: 767px) {
    .work-tiles li {
        width: 100%;
        padding-bottom: 50%;
    }
}

.work-tiles li .tile {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    color: #fff;
    text-decoration: none;
    text-align: center;
    display: block;
    overflow: hidden;
    white-space: nowrap;
}

.work-tiles li .tile::after {
    display: inline-block;
    vertical-align: middle;
    content: ' ';
    width: 0;
    height: 100%
}

.work-tiles li .tile .overlay {
    -webkit-transition: opacity .3s linear;
    -moz-transition: opacity .3s linear;
    transition: opacity .3s linear;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
/*    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);*/
    opacity: 0;
    background-color: #000;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}



.work-tiles li .tile .text {
    -webkit-transition: max-height .3s ease-out;
    -moz-transition: max-height .3s ease-out;
    transition: max-height .3s ease-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    z-index: 5;
    max-height: 48px;
}

.work-tiles li .tile .title {
    
    display: block;
    width: 100%;
    font-size: 3.7vmin;
    font-family: 'Montserrat', sans-serif;
/*    font-family: Effra,Georgia,Times,"Times New Roman",serif;*/
    
    -webkit-transition-duration: .54s;
    -moz-transition-duration: .54s;
    transition-duration: .54s;
    -webkit-transition-timing-function: cubic-bezier(0, 0, 0.29, 1);
    -moz-transition-timing-function: cubic-bezier(0, 0, 0.29, 1);
    transition-timing-function: cubic-bezier(0, 0, 0.29, 1);
        
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.work-tiles li .tile .extra {
    -webkit-transition-property: opacity transform;
    -moz-transition-property: opacity transform;
    transition-property: opacity transform;
    -webkit-transition-duration: .3s;
    -moz-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transform: translate3d(0, 10px, 0);
    -moz-transform: translate3d(0, 10px, 0);
    -ms-transform: translate3d(0, 10px, 0);
    -o-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
}

@media only screen and (max-width: 767px) {
    .work-tiles li .tile .title {
        font-size: 2em;
    }
    
    .work-tiles li .tile .extra {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}



.work-tiles li .tile .sub-title {
    display: block;
    margin-top: 10px;
    font-size: 1.3em;
}

.work-tiles li .tile:hover .overlay {
/*    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);*/
    opacity: .4;
    transition-duration: .65s
    -webkit-transition-duration: .65s;
    -moz-transition-duration: .65s;
}

.work-tiles li .tile:hover .text {
    max-height: 300px;
    -webkit-transition-duration: .3s;
    -moz-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: cubic-bezier(0, 0, 0.29, 1);
    -moz-transition-timing-function: cubic-bezier(0, 0, 0.29, 1);
    transition-timing-function: cubic-bezier(0, 0, 0.29, 1);
}

.work-tiles li .tile:hover .title {
    -webkit-transform: translate3d(0, -5px, 0);
    -moz-transform: translate3d(0, -5px, 0);
    -ms-transform: translate3d(0, -5px, 0);
    -o-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
}

.work-tiles li .tile:hover .extra {
    -webkit-transform: translate3d(0, -5px, 0);
    -moz-transform: translate3d(0, -5px, 0);
    -ms-transform: translate3d(0, -5px, 0);
    -o-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
    -webkit-transition-duration: .54s;
    -moz-transition-duration: .54s;
    transition-duration: .54s;
    -webkit-transition-timing-function: cubic-bezier(0, 0, 0.29, 1);
    -moz-transition-timing-function: cubic-bezier(0, 0, 0.29, 1);
    transition-timing-function: cubic-bezier(0, 0, 0.29, 1)
}

/*
.work-tiles li .tile .button {
    -webkit-transform: translate3d(0, 10px, 0);
    -moz-transform: translate3d(0, 10px, 0);
    -ms-transform: translate3d(0, 10px, 0);
    -o-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
    -webkit-transition: -webkit-transform .3s ease-out;
    -moz-transition: -moz-transform .3s ease-out;
    transition: transform .3s ease-out;
    margin-top: 36px;
    padding: 15px 40px;
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}
*/



/*
** Specific Work (SW)
*/
.sw h2 {
    font-size: 2em;
    margin-top: 0;
}
.sw h3 {
    font-size: 1.2em;
    margin-bottom: 0;
}

.sw a {
    border-bottom: 1.5px solid #fff;
}

.noLink {
    border-bottom: none !important;
}

@media only screen and (max-width: 767px) {
    .sw h2 {
        font-size: 1.5em;
    }
}

.about-project-wrapper, .interactive-wrapper, .credit {
    text-align: center;
}

.about-project-wrapper, .interactive-wrapper, .img-100-width, .work-feature {
    margin-bottom: 50px;
}



.img-100-width {
    width: 100%;
}

.img-100-width img {
    width: 100%;
    height: auto;
}

.interactive-wrapper .interactivePortrait{
    width: 50%;
    float: left;
/*    height: 300px;*/
/*    background: rgba(200,0,0,0.4);*/
}

/*
.interactive-wrapper .interactive70Div{
    width: 70%;
    float: left;
    background: rgba(200,0,0,0.4);
}

.interactive-wrapper .interactive30Div{
    width: 30%;
    float: left;
    background: rgba(0,200,0,0.4);
}
*/

.interactive-wrapper .interactive-mockup {
    position: relative;
    width: 80%;
/*    padding: 0 10%;*/
    margin: auto;
/*    background: rgba(0,0,200,0.3);*/
    margin: auto;
}

.interactive-wrapper .interactive-mockup iframe {
    position: absolute;
    margin: auto;
    border: none;
}

.interactive-wrapper .interactive-mockup .appPortraitSize {
    width: 66.3%;
    height: 67.3%;
    left: 0;
    right: 0;
    top: 13%;
}

.interactive-wrapper .interactive-mockup .webPortraitSize {
    width: 66.3%;
    height: 59.55%;
    left: 0;
    right: 0;
    top: 20.8%;
/*    background: rgba(200,0,0,0.3);*/
}

.interactive-wrapper .interactive-mockup .appLandscapeSize {
    width: 82.3%;
    height: 86.3%;
    left: 0;
    right: 0;
    top: 7%;
}

.interactive-wrapper .interactive-mockup img{
    width: 100%;
}

.interactive-about {
    text-align: left;
}

.interactive-about h2 {
    margin-top: 5%;
}

.interactiveLandscape {
    width: 100%;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .interactive-wrapper .interactivePortrait{
        width: 100%;
    }
    
    .interactive-mockup {
        display: none;
    }
    
    .interactive-about {
        text-align: center;
    }
    
    .interactive-about h2 {
        margin-top: 0;
    }
    
    .about-project-wrapper, .interactive-wrapper, .img-100-width, .work-feature {
        margin-bottom: 25px;
    }
}

.work-feature {
    text-align: center;
}

.work-feature img {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
}

.content-wrapper{
    
}



/*
** Footer
*/

footer {
    position: absolute;
    bottom: 1%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
/*    z-index: 5;*/
}

footer p {
/*    font-size: 0.85em !important;*/
    font-size: 1em !important;
    color: #6d6d6d !important;
}


.footer-container {
    text-align: center;
    max-width: 980px;
    margin: auto;
    padding: 15px 0;
    
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    align-items:flex-start;
    -webkit-justify-content:space-around;
    -ms-flex-pack: space-around;
    justify-content: space-around;
}

.footer-left-container {
    width: 50%;
}

.footer-right-container {
    width: 50%;
}

.footer-title-link{
    font-family: 'Montserrat', sans-serif;
}

.footer-copyright {
    width: 100;
    border-top: 1px solid #e6e6e6;
    text-align: center;
    padding: 15px 0;
}

.footer-copyright p {
    padding: 0;
    margin: 0;
    color: #c2c2c3;
}


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

@media only screen and (min-width: 768px) {
    .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);
}



/*
** Mobile Style
*/
@media only screen and (max-width: 767px) {
    .mobileHide {
        display: none !important;
    }
    html {
        font-size: 14px;
    }
    
    .btn {
        width: 100%;
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
        margin-top: 15px;
    }
    
    nav {
        min-width: 320px;
        height: 80px;
/*
        -webkit-transition: height 0.35s ease-in;
        transition: height 0.35s ease-in;
*/
        transition: background 0.35s linear,height 0.35s ease-in;
        
/*
        -webkit-transition: background 0.35s linear 200ms,height 0.35s ease-in;
        transition: background 0.35s linear 200ms,height 0.35s ease-in;
*/
    }
    
    nav.active {
        height: 100% !important;
        background-color: #252525;
        -webkit-transition: background 0.35s linear,height 0.35s ease-in 200ms;
        transition: background 0.35s linear,height 0.35s ease-in 200ms;
    }
    
    /* display mobile nav */
    .navLogo {
        line-height: 80px;
    }
    .navHeader{
        display: block;
        height: 80px;
    }
    
    /* hide desktop nav */
    .navList .navLogo{
        display: none;
    }
    
    .navList .navItem:first-child{
        margin-top: 25%;
    }
    
    .navItem {
        display: block;
    }
    
    .navMenu a {
        display: block;
        width: 100%;
        height: 100%;
        padding: 0;
    }
    
    .navMenuBox {
        width: 100%;
        height: 100%;
        position: relative;
        text-align: center;
        cursor: pointer;
        display: block;
    }
    
    .line{
        display: block;
        width: 22px;
        height: 2px;
/*        background-color: #59554d;*/
        background-color: #fff;
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
    }
    
    .dash1 {
        top:32px;
    }
    
    .dash2 {
        top: 39px;
/*        margin: 9px auto;*/
    }
    
    .dash3 {
        top: 47px;
    }
    
    .dash1.active {
/*
        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);
*/
        transform-origin: top left;
        -webkit-transform-origin: top left;
        -moz-transform-origin: top left;
        -ms-transform-origin: top left;
        -o-transform-origin: top left;
        
        -webkit-transition: -webkit-transform 0.25s 0.2s cubic-bezier(0.4, 0.01, 0.165, 0.99);
        transition: -webkit-transform 0.25s 0.2s cubic-bezier(0.4, 0.01, 0.165, 0.99);
        transition: transform 0.25s 0.2s cubic-bezier(0.4, 0.01, 0.165, 0.99);
        transition: transform 0.25s 0.2s cubic-bezier(0.4, 0.01, 0.165, 0.99), -webkit-transform 0.25s 0.2s cubic-bezier(0.4, 0.01, 0.165, 0.99);
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    
    .dash2.active {
        width: 0;
    }
    
    .dash3.active {
/*
        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);
*/
        transform-origin: bottom left;
        -webkit-transform-origin: bottom left;
        -moz-transform-origin: bottom left;
        -ms-transform-origin: bottom left;
        -o-transform-origin: bottom left;
        
        -webkit-transition: -webkit-transform 0.25s 0.2s cubic-bezier(0.4, 0.01, 0.165, 0.99);
        transition: -webkit-transform 0.25s 0.2s cubic-bezier(0.4, 0.01, 0.165, 0.99);
        transition: transform 0.25s 0.2s cubic-bezier(0.4, 0.01, 0.165, 0.99);
        transition: transform 0.25s 0.2s cubic-bezier(0.4, 0.01, 0.165, 0.99), -webkit-transform 0.25s 0.2s cubic-bezier(0.4, 0.01, 0.165, 0.99);
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        
    }
    
    .navList {
        position: absolute;
        z-index: 2;
        top: 80px;
        right: 0;
        bottom: 0;
        left: 0;
        margin: 0;
        text-align: center;
        padding: 0 48px;
        height: auto;
        box-sizing: border-box;
        overflow: hidden;
/*        overflow-y: scroll;*/
        -webkit-overflow-scrolling: touch;
        visibility: hidden;
        -webkit-transition: visibility 0.5s linear 1s;
        transition: visibility 0.5s linear 1s;
    }
    
    .navList li {
        text-align: center;
        height: 80px;
        width: 100%;
        opacity: 0;
        transform: scale(1.1) translateY(-24px);
        -webkit-transform: scale(1.1) translateY(-24px);
        -moz-transform: scale(1.1) translateY(-24px);
        -ms-transform: scale(1.1) translateY(-24px);
        -o-transform: scale(1.1) translateY(-24px);
        transition: opacity 0.35s ease-out, transform 0.35s ease-out;
    }
    
    .navList.active {
        visibility: visible;
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
    }
    
    .navList.active > li {
        transform: scale(1) translateY(0);
        -webkit-transform: scale(1) translateY(0);
        -moz-transform: scale(1) translateY(0);
        -ms-transform: scale(1) translateY(0);
        -o-transform: scale(1) translateY(0);
        opacity: 1;
    }

    
    .navList.active > li:first-child {
        -webkit-transition-delay: 350ms;
        transition-delay: 350ms;
    }
    
    .navList.active > li:nth-child(2) {
        -webkit-transition-delay: 400ms;
        transition-delay: 400ms;
    }
    
    .navList.active > li:nth-child(3) {
        -webkit-transition-delay: 450ms;
        transition-delay: 450ms;
    }
    
    .navList.active > li:nth-child(4) {
        -webkit-transition-delay: 500ms;
        transition-delay: 500ms;
    }
    
    .navList.active > li:nth-child(5) {
        -webkit-transition-delay: 550ms;
        transition-delay: 550ms;
    }
    
    
    
/*
    #homegallery-container, .gallery-container{
        height: 200px;
        background-image: url(../img/banner/other.jpg);
    }
*/
    
    .page-title-container{
        left: 8%;
    }
    
    .page-title {
        font-size: 1.5em;
    }
    
    
    .bannerPhrase {
        right: 5%;
        margin: 0 0 2px 0;
        font-size: 1.1em;
    }
    
    .home-introduction h1, .about-introduction, .about-why-container{
        text-align: left;
    } 
    .home-introduction p{
        text-align: justify;
    }
    
    .blurb {
        width: 10%;
        margin: 5% 0;
    }
    
    .blurb img {
        width: 70%;
    }
    
    .blurb h2 {
        color:#59554d;
        font-size: 1em;
    }
    
    .contactLink a {
        position: relative;
        font-size: 1.3em;
        font-family: 'Open Sans', sans-serif;
        color: #fff;
/*        margin: 1em 0;*/
        display: inline-block;
    }
    
    .contactUnderline {
        width: 100%;
        height: 2px;
    }
    
    .contact-blurb {      
/*
        width: 250px;
        text-align: left;
        margin: auto;
        padding: 0 0 0 5%;
*/
        
        /* testing */
        width: 50%;
        text-align: left;
    }
    
    .contact-blurb:last-child {
        width: 100%;
        margin-top: 15px;
    }
    
    .contact-blurb-container {
        -webkit-flex-direction:column;
        -ms-flex-direction:column;
        flex-direction:column;
        
        /* testing */
        -webkit-flex-flow: wrap;
        -ms-flex-flow: wrap;
        flex-flow: wrap;
    }
    
    .contact-blurb img {
/*        width: 40px;*/
        
        /* testing */
        width: 25px;
    }
    
    .contact-detail a, .contact-detail p {
        display: inline-block;
        vertical-align: middle;
        
        /* testing */
        padding: 0;
    }
    
    .how-btn-container {
        width: 80%;
    }
    
    .how-step-wrapper {
        margin-bottom: 30px;
    }
    
    .product-box {
        width: 100%;
        padding-bottom: 80%;
        margin-bottom: 5%;
    }
    
    .product-name {
        padding: 5% 0;
    }
    
    .footer-container {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    
    .footer-left-container {
        padding-bottom: 15px;
    }
}

/*
** Laptop Style
*/
@media only screen and (min-width: 768px) and (max-width: 1440px) {
    html {
        font-size: 16px;
    }
    
    .navList {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-justify-content:space-between;
        -ms-flex-pack: space-between;
        justify-content: space-between;
        
        line-height: 140px;
        
        transition: line-height 0.2s ease-in-out;
        -webkit-transition: line-height 0.2s ease-in-out;
        -moz-transition: line-height 0.2s ease-in-out;
        -ms-transition: line-height 0.2s ease-in-out;
        -o-transition: line-height 0.2s ease-in-out;
    }
    .navLogo{
        position: static;
        margin: 0;
    }
    
    nav a:hover > .navUnderline{
        width: 100%;
    }
    
    .contactLink a {
        position: relative;
        font-size: 1.3em;
        font-family: 'Open Sans', sans-serif;
        color: #fff;
/*        margin: 1em 0;*/
        display: inline-block;
    }
    
    .contactLink a:hover > .contactUnderline{
        width: 100%;
    }
/*
    #homegallery-container, .gallery-container {
        height: 300px;
    }
*/
    
    .bannerPhrase {
        right: 5%;
        bottom: 2%;
        font-size: 1.5em;    
    }
    
    .blurb {
        width: 10%;
        margin: 5% 0;
    }
    
    .blurb h2 {
        color:#59554d;
        font-size: 1em;
    }
    
    .product-box {
/*
        width: 40%;
        padding-bottom: 25%;
        margin-bottom: 5%;
*/
    }
}

/*
** Desktop Style
*/
@media only screen and (min-width: 1440px) and (max-width: 10000px) {
    html {
        font-size: 16px;
    }
    .navList {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-justify-content:space-between;
        -ms-flex-pack: space-between;
        justify-content: space-between;
        line-height: 140px;
        
        transition: line-height 0.2s ease-in-out;
        -webkit-transition: line-height 0.2s ease-in-out;
        -moz-transition: line-height 0.2s ease-in-out;
        -ms-transition: line-height 0.2s ease-in-out;
        -o-transition: line-height 0.2s ease-in-out;
    }
    
    .navLogo{
        position: static;
        margin: 0;
    }
    
    nav a:hover > .navUnderline{
        width: 100%;
    }
    
    .contactLink a {
        position: relative;
        font-size: 1.3em;
        font-family: 'Open Sans', sans-serif;
        color: #fff;
/*        margin: 1em 0;*/
        display: inline-block;
    }
    
    .contactLink a:hover > .contactUnderline{
        width: 100%;
    }
    
    .section-content {
/*        padding: 2% 5%;*/
    }
}



@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);
}

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

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

main {
    transition: opacity 0.5s cubic-bezier(0.26, 0.86, 0.44, 0.985), transform 0.5s cubic-bezier(0.26, 0.86, 0.44, 0.985) !important;
    -webkit-transition: opacity 0.5s cubic-bezier(0.26, 0.86, 0.44, 0.985), transform 0.5s cubic-bezier(0.26, 0.86, 0.44, 0.985) !important;
    -moz-transition: opacity 0.5s cubic-bezier(0.26, 0.86, 0.44, 0.985), transform 0.5s cubic-bezier(0.26, 0.86, 0.44, 0.985);
    -ms-transition: opacity 0.5s cubic-bezier(0.26, 0.86, 0.44, 0.985), transform 0.5s cubic-bezier(0.26, 0.86, 0.44, 0.985);
    -o-transition: opacity 0.5s cubic-bezier(0.26, 0.86, 0.44, 0.985), transform 0.5s cubic-bezier(0.26, 0.86, 0.44, 0.985);
    
/*    transition: opacity 0.5s cubic-bezier(0.26, 0.86, 0.44, 0.985), margin-top 0.5s cubic-bezier(0.26, 0.86, 0.44, 0.985);*/
    
    -webkit-transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
    backface-visibility: hidden;
    perspective: 1000;
}
.ng-enter-active {
    transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
/*    margin-top: 0;*/
    opacity: 1;
}
.ng-enter {
    transform: translate3d(0,50vh,0);
    -webkit-transform: translate3d(0,50vh,0);
    -moz-transform: translate3d(0,50vh,0);
    -ms-transform: translate3d(0,50vh,0);
    -o-transform: translate3d(0,50vh,0);
    
/*    margin-top: 50vh;*/
    opacity: 0;
}



.ng-leave {
    transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    
/*    margin-top: 0;*/
    opacity: 1;
}

.ng-leave-active {
    transform: translate3d(0,50vh,0);
    -webkit-transform: translate3d(0,50vh,0);
    -moz-transform: translate3d(0,50vh,0);
    -ms-transform: translate3d(0,50vh,0);
    -o-transform: translate3d(0,50vh,0);
    
/*    margin-top: 50vh;*/
    opacity: 0;
}

/*
.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);
}*/
