/*
#@squelettes/assets/css/hibis.scss
*/
@charset "UTF-8";
/* init responsive */
/* init couleurs */
/* init font */
/* init */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
dl, dt, dd, ol, ul, li {
  list-style: none;
  list-style-type: none;
}
a {
  text-decoration: none;
}
* {
  box-sizing: border-box;
}
/* mixin media queries */
/* fonts */
@font-face {
  font-family: "open_sansregular";
  src: url('https://hibis.zedd.pro/squelettes/assets/fonts/OpenSans-Regular-webfont.woff') format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "arial_rounded_mt_regular";
  src: url('https://hibis.zedd.pro/squelettes/assets/fonts/arial_rounded_mt_regular-webfont.woff2') format("woff2"), url('https://hibis.zedd.pro/squelettes/assets/fonts/arial_rounded_mt_regular-webfont.woff') format("woff");
  font-weight: normal;
  font-style: normal;
}
:root {
  font-family: open_sansregular, sans-serif;
  font-size: 16px;
}
 .spip_logo {
  position: absolute;
  top: -5px;
  left: -5px;
  width: 150px;
  height: auto;
  z-index: 200;
}
@media only screen and (max-width: 768px) {
   .spip_logo {
    width: 100px;
  }
}
h1 {
  font-size: 35px;
}
h2 {
  font-size: 30px;
}
/* menu */
@media only screen and (max-width: 768px) {
  header {
    margin-bottom: 5rem;
  }
}
header > nav {
  background-color: rgba(255, 255, 255, 0.95);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: end;
}
@media only screen and (max-width: 768px) {
  header > nav {
    background-color: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
  }
}
header > nav > ul {
  width: 400px;
  height: 80vh;
  padding: 100px 50px 100px 50px;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 768px) {
  header > nav > ul {
    padding: 80px 30px 30px 30px;
    height: 65vh;
  }
}
header > nav > ul > li {
  transform: translateY(50px);
  opacity: 0;
}
header > nav > ul > li > a {
  display: block;
  padding: 8px 0;
  font-family: arial_rounded_mt_regular, sans-serif;
  font-size: bold;
  font-size: 2em;
  text-decoration: none;
  color: #E73457;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}
header > nav > ul > li > a:hover {
  transform: scale(1.1);
}
header > nav > ul > li > a.on {
  margin-left: -25px;
  font-weight: bold;
}
header > nav > ul > li > a.on:before {
  content: "• ";
}
@media only screen and (max-width: 768px) {
  header > nav > ul > li > a {
    font-size: 1.6em;
  }
}
header > nav > div.contact {
  width: 320px;
  height: 100vh;
  padding: 100px 50px 100px 50px;
  background-color: #E73457;
  font-family: open_sansregular, sans-serif;
  font-size: 1.2em;
  line-height: 1.5em;
  color: #FFFFFF;
}
@media only screen and (max-width: 768px) {
  header > nav > div.contact {
    padding: 30px;
    height: 35vh;
  }
}
header > nav > div.contact h2 {
  font-size: 30px;
}
header > nav > div.contact p {
  font-size: 0.9em;
}
header > nav > div.contact h3 {
  font-size: 0.8em;
}
header > nav > div.contact h3 a {
  color: #FFFFFF;
}
header > .toggle-btn {
  display: block;
  position: fixed;
  z-index: 10;
  right: 20px;
  top: 20px;
  z-index: 20;
  cursor: pointer;
}
header > .toggle-btn > .bar {
  width: 30px;
  height: 2px;
  margin: 7px auto;
  background-color: #FFFFFF;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.3);
}
header > .toggle-btn > .bar:nth-child(2) {
  width: 20px;
}
header #toggle:checked ~ nav {
  opacity: 1;
  visibility: visible;
}
header #toggle:checked ~ nav ul {
  top: 20%;
}
header #toggle:checked ~ nav ul li {
  transform: translateY(0px);
  opacity: 1;
}
header #toggle:checked ~ nav ul li:nth-child(1) {
  transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.1s;
}
header #toggle:checked ~ nav ul li:nth-child(2) {
  transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.2s;
}
header #toggle:checked ~ nav ul li:nth-child(3) {
  transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.3s;
}
header #toggle:checked ~ nav ul li:nth-child(4) {
  transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.4s;
}
header #toggle:checked ~ nav ul li:nth-child(5) {
  transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.5s;
}
header #toggle:checked ~ nav ul li:nth-child(6) {
  transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.6s;
}
header #toggle:checked + label.toggle-btn .bar {
  background-color: #E73457;
}
header #toggle:checked + label.toggle-btn .bar:nth-child(2) {
  transform: translateX(50px);
  opacity: 0;
}
header #toggle:checked + label.toggle-btn .bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
header #toggle:checked + label.toggle-btn .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
/* background accueil */
.sommaire {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 768px) {
  .sommaire {
    background-position: center;
  }
}
.sommaire > main {
  width: 90%;
  min-height: 85vh;
  z-index: 5;
  margin: 70px auto 0 auto;
}
.sommaire > main h1 {
  font-family: arial_rounded_mt_regular, sans-serif;
  color: #E73457;
  font-size: 35px;
  font-weight: 900;
  position: absolute;
  top: 35%;
  left: 67%;
}
@media only screen and (max-width: 768px) {
  .sommaire > main h1 {
    position: absolute;
    top: 20%;
    left: 20%;
  }
}
.sommaire > main h2 {
  font-family: arial_rounded_mt_regular, sans-serif;
  color: #FFFFFF;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.4em;
  position: absolute;
  top: 46%;
  left: 67%;
}
@media only screen and (max-width: 768px) {
  .sommaire > main h2 {
    position: absolute;
    top: 30%;
    left: 20%;
  }
}
.sommaire > main a.boire {
  font-family: arial_rounded_mt_regular, sans-serif;
  display: inline-block;
  color: #E73457;
  font-size: 1.1em;
  font-weight: 400;
  width: 200px;
  height: 50px;
  border: 1px solid #E73457;
  border-radius: 5px;
  position: absolute;
  top: 56%;
  left: 67%;
  text-align: center;
  line-height: 50px;
}
@media only screen and (max-width: 768px) {
  .sommaire > main a.boire {
    position: absolute;
    top: 45%;
    left: 20%;
  }
}
.sommaire > main a.boire:hover {
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
}
/* nos produits */
.produit {
  background-position: top left;
  background-size: cover;
  background-repeat: no-repeat;
}
.produit > main {
  position: relative;
  width: 100%;
  min-height: 85vh;
  z-index: 5;
  margin: 70px auto 0 auto;
}
.produit > main h1 {
  padding: 0.2em 1em;
  margin: 0 auto 0 auto;
  text-align: center;
  font-family: arial_rounded_mt_regular, sans-serif;
  font-weight: bold;
  color: #E73457;
  font-size: 35px;
}
.produit > main h2 {
  padding: 0.2em 1em;
  margin: 0 auto 0 auto;
  text-align: center;
  font-family: arial_rounded_mt_regular, sans-serif;
  font-weight: bold;
  color: #000000;
  font-size: 30px;
}
/* nous trouver */
.trouver {
  background-color: #000000;
}
.trouver > main {
  position: relative;
  width: 90%;
  min-height: 85vh;
  z-index: 5;
  margin: 70px auto 0 auto;
}
.trouver > main h1 {
  padding: 0.2em 1em;
  margin: 0 auto 0 auto;
  text-align: center;
  font-family: arial_rounded_mt_regular, sans-serif;
  font-weight: bold;
  color: #E73457;
  font-size: 35px;
}
.trouver > main #map1 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 75vh !important;
}
.trouver > main .carte_gis .leaflet-popup-content .title {
  font-family: arial_rounded_mt_regular, sans-serif;
  font-weight: bold;
  font-size: 1.2em;
}
.trouver > main .carte_gis .leaflet-popup-content p {
  font-family: open_sansregular, sans-serif;
  font-weight: normal;
  font-size: 1em;
}
.trouver > main .carte_gis .legende_map ul li {
  padding-left: 30px;
}
.trouver > main .carte_gis .legende_map ul li.mapico_bars {
  background: transparent url('https://hibis.zedd.pro/squelettes/assets/img/icons8-restaurant-48.png') center left no-repeat;
  background-size: contain;
}
.trouver > main .carte_gis .legende_map ul li.mapico_cafes {
  background: transparent url('https://hibis.zedd.pro/squelettes/assets/img/icons8-coffeeshop-50.png') center left no-repeat;
  background-size: contain;
}
.trouver > main .carte_gis .legende_map ul li.mapico_foodtrucks {
  background: transparent url('https://hibis.zedd.pro/squelettes/assets/img/icons8-food-truck-48.png') center left no-repeat;
  background-size: contain;
}
.trouver > main .carte_gis .legende_map ul li.mapico_magasins {
  background: transparent url('https://hibis.zedd.pro/squelettes/assets/img/icons8-shop-50.png') center left no-repeat;
  background-size: contain;
}
.trouver > main .carte_gis .legende_map ul li.mapico_restaurants {
  background: transparent url('https://hibis.zedd.pro/squelettes/assets/img/icons8-restaurant-50.png') center left no-repeat;
  background-size: contain;
}
.trouver > main .carte_gis .legende_map ul li.mapico_services_de_livraison {
  background: transparent url('https://hibis.zedd.pro/squelettes/assets/img/icons8-local-delivery-time-48.png') center left no-repeat;
  background-size: contain;
}
/* contact */
.contact {
  background-color: #E73457;
}
.contact > main {
  position: relative;
  width: 90%;
  min-height: 85vh;
  z-index: 5;
  margin: 70px auto 0 auto;
  color: #FFFFFF;
  font-family: open_sansregular, sans-serif;
}
.contact > main h1 {
  padding: 0.2em 1em;
  margin: 0 auto 0 auto;
  text-align: center;
  font-family: arial_rounded_mt_regular, sans-serif;
  font-weight: bold;
  font-size: 35px;
}
.contact > main .content {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin: 3rem 0 0 0;
}
@media only screen and (max-width: 768px) {
  .contact > main .content {
    flex-direction: column;
    align-items: center;
    margin: 1rem 0 0 0;
  }
}
.contact > main .content .col h2.spip {
  text-align: left;
  font-size: 30px;
  margin-bottom: 1rem;
}
.contact > main .content .col > div.contact {
  width: 320px;
  height: auto;
  font-size: 1.2em;
  line-height: 1.5em;
}
@media only screen and (max-width: 768px) {
  .contact > main .content .col > div.contact {
    padding: 20px;
  }
}
.contact > main .content .col > div.contact p {
  font-size: 0.9em;
}
.contact > main .content .col > div.contact h3 {
  font-size: 0.8em;
}
.contact > main .content .col > div.contact h3 a {
  color: #FFFFFF;
}
.contact > main .content .col div.formulaire_spip {
  width: 320px;
  height: auto;
  font-size: 1.2em;
  line-height: 1.5em;
}
@media only screen and (max-width: 768px) {
  .contact > main .content .col div.formulaire_spip {
    padding: 20px;
  }
}
.contact > main .content .col div.formulaire_spip label {
  display: none;
}
.contact > main .content .col div.formulaire_spip input, .contact > main .content .col div.formulaire_spip textarea {
  width: 100%;
  font-family: open_sansregular, sans-serif;
  font-size: 1.1rem;
  padding: 0.3rem;
  margin: 0 0 0.3rem 0;
}
.contact > main .content .col div.formulaire_spip .submit {
  width: 100%;
  font-family: open_sansregular, sans-serif;
  font-size: 1.1rem;
  border: 1px solid #FFFFFF;
  border-radius: 0;
  background-color: #FFFFFF;
}
.contact > main .content .col div.formulaire_spip .submit:hover {
  cursor: pointer;
  background-color: #E73457;
  color: #FFFFFF;
}
/* slider deployant */
.slider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10vmin;
  overflow: hidden;
  transform: skew(5deg);
  max-width: 900px;
  margin: 0 auto;
  padding-top: 1rem;
}
@media only screen and (max-width: 768px) {
  .slider {
    max-width: 350px;
    margin: 0 4%;
  }
}
.slider .card {
  flex: 1;
  transition: all 1s ease-in-out;
  height: 50vmin;
  position: relative;
}
.slider .card .card__head {
  color: #000000;
  background: #E73457;
  padding: 0.5em;
  transform: rotate(-90deg);
  transform-origin: 0% 0%;
  transition: all 0.5s ease-in-out;
  min-width: 100%;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 1em;
  white-space: nowrap;
}
.slider .card:hover {
  flex-grow: 10;
}
.slider .card:hover img {
  filter: grayscale(0);
}
.slider .card:hover .card__head {
  text-align: center;
  top: calc(100% - 2em);
  color: white;
  background: rgba(0, 0, 0, 0.5);
  font-size: 2em;
  transform: rotate(0deg) skew(-5deg);
}
.slider .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s ease-in-out;
  filter: grayscale(100%);
}
.slider .card:not(:nth-child(5)) {
  margin-right: 1em;
}
/*page produit pour mettre slider et texte cote a cote*/
.duo-articles {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 0 auto;
  padding-top: 2rem;
  flex-direction: column;
}
.duo-articles strong {
  font-weight: bold;
}
.duo-articles .article-left, .duo-articles .article-right {
  margin: 0 auto;
  max-width: 1200px;
}
.duo-articles .article-right {
  margin: 0 auto;
  max-width: 1200px;
}
.duo-articles .article-right h2 {
  color: #E73457;
  font-size: 30px;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  .duo-articles .article-right h2 {
    font-size: 30px !important;
  }
}
.duo-articles .article-right .entete-article-right {
  text-align: center;
  margin: 0 auto;
  display: block;
  padding-bottom: 2.5rem;
}
.duo-articles .article-right .entete-article-right h3 {
  font-size: 26px;
  font-weight: lighter;
  color: black;
}
.duo-articles .article-right .col {
  max-width: 1000px;
}
.duo-articles .article-right .col h2 {
  padding-bottom: 2.5rem;
}
.duo-articles .article-right .col figure {
  display: flex;
  justify-content: center;
  padding: 2rem;
  margin: 2rem;
}
.duo-articles .article-right .col p {
  font-size: 20px;
  letter-spacing: 1;
  max-width: 800px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .duo-articles .article-right .col p {
    max-width: 350px;
    margin: 0 4%;
  }
}
@media only screen and (max-width: 768px) {
  .duo-articles .article-right img {
    max-width: 250px;
    height: auto;
  }
}
@media (max-width: 768px) {
  .duo-articles {
    flex-direction: column;
  }
  .duo-articles .article-left, .duo-articles .article-right {
    flex: 0 0 100%;
  }
}
/* plugin de réseaux sociaux*/
.sociaux {
  margin: 2em 0 1em 0;
}
@media only screen and (max-width: 768px) {
  .sociaux {
    margin: 1em 0 0 0;
  }
}
.sociaux ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 10px;
}
.sociaux ul .socicon {
  font-size: 1em;
  color: gray;
  background-color: white;
}
.sociaux ul .socicon:hover {
  opacity: 0.8;
}
/*footer*/
.footer-site {
  position: relative;
  background-color: #e63559;
  color: white;
  overflow: hidden;
  padding-top: 3rem;
}
.footer-site::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: white;
  transform: skewY(-1.5deg);
  transform-origin: top left;
  z-index: 1;
}
.footer-site .footer-logo {
  max-height: 100px;
  width: auto;
  display: block;
  margin-left: auto;
}
.footer-site .footer-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem clamp(10rem, 5vw, 4rem);
  flex-wrap: wrap;
  float: right;
}
@media only screen and (max-width: 768px) {
  .footer-site .footer-content {
    padding: 2rem max(4rem, min(10rem, 5vw));
  }
}
@media (max-width: 768px) {
  .footer-site .footer-site .footer-content {
    padding: 2rem clamp(3rem, 5vw, 4rem) !important;
  }
}
.footer-site .footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  font-size: 14px;
}
.footer-site .footer-links p {
  margin: 0;
}
.footer-site .footer-links a {
  color: white;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-site .footer-links a:hover {
  opacity: 0.8;
}
.footer-site .footer-brand {
  transform: rotate(-90deg);
  transform-origin: right center;
  padding-right: 1rem;
}
.footer-site .footer-brand img.footer-logo {
  max-height: 100px;
  width: auto;
  display: block;
}
/* eco-système */
.ecosysteme .footer-site::before {
  background: black;
}
.ecosysteme main > h1:first-of-type, .ecosysteme main > h2:first-of-type {
  display: none;
}
.ecosysteme .ecosystem-container h1 {
  font-size: 35px;
}
.ecosysteme .ecosystem-container h2 {
  font-size: 30px;
  margin-bottom: 15px;
}
.ecosysteme .ecosystem-container .lame-1, .ecosysteme .ecosystem-container .lame-3 {
  background-color: #000;
  color: #f3476c;
  text-align: center;
  padding: 60px 20px;
}
.ecosysteme .ecosystem-container .lame-1 .lame-container, .ecosysteme .ecosystem-container .lame-1 .lame-content-center, .ecosysteme .ecosystem-container .lame-3 .lame-container, .ecosysteme .ecosystem-container .lame-3 .lame-content-center {
  max-width: 1200px;
  margin: 0 auto;
}
.ecosysteme .ecosystem-container .lame-1 .lame-content, .ecosysteme .ecosystem-container .lame-3 .lame-content {
  padding: 20px;
}
.ecosysteme .ecosystem-container .lame-1 .lame-logo, .ecosysteme .ecosystem-container .lame-3 .lame-logo {
  margin-top: 20px;
}
.ecosysteme .ecosystem-container .lame-1 .lame-logo img, .ecosysteme .ecosystem-container .lame-3 .lame-logo img {
  max-width: 200px;
  height: auto;
}
.ecosysteme .ecosystem-container .lame-2 {
  background: linear-gradient(120deg, #f3476c 50%, #fff 50%);
  color: white;
  display: flex;
  justify-content: center;
  padding: 60px 20px;
  min-height: 380px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .ecosysteme .ecosystem-container .lame-2 {
    background: linear-gradient(120deg, #f3476c 75%, #fff 0%);
    min-height: 380px;
    height: 450px;
  }
}
.ecosysteme .ecosystem-container .lame-2 .lame-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  gap: 10rem;
}
.ecosysteme .ecosystem-container .lame-2 .lame-logo {
  flex: 1 1 320px;
}
.ecosysteme .ecosystem-container .lame-2 .lame-logo p {
  margin-top: 15px;
}
.ecosysteme .ecosystem-container .lame-2 .lame-logo p:nth-child(2) {
  max-width: 450px;
  color: black;
}
@media only screen and (max-width: 768px) {
  .ecosysteme .ecosystem-container .lame-2 .lame-logo p:nth-child(2) {
    max-width: 250px;
  }
}
.ecosysteme .ecosystem-container .lame-2 .lame-logo strong {
  font-size: 30px;
  line-height: 1;
  text-align: left !important;
}
.ecosysteme .ecosystem-container .lame-2 .lame-logo img {
  max-width: 150px;
  height: auto;
  position: absolute;
  right: 30%;
  transform: rotate(-40deg);
  transform-origin: top left;
  top: 20rem;
}
@media only screen and (max-width: 768px) {
  .ecosysteme .ecosystem-container .lame-2 .lame-logo img {
    max-width: 80px;
    right: 0;
    transform: rotate(-40deg);
    top: -80px;
    position: relative;
    left: 55%;
  }
}
.ecosysteme .ecosystem-container .lame-2 .lame-content {
  flex: 1 1 300px;
  padding: 40px;
  color: white;
}
.ecosysteme .ecosystem-container .lame-3 .lame-content-center p {
  color: white;
  font-weight: bold;
}
.ecosysteme .ecosystem-container .lame-3 .lame-content-center p:nth-child(4) {
  outline: 1px solid #f3476c;
  padding: 0.5rem;
  max-width: 300px;
  margin: 2rem auto;
  border-radius: 10px;
}
.ecosysteme .ecosystem-container .lame-3 .lame-content-center p:nth-child(4) a {
  color: white;
}
.ecosysteme .ecosystem-container .lame-3 .lame-content-center p:nth-child(7) {
  outline: 1px solid #f3476c;
  padding: 0.5rem;
  max-width: 300px;
  margin: 2rem auto;
  border-radius: 10px;
}
.ecosysteme .ecosystem-container .lame-3 .lame-content-center p:nth-child(7) a {
  color: white;
}
.ecosysteme .ecosystem-container .lame-3 .lame-content-center .hero {
  display: flex;
}
.ecosysteme .ecosystem-container .lame-3 .lame-content-center .hero .spip_document img {
  max-width: 100%;
  object-fit: contain;
  height: auto;
  padding: 0.25rem;
}
/* fin eco-système */
/*blog*/
.actus {
  display: flex;
  justify-content: center;
  padding: 20px;
  flex-direction: column;
}
.actus h2 {
  text-align: center;
}
.actus .actualites {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.actu-item {
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
  width: 250px;
  display: flex;
  flex-direction: column;
  min-height: 175px;
}
@media (max-width: 768px) {
  .actu-item {
    width: 100%;
  }
}
.actu-item .visuel img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.actu-item .contenu {
  padding: 20px;
  color: #fff;
  gap: 2rem;
  display: flex;
  flex-direction: column;
}
.actu-item .contenu .date {
  color: #f3476c;
  font-size: 0.9em;
  margin-bottom: 10px;
}
.actu-item .contenu a {
  text-decoration: none;
  color: #fff;
}
.actu-item .contenu h2 {
  margin-top: 0;
}
.actu-item .contenu h2 a {
  text-decoration: none;
  color: #fff;
}
.actu-item .contenu h2 a:hover {
  color: #f3476c;
}
.actu-item .contenu .intro {
  color: #fff;
  margin-bottom: 20px;
}
.actu-item .contenu .lire-suite {
  background-color: transparent;
  color: #f3476c;
  padding: 5px 15px;
  text-decoration: none;
  border-radius: 5px;
  outline: 1px solid #f3476c;
}
.actu-item .contenu .lire-suite:hover {
  background-color: #f3476c;
  color: #fff;
}
/*fin blog*/
/* ---------------------------------------------
   article single (.actualite-main)
   --------------------------------------------- */
.actualite-main {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: sans-serif;
  color: #333;
  line-height: 1.6;
}
.actualite-main img {
  display: flex;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
  padding-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  .actualite-main img {
    display: flex;
    max-width: 80%;
    margin: auto;
  }
}
.actualite-main nav.breadcrumb {
  font-size: 0.875rem;
  color: #999;
  margin-bottom: 1rem;
}
.actualite-main nav.breadcrumb a {
  color: #333;
}
.actualite-main nav.breadcrumb a:hover {
  text-decoration: underline;
}
.actualite-main h1[itemprop="headline"] {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.actualite-main .post-meta {
  font-size: 0.875rem;
  color: #999;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.actualite-main .post-meta a {
  color: #E73457;
}
.actualite-main .post-meta a:hover {
  text-decoration: underline;
}
.actualite-main .post-meta span, .actualite-main .post-meta time {
  display: inline-block;
}
.actualite-main figure {
  margin: 2rem 0;
  text-align: center;
}
.actualite-main figure img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.actualite-main figure figcaption {
  font-size: 0.875rem;
  color: #999;
  margin-top: 0.5rem;
}
.actualite-main .chapo {
  background: #f9f9f9;
  border-left: 4px solid #E73457;
  padding: 1rem;
  margin-bottom: 2rem;
  font-style: italic;
}
.actualite-main .texte p {
  margin-bottom: 1rem;
}
.actualite-main .texte h2, .actualite-main .texte h3, .actualite-main .texte h4 {
  margin: 2rem 0 1rem;
  color: #333;
}
.actualite-main .texte ul, .actualite-main .texte ol {
  margin: 0 0 1rem 1.5rem;
}
.actualite-main .texte blockquote {
  margin: 1rem 0;
  padding-left: 1rem;
  border-left: 3px solid #E73457;
  color: #999;
}
.actualite-main .tags {
  margin: 2rem 0;
}
.actualite-main .tags a {
  display: inline-block;
  background: #E73457;
  color: #fff;
  padding: 0.3rem 0.6rem;
  margin: 0 0.5rem 0.5rem 0;
  border-radius: 4px;
  font-size: 0.875rem;
}
.actualite-main .tags a:hover {
  opacity: 0.8;
}
.actualite-main .social-share::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #e63559, rgba(255, 255, 255, 0));
  margin-bottom: 10px;
}
.actualite-main .social-share {
  margin: 2rem 0;
}
.actualite-main .social-share a {
  display: inline-block;
  margin-right: 1rem;
  color: #333;
  font-size: 0.875rem;
  position: relative;
  padding-left: 1.5rem;
  text-decoration: none;
}
.actualite-main .social-share a:hover {
  color: #E73457;
}
.actualite-main .social-share a.facebook:before {
  background: url('https://hibis.zedd.pro/squelettes/assets/icons/facebook.svg') center/contain no-repeat;
}
.actualite-main .social-share a.twitter:before {
  background: url('https://hibis.zedd.pro/squelettes/assets/icons/twitter.svg') center/contain no-repeat;
}
.actualite-main .social-share a.mail:before {
  background: url('https://hibis.zedd.pro/squelettes/assets/icons/mail.svg') center/contain no-repeat;
}
.actualite-main .social-share a:before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.actualite-main .related-articles {
  margin-top: 3rem;
}
.actualite-main .related-articles h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.actualite-main .related-articles ul {
  list-style: none;
  padding: 0;
}
.actualite-main .related-articles ul li {
  margin-bottom: 1rem;
}
.actualite-main .related-articles ul li a {
  font-weight: bold;
  color: #E73457;
}
.actualite-main .related-articles ul li a:hover {
  text-decoration: underline;
}
.actualite-main .related-articles ul li time {
  font-size: 0.75rem;
  color: #999;
  margin-left: 0.5rem;
}
@media (max-width: 768px) {
  .actualite-main h1[itemprop="headline"] {
    font-size: 2rem;
  }
  .actualite-main .post-meta {
    flex-direction: column;
    gap: 0.25rem;
  }
}
/* ---------------------------------------------
   FIN article single
   --------------------------------------------- */
/* Rubrique Legale */
.legal-pages {
  /* Styles généraux pour la page */
  max-width: 800px;
  /* Largeur maximale pour une meilleure lisibilité */
  margin: 40px auto;
  /* Espacement et centrage */
  padding: 20px;
  /* Espacement interne */
  background-color: #f9f9f9;
  /* Fond légèrement gris */
  border: 1px solid #ddd;
  /* Bordure légère */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  /* Ombre légère */
}
@media only screen and (max-width: 768px) {
  .legal-pages {
    margin: 100px 5%;
  }
}
.legal-pages .breadcrumb {
  /* Styles pour le fil d'ariane */
  font-size: 0.9em;
  /* Taille de police plus petite */
  margin-bottom: 20px;
  /* Espacement sous le fil d'ariane */
}
.legal-pages h1 {
  /* Styles pour le titre de la page */
  margin-bottom: 15px;
  /* Espacement sous le titre */
}
.legal-pages .intro {
  /* Styles pour l'introduction */
  font-size: 1.1em;
  /* Taille de police légèrement plus grande */
  margin-bottom: 20px;
  /* Espacement sous l'introduction */
  color: #666;
  /* Couleur de texte plus foncée */
}
.legal-pages .contenu {
  /* Styles pour le contenu principal */
  line-height: 1.6;
  /* Espacement entre les lignes */
}
.legal-pages .contenu h2, .legal-pages .contenu h3, .legal-pages .contenu h4 {
  /* Styles pour les titres dans le contenu */
  margin-top: 20px;
  /* Espacement au-dessus des titres */
  margin-bottom: 10px;
  /* Espacement sous les titres */
}
.legal-pages .contenu ul, .legal-pages .contenu ol {
  /* Styles pour les listes */
  margin: 10px 0;
  /* Espacement autour des listes */
  padding-left: 20px;
  /* Espacement à gauche pour les puces ou les numéros */
}
.legal-pages .contenu li {
  /* Styles pour les éléments de liste */
  margin-bottom: 5px;
  /* Espacement entre les éléments */
}
/* spip admin */
.spip-admin-float {
  position: absolute;
  top: 97vh !important;
  right: 0 !important;
  font-size: 0.6em;
}
/*Enlever les bordures au form contact*/
#formulaire_formidable_contact input, #champ_formidable_contact_textarea_1 {
  border: none;
}
