.hero-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: rgba(33, 37, 41, 0.3);
  -webkit-filter: grayscale(30%);
          filter: grayscale(30%);
  background-blend-mode: multiply;
}

.album-section > .wrapper > .title {
  margin: 0 auto;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.15px;
  color: #343A40;
}

.album-section > .wrapper > .buttons-wrapper {
  text-align: center;
}

.album-section > .wrapper > .buttons-wrapper > form {
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
}

.album-section > .wrapper > .buttons-wrapper > .edit_album {
  font-size: 0.7em;
  border: 1px solid #868E96;
  display: inline-block;
}

.album-section > .wrapper > .description {
  color: #868E96;
  font-size: 0.8em;
  width: 60%;
  margin: 0 auto;
  display: block;
  padding: 20px 0;
}

.album-section > .wrapper > .images-wrapper {
  margin: 20px auto;
}

.album-section > .wrapper > .images-wrapper > .image-box {
  display: inline-block;
  position: relative;
  width: 381px;
  height: 286px;
}

.album-section > .wrapper > .images-wrapper > .image-box form > .delete-image {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  color: white;
  background-color: #E93B60;
  opacity: 0.7;
  cursor: pointer;
  display: none;
}

.album-section > .wrapper > .images-wrapper > .image-box form > .delete-image:hover {
  opacity: 1;
}

.album-section > .wrapper > .images-wrapper > .image-box a > .photo-unit {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.album-section > .wrapper > .images-wrapper > .image-box:hover .delete-image {
  display: block;
}

.album-section > .wrapper > .new_wrapper {
  padding-top: 40px;
}

@media (max-width: 1024px) {
  .album-section > .wrapper > .buttons-wrapper > form {
    display: block;
  }

  .album-section > .wrapper > .images-wrapper {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 20px 0;
    width: 100%;
  }

  .album-section > .wrapper > .images-wrapper .image-box {
    width: 100%;
  }

  .album-section > .wrapper > .images-wrapper .image-box form > .delete-image {
    display: block;
    opacity: 1;
  }

  .album-section > .wrapper > .images-wrapper a > .photo-unit {
    width: 100%;
    height: 286px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media (min-width: 768px) {
  .album-section > .wrapper > .images-wrapper {
    text-align: center;
  }

  .album-section > .wrapper > .images-wrapper .image-box {
    width: 381px;
  }

  .album-section > .wrapper > .images-wrapper a > .photo-unit {
    width: calc(50% - 3px);
  }
}

