/*
.......##..............##.....##.##....##.########..########.########..##.......####.##....##.########....................##
......##...##...##.....##.....##.###...##.##.....##.##.......##.....##.##........##..###...##.##...........##...##.......##.
.....##.....##.##......##.....##.####..##.##.....##.##.......##.....##.##........##..####..##.##............##.##.......##..
....##....#########....##.....##.##.##.##.##.....##.######...########..##........##..##.##.##.######......#########....##...
...##.......##.##......##.....##.##..####.##.....##.##.......##...##...##........##..##..####.##............##.##.....##....
..##.......##...##.....##.....##.##...###.##.....##.##.......##....##..##........##..##...###.##...........##...##...##.....
.##.....................#######..##....##.########..########.##.....##.########.####.##....##.########..............##......
*/
/* Souligner dynamiquement */
.link-underline {
  position: relative;
  display: inline-block;
}
.link-underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  background-color: currentColor;
}
.link-underline:hover::after {
  transform: scaleX(1);
}

.border-top {
  border-top: 1px solid black;
}

/* Responsive */
@media screen and (max-width: 992px) {
}
