.site-map .site-map__list {
  width: 100%;
  font-size: 16px;
  color: #222f3e;
}
.site-map .site-map__list > li {
  margin-bottom: 24px;
}
.site-map .site-map__list .link {
  position: relative;
}
.site-map .site-map__list .link::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 16px;
  margin: auto 0;
  background-image: url("../img/arrow_black.svg");
  width: 20px;
  height: 20px;
  background-size: cover;
  transition: transform 0.3s ease-in-out 0.3s;
}
.site-map .site-map__list .link a {
  display: block;
  padding: 24px 40px;
  width: 100%;
  background-color: #fff;
  position: relative;
  font-size: 20px;
  color: #127ac0;
}
.site-map .site-map__list .link a:hover::after {
  content: "";
  display: inline-block;
  position: absolute;
  height: 1px;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #127ac0;
}
.site-map .site-map__list .link:hover a::after {
  right: 16px;
}
.site-map .site-map__list .link-group {
  background-color: #fff;
  padding: 24px 16px;
}
.site-map .site-map__list .link-group ul li:first-child {
  font-size: 20px;
  margin-bottom: 8px;
}
.site-map .site-map__list .link-group ul li:not(:last-child) {
  margin-bottom: 8px;
}
.site-map .site-map__list .link-group ul li a {
  display: block;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  color: #127ac0;
  transition: 0.3s;
  padding-left: 24px;
}
.site-map .site-map__list .link-group ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background-image: url("../img/arrow_black.svg");
  width: 20px;
  height: 20px;
  background-size: cover;
}
.site-map .site-map__list .link-group ul li a:hover::after {
  content: "";
  display: inline-block;
  position: absolute;
  height: 1px;
  bottom: 0;
  left: 24px;
  width: calc(100% - 24px);
  background-color: #127ac0;
}/*# sourceMappingURL=site-map.css.map */