.header-con {
    border-bottom: 1px solid rgba(218, 230, 241, 0.72);
    background: #FFF;
    box-shadow: 0px 4px 8px 1px rgba(0, 0, 0, 0.04);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    overflow: hidden;
    height: 100px;
    display: flex;
  }
  
  .header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
  }
  
  .second--nav {
    display: none;
  }
  .btn-menu {
    display: none;
  }
  
  .nav-con {
    display: flex;
    align-items: center;
    gap: 48px;
  }
  .nav-con ul {
    display: flex;
    list-style-type: none;
    height: 56px;
    margin: 0;
    gap: 48px;
  }
  .nav-con ul li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .nav-con ul li a {
    text-decoration: none;
    color: #787878;
    font-size: 1.25rem;
    font-weight: 400;
    font-family: GeneralSans;
  }

  .nav-con ul .current_page_item a {
    color: #000;
    position: relative; /* Make sure the element is positioned for ::after to work properly */
}

.nav-con ul .current_page_item a::after {
    content: '';
    width: 16px;
    height: 6px;
    background-color: #96C942;
    position: absolute;
    bottom: -20px; /* Adjust position as needed */
    left: 50%;
    transform: translateX(-50%); /* Center the div horizontally */
    border-radius: 6px; /* Optional: to give it slightly rounded edges */
}