/*
Theme Name: jcportfolionu
Theme URI: 
Author: Jeffrey M. Caplin
Author URI: jeffcdesign.com
Description: A simple, straitghtforward portfolio theme that is user-focused
Version: 1.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: 
Tags: grid css

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/


/* Reset */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 16px;
	font: inherit;
	vertical-align: baseline;
}

body {
	line-height: 1.5;
}

ol, ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}


/* Flexbox Structure */

#outer-wrapper {
    background-color: #F9FAFA;
}

/* Header */

#header-wrapper {
    background-color: #ffffff;
    border-bottom: 1px solid #edf0f0;
}

header {
    display: flex;
    align-items: center;
    max-width: 1440px;
    height: 128px;
    margin: 0 auto;
}

.header-item:first-child {
    padding-left: 15px;
    flex: 4;
}

.header-item:last-child {
    flex: 2;
}

/* Header Items */

#logo {
    display: flex;
    align-items: center;
}


.header-item ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 200px;
    height: 35px;
    padding-left: 15px;
    border-left: 1px solid #877B77;
}

.header-item ul li {
    flex-basis: 35%;
    font-family: franklin-gothic-urw-comp, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: .875em;
    text-transform: uppercase;
}

/* Portfolio Body */

#body-wrapper {
    max-width: 1440px;
    padding: 50px 15px 25px;
    margin: 0 auto;
    background-image: -webkit-linear-gradient(#F1F2F2, #F9FAFA 8%);
    background-image: -o-linear-gradient(#F1F2F2, #F9FAFA 8%);
    background-image: linear-gradient(#F1F2F2, #F9FAFA 8%);
}

#content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: 250px;
    grid-gap: 20px 30px;
}

.page-wrapper {
    max-width: 1440px;
    background-image: -webkit-linear-gradient(#F1F2F2, #F9FAFA 8%);
    background-image: -o-linear-gradient(#F1F2F2, #F9FAFA 8%);
    background-image: linear-gradient(#F1F2F2, #F9FAFA 8%);}

.featured-item {
    background: gray;
    border: 1px solid #edf0f0;
    overflow: hidden;
    position: relative;
}

.one-col {
    max-width: 64.5%;
    padding-top: 50px;
    margin: 0 auto 30px;    
}

.two-col {
    display: grid;
    grid-template-columns: 2fr 1fr;
}

.two-col p {
    margin-bottom: 20px;
}

/* .featured-item img {
    margin: -50%;
}
*/

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #061A40;
    opacity: 0;
    transition: .5s ease;
}

.featured-item:hover .overlay, .featured-item:active .overlay {
  opacity: .8;
}

.info {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    padding: 0 10px;
    opacity: 0;
}

.featured-item:hover .info, .featured-item:active .info {
    height: 60%;
    opacity: 1;
    transition: .7s ease;
}

.page-item {
    line-height: 0px;
    max-width: 64.5%;
    margin: 0 auto 35px;
}
.page-item img {
    width: 100%;
    border: 1px solid #edf0f0;
}

.scroll-fade {
  opacity: 0;
}

footer {
    height: 60px;
    padding: 10px 0px 20px;
    border-top: 1px solid #979797;
}

footer div {
    max-width: 1440px;
    margin: 0 auto;
}

footer p {
    max-width: 1440px;
    font-family: 'PT Serif', serif;
    font-weight: 400;
    font-size: .875em;
    color: #877B77;
    margin: 0px 15px 5px;
}

footer span {
    font-weight: 700;
    color: #A2DCED;
}

/* Typeography */

#logo h1 {
    font-family: franklin-gothic-urw-comp, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: .875em;
    text-transform: uppercase;
    color: #877B77;
    margin-left: 30px;
    
}

#logo h1 span {
    font-family: clarendon-urw, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1.5em;
    text-transform: none;
}

.header-item a {
    text-decoration: none;
    color: #877B77;
}

.header-item a:hover, .header-item a:active {
    color: #A2DCED;
}

.one-col p, .two-col p {
    font-family: 'PT Serif', serif;
    font-size: 1em;
    color: #4C4E4D;
}

.one-col p {
    margin-bottom: 1em;
}

.one-col h2 {
    font-family: franklin-gothic-urw-comp, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 1.125em;
    color: #061A40;
    margin-bottom: 5px;
}

.one-col strong {
    font-family: franklin-gothic-urw-comp, sans-serif;
    font-style: normal;
    font-weight: 700;
    color: #A2DCED;
}

.one-col em {
    font-style: italic;
    font-weight: 700;
}

.the-title {
    font-family: franklin-gothic-urw-comp, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 1.125em;
    color: #A2DCED;
    margin-bottom: 5px;
}

.post-meta-key {
	display: none !important;
}

.post-meta {
    font-family: 'PT Serif', serif;
    font-size: .875em;
    color: #ffffff !important;
}

.overlay a {
    position: relative !important;
	text-decoration: none !important;
    color: #ffffff;
}

.tag span {
    font-weight: 400;
    color: #ffffff;
}

.page-item p {
    font-family: 'PT Serif', serif;
    font-size: .875em;
    font-style: italic;
    line-height: 1.5;
    color: #4C4E4D;
    margin: 1.5em 0 1em;
}

/*--------------------*/
/* Local Nav */
/*--------------------*/

#local-nav-wrap {
    position: relative;
}

.local-nav {
    height: 100%;
    width: fit-content;
    margin: 0 auto 35px;
}

/*.local-nav div {
   height: 100%;
}

*/
/*a.local-nav */

.local-nav a {
    font-family: franklin-gothic-urw-comp, sans-serif;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1em;
    line-height: 1.5;
    color: #877B77;
}

.local-nav a:hover, .local-nav a:active {
    color: #A2DCED;
    transition: .3s ease-in;
}

.local-nav a::after {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    font-size: 1.5em;
    vertical-align: middle;
    content: "\f054";
    margin-left: 10px;
}

/*.local-nav a {
    text-decoration: none;
    display: inline-block;
    margin-left: 15px;
	width: 50px;
	height: 50px;
	background-color: #877B77;
    border: 1px solid #877B77;
	border-radius: 50%;
}

.local-nav a:hover, .local-nav a:active {
    background-color: #A2DCED;
    border-color: #A2DCED;
    transition: .3s ease-in;
}

.local-nav a::before {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    font-size: 2em;
    line-height: 1.7em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f054";
    color: #ffffff;
    margin: 0 .475em 0;
}

.local-nav a:hover::before {
    color: #877B77;
    transition: .5s ease-in;
}
*/

/* Media Query */

@media (max-width: 600px) {
    
    #body-wrapper, #content-wrapper, .two-col {
        display: block;
        margin: 0px;
    }
    
    .featured-item, .page-item, .one-col, .two-col {
        max-width: 100%;
    }
    
    .featured-item {
        height: 250px;
        margin-bottom: 20px;
    }
}