:root {
    --animationSpeed: 40s;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
    }
}

.slider {
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: auto;
}

.slide-track {
    animation: scroll var(--animationSpeed) linear infinite;
    display: flex;
    width: calc(250px * 14);
}

.hover-shadow {
    transition: box-shadow 0.3s ease-in-out;
}

.hover-shadow:hover {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}


.pagination {
    display: inline-block;
}

.pagination a {
    color: black;
    float: left;
    font-weight: 600;
    border: 1px solid #000;
    margin-right: 4px;
    padding: 8px 16px;
    text-decoration: none;
}

.pagination a.active {
    background-color: #E21E25;
    color: white;
    border: 1px solid #000;
    border-radius: 5px;
}

.pagination a:hover:not(.active) {
    background-color: #ddd;
    border-radius: 10px;
}


@media only screen and (max-width: 600px) {
    .banner-top {
        margin-top: 120px;
    }
}


/* whatsapp feature */
.my-floats:hover {
  transform: scale(1.1);
}
.my-floats {
  width: 80px;
  left: 5px;
  bottom: 0px;
  position: fixed;
  z-index: 999;
  transition: transform 0.5s ease;
  filter: drop-shadow(2px 4px 6px green);
}

@media only screen and (max-width: 600px) {
  .my-floats:hover {
    transform: scale(1.1);
  }
  .my-floats {
    width: 80px;
    left: 5px;
    bottom: 0px;
    position: fixed;
    z-index: 999;
    transition: transform 0.5s ease;
	filter: drop-shadow(2px 4px 6px green);
  }
    
}