

.slick-slide img {
    width: 100%; /* Use full width of the slide */
    max-width: 250px; /* Set a maximum width for the image */
    height: auto; /* Maintain the aspect ratio */
}


/* Additional styling for the slider */
.slick-list {
    padding: 0; /* Remove padding around the slider */
    overflow: hidden; /* Hide any overflow */
}

 
/* Next and previous buttons */
.prev, .next {
    position: absolute;
    top: 55%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
/*    z-index: 10;  Ensure buttons appear above slides 
*/        cursor: pointer; /* Change cursor to pointer for both buttons */

}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
    border-radius: 3px 0 0 3px;

}
.next:hover {
    background-color: rgb(253, 82, 0);
    color: white;
/* Caption text */
}
.prev:hover {
    background-color: rgb(253, 82, 0);
    color: white;
/* Caption text */
}
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
}

/* Number text (e.g., 1 / 3) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* Dots */
.dots {
    position: absolute;
    bottom: 10px; /* Position the dots at the bottom of the slideshow */
    width: 100%; /* Full width to center dots */
    margin-left: 700px;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    background-color: rgb(238, 119, 0);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    margin: 0 2px; /* Add space between dots */
}

/*.active, .dot:hover {
    background-color: #717171;
}*/


/*
 Keyframes for sliding in from the left 
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);  Start from left off-screen 
    }
    100% {
        transform: translateX(0);  End at the normal position 
    }
}*/



@media only screen and (max-width: 768px) {

 

    /* Smaller padding and font sizes for navigation buttons */
    .prev, .next {
        padding: 10px; /* Reduce padding for mobile */
        font-size: 14px; /* Smaller font for buttons */
                margin-left: 10px;
        margin-right: 10px;
        display: none;
    }

    /* Center the dots and adjust spacing */
    .dots {
        bottom: 5px; /* Move dots closer to the bottom */
        margin-left: 0; /* Center the dots */
        text-align: center;
    }

   
}



