﻿.carousel-item img {
    max-height: 125px;
}

.carousel-item .image-wrapper {
    position: relative;
    display: inline-block;
    margin: 5px 10px;
}

.carousel-item .image-name {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px;
    display: none;
}

.carousel-item .image-wrapper:hover .image-name {
    display: block;
}

.carousel-indicators {
    bottom: -37px !important;
}

.carousel-indicators li {
    background-color: #3D6399 !important;
}

.carousel-item img {
    filter: grayscale(1);
    cursor: pointer;
    object-fit: contain;
}

.carousel-item img:hover {
    transition: ease-in-out 300ms;
    filter: grayscale(0);
}

@media (max-width: 576px) {
    .image-wrapper {
        flex: 1 0 100%;
    }

    .carousel-item .image-wrapper {
        text-align: center;
    }

    .carousel-indicators li {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }

    .carousel-item img {
        filter: grayscale(0);
        /*width: 100%;*/
    }

    .item-mobi img {
        width: 100%;
    }
}
