.slash {
    width: 100%px;
    min-height: 300px;
    padding:25px 0 25px 0 ;
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 25%, 75% 0);
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 100%, 75% 0);
    background: #173c6dd0;
    
    
}

.ani {
  margin-top: 2px;
  background-size: 100% 100%;
  background-image: url(./Image/script.jpg);
  background-repeat: no-repeat;
  
 }

 @media (max-width: 480px) {
    .row, .col, .slash, .rounded-right, h1 {
      padding-top:0px;
      margin-top: 0px;
    }
}


 .slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  }
  @-webkit-keyframes slideInLeft {
  0% {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  visibility: visible;
  }
  100% {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  }
  }
  @keyframes slideInLeft {
  0% {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  visibility: visible;
  }
  100% {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  }
  } 