
.slantedDivA{
      position: relative;
      width: relative;
      height: 460px;
      background: #e69500;
      box-sizing: border-box;
      padding: 30px;
      color: #fff;
      margin-bottom: 50px;
    }

    .slantedDivA:after{
      position: absolute;
      width: 100%;
      height: 100%;
      content: '';
      background: inherit;
      z-index: -1;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      transform-origin: top left;
      transform: skewY(3deg);
    }

	.second{
		      position: relative;
		      width: relative;
		      height: 450px;
		      background-color: #00e600;
		      box-sizing: border-box;
		      padding: 30px;
		      color: #fff;
		      margin-bottom: 0;
		    }

		    .second:after{
		      position: absolute;
		      width: 100%;
		      height: 100%;
		      content: '';
		      background: inherit;
		      z-index: -1;
		      top: 0;
		      right: 0;
		      bottom: 0;
		      left: 0;
		      transform-origin: top right;
		      transform: skewY(3deg);
		    }﻿
		    


