﻿.carrousel img {
    display: none;
    object-fit: cover;
}
.carrousel img.active {
    display: block;
}
.carrousel-nav {
    margin-top: 1em;
    display: flex;
    justify-content: center;
    gap: 5px;
    list-style: none;
}
    .carrousel-nav li {
        height: 11px;
        width: 11px;
        border-radius: 50%;
        text-indent: -9999px;
        cursor: pointer;
        background-color: rgb(0 0 0 / 0.6);
}
.carrousel-nav li.active {
    cursor: default;
    background-color: rgb(0 0 0 / 0.9);
}