.brand-section {
  position: relative;
  color: #fff;
  width: 100%;
}
.section-bg {
  inset: 0;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 80vh;
  background-size: 100% 100%;
}
.section_list{
  width: 100%;
}
.section_list p{
  margin: 0;
}
.section_list img{
  width: 80%;
  display: block;
  margin: 0 auto;
}
.nav_list{
  background: #FFFFFF;
  box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.2);
  border-radius: 6px;
  position: fixed;
  right: 10px;
  top: 180px;
}
.nav-li{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 16px 5px;
  box-sizing: border-box;
  cursor: pointer;
  min-width: 88px;
}
.nav-icon{
  width: 36px;
  height: 36px;
  margin-bottom: 5px;
}
.nav-icon img{
  width: 100%;
  display: block;
}
.nav-name{
  font-weight: 500;
  font-size: 14px;
  color: #444444;
}
.nav-li:hover{
  background: linear-gradient( 225deg, #2A47CA 0%, #172B84 100%);
  border-radius: 6px;
}
.nav-li:hover .nav-name{
  color: #FFFFFF;
}
.nav-li.active{
  background: linear-gradient(225deg, #2A47CA 0%, #172B84 100%);
  border-radius: 6px;
}
.nav-li.active .nav-name{
  color: #FFFFFF;
}
.li-link{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}