.menu-wrapper {
  position: relative;
  display: none;
  font-weight: 900;
}

.menu {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 10px;
  background-color: transparent;
  border: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  font-size: 40px;
  z-index: 4;
  background-color: rgba(0, 0, 0, 0.767);
  border-radius: 25%;
}

.menu-board {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  transition: right 0.3s ease-in-out;
  z-index: 3;
}

.menu-open {
  right: 0;
}

.menu-wrapper .logo {
  justify-content: left;
}

.menu-wrapper .logo img{
  width: 80%;
  padding: 20%;
}

.menu-items {
  list-style: none;
  padding: 0;
  margin: 10%;
  margin-bottom: 20%;
}

.menu-items li {
  margin-bottom: 10%;
}

.menu-items li a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
}

.menu-items li a:hover {
  color: #ff0;
}

.menu-wrapper .contacts {
  width: 100%;
  padding: 20px;
  color: #fff;
  display: block;
  text-align: center;
}

.menu-wrapper .contacts span {
  font-size: larger;
  text-align: center;
}

.menu-wrapper .contacts .social-icons {
  width: 100%;
  list-style: none;
  padding: 0;
  margin-bottom: 10%;
}

.menu-wrapper .contacts .social-icons li {
  display: inline-block;
}

.menu-wrapper .contacts .social-icons li:last-child {
  margin-right: 0;
}

.menu-wrapper .contacts .social-icons a {
  color: #fff;
  font-size: 30px;
  text-decoration: none;
}

.menu-wrapper .contacts .social-icons a:hover {
  color: #ff0;
}

/* Додав стиль для відступу між пунктами меню */
.contacts .menu-items li:not(:last-child) {
  margin-bottom: 5%; /* 5% відступ між пунктами */
}

/* Розташовую іконки соціальних мереж в один ряд */
.menu-wrapper .contacts .social-icons li {
  display: inline-block;
  margin-right: 10px;
}

/* Додав стиль для телефону */
.menu-wrapper .contacts .contacts p:last-child {
  display: block;
  margin-top: 10px;
}