@charset "UTF-8";
/* CSS Document */

/*--- PROJECT PAGE---*/

html,
body {
    height: 100%;
}

#projectPage {
    height: 100%;
    /* overflow: auto;
    overflow-y: scroll;
    has to be scroll, not auto */
    -webkit-overflow-scrolling: touch;
}

h3 {
    font-family: "nimbus-sans", sans-serif;
    font-size: 1em;
    font-weight: 300;
    color: #777;
    margin-bottom: 30px;
}

h3 a{
    color: #BEC531;
}


h4 {
    font-family: "nimbus-sans", sans-serif;
    font-size: .9em;
    font-weight: 300;
    color: #BEC531;
    margin-bottom: 10px;
    text-transform: uppercase;
}

#content img {
    margin-bottom: 15px;
    width: 100%;
}

#content #SMsection {
    background-color: #E6E6E6; 
    padding:35px; 
    margin-bottom: 20px;
}

#content iframe {
    padding:35px;
}

#content .projectNav {
    width: 100%;
    text-align: right;
    height: 30px;
    padding: 0;
    margin: 0;
}

#content .projectNav a {
    font-family: "nimbus-sans", sans-serif;
    font-weight: 300;
    font-size: .75em;
    color: #656d8f;
    margin: 0 0 0 1em;
    text-decoration: none;
    text-transform: uppercase;
}

#content .projectNav a:hover {
    color: #bec531;
}

.projectOverlay {
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 4;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.95);
    overflow-y: hidden;
    transition: 0.5s;
}

.openOverlayButton {
    font-family: "nimbus-sans", sans-serif;
    font-size: .7em;
    line-height: 1.2em;
    font-weight: 300;
    color: #656d8f;
    margin: 10px 0 20px 0;
    cursor: pointer;
    text-transform: uppercase;
}

.openOverlayButton a {
    color: #656d8f;
    text-decoration: none;
}

.openOverlayButton:hover {
    color: #bec531;
}

#content .caseStudy {
    font-family: "nimbus-sans", sans-serif;
    font-size: 1em;
    line-height: 1.2em;
    font-weight: 400;
    color: #656d8f;
    margin: 10px 0 20px 0;
}

#content .caseStudy a {
    color: #bec531;
    text-decoration: none;
}

#content .caseStudy a:hover {
    color: #bec531;
    text-decoration: underline;
}

#content .projectOverlayContent {
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    margin: 20px 3% 60px 3%;
    overflow-y: auto;
}

#content .projectOverlayContent p {
    font-family: "nimbus-sans", sans-serif;
    font-weight: 400;
    font-size: 1.1em;
    line-height: 1.4em;
    color: #bec531;
    margin: 20px 0 0 0;
    width: 80%;
}

#content .closeOverlayButton {
    cursor: pointer;
}

/* PROJECT PAGE END */

/* RESPONSIVE */

@media only screen and (max-height: 500px) {}

@media only screen and (min-width: 500px) {}

@media only screen and (min-width: 750px) {}

@media only screen and (min-width: 1000px) {
    #content .projectOverlayContent p {
        font-size: 1.5em;
        max-width: 900px;
    }
}

@media only screen and (min-width: 1100px) {
    #content .projectOverlayContent {
        width: 1024px;
        margin: 20px auto 60px auto;

    }

}

@media only screen and (min-width: 1350px) {}

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

@media only screen and (min-width: 1950px) {}

/* RESPONSIVE END */