* {
  margin: 0;
  padding: 0;
}



:root {
  font-family: "cronos-pro", sans-serif;
  font-weight: 700;
  font-style: italic;

  font-family: "Unbounded", sans-serif;
  font-optical-sizing: auto;
  
  font-style: normal;

  font-family: "zeitung-pro-variable", sans-serif;
  font-variation-settings: "opsz" 20, "wght" 400;
  --padding: 1.5rem;
  --color-black: #22262b;
  --color-white: #fff;
  --color-grey: #2b3336;
  --color-light: #efefef;
  --color-text: var(--color-black);
  --color-text-grey: var(--color-grey);
  --color-background: var(--color-white);
  --color-code-creme:       #eee1c1;
  --color-code-orange:      #be883a;
  --color-code-yellow:      #ca9814;
  --bs-body-bg: none;
  --font-family-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
}

html {
  font-family: "zeitung-pro-variable";
  color: var(--color-text);
  background: var(--color-background);
  width: 100vw;
}
img {
  width: 100%;
}
body {
  
  background: 
  repeating-linear-gradient(
    90deg,
    transparent,
    transparent 9px,
    #2f3030b6 9px,
    #2f3030b6 12px
  ),
  /* on "bottom" */
  linear-gradient(
    to bottom,
    var(--color-black),
    var(--color-grey)
  );
  margin: 0 auto;
  width: 100vw;
  color: var(--color-light);
}
li {
  list-style: none;
}
a {
  color: currentColor;
  text-decoration: none;
}
button {
  font: inherit;
  background: none;
  border: 0;
  color: currentColor;
  cursor: pointer;
  font-weight: 900;
  text-align: center;
  margin: 0 auto;
  font-variation-settings: 'wght' 300, 'wdth' 85;
  transition-duration: 2s;
  
  transition-timing-function: cubic-bezier(0.48, 0.04, 0.52, 0.96);
  
}


.button:hover{
  font-variation-settings: 'wght' 800, 'wdth' 100;
 
}




strong, b {
  font-weight: 600;
}
small {
  font-size: inherit;
  color: var(--color-text-grey);
}

.bg-light {
  background-color: var(--color-light);
}
.color-grey {
  color: var(--color-text-grey);
}

.header {
  /* position: absolute;
  
 position: fixed;
 width:100vw;
 background-color: linear-gradient(
  to bottom,
  var(--color-black),
  var(--color-grey)
);
  backdrop-filter: blur(20px);

  
  z-index: 999;
  padding: 1.5rem 5% 1rem 5% ; 
 /* box-shadow: 0px 6px 5px -10px black;  */
top:0;
left:0;
 border-top: var(--color-rouge) 5px solid; */ 
}
p,
button,
a{
  font-family: "zeitung-pro-variable";
  font-style: normal;
  font-size: 1.1rem;
  
}
.logo {
  padding: 1rem;
  display: flex;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
}

.menu {
  display: flex;
}
.menu a {
  padding: 1rem;
  display: block;
}
.menu a[aria-current] {
  text-decoration: underline;
}

.social {
  display: flex;
  padding: 0 .5rem;
}
.social a {
  padding: 1rem .5rem;
}

.section {
  padding: 3rem 0;
}

.grid {
  --columns: 12;
  --gutter: 3rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: 1fr;
}
.grid > .column {
  margin-bottom: var(--gutter);
}

.autogrid {
  --gutter: 3rem;
  --min: 10rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr));
  grid-auto-flow: dense;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.text {
  line-height: 1.5em;
  font-family: "zeitung-pro-variable";
}
.text a {
  text-decoration: underline;
}
.text :first-child {
  margin-top: 0;
}
.text :last-child {
  margin-bottom: 0;
}
.text p,
.text ul,
.text ol {
  margin-bottom: 1.5rem;
  text-align: left;
}
.text ul,
.text ol {
  margin-left: 1rem;
}
.text ul p,
.text ol p {
  margin-bottom: 0;
}
p{
  font-size: 1.5rem;
}
.text ul > li {
  list-style: disc;
}
.text ol > li {
  list-style: decimal;
}
.text ul ol,
.text ul ul,
.text ol ul,
.text ol ol {
  margin-bottom: 0;
}
.text h1,
.h1,
.intro,
h1 {
  padding-top:10px;
  font-size: 48px;
  margin-bottom: 0;
  line-height: 1em;
 
  font-family: "Unbounded";
  text-align: center;
  font-variation-settings: 'wght' 700, 'wdth' 100;
}
.decouvrer {
  font-size: 2rem;
  margin-bottom: 2rem;

}


.text h2,
.h2,
h2 {
  font-size: 3rem;
  line-height: 90%;
  font-weight: 600;
  margin-bottom: 1.25rem;
  margin-top: 1.5rem;
  font-family: "Unbounded";
  color:var(--color-code-orange);
}
.text h3,
.h3, h3, h4{
  font-family: "Unbounded";
  font-weight: 800;
}
.text .codeblock {
  display: grid;
}
.text code {
  font-family: var(--font-family-mono);
  font-size: 1em;
  background: var(--color-light);
  padding: 0 .5rem;
  display: inline-block;
  color: var(--color-black);
}
.text pre {
  margin: 3rem 0;
  background: var(--color-black);
  color: var(--color-white);
  padding: 1.5rem;
  overflow-x: scroll;
  overflow-y: hidden;
  line-height: 1.5rem;
}
.text pre code {
  padding: 0;
  background: none;
  color: inherit;
}
.text hr {
  margin: 6rem 0;
}
.text dt {
  font-weight: 600;
}
.text blockquote {
  font-size: 1rem;
  line-height: 2rem;
  border-left: 2px solid var(--color-black);
  padding-left: 1rem;
  margin: 3rem 0;
  max-width: 90%;
}
.text blockquote footer {
  font-size: .875rem;
  font-style: italic;
  text-align: left;
}
.text figure {
  margin: 3rem 0;
}
.text figcaption {
  padding-top: .75rem;
  color: var(--color-text-grey);
}
.text figure ul {
  line-height: 0;
  display: grid;
  gap: 1.5rem;
  margin: 0;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
}
.text figure ul li {
  list-style: none;
}

hr {
  border: 0;
  background: currentColor;
  height: 2px;
  width: 1.5rem;
  margin: 3rem auto;
}

.align-center {
  text-align: center;
}

.intro {
  max-width: 40rem;
}
.intro *:not(:last-child) {
  margin-bottom: 1em;
}

.cta {
  background: var(--color-black);
  color: var(--color-white);
  display: inline-flex;
  justify-content: center;
  padding: .75rem 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-black);
}

.box {
  background: var(--color-light);
  padding: 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-light);
}

.video,
.img {
  position: relative;
  display: block;
  --w: 1;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  
}
.img img,
.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.img[data-contain] img {
  object-fit: contain;
}
.img-caption,
.video-caption {
  padding-top: .75rem;
  line-height: 1.5em;
}

.footer {
  padding: 9rem 0 6rem;
  line-height: 1.5em;
  
}
.footer:before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 2px;
  
  margin-bottom: 1.5rem;
}

.footer h2 {
  font-weight: 600;
  margin-bottom: .75rem;
}
.footer ul,
.footer p {
  color: var(--color-text-grey);
}
.footer p {
  max-width: 25rem;
}
.footer a:hover {
  color: var(--color-text);
}


.map {
  --w: 2;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  position: relative;
  overflow: hidden;
  background: var(--color-black);
}
.map iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.margin-s {
  margin-bottom: .75rem;
}
.margin-m {
  margin-bottom: 1.5rem;
}
.margin-l {
  margin-bottom: 3rem;
}
.margin-xl {
  margin-bottom: 4.5rem;
}
.margin-xxl {
  margin-bottom: 6rem;
}
.imgfamilleproduits{
  width:80%;
  padding-top: 1rem;
  padding-bottom:1rem;
}

@media screen and (min-width: 60rem) {
  body {
    --padding: 3rem;
  }
  .imgfamilleproduits{
  width:40%;
    padding-top: 0rem;
  padding-bottom:0rem;
}
  .grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .grid > .column {
    grid-column: span var(--columns);
  }

}

.pagination {
  display: flex;
  padding-top: 6rem;
}
.pagination > span {
  color: var(--color-text-grey);
}
.pagination > * {
  padding: .5rem;
  width: 3rem;
  text-align: center;
  border: 2px solid currentColor;
  margin-right: 1.5rem;
}
.pagination > a:hover {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.note-excerpt {
  line-height: 1.5em;
}
.note-excerpt header {
  margin-bottom: 1.5rem;
}
.note-excerpt figure {
  margin-bottom: .5rem;
}
.note-excerpt-title {
  font-weight: 600;
}
.note-excerpt-date {
  color: var(--color-text-grey);
}




@import url('https://fonts.googleapis.com/css?family=Quicksand:400,500,700&subset=latin-ext');

a, a:hover {
  text-decoration: none;
}
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: var(--color-black);
}
.background {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.background:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 
  opacity: 0.9;
}
.background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.news-slider {
  z-index: 2;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}
@media screen and (max-width: 1300px) {
  .news-slider {
    max-width: 1000px;
  }
}
@media screen and (max-width: 576px) {
  .news-slider {
    margin-top: 20px;
  }
}
.news-slider__wrp {
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
.news-slider__item {
  width: 400px;
  flex-shrink: 0;
}
@media screen and (max-width: 992px) {
  .news-slider__item {
    width: 340px;
  }
}
.news-slider__item.swiper-slide {
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.news-slider__item.swiper-slide-active, .news-slider__item.swiper-slide-prev, .news-slider__item.swiper-slide-next {
  opacity: 1;
  pointer-events: auto;
  
}
.news-slider__ctr {
  position: relative;
  z-index: 12;
}
.news-slider__arrow {
  background: #fff;
  border: none;
  display: inline-flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 26px 6px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  z-index: 12;
  cursor: pointer;
  outline: none !important;
}
.news-slider__arrow:focus {
  outline: none !important;
}
.news-slider__arrow .icon-font {
  display: inline-flex;
}
.news-slider__arrow.news-slider-prev {
  left: 15px;
  transform: translateY(-50%);
}
.news-slider__arrow.news-slider-next {
  right: 15px;
  transform: translateY(-50%);
}
.news-slider__pagination {
  text-align: center;
  
}
.news-slider__pagination .swiper-pagination-bullet {
  width: 13px;
  height: 10px;
  display: inline-block;
  background: #fff;
  opacity: 0.2;
  margin: 0 5px;
  border-radius: 20px;
  transition: opacity 0.5s, background-color 0.5s, width 0.5s;
  transition-delay: 0.5s, 0.5s, 0s;
}
.news-slider__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #fff;
  width: 100px;
  transition-delay: 0s;
}
@media screen and (max-width: 576px) {
  .news-slider__pagination .swiper-pagination-bullet-active {
    width: 70px;
  }
}
.news__item {
  padding: 40px;
  color: #fff;
  border-radius: 10px;
  display: block;
  transition: all 0.3s;
  
}


@media screen and (min-width: 800px) {
  .news__item:hover {
    color: #fff;
    transition-delay: 0.1s;
  }
  .news__item:hover .news-date, .news__item:hover .news__title, .news__item:hover .news__txt {
    opacity: 1;
    transition-delay: 0.1s;
  }
  .news__item:hover .news__img {
    box-shadow: none;
  }
}
.news__item.active {
  color: #fff;
  scale: 120%;
}
.news__item.active .news-date, .news__item.active .news__title, .news__item.active .news__txt {
  opacity: 1;
}
.news__item.active .news__img {
  box-shadow: none;
}
@media screen and (max-width: 992px) {
  .news__item {
    padding: 30px;
  }
}
@media screen and (max-width: 576px) {
  .news__item {
    padding: 20px;
  }
}
.news-date {
  padding-bottom: 20px;
  
  
  display: inline-block;
  opacity: 0.7;
  transition: opacity 0.3s;
}
@media screen and (max-width: 576px) {
  .news-date {
   
    
    align-items: center;
    padding-bottom: 0;
  }
}
.news-date__title {
  display: block;
  font-size: 1.5rem;
  padding:  10px 0 25px 0;
  font-weight: 500;
}
@media screen and (max-width: 576px) {
  .news-date__title {
    margin-right: 10px;
  }
}

.news__title {
  font-size: 25px;
  font-weight: 500;
  opacity: 0.7;
  margin-top: 10px;
  margin-bottom: 15px;
  transition: opacity 0.3s;
}
@media screen and (max-width: 576px) {
  .news__title {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
.news__txt {
  margin: 10px 0;
  line-height: 1.6em;
  font-size: 15px;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.news__img {
  border-radius: 10px;
 /* box-shadow: 0 6px 26px 6px rgba(0, 0, 0, 0.25);*/
  height: 200px;
  
  width: 100%;
  transition: all 0.3s;
  transform-origin: 0% 0%;
    
  

}


@media screen and (max-width: 576px) {
  .news__img {
    height: 180px;
    
  }
}
.news__img img {
  max-width: 100%;
  border-radius: 10px;
  height: 100%;
  width: 100%;
  object-fit: contain;
  padding-top: 30px;
}

.wrapper{
 
  padding:  2em 20vw 4em 20vw;
  text-align: center;
  overflow: hidden;
  color: var(--color-code-creme);
  animation: gradient 30s ease infinite;
  /*background: linear-gradient(-45deg, #541811 20% -30%, transparent 80%), linear-gradient(45deg, #541811 20%, #a4191e, #a4191e 60%, #a4191e, #541811);*/
  background: var(--color-code-orange);
  background-size: 200% 200%;
  
  
}
@keyframes gradient {
  0% {background-position: 0% 50%;}
  50% {  background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}
.wrapper .button{
  margin-top: 35px;
 
    
}
.wrapper h2{
  color: #fff;  
}






.hero{
display: flex;
flex-direction: column;
padding-top: 7rem;

}
.hero div{
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 5rem;
  min-height: 70vh;
}
.hero h1{
  position: absolute;
  z-index: 2;
  text-shadow: 0px 5px 8px var(--color-black);
    color: var(--color-light);

  
}
.hero div img{
  z-index: 0;
  max-width: 70vw;
  
 
  
}

.bandeau{
  min-width : 100vw;
  
}
.retourne{
  transform: rotate(180deg);
  margin-top: -1px;
}
.layout,
.beige{
  
  margin-top: -1px;
  background-color: var(--color-code-creme);
  color:var(--color-black);
  text-align: center;
}

.footer,
.layout,
.beige{
  padding:  2em 15vw 2em 15vw;
}
.layout{
 padding-top:150px; 
}

.footer p,
.footer li{
  color: white;
}
.navbar{ backdrop-filter: blur(10px);
  
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 9px,
    #2f3030b6 9px,
    #2f3030b6 12px
  ),#22262be1; /*linear-gradient(var(--color-black) 20%, transparent 100%);*/

  border-top: 5px solid var(--color-code-orange);
}
.navbar-brand img {
  width: 10vw;
}
.navbar-nav {
  align-items: center;
  
  
}
.navbar .navbar-nav .nav-link {
  color: #fff;
  font-size: 1.1em;
  padding: 0.5em 1em;
 
}
@media screen and (min-width: 768px) {
  .navbar-brand img {
    width: 100px;
  }
  .navbar-brand {
    margin-right: 0;
    padding: 0 1em;
  }
}


.demi{
  display : flex ;
  margin: auto;
  min-height:60vh ;
  
  
  padding-top: 4rem;

 
}
.univers-selector{
    display: flex;
    flex-direction: row;
    width: 50%;
    justify-content: space-around;
    margin: auto;
    margin-bottom: 1rem;

}
.demi div,
.demimg{
  max-width: 50%;
  
  margin: 20px;
 
  
}
.demitxt{
  
  text-align: right; 
  
  display: flex;
  flex-wrap: wrap;
  justify-content: right;
  align-content: space-around;
  width: 100%;
  
}
.demitxt h2,
.demitxt p{
width: 100%;

}
.demimg{
  display: flex;
  align-items: center;
  width: 100%;
}
.demimg img{
  min-width: 25vw;
  width: 100%;
    /* clip-path: path("M468.687,213.547a18.806,18.806,0,0,0,.578,3.37c.3,3.113-.1,5.135-.594,3.9-.289.225-.514-.3-.706-1.107-.818,7.4-1.621,15.918-1.749,14.072-.193-1.107-.433-.963-.658-.642-.048.144-.112.193-.193.209-.3.514-.594,1.011-.786-.465l.257-1.171c-.177-2.279-.481-3.482-.9-3.9l.016,1.829c.064,1.107.048,2.23.1,3.338.032.3.08.353.128.8,1.412,13.382-.193,14.072.578,25.545l-.465-.385a211.015,211.015,0,0,1-3.707,26.989c-.69,3.9-1.524,7.75-2.407,11.553-.08.369-.144.738-.241,1.107-3.578,15.131-8.585,29.4-15.083,41.752-.369.61-.882,1.187-1.284,1.8A227.109,227.109,0,0,1,398.069,403c-27.214,24.213-61.215,46.469-98.217,56.177a225.433,225.433,0,0,1-48.347,7.59,235.977,235.977,0,0,1-64.633-3.707,269.544,269.544,0,0,1-62.74-22.8c.273-1.3,5.985,2.648,8.408,2.76q-6.86-3.442-13.687-7.413c-16.945-8.922-33.376-19.367-47.3-32.958-3.755-2.583-7.782-6.386-9.579-7.542-5.825-5.568-2.664-3.979-6.755-8.2l-1.556.289c-4.766-7.221-8.889-9.066-13.43-15.869.209-.69-1.6-3.049-3.209-5.44-1.284.674-4.573-7.654-5.456-6.611l.048-.128a41.513,41.513,0,0,0-2.824-4.3c-1.958-2.888-12.067-32.413-11.89-35.879l-.754-1.364c-1.54-4.316-1.2-6.5-.048-4.092l-2.006-5.247.128.642-1.974-5.215c-.5-.931-1.348-1.893-1.572-.144a44.8,44.8,0,0,0-1.99-9.756,107.115,107.115,0,0,0,6.98,16.11c-.77-2.5-1.556-5.038-2.214-7.622-.209-.706-.337-1.428-.529-2.15-1.8-4.557-3.562-10.141-5.343-14.923-.257-1.7.722-3.113-.513-6.82-1.38-1.669-.626-4.348-1.909-7.413a48.458,48.458,0,0,0,1.556,11.04c-1.621-.321-2.343-8.922-3.209-11.81.225-1.46-1.4-8.633-1.588-13.238-.738,1.38-.947-.626-1.22-2.92.032-.16.048-.4.08-.594l-.08.562a22.185,22.185,0,0,0-.578-3.37c-.321-3.113.1-5.135.594-3.883.289-.241.513.289.706,1.107.8-7.413,1.621-15.934,1.749-14.088.193,1.107.417.963.658.642.048-.144.112-.193.193-.209.3-.5.594-1.011.786.465l-.257,1.171c.161,2.279.481,3.5.9,3.9l-.016-1.829c-.064-1.107-.048-2.214-.1-3.321a5.52,5.52,0,0,1-.128-.818c-1.412-13.382.177-14.056-.578-25.545l.465.4a210.246,210.246,0,0,1,3.707-26.989c.69-3.931,1.524-7.8,2.407-11.617.08-.353.144-.706.225-1.043,3.594-15.147,8.585-29.412,15.1-41.752.353-.626.883-1.187,1.268-1.8A227.24,227.24,0,0,1,71.309,64.56c27.214-24.2,61.215-46.453,98.2-56.161A223.75,223.75,0,0,1,217.857.809C239.005-1.084,261.165.424,282.506,4.5a269.814,269.814,0,0,1,62.74,22.8c-.289,1.3-5.985-2.648-8.408-2.76q6.86,3.442,13.671,7.413c16.945,8.922,33.376,19.368,47.32,32.958,3.739,2.6,7.766,6.4,9.579,7.542,5.825,5.568,2.664,3.979,6.755,8.2l1.556-.273c4.766,7.2,8.889,9.05,13.43,15.869-.225.674,1.6,3.033,3.209,5.424,1.268-.674,4.557,7.67,5.456,6.611l-.048.128a42.1,42.1,0,0,0,2.808,4.3c1.958,2.888,12.083,32.429,11.906,35.879l.754,1.364c1.524,4.316,1.187,6.5.032,4.092l2.006,5.247-.128-.642,1.99,5.215c.481.931,1.348,1.893,1.572.16a44.254,44.254,0,0,0,1.99,9.756,109.9,109.9,0,0,0-6.98-16.126c.77,2.519,1.54,5.038,2.214,7.622.193.706.337,1.428.513,2.15,1.813,4.557,3.578,10.157,5.359,14.923.241,1.7-.738,3.113.513,6.82,1.38,1.669.626,4.348,1.909,7.413a49.524,49.524,0,0,0-1.572-11.04c1.621.321,2.359,8.922,3.225,11.826-.225,1.444,1.4,8.633,1.573,13.222.754-1.38.947.626,1.22,2.92-.016.16-.032.385-.064.546l.08-.513M3.226,234.808a14.917,14.917,0,0,0,.1,3.209c-.161-2.391-1.027,3.851-1.845,10.061.562,2.583.866,7.814,1.508,7.333l-.16.77a13.56,13.56,0,0,0,.433,1.942c.112-1.139.193-3.145.177-5.215l-.209,1.171c-.578-1.653-.674-6.868-.77-9.868.5-.048.642.915.866.9.193-1.236.273-3.017.353-4.685l-.161-.963c.032-.465.048-.963.048-1.46a9.463,9.463,0,0,0-.337-3.193m463.167-22.657c.064-.353.112-.578.16-.77a14.134,14.134,0,0,0-.449-1.942c-.1,1.155-.177,3.161-.16,5.215l.209-1.171c.578,1.653.674,6.884.77,9.868-.514.048-.642-.915-.867-.9a45.273,45.273,0,0,0-.369,4.685l.177.963c-.032.465-.048.979-.064,1.46a9.426,9.426,0,0,0,.353,3.193,15.857,15.857,0,0,0-.1-3.193c.16,2.375,1.027-3.867,1.845-10.077-.562-2.567-.883-7.8-1.508-7.333"); */
  border-radius: 10px;
  object-fit: contain;
  
}
.inverse{
  flex-direction: row-reverse;
  
}

.inverse div{
 text-align: left;
 justify-content: left;
}
.button{
  min-width: 200px;
    padding-inline: 0;
    display: inline-flex;
  align-items: center;
  justify-content: center;
  background-size: 100% 45px;
  height: 45px;
  transition-duration: 0.2s;
  text-transform: uppercase;
  font-size: 0.9em;
}

.imgvtier{
  aspect-ratio: 21/3;
  margin-bottom: 30px;
}


.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: var(--color-code-orange);
}

input:focus + .slider {
  box-shadow: 0 0 1px background-color: var(--color-code-orange);;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.section-title {
  text-align: center;
  position: relative;
}

.section-title:before {
  content: "";
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-code-orange);
  position: absolute;
  top: calc(50% - 1px);
}

.section-title span {
  display: inline-block;
  padding: 0 40px;
  background: var(--color-code-creme);
  position: relative;
  z-index: 1;
}
.presentationlabel{
row-gap: 20px;
  
}
.label{
  background-color: none;
  border: none;
  text-align: center;
}
.label img{
  max-height: 75px;
  object-fit: contain;
}
.demitxt div{
width:100%;
}
.news__item::before {
  content: "";
    position: absolute;
    inset: -9%;
    width: 120%;
    height: 120%;
    z-index: -1;
   
      clip-path: path("M468.687,213.547a18.806,18.806,0,0,0,.578,3.37c.3,3.113-.1,5.135-.594,3.9-.289.225-.514-.3-.706-1.107-.818,7.4-1.621,15.918-1.749,14.072-.193-1.107-.433-.963-.658-.642-.048.144-.112.193-.193.209-.3.514-.594,1.011-.786-.465l.257-1.171c-.177-2.279-.481-3.482-.9-3.9l.016,1.829c.064,1.107.048,2.23.1,3.338.032.3.08.353.128.8,1.412,13.382-.193,14.072.578,25.545l-.465-.385a211.015,211.015,0,0,1-3.707,26.989c-.69,3.9-1.524,7.75-2.407,11.553-.08.369-.144.738-.241,1.107-3.578,15.131-8.585,29.4-15.083,41.752-.369.61-.882,1.187-1.284,1.8A227.109,227.109,0,0,1,398.069,403c-27.214,24.213-61.215,46.469-98.217,56.177a225.433,225.433,0,0,1-48.347,7.59,235.977,235.977,0,0,1-64.633-3.707,269.544,269.544,0,0,1-62.74-22.8c.273-1.3,5.985,2.648,8.408,2.76q-6.86-3.442-13.687-7.413c-16.945-8.922-33.376-19.367-47.3-32.958-3.755-2.583-7.782-6.386-9.579-7.542-5.825-5.568-2.664-3.979-6.755-8.2l-1.556.289c-4.766-7.221-8.889-9.066-13.43-15.869.209-.69-1.6-3.049-3.209-5.44-1.284.674-4.573-7.654-5.456-6.611l.048-.128a41.513,41.513,0,0,0-2.824-4.3c-1.958-2.888-12.067-32.413-11.89-35.879l-.754-1.364c-1.54-4.316-1.2-6.5-.048-4.092l-2.006-5.247.128.642-1.974-5.215c-.5-.931-1.348-1.893-1.572-.144a44.8,44.8,0,0,0-1.99-9.756,107.115,107.115,0,0,0,6.98,16.11c-.77-2.5-1.556-5.038-2.214-7.622-.209-.706-.337-1.428-.529-2.15-1.8-4.557-3.562-10.141-5.343-14.923-.257-1.7.722-3.113-.513-6.82-1.38-1.669-.626-4.348-1.909-7.413a48.458,48.458,0,0,0,1.556,11.04c-1.621-.321-2.343-8.922-3.209-11.81.225-1.46-1.4-8.633-1.588-13.238-.738,1.38-.947-.626-1.22-2.92.032-.16.048-.4.08-.594l-.08.562a22.185,22.185,0,0,0-.578-3.37c-.321-3.113.1-5.135.594-3.883.289-.241.513.289.706,1.107.8-7.413,1.621-15.934,1.749-14.088.193,1.107.417.963.658.642.048-.144.112-.193.193-.209.3-.5.594-1.011.786.465l-.257,1.171c.161,2.279.481,3.5.9,3.9l-.016-1.829c-.064-1.107-.048-2.214-.1-3.321a5.52,5.52,0,0,1-.128-.818c-1.412-13.382.177-14.056-.578-25.545l.465.4a210.246,210.246,0,0,1,3.707-26.989c.69-3.931,1.524-7.8,2.407-11.617.08-.353.144-.706.225-1.043,3.594-15.147,8.585-29.412,15.1-41.752.353-.626.883-1.187,1.268-1.8A227.24,227.24,0,0,1,71.309,64.56c27.214-24.2,61.215-46.453,98.2-56.161A223.75,223.75,0,0,1,217.857.809C239.005-1.084,261.165.424,282.506,4.5a269.814,269.814,0,0,1,62.74,22.8c-.289,1.3-5.985-2.648-8.408-2.76q6.86,3.442,13.671,7.413c16.945,8.922,33.376,19.368,47.32,32.958,3.739,2.6,7.766,6.4,9.579,7.542,5.825,5.568,2.664,3.979,6.755,8.2l1.556-.273c4.766,7.2,8.889,9.05,13.43,15.869-.225.674,1.6,3.033,3.209,5.424,1.268-.674,4.557,7.67,5.456,6.611l-.048.128a42.1,42.1,0,0,0,2.808,4.3c1.958,2.888,12.083,32.429,11.906,35.879l.754,1.364c1.524,4.316,1.187,6.5.032,4.092l2.006,5.247-.128-.642,1.99,5.215c.481.931,1.348,1.893,1.572.16a44.254,44.254,0,0,0,1.99,9.756,109.9,109.9,0,0,0-6.98-16.126c.77,2.519,1.54,5.038,2.214,7.622.193.706.337,1.428.513,2.15,1.813,4.557,3.578,10.157,5.359,14.923.241,1.7-.738,3.113.513,6.82,1.38,1.669.626,4.348,1.909,7.413a49.524,49.524,0,0,0-1.572-11.04c1.621.321,2.359,8.922,3.225,11.826-.225,1.444,1.4,8.633,1.573,13.222.754-1.38.947.626,1.22,2.92-.016.16-.032.385-.064.546l.08-.513M3.226,234.808a14.917,14.917,0,0,0,.1,3.209c-.161-2.391-1.027,3.851-1.845,10.061.562,2.583.866,7.814,1.508,7.333l-.16.77a13.56,13.56,0,0,0,.433,1.942c.112-1.139.193-3.145.177-5.215l-.209,1.171c-.578-1.653-.674-6.868-.77-9.868.5-.048.642.915.866.9.193-1.236.273-3.017.353-4.685l-.161-.963c.032-.465.048-.963.048-1.46a9.463,9.463,0,0,0-.337-3.193m463.167-22.657c.064-.353.112-.578.16-.77a14.134,14.134,0,0,0-.449-1.942c-.1,1.155-.177,3.161-.16,5.215l.209-1.171c.578,1.653.674,6.884.77,9.868-.514.048-.642-.915-.867-.9a45.273,45.273,0,0,0-.369,4.685l.177.963c-.032.465-.048.979-.064,1.46a9.426,9.426,0,0,0,.353,3.193,15.857,15.857,0,0,0-.1-3.193c.16,2.375,1.027-3.867,1.845-10.077-.562-2.567-.883-7.8-1.508-7.333"); 
    scale: 65%;
    
      background-color: #eee1c149;
  }
  .news-date__txt img{
    max-height: 40px;
    margin: auto;
    object-fit: contain;
  }
  .news-date__txt {
    display: flex;
    width: 100%;
    
  }
  .eleveur{
    padding:0 25% 0 25%;
  }
@media screen and (max-width : 1200px) {
  .demi{
    flex-direction: column;
    align-items: center;
  }
  .demi div{
    max-width: 100%;
    text-align: left;

  }
  .demi img{
    max-width: 100%;
    margin: 0;
  }
  }
  .news__item::before {
    inset:-18%;
    width: 150%;
    height: 135%;
  
    scale: 55%;
    
  }
  .eleveur{
    padding:0 10% 0 10%;
  }
@media screen and (max-width: 769px) {
  .hero div img{
    max-width: 95vw;
  }
  
  .footer,

.beige{
  padding: 2em 5vw 2em 5vw;
}
  
.layout
{
  padding: 15vh 5vw 2em 5vw;
}
 .footer{
  padding: 2em 5vw 2em 5vw;

 }
  .wrapper{
    padding: 2em 5vw 2em 5vw;
    
  }
  .news__item::before {
    inset:-20%;
      width: 140%;
      height: 160%;
    
      scale: 55%;
      
    }





}


.autoshow{
  animation: autoshowanimation both;
  animation-timeline: view(70% 5%);
}
@keyframes autoshowanimation {
  from{
    opacity: 0;
    transform: rotateY(200px);
    transform: scale(0.3);

  }to{
    opacity: 1;
    transform: rotateY(0px);
    transform: scale(1);
  }
}

.logolabel{max-width: 10vw !important;
min-width: 15% !important;
}

.labelproduitimg{
justify-content: end !important;
width: 30%;

}
.produitsimg{
  padding-bottom: 0px;
  padding-top: auto;
}

.labelsproduits{
  max-height: 60px !important;
}

.contourtabproduits{
border-top: solid #eee1c1 1px;

border-left: solid #eee1c1 1px;
}
.tabproduits{
  border-bottom: solid #eee1c1 1px;
 
  border-right: solid #eee1c1 1px;
  
}
ul{padding-left: 0rem;
margin-bottom: 0rem;}

.animproduits, .produitsimg, .produitsimg img{
transition-duration: 0.5s;
 transition-timing-function: ease;

}


.produitsimg {
  backdrop-filter: blur(10px);
  background-size: 0%;
background-position: 25% 50%;
}
.animproduits:hover .produitsimg {
background-position: 25% 75%;
background-size: 100%;
}



/*** Default shared CSS ****/
figure.figurefx {

  margin: 30px auto;
	padding: 0;
	display: block;
	position: relative;
	overflow: hidden; /* hide overflowing elements by default */
  
}

figure.figurefx .descproduit,figure.figurefx .labelsproduit {
	position: absolute;
	display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	text-align: center;

	z-index: 99;
	
	max-height: 100%;
	overflow: hidden;
	top: 50%;
	left: 0;
	-moz-transform: translate3d(-100%, -100%, 0); /* position caption outside layout horizontally and centered vertically */
	-webkit-transform: translate3d(-100%, -100%, 0);
	transform: translate3d(-100%, -100%, 0);
	opacity: 0;
	-moz-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
  
}


figure.figurefx .descproduit {

	background: #212529;
	 border-radius: 2rem;
		z-index: 100;
  
}


.descproduit figcaption{
color: var(--color-code-creme) !important;
font-family:"Unbounded", sans-serif;
font-size: 1.5rem;
padding:0.75rem;}

/*** Push Up effect ****/
figure.pushup img {
	-moz-transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-moz-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

figure.pushup .descproduit {
	top: 100%;
	opacity: 1;
	-moz-transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
   width: 100%;
}
figure.pushup .labelsproduit {
  top:0;
  margin-left: 100%;
  max-width: 15%;
	opacity: 1;
	-moz-transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

figure.pushup:hover .produitsimg {
	-moz-transform: translate3d(0, -15%, 0) scale(0.9); /* move image up vertically a bit for parallax effect */
	-webkit-transform: translate3d(0, -15%, 0) scale(0.9);
	transform: translate3d(0, -15%, 0) scale(0.9);
 
 
}


figure.pushup:hover .descproduit {
  
	-moz-transform: translate3d(0, -100%, 0); /* move caption up vertically to fully reveal caption */
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
	-moz-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
 
  
 
}
figure.pushup:hover .labelsproduit{
right:0;
margin-left: 100%;
  	-moz-transform: translate3d(-100%,0, 0); /* move caption up vertically to fully reveal caption */
	-webkit-transform: translate3d(-100%,0, 0);
	transform: translate3d(-100%,0, 0);
	-moz-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;

}