﻿.mza-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    overflow:hidden;
}

    .mza-slideshow .mza-title {
        position: absolute;
        top: 60%;
        right: 15%;
        transform: translate(0, -50%);
        text-shadow: 0 0 5px white, 0 0 10px white, 0 0 20px white;
    }

    .mza-slideshow .slides {
        display: flex;
        width: 100%;
        height: 100%;
        transition: transform 0.5s ease;
        
    }

    .mza-slideshow .slide {
        flex: 0 0 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
    }

    .mza-slideshow .controls {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
        z-index: 2;
    }

        .mza-slideshow .controls button {
            background: rgba(0,0,0,0.5);
            color: white;
            border: none;
            font-size: 24px;
            padding: 10px;
            cursor: pointer;
        }

    .mza-slideshow .indicators {
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 2;
    }

    .mza-slideshow .indicator {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: #ccc;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

        .mza-slideshow .indicator.active {
            background-color: #fff;
        }

    .mza-slideshow .progress-bar {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 2px;
        background-color: #29a;
        animation: grow 5s linear forwards;
        z-index: 2;
    }

@keyframes grow {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}









