.headerWrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 8px;
  background-color: #0088cc;
  color: white;
  height: 73px;
  font-size: 14px;
  font-family: "Roboto Condensed", sans-serif;
}

@media (max-width: 768px) {
  .headerWrapper {
    padding: 7px 15px;
    height: 78px;

  }
}

.logo {
  max-height: 65px;
  max-width: 250px;
  margin-top: 4px;

}



@media (max-width: 450px) {
  .logo {
    left: -2rem;
  }
}

.homeLogo {
  display: none;
}

@media (max-width: 768px) {
  .homeLogo {
    display: block;
    position: relative;
    top: -1rem;
    left: -0.5rem;
  }
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: auto;
  margin-top: 0;
  flex: 1;
}

@media (max-width: 600px) {
  .wrapper {
    width: 50%;
    margin-top: 0;
  }
}

.headerContent {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2rem;
  width: 100%;
  padding-top: 0.2rem;
  position: relative;
  right: 0;
}

.searchBox {
  box-shadow: 0 0 5px #6f6f6f;
  border: none;
  outline: none;
  font-size: 17px;
  height: 2.3rem;
  color: black;
  background-color: white;
  transition: width 0.5s ease, opacity 0.3s ease;
  width: 0px;
  opacity: 0;
  margin-right: 0.5rem;
}

.searchBox.expanded {
  width: 270px;
  opacity: 1;
  margin-left: 5px;
}

.boldText {
  font-weight: 700;
}

.section {
  display: flex;
  flex-direction: column;
  margin: 0 0.5rem;
  align-items: flex-end;
  font-size: 14px;
}

.section>div {
  width: auto;
  display: flex;
  align-items: center;
}

.section1 {
  margin: 0 0.6rem 0 0.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 14px;
}

@media (max-width: 600px) {
  .section1 {
    display: none;
    margin: 0;
  }

  .section {
    padding: 0rem 0 0 8rem;
  }

  .section>div {
    width: 0rem;
    display: flex;
  }
}

.marquee {
  font-style: italic;
  font-size: 14px;
  /* margin-top: 2px; */
  width: 100%;
  text-align: right;
  margin-left: -2px;
}

.marquee marquee {
  scrollamount: 1;
}

@media (max-width: 600px) {
  .marquee {
    background: #ffffff45;
    /* border-radius: 4px; */
    padding: 2px 6px;
    margin-right: 9px;
  }

  .homeLogo {
    margin-right: 2rem;
  }

  .homeLogo svg {
    font-size: 30px !important;
    /* width: 30px; */
    height: 20px;
  }

  .logo {
    max-height: 1.7rem;
    max-width: 11rem;

  }
}

.searchIcon {
  cursor: pointer;
  position: relative;
  height: 1.5rem;
  margin: 0 10px 0 0;
  display: flex;
  align-items: center;
}

.userAccountDropdown {
  z-index: 1002;
  position: absolute;
  top: 2.5rem;
  right: 0.5rem;
  background: white;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .logo {

    position: relative;
    top: -1rem;
    margin-left: 1.4rem;
    margin-top: 1.6rem;


  }

  .homeLogo {
    margin-top: 1rem;


  }
}