.ser-nav {
  height: 80px;
  background: #3c3a98 !important;
}
.ser-nav ul {
  height: 100%;
  display: flex;
  align-items: center;
}
.ser-nav ul li {
  width: 20%;
  text-align: center;
}
.ser-nav ul li img {
  display: block;
  width: auto;
  height: auto;
  margin: 0;
}
.ser-nav ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white !important;
}
.ser-nav ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: white;
  margin-bottom: 5px;
}
.ser-nav ul li .ser-nav-icon-active {
  display: none;
}
.ser-nav ul li:hover span {
  background-color: #ff8d6b;
}
.ser-nav ul li:hover .ser-nav-icon {
  display: none;
}
.ser-nav ul li:hover .ser-nav-icon-active {
  display: block;
}
.main-bs {
  height: 270px;
  background-color: white;
  box-sizing: border-box;
  padding-top: 10px;
}
.main-bs-tab {
  display: flex;
  align-items: center;
}
.main-bs-tab p {
  flex: 1;
  text-align: center;
  font-size: 16px;
  padding: 10px 0;
  position: relative;
  cursor: pointer;
}
.main-bs-tab p.on {
  color: #3c3a98;
  border-bottom: 1px solid #3c3a98;
}
.main-bs-content {
  padding: 0 10px 20px;
}
.main-bs-item {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  padding: 10px 0;
}
.main-bs-item.on {
  display: grid;
}
.main-bs-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
}
.main-bs-item a span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #3c3a98;
  border-radius: 5px;
  margin-bottom: 5px;
}
.main-bs-item a span img {
  display: block;
  width: 20px;
  height: 20px;
}
.main-bs-item a:hover {
  color: #ff9574;
}
.main-bs-item a:hover span {
  background-color: #ff9574;
}
