.headerTop .top-menu-list > .menu-item-has-children > a > .sub-arrow {
  display: none;
}

.headerTop .top-menu-list > .menu-item-has-children > a::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-right: 1.5px solid #28334A;
  border-bottom: 1.5px solid #28334A;
  transform: rotate(45deg) translateY(-1px);
  transform-origin: center;
  transition: transform 0.5s ease;
  flex: 0 0 auto;
  order: 2;
}

.headerTop .top-menu-list > .menu-item-has-children.active > a::before,
.headerTop .top-menu-list > .current-menu-ancestor.menu-item-has-children > a::before {
  transform: rotate(-135deg) translateY(-1px);
}

@media (min-width: 961px) {
  .headerTop .top-menu-list > .menu-item-has-children:hover > ul.sub-menu,
  .headerTop .top-menu-list > .menu-item-has-children:focus-within > ul.sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .headerTop .top-menu-list > .menu-item-has-children:hover > a,
  .headerTop .top-menu-list > .menu-item-has-children:focus-within > a {
    background: rgba(48, 56, 63, 0.12);
  }

  .headerTop .top-menu-list > .menu-item-has-children:hover > a::before,
  .headerTop .top-menu-list > .menu-item-has-children:focus-within > a::before {
    transform: rotate(-135deg) translateY(-1px);
  }
}

