﻿/* Sliders bannières */
.banners-group {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.thumbnails-container {
    z-index: 1;
    position: absolute !important;
    left: 50%;
    bottom: 5px;
    transform: translate(-50%, 110%);
    transition: transform .3s;
}
.banners-group:hover .thumbnails-container {
    transform: translate(-50%, 0);
}
.thumbnails-container .swiper-slide {
    width: 105px !important;
    height: 70px !important;
    background-color: #000;
    border-radius: 13px 6px 20px 13px;
    overflow: hidden;
}
.thumbnails-container .swiper-slide:hover {
    cursor: pointer;
}
.thumbnail-image {
    opacity: 0.5;
    transition: opacity .3s;
}
.thumbnails-container .swiper-slide:hover .thumbnail-image {
    opacity: 1;
}
/* Fin de liders bannières */

.index__revive-bento__container {
    padding: 15px;
    background: white;
    margin: 50px 0px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    border-radius: 25px;
}

    .index__revive-bento__container img {
        height: 100%;
        border-radius: 15px;
        transition: all 0.5s;
        transform: scale(1.00);
        max-height: fit-content;
    }

        .index__revive-bento__container img:hover {
            transition: all 0.5s;
            transform: scale(0.98);
        }

.index__revive-bento__left-container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.index__revive-bento__right-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

@media screen and (max-width: 960px) {
    .index__revive-bento__container {
        padding: 5px;
        gap: 5px;
        border-radius: 15px;
    }
}

@media screen and (max-width: 769px) {
    .index__revive-bento__container {
        flex-direction: column;
        margin: 25px 5px;
    }

    .index__revive-bento__right-container {
        flex-direction: row;
        gap: 5px;
    }
}