@charset "UTF-8";
/* CSS Document */
body {
  font-family: "haboro-contrast-normal", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 1.3;
  background-color: #f4f4f4;
  color: #fff;
}
header {
  background-color: #878961;
  color: #fff;
  border-top: 4px solid #3e332f;
  height: 50px;
}
div.wrap {
  width: 960px;
  margin: 0 auto 0 auto;
  overflow: hidden;
}
header h1 {
  float: left;
  width: 250px;
  padding-top: 7px;
}
header nav {
  float: right;
}
section.hero {
  background-image: url(img/hero-jayne.jpg);
  background-size: cover;
  background-position: center;
  background-color: #3e332f;
  padding: 100px 0 150px 0;
}
section.hero h2 {
  font-size: 36px;
  font-weight: 700;
  max-width: 480px;
}
section.hero h3 {
  font-size: 24px;
  max-width: 400px;
  margin: 20px 0 0 0;
}
section.products {
  padding: 40px 0 80px 0;
}
section.products nav {
  margin: 0 0 20px 0;
}
section.products nav a {
  text-decoration: none;
  color: #878961;
  margin: 0 10px 0 0;
}
section.products nav a.selected {
  /* border-bottom: 3px solid #878961; */
  color: #3e332f;
}
section.products span.show-filters {
  padding-bottom: 10px;
  color: #bfbfb7;
  display: none;
}
div.product {
  background-color: #7c6f69;
  width: 320px;
  float: left;
  position: relative;
}
div.product h4 {
  position: absolute;
  top: 20px;
  left: 20px;
  opacity: 0;
  transition: opacity 1s;
}
div.product p {
  position: absolute;
  bottom: 20px;
  left: 20px;
  opacity: 0;
  transition: opacity 1s;
}
div.product img {
  transition: opacity 1s;
}
div.product:hover img {
  opacity: 0.25;
}
div.product:hover h4 {
  opacity: 1;
}
div.product:hover p {
  opacity: 1;
}
/* */
.portfolio-modal .modal-content {
	padding: 100px 0;
	min-height: 100%;
	border: 0;
	border-radius: 0;
	text-align: center;
	background-clip: border-box;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.portfolio-modal .modal-content h2 {
	margin: 0;
	font-size: 3em;
}
.portfolio-modal .modal-content img {
	margin-bottom: 30px;
}
.portfolio-modal .close-modal {
	position: absolute;
	top: 25px;
	right: 25px;
	width: 54px;
	height: 54px;
	background-color: transparent;
	cursor: pointer;
}
.portfolio-modal .close-modal:hover {
	opacity: .3;
}
.portfolio-modal .close-modal .lr {
	z-index: 1051;
	width: 1px;
	height: 54px;
	margin-left: 35px;
	background-color: #828282;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.portfolio-modal .close-modal .lr .rl {
	z-index: 1052;
	width: 1px;
	height: 54px;
	background-color: #828282;
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}
hr.star-light, hr.star-primary {
	margin: 25px auto 30px;
	padding: 0;
	max-width: 250px;
	border: 0;
	border-top: solid 2px;
	text-align: center;
}
hr.star-light:after, hr.star-primary:after {
	content: "";
	display: inline-block;
	position: relative;
	top: -.8em;
	padding: 0 .25em;
	font-family: FontAwesome;
	font-size: 1em;
}
hr.star-light {
	border-color: #fff;
}
hr.star-light:after {
	color: #fff;
	background-color: #917552;
}
hr.star-primary {
	border-color: #828282;
}
hr.star-primary:after {
	color: #828282;
	background-color: #fff;
}
@media (max-width: 1000px) {
  div.wrap {
    width: 640px;
  }
  section.hero {
    padding: 50px 0 50px 0;
  }
}
@media (max-width: 680px) {
  div.wrap {
    width: auto;
    margin: 0 20px 0 20px;
  }
  div.product {
    width: auto;
  }
  section.hero {
    /* background-image: none; */
    padding: 20px 0 20px 0;
  }
  section.hero h2 {
    font-size: 24px;
  }
  section.hero h3 {
    font-size: 18px;
  }
  section.products nav a {
    display: block;
  }
  section.products nav.filters-list {
    display: none;
  }
  section.products span.show-filters {
    display: block;
  }
}
/* Make sure the filter list is there at all times */
@media (min-width: 680px) {
  section.products nav.filters-list {
    display: block !important;
  }
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  body {
    font-size: 16px;
    margin: 0;
    width: auto;
  }
  header h1 {
    float: left;
    width: 175px;
    padding-top: 5px;
  }
}