.container-burger {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  height: 100%;
  padding: 0;
  background-color: #000;
  border-radius: 10px;
  transition: 0.2s ease-in-out all;
}

.gray-bg {
  background-color: #e1e1e8;
  transition: 0.2s ease-in-out all;
}

.navbar {
  position: relative;
  left: 0;
  top: 0;
  width: 44px;
  height: 34px;
  background: transparent;
}

.navbar__wrap {
  display: flex;
  height: 100%;
  justify-content: center;
}

.hamb {
  display: none;
}

.popup-bur {
  display: none;
}

.menu > li > a {
  text-decoration: none;
}

.navbar__wrap .menu {
  display: flex;
}

.navbar__wrap .menu > li {
  display: flex;
  align-items: stretch;
}

.navbar__wrap .menu > li > a {
  display: none;
  align-items: center;
  padding: 0 20px;
  color: rgba(255, 20, 20, 0.7);
}

.navbar__wrap .menu > li > a:hover {
  color: rgb(20, 20, 20);
}

.menu {
  display: none;
}

.burger-info {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}

.burger-button {
  position: relative;
  top: 100px;
  border-radius: 20px;
  text-wrap: nowrap;
  max-height: 56px;
  outline: none;
  border: none;
  width: calc(100% - 40px);
  color: #fff;
  padding: 20px 76px;
  align-self: center;
  margin-bottom: 10px;
}

.burger-telephone-button {
  background: #e1e1e8;
  color: black;
}

@media (min-width: 769px) {
  .navbar {
    display: none;
  }

  .popup-bur {
    display: none;
  }
}

@media (max-width: 768px) {
  .navbar__wrap .menu {
    display: none;
  }

  .hamb {
    display: flex;
    align-items: center;
  }

  .hamb__field {
    padding: 0;
    cursor: pointer;
  }

  .bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 6px auto;
    background-color: #ffffff;
    transition: 0.4s all;
  }

  .black-bar {
    background-color: #000;
    transition: 0.2s all;
  }

  .popup-bur {
    position: fixed;
    top: 53px;
    right: 0;
    width: 100%;
    height: 0px;
    max-height: fit-content;
    background-color: #fff;
    border-radius: 20px;
    z-index: 100;
    display: flex;
    transition: 0.5s all;
    overflow: hidden;
    background-image: url(../img/images/bg-burger-mob.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100vw;
  }

  .popup-bur::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    margin-inline: auto;
    height: 4px;
    width: 80px;
    background-color: #bebec3;
    border-radius: 30px;
  }

  .popup-bur.open {
    right: 0;
    height: 623px;
    background-color: #fff;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background-image: url(../img/images/bg-burger-mob.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100vw;
    border-radius: 0;
  }

  .popup-bur .menu {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding: 0;
    overflow: auto;
    margin-top: 70px;
  }

  .popup-bur .menu > li {
    width: 100%;
  }

  .popup-bur .menu > li > a {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 35px;
    padding: 0px 20px 0 20px;
    font-size: 17px;
    font-weight: 400;
    line-height: 20.57px;
    text-align: center;
    color: #000000;
    font-size: 24px;
    font-weight: 550;
    line-height: 24px;
    letter-spacing: -0.01em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
  }

  .burger__contacts-wrapper {
    margin-top: 43px;
    margin-bottom: 28px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 11px;
  }

  .popup-bur .menu > li > a:hover {
    font-weight: 700;
  }

  .hamb__field.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamb__field.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamb__field.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  body.noscroll {
    overflow: hidden;
  }

  .main {
    transition: 0.2s ease-in-out all;
  }

  .main-blurred {
    transition: 0.2s ease-in-out all;
    filter: blur(5px);
  }

  .header-no-radius {
    transition: 0.07s ease-in-out all;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0px 4px 8px 2px #64646b1a;
    z-index: 1;
  }
}
