.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-container1 {
    background-color: #b4a5a5;
    width: 100%;
    height: 100px;
}

.slider {
    display: flex;
    width: 100%;
    height: 100%;


}

.slide {
    min-width: 100%;
    position: relative;
    overflow: hidden;
}

.myprogress-container {
    position: absolute;
    width: 100%;
    bottom: 0px;
}

.myprogress-bar {
    width: 0;
    height: 5px;
    background-color: rgba(197, 194, 194, 0.5);
    text-align: center;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.slide img {
    width: 100%;
    height: 100%;
    animation: zoomIn 30s infinite;
}

.slide video {
    width: 100%;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.pagination button {
    width: 18px;
    height: 18px;
    background-color: transparent;
    border: none;
    border-radius: 50%;
    margin: 0 4px;
    cursor: pointer;
    transition: outline 0.3s;
    outline: 1px solid #ffffff;
}


.pagination button.active {
    background-color: #ffffff;
}