.header-bottom,
.header-item,
.company-numbers,
.company-contact,
.header-bottom-item,
.header-top-left{
    display: flex;
}
.header-top-left{
    gap: 24px;
}
.header-top,
.header-bottom,
.header-item,
.company-contact,
.header-bottom-item{
    align-items: center;
}
header{
    font-size: 18px;
    padding: 10px 10px 0 10px;
}
.header-top{
    justify-content: space-between;
    border-bottom: 1px solid #E5E5E5;
    padding-bottom: 10px;
}
.header-bottom{
    justify-content: space-between;
}
.header-bottom-item{
    gap: 32px;
    position: relative;
}
.header-bottom-item:nth-child(2){
    gap: 16px;
}
.header-item{
    gap: 12px;
}
.company-logo{
    border-radius: 10px;
    min-width: 90px;
    min-height: 50px;
    max-width: 170px;
    max-height: 90px;
    width: 100%;
    object-fit: cover;
}
.company-numbers{
    flex-direction: column;
    gap: 8px;
    font-weight: 500;
}
.company-contact{
    gap: 16px;
}
.header-bottom-cart{
    border: 1px solid var(--green1-color);
    border-radius: 10px;
    padding: 16px;
    font-weight: 600;
    min-width: 150px;
}
.order-call,
.ask-question{
    min-width: 180px;
    text-align: center;
}
.order-call{
    background: var(--white-color);
    color: var(--green1-color);
    border: 1px solid var(--green1-color);
}
.order-call:hover{
    color: var(--white-color);
}
.header-item-company,
.header-item-catalogue{
    cursor: pointer;
}
header .top-categories,
header .company-links{
    position: absolute;
    top: 100%;
    z-index: 999;
    padding: 16px 5px 5px 1px;
    background: var(--white-color);
    transition: 0.2s;
    gap: 16px;
    border-radius: 5px;
    display: none;
}
.header-bottom-item .visible{
    display: flex;
}
.header-item-active{
    color: var(--green1-color);
}
.header-top-left-menu{
    background: var(--green1-color);
    width: 48px;
    height: 48px;
    border-radius: 10px;
    cursor: pointer;
    align-items: center;
}
.header-top-left-hidden{
    display: none;
}
.header-bottom-cart-quantity{
    background: var(--green1-color);
    color: var(--white-color);
    font-size: 12px;
    font-weight: 600;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    top: 10px;
    left: 30px;
}
.header-top-left-hidden .header-bottom-cart-quantity{
    top: -7px;
    left: 14px;
}

@media (max-width: 1354px) {
  header .company-numbers{
    display: none;
  }
}
@media (max-width: 1171px) {
  .header-asking{
    display: none;
  }
}
@media (max-width: 950px) {
    .header-bottom{
      display: none;
    }
    .header-top-left-hidden{
      display: flex;
    }
    .header-item-address{
      display: none;
    }
    .company-contact{
      flex-grow: 1;
      justify-content: end;
    }
    header{
        font-size: 14px;
    }
    .company-logo{
        height: 48px;
        width: 110px;
    }
}
@media (max-width: 430px) {
    .company-contact{
        display: none;
    }
    .header-links{
        flex-direction: column;
        align-items: baseline;
        flex-grow: 1;
        gap: 16px;
    }
}
