.elementor-1111 .elementor-element.elementor-element-a640f4d{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}/* Start custom CSS for container, class: .elementor-element-a640f4d *//* Add this CSS to your container */
.overlapping-images {
  position: relative;
  width: 100%;
  height: 80vh; /* Adjust as needed */
}

/* First image */
.overlapping-images img:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 300px; /* Adjust size */
}

/* Second image - overlapping */
.overlapping-images img:nth-child(2) {
  position: absolute;
  top: 50px; /* Offset from top */
  left: 200px; /* Offset from left */
  z-index: 2;
  width: 300px;
}

/* Third image - overlapping */
.overlapping-images img:nth-child(3) {
  position: absolute;
  top: 100px;
  left: 400px;
  z-index: 3;
  width: 300px;
}/* End custom CSS */