/* Code By Webdevtrick ( https://webdevtrick.com ) */

    .contmural {
	overflow: hidden;
	background-color: #222;
	display: flex;
	align-items: center;
  }
  .mural {
	position: relative;
	flex-grow: 1;
	margin: auto;
	max-width: 1200px;
	max-height: 600px;
	display: grid;
	grid-template-columns: repeat(15, 1fr);
	grid-template-rows: repeat(6, 1fr);
	grid-gap: 2vmin;
	justify-items: center;
	align-items: center;
  }
   
  .mural img {
	z-index: 1;
	grid-column: span 2;
	max-width: 100%;
	margin-bottom: -52%;
	-webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
			clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
	-webkit-transform: scale(1);
			transform: scale(1);
	transition: all .25s;
  }
  .mural img:nth-child(14n + 1) {
	grid-column: 2 / span 2;
  }
  .mural img:hover {
	z-index: 2;
	-webkit-transform: scale(4);
	transform: scale(4);
  }