.header-main {
  background-color: #292b31;
  height: 70px;
  font-family: "Inter";
  position: fixed;
  width: 100%;
  vertical-align: middle;
}

.header-brand {
  margin-top: 0px;
  margin-left: 30px;
  height: 100%;
  display: inline-flex;
  align-items: center;     /* Centers vertically */
}

.header-logo {

}

.header-name {
  display: inline-block;
  color: white;
  margin-left: 10px;
  font-size: 20px;
  
}
@media (max-width: 880px) {
  .header-expanded-nav {
    display: none;
  }
  .header-expanded-nav.show{
    display: flex;
    width: 200px;
    height: 200px;
    right: 20px;
    border-radius: 10px;
    background-color: inherit;
    top: 80px;
    flex-direction: column;
    justify-items: flex-start;
    gap: 20px;

    a {
      width: 100%;
      height: 50px;
      flex-grow: 1;
      background-color: transparent;
      color: white;
      border: 0px;
      font-size: 15px;
      font-weight: 600;
      transition: border-bottom 0.15s, font-size 0.15s, color 0.15s, background-color 0.15s;;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      text-decoration: none;
    }

    a:hover {
      font-size: 14px;
      color: #292b31;
      background-color: white;
      border-bottom: 5px solid white;
    }
  }
}

.header-nav-butn {
  position: absolute;
  background-color: transparent;
  border: 0px solid;
  bottom: 0px;
  top: 0px;
  padding: 10px;
  width: 50px;
  right: 20px;
  
  svg {
    transition: width 0.15s;
    width: 24px;
    height: auto;
    path {
      fill: white;
      transition: fill 0.15s;
    }
  }
}

.header-nav-butn:hover {
  svg  {
    width: 30px;
    path {
      fill: #e9d9d8;
    }
  }
}

.header-expanded-nav {
  position: absolute;
}
@media (min-width: 880px) {
  .header-nav-butn {
    display: none;
  }
  .header-expanded-nav {
    margin-left: 40px;
    display: inline-flex;
    justify-content: flex-start;
    gap: 10px;
    height: 100%;
    align-items:flex-end;
    vertical-align: top;

    a {
      width: 150px;
      height: 100%;
      background-color: transparent;
      color: white;
      border: 0px;
      font-size: 15px;
      font-weight: 600;
      transition: border-bottom 0.15s, font-size 0.15s;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      text-decoration: none;
    }

    a:hover {
      font-size: 14px;
      border-bottom: 5px solid white;
    }
  }
}