.client_page_1 {
    background: white;
}

.produit_reveler {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: white;
}

.produit_reveler .desktop {
    display: flex;
}

.produit_reveler .mobile {
    display: none;
}

.produit_reveler .line.top {
    height: 35%;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
}

.produit_reveler .line.top .left {
    width: 65%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.produit_reveler .line.top .left img {
    width: 100%;
    max-width: 1082px;
    height:100%;
    object-fit: contain;
    object-position: center;
}
.produit_reveler .line.top .right {
    width: 35%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    box-sizing: border-box;

}

.produit_reveler .line.top .right img {

    height: 100%;
    width: 100%;
    margin: auto;

    object-fit: contain;
    object-position: center;

}

.produit_reveler .line.top .right .hashtag {
    height: 4vh;


}

.produit_reveler .line.top .right .anim_hlc {
    position: relative;
    height: 100%;
    width: 100%;
    flex-shrink: 1;
    padding: 20px 0;
}

.produit_reveler .line.top .right .anim_hlc img {
    position: absolute;
    height: 90%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;

}

.produit_reveler .line.top .right .adresse {
    height: 4vh;
}

.produit_reveler .line.bottom {
    position: relative;
    height: 65%;
    width: 90%;
    max-width: 2400px;
    display:grid;
    grid-template-columns: repeat(5, 1fr);   
    grid-gap: 20px;
    padding-bottom:20px;
}

.produit_reveler .line.bottom .link{
    display:block;
    position:relative;
    width:100%;
    height:100%;
}
.produit_reveler .line.bottom:has(.link:hover) .link:hover img{
    transform:scale(0.98);
}
.produit_reveler .line.bottom img{
    position:absolute;
    display: block;
    width: 100%;    
    height:100%;
    top:0;
    left:0;
    z-index: 0;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
    
    object-fit: cover;
    object-position: center;
}

@media (orientation: portrait) {


    .produit_reveler .desktop {
        display: none;
    }

    .produit_reveler .mobile {
        display: block;
    }

    .produit_reveler .line.top {
        flex-direction: column;
        height:20%;
    }

    .produit_reveler .line.top .left {
        width: 100%;
        height: 100%;
        flex-direction: column;
    }

    .produit_reveler .line.top .left img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }  
    .produit_reveler .line.top .right {
        display: none;
    }
    .produit_reveler .line.bottom {
        height:80%;
        grid-template-columns: repeat(3, 1fr);
    }
}