.p-movie_item {
  position: relative;
  width: 50%;
  margin-bottom: 5px;
  margin-left: -0.4em;
  cursor: pointer;
  background: #000;
}

@media screen and (min-width: 768px) {
  .p-movie_item:hover {
    -webkit-transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
    transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  }
  .p-movie_item:hover .p-movie_thumb {
    opacity: 1;
    background-size: 103%;
  }
  .p-movie_item:hover .p-movie_btn {
    opacity: 0;
  }
}

.p-movie_thumb {
  padding-top: 56.25%;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  background-position: center;
  background-size: 100%;
  opacity: 0.8;
}

.p-movie_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24%;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
/*# sourceMappingURL=movie.css.map */