* {
  margin: 0;
  padding: 0;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: hsl(0, 0%, 20%);
}
.wrap {
  position: relative;
}
.text {
  font-size: 20vw;
  line-height: .8;
  color: whitesmoke;
  text-transform: uppercase;
  font-weight: bold;
  /* background-color: pink; */
}
.wrap .text:nth-child(2),
.wrap .text:nth-child(3),
.crack {
  position: absolute;
  left: 0;
  top: 0;
}
.wrap .text:nth-child(1) {
  -webkit-clip-path: polygon(100% 0, 3% 0, 100% 97%);
		  clip-path: polygon(100% 0, 3% 0, 100% 97%);
  transition: -webkit-transform .6s;
  transition: transform .6s;
  transition: transform .6s, -webkit-transform .6s;
}
.wrap .text:nth-child(2) {
  -webkit-clip-path: polygon(0 3%, 0% 100%, 97% 100%);
		  clip-path: polygon(0 3%, 0% 100%, 97% 100%);
}
.wrap .text:nth-child(3) {
  opacity: 1;
  transition: opacity .1s .6s;
}
.crack {
  background-color: hsl(0, 0%, 20%);
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(0 3%, 3% 0, 100% 97%, 97% 100%);
		  clip-path: polygon(0 3%, 3% 0, 100% 97%, 97% 100%);
  -webkit-transform: translate(-100%, -100%);
		  transform: translate(-100%, -100%);
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}
.wrap:hover .crack{
  -webkit-transform: translate(0, 0);
		  transform: translate(0, 0);
}
.wrap:hover .text:nth-child(3) {
  opacity: 0;
  transition: opacity .1s .3s;
}
.wrap:hover .text:nth-child(1) {
  transition: -webkit-transform .6s .5s;
  transition: transform .6s .5s;
  transition: transform .6s .5s, -webkit-transform .6s .5s;
  -webkit-transform: translate(10%, 10%);
		  transform: translate(10%, 10%);
}