/* GLOBAL */

html {
    background-color: #000000;
}
body {
    margin: 0;
    background-color: white;
    font-family: "Open Sans", sans-serif;
    max-width: 100vw;
}
header {
    background-color: #4A835A;
    height: 72px;
    width: 100vw;
    position: fixed;
    top: 0;
    z-index: 1;
}
.content {
    box-sizing: border-box;
    margin-left: 200px;
    margin-right: 22px;
    padding-top: 72px;
    min-height: 100vh;
}
@media screen and (max-width: 768px) {
    .content {
        margin-left: 22px;
    }
}
.wtpsc {
    position: fixed;
    top: 0;
    right: 0;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: right;
}
@media screen and (max-width: 768px) {
    .wtpsc {
        right: 72px;
    }
}
.wtpsc p {
    font-size: 2vw;
    font-weight: bold;
    color: white;
    box-sizing: border-box;
    margin: 0;
    padding: 8px 20px 12px 72px;
}
@media screen and (max-width: 599px) {
    .wtpsc p {
        display: none;
    }
}
h1 {
    font-size: 2em;
    margin-top: 15px;
}
h2 {
    font-size: 1.5em;
}
.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

/* MOBILE NAVIGATION */

#mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 72px;
    height: 72px;
    background-color: black;
}
#mobile-nav > a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 72px;
    height: 72px;
}
#mobile-nav div {
    box-sizing: border-box;
    height: 3px;
    width: 56px;
    margin: 6px;
    background-color: white;
}
#slide-out {
    display: none;
    position: fixed;
    top: 0;
    background-color: rgba(0, 0, 0, 0.9);
    height: 100vh;
    width: 100vw;
}
#slide-out ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: relative;
    top: 72px;
    width: 100%;
}
#slide-out li {
    display: table;
}
.mobile-current {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    height: 10vh;
    width: 100vw;
    color: #4A835A;
    text-decoration: none;
    font-size: 40px;
}
#slide-out ul a:link:not(.mobile-current) {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    height: 10vh;
    width: 100vw;
    color: white;
    text-decoration: none;
    font-size: 40px;
}
#slide-out ul a:visited:not(.mobile-current) {
    color: white;
}
#slide-out ul a:hover {
    background-color: #333;
}
#close:link {
    position: fixed;
    top: 0;
    right: 15px;
    margin-top: -15px;
    font-size: 72px;
    text-decoration: none;
    color: white;
}
#close:visited {
    color: white;
}
#slide-out:target {
    display: block;
}

/* DESKTOP NAVIGATION */

.clearfix nav {
    background-color: #4A835A;
    width: 178px;
    min-height: 100vh;
    position: fixed;
    top: 72px;
}
.clearfix nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.clearfix .current {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 24.5px 0;
    background-color: white;
    color: black;
    font-weight: bold;
    text-decoration: none;
    box-sizing: border-box;
}
.clearfix nav a:link:not(.current) {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 24.5px 0;
    background-image: linear-gradient(0deg, #3B4A58, #9AACBD);
    color: white;
    text-decoration: none;
    box-sizing: border-box;
}
.clearfix nav a:visited:not(.current) {
    color: white;
}
.clearfix nav a:hover:not(.current) {
    font-weight: bold;
    color: black;
}
.clearfix nav a:active:not(.current) {
    background-image: linear-gradient(0deg, #9AACBD, #3B4A58);
}
@media screen and (max-width: 768px) {
    .clearfix nav {
        display: none;
    }
    #mobile-nav {
        display: block;
    }
}

/* REPORT STATUS */

.red {
    background-color: #e67c73;
    display: inline-block;
    padding: 0 4px;
}
.yellow {
    background-color: #ffd666;
    display: inline-block;
    padding: 0 4px;
}
.green {
    background-color: #57bb8a;
    display: inline-block;
    padding: 0 4px;
}
.report-status {
    width: 100%;
    min-height: 50vh;
    border: 3px solid black;
}
.sheets h2 {
    text-align: center;
}
.sheets img {
    display: block;
    margin: 20px auto;
    max-width: 33vw;
    height: auto;
}
.sheets a:last-child {
    display: block;
    width: 33vw;
    border-radius: 25px;
    background-color: #4A835A;
    color: white;
    text-decoration: none;
    font-weight: bold;
    box-sizing: border-box;
    margin: 20px auto 20px auto;
    padding: 20px 10px;
    text-align: center;
    transition: transform .1s;
}
.sheets img:hover, .sheets a:last-child:hover {
    transform: scale(1.05);
}
.sheets img:active, .sheets a:last-child:active {
    transform: none;
}
@media screen and (max-width: 768px) {
    iframe {
        display: none;
    }
    .p-sheets {
        display: none;
    }
}
@media screen and (min-width: 769px) {
    .sheets {
        display: none;
    }
}

/* PUBLISHING PROCESS */

.services-1 th,
.services-2 th {
    box-sizing: border-box;
    width: 33.33vw;
    padding: 15px 30px;
}
.services-1 td,
.services-2 td {
    padding: 15px 30px;
}
.before-ul {
    vertical-align: top;
}
.services-2 {
    display: none;
}
@media screen and (max-width: 1300px) {
    .services-1 {
        display: none;
    }
    .services-2 {
        display: block;
    }
}
.steps {
    margin: 30px 5vw 15px;
}
.steps div {
    border: 1px solid black;
    position: relative;
    margin: 30px;
    padding: 10px;
}
.steps h2 {
    margin: 0;
    position: absolute;
    top: -25px;
    left: 15px;
    background: white;
    padding: 0 5px;
    font-size: 32px;
}
.steps h3 {
    margin: 25px 0 20px 15px;
    font-size: 24px;
}
@media screen and (max-width: 768px) {
    .steps {
        margin: 30px 3vw 15px;
    }
}

/* CREATIVE BRIEF*/

.creative-brief {
    height: 3700px;
    padding: 0;
    margin-top: 38px;
    border: none;
}
.lightbulb {
    display: none;
}
.lightbulb img {
    display: block;
    border-radius: 25px;
    max-width: 33vw;
    height: auto;
    transition: transform .1s;
}
.lightbulb a:nth-last-child(1) {
    display: block;
    width: 33vw;
    border-radius: 25px;
    background-color: #4A835A;
    color: white;
    text-decoration: none;
    font-weight: bold;
    box-sizing: border-box;
    margin-top: 20px;
    padding: 20px 10px;
    text-align: center;
    transition: transform .1s;
}
.lightbulb a:hover {
    transform: scale(1.05);
}
.lightbulb a:active {
    transform: none;
}
@media screen and (max-width: 839px) {
    .creative-brief {
        display: none;
    }
    .cb-signin {
        display: none;
    }
    .lightbulb {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* RECENTLY PUBLISHED */
/* REPORT NAV SUBMENU*/

#report-nav {
    position: fixed;
    top: 0;
    left: 178px;
    z-index: 1;
    width: 72px;
    height: 72px;
    background-image: linear-gradient(0deg, #3B4A58, #9AACBD);
    text-align: center;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    color: white;
}
#report-nav:hover {
    font-weight: bold;
    color: black;
    cursor: pointer;
}
#report-submenu {
    display: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0;
    left: 250px;
    text-align: left;
    width: 270px;
}
@media screen and (max-width: 768px) {
    #report-nav {
        display: none;
    }
}
#report-submenu a {
    font-weight: normal;
    text-decoration: none;
    display: block;
    padding: 10px;
    background-image: linear-gradient(0deg, #3B4A58, #9AACBD);
    color: white;
}
#report-nav:hover>#report-submenu {
    display: initial;
}
#report-submenu a:hover {
    font-weight: bold;
    color: black;
}
#report-submenu a:active {
    color: black;
    background-image: linear-gradient(0deg, #9AACBD, #3B4A58);
}

/* RECENTLY PUBLISHED */
/* CONTENT */

.product h2 {
    margin: 50px 0;
}
.pub {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.pub a {
    display: inline-block;
}
.pub img:hover {
    outline: 5px solid #4A835A;
}
.pub div {
    margin-left: 10px;
}
.pub h3 {
    margin-top: 0;
}
.pub p {
    margin-bottom: 0;
}
@media screen and (max-width: 768px) {
    .pub {
        display: inherit;
    }
    .pub div {
        display: inline;
    }
}
address {
    margin: 50px 0;
}

/* SURVEY */

.survey {
    border: none;
}
.clipboard {
    display: none;
}
.clipboard img {
    max-width: 33vw;
    height: auto;
    transition: transform .1s;
}
.clipboard a:nth-last-child(1) {
    display: block;
    width: 33vw;
    border-radius: 25px;
    background-color: #4A835A;
    color: white;
    text-decoration: none;
    font-weight: bold;
    box-sizing: border-box;
    margin-top: 20px;
    padding: 20px 10px;
    text-align: center;
    transition: transform .1s;
}
.clipboard a:hover {
    transform: scale(1.05);
}
.clipboard a:active {
    transform: none;
}
@media screen and (max-width: 839px) {
    .survey {
        display: none;
    }
    .survey-signin {
        display: none;
    }
    .clipboard {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* CONTACT */

.staff {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 1em;
    grid-row-gap: 3em;
    margin-top: 3em;
}
.staff img {
    justify-self: end;
    border: 2px solid black;
    border-radius: 25px;
    box-shadow: 5px 5px 10px rgba(20, 40, 0, .5);
    max-width: 15vw;
    height: auto;
}
.contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.name-title h2,
.name-title h3 {
    margin: 0;
}
.phone-email p {
    margin: 0;
}
.contact a:not(.links) {
    display: block;
    padding: 5px;
    background-color: #4A835A;
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    width: 100px;
    transition: transform .1s;
}
.contact a:hover:not(.links) {
    border-radius: 25px;
    box-shadow: 0px 0px 3px 2px rgba(20, 40, 0, .5);
}
.contact a:active:not(.links) {
    transform: scale(0.9);
}
.links {
    color: #4A835A;
    font-weight: bold;
    text-decoration: none;
}
.links:hover {
    text-decoration: underline;
}
.links:active {
    background-color: #4A835A;
    color: white;
    text-decoration: none;
}
@media screen and (max-width: 941px) and (min-width: 600px) {
    .staff {
        grid-template-columns: repeat(2, 1fr);
    }
    .staff img {
        max-width: 23vw;
        height: auto;
    }
}
@media screen and (max-width: 599px) {
    .staff {
        grid-template-columns: 1fr;
        grid-row-gap: 1em;
        margin-top: 0;
    }
    .staff img {
        max-width: 33.3vw;
        height: auto;
        justify-self: center;
        margin-top: 3em;
    }
    .contact {
        text-align: center;
    }
    .contact a {
        margin: auto;
    }
}

/* REFERENCES */

.ref-wrap a {
    word-wrap: break-word;
    color: #4A835A;
    font-weight: bold;
    text-decoration: none;
}
.ref-wrap a:hover {
    text-decoration: underline;
}
.ref-wrap a:active {
    color: white;
    background-color: #4A835A;
    text-decoration: none;
}
.ref-rule {
    margin: 45px 0;
}

/* FOOTER */

footer {
    text-align: center;
    background-color: #4A835A;
}
footer p {
    margin-bottom: 0;
}
#validation a {
    display: inline-block;
    box-sizing: border-box;
    margin: 0 5px;
    padding: 3px 7px;
    background-color: white;
    color: black;
    text-decoration: none;
}
#validation a:hover {
    background-color: black;
    color: white;
}
#top {
    display: inline-block;
    background-image: linear-gradient(0deg, #3B4A58, #9AACBD);
    color: white;
    padding: 10px 10px;
    box-sizing: border-box;
    text-decoration: none;
}
#top:hover {
    color: black;
}
#top:active {
    background-image: linear-gradient(0deg, #9AACBD, #3B4A58);
    color: black;
}
#copyright {
    font-size: x-small;
    color: white;
}
#webmaster {
    text-align: center;
    color: white;
}
#webmaster:hover {
    color: white;
    font-weight: bold;
}

/* 

VALIDATION 

https://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Fnova.umuc.edu%2F~ct385c02%2Fwarren-final-website%2Fcss%2Fstylesheet.css&profile=css3svg&usermedium=all&warning=1&vextwarning=&lang=en

*/
