	 
     .wrapper {
  position: relative;
  width: 100%;
  max-width: 100%; /* Adjust max-width as needed */
  height: 200px; /* Adjust height as needed */
  border-radius: 12px;
  overflow: hidden;
}
.image-container {
  width: 100%;
  height: 60%;
  display: flex;
  overflow: hidden;
}
.carousel {
  display: flex;
  transition: transform 1s ease-in-out;
  width: 100%;
}
.carousel img {
  width: 200px; /* Adjust width as needed */
  height: auto; /* Maintain aspect ratio */
  object-fit: cover;
  border-radius: 12px;
  margin: 0 5px; /* Adjust spacing between images */
}
.button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  padding: 10px;
  z-index: 1;
}
#prev {
  left: 20px;
}
#next {
  right: 20px;
}

        
    .whatsapp-button {
      position: fixed;
      bottom: 60px;
      right: 15px;
      z-index: 99;
      background-color: #25d366;
      border-radius: 50px;
      color: #ffffff;
      text-decoration: none;
      width: 50px;
      height: 50px;
      font-size: 30px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      -webkit-box-shadow: 0px 0px 25px -6px rgba(0, 0, 0, 1);
      -moz-box-shadow: 0px 0px 25px -6px rgba(0, 0, 0, 1);
      box-shadow: 0px 0px 25px -6px rgba(0, 0, 0, 1);
      animation: effect 5s infinite ease-in;
    }

@keyframes effect {
  20%,
  100% {
    width: 50px;
    height: 50px;
    font-size: 30px;
  }
  0%,
  10% {
    width: 55px;
    height: 55px;
    font-size: 35px;
  }
  5% {
    width: 50px;
    height: 50px;
    font-size: 30px;
  }
}
 