@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');/*import des polices*/
@import url('https://fonts.googleapis.com/css2?family=Rufina:wght@400;700&display=swap');/*import des polices*/

*{
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;/*police pricipale du site*/
    font-size: 1rem;
    font-weight:500;
    user-select:none;/*empêche l'utilisateur de séléctionner les éléments du site*/
}
html, body{
    overflow-x: hidden; /* permet de cacher les bouts du site qui sortent du cadre.*/
}

#wrapper_body{/* pas sur que ce soit une best practice... A modif plus tard*/
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

#carousel{
    width: 100vw;
    height: 28em;
    overflow: hidden;
    position: relative;

}

.carrousel_wrapper{
    width: 100vw;
    height: 28em;
    overflow: clip;
}
.carrousel_wrapper div{
    position: absolute;
    height: 28em;
    width: 100vw;
    background-size: cover;
    transition:transform 1s ease-out;
    overflow: hidden;

}

#carrousel_wrapper_1{
    background-image: url("../assets/index/carrousel/carrousel_1_bg.png");
    background-position-y: center;
}
#carrousel_1{
    background: linear-gradient(110deg,rgba(31, 183, 217, 0.15), rgba(31, 183, 217, 1));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding-left: calc(30vw - 20em);
}
#carrousel_1_logo_zamz{
    width: 16em;
    z-index: 2;
}
#carrousel_1_texte{
    font-weight:400;
    color: #FFF;
    font-size: 2.5em;
    text-transform: uppercase;
    z-index: 2;
    max-width: 14em;
}

#carrousel_1_texte_bold{
    font-weight: 800;
    color: #FFF;
    text-transform: uppercase;
    font-size: 1em;
    z-index: 2;
    max-width: 12em;
}

#carrousel_1_chieng{
    position: relative;
    height: 28em;
    z-index: 1;
    left: calc(55vw + 10em);
}



#carrousel_wrapper_2{
    background-image: url("../assets/index/carrousel/carrousel_2_bg.png");
    background-position-y: center;
}
#carrousel_2{
    background: linear-gradient(220deg,rgba(65, 174, 121, 0.013), rgba(65,174,122,255));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#carrousel_2_logo_zamz{
    height: 10em;
    margin-bottom: 4em;
}

#carrousel_2_texte{
    font-weight: 800;
    color: #FFF;
    font-size: 2.5em;
    text-align: center;
}

#carrousel_wrapper_3{
    background-image: url("../assets/index/carrousel/carrousel_3_bg.png");
    background-position-y: center;
}
#carrousel_3{
    background: linear-gradient(110deg, rgba(255, 168, 148, 0.139), rgba(255,167,148,255));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#carrousel_3_logo_zamz{
    width: 10em;
    margin-bottom: 1.5em;
}
#carrousel_3_texte{
    color: #FFF;
    text-align: center;
    font-weight: 700;
    font-size: 1.7em;
    z-index: 2;
    max-width: 24em;
}

#carrousel_3_duo_et_prenoms{
    z-index: 1;
    position: relative;
    overflow: visible;
    height: 28em;
    left:calc(55vw + 13em);
}
#carrousel_3_duo{
    height: 28em;
}
#carrousel_3_prenoms{
    position: relative;
    bottom: 2em;
    right: 1em;
    color: #FFF;
    font-weight: 400;
    font-style: italic;
    font-size: 2em;
    z-index: 100;

}

.enlever_transition{
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}



/*------------------- TEXTE AVANT GAMMES-------------------*/

#wrapper_avant_gammes{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 5em 2em;
}
#description_avant_gammes{
    font-weight: 500;
    color: #494949;
    font-size: 1.6em;
    text-align: center;
    text-transform: uppercase;
    padding: 0 1em .5em 1em;
    border-bottom: 2px solid #494949;
}


/*-------------------GAMMES HUILE-------------------*/


.gammes{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 40em;
}

.huile_relax,.huile_boost{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    height: 100%;
    width: 50vw;
    background-size: contain;
    background-repeat: no-repeat;
}
.huile_relax{
    background-color: #30668D;
    background-image: url("../assets/index/gamme/bg_relax.png");
    background-position: left;
}
.huile_boost{
    background-color: #67AC76;
    background-image: url("../assets/index/gamme/bg_boost.png");
    background-position: right;
}
.titre_huile{
    font-weight: 700;
    font-size: 3.5em;
    color: #FFF;
    margin-top: 1em;
}

#logo_boost,#logo_relax{
    height: 7em;
    margin: 2em 0 1.5em 0;
}

.description_gamme{
    text-align: center;
    font-weight: 600;
    color: #FFF;
    font-size: 1.4em;
    max-width: 10em;
}

#mockup_relax{
    position: relative;
    top:3em;
    width: 10.5em;
    z-index: 2;
}

#mockup_boost{
    position: relative;
    top:2.2em;
    width: 10.5em;
    z-index: 2;
}
.gamme_shadow{
    position: relative;
    bottom: 8em;
    width: 20em;
    height: 0em;
    z-index: 1;
}

#relax_shadow{
    box-shadow: 0 0 9em 7em rgba(24, 158, 255, 0.437) ;
}

#boost_shadow{
    box-shadow: 0 3em 9em 7em #ffffffA0 ;
}

.gammes_acheter{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 7em;
}

#tiret_gamme_relax,#tiret_gamme_boost{
    width: 35vw;
    height: .5em;
}
#tiret_gamme_relax{
    background-color: #30668D;
    border-radius: 0 1em 1em 0;
}
#tiret_gamme_boost{
    background-color: #67AC76;
    border-radius: 1em 0 0 1em;
}

#bouton_acheter_gamme{
    height:2.6em;
    border-radius: 3em;
    background:linear-gradient(90deg,#30668D,#67AC76);
    padding:.6em 7em .6em 7em;
    box-shadow: .3em .3em .3em 0 #00000039;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

#texte_bouton_acheter_gamme{
    font-weight: 700;
    font-size: 1.6em;
    text-align: center;
    color: #FFF;
}

/*-------------------DESCRIPTION DISCLAIMER-------------------*/


#texte_apres_gamme{
    margin: 6em 2em 5em 2em;
    max-width: 50em;

}

#texte_apres_gamme>p{
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.25em;
    text-align: justify;
    color: #494949;
}
#texte_apres_gamme>ul>p, #texte_apres_gamme>ul>li{
    color: #494949;
    font-size: 1.25em;
    font-weight: 400;
    margin-left: 1em;
    margin-bottom:.4em;
}

.bold_texte_apres_gamme{
    font-size: 1em;
    font-family: inherit;
    font-weight: 700 !important;
}

#disclaimer_medicaments{
    border: .2em solid #494949;
    max-width: 45em;
    padding: 2em 3em 1.7em 3em;
    text-align: center;
    color: #494949;
    font-weight: 400;
    margin-bottom: 4em;
}

.images_relatives{
    position: relative;
    height: 0;
}

#warning_disclaimer{
    position: relative;
    bottom: 1.3em;
    right: 11.5em;
    width: 3em;
    padding: 0 3em;
    background-color: #fff;
}

/*-------------------PRODUITS GAMME-------------------*/


#produits_gamme{
    display: flex;
    flex-direction: column;
    align-items: center;
}
#produits_gamme>p{
    font-weight: 900;
    font-size: 1.6em;
    color:#30668D;
    padding: 0 .5em .7em .5em;
    border-bottom: 2px solid #30668D;
    text-align: center;
    text-transform: uppercase;
}

#carrousel_produits_gamme{
    width: 100vw;
    display: flex;
    justify-content: center;
}

#wrapper_produits_carousel{
    display: flex;
    overflow-x: scroll;
    justify-content: start;
    flex-wrap: nowrap;
    width: max-content;
    padding:  2em 1em 4em 1em;
    gap:min(1em, 4vw);
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    position: relative;
}
#wrapper_produits_carousel::-webkit-scrollbar {
    display: none;
}

.wrapper_button_defiler_produits{
    width: 0;
    position: relative;
    display: none;
    align-items: center;
}

#bt_defiler_produits_similaires_avant, #bt_defiler_produits_similaires_arriere{
    position: relative;
    left: 0;
    background-color:#C6C6C6;
    border: none;
    border-radius: 2em;
    box-shadow: 0 1em 1em #00000040;
    z-index: 5;
    padding: 1.2em 1.5em 1em 1.3em;
}
#bt_defiler_produits_similaires_arriere{
    transform:translate(calc(0vw + .6em));
}
#bt_defiler_produits_similaires_avant{
    padding: 1.2em 1.3em 1em 1.5em;
    transform:translate(calc(100vw - 4.25em));
}
#bt_defiler_produits_similaires_avant img, #bt_defiler_produits_similaires_arriere img{
    height: 1em;
}



.card_produit{
    flex-shrink: 0;
    display: inline-block;
    background-color: #F8F8F8;
    border-radius: .5em;
    width: 18.5em;
    padding: .4em;
    margin: 0 min(2em, 2vw);
    text-decoration: none;
    box-shadow: .25em .5em .5em 0em #00000040;
}
.card_box_img_produit{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: #2E6D9D;
    color: #fff;
    height: 16.2em;
    border-radius: .35em;
    padding: 2em 0 .6em 0;

}


.card_type_huile{
    display: flex;
    align-items: center;
    gap: .9em;
}
.card_type_huile>p{
    font-size: 1.4em;
    font-weight: 700;
}
.card_type_anandavet>p, .card_type_nolavet>p{
    font-size: 1.4em;
    font-family: 'rufina';
    display: inline;
}
.card_type_anandavet>.r, .card_type_nolavet>.r{
    position: relative;
    font-size: .8em;
    bottom: .4em;
}
.card_type_huile>img{
    height: 1.8em;
}

.card_img_produit{
    max-height: 12em;
    max-width: 100%;
}

.card_wrapper_img_quantite{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.card_wrapper_img{
    width: 100%;
    height: 12em;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card_wrapper_quantite{
    width: 15.5em;
}
.card_wrapper_quantite>p{
    text-align: end;
    font-weight: 600;
    font-size: 1.1em;
}


.card_infos_produit{
    display: flex;
    padding: 1em 1em .0em 1em;
    justify-content: space-between;
    height: fit-content;
}

.card_recap_produit{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: fit-content;

}

.card_produit_animaux{
    font-weight: 300;
    font-size: 1.1em;
    color: #494949;
}

.card_produit_composition{
    display: flex;
    gap: 1em;
}
.card_produit_composition>p{
    font-weight: 700;
    color: #494949;
    font-size: 1.1em;
}
.card_produit_prix{
    font-weight: 700;
    color: #494949;
    font-size: 1.4em;
}


.card_produit_note{
    display: flex;
    gap: .5em;
    color: #494949;
    font-size: .9em;
}

.card_produit_note>img{
    height: 1.1em;
}

.card_produit_prix_vente_conseille{
    margin-bottom:.3em;
    font-weight: 500;
    color: #494949;
}


/*-------------------AVIS-------------------*/


.carrousel_produits_relax{
    width: 100vw;
    height: 40em;
}

#notes_boutique{
    background-color: #F9F9F9;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2em;
    padding: 4em 3em;
    box-shadow: .3em .5em .5em #c3c3c3;
}


#note_moyenne{
    display: flex;
    align-items: center;
    gap:2em;
}

#note_moyenne>p{
    font-size:1.6em;
    font-weight: 400;
    text-transform: uppercase;
    color: #494949;
}

#notes_boutique>a{
    color: #fff;
    background-color: #194B72;
    text-decoration: none;
    font-weight: 700;
    font-size:1.15em;
    padding: 1em 4em;
    border-radius: 4em;
    box-shadow: .2em .4em .4em #adacac;
}

#wrapper_avis{
    display: flex;
    overflow-x: scroll;
    justify-content: start;
    flex-wrap: nowrap;
    width: max-content;
    padding:  1em 1em 1em 1em;
    gap:min(5em, 4vw);
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    position: relative;
}
#wrapper_avis::-webkit-scrollbar {
    display: none;
}
.avis{
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .2em;
    margin: 1em 0;
    padding: 1.3em 2em 1em 2em;
    width: min(75vw, 19em);
    height: 11em;
    border-radius: 1em;
    box-shadow: .3em .5em .5em #cecece;
    overflow: hidden;

}



.nom_avis{
    font-weight: 700;
}
.date_avis{
    font-weight: 300;
}

.wrapper_etoiles{
    display: flex;
    gap: .6em;
}
.wrapper_etoiles>img{
    width: 1.1em;
}

.commentaire_avis{
    font-weight: 300;
    font-size: .9em;
    margin-top: 1.2em;
    overflow-y: auto;
}

.commentaire_avis::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
  }
  
.commentaire_avis::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0, 0, 0, .5);
    box-shadow: 0 0 1px rgba(255, 255, 255, .5);
  }


/*-------------------AVANCEE BIEN ETRE-------------------*/


#wrapper_avancee{
    border-radius: 0 0 0 10em;
    box-shadow: .3em .6em .6em #c3c3c3;
    width: 100vw;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#avancee_bien_etre{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4em 2.5em 5em 2.5em;
}


#avancee_bien_etre>h3{
    text-transform: uppercase;
    font-weight: 900;
    font-size:1.5em;
    color: #494949;
    max-width: 26em;
    text-align: center;
    background-color: #fff;

}
#texte_avancee_bien_etre{
    font-weight: 400;
    color: #494949;
    font-size: 1.05em;
    max-width: 41em;
    margin-top: 5.5em;
    z-index:1;
    background-color: #fff;
    text-align: justify;
}

.images_relatives_flacon{
    position: relative;
    height: 0;
    z-index:-2;
}  
#img_flacon{
    position: relative;
    align-self: flex-start;
    height: 35em;
    right: 30em;
    bottom: 32em;
    z-index:-2;

}

#ouvrir_description_avancee_bien_etre,#ouvrir_description_relax{
    display: none;
    position: relative;
    height: 0;
    z-index:2;
}

/*-------------------COMPETENCES VETERINAIRES-------------------*/

#competences_veterinaires{
    margin:5em 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#competences_veterinaires>h3{
    font-weight: 900;
    font-size: 1.5em;
    color: #494949;
    max-width: 20em;
    text-align: center;
    text-transform: uppercase;
    border-bottom: .1em solid #494949;
    padding: 0 2em 1.2em 2em;
    margin-bottom: 1.7em;
}
#competences_veterinaires>p{
    font-weight: 400;
    color: #494949;
    max-width: 45em;
    text-align: center;

}
.wrapper_card_contact{
    display: flex;
    justify-content: center;
    gap: min(15em, 8vw);
    flex-wrap: wrap;
    padding: 0 2em;
    margin-top: 3.5em;
}

.card_contact{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .7em;
    width: 20em;
}

.card_contact_image{
    background-color: #E0E0E0;
    border-radius:20em;
    height: 15em;
    box-shadow: 0 .5em 1em #00000012, 0 1em 2em #00000012, 0 2em 4em #0000000A, 0 4em 8em #0000000A, 0 8em 16em #0000000A;
    margin-bottom: 1.4em;
}
.card_contact_nom{
    font-weight: 700;
    font-size: 1.4em;
    color: #494949;
}
.card_contact_role,.card_contact_job,.card_contact_mail,.card_contact_tel{
    font-weight: 400;
    font-size: 1.1em;
    color: #494949;
    text-align: center;
}

.card_contact_ligne_horizontale{
    width: 14em;
    height: 1px;
    background-color: #555555;
}

#competences_veterinaires>a{
    color: #fff;
    background-color: #194B72;
    text-decoration: none;
    font-weight: 700;
    font-size:1.15em;
    padding: .6em 3em;
    border-radius: 4em;
    box-shadow: .2em .3em .3em #adacac;
    margin-top: 6em;
    text-align: center;
}


/*-------------------RESEAUX SOCIAUX-------------------*/


.reseau_social{
    width: 100vw;
    min-height: 26em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 4em 0 2em 0;
    gap:min(4em, 2vw);
}

#instagram{
    background: linear-gradient(90deg,#B25AD5,#CD8148);
}
#facebook{
    background: linear-gradient(90deg,#3C6FB6,#8193BB);
}
#tiktok{
    background: linear-gradient(90deg,#40D0CD,#D12D4C);
    box-shadow: 0 .3em .3em #adacac;
}


.headline_reseau{
    font-size: 1.4em;
    font-weight: 900;
    color: #fff;
    max-width: 13em;
    text-transform: uppercase;
}
.description_reseau{
    font-size: 1.15em;
    font-weight: 400;
    color: #fff;
    max-width: 15em;
    margin-top: 1em;
}

.logo_reseau_social{
    height: 15em;
    margin: 2em 0 0 0;
}

.publication_reseau_lien{
    display: flex;
    flex-direction: column;
    align-items: center;
}



.dernieres_publications{
    height: 23em;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#publications_tik_tok{
    margin: 0;
    width: 50em;
}
.lien_post{
    text-decoration: none;
    height: 15em;
}

.lien_post:first-child .post_reseaux{
    right: -5em;
}
.lien_post:nth-child(2) .post_reseaux{
    z-index:2;
    height: 20em;

}
.lien_post:nth-child(2){
    height: 20em;
}
.lien_post:last-child .post_reseaux{
    left: -5em;
}
.lien_post_tiktok:last-child .post_reseaux {
    left: -3em !important;
}
.lien_post_tiktok:first-child .post_reseaux {
    right: -3em !important;
}
.post_reseaux{
    height: 15em;
    position: relative;
    border-radius: 1em;
}


.lien_reseau_logo{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10em;
    margin-top: 2em;

}
.lien_reseau_social{
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size:1.15em;
    padding: .6em 4.5em;
    border-radius: 4em;
    border: 2px solid #fff;
}
.logo_zamz_reseau_social{
    height: 4.5em;
}



/*-------------------BLOG-------------------*/
#blog{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 5em 2em;
}

#blog>h3{
    font-weight: 900;
    font-size: 1.6em;
    color: #494949;
    max-width: min(90vw, 20em);
    text-align: center;
    text-transform: uppercase;
    margin-top: 1.7em;
}

.categorie{
    max-width: 89em;
    margin-top:4em;
    padding: 0 9em;
}

.titre_categorie{
    max-width: min(90vw, 90vw);
    font-size: 1.25em;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 2.8em;
    border-bottom: 2px solid #494949;
    padding: 0 0 .6em;
    display: inline-block;
}


.liste_articles{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3em;
    margin: 3.5em 4em 0 4em;
    max-width: 88em;
}

.card_article,.card_article_large{
    border-radius: .9em;
    width: 22em;
    height: 12.4em;
    background-repeat: no-repeat;
    background-size: cover;
    display: grid;
    grid-template-rows: 1.4fr .6fr .2fr;
    grid-gap: 1em;
    padding: 1.5em;
    text-decoration: none;
}
.card_article_large{
    width: min(78em, calc(100vw - 8em));
    margin:3em 3.5em 0 3.5em;
}
.card_article_large>.card_article_titre{
    font-size: 1.6em;
    max-width: 40em;
}
.card_article_large>.card_article_date{
    font-size: 1em;
}

.card_article_titre{
    font-weight: 700;
    color: #fff;
    max-width: 17em;
}

.card_article_date{
    font-weight: 400;
    font-size: .8em;
    color: #fff;
    text-align: end;
}


#blog>a{
    color: #fff;
    background-color: #194B72;
    text-decoration: none;
    font-weight: 700;
    font-size:1.15em;
    padding: .6em 3em;
    border-radius: 4em;
    box-shadow: .2em .3em .3em #adacac;
    margin-top: 6em;
}

/*-------------------bulle flottante appellez nous-------------------*/

#bulle_flottante_wrapper{
    position: fixed;
    bottom: 2em;
    right: 2em;
    width: 16em;
    height: 6em;
    padding: .75em .5em .5em .5em;
    border: 3px solid #67AC76;
    background-color: #FFF;
    border-radius: 1em;
    box-shadow: .3em .5em .5em rgba(0, 0, 0, 0.2);
    z-index: 10;
}

#appelez_nous_float{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    gap: .75em;

}

#appelez_nous_float>p{
    font-size:1.15em;
    font-weight: 700;
    color: #494949;
}

#appelez_nous_float>a{
    background-color: #67AC76;
    text-decoration: none;
    font-weight: 700;
    font-size:1.15em;
    padding: 1em 3em;
    border-radius: .5em;
    color: #fff;
}

#chat_bulle_flottante{
    position: relative;
    height: 0;
}

#icon_chat_bulle_flottante{
    position: relative;
    height: 2.25em;
    width: 2.25em;
    bottom: 9.5em;
    left: 12.5em;
    padding: .7em .7em;
    border-radius: 2em;
    border:3px solid #67AC76;
    background-color: #FFF;
}

.wrapper_button_defiler_produits{
    display: flex;
}

@media screen and (max-width:1000px){
    #carousel{
        height: 20em;
    }
    .carrousel_wrapper{
        height: 20em;
    }
    .carrousel_wrapper div{
        height: 20em;
    }
    #carrousel_1_logo_zamz{
        width: 8em;
    }
    #carrousel_1_texte{
        font-size: 1.5em;
        max-width: 11em;
        padding-left:.5em;
        margin: .5em 0 1em 0;
    }
    #carrousel_1_texte_bold{
        max-width: 13em;
        font-size: 1em;
    }

    
    #carrousel_1_chieng{
        left: calc(60vw + 1em);
        height: 15em;
        margin-top: 5em;
        bottom:0;
    }
    #carrousel_2_logo_zamz{
        height: 5em;
        margin-bottom: 2em;
    }
    #carrousel_2_texte{
        font-size: 1.5em;
    }
    #carrousel_3{
        justify-content: center;
        gap: 1em;
    }
    #carrousel_3_logo_zamz{
        width: 8em;
        margin-bottom: 0;
    }
    #carrousel_3_texte{
        padding: 0 1.5em;
        font-size: 1.1em;
    }
    #carrousel_3_duo_et_prenoms{
        display: none;
        left:calc(60vw + 1em);
        height: 15em;
        margin-top:5em;
        bottom:0;
    }
    #carrousel_3_duo{
        height: 15em;
    }
    #carrousel_3_prenoms{
        font-size: 1.3em;
        left:-3.5em;
    }


    /*------------------- GAMMES-------------------*/
    .gammes{
        height: 27em;
        padding-bottom: 1em;
    }
    #wrapper_avant_gammes{
        margin: 2em 1em;
    }
    #description_avant_gammes{
        font-size: 1.2em;
    }
    .titre_huile{
        font-size: 1.5em;
    }
    .description_gamme{
        font-size: 1.1em;
        max-width: 80%;
        height: 7em;
    }
    #logo_relax,#logo_boost{
        height: 3em;
        margin-top:.5em;
    }
    #mockup_relax, #mockup_boost{
        height: 10em;
        width: auto;
        bottom:1em;
        top:0;
    }
    .gamme_shadow{
        bottom:4em;
        width: 20vw;
    }
    #boost_shadow{
        box-shadow: 0 0 4em 4em rgba(255, 255, 255, 0.573);
    }
    #relax_shadow {
        box-shadow: 0 0 4em 4em rgba(42, 152, 231, 0.549);
    }
    .gammes_acheter{
        margin-top: 1em;
        gap:1em;
    }
    #bouton_acheter_gamme{
        padding: .1em 3.9em;
    }
    #texte_bouton_acheter_gamme{
        font-size: 1.3em;
    }
    #texte_apres_gamme{
        margin: 3em 1.5em 2.5em 1.5em;
    }
    #texte_apres_gamme>p{
        font-size: 1.15em;
    }
    /*-------------------DISCLAIMER-------------------*/

    #warning_disclaimer{
        right: 50%;
    }
    #disclaimer_medicaments{
        font-size:1.2em;
        margin: 0 2em 2em;
        padding: 1.2em 1.5em .9em 1.5em;
    }

    /*-------------------PRODUITS GAMME-------------------*/

    .wrapper_button_defiler_produits{
        display: flex;
    }

    /*-------------------NOTES-------------------*/
    #note_moyenne{
        padding: 0 1em;
        gap:.6em;
    }
    #note_moyenne>p{
        font-size:1.1em;
        text-align: center;
        max-width: 8em;
    }
    #wrapper_etoiles_moyenne{
        flex-wrap: nowrap;
        min-width: fit-content;
    }
    #wrapper_etoiles_moyenne>img{
        width: 1.7em;
    }
    #notes_boutique>a{
        padding: .6em 2.75em;
        font-size: 1.1em;
    }
    #wrapper_avis{
        overflow-y:hidden;
    }

    /*-------------------AVANCEE BIEN ETRE-------------------*/
    #wrapper_avancee{
        border-radius: 0 0 0 7em;
    }
    #avancee_bien_etre>h3{
        font-size: 1.2em;
        max-width: 20em;
    }
    #texte_avancee_bien_etre{
        margin-top: 1em;
        max-height: 4em;
        transition: max-height .7s ease-out;
        padding-bottom:1em;

    }
    .avancee_bien_etre_visible{
        max-height: 40em !important;
    }

    #ouvrir_description_avancee_bien_etre,#ouvrir_description_relax{
        display: block;
    }
    .bouton_ouvrir_description{
        position: relative;
        border: none;
        background-color: #ffffff;
        border-radius: 5em;
        padding: 1.2em 1.1em;
        bottom:0;
        display: flex;
        flex-wrap: nowrap;
        gap: .5em;
        align-items: center;
        box-shadow: .3em .5em .5em #00000040;
    }

    /*-------------------COMPETENCES VETERINAIRES-------------------*/
    #competences_veterinaires>h3{
        padding: 0 1em 1em 1em;
        margin: 0 1em 1.6em 1em;
        font-size: 1.2em;
    }
    
    #competences_veterinaires>p{
        max-width: 90%;
    }
    #competences_veterinaires>a{
        margin-top: 2em;
    }
    .card_contact_image{
        height: 12em;
    }
    /*-------------------RESEAUX SOCIAUX-------------------*/
    .texte_logo_reseau{
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        gap: 1em;
        padding: 0 1em;
    }
    .logo_reseau_social{
        height: 8em;
        margin: 0;
    }
    .headline_reseau{
        font-size: 1.3em;
    }
    .description_reseau{
        font-size: 1.05em;
        max-width: 100%;
    }

    .dernieres_publications{
        width: 100vw;
        height: 13em;
        margin-top: 1em;
    }
    .post_reseaux{
        height: 9em;
    }
    .lien_post:nth-child(2) .post_reseaux{
        z-index:2;
        height: 13em;
    }
    .lien_post{
        height: 9em;
    }
    .lien_post:nth-child(2){
        height: 13em;
    }

    .lien_reseau_logo{
        width: 100vw;
        justify-content: center;
    }
    .logo_zamz_reseau_social{
        display: none;
    }
    #publications_tik_tok{
        width: auto;
    }

    /*-------------------Bulle flottante-------------------*/
    #bulle_flottante_wrapper  {
        width: 12em;
        height: 4em;
        bottom: 1em;
        right: 1em;
        padding: .75em .5em 1em .5em;
        border-radius: .7em;
    } 
    #appelez_nous_float>p{
        font-size:1em;
    }
    #appelez_nous_float>a{
        font-size:1em;
        padding: .7em 2em;
    }
    #icon_chat_bulle_flottante{
        height: 1.5em;
        width: 1.5em;
        bottom: 7em;
        left: 10em;
    }


}

