

/* 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 */


/* Start:/local/templates/main/assets/css/footer.css?17483776401345*/
.footer {
    background-color: #002726;
    color: white;
    padding: 20px;
    font-family: "IBM Plex Serif", serif;
    font-size: 0.9rem;
    border-top: 2px solid #c2b575;
    width: 100%;
    box-sizing: border-box;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 2%;
    width: 96%;
}

.footer-left {
    text-align: left;
    margin-right: auto;
    width: 30%;
}

.footer-right {
    text-align: right;
    margin-left: auto;
    width: 70%;
}

.footer a {
    color: #c2b575;
    text-decoration: none;
    font-weight: 900;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

.footer-center {
    text-align: center;
    margin-top: 20px;
    padding-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.footer-center a {
    color: #666;
    text-decoration: none;
    margin: 0 10px;
}

.footer-center a:hover {
    text-decoration: underline;
}


@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        text-align: center;
        margin: 10px 0;
        width: 100%;
    }

    .footer-right {
        margin-top: 10px;
    }

    .footer-left p,
    .footer-right p {
        margin: 5px 0;
    }
}

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