@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap);
.nav {
  width: 100vw;
  height: 100px;
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  z-index: 1500;
  flex-wrap: nowrap;
  padding-left: 4%;
  padding-right: 4%;
}

.nav_left {
  display: flex;
  align-items: center;
  height: 100%;
  width: 30%;
  cursor: pointer;
}

.nav_left_logo {
  height: 100%;
}

.nav_left_logo img {
  width: 100px;
  height: 100%;
}

.nav_left_title {
  width: 150px;
  height: 48px;
  font-family: Poppins;
  font-style: normal;
  font-weight: bolder;
  font-size: 1.5rem;
  line-height: 100%;
  letter-spacing: -0.01rem;
  margin: 0px 10px;
  color: #0f2249;
  text-align: left;
}

.nav_right {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.nav_right_top {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}

.nav_right_top_login {
  display: flex;
  border-radius: 20px;
  background: #0f2249;
  justify-content: space-between;
  align-items: center;
  /* width: 150px; */
  height: 40px;
  cursor: pointer;
  margin-right: 2%;
}

.nav_right_top_login_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-left: 5px;
}

.nav_right_top_login_icon img {
  width: 30px;
  height: 30px;
}

.nav_right_top_login_text {
  margin-right: 15px;
  font-family: Poppins;
  font-style: normal;
  font-size: 1rem;
  color: white;
}

.nav_right_bottom {
  display: flex;
  width: 100%;
}

.nav_right_bottom_navlist {
  list-style-type: none;
  margin: 0;
}

.nav_right_bottom_navlist li {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 0.85rem;
  line-height: 1rem;
  display: inline;
  margin: 0px 10px;
}

.nav_right_bottom_navlist_link {
  text-decoration: none;
  color: black;
}

.nav_right_bottom_navlist_link:hover {
  text-decoration: none;
  color: #EA2C58;
}

.nav_active {
  text-decoration: none;
  color: #EA2C58;
}

.nav_ham {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: space-around;
  height: 30px;
  width: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1500;
}

/*hamburger animations*/
@keyframes top {
  0% {
    top: 0;
    transform: rotate(0);
  }

  50% {
    top: 10px;
    transform: rotate(0);
  }

  100% {
    top: 10px;
    transform: rotate(45deg);
  }
}

@keyframes top-2 {
  0% {
    top: 10px;
    transform: rotate(45deg);
  }

  50% {
    top: 10px;
    transform: rotate(0deg);
  }

  100% {
    top: 0;
    transform: rotate(0deg);
  }
}

@keyframes bottom {
  0% {
    bottom: 0;
    transform: rotate(0);
  }

  50% {
    bottom: 10px;
    transform: rotate(0);
  }

  100% {
    bottom: 10px;
    transform: rotate(135deg);
  }
}

@keyframes bottom-2 {
  0% {
    bottom: 10px;
    transform: rotate(135deg);
  }

  50% {
    bottom: 10px;
    transform: rotate(0);
  }

  100% {
    bottom: 0;
    transform: rotate(0);
  }
}

@keyframes scaled {
  50% {
    transform: scale(0);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes scaled-2 {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

.nav_ham_active span:nth-child(1) {
  animation: ease .7s top forwards;
}

.nav_ham_not-active span:nth-child(1) {
  animation: ease .7s top-2 forwards;
}

.nav_ham_active span:nth-child(2) {
  animation: ease .7s scaled forwards;
}

.nav_ham_not-active span:nth-child(2) {
  animation: ease .7s scaled-2 forwards;
}

.nav_ham_active span:nth-child(3) {
  animation: ease .7s bottom forwards;
}

.nav_ham_not-active span:nth-child(3) {
  animation: ease .7s bottom-2 forwards;
}

.nav_ham_line {
  position: relative;
  width: 30px;
  height: 2px;
  background: #0f2249;
}

.nav_sidebar {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  top: 0;
  right: 0;
  width: 65vw;
  height: calc(100vh - 100px);
  z-index: 1800;
  background-color: white;
  margin-top: 100px;
}

.nav_sidebar-hide {
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
}

.nav_sidebar-show {
  transform: translateX(0%);
  transition: transform 0.4s ease-in-out;
}

/*media queries */
@media (max-width: 1070px) {
  .nav_right {
    display: none;
  }
}

@media (min-width: 1069px) {
  .nav_ham {
    display: none;
  }
}
.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1100;
  background: rgba(0, 0, 0, 0.5);
}
