@charset "UTF-8";

/*------------------------------------------ZERO OUT--*/
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: 100%;
	font-weight: normal;
	font: inherit;
	vertical-align: baseline;
	box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}



/*------------------------------------------GLOBAL--*/
body {
	background: rgba(133,133,133,1.00);
    font-family: 'Oswald', sans-serif;
	font-weight: 200;
	color: #666666;
		line-height: normal;
}



h1{
    color: #666666;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    text-transform:uppercase;
}

h2{
    color: #666666;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    text-transform:uppercase;
    font-size: 20px;
	padding-bottom: 10px;
}

p {
	color: #666666;
}

strong {
	    font-weight: 400;
}

/*------------------------------------------CONTAINER--*/
#container {
/*	border: #AB1417 2px solid;*/
	max-width: 1366px;
	background: #EEEEEE;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;

/*	grid-auto-rows: 50px 93px minmax(100px, auto) 225px;*/
/*	grid-auto-rows: 50px 93px auto-fit 225px;*/
	grid-auto-rows: 50px 93px auto 225px;
	grid-template-areas:
		"header header header header"
		"banner banner banner banner" 
		"cont cont cont cont"
		"footer footer footer footer";
	gap: 10px;

}


/*------------------------------------------HEADER--*/
header {
/*	border: #AB1417 2px solid;*/
	grid-area: header;
	display: grid;
	postiton: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: #EEEEEE;
	padding: 0 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 1000;

}

header .navbar ul{
	list-style: none;
}

header .navbar ul li {
	position: relative;
	float: left;
	border-right: 1px solid #DADADA;
}

header .navbar ul li a {
	font-size: 16px;
	padding: 20px;
	text-decoration: none;
	display: block;
	text-transform: uppercase;
	font-weight: 200;
	color: #ABABAB;
/*	background: #686868; */
/*	border: #AB1417 1px solid;*/
}

header .navbar ul li a:hover {
	background: #EC482A;
	color: #FFFFFF;
}

header .navbar ul li ul {
	position: absolute;
	left: 0;
	width: 188px;
	background: #FFFFFF;
	display: none;
}


header .navbar ul li ul li {
	width: 100%;
	border-top: 1px solid #575757;
}

header .navbar ul li ul li a {
	padding: 10px;
	color: #575757;
	font-weight: 300;
}

header .navbar ul li:focus-within > ul,
header .navbar ul li:hover > ul {
	display: initial;
}
.active {
    background-color: #666666;
    background-image: none;   
    color: white;
/*	pointer-events: none;*/
}




#menu-bar {
	display: none;
}

header label {
	font-size: 16px;  
	cursor: pointer;
	display: none;
}

/*------------------------------------------BANNER--*/
#banner {
/*	border: solid 2px rgba(184,79,168,1.00);*/
	grid-area: banner;
	display: grid;
	border-top: 1px solid #DADADA;
	margin-top: -8px;
	background: url("../images/bannerPages.jpg");
	background-position: 36% center;
	background-repeat: no-repeat;
}

#banner h1{
	display: flex;
	align-items: center;
	font-size: 60px;
	font-weight: 300;
	margin-left: 48px;
}

/*------------------------------------------CONTENT--*/
#content {
/*
	border: solid 1px red;
	background: #CB4E50;
*/
	display: grid;
	grid-area: cont;
	grid-column: 1 / -1;
	grid-template-columns: subgrid;
/*	color: #777;*/
	line-height: normal;
	letter-spacing: 0.02em;
	margin-top: 25px;
	margin-bottom: 100px;
}

#contentux {
/*	border: solid 1px red;*/
/*	background: #CB4E50;*/
	
	grid-area: cont;
	display: grid;
	grid-column: 1 / -1;
	justify-content: center;
	margin-top: 25px;
	margin-bottom: 100px;

}

#contentux img {
	display: block;
	object-fit: scale-down;
	max-width: 100%;
	flex: 1;
	min-height: 0;
}

/*------------------------------------------PORTFOLIO--*/
.mainportfolio {
/*
	background: #CB4E50;
	border: solid 1px red;
*/

	display: grid;
	grid-area: cont;
	grid-column: 1 / -1;
	margin: 0 auto;
	margin-top: 25px;
	margin-bottom: 100px;


}

.mainportfolio ul{
/*	background: #CB4E50;*/
	list-style-type: none;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	
}

.mainportfolio li{
    display: inline;
	padding: 2px;
}

.mainportfolio .act img{
    opacity:1.0;
    filter:alpha(opacity=100); /* For IE8 and earlier */

}

.mainportfolio img{
    opacity:0.2;
    filter:alpha(opacity=20); /* For IE8 and earlier */
    background:#b5b5b5;
/*border: solid 1px blue;*/
}

.mainportfolio img:hover{
    opacity:1.0;
    filter:alpha(opacity=100); /* For IE8 and earlier */
}


/*------------------------------------------ABOUT IMG--*/
#content .aboutimage{
/*	border: solid 2px rgba(118,184,79,1.00);*/
	grid-column: 1 / 1;
	padding: 0 0 0 40px;

}

/*------------------------------------------ABOUT CONTENT--*/
#content .aboutcontent{
/*	border: solid 2px rgba(231,41,164,1.00);*/
	grid-column: 2 / span 3;
	padding: 0 40px;

}

#content .contact {
	grid-column: 1 / -1;
	padding: 0 40px;
}



/*------------------------------------------FOOTER--*/
footer {
/*	border: solid 2px rgba(118,184,79,1.00);*/
	grid-area: footer;
	grid-template-rows: subgrid;
	background: #e3e3e3;
}


#footerNav ul {
/*	border: solid 2px rgba(184,79,168,1.00);*/
	justify-content: center;
	display: flex;
	align-items: center;
	height: 80px;
/*	justify-content: space-between;*/
}

#footerNav a {
	padding: 10px 0;
	margin: 20px;
	text-decoration: none;
	font-weight: 300;
	font-size: 20px;
	color: #ABABAB;
	text-transform: uppercase;
}

#footerNav a:hover {
	color: #575757;
	
} 


/*------------------------------------------SOCIAL--*/
#social ul {
/*	border: solid 2px rgba(79,122,184,1.00);*/
	display: flex;
	justify-content: center;
	align-items: center;
	background-repeat: no-repeat;
	height: 60px;
}

#social li {
	margin: 0 10px;
}

#social li, #social a {
    height: 42px;
	width: 42px;
    display: block;
}

#vimeo {left:0px;width:42px;}
#vimeo {background:url('../images/sprites/Icon-Vimeo.png') 0 0;}
#vimeo a:hover{background: url('../images/sprites/Icon-Vimeo.png') 0 -42px;}

#flickr {left:50px;width:42px;}
#flickr {background:url('../images/sprites/Icon-Flickr.png') 0 0;}
#flickr a:hover{background: url('../images/sprites/Icon-Flickr.png') 0 -42px;}

#behance {left:100px;width:42px;}
#behance {background:url('../images/sprites/Icon-Behance.png') 0 0;}
#behance a:hover{background: url('../images/sprites/Icon-Behance.png') 0 -42px;}


/*------------------------------------------COPYRIGHT--*/
#copy {
/*	border: solid 2px rgba(184,79,168,1.00);*/
	text-align: center;
	margin: 20px 0;
	color: #ABABAB;
	font-weight: 300;

}







/*------------------------------------------MEDIA QUERIES--*/

@media(max-width:991px) {
	
	#container {
	max-width: 1366px;

	background: #EEEEEE;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 50px 93px auto 1fr;
	grid-template-areas:
		"header"
		"banner"
		"cont"
		"footer";
	gap: 2px;
	}

/*------------------------------------------HEADER--*/	
	header{
		padding: 20px 20px;
	}

	header label {
		display: initial;
	}

	header .navbar  {
		position: absolute;
		top: 50px; 
		left: 0; 
		right: 0;
		background: #EEEEEE;
		display: none;
	}

	header .navbar ul li {
		width: 100%;
		border-top: 1px solid #DADADA;
	}
	
	header .navbar ul li ul{
		position: relative;
/*		padding-left: 50px;*/
		width: 100%;
	}

	header .navbar ul li ul li {
		background: #FFFFFF;
	}
/*
	shift sub menu left--need to make full bar fill color
	header .navbar ul li ul li a{
	margin-left: 20px;
	}
*/
	
	#menu-bar:checked ~ .navbar {
		display: initial;
	}

/*------------------------------------------ABOUT IMG--*/	
	
	
	
	
	.aboutimage {
		display: none;
	}
	
	
	
	#contentux {
		padding: 0 40px;
	}
	
	#footerNav a {

	margin: 10px;
	}

	
}
