.split-section {
  position: relative;
  padding: 4rem 0;
}

.img-shadow {
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  border-radius: 10px;
}

.angled-bottom::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background: inherit;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.angled-top::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background: inherit;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}