.elementor-3125 .elementor-element.elementor-element-5c3079d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-6c55e9a */.slider {
  width: 100%;
  height: 450px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slides {
   position: relative;
  height: 100%;
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slide {
  display: flex;
  position: absolute;
  flex-direction: column;
   position: absolute;
  left: 50%;
  top: 50%;
  transition: all 0.6s ease;
  width: 250px;
  height: 300px;
  margin: 0 20px;
  background: #F7A81F;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  justify-content: center;
  align-items: center;
  transition: transform 0.6s ease,
}

/* Active center */
.slide.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  width: 320px;
  height: 400px;
  background: red;
  opacity: 1;
  transform: scale(1.1);
}

/* Hide content */

.slide p {
  display: none;
}
.slide h2{
    font-size: 28px;
    color: white;
}
.slide p{
    font-size: 16px;
    color: white;
}
.slide.active h2,
.slide.active p {
  display: block;
}

.img {
  margin-bottom: 10px;
}
img {
  width: 30%;
  height: 64px;
  object-fit: cover;
  border-radius: 5px;
}

button {
  margin-top: 10px;
  padding: 8px 15px;
  cursor: pointer;
  background: transparent;
  border: 2px solid white;
  color: white;
}
.buttons{
    display: flex;
    gap: 5px;
    justify-content: end;
  margin-top: 25px;
  align-items: end;
}
.buttons button{
    background: transparent;
    border: 2px solid black;
    color:black;
    border-radius: 6px;
}


/* 📱 Mobile */
@media (max-width: 768px) {
  .slider {
    height: 350px;
  }

  .slide {
    width: 140px;
    height: 180px;
    padding: 10px;
  }

  .slide.active {
    width: 220px;
    height: 240px;
  }

  img {
    height: 50px;
  }

  /* Optional: paragraph hide on mobile */
  .slide.active p {
    display: none;
  }
}

/* 📲 Small Mobile */
@media (max-width: 480px) {
  .slide {
    width: 120px;
    height: 160px;
  }

  .slide.active {
    width: 200px;
    height: 220px;
  }

  h2 {
    font-size: 14px;
  }

  button {
    padding: 6px 10px;
    font-size: 12px;
  }
}/* End custom CSS */