
.topnav-container ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    margin-right: 20px;
}

.topnav-container ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 400;
}

.topnav-container ul li a:hover {
    color: white;
    border-bottom: 2px solid white;
}

.hamburger-menu {
    display: none;
    color: white;
    font-size: 26px;
    cursor: pointer;
    margin-right: 10px;
    position: relative;
    top: -3px;
}


.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%; 
    width: 80%;
    height: 100%;
    background-color: #3366cc;
    color: white;
    z-index: 999;
    transition: right 0.3s ease;
    /* padding: 20px; */
    padding: 10px;
    border-left: 1px solid white;
}

.mobile-menu header {
    display: flex;
    justify-content: flex-end;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu ul li {
    /* margin-bottom: 20px; */
    margin-bottom: 10px;
}

.mobile-menu ul li a {
    display: block;
    color: white;
    text-decoration: none;
    /* padding: 4px 0; */
    padding: 4px;
}

.mobile-menu ul li a:hover {
    background-color: white;
    color: #3366cc;
}

.close-menu {
    font-size: 30px;
    cursor: pointer;
}

@media (max-width: 992px) {
    .topnav-container ul{
        gap:12px;
        margin-right: 5px;
    } 
    .topnav-container ul li a{

        font-size: 0.9em;
    } 
}

@media (max-width: 768px) {
    .topnav-container {
        display: none;
    }
    
    .hamburger-menu {
        display: block;
    }
}

@media (max-width: 768px) {
    header.top-header {
      justify-content: center;
      position: relative;
      height: 52.5px;
      /* padding: 0px 12px; */
    }
  
    .logomark-image {
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
    }
  
    .hamburger-menu {
      position: absolute;
      right: 12px;
      top: 46%;
      transform: translateY(-46%);
    }
  }
  