

/* Start:/local/templates/main/components/bitrix/menu/top_menu/style.css?17509324323187*/
/* Общие стили для меню */

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgb(0, 31, 30);
  backdrop-filter: blur(10px);
  z-index: 100;
  box-sizing: border-box;
  transition: transform 0.3s ease, opacity 0.3s ease;
  font-optical-sizing: auto;
  font-size: 1.5rem;
  padding: 0 20px;
}

/* Чтобы менб пропадало при прокрутке 
.nav.hidden {
  transform: translateY(-100%);
  opacity: 0;
}
*/

.logo {
  flex: 1;
  text-align: left;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  flex: 2;
  gap: 20px;
  margin: 0;
  padding: 0;
    font-family: "IBM Plex Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
    color: rgb(221, 221, 221);

}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  padding: 5px 10px;
  transition: color 0.3s ease;
  font-family: "IBM Plex Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.1rem;
  
}

.nav-links li a:hover {
  color: #c2b575;
}

.contacts {
  flex: 1;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  color: white;
  font-family: "IBM Plex Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.contacts a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
}

.contacts a:hover {
  color: #c2b575;
}

/* Бургер-меню */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.burger span {
  width: 25px;
  height: 3px;
  background: white;
  transition: all 0.3s ease;
}

.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Навигация для мобильных */
@media (max-width: 600px) {
  .burger {
    display: flex;
  }

  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgb(0, 31, 30);
    backdrop-filter: blur(10px);
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links li {
    margin-bottom: 10px;
  }

  .contacts {
    display: none;
  }

  .contacts-mobile {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px;
    color: white;
      font-family: "IBM Plex Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  }

  .contacts-mobile a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
  }

  .contacts-mobile a:hover {
    color: #c2b575;
  }

  .nav-links.active + .contacts-mobile {
    display: flex;
  }
}

/* End */
/* /local/templates/main/components/bitrix/menu/top_menu/style.css?17509324323187 */
