/* CSS Document */

/*font-family: 'Montserrat', sans-serif;
font-family: 'Raleway', sans-serif;
font-family: 'Open Sans Condensed', sans-serif;
font-family: 'Quicksand', sans-serif;
font-family: 'Abril Fatface', cursive;
font-family: 'Didact Gothic', sans-serif;
font-family: 'Lobster Two', cursive;
font-family: 'Advent Pro', sans-serif;
font-family: 'Sacramento', cursive;
font-family: 'Montserrat Alternates', sans-serif;
font-family: 'Poiret One', cursive;
font-family: 'Josefin Slab', serif;
font-family: 'Julius Sans One', sans-serif;*/

body{
	background-color: #F4E9D5;
}
/*portfolio photos*/

	.snip1273 {
	  font-family: 'Raleway', Arial, sans-serif;
	  position: relative;
	  margin: 40px 10px;
	  max-width: 450px;
	  width: 80%;
	  color: #ffffff;
	  text-align: left;
	  background-color: #000000;
	  font-size: 12px;
	}
	.snip1273 * {
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	  -webkit-transition: all 0.4s ease-in;
	  transition: all 0.4s ease-in;
	}
	.snip1273 img {
	  position: relative;
	  max-width: 100%;
	  vertical-align: top;
	}
	.snip1273 figcaption {
	  position: absolute;
	  top: 0;
	  right: 0;
	  width: 100%;
	  height: 100%;
	  z-index: 1;
	  opacity: 0;
	  padding: 20px 30px;
	}
	.snip1273 figcaption:before,
	.snip1273 figcaption:after {
	  width: 1px;
	  height: 0;
	}
	.snip1273 figcaption:before {
	  right: 0;
	  top: 0;
	}
	.snip1273 figcaption:after {
	  left: 0;
	  bottom: 0;
	}
	.snip1273 h3,
	.snip1273 p {
	  line-height: 1.5em;
	}
	.snip1273 h3 {
	  margin: 0 0 5px;
	  font-weight: 700;
	  text-transform: uppercase;
	}
	.snip1273 p {
	  font-size: 0.8em;
	  font-weight: 500;
	  margin: 0 0 15px;
	}
	.snip1273 a {
	  position: absolute;
	  top: 0;
	  bottom: 0;
	  right: 0;
	  left: 0;
	  z-index: 1;
	}
	.snip1273:before,
	.snip1273:after,
	.snip1273 figcaption:before,
	.snip1273 figcaption:after {
	  position: absolute;
	  content: '';
	  background-color: #ffffff;
	  z-index: 1;
	  -webkit-transition: all 0.4s ease-in;
	  transition: all 0.4s ease-in;
	  opacity: 0.8;
	}
	.snip1273:before,
	.snip1273:after {
	  height: 1px;
	  width: 0%;
	}
	.snip1273:before {
	  top: 0;
	  left: 0;
	}
	.snip1273:after {
	  bottom: 0;
	  right: 0;
	}
	.snip1273:hover img,
	.snip1273.hover img {
	  opacity: 0.4;
	}
	.snip1273:hover figcaption,
	.snip1273.hover figcaption {
	  opacity: 1;
	}
	.snip1273:hover figcaption:before,
	.snip1273.hover figcaption:before,
	.snip1273:hover figcaption:after,
	.snip1273.hover figcaption:after {
	  height: 100%;
	}
	.snip1273:hover:before,
	.snip1273.hover:before,
	.snip1273:hover:after,
	.snip1273.hover:after {
	  width: 100%;
	}
	.snip1273:hover:before,
	.snip1273.hover:before,
	.snip1273:hover:after,
	.snip1273.hover:after,
	.snip1273:hover figcaption:before,
	.snip1273.hover figcaption:before,
	.snip1273:hover figcaption:after,
	.snip1273.hover figcaption:after {
	  opacity: 0.1;
	}

/*hamburger button*/
body{
  color: #000000;
  font-family: 'Poiret One', cursive;
}

#menuToggle{
  position: relative;
  top: 50px;
  left: 50px;
  z-index: 1;
   -webkit-user-select: none;
  user-select: none;
}
#menuToggle a{
  text-decoration: none;
  color: #232323; 
  transition: color 0.3s ease;
}
#menuToggle input{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  -webkit-touch-callout: none;
}
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #7e8959;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}
#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}
#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}
#menu
{
  position: absolute;
  width: 950px;
  height: 555px;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  background: #ecc0a4;
  opacity: 0.9;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}
#menu li
{
  padding: 10px 0;
	margin: 15px 0 0 0;
  font-size: 25px;
}
#menuToggle input:checked ~ ul
{
  transform: none;
}

/*back to normal code*/
div.sticky {
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
  z-index: 5;
}
header .logo{
	width: 100%;
	max-width: 200px;
	padding-bottom: 420px;
	margin: 1% auto;
	display: block;
}
h1{
	font-family:'Josefin Slab', serif;
	text-align: center;
	margin: 100px 0 0 0;
	font-size: 15px;
	
}
h2{
	font-family:'Josefin Slab', serif;
	text-align: center;
	margin: 5px 0 15px 0;
}
#portfolio{
	color: #9a5044;
	font-family: 'Josefin Slab', serif;
	margin: 0 0 0 10px;
	padding: 30px 0 0 0;
	font-size: 50px;
}
#peek{
	border-bottom: thin solid #000000;
	color: #7e8959;
	margin: 0 20px 0 13px;
	padding: 0 0 5px 0;
}
#resume{
	color: #9a5044;
	font-family: 'Josefin Slab', serif;
	margin: 0 0 0 20px;
	font-size: 50px;
}
#me{
	color: #7e8959;
	margin: 15px 20px 0 20px;
	padding: 0 0 5px 0;
}
h3{
	color: #9a5044;
	font-family: 'Josefin Slab', serif;
	margin: 0 0 0 20px;
	font-size: 50px;	
}
h4{
	color: #7e8959;
	margin: 0 20px 0 20px;
	padding: 0 0 5px 0;
}
h5{
	font-size: 25px;
	margin: 15px 20px 30px 25px;
	border-bottom: solid thin #AAA5A5;
	cursor: pointer;
}
ul{
	line-height: 20px;
	font-family: 'Quicksand', sans-serif;
}
#p1{
	margin: 15px 15px 0 50px;
	display: none;
}
#p2{
	margin: 15px 0 0 50px;
	display: none;
}
#p3{
	margin: 15px 0 0 50px;
	display: none;
}
#p4{
	margin: 15px 0 0 50px;
	display: none;
}
#two ul{
	display: flex;
	}
#two li{
	flex: 1;
	text-align: center;
	padding: 2% 0;
	}
#two{
	margin: 30px 0 50px 15px;
}
#three{
	padding: 0 0 150px 0;
}
footer{
	background-color:#7e8959;
	padding: 15px 0 30px 0;
}
footer li{
	margin: 0 0 0 20px;
}
footer p{
	margin: 15px 15px 15px 15px;
}
#disclamer{
	text-align: center;
	font-size: 12px;
}
#h3{
	color: black;
}
#h4{
	color: black;
}
#desktop_nav{
	display: none;
}
#two-2{
	display: none;
}
#pdf{
	margin: 0px 0px 0px 20px;
	color: #000000;
	text-decoration: none;
}
#four{
	display: none;
}
@media screen and (min-width:900px){
	#desktop_nav{
		display: block;
		text-align: right;
		background-color: #ecc0a4; 
		padding: 10px;
		color: black;
		border-bottom: thin solid #9A5044;
	}
	#desktop_nav a{
		color: black;
		text-decoration: none;
	}
	#menuToggle{
		display: none;
	}
	#two{
		display: none;
	}
	#two-2{
		display: block;
	}
	ul{
		display: flex;
	}
	li{
		flex: 1;
		padding: 5px 0 150px 10px;
	}
	#peek2{
		border-bottom: thin solid #000000;
	}
	footer{
		display: none;
	}
	p{
		margin: 15px 0 -10px 20px;
	}
	#four{
		display: block;
		margin: 0 0 150px 0;
	}
	
}









