header {
    z-index: 1;
    width: 100%;
    height: 96px;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px 20px 348px;
    gap: 34px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}

.header-title {
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    width: 319px;
    height: 24px;
}

.header-help {
    width: 104px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid #2A3647;
    color: #29ABE2;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    font-size: 24px !important;
    font-weight: bold;
    cursor: pointer;


}

.avatar:hover{
  background-color: rgb(226, 230, 236);
}

.slider {
  position: fixed;
  top: 96px;
  right: -150px;
  width: 150px;
  height: 158;
  background-color: #2A3647;
  padding: 10px;
  border-radius: 20px 0px 20px 20px; 
  font-size: 16px;
  transition: right 0.3s ease;
}

.slider a {
  color: #CDCDCD;
  text-decoration: none;
}

.slider a:hover {
  color: #29ABE2;
}

.slider.open {
  right: 0;
  z-index: 9999;
}

.slider h3 {
  margin-top: 0;
}

.slider ul {
  list-style: none;
  padding: 0;
}

.slider li {
  margin: 15px 0;
}

.logo{
  display: none;
  height: 39px;
  width: 32px;
}

@media (max-width: 1350px) {
  header {
        padding: 20px 40px 20px 86px !important;
  }
  .header-title{
    display: none;
  }
  .logo{
    display: flex;
  }
}

@media (max-width: 850px) {
 .slider {
    top: 80px !important;
    
  }
}

@media (max-width: 750px) {
  header {
        padding: 20px 40px 20px 28px !important;
        height: 80px !important;
  }
}