header{
  position: fixed;
  width: 100%;
  background: #f5f9ff;
  z-index: 9;
}
header nav{
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}
.hamburger-menu{
  display: none;
}
.header-logo{
  position: relative;
  display: inline-flex;
}
.header-logo img{
  height: 60px;
}
.header-logo a span{
  position: absolute;
  /* bottom: 2px; */
  /* right: 7px; */
  color: #121458;
  font-size: 8px;
  bottom: 0px;
  right: -20px;
  font-weight: 500;
}
/* header right */
/* menu */
.header-right,
.header-right ul{
  display: flex;
  align-items: center;
}
.header-right li a{
  font-size: 16px;
  color: #151D21;
  padding: 8px;
  margin-left: 24px;
}
.header-right li{
  position: relative;
}
.header-right button {
  margin-left: 20px;
}
.header-right .ddropdown-toggle img{
  margin-left: 4px;
}
.header-right .dropdown-menu{
  width: 280px;
  padding: 12px;
  border-radius: 6px;
  border: 0px;
  top: 34px !important;
}
.header-right .dropdown-item{
  display: flex;
  padding: 12px 40px 12px 12px;
  cursor: pointer;
  border-radius: 6px;
  margin-left: 0;
}
.header-right .dropdown-item img{
  height: 30px;
}
.header-right .dropdown-item:hover{
  background: #F3FAFD;
}
.header-right .dropdown-item-desc{
  margin-left: 12px;
}
.header-right .dropdown-item-desc h5{
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 4px;
}
.header-right .dropdown-item-desc span{
  font-size: 13px;
  line-height: 16px;
  color: #A3A3A3;
}
.header-right .arrow-hover{
  position: absolute;
  right: 15px;
  display: none;
}
.header-right .arrow-hover img{
  width: 34px;
  height: auto;
}
.header-right .dropdown-item:hover .arrow-hover{
  display: block;
}
@media screen and (max-width: 991px) {
  .header-logo{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 32px;
  }
  .header-logo img{
    position: absolute;
    top: 0;
    width: 115px;
    z-index: 9;
    height: auto;
  }
  .header-logo a span{
    right: auto;
    bottom: -10px;
    font-size: 6px;
    left: 37px;
  }
  .header-logo a img{
    left: 0;
  }
  .hamburger-menu img{
    right: 0;
    width: 25px;
    top: 6px;
    transition: all .3s ease-in-out;
  }
  header nav{
    padding: 7px 0 20px;
  }
  .hamburger-menu{
    display: block;
    margin-top: 10px;
  }
  .hamburger-menu span{
    width: 20px;
    height: 2px;
    margin: 4px 0;
    display: flex;
    background: #000;
    cursor: pointer;
  }
  .hamburger-menu img{
    display: none;
  }
  .hamburger-menu.is-open span{
    display: none;
  }
  .hamburger-menu.is-open img{
    display: block;
  }
  .header-right{
    position: absolute;
    background: #fff;
    top: 2000%;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 90px 20px 50px;
    transition: all .5s ease-in-out;
  }
  .header-right, .header-right ul{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .header-right.is-show{
    top: 0;
  }
  .header-right ul li{
    width: 100%;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgb(196 196 196 / 50%);
  }
  .header-right li a{
    margin-left: 0;
    padding: 0;
  }
  .header-right button{
    margin-left: 0;
    width: 100%;
    margin-bottom: 24px;
    height: 45px;
  }
  .header-right .dropdown-menu{
    width: 100%;
    position: relative;
    top: 0 !important;
    box-shadow: none;
    padding: 5px 5px 0;
  }
}