.mural-page {
  background: var(--gray-300);
}
.mural-page .boxes-wrapp {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 50px;
}
.mural-page .boxes-wrapp .box {
  position: relative;
  width: 100%;
  max-width: calc(33.3333333333% - 20px);
  border-radius: 15px;
  overflow: hidden;
  background: var(--white-color);
}
@media (max-width: 991px) {
  .mural-page .boxes-wrapp .box {
    max-width: calc(50% - 15px);
  }
}
@media (max-width: 767px) {
  .mural-page .boxes-wrapp .box {
    max-width: 100%;
  }
}
.mural-page .boxes-wrapp .box .box-title {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%);
  font-size: 25px;
  color: var(--black-color);
  text-transform: uppercase;
  text-align: center;
}
.mural-page .boxes-wrapp .box .cover {
  text-align: center;
  padding: 15px;
  background: var(--white-color);
  position: relative;
  z-index: 3;
  transition: all 400ms ease-in-out;
}
.mural-page .boxes-wrapp .box .cover .box-description {
  margin-bottom: 10px;
}
.mural-page .boxes-wrapp .box .cover .box-description p {
  margin-bottom: 15px;
}
.mural-page .boxes-wrapp .box:hover img {
  transform: scale(1.1);
}
.mural-page .boxes-wrapp .box:hover .cover {
  margin-top: -10px;
}
