body {
  font-family: Arial, sans-serif;
}
.nav-top-logo{
  display: flex;
  align-items: center;
  width: 240px;
  height: 72px;
  padding-top: 16px;
  min-width: 156px;
}
.nav-top-logo img{
  width: 100%;
  height: auto;
}
.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: flex-end;
  /*width: calc(100% - 350px);*/
  justify-content: flex-end;
  transition: width 0.3s ease;
  padding: 10px 0px 0px;
}

/*.nav {*/
/*  display: flex;*/
/*  font-size: 18px;*/
/*  width: 100%;*/
/*  !* margin-top: 20px; *!*/
/*  align-items: center;*/
/*  justify-content: flex-end;*/
/*  font-weight: 400;*/
/*  gap: 10px;*/
/*}*/

/*.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);*/
/*  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;
}
.navExpand{
  width: 1200px !important;
  transition: width 0.3s ease;
}
.nav .nav-active{
  transform: scale(1.05);
  border-radius: 5px;
  color: rgb(59, 119, 181);
  font-weight: 600;
}
