﻿
body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 910;
    background-color: #000;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

    .slider-wrapper img {
        flex: 0 0 100%;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }


.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    padding: 0;
    margin: 0 6px;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease;
}

    .dot.active, .dot:hover {
        background-color: white;
    }
