


.slider {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;

}
.bennersection{
    padding-bottom: 60px;
}

.slides {
    position: relative;
    width: 100%;
    height: auto;
}

.slide {
    position: absolute;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.05);
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

.slide.active img {
    transform: scale(1); /* Zoom in effect */
}

.dots {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 5px 0;
border: 2px solid white;
transition: all 300ms ease-in;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s ease;
    cursor: pointer;
}
.dot:hover{ background-color: #fff;}

.dot.active {
    background-color: white;
    height: 30px;
}

@media (max-width:992px) {

    .bennersection{
        padding-bottom: 40px;
    }
}

@media (max-width:576px) {

    .bennersection{
        padding-bottom: 0px;
    }

    .dot {
        height: 8px;
        width: 8px;
        margin: 2px 0;
    border: 2px solid rgba(255, 255, 255, 0.521);
    transition: all 300ms ease-in;
        border-radius: 5px;
        display: inline-block;
        transition: background-color 0.3s ease;
        cursor: pointer;
    }
    .dot.active {
        background-color: rgba(255, 255, 255, 0.521);
        border: 2px solid rgba(255, 255, 255, 0);
        height: 20px;
    }
}