/*footer*/
.site-info {
  display: none;
}
.site-footer_perso h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: rgba(8, 75, 132, 1);
}
.site-footer_perso a {
  color: rgba(8, 75, 132, 1);
  text-decoration: none;
  cursor: pointer;
  padding-bottom: 0.2rem;
  padding-top: 0.2rem;
}
.site-footer_perso a:hover {
  color: #d10565;
}
.site-footer_perso {
  display: grid;
  grid-template-columns: repeat (1, 1fr);
  background-color: white;
  color: rgba(8, 75, 132, 1);
  font-size: 1rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-left: 2rem;
  padding-right: 2rem;
  justify-content: space-around;
  text-align: center;
  grid-template-areas:
    'colonne_1'
    'colonne_2'
    'colonne_3';
}
.colonne_1 {
  grid-area: colonne_1;
  text-align: left;
}

.colonne_2 {
  grid-area: colonne_2;
  text-align: left;
}

.colonne_3 {
  grid-area: colonne_3;
  text-align: left;
}

@media (min-width: 800px) {
  .site-footer_perso {
    display: grid;
    grid-template-columns: repeat (6, 1fr);
    background-color: white;
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
    justify-content: space-around;
    text-align: center;
    grid-template-areas: 'colonne_1 . . . colonne_2 colonne_3';
  }
}
