header {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  background-color: white;
  position: fixed;
  top: 0;
  z-index: 3;
  box-shadow: 0 3px 3px rgb(230, 231, 231);
}

.mobile-logo {
  display: none;
}

@media (min-width: 1166px) {
  header {
    width: calc(100% - 232px);
    margin-left: 232px;
  }
}

header h2 {
  font-weight: 400;
}

.header-and-icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header-and-icon h2 {
  padding-left: 150px;
}

.help-person-icon {
  margin-right: 5%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.user-account {
  text-decoration: none;
  border: 3px solid black;
  height: 56px;
  width: 56px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(0, 190, 232);
  cursor: pointer;
  background-color: white;
  font-size: 24px;
  font-weight: bold;
}

.user-account:hover {
  background-color: rgb(219, 219, 219);
}

@media (max-width: 1165px) {
  .mobile-logo {
    display: block;
    height: 48px;
    width: auto;
    margin-left: 5%;
  }

  .header-responsive {
    margin-left: 0;
    width: 100%;
    height: 8vh;
  }

  .header-and-icon {
    height: 100%;
  }

  .header-and-icon h2,
  .help-person-icon a {
    display: none;
  }
}

@media (min-width: 2300px) {
  .help-person-icon {
    margin-right: 0;
  }
}
