/* Основной контейнер меню */
.menu-container {
  width: 100vw;
  height: 100vh;
  background: var(--black);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  transform: translateY(-100%);
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out; /* Добавлено плавное изменение позиции и прозрачности */
  opacity: 0;
}

/* Открытое меню */
.menu-container.open {
  transform: translateY(0);
  opacity: 1;
}

.menu-container.closed {
  transform: translateY(-100%);
  opacity: 0;
}

.menu-section {
  width: 345px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px auto;
  color: white;
}

.menu-row-container-header {
  width: 345px;
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.divider {
  width: 100%;
  height: 1px;
  background: rgba(242, 242, 242, 0.5);
}

.close-img {
  cursor: pointer;
}

.menu-column-container {
  text-align: start;
}

.menu-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding: 30px 15px;
  box-sizing: border-box;
}

.menu-item {
  display: block;
  color: var(--white);
  font-family: var(--montserrat);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 187.5% */
  letter-spacing: 0.16px;
  text-decoration: none;
  z-index: 3;
  text-align: left;
  text-transform: uppercase;
}

.menu-contacts-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding: 0px 15px;
  box-sizing: border-box;
}

.menu-contacts-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.menu-contacts-title {
  color: var(--white);
  font-family: var(--nunito);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.9;
  white-space: nowrap;
}

.menu-contacts-link {
  color: var(--white);
  font-family: var(--montserrat);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  cursor: pointer;
  text-decoration: none;
}

.menu-items-link-row {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: start;
}

/* Скрытое меню */
/* .closed {
  display: none;
} */

.open {
  display: block;
}

.menu-social-row {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 40px 15px;
  box-sizing: border-box;
}
