.section_brand_page{
  h2{
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 4rem;
  }
.brand_heading {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2rem 0;
    border-bottom: 1px solid #ddd;
    @media (max-width: 749px){
      gap: 2rem;
    }
  span {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000;
    line-height: 1.2;
    flex: 0 0 2%;
     @media (max-width: 749px){
      font-size: 2rem;
       flex: 0 0 4%;
    }
}
  h4{
    font-size: 1.6rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #000;
    font-weight: 500;
    @media (max-width: 749px){
      font-size: 1.4rem;
    }
  }
  .brand--list{
    width: 100%;
    ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 0;
    margin: 0;
    li a{
    font-size: 1.6rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0;
      text-decoration: none;
      color: #000;
      font-weight: 500;
      @media (max-width: 749px){
        font-size: 1.4rem;
      }
    }
    @media (max-width: 749px){
       grid-template-columns: repeat(2, 1fr);
    }
    }
}
}
}
.search_brand {
  position: relative;
  max-width: 50%;
  margin-bottom: 3rem;
   @media (max-width: 749px){
    max-width: 100%;
  }
}

.search_brand input[type="search"] {
  width: 100%;
  font-size: 16px;
  padding: 10px 40px 10px 10px;
  border: none;
  border-bottom: 1px solid #aaa;
  outline: none;
  font-family: inherit;
  background: transparent;
}

.search_icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 18px;
  pointer-events: none;
}

.align-start{
  align-items: flex-start !important;
}