@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-color: #eeeeee;
    font-family: 'Oswald', sans-serif;
	font-weight: 300;
}



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: 4px;
}

p {
	color: #666666;
}

strong {
    font-weight: 500;
    color: #666666;
}


/*------------------------------------------WRAPPER--*/
#wrapper {
/*border: #1428AB 2px solid;*/
	max-width: 1366px;
/*	height: auto;*/
/*	height: 100vh;*/
	height: 100%;
	min-height: 100vh;
	background: #EEEEEE;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-template-rows: 50px 93px auto auto;
	grid-template-areas:
		"header header header header"
		"banner banner banner banner"
		"cont cont cont cont"
		"footer footer footer footer";
	gap: 10px;
	box-shadow: 0px 2px 25px 0px rgba(0,0,0,0.2);
	

}


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


.logo {
/*	border: #AB1417 2px solid;*/
	padding-left: 10px;

}

.navbar {
    float: right;
	overflow: hidden;
    font-family: 'Oswald', sans-serif;
	font-size: 16px;
    font-weight: 100;
	text-transform: uppercase;
/*border: solid 2px rgba(184,79,168,1.00);*/

}

.navbar a {
	float: left;
	color: #ababab;
	text-align: center;
	padding: 18px 16px;
	text-decoration: none;
}

.dropdown {
	float: left;
	overflow: hidden;
}

.dropdown .dropbtn {
	cursor: pointer;
	font-size: 16px;
	border: none;
	outline: none;
	color: #ababab;
	padding: 14px 16px;
	background-color: inherit;
    font-family: 'Oswald', sans-serif;
    font-weight: 100;
	margin: 0;
	text-transform: uppercase;
}

.navbar a:hover, .dropdown:hover .dropbtn, .dropbtn:focus {
	background-color: #EC482A;
	color: #FFFFFF
}

.active {
    background-color: #CBCBCB;
    background-image: none;   
    color: white;
	pointer-events: none;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}



.dropdown-content a:hover {
  background-color: #ddd;
	  color: black;
}


.show {
  display: block;
}



#menu-bar {
	display: none;
}

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






/*------------------------------------------BANNER--*/

#banner {
/*border: solid 2px rgba(184,79,168,1.00);*/
	grid-area: banner;
	display: grid;
	border-bottom: 1px solid #DADADA;
	margin-top: -11px;
	background-image:url("../images/bannerPages.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;

}

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



/*------------------------------------------CONTENT--*/
#content {
	grid-area: cont;
	display: grid;
	justify-content: center;
	padding: 20px 0;
	font-size: 16px;
	line-height: normal;
	letter-spacing: 0.02em;
/*border: solid 2px rgba(184,79,168,1.00);*/
}


.mainportfolio {

/*	background: #CB4E50;*/
/*border: solid 1px red;*/
	max-width: 1200px;

}

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

	
}

.mainportfolio li{
	display: inline;
	padding: 2px;
	line-height: 0;
}

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

}

.mainportfolio img{
	max-width: 100%;
  	height: auto;
	opacity:1.0;
	filter:alpha(opacity=100); /* For IE8 and earlier */
	background:#b5b5b5;
/*border: solid 1px blue;*/
}

.mainportfolio img:hover{
	opacity:.7;
 	filter:alpha(opacity=70); /* For IE8 and earlier */
}
	
/*------------------------------------------ABOUT CONTENT--*/
#content .aboutimage{
/*	border: solid 2px rgba(118,184,79,1.00);*/
	grid-column: 1 / 1;
	padding: 0 0 0 40px;

}
	

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

}


#contact {
	grid-area: cont;
	display: grid;
/*	justify-content: center;*/
	padding: 20px 0;
	font-size: 16px;
	line-height: normal;
	letter-spacing: 0.02em;
	padding-left: 40px;
/*border: solid 2px rgba(184,79,168,1.00);*/
}

#contact .content{
/*	border: solid 2px rgba(231,41,164,1.00);*/
grid-column: 1 / 1;



}

/*------------------------------------------FOOTER--*/
footer {
/*	border: solid 2px rgba(118,184,79,1.00);*/
	grid-area: footer;
	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;
	background-repeat: no-repeat;
	align-items: center;
	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 screen and (max-width: 992px) {
	#wrapper {
/*border: #1428AB 2px solid;*/
	max-width: 1366px;
	height: auto;
	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;


	}


	#content {
/*border: solid 2px rgba(184,79,168,1.00);*/
	height: auto;
	padding: 20px 10px;
	}

}


@media screen and (max-width: 650px) {
/*
	header {
		padding: 20px 10px;
		border: solid 2px rgba(184,79,168,1.00);
	}
*/

	header label {
		display: initial;
	}
	.logo {
	/*	border: #AB1417 2px solid;*/
		padding: 0;

	}
	.navbar {
		position: absolute;
		top: 45px; 
		left: 0; 
		right: 0;
		background: rgba(238,238,238,0.9);
		height: 100vh;
		backdrop-filter: blur(10px);
		display: none;
		z-index: 2;
		font-size: 20px;
	}

	.navbar a {
		width: 100%;
		border-top: 1px solid #DADADA;
		text-align: center;

/*border: solid 2px rgba(184,79,168,1.00);*/
		}
	
	.dropdown {
		text-align: center;
		width: 100%;
		border-top: 1px solid #DADADA;

/*border: solid 2px rgba(184,79,168,1.00);*/
		}
	
	.dropdown-content{
		position:relative;
	}
	
	.dropdown .dropbtn {
		width: 100%;
		font-size: 20px;
	}
	

	
	#menu-bar:checked ~ .navbar {
		display: initial;
	}

	#banner h1{
		font-size: 50px;
		margin-left: 10px;
	}


/*
	#content {
		height: auto;
		padding: 20px 10px;
	}
*/
	.aboutimage {
		display: none;
	}
	
	#content .aboutcontent{
	padding: 0;
	}

	#contact {
	padding: 10px;
	}
	
	#footerNav a {

	margin: 10px;
	}

	
}



