* {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: calc(.75rem + .45vw);
	font-weight: 500;
	line-height: 1.5;
}

.img {
	width: 100%;
	height: auto;
}
 /* for Webmentors logo*/
.img-responsive {
	max-width: 100%;
	height: auto;	
}

body {
	background-color: #0C1439;
	display: grid;
	height: 100%;
	/* border: 1px solid orange; */
}

#wrapper {
	background-color: white;
	height: auto;	
	margin: 5% 10%;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-areas: 
      "header"
	  "nav"
      "main"
      "footer";
	/* border: 1px solid magenta; */
}

header {
	grid-area: header;
    height: auto;
	padding: 3% 3% 0 3%;
	display: grid;	
	grid-template-areas:
		"logo address";
	/*border: 1px solid cyan;*/
}

main {
	grid-area: main;
	width: 100%;
	height: 100%;
	margin: 2% 0;
	/* border: 2px solid yellow; */
}

footer {
	grid-area: footer;
	width: 100%;
	/*justify-content: center;*/
	background-color:#303A69;
	color: white;
	/*border: 1px solid yellow;*/
}

.center {
	margin: auto;
}

.font-small {
	font-size: calc(.5rem + .45vw);
}

.font-med {
	font-size: calc(.65rem + .45vw);
}

.grey-separator {
	grid-area: grey-bar;
	background-color: #6A6E84;
	width: 100%;
	height: 30px; 
	display: table;
}

.grey-separator h1 {
	font-size: calc(1.5rem + .45vw);
	color: white;
	display: table-cell; 
	vertical-align: middle;
}

.dark-blue-separator {
	grid-area: dark-blue-separator;
	background-color: #0C1439;
	width: 100%;
	height: 30px; 
}

.light-blue-separator {
	grid-area: light-blue-separator;
	background-color: #4B5583;
	width: 100%;
	height: 30px; 
}

.padding-top-3 {
	padding-top: 3%;
}

.padding-bottom-3 {
	padding-bottom: 3%;
}

.padding-left-3 {
	padding-left: 3%;
}

.padding-right-3 {
	padding-right: 3%;
}

.pull-quote-left {
	width:45%; /*150px;*/
	margin:1% 3% 1% 0 !important; /*0 15px 3px 0;*/
	padding:5px 0 5px 0;
	border-top:2px double #999;
	border-bottom:2px double #999;
	font-size:calc(1.25rem + .45vw) !important; /*14px;*/
	/*font-style:italic;*/
	line-height:1.25; /*17px;*/
	text-align:center;
	float:left;
} 

.pull-quote-right {
	width:45%; /*150px;*/
	margin:1% 0 1% 3% !important;/*0 0 3px 15px;*/
	padding:5px 0 5px 0;
	border-top:2px double #999;
	border-bottom:2px double #999;
	font-size:calc(1.25rem + .45vw) !important; /*14px;*/
	/*font-style:italic;*/
	line-height:1.25; /*17px;*/
	text-align:center;
	float:right;
}

#logo {
	grid-area: logo;
	width: 100%;
	/*height: auto;*/
	align-items: center;
	background-image: url("Images/PNW Drywall Logo v3.png");
  	background-repeat: no-repeat;
	background-size: contain;
	/*border: 1px solid yellow;*/
}

#address {
	grid-area: address;
	text-align: right;
}

.services {
	/*list-style: none;*/
	column-count: 2;
}

/* NAV STYLES */
nav {
	grid-area: nav;
	position: fixed;
    margin: 0 auto;
	position: -webkit-sticky;
	position: sticky;
	top: 0;
    /*max-width: 1720px;*/
	display: flex;
	width: auto;
	padding: 0;
    margin: 0; 
	background-color: rgba(255,255,255, 1);
	z-index: 1;
	display: grid;
	grid-template-columns: auto auto;
	/*border: 1px solid red; */
}

.right-menu {
    grid-column: 3;
}

nav ul {
	padding: 0;
	margin: 0 6% 0 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 0%;
	/*border: 1px solid yellow;*/
}
	 
nav li {
	padding: 0;
	display: block;
	/*border: 1px solid red;*/
}
 
nav li a {
	display: block;
	text-align: right;
	text-decoration: none;
	padding:3%;
	/*border: 1px solid green;*/
}
	
nav li a:link  {
	color: #56361E;
	/*border: 2px solid #CD6FFF;*/
}	

nav li a:visited {
	text-decoration: none;  
	color: #56361E;	
}

nav li a:hover, nav li a:focus {
	color: #4B5583;
	/*border: 2px solid #9765E8;*/
}
/* end NAV STYLES */

/* HOME PAGE HERO SLIDER STYLES */
.slideshow-container {
    max-width: 94%;
    position: relative;
    margin: auto;
    display: block;
	/* border: 1px solid red; */
}

div.slideshow-container img {
	width: 100%;
}

/* Hide the images by default */
.mySlides {
	display: none;
}

/* Next & previous buttons */
.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 35%;
	width: auto;
	color: white;
	padding: 16px;
	font-weight: bold;
	font-size: 18px;	
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	background-color: rgba(86, 54, 30, 0.5);
	user-select: none;
	/*border: 3px solid black;*/
}

/* Position the "next button" to the right */
.next {
	right: 0;
	border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
	background-color: rgba(86, 54, 30, 0.8);
}

/* Caption text */
.slideshow-caption {
	position: absolute;
	top: 0;
	bottom: auto;
	color: white;
	background-color: rgba(106, 110, 132, 0.5);
	width: 50%;
	font-size: calc(1rem + .75vw);
	padding: 3%;	
}

a:link.link-hero-image 	{	
	text-decoration: none;
}

a:visited.link-hero-image{	
	text-decoration: none;
}

a:hover.link-hero-image {	
	text-decoration: none;
}

a:active.link-hero-image {	
	text-decoration: none;
}
  
/* The dots/bullets/indicators */
.dot {
	cursor: pointer;
	height: 15px;
	width: 15px;
	margin: 0 2px;
	background-color: #B8B9C2;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
}
  
.active, .dot:hover {
	background-color: #6A6E84;
}

/* Fading animation */
.fade {
	-webkit-animation-name: fade;
	-webkit-animation-duration: 1.5s;
	animation-name: fade;
	animation-duration: 1.5s;
}

@-webkit-keyframes fade {
	from {opacity: .4}
	to {opacity: 1}
}

@keyframes fade {
	from {opacity: .4}
	to {opacity: 1}
}
/* end HOME PAGE HERO SLIDER STYLES */  

/* begin PORTFOLIO GALLERY STYLES */
#portfolio-gallery {
	grid-area: portfolio-gallery;
	display: grid;
	height: 1400px;
	padding: 3% 3% 0 3%;
	margin: 0;
	grid-template-columns: repeat(1, 1fr);
	grid-template-rows: repeat(6, minmax(0, 1fr));
	/* grid-gap: 2%;		 */
	grid-row-gap: 0;
	grid-template-areas:
		"photo-1"
		"photo-2"
		"photo-3"
		"photo-4"
		"photo-5"
		"photo-6";
	/* border: 1px solid cyan; */
}

#photo-1 {
	grid-area: photo-1;
}

#photo-2 {
	grid-area: photo-2;
}

#photo-3 {
	grid-area: photo-3;
}

#photo-4 {
	grid-area: photo-4;
}

#photo-5 {
	grid-area: photo-5;
}

#photo-6 {
	grid-area: photo-6;
}

div.gallery {
	position: relative;
	max-width: 100%;
	height: 200px;
	margin: 0;
	padding: 2%;
	justify-content: center;
	align-items: center;
	text-align: center;	
	border: 1px solid #ccc;
	/* border: 1px solid red; */
}
  
div.gallery:hover {
	border: 1px solid #777;	
}

div.gallery img {
	width: 100%;
	height: 200px;	
	object-fit: cover;
	padding: 0;
	margin: 0;
	/* border: 1px solid yellow; */
}

img.hover-effect:hover {
	opacity: 0.75;
}
  
div.desc {
	display: flex;
	width: 96%;
	height: 30%;
	position:absolute;
	left:0;
	bottom:0;
	margin: 2%;
	background-color: rgba(106, 110, 132, 0.5); /* match color to Home page hero caption */
	font-size: calc(1.25rem + .25vw); 
	color: white;
	justify-content: center;
  	align-items: center;	
	/*border: 1px solid red;*/
}
/* end PORTFOLIO GALLERY STYLES */

/* begin PROJECT GALLERY STYLES*/
#project-container {
	width: 96%;
	height: auto;
	display: grid;
	padding: 1% 2% 2% 2%;
	margin: 0 0 2% 0;
	grid-template-columns: 4fr 1fr;
	grid-template-rows: auto;
	grid-gap: 2%;		
	grid-template-areas:
		"large-project-image project-image-gallery"
	;
}

#large-project-image {
	grid-area: large-project-image;
	margin: 0;
	padding: 0;
	max-width: 100%;
	height: 350px;
	/* background-color: black; */
} 

#project-image-gallery{
	grid-area: project-image-gallery;
	height: auto;
	display: inline;
}

#project-instruction {
	color: black;
	text-align: right;
	padding: 1% 2% 0 0;
	margin: 0;
	font-size: calc(.75rem + .25vw);
}



/* The grid: Two equal columns that float next to each other */
.project-row {
	width: 100%;
	/* height: 50px; */
	margin: 0;
	/* border: 1px solid green; */
}

.project-column {
	float: left;
	width: 45%;
	/* height: 150px; */
	padding: 0;
	margin-left: 4%;
	object-fit: cover;	
	/* border: 1px solid red; */
  }
  
  /* Style the images inside the grid */
  .project-column img {
	width: 100%;
	height: 50px;
	opacity: 0.8;
	cursor: pointer;
	object-fit: cover;
  }
  
  .project-column img:hover {
	opacity: 1;
  }
  
  /* Clear floats after the columns */
  .project-row:after {
	content: "";
	display: table;
	clear: both;
  }
  
  /* The expanding image container (positioning is needed to position the close button and the text) */
  .project-container {
	position: relative;
	/* display: none;   */
	height: 350px;
	background-color: black;
  }

  .project-container img {
	  max-width: 100%;
	  height: 350px;
	  margin: 0;
	  padding: 0;
	  object-fit: contain;
  }
  
  /* Expanding image text */
  #imgtext {
	position: absolute;
	bottom: 15px;
	left: 15px;
	color: white;
	font-size: 20px;
  }
  
  /* Closable button inside the image */
  .closebtn {
	position: absolute;
	top: 10px;
	right: 15px;
	color: white;
	font-size: 35px;
	cursor: pointer;
  } 
/* end PROJECT GALLERY STYLES*/

#footer-menu {
	display: grid;
    justify-content: center;
	text-align: center;
	color:white;
	/*border: 1px solid red;*/
}

#footer-address {
	display: grid;
	text-align: center;
	padding: 3%;
	color:white;
}

/* for FOOTER - ALTERNATE LINK COLORS & GRID SPACING*/
.footer-links {
	width: 100%;
	/*border: 1px solid cyan;*/
}

footer ul {
	width: auto;
	list-style-type: none;
	padding: 0;
	margin: 0;	
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 0%;
	/*border: 1px solid yellow;*/
}

footer li {
	display: block;
	text-align: center;	
	/*padding:3%;*/
	/*border: 1px solid orange;*/
}

footer li a {
	display: block;
	text-align: center;	
	/*padding:3%;*/
	/*border: 1px solid green;*/
}

a:link.link-alt-color{
	color:#fff;
	text-decoration: none;
}

a:visited.link-alt-color{
	color:#9ea3be;
	text-decoration: none;
}

a:hover.link-alt-color {
	color:#B8B9C2;
	text-decoration: none;
}

a:active.link-alt-color {
	color:#B8B9C2;
	text-decoration: none;
}

#webmentors {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-areas:
		"created created webmentors-logo platform platform";
	/*border: 1px solid cyan;*/
}

#created {
	grid-area: created;
	text-align: right;
	padding-right: 3%;
	/*border: 1px solid pink;*/
}

#webmentors-logo {
	grid-area: webmentors-logo;
	/*border: 1px solid pink;*/
}

#platform {
	grid-area: platform;
	text-align: left;
	padding-left: 3%;
	/*border: 1px solid pink;*/
}
/* end FOOTER STYLES*/

/* MEDIA QUERIES */

 /* Extra small devices (phones, 600px and down) */
 @media only screen and (max-width: 600px) {

 }

 /* Small devices (portrait tablets and large phones, 600px and up) */
 @media only screen and (min-width: 600px) {
	.pull-quote-left {
		width:35%;
	}

	.pull-quote-right {
		width:35%;
	}
	
	#hero-photo {
		margin-bottom: 5%;
	}

 }
 
 /* Medium devices (landscape tablets, 768px and up) */
 @media only screen and (min-width: 768px) {
	h1 {
		height: 50px;
	}
	.grey-separator {
		height: 50px; 
	}

	.dark-blue-separator {
		height: 50px; 
	}
	
	.light-blue-separator {
		height: 50px; 
	}

	.pull-quote-left {
		width:30%;
	}

	.pull-quote-right {
		width:30%;
	}

	#portfolio-gallery {
		grid-area: portfolio-gallery;
		display: grid;
		height: auto;
		padding: 3%;
		margin-bottom: 3%;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(3, minmax(0, 1fr));
		grid-gap: 3%;
		/* grid-row-gap: 3%;		 */
		grid-template-areas:
			"photo-1 photo-2"
			"photo-3 photo-4"
			"photo-5 photo-6";
		/* border: 1px solid cyan; */
	}

	#large-project-image {
		grid-area: large-project-image;
		margin: 0;
		padding: 0;
		max-width: 100%;
		height: 500px;
		/* background-color: black; */
	} 
	
	.project-column img {
		width: 100%;
		height: 75px;
		opacity: 0.8;
		cursor: pointer;
		object-fit: cover;
	}

	.project-container {
		position: relative;
		display: none;  
		height: 500px;
		background-color: black;
	}
	
	  .project-container img {
		  max-width: 100%;
		  height: 500px;
		  margin:0;
		  padding: 0;
		  object-fit: contain;
	}

 }
 
 /* Large devices (laptops/desktops, 992px and up) */
 @media only screen and (min-width: 992px) {
	nav {		
		grid-template-columns: auto auto auto;
	}

	.pull-quote-left {
		width:25%;
	}

	.pull-quote-right {
		width:25%;
	}
	
	#hero-photo {
		margin-bottom: 3%;
	}

	.slideshow-caption {
		font-size: calc(.75rem + .75vw);
		padding: 2%;	
	}

	#portfolio-gallery {
		grid-area: portfolio-gallery;
		display: grid;
		height: auto;
		padding: 3%;
		margin-bottom: 0;
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: repeat(2, minmax(0, 1fr));
		grid-row-gap: 3%;		
		grid-template-areas:
			"photo-1 photo-2 photo-3"
			"photo-4 photo-5 photo-6";
		/* border: 1px solid cyan; */
	}

 }
 
 /* Extra large devices (large laptops and desktops, 1200px and up) */
 @media only screen and (min-width: 1200px) {
	.grey-separator {
		height: 75px; 
	}

	.dark-blue-separator {
		height: 75px; 
	}
	
	.light-blue-separator {
		height: 75px; 
	}

	#created {
		padding-right: 1%;
		/*border: 1px solid pink;*/
	}
	
	#webmentors-logo {
		grid-area: webmentors-logo;
		/*border: 1px solid pink;*/
	}
	
	#platform {
		padding-left: 1%;
		/*border: 1px solid pink;*/
	}
 } 