 * {
    margin: 0;
    padding: 0;
}

.slider-area h2 {
    text-align: center;
    font-family: impact;
    font-size: 60px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 100px 0 30px 0;
    color: #fff;
}
.wrapper {
   display: flex;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 31px;
    padding: 2.5rem;
    background: #fff;
    box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
}
.item {
    animation: animate 25s alternate linear infinite;
}
.container:hover .item {
    animation-play-state: paused;
}
@keyframes animate {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-1100px, 0, 0);
    }
}
@media (max-width:767px) {
    .slider-area h2 {
        font-size: 30px;
    }
    .wrapper {
        width: 95%;
        border-radius: 0;
        padding: 0;
    }
}

.floating-button {
  position: fixed; /* Makes the button fixed relative to the viewport */
  bottom: 20px;    /* Positions it 20px from the bottom of the viewport */
  right: 20px;     /* Positions it 20px from the right of the viewport */
  background-color: transparent; /* Example background color */
  color: white;    /* Example text color */
  border-radius: 50px; /* Rounded corners for a circular look */
  border: none;    /* Removes default button border */
  cursor: pointer; /* Changes cursor to a pointer on hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow */
  z-index: 1000;   /* Ensures the button stays on top of other content */
}