@use "./navbarTop"; 
@use "./megaMenu";
//@use "./statesNavbar";

#header-49291,
#header-49292 {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10000;
  background-color: var(--navy); 
 /* min-height: 111px;
  @media (min-width: 1200px) {
    min-height: 115px;
  }*/
}

.header-blocks{
  display:grid;
  grid-template-columns: 23% 77%;
  width: 100%;
  height: 100%;
 // max-width: 1320px;
  margin: auto;
  //min-height: 115px;
  @media (max-width: 1200px) {
    grid-template-columns: 100%;
  }
  background-color: var(--navy);
  &__logo{
    display:flex;
    justify-content:space-evenly;
    align-items:center;
    img{
      width: 260px;
      height: auto;
      object-fit: contain;
      @media (max-width: 992px) {
        width: 180px;
      }
    }
  }
}