.par-mums {
position: relative;
    margin-bottom:150px;
    
}

.par-mums .inner-container {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    margin:auto;
    width:60%;  
}

.par-mums h3 {
    text-transform: uppercase;
    
    margin-bottom: 15px;
    margin-top:20px;
    font-weight: bold;
}

.par-mums p {

margin-bottom:0;
text-align: left;
}

.par-mums::before {
    content: '';
    width: 150%;
    height: 135%;
    margin-top: -7%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #f2f2f2;
    z-index: -1;
    margin-left: -30vw;

  clip-path: polygon(
      0% 0%,       /* Top-left  */
      97% 8%,     /* Top-right point */
      100% 95%,    /* Bottom-right  */
      0% 100%      /* Bottom-left  */
  );

}