/*
HBUREAUTIQUE V37 - CORRECTIF FOOTER ACCUEIL UNIQUEMENT

Cause exacte :
global.css contient une règle de l'accueil avec un ID :
#index .footer-container {
  background:#fff !important;
  background-image:none !important;
}

Cette règle est plus spécifique que le footer V31 et transforme le footer bleu
en fond blanc. Comme les textes du footer sont blancs, il semble "absent"
alors qu'il est bien présent dans le HTML.

V37 ne touche qu'à ce conflit de couleur/visibilité sur l'accueil.
*/

html body#index #page .footer-container.hlb31-minimal-footer{
  display:block !important;
  visibility:visible !important;
  opacity:1 !important;
  height:auto !important;
  max-height:none !important;
  overflow:visible !important;

  background-color:#0562b6 !important;
  background-image:linear-gradient(135deg,#064d96 0%,#0562b6 52%,#07549f 100%) !important;
  background:linear-gradient(135deg,#064d96 0%,#0562b6 52%,#07549f 100%) !important;
  border-top:1px solid rgba(255,255,255,.16) !important;
}

html body#index #page .footer-container.hlb31-minimal-footer #footer.hlb31-footer-shell{
  display:block !important;
  visibility:visible !important;
  opacity:1 !important;
  background:transparent !important;
  color:#fff !important;
}

html body#index #page .footer-container.hlb31-minimal-footer .hlb31-footer-brand strong,
html body#index #page .footer-container.hlb31-minimal-footer .hlb31-footer-company span,
html body#index #page .footer-container.hlb31-minimal-footer .hlb31-footer-phone,
html body#index #page .footer-container.hlb31-minimal-footer .hlb31-footer-phone strong,
html body#index #page .footer-container.hlb31-minimal-footer .hlb31-footer-contact-link{
  color:#fff !important;
}

html body#index #page .footer-container.hlb31-minimal-footer .hlb31-footer-brand small,
html body#index #page .footer-container.hlb31-minimal-footer .hlb31-footer-company small,
html body#index #page .footer-container.hlb31-minimal-footer .hlb31-footer-phone small,
html body#index #page .footer-container.hlb31-minimal-footer .hlb31-footer-legal a,
html body#index #page .footer-container.hlb31-minimal-footer .hlb31-footer-copy{
  color:rgba(255,255,255,.82) !important;
}
