#site_map {
    display: flex;
    padding: 20px;
    width: max-content;
    margin: auto;
}
.site_info>p {
  background: white;
  margin: 10px 0;
  color: #014094;
  font-size: 20px;
  text-align: left;
  font-weight: bold;
  width: max-content;
}
#site_map>div {
  margin: 0 50px;
  flex: 1;
}
.site_detail>p{
  width:max-content;
  padding-bottom: 8px;
  border-bottom: 2px solid transparent;
  transition: border 1s;
  margin: 8px 0;
}
.site_detail>p::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    margin-top: 5px;
    background: #032858;
    transition: width .3s;
}
.site_detail>p:hover::after {
    width: 100%;
}
#sitemap_title{
  font-weight: bold;
  font-size: 30px;
  text-align: center;
}
@media screen and (max-width: 800px) {
  #site_map {
    display: block !important;
    padding: 10px;
    margin: 0 10px;
  }
  #site_map>div {
    margin: 0 0 35px 0;
  }
  #sitemap_title{
    font-size: 20px;
  }
}
