.opaque-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.39);
    border-radius: 10px;
}

.dynamisable {
    overflow: hidden;
}

.dynamisable img {
    transition: transform 0.3s ease-in-out;
}

.dynamisable:hover img{
    transform: scale(1.1);
}


.fondBleu {
    background-color: var(--primary-color);
}

.bouton_blanc {
    background-color: white; 
    color: black; 
    border-radius: 50px; 
    border: none;
    cursor: pointer;
}

.margin-top {
    margin-top: auto;
}

.bouton_blanc:hover {
    color:var(--primary-color);
}

.bouton_homepage {
    height: 40px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    padding: 0rem 1.5rem;
    align-items: center;
}

@media screen and (max-width: 500px) {
    .bouton_homepage {
        padding: 0rem 0.75rem;
    }
}

.contenu {
    padding: 0 32px;
    margin: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.conteneurFooter .contenu{
    max-width: 1080px;
    margin: 0 auto;
}

@media screen and (max-width: 500px) {
    .contenu {
        padding: 0px 16px;
    }
}

.grid-container {
    display : grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: dense;
}

.grid-container-smaller {
    display : grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-flow: dense;
}

@media screen and (max-width: 1000px) {
    .grid-container-smaller {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .grid-container-smaller {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-container {
        grid-template-columns: repeat(1, 1fr);
    }
}


.grid-tuile {
    /* grid-column: span 2; */
}

.grid-tuile-smaller {
    grid-column: span 1;
}

.scroll_bar_container {
    scrollbar-color: #44bcc9 transparent;
    scrollbar-width: thin;
    padding: 1rem 0;
}

.scroll_bar_container::-webkit-scrollbar {
    height: 4px;
    width: 4px;
    border: 1px solid #44bcc9;
}

.removeGapEndBlock {
    margin-bottom: -3rem;
}

/* GAMMES */

.tuile_gamme {
    position: relative;
    background-position: center; 
    background-size: cover; 
    /* width: 13rem;  */
    height: 15rem;
    border-radius: 10px;
}

.tuile_gamme img {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
}

.tuile_gamme_texte {
    color: white;
    margin-top: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12rem;
    text-align: center;
    transform: translate(-50%, -50%);
}

.tuile_gamme_bouton {
    margin-bottom: 1rem;
    z-index: 1;
}

/* PhotoHero */

.video-wrapper img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

/* VIDEO */

.video-wrapper {
    height: 100%; 
    width: 100%; 
    top:0;
    max-height: 750px; 
    aspect-ratio: 16/9;
    background-color: #000;
}

.video-homepage {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media screen and (max-width: 500px) {
    .video-wrapper {
        aspect-ratio: 9/16;
    }
    .video-wrapper img {
        aspect-ratio: 9/16;
    }
}

.tuile_video {
    z-index:3;
    top:40%;
    left:100px;
    transform:translate(0,-50%);
    padding:0;
}

@media screen and (max-width: 500px) {
    .tuile_video {
        top: 75% 
    }

    .videoHomePageMobile {
        left: 16px !important;
    }
}

.tuile_video h2 {
    color: #FFF;
    font-family: opensansregular;
    font-size: 45px;
    font-weight: normal;
}

.disabilityDiv {
    height: 100%; top: 0; width: 100%; z-index: 2
}

/* Sous_Famille */

.tuile_sous_famille {
    /* max-width: 20rem; 
    max-height: 20rem; */
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.tuile_sous_famille img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
}


/* Types_produits */

.type_produit_container{
    gap: 1rem; 
    overflow-y: hidden; 
    overflow-x: scroll;
}

.type_produit_container::-webkit-scrollbar {     
    width: 0px;
}

.tuile_types_produits {
    padding: 1rem 0;
    width: 17rem; 
    height: 10rem;
    border-radius: 10px;
    background-color: #f2f6f7;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    flex: 10 0 auto;

    user-select: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.tuile_types_produits img {
    width: 90%;
    height: 70%;
    object-fit: contain;
}

/* USP */

.usp_container {
    overflow-y: hidden; 
    overflow-x: scroll;
}

.tuile_usp {
    width: 7rem;
    height: 7rem;
    font-size: 12px;
    flex: 10 0 auto;

    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none;
}

/* @media screen and (max-width: 780px) {
    .tuile_usp {
        flex: 1 0 auto;
    }
} */

.tuile_usp img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.tuile_usp_titre {
    font-weight: bold;
}

/* Discours_de_marque */

.bloc_discours {
    padding: 3rem 0;
    gap: 3rem;
}

.containerDiscours {
    gap: 3rem;
    flex-wrap: wrap;
}

.tuile_discours {
    width: 20rem;
}

.tuile_discours_titre {
    margin-bottom: 2rem;
}

/* Reassurance */

.tuile_reassurance {
    width: 33rem;
    flex: 10 0 auto;
    border-radius: 20px;
}

@media screen and (max-width: 600px) {
    .tuile_reassurance {
        flex: unset; 
    }
}

.tuile_reassurance img{
    width: 100%;
    height: 15rem;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    object-fit: cover;
    object-position: center;
}

.tuile_reassurance_text_container {
    padding: 1rem 1.5rem;
    flex: 10 0 auto;
}

/* CallToAction */
.callToAction_container {
    color: #f2f6f7;
    padding: 2rem 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media screen and (max-width: 1000px) {
    .callToAction_container {
        grid-template-columns: repeat(1, 1fr);
    }
}

.callToAction_container .logo-reseaux {
    width: 3.5rem;
}

.inputCallToAction {
    border-radius: 20px;
    height: 3rem;
    padding: 1rem 2rem;
    color: white;
    border: white 1px solid;
    background-color: var(--primary-color);
    box-sizing: border-box;
}

/* Avis Presse */

.bloc_avisPresse {
    padding: 3rem 0;
}

@media screen and (max-width: 650px) {
    .bloc_avisPresse .slick-arrow {
        display: none !important;
    }

    .carousel {
        width: auto;
    }

    .titreArticleBasPage {
        width: 80%;
        padding: unset;
        height: unset;
    }
}

.blocArticle {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
    font-size: 14px;
}

.blocArticle .titreArticleBasPage {
    font-size: 16px;
    padding: 1rem 16px;
}

.blocArticle > .contenuArticle {
    width: 80%;
}

.mediaArticleBasPage {
    height: auto;
}

.mediaImgArticle {
    width: 10rem;
}

/* avis Client */

@media screen and (max-width: 600px) {
    .avisClient_container .slick-arrow {
        display: none !important;
    }
}

.card {
    box-sizing: border-box;
    height: 14rem;
    margin: auto;
}

.card-content {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    gap: 1rem;
    height: 100%;
    max-height: 100%;
    padding: 1rem;
}
.card-body {
    height: 100%;
}

.card-title {
    text-align: left;
    margin: unset;
}

.contenu-text {
    text-align: left;
    padding: unset;
}

.card-author {
    margin-top: auto;
    font-weight: bold;
}

.card-link {
    color: var(--secondary-color);
    text-decoration: underline;
}

.avisClient_container .slick-next {
    right: -20px;
}

/* velos Recents */

.velos_Recents_container {
    gap: 1rem; 
    padding: 1rem 0;
    overflow-y: hidden; 
    overflow-x: scroll;
    scrollbar-color: #44bcc9 transparent;
    scrollbar-width: thin;
    justify-content: safe center;
}

.velos_Recents_container::-webkit-scrollbar {
    height: 4px;
    width: 4px;
    border: 1px solid #44bcc9;
}

.tuile_velos_Recents {
    padding: 1rem 0;
    width: 17rem; 
    max-width: 25rem;
    /* height: 10rem; */
    border-radius: 10px;
    background-color: #f2f6f7;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;

    user-select: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;

    flex: 10 0 auto;
}

.tuile_velos_Recents img {
    width: 100%;
    height: 90%;
    object-fit: contain;
}

.tuile_velos_Recents_texte {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    padding-left: 2rem;
}

/* SEO */

.contenuSEO {
    margin: 0 auto;
    width: 80%;
}

/* footer homepage */

.conteneurFooter {
    margin-top: 0;
}

.conteneurFooter .footer{
    border: none;
}