.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;
}

.action-buttons {
  text-align: center;
  margin-bottom: 30px;
}

.action-buttons form {
  display: inline-block;
}

.action-buttons > .edit_operation {
  font-size: 0.7em;
  border: 1px solid #868E96;
  display: inline-block;
}

.title {
  text-align: center;
}

.description {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 50px;
}

.operation-section .section-header {
  margin-left: 20px;
}

.operation-section .images-wrapper {
  margin: 50px auto;
  text-align: center;
}

.operation-section .images-wrapper > .image-box {
  display: inline-block;
  position: relative;
  width: 284px;
  height: 180px;
}

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

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

.operation-section .attachments-wrapper {
  margin-left: 10%;
  text-align: left;
}

.operation-section .attachments-wrapper .link {
  text-align: left;
  color: #343A40;
  text-decoration: none;
  font-size: 0.9em;
}

.operation-section .attachments-wrapper .link i {
  position: relative;
  top: 4px;
}

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

