﻿.MultiCarousel {
    float: left;
    overflow: hidden;
    padding: 0;
    width: 100%;
    position: relative;
}

.MultiCarousel .MultiCarousel-inner {
    transition: 1s ease all;
    float: left;
    display: flex;
    flex-direction: row;

}

    .MultiCarousel .MultiCarousel-inner .item {
        float: left;
        overflow: hidden;
        position: relative;
        margin: 0 5px;
    }
        .MultiCarousel .MultiCarousel-inner .item .image {
            height: 300px;
            object-fit: cover;
            width: 100%;
            border: 0;


        }
.MultiCarousel .MultiCarousel-inner .item:hover .description {
    opacity: 1;
}

    .MultiCarousel .MultiCarousel-inner .item > div {
        text-align: center;
        padding: 0;
        margin: 0;
    }

    .MultiCarousel .leftLst,
    .MultiCarousel .rightLst {
        position: absolute;
        border-radius: 0;
        top: calc(50% - 20px);
        height: 44px;
        width: 44px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 0;
        line-height: 1em;
        background: #333;
        color: #fff;
        border: none;
    }

.MultiCarousel .leftLst {
    left: 0;
}

.MultiCarousel .rightLst {
    right: 0;
}

.MultiCarousel .leftLst.over,
.MultiCarousel .rightLst.over {
    pointer-events: none;
    background: #ccc;
    color: #000;
}
.MultiCarousel .leftLst.over svg,
.MultiCarousel .rightLst.over svg {
    pointer-events: none;
    background: #ccc;
    color: #000;
    fill: #000;
    path: #000;
}
    .MultiCarousel .leftLst:focus,
    .MultiCarousel .rightLst:focus {
        border: 0;
        outline: none;
        box-shadow: none;
        text-decoration: none;

    }
    .description {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    color: #ffffff;
    padding: 10px;
    text-align: center;
    opacity: 0; /* Hidden by default */
    transition: opacity 0.3s ease;
    margin: 0 4px;
    top: 0;
}

.description .content p {
    margin: 0;
}

.description .content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    height: 100%;
    padding: 10px;
}


