/**************************************************************
 SIHP (www.sihp.fr)
 Copyright 2009-2022 Develop'it
 
 Version : 6.2.0
 Date    : 19/12/2022
 Fichier : css/Pied.css
**************************************************************/

/*************************** Pied ***************************/
footer#Pied {
  padding: 0;
/*  font-size: 1.4em;*/
  line-height: 1.2em;
  background-color: rgba(var(--clr-bleufonce),0.95);
  color: rgba(254, 254, 254, 0.85);
}
footer#Pied .ZoneIdentite {
  position: relative;
  font-size: 1.2em;
  z-index: 2;
  padding: 30px 20px 30px 0;
}
footer#Pied .ZoneIdentite::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  height: 100%;
  width: 100vw;
/*
  background-color: rgba(254, 254, 254, 0.05);
  background-color: rgba(48, 141, 174, 1);
  background-color: rgba(118,157,186, 1);
*/
  background-color: rgba(var(--clr-bleufonce), 1);
}
footer#Pied .Logo {
  max-height: 150px;
  opacity: 0.8;
}
footer#Pied .ZoneIdentite .ZoneAdresse {
  margin-top: 2em;
}
footer#Pied .ZoneIdentite .ZoneTelephone {
  margin-top: 1em;
}
footer#Pied .ZoneIdentite .MentionLegale {
  margin-top: 1em;
  margin-bottom: 1em;
  }
  
footer#Pied a {
  color: rgba(254, 254, 254, 0.8);
}
footer#Pied a:hover {
  color: rgba(var(--clr-orange), 1);
}

/*************************** ZoneRappelMenu ***************************/
footer#Pied #ZoneRappelMenu {
  position: relative;
/*  font-size: 1.0em;*/
  z-index: 2;
  padding: 30px;
  column-count: 3;
}
footer#Pied #ZoneRappelMenu .TitreMenu {
  font-weight: bold;
  font-size: 1.6em;
  margin-bottom: 0.5em;
  padding-bottom: 0.8em;
  position: relative;
}
footer#Pied #ZoneRappelMenu .TitreMenu::after {
  content:"";
  position: absolute;
  left: 0;
  bottom: 0;
  width:20px;
  height:3px;
  background-color: rgb(var(--clr-orange));
}
footer#Pied .BlocMenu {
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  -moz-page-break-inside: avoid;
  overflow: hidden; /* fix for Firefox */
  page-break-inside: avoid;
  break-inside: avoid; /* IE 10+ */
  break-inside: avoid-column;
}
footer#Pied .BlocMenu ul {
  list-style: none;
}
footer#Pied .BlocMenu ul li {
  font-weight: 400;
  font-size: 1.4em;
  text-align: left;
  margin-bottom: 0.5em;
  line-height: 1.2em;
}
footer#Pied .BlocMenu li > ul {
  margin-top: 0.5em;
}
footer#Pied .BlocMenu li > ul li {
  font-weight: 400;
  font-size: 13px;
  text-align: left;
}

@media only screen and (max-width: 1023px) {
  /* medium */
  footer#Pied h2 {
    text-align: center;
  }
  footer#Pied .ZoneIdentite {
    padding: 30px 0;
  }
  footer#Pied .ZoneIdentite::before {
    left: -0.625rem;
    right: -0.625rem;
    width: unset;
  }
}
@media only screen and (max-width: 639px) {
  /* small */
  footer#Pied h2 {
    text-align: center;
  }
  footer#Pied .ZoneIdentite {
    padding: 30px 0;
  }
  footer#Pied .ZoneIdentite::before {
/*
    left: -0.8em;
*/
  }
  footer#Pied #ZoneRappelMenu {
    padding: 10px;
    column-count: 1;
  }
}

/*************************** MenuSocial ***************************/
footer .MenuSocial {
  margin: 2em 0 2em 0;
  display: flex;
  justify-content: center;
  gap: 1.5em;
}
footer .MenuSocial li {
  display: inline-block;
}
footer .MenuSocial li a {
  display: inline-block;
  width: 30px;
  height: 30px;
}

footer .MenuSocial li .IconeSociale {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  background-color: rgba(254, 254, 254, 0.1);
}
footer .MenuSocial li .IconeSociale:hover {
  background-color: rgba(254, 254, 254, 1);
}
footer .MenuSocial li .IconeSociale .PictoSocial {
  height: 16px;
  width: 16px;
  fill: currentColor;
}
footer .MenuSocial li .IconeSociale:hover .PictoSocial {
/*  fill: rgba(48, 141, 174);*/
  fill: rgba(var(--clr-orange));
}
/*************************** RetourHaut ***************************/
#btRetourHaut {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  display: none;
  color: rgba(220, 220, 220, 1);
  z-index: 100;
  background-color: rgba(20, 20, 20, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.5s ease;
}
#btRetourHaut svg {
  fill: currentColor;
  width: 12px;
  height: 12px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#btRetourHaut:hover,
#btRetourHaut:focus {
  background-color: rgba(245, 245, 245, 0.95);
  color: #000;
}
