﻿.bs-carousel-incr .carousel-inner {
    padding: 1em;
}

.bs-carousel-incr .card {
    margin: 0 .5em;
    box-shadow: 2px 6px 8px 0 rgba(22,22,26,.18);
    border: none;
    height: 500px;
}

.bs-carousel-incr .carousel-control-next, .bs-carousel-incr .carousel-control-prev {
    background-color: #e1e1e1;
    width: 6vh;
    height: 6vh;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%)
}

.bs-carousel-incr .card .img-wrapper {
    max-width: 100%;
    height: 20em;
    display: flex;
    justify-content: center;
    align-items: center
}

    .bs-carousel-incr .card .img-wrapper img {
        max-height: 100%
    }


@media (min-width:768px) {
    .bs-carousel-incr .carousel-item {
        margin-right: 0;
        flex: 0 0 33.333333%;
        display: block;
        backface-visibility: visible
    }

    .bs-carousel-incr .carousel-inner {
        display: flex
    }
}

@media (max-width:767px) {
    .bs-carousel-incr .card .img-wrapper {
        height: 17em
    }
}

