
.nav-top-logo{
  display: flex;
  align-items: center;
  width: 350px;
  height: 38px;
}
.nav-top-logo img{
  width: 100%;
  height: 100%;
}
.subPageTitle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 80px;
  color: rgb(59, 119, 181);
  font-weight: 600;
  font-size: 20px;
}

.div-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% - 350px);
  justify-content: flex-end;
}

.nav {
  display: flex;
  font-size: 18px;
  width: 100%;
  /* margin-top: 20px; */
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  /* padding: 15px 30px; */
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
  color: black;
  font-weight: 400;

}
.nav a:hover {
  transform: scale(1.05);
  border-radius: 5px;
  color: rgb(59, 119, 181);
  font-weight: 600;
}
.nav img{
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.nav .search-box{
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.nav .search-box img{
  position: absolute;
  right: 5px;
  z-index: 5;
}

.nav .search-box input{
  background: transparent;
  backdrop-filter: blur(10px);
  border: none;
  height: 20px;
  width: 0px;
  font-size: 14px;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  z-index: 1;
  border-radius: 3px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  outline: none;
}
.nav .search-box img:focus + input{
  width: 200px;
  background: #ECF0F5;
}
.nav .search-box input:focus{
  width: 200px;
  background: #ECF0F5;
}
.nav .nav-active{
  transform: scale(1.05);
  border-radius: 5px;
  color: rgb(59, 119, 181);
  font-weight: 600;
}