.header {
  background-color: #fff;
}

.header-contacts {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.header-contacts-left-tel,
.header-contacts-right-email {
  font-weight: 700;
  font-size: 14px;
  color: #231f20;
  text-decoration: none;
}

.header-contacts-left-tel-img,
.header-contacts-right-email-img {
  transform: translateY(3px);
  margin-right: 3px;
}

.header-separator {
  background-color: #c9d2e59d;
  display: block;
  height: 1px;
  margin-bottom: 16px;
}

.navbar-dekstop {
  display: flex;
  align-items: center;
  padding-bottom: 16px;
}

.navbar-dekstop-logo {
  margin-right: 40px;
}

.ul-dekstop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 10px;
  margin: 0;
}

.ul-dekstop-catalog {
  background-color: #b6ff52;
  border-radius: 7px;
  padding: 15px 25px;
  transition: background-color 0.5s;
}

.ul-dekstop-catalog:hover {
  background-color: #93e323;
}

.ul-dekstop-catalog-link,
.ul-dekstop-delivery-link,
.ul-dekstop-contacts-link,
.ul-dekstop-documentation-link {
  text-decoration: none;
  color: #231f20;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  padding: 15px 0;
  transition: color 0.4s;
}

.ul-dekstop-catalog-link {
  font-weight: 700;
}

.ul-dekstop-catalog-img {
  transform: translateY(3px);
  margin-right: 5px;
}

.ul-dekstop-delivery-link:hover {
  color: #93e323;
}

.ul-dekstop-contacts-link:hover {
  color: #93e323;
}

.ul-dekstop-documentation-link:hover {
  color: #93e323;
}

.header-mobile {
  display: none;
}

.nav-mobile {
  display: none;
}

/* ------------адаптив-------------- */
@media (max-width: 1200px) {
  .header-contacts {
    margin: 0 15px;
  }

  .navbar-dekstop {
    margin: 0 15px;
  }
}

@media (max-width: 992px) {
  .header-contacts {
    display: none;
  }

  .navbar-dekstop {
    display: none;
  }

  .header-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    height: 80px;
    margin-top: -17px;
  }

  .header-mobile-right {
    display: flex;
    gap: 30px;
    align-items: center;
  }

  .nav-mobile {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    visibility: hidden;
    transform: translateY(-100%);
    transition:
      visibility 0.3s ease,
      transform 0.3s ease;
    background-color: #fff;
    padding-top: 15px;
    padding-bottom: 30px;
    z-index: 10;
  }

  .nav-mobile.active {
    visibility: visible;
    transform: translateY(0);
  }

  .ul-mobile {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
    padding-left: 0;
  }

  .ul-mobile-catalog {
    background-color: #b6ff52;
    border-radius: 7px;
    padding: 15px 25px;
    transition: background-color 0.4s;
  }

  .ul-mobile-catalog:hover {
    background-color: #93e323;
  }

  .ul-mobile-catalog-link,
  .ul-mobile-delivery-link,
  .ul-mobile-contacts-link,
  .ul-mobile-documentation-link {
    text-decoration: none;
    color: #231f20;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    padding: 15px 0;
    transition: color 0.4s;
  }

  .ul-mobile-catalog-link {
    font-weight: 700;
  }

  .ul-mobile-catalog-img {
    transform: translateY(3px);
    margin-right: 5px;
  }

  .ul-mobile-delivery-link:hover {
    color: #93e323;
  }

  .ul-mobile-contacts-link:hover {
    color: #93e323;
  }

  .ul-mobile-documentation-link:hover {
    color: #93e323;
  }

  .nav-mobile-right-tel {
    font-weight: 700;
    font-size: 16px;
    color: #231f20;
    text-decoration: none;
  }

  .nav-mobile-right-tel-img {
    transform: translateY(3px);
    margin-right: 5px;
  }

  .burger {
    position: relative;
    z-index: 100;
    background-color: #fff;
    cursor: pointer;
    border: none;
  }

  .burger-menu {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 20px;
    cursor: pointer;
    padding: 5px 0px;
  }

  .burger-menu span {
    display: block;
    height: 2px;
    width: 20px;
    background-color: #231f20;
    transition: all 0.3s ease;
  }

  .burger.active .burger-menu span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
  }

  .burger.active .burger-menu span:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-menu span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
  }

  .contacts-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .contacts-mobile-tel,
  .contacts-right-email {
    font-weight: 700;
    font-size: 16px;
    color: #231f20;
    text-decoration: none;
  }

  .contacts-mobile-tel-img,
  .contacts-right-email-img {
    transform: translateY(3px);
  }

  .contacts-right-VK {
    background-color: #231f20;
    border-radius: 20px;
    height: 50px;
  }

  .contacts-right-VK-link {
    background-color: #231f20;
    border-radius: 20px;
  }

  .contacts-right-VK-img {
    padding: 15px;
    border-radius: 1px;
  }
}

@media (max-width: 768px) {
  .header-mobile {
    height: 60px;
  }

  .navbar-dekstop-logo-img {
    height: 30px;
  }
}

@media (max-width: 576px) {
  .navbar-dekstop-logo-img {
    height: 20px;
  }

  .nav-mobile-right-tel {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .header-mobile {
    padding: 0 20px;
  }

  .header-mobile-right {
    gap: 12px;
  }

  .ul-mobile-logo-img {
    height: 25px;
  }
}

@media (max-width: 375px) {
  .nav-mobile-right-tel {
    font-size: 12px;
  }
}
