/*============================
body style
============================*/
body {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
}
/*============================
nav style
============================*/
/*image style*/
img {
  width: 100%;
  object-fit: cover;
  object-position: 0 0;
}


/*hamburger menu style*/
#nav_toggle {
  position: fixed;
  top: 1em;
  right: 1em;
  z-index: 20;
	
background-color: hsla(0,0%,0%,0.59);
vertical-align: middle;
	padding: 10px 10px 3px 10px;
	border-radius: 10px;
}
#nav_toggle div {
  position: relative;
  display: block;
  top: 4px;
  width: 32px;
  height: 32px;
  z-index: 100;
}
#nav_toggle span {
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
/*hamburger menu close style*/
#nav_toggle span:nth-child(1) {
  top:0px;
}
#nav_toggle span:nth-child(2) {
  top:12px;
}
/*hamburger menu open style*/
.open #nav_toggle span:nth-child(1) {
  top: 6px;
  -webkit-transform: rotate(155deg);
  -moz-transform: rotate(155deg);
  transform: rotate(155deg);
}
.open #nav_toggle span:nth-child(2) {
  top: 6px;
  -webkit-transform: rotate(-155deg);
  -moz-transform: rotate(-155deg);
  transform: rotate(-155deg);
}
/*nav style*/
nav {
  position: fixed;
  padding: 2em;
	top: 5%;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 80%;
  opacity: 0;
  z-index: 0;
  -webkit-transform: scale(0.85);
  -ms-transform: scale(0.85);
  transform: scale(0.85);
  transition: 0.5s;
}
/*nav list style*/
nav ul {
  list-style-type: none;
  padding: 2em 0 0 0;
}
nav ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
/*nav link style*/
nav ul li a {
  padding: 1.5em 0;
  display: block;
  text-decoration: none;
  font-size: 1.250em;
  font-weight: 300;
  color: #fff;
  transition: 0.5s;
}
nav ul li a:hover {
  padding: 1.5em 1.0em;
  opacity: 0.5;
  transition: 0.5s;
}
nav ul li:last-child {
  border: none;
}
.add_nav {
  display: block;
  opacity: 1;
  z-index: 10;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  transition: 0.5s;
}
.container {
  position: relative;
 height: 100%;

}
.add_container {
  -webkit-filter: blur(8px) brightness(60%);
  -moz-filter: blur(8px) brightness(60%);
  -o-filter:  blur(8px) brightness(60%);
  -ms-filter:  blur(8px) brightness(60%);
  filter: blur(8px) brightness(60%);
	
  transition: 0.5s;

}
figure {
  margin: 0;
  padding: 0;
}
figcaption {
  position: absolute;
  bottom: 0;
  padding: 2em 2em 2.5em 2em;
  color: #fff;
  z-index: 5;
}
figcaption h1, figcaption span {
  text-shadow: 0px 0px 10px rgba(0,0,0,0.25);
}
figcaption h1 {
  padding: 0 0 0.25em 0 ;
  margin: 0 0 0.25em 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
figcaption .category {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.8em;
  padding: 0 0 0.3em;
  color: rgba(255,255,255, 0.7);
}