.acquisitions-image-sec img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: top;
}

.acquisitions-image-sec {
  position: relative;
  margin-bottom:80px;
  margin-top: 20px;
}

.acquisitions-image-sec .acq-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: clamp(200px, 30vw, 400px);
  background-color: #E71316D6;
  clip-path:polygon(
  69.77% 100%,  
  100% 0%,      
  -1.11% 0%,   
  -1.11% 100% 
);
  height: 500px;
}

@media screen and (max-width:768px) {
  .acquisitions-image-sec img {
    height: 367px;
  }

  .acquisitions-image-sec .acq-shape {
  
  height: 367px;
  width: 40%;
}

}