h3 {
  position: relative;
  overflow: hidden;
  padding: 0.5rem 2rem 0.2rem 130px;
  border: 2px solid #c0c0c0;
}

h3:before {
  position: absolute;
  top: -150%;
  left: -100px;
  width: 180px;
  height: 300%;
  content: '';
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
  background: #c0c0c0;
}

h3 span {
  font-size: 40px;
  font-size: 4rem;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: block;
  padding-top: 3px;
  padding-left: 16px;
  color: #fff;
}

h4 {
  position: relative;
  background: #e1e1e1;
  box-shadow: 0px 0px 0px 5px #c0c0c0;
  border: dashed 3px white;
  padding: 0.3em 0.3em;
  color: 	#000000;
}

h4:after {
  position: absolute;
  content: '';
  left: -7px;
  top: -7px;
  border-width: 0 0 15px 15px;
  border-style: solid;
  border-color: #fff #fff #808080;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
}


