.fe-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  height: 56px;
  z-index: 600;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
}

.fe_nav_logo {
  height: 50px !important;
}

.fe-nav-hide small {
  font-size: 18px;
}

.nav-dropdown {
  position: fixed!important;
  width: 100%;
  left: 0;
  top: 56px!important;
  transform: translate(0px, 0px)!important;
  padding: 1rem;
  border: none!important;
  border-radius: 0px!important;
}
.nav-dropdown a {
  padding: 1rem;
  padding-left: 0;
  transition: .1s all ease-in-out;
  border-radius: 8px;
}
.fe-nav-hide a {
  padding: 5px;
  text-decoration: none;
  text-transform: capitalize;
  /* text-transform: capitalize; */
  letter-spacing: 1px;
  font-family: sans-serif;
  font-size: 14px;
  white-space: nowrap !important;
}

.fe-nav-hide>.login {
  border: 1px solid white !important;
  padding: .5rem 1rem;
  border-radius: 10px;
  margin-right: 1rem !important;
}

.fe-nav-hide>.login:hover {
  border: 2px solid black;
  background-color: white;
  color: black;
}

.separationDot {
  min-height: 5px;
  min-width: 5px;
  border-radius: 100%;
  background-color: white;
  display: inline-block;
  margin-right: 2rem;
}

.fe-nav-hide a:hover {
  border-radius: 8px;
}

.bkg {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 499;
}


@media(max-width: 576px) {
  .el-modal-wrapper {
    max-width: 100%;
    max-height: 100%;
    border-radius: 0px;
  }

  .fe-nav-hide a {
    padding: .6rem;
    text-decoration: none !important;
  }
}

@media(max-width: 767px) {
  .fe-nav-hide {
    position: fixed;
    top: 60px;
    right: 10px;
    z-index: 500;
    padding: .2rem;
    background-color: var(--ot-blue);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
  }

  .fe-nav-hide a {
    padding: .6rem;
  }

  #footer {
    text-decoration: none !important;
  }
}

@media(min-width: 768px) {
  .fe-nav-hide {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }

  .fe-nav-hide a {
    padding: .2rem;
    margin-right: .6rem;
  }
}

@media(min-width: 1000px) {
  .fe-nav-hide a {
    padding: .2rem;
    margin-right: 2rem;
  }
}