.itemo {
    margin: 40px 0px;
    margin-left: 7px;
    border: 0;
    width: 33%;
    height: 100%;
    min-width: 265px;
    border-radius: 8px;
    position: relative;
    transition: box-shadow .15s ease;
}
.item__image {
    position: relative;
    margin-bottom: 10px;
    text-align: center;
}
.item__image a {
    text-decoration: none;
    background-color: transparent;
}
.item__profile {
    color: #252858;
    font-size: 22px;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: 'Moderat'
}
.items {
    position: relative;
    height: auto;
}
/* CAROUSEL */
.carousel {
    position: relative;
    overflow: hidden;
    height: auto;

    width: auto;
}
.carousel__container {
    transition: transform 0.3s;
    transform: translate3d(0, 0, 0);
}
.carousel__container::after {
    content: '';
    clear: both;
    display: table;
}
.carousel__item {
    float: left;
}
.carousel__next, .carousel__prev {
    width: 40px;
    height: 40px;
    background: #f8fafc url('/assets/les-assets/le_svg/Arrow-Right-1--Streamline-Ultimate.png') center center no-repeat;
    border-color: transparent;
    color: #64748b;
    background-size: 20px 20px;
    border-radius: 50%;
    top: 50%;
    margin-top: -20px;
    right: 8px;
    box-shadow: 0 2px 4px 0 rgba(24,24,24,0.16);
    cursor: pointer;
    position: absolute;
    transition: transform 0.3s, opacity 0.3s;
}

.carousel__next:hover, .carousel__prev:hover{
    transform: scale(1.2);
}
.carousel__prev{
    right: auto;
    background: #f8fafc url('/assets/les-assets/le_svg/Chevron-Left--Streamline-Heroicons.png') center center no-repeat;
    left: 8px;
}
.carousel__next--hidden,  .carousel__prev--hidden{
    opacity: 0;
}