.divider {
    display: block;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, #fff 0%, #ddd 50%, #fff 100%);
    margin: 50px auto;
}

.portfolio-movie-landscape{
  width: 50%;
min-height: 0;
}



/* -------------------------
  box gallery component
-------------------------- */
.box-gallery {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 80px;
  padding: 0;
  max-width: 1300px;
  width: 100%;
  position: relative;
}
.box-gallery h3 {
  position: absolute;
  top: -55px;
}
.box-gallery .box-gallery-item {
  width: 300px;
  height: 250px;
  margin: 0.5%;
  overflow: hidden;
  flex: 1 1 13em;
}
.box-gallery .box-gallery-item figure {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  background-size: cover;
  transition: all 0.2s ease-in-out;
}
.box-gallery .box-gallery-item figure:hover {
  filter: drop-shadow(4px 4px 6px gray);
  transform: scale(1.05);
}

@media screen and (max-width: 1200px) {
  .box-gallery-item {
    flex: 33%;
    max-width: 32%;
  }
}
@media screen and (max-width: 992px) {
  .box-gallery-item {
    flex: 50%;
    max-width: 49%;
  }
}
@media screen and (max-width: 600px) {
  .box-gallery-item {
    flex: 100%;
    max-width: 100%;
  }
}/*# sourceMappingURL=box-gallery.css.map */