body{
    background-color: white;
  }
  
  .step-container{
      /* font-family: 'Montserrat', sans-serif; */
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
  }
  .step{
      width: 1300px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
  }
  .step .box{
      position: relative;
      width: 200px;
      border-radius: 0 50px 0 50px;
      padding: 0 0 20px;
      margin: 10px 0;
      /* box-shadow: 0 15px 45px rgba(255, 255, 102, .6); */
      transition: 0.5s;
      /* border: #ffff66 solid 5px; */
      /* background: black; */
      /* background:linear-gradient(185deg, #ffff66 47%, #000000 50%); */
  }
  .step .box:nth-child(1){
    background:linear-gradient(185deg, #ffff66 47%, #000000 50%);
  }
  .step .box:nth-child(2){
    background:linear-gradient(185deg, #01ffc3 47%, #000000 50%);
  }
  .step .box:nth-child(3){
    background:linear-gradient(185deg, #01ffff 47%, #000000 50%);
  }
  .step .box:nth-child(4){
    background:linear-gradient(185deg, #ffb3fd 47%, #000000 50%);
  }
  .step .box:nth-child(5){
    background:linear-gradient(185deg, #ce96fb 47%, #000000 50%);
  }
  
  .step .box:nth-child(1):hover{
    box-shadow: 0 0 5px #ffff66, 0 0 20px #ffff66, 0 0 20px #ffff66;
  }
  .step .box:nth-child(2):hover{
    box-shadow: 0 0 5px #01ffc3, 0 0 20px #01ffc3, 0 0 20px #01ffc3;
  }
  .step .box:nth-child(3):hover{
    box-shadow: 0 0 5px #01ffff, 0 0 20px #01ffff, 0 0 20px #01ffff;
  }
  .step .box:nth-child(4):hover{
    box-shadow: 0 0 5px #ffb3fd, 0 0 20px #ffb3fd, 0 0 20px #ffb3fd;
  }
  .step .box:nth-child(5):hover{
    box-shadow: 0 0 5px #ce96fb, 0 0 20px #ce96fb, 0 0 20px #ce96fb;
  }
  
  .step .box:hover{
      transition: 0.5s;
      /*background: #ffff66;*/
      /* box-shadow: 0 0 10px #ffff66, 0 0 40px #ffff66, 0 0 80px #ffff66; */
  }
  .step .box .skewed{
      position: relative;
      /* background-color: #ffff66; */
      margin: 0;
      /* padding: 20px 0 1px; */
      padding: 5px 0 25px;
      border-radius: 0 50px 0 0;
      /* ! box-shadow: 0 15px 45px rgba(255, 255, 102, .6); */
  }
  /* .step .box .skewed::before{
      content:'';
      position: absolute;
      bottom: -50px;
      left: 0;
      width: 100%;
      height: 50px;
      background-color: #ffff66;
      clip-path: polygon(0 0,100% 0,100% 50%);
      box-shadow: 0 15px 45px rgba(255, 255, 102, .6);
  } */
  .step .box .num{
      font-weight: bold;
      opacity: 0.5;
      transition: 0.5s;
  }
  .step .box .h2{
      /* font-size: 1.3em; */
      font-size: 50px;
      font-weight: bold;
      z-index: 1;
      transition: 0.5s;
      text-align: center;
      padding-top: 10px;
      margin:0;
      color: #222222;
  }
  .step .box:hover .h2{
      opacity: 1;
      transform: scale(1.2);
  }
  .step .box h3{
      font-weight: bold;
      text-align: center;
      position: relative;
      font-size: 0.9em;
      z-index: 2;
      transition: 0.5s;
      margin: 0 0 10px;
      padding-top: 10px;
  
  }
  .step .box:hover h3{
      transform: scale(1.1);
  }
  .step .box p{
      position: relative;
      z-index: 2;
      transition: 0.5s;
      padding: 30px 15px 0 15px;
      /* color: #ffff66; */
      color: #fff;
      /* text-shadow: 0 0 1px #ffff66, 0 0 1px #ffff66, 0 0 1px #ffff66; */
      font-size: 13px;
      font-weight: bold;
  }
  .step .box:hover p{
      /* color: #ffff66; */
  }
  
  @media screen and (max-width: 600px) {
      .step{
          justify-content: center;
      }
  }
  