.header-soul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}
.bg-blue{
  background-color: #070751;
}
.header-soul-fixed{
  position: fixed;
  max-height: 0;
}
.header-soul-fixed.show-header{
  max-height: 80px;
  box-shadow: 2px 0 1px #fff;
}
.navbar {
  height: 100%;
  padding: 0 20px;
}
.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.navbar-brand img{
  width: 92px;
}
.button-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
}
.button-toggle:hover {
  cursor: pointer;
}
.button-toggle span {
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 5px;
  transition: 0.3s;
}
.button-toggle.collapsed span:nth-child(2) {
  opacity: 0;
}
.button-toggle.collapsed span:nth-child(1) {
  transform: rotateZ(45deg);
  position: relative;
  top: 8px;
}
.button-toggle.collapsed span:nth-child(3) {
  transform: rotateZ(-45deg);
  position: relative;
  bottom: 9px;
}
.nav-items {
  display: flex;
  position: absolute;
  width: 100%;
  top: 60px;
  left: 0;
  overflow: hidden;
  transition: 0.3s;
  max-height: 500px;
  background-color: #070751;
  box-shadow: 0px 1px 2px #fff;
}
.nav-items.collapsed{
  max-height: 0;
}
.list-items{
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
  list-style: none;
}
.item{
  overflow: hidden;
}
.is-submenu{
  position: relative;
}
.is-submenu::after{
  content: '';
  background: url("../img/down-arrow.svg") no-repeat;
  height: 10px;
  width: 13px;
  position: absolute;
  right: 5px;
  top: 0;
  margin-top: 7px;
  font-size: 16px;
}
.is-submenu.expanded::after{
  transform: rotate(180deg);
  margin-top: 0;
  margin-bottom: 7px;
}
.item a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  width: 100%;
}
.item a.nav-item{
  font-weight: 800;
}
.submenu{
  max-height: 0;
  padding: 0 10px;
  list-style: none;
  transition: 0.5s;
}
.submenu.expanded{
  max-height: 500px;
}
.submenu li{
  padding-top: 10px;
}

@media (min-width: 992px) {
  .header-soul{
    height: 80px;
  }
  .button-toggle {
    display: none;
  }
  .nav-items{
    position: inherit;
    width: auto;
    max-height: fit-content !important;
    background-color: transparent;
    overflow: visible;
    box-shadow: none;
    height: 100%;
  }
  .list-items{
    flex-direction: row;
    margin: 0;
    padding: 0;
    gap: 60px;
    height: 100%;
  }
  .item{
    position: relative;
    overflow: visible;
  }
  .is-submenu::after {
    background: none;
  }
  .item a.nav-item{
    height: 100%;
    display: flex;
    align-items: center;
  }
  .item a.nav-item::after{
    transition: 0.3s;
    content: "";
    max-width: 0;
    width: 100%;
    position: absolute;
    display: flex;
    bottom: 15px;
    height: 3px;
    background-color: #614FFF;
  }
  .item a.nav-item:hover::after{
    max-width: 100%;
  }
  .submenu{
    position: absolute;
    background-color: #070751;
    top: 80px;
    overflow: hidden;
    padding: 0;
    transition: 0.2s;
    border-left: 1px solid #070751;
    border-right: 1px solid #070751;
    width: 200px;
  }
  .submenu.expanded{
    box-shadow: 0 0 1px #fff;
  }
  .submenu li {
    padding: 10px 20px;
  }
  .submenu a{
    opacity: 0.7;
    font-weight: 700;
  }
  .submenu a:hover{
    opacity: 1;
  }
}
@media (min-width: 1200px) {
  /* .list-items{
    gap: 60px;
  }   */
}