.nav-bar {
  position: absolute;
  width: 100%;
  height: 75px;
  z-index: 102;
  padding: 0 25px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  /*! to change*/
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 0px;
}

.nav-bar-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-bar-logo-container {
  max-width: 218px;
  width: 100%;
  height: 40px;
  margin-right: 15px;
  display: flex;
  align-items: center;
}

.nav-bar-logo {
  display: inline-block;
  width: 100%;
  height: 100%;
  background-image: url("./assets/logo_new.svg");
  background-size: 100% 100%;
}

.nav-bar-titles {
  max-width: 820px;
  min-width: 480px;
  width: 100%;
}

.all-titles {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.title > a {
  width: auto;
  height: 25px;
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 25px;
  color: rgba(255, 255, 255, 0.5);
}

.title > a {
  text-transform: none;
  text-decoration: none;
}

.title > a:hover {
  color: #ffffff;
}

.nav-bar-portal {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border-radius: 44px;
  margin-left: 15px;
}

.portal-text {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 87px;
  height: 37px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 17px;
  line-height: 25px;
  text-align: center;
  color: #006ef2;
}

.menu-titles-btn,
.all-titles-custom {
  display: none;
}

@media screen and (max-width: 768px) {
  .nav-bar-logo {
    max-width: 130px;
    max-height: 25px;
  }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 22px;
    width: 22px;
  }
  .nav-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: white;
    transition: all 100ms ease-in-out;
  }
  .nav-toggle:hover {
    cursor: pointer;
  }
  .x:nth-of-type(1) {
    transition: all 100ms ease-in-out;
    transform: rotate(45deg);
    transform-origin: top left;
    width: 28px;
  }
  .x:nth-of-type(2) {
    transition: all 100ms ease-in-out;
    transform-origin: center;
    width: 0;
  }
  .x:nth-of-type(3) {
    transition: all 100ms ease-in-out;
    transform: rotate(-45deg);
    transform-origin: bottom left;
    width: 28px;
  }
  .menu {
    display: inline-block;
    margin-left: 15px;
  }
  /*  .menu-titles-btn {
    display: inline-block;
    min-width: 20px;
    width: 100%;
    max-width: 27px;
    height: 19px;
    background-image: url("./assets/Vectormenu.svg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin-left: 15px;
    cursor: pointer;
  } */
  .nav-bar-titles {
    display: none;
  }
  .all-titles-custom {
    display: inline-block;
    overflow: hidden;
    position: absolute;
    z-index: -12;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    z-index: 104;
    top: 73px;
    left: -2px;
    transition: 0.3s ease-out;
    transform: scaleY(0);
    transform-origin: top;
  }
  .titlee:first-child {
    display: inline-block;
    margin-top: 25px;
  }
  .titlee {
    padding: 22px 20px !important;
    width: 100%;
    text-align: center;
  }
  .titlee > a {
    width: 100%;
    font-size: 25px !important;
    font-family: "Lato", sans-serif;
    font-weight: normal;
    line-height: 25px !important;
    color: #3b5266;
  }
  .nav-active {
    /* max-height: 100vh; */
    transition: 0.3s ease-in;
    transform: scaleY(1);
  }
}
