#fw-section-image-0 {
img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 29%; /* Adjust this value as needed */
  object-fit: cover;
  aspect-ratio: 4 / 3; /* Set this to maintain aspect ratio after cropping */
}

/* Container for the image to create the crop effect */
.cropped-image-container {
  overflow: hidden;
  padding-top: 87.5%; /* 25% crop from top and bottom, 50% remaining for image */
  position: relative;
}

.cropped-image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
}
}