﻿/* ===== SIMPLE SLIDER ===== */
.my-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.my-slide {
    display: none;
    text-align: center;
}

    .my-slide.active {
        display: block;
    }

    /* IMAGE */
    .my-slide img {
        width: 100%;
        height: auto;
        max-height: 500px;
        object-fit: contain; /* NO CUT */
        background: #000;
    }

/* CAPTION */
.my-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    background: rgba(0,0,0,0.6);
    padding: 8px 15px;
    border-radius: 5px;
}

/* BUTTONS */
.my-prev, .my-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    font-size: 22px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
}

.my-prev {
    left: 10px;
}

.my-next {
    right: 10px;
}

    .my-prev:hover, .my-next:hover {
        background: #2e7d32;
    }
