
.slider-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: .5em;
}

.slider-container a:hover {
    text-decoration: none;
    color: #32edf2;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}


.caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    text-align: center;
    padding: .5rem 0;
    box-sizing: border-box;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 2rem;
    background-color: rgba(0, 0, 0, 0.45);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    z-index: 1000;
    padding: .25em;
    min-width: 50px;
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}

.arrow:hover {
    color: #32edf2;
    background-color: rgba(0, 0, 0, 0.65);
    border: none;
}