@charset "utf-8";
/* CSS Document */

/* reset */

* { padding: 0; margin: 0; }

/* color codes
    theme 1
	feather #77C9D4
	marine  #57BC90
	forest  #015249 
	sleekgr #A5A5AF
	eggshell #F5F5F5

    theme 2
	blueberry  #6B7A8F
	apricot    #F7882F
	citrus     #F7C331
	applecore  #DCC7AA
	
	old colors: 
	lighter blue #EFF7FF;
	dark blue #C8E4F8;

*/

/* Type */

	body, input, select, textarea {
		color: #585858;
		font-family: "Source Sans Pro", Helvetica, sans-serif;
		background-color:#EFF7FF;
		font-size: 12pt;
		font-weight: 300;
		line-height: 1.5;
	}
	
	h1, h2, h3, h4 {
		color: #6B7A8F;
	}
	
	a {
	  text-decoration:none;
	}
	
img.center {
  display: block;
   margin-left: auto;
   margin-right: auto;
}



	
/* This fixes the menu button to the top left */
#dummy {
	position: fixed;
    top: 0;
	width: 100%;
    }

#stickybox{
	display:grid;
	grid-template-columns: repeat(24, 1fr);
    width: 100%;
	max-width: 1200px;
	margin-right: auto; 
	margin-left: auto;
	opacity: 1;
	z-index: 500;
    }

.workwrap{
	display:flex;
	width: 100%;
	height: 100%;
	min-height:50px;
	align-items:center;
	text-align:center;
    justify-content: center;
    }
	


#menuplace {
	grid-column: 1/2;
	padding: 10px 5px 5px 5px;
	z-index: 401;
	background-color: #EFF7FF;
	opacity:.9;
    }
	
#menutag {
	display: none;
	grid-column: 2/4;
	padding: 5px;
	z-index: 401;
	background-color: #EFF7FF;
	opacity:.9;
    }

	
	.suggest_div {
		display: flex;
		justify-content: center; /* align horizontal */
		align-items: center; /* align vertical */
		grid-column:1fr;
		text-align: center;
		border: solid 1px #015249;
		background: #6B7A8F;
		border-radius: 4px;
		padding-left: 5px;
		padding-right: 5px;
		font-size: 12pt;
		color: white;
		min-height: 40px;
		height: 100%;
	}
	
	.suggest_div:hover {
    	background-color: #EFF7FF;
		color: #6B7A8F;
	}
	

/*mobile first responsive ---this is mobile layout */

.topgrid {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	grid-auto-rows: minmax(10px, auto);
	grid-column-gap:0.5em;
	grid-row-gap:0.5em;
	max-width:1200px;
	justify-items: stretch;
	margin: auto;
    }
	
.topgrid > div {
	padding:1em;
}

.contentexpo  {
	padding:1em;
}


.content {
	display: grid;
	grid-template-columns: 1fr;
	grid-column-gap:0.5em;
	grid-auto-rows: minmax(20px, auto);
	grid-row-gap:0.5em;
	background: #C8E4F8;
    }


.contentcards > div {
	background:#E9E7DA;
	padding:.5em;
	border-radius: 4px;
	border: solid 1px #6B7A8F;
    }

.contentcards > div:nth-child(odd){
	background:#DFDCE3;
    }

.headermenu {
	grid-column: 1/9;
	grid-row: 1;
    }
.headerlogo {
	grid-column: 1/4;
	grid-row: 2;
	}
.headertitle {
	grid-column:4/9;
	grid-row: 2;
	}
	
.aftertitle {
	grid-column:1/9;
	grid-row: 9;
	}
	
	
.intro {
	display: grid;
	grid-template-columns: 1fr;
	grid-column: 1/9;
	grid-row: 3;
	align-items: center;
	}
	
	
#intro1 {
		grid-column:1/9;
		grid-row:2;
		justify-self: center;
	}
	
#intro2 {
		grid-column:1/9;
		padding-left: 1em;
		grid-row:1;
	}
	
#intro3 {
		grid-column:1/9;
		padding-left: 1em;
		grid-row: 3;
	}
	
.ad1 {
	grid-column: 1/9;
	grid-row: 4;
	align-self: center;
	}
	
.spacer {
	display: grid;
	grid-template-columns: 1fr;
	grid-column-gap:0.5em;
	grid-column: 1/9;
	grid-row: 6;
	background: #6B7A8F;
	}

.content {
	grid-column: 1/9;
	grid-row: 6;
	}

.contentbox {
	display: grid;
	align-items: center;
	grid-column: 1fr;
	}

.contentbox2 {
	grid-column: 1fr;
	grid-row: 2;
	}

.contentcards {
	grid-column: 1fr;
	grid-row: 1;
	}	


.ad2 {
	grid-column: 1/9;
	grid-row: 7;
	}
	
.ad2holder {
	margin: 0 auto;
	}
	
.footer {	
	grid-column: 1/9;
	grid-row: 8;
	}



/*tablets */


@media only screen and (min-width: 468px) {
    
#stickybox{
	padding-left: 1em;
    width: 100%;
	max-width: 1200px;
	margin-right: auto; 
	margin-left: auto;
	opacity: 1;
	z-index: 500;
	}
	
#menutag {
	display: block;
	grid-column: 2/4;
	padding: 10px 5px 5px 5px;
	z-index: 401;
	background-color: #EFF7FF;
}

.topgrid {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	grid-auto-rows: minmax(20px, auto);
	grid-column-gap:0.5em;
	grid-row-gap:0.5em;
	max-width:1200px;
	justify-items: stretch;
	margin: auto;
	
}

.topgrid > div {
	padding:.5em;
}


.content {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-column-gap:0.5em;
	grid-auto-rows: minmax(20px, auto);
	grid-row-gap:0.5em;
}



.headermenu {
	grid-column: 1/3;
	grid-row: 1;
    }
.headerlogo {
	grid-column: 3/5;
	grid-row: 1;
	}
.headertitle {
	grid-column:5/9;
	grid-row: 1;
	}
	
.aftertitle {
	grid-column:1/9;
	grid-row: 7;
	}
	
.intro {
	grid-template-columns: repeat(4, 1fr);
	grid-column: 1/9;
	grid-row: 2;
	}
	
#intro1 {
		grid-column:1/3;
		grid-row: 3;
	}
	
#intro2 {
		grid-column:1/5;
		padding-left: 1em;
		grid-row: 1;
	}
	
#intro3 {
		grid-column:1/3;
		padding-left: 1em;
		grid-row: 2;
	}
	
.ad1 {
	grid-column: 3/5;
	grid-row: 2/4;
	}
	
.spacer {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-column-gap:0.5em;
	grid-column: 1/9;
	grid-row: 4;
	background: #6B7A8F;
	}
.content {
	grid-column: 4/9;
	grid-row: 5;
	}

.contentbox2 {
	grid-column: 1fr;
	grid-row: 1;
	}

.contentcards {
	grid-column: 1fr;
	grid-row: 1;
	}	
	
.ad2 {
	grid-column: 1/4;
	grid-row: 5;
	}
.footer {	
	grid-column: 1/9;
	grid-row: 6;
	}

}

/* laptops and small desktops */


@media only screen and (min-width: 1000px) {
    #stickybox{
	padding-left: 1.5em;
    width: 100%;
	max-width: 1200px;
	margin-right: auto; 
	margin-left: auto;
	opacity: 1;
	z-index: 500;
	}
	
	.topgrid {
	display: grid;

	grid-template-columns: repeat(8, 1fr);
	grid-auto-rows: minmax(20px, auto);
	grid-column-gap:0.5em;
	grid-row-gap:0.5em;
	max-width:1200px;
	justify-items: stretch;
	margin: auto;
}

.topgrid > div {
	padding:.5em;
}

.content {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-column-gap:1em;
	grid-auto-rows: minmax(20px, auto);
	grid-row-gap:0.5em;	
}

.contentcards {
	display: grid;
	grid-template-columns: 1fr);
	grid-column-gap:1em;
	grid-auto-rows: minmax(20px, auto);
	grid-row-gap:0.5em;	
}



.headermenu {
	grid-column: 1;
	grid-row: 1;
    }
.headerlogo {
	grid-column: 2/3;
	grid-row: 1;
	}
.headertitle {
	grid-column:3/5;
	grid-row: 1;
	}
.aftertitle {
	grid-column:5/9;
	grid-row: 1;
	}
	
.intro {
	grid-template-columns: repeat(8, 1fr);
	grid-column: 1/9;
	grid-row: 2;
	}
	
#intro1 {
		grid-column:1/2;
		grid-row: 2;
	}
	
#intro2 {
		grid-column:1/9;
		padding-left: 1em;
		grid-row: 1;
	}
	
#intro3 {
		grid-column:2/4;
		padding-left: 1em;
		grid-row: 2;
	}
	
.ad1 {
	grid-column: 4/9;
	grid-row: 2;
	}
	
.spacer {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-column-gap:0.5em;
	grid-column: 1/9;
	grid-row: 3;
	background: #6B7A8F;
	}
	
.content {
	grid-column: 3/9;
	grid-row: 4;
	}
	

	
.ad2 {
	grid-column: 1/3;
	grid-row: 4;
	}
.footer {	
	grid-column: 1/9;
	grid-row: 5;
	}

}


/*css for Navigation Bar */

/* The side navigation menu */
.sidenav {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 700; /* Stay on top */
    top: 0; /* Stay at the top */
    left: 0;
    background-color: #6B7A8F; /* Forest Green*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 16px;
    color: #F5F5F5;
    display: block;
    transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
    color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
    transition: margin-left .5s;
    padding: 20px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 468px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 16px;}
	
	

}

/* styles sheets to hold my menu up and left */

   ul {
	   list-style: none;
      }

   li.b a {
    float: left;
    display: block;
    text-align: left;
    padding: 10px 10px 10px 30px;
    text-decoration: none;
	width: 90%
  }

  li.b a:hover {
    background-color: #CCC;
	color: black;
  }

  
  	.contentcards>div:hover {
    background-color: #DCC7AA;
    }
