body {
  box-sizing: border-box;
  font-family: "Gilroy", sans-serif;
  overflow-x: hidden;
}


.header__wrapper {
    display: flex;
    justify-content: space-between;
}

.header__socials {
    display: flex;
    gap: 45px;
}

.header__socials i {
  font-size: 21px;
}

.header__top {
  background: #000;
  color: #fff;
  font-size: 18px;
  padding: 23.5px 0;
}

.header__wrapper--top {
  display: flex;
  justify-content: space-between;
}

.header__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 40px;
}
.header__links a {
  color: #fff;
  text-decoration: none;
  transition: opacity .2s;
}
.header__links a:hover {
  opacity: 0.7;
}
.header__socials a {
  color: #fff;
  margin-left: 15px;
  font-size: 16px;
  transition: opacity .2s;
}
.header__socials a:hover {
  opacity: 0.7;
}


.header__bottom {
  background: #fff;
}
.header__logo img {
  max-height: 80px;
}

@media(max-width: 568px) {
  .header__logo img {
    max-height: 80px;
    max-width: 140px;
 }

 .header__top {
  display: none;
 }
}

.header__nav {
  flex: 1;
}
.header__nav .btn__menu {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    height: 100% !important;
    border: 0;
    padding-left: 70px !important;
    padding-right: 70px !important;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    background: #A2947A;
    border-radius: 0;
    margin-left: 50px;
    transition: all 0.3s ease;
}

.header__nav .btn__menu:hover {
  background-color: #99835b;
  transition: all 0.3s ease;
}

.btn__inner {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.header__wrapper .header__wholesale {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0px !important;
  margin-left: 50px;
  background: transparent !important;
  margin-top: -5px;
  text-decoration: none;
}

.header__catalog-btn {
  background: #bca77b;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.header__icons {
  display: flex;
  gap: 45px;
  align-items: center;
  justify-content: center;
}

.header__icons i {
  font-size: 21px;
  color: #000
}

.menu-burger-btn {
  display: none;
}

@media(max-width: 990px) {
  .header__icons,
  .header__socials {
    gap: 20px;
  }

  .header__nav > .btn__menu,
  .header__wholesale {
    display: none;
  } 

  .menu-burger-btn {
    display: block !important;
  }

  .container {
    max-width: 100% !important;
    width: 100% !important;
  }
}