.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 60px 0;
  gap: 60px;
}

.menu-left,
.menu-right {
  display: flex;
  gap: 29px;
}

.menu-logo img {
  width: 182px;
  height: auto;
  display: block;
  aspect-ratio:272/102;
}

.menu-btn {
  background: #B22234;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: none;
  position: relative;
  transition: background 0.2s ease;
}

.menu-btn:hover::after,
.menu-btn.active::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 1px solid #fff;
  border-radius: calc(8px + 4px);
  pointer-events: none;
}
