body {
  margin: 0;
  width: 100vw;
  height: 100vh;
  background: #707372;
}

.images {
  display: flat;
  margin-top:25%;
}

.image {
	margin: 0;
	padding: 20px 0 20px 0;
	position: relative;
	width: 1200px;
	height: 800px;
	display: flex;
    transform: translate(-50%, -50%);
}

.image1 {

	left:50%;
}

.image div {
  height: 100%;
  width: 40%;
  background-size: cover;
	transition: .7s;
  box-shadow:inset 0 0 0 2000px rgba(0,0,0,0.3);
}
.image1 div{
  background-image: url("bg-img-1.jpeg");
}
/*
 HOVER needs to be changed to on click then the image will open up. Showing a options with in the pamplet.
 */
.image:hover {
  cursor: pointer;
}

.image:hover div:nth-child(odd) {
  transform: skewY(10deg);
  box-shadow: inset 20px 0px 50px rgba(0,0,0,.5);
}
.image:hover div:nth-child(even) {
  transform: skewY(-10deg);
  box-shadow: inset 20px 0px 50px rgba(0,0,0,.5);
}
.image div:nth-child(1){
	background-position: 0;
}
.image div:nth-child(2){
	background-position: -300px;
  margin-left:-480px;
}
.image div:nth-child(3){
	background-position: -450px;
  margin-left:-480px;
}
.image div:nth-child(4){
	background-position: -600px;
  margin-left:-480px;
}


.image:hover div:nth-child(2){
	background-position: -150px;
  margin-left:0px;
}
.image:hover div:nth-child(3){
	background-position: -300px;
  margin-left:0px;
}
.image:hover div:nth-child(4){
	background-position: -450px;
  margin-left:0px;
}
.image:hover .name {
  display: none;
}

.name {
  position: relative;
  margin-left: -20%;
  width: 25%;
  color: #fefefe;
  font-size: 120px;
  font-weight: 600;
  transform: rotate(-90deg);
  font-family: sans-serif;
  text-transform: uppercase;
  text-shadow: 1px 1px #000000 
}

