.img-wrapper {
    max-width: 100%;
    height: 65vw;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

img {
    max-width: 100%;
    max-height: 100%;
}

.carousel{
    position: relative;
    width: 100%;
}


@media screen and (min-width: 1000px) {
    .carousel{
        width: 90vw;
        margin: 0 calc((100% - 90vw)/2);
    }
}

.carousel button{
    position: absolute;
    top: calc(100% / 2);
    border: 0px;
    font-weight: bold;
    font-size: 45px;
    line-height: 38px;
    padding: 0 1vw;
    background-size: 40%;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel button.carousel-control-prev{
    left: 0px;
    text-align: left;
}

.carousel button.carousel-control-next{
    right: 0px;
    text-align: right;
}

.carousel-inner {
    display: flex;
}

.carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100% / 7);
    padding: 3px;
}

@media screen and (max-width: 750px) {
    .carousel-item {
        flex: 0 0 calc(100% / 5);
    }
    .carousel-item img{
        height: 157px;
    }
}

@media screen and (max-width: 576px) {
    .carousel-item {
        flex: 0 0 calc(100% / 3);
        max-width: 130px;
        min-width: 130px;
    }
    .carousel-item img{
        width: 130px;
        height: 130px;
    }
}

.img-wrapper {
    height: 21vw;
}

.carousel-inner {
    padding: 0px;
}

.card {
    margin: 0 0.5em;
    border-radius: 0;
    box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
    font-size: 0.9em;
}

.carousel-control-prev,
.carousel-control-next {
    width: 6vh;
    height: 6vh;
    background-color: #e1e1e1;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 0.8;
}

.visually-hidden{
    display: none;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
}