.demo {
  max-width: 80em;
  margin: 0 auto;
}

.wrapper {
  max-width: 80em;
  margin: 0 auto;
}

#masonry-grid { margin: 0 auto; }

/*-------------------------------------------------------*/
/* Lightbox
/*-------------------------------------------------------*/
#lightbox_show {

}

#lightbox {
	
}

#lightbox p {
    font-size: 1.5rem;
    text-align: center;
    padding: 1rem;
    background-color: orange;
}

#lightbox .nav {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    padding: 1rem;
    background-color: black;
    color: white;
		width:600px;
		margin: 0 auto;
}

a.slide-nav {
    font-size: 1.2rem;
    color: white;
}

#slideshow {

}

#slideshow ul {
    list-style: none;
		padding:0;
		margin:0;
}

#slideshow ul li {
    margin: 0 auto;
    text-align: center;
}

#slideshow ul li img {
	margin: 0 auto;
	height: 600px;
}

/*-------------------------------------------------------*/
/* Portfolio
/*-------------------------------------------------------*/
.project-grid.grid-5-col .project {
  width: 20%;
}

.project-grid.grid-4-col .project {
  width: 25%;
}

.project-grid.grid-3-col .project {
  width: 33.33333333%;
}

.project-grid.grid-2-col .project {
  width: 50%;
}

.project-grid.small-gutter {
  margin-left: -4px;
  margin-right: -4px;
}

.project-grid.small-gutter .project {
  padding: 0 4px;
  margin-bottom: 8px;
}

.project-grid.gutter {
  margin-left: -15px;
  margin-right: -15px;
}

.project-grid.gutter .project {
  padding: 0 15px;
  margin-bottom: 30px;
}

/*-------------------------------------------------------*/
/* Featured Works (Slider)
/*-------------------------------------------------------*/
.owl-featured-works .project {
  margin: 0 4px;
  padding: 0;
}

.owl-featured-works--grab .project {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.project {
  overflow: hidden;
  display: block;
  position: relative;
}
.project__img-holder {
  position: relative;
  width: 100%;
  height: 100%;
}
.project__img {
  width: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.project__overlay {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  /* background-color: rgba(0, 0, 0, 0.7); */
  transition: all 0.3s ease-in-out;
}
.project__overlay .project__category,
.project__overlay .project__title {
  color: #fff;
}
.project__icons {
  position: absolute;
  top: 0;
  width: 100%;
  text-align: center;
  margin-top: -20px;
  transition: all 0.3s ease-in-out;
}
.project__icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  font-size: 1rem;
  margin: 0 3px;
  line-height: 40px;
  text-align: center;
  color: #333333;
  background-color: #fff;
  border-radius: 100px;
  transition: all 0.3s ease-in-out;
}
.project__icons a:hover {
  color: #fff;
  background-color: #f36b21;
}
.project:hover .project__overlay {
  opacity: 1;
  visibility: visible;
}
.project--hover-1:hover .project__icons {
  top: 42%;
}
.project__description {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.project--hover-1:hover .project__description {
  bottom: 42%;
  transform: translateY(50%);
}
.project__title {
  margin-bottom: 5px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1rem;
}
.project__title:hover a {
  color: #f36b21;
}
.project__category {
  font-size: 1rem;
  font-style: italic;
}
.project__category a {
  color: inherit;
}
.project__category:hover a {
  color: #f36b21;
}

/*-------------------------------------------------------*/
/* Portfolio
/*-------------------------------------------------------*/
/* Filter
-------------------------------------------------------*/
.project-filter {
    list-style: none;
    margin-bottom: 1rem;
    cursor: default;
    font-size: 1.2rem;
    margin-top: 2rem;
    text-align: center;
    line-height: 1.5;
}
.project-filter a {
  display: inline-block;
  margin-right: 5px;
  color: #7a7a7a;
  text-decoration: none;
  padding: 7px 15px;
  border-radius: 3px;
  background-color: #fff;
}
.project-filter a.active,
.project-filter a:focus,
.project-filter a:hover {
  color: #f36b21;
}

/* Hover 2
-------------------------------------------------------*/
.project--hover-2 .project__description {
  padding: 13px 20px;
  background-color: #fff;
  display: block;
  left: 0;
  bottom: auto;
  top: auto;
  text-align: left;
  transform: translateY(100%);
  z-index: 2;
}
.project--hover-2 .project__title {
  font-size: 1rem;
  margin-bottom: 0;
  line-height: 1.3;
}
.project--hover-2:hover .project__description {
  transform: translateY(-100%);
  bottom: auto;
}
.project--hover-2:hover .project__img {
  transform: translateY(-30px);
}
.project--hover-2:hover .project__icons {
  top: 42%;
}

/* Hover 3
-------------------------------------------------------*/
.project--hover-3 .project__description {
  top: 50%;
  bottom: auto;
  transform: translateY(20px);
}
.project--hover-3:hover .project__description {
  transform: translateY(-50%);
}

/*-------------------------------------------------------*/
/* Portfolio Responsive Styles
/*-------------------------------------------------------*/
@media screen and (max-width: 35.5em) {
  .project-grid .project {
    width: 100% !important;
  }

  .project-filter a {
    display: block;
    margin-top: 8px;
    margin-right: 0;
  }
}