.ism-v3-header__topBar {
  background: var(--primary-color);
  height: 35px;

  .nav-link {
    color: #FFF !important;
    font-family: Poppins;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    text-transform: capitalize;
    align-content: center;
  }
}

.date-time {
  color: #FFF;
  font-family: Poppins;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  text-transform: capitalize;
  align-content: center;
}

.ism-header__main_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}

.ism-header__main_box img {
    width: 100%;
    height: 4rem;
}

.main-header {
  background: #B7C3DF;
  color: #192F60;
  height: 3rem;
}

.main-header .dropdown-toggle::after {
  display: none;
}

.profile-icon {
  background: #192f60;
}

.menu-container {
  position: relative;
  display: inline-block;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

.menu {
    display: none;
    position: absolute;
    top: 40px;
    left: -5rem;
    background: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #192f60;
    z-index: 999;
}

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

.menu li {
  width: max-content;
  /* border-bottom: 1px solid #192f60; */
}

.menu li:first-child {
  border-bottom: 1px solid #192f60;
}

    .menu a {
        padding: 0.5rem;
        text-decoration: none;
        color: black;
    }
.menu a:hover {
    background:#f3f6fd;
    color:#192f60;
}

.menu.show {
  display: block;
}

/*=============== BREAKPOINTS ===============*/

/* For small devices */
@media(max-width: 800px) {
    .main-header {
        height: auto !important;
    }

    @media screen and (max-width: 546px) {
        .ism-v3-header__topBar {
            display: none;
        }

        .meity,
        .dic {
            display: none;
        }
    }
}