#top_nav {
  font-size: 1rem;
  font-weight: 600;
}
#top_nav .logo {
  width: 22em;
  height: auto;
}

body.scrolled_menu #top_nav {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100vw;
  z-index: 1000;
}
body.scrolled_menu .nav_container {
  padding: 0;
  border: none;
}
body.scrolled_menu .logo_box {
  padding: 1em 0;
}
body.scrolled_menu .logo_box .logo {
  width: 15em;
  height: auto;
}

.nav_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3.8em 0;
  border-bottom: solid 1px #94A3BB;
}

.right-menu {
  display: flex;
  align-items: center;
  gap: 7em;
}

.menu_btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5em;
}
.menu_btn .sandwich {
  width: 7.2em;
  height: 1em;
  border-top: solid 2px #1E211E;
  border-bottom: solid 2px #1E211E;
  transition: width 0.3s ease-in-out;
}
.menu_btn span {
  font-size: 1.9em;
}
.menu_btn:hover .sandwich {
  width: 9.2em;
}

.languages {
  display: flex;
  align-items: center;
  gap: 1em;
  font-size: 1.9em;
}
.languages a {
  color: #1E211E;
}
.languages a._active {
  color: #C2B398;
}

.show_menu #menu_page {
  display: block;
}

#menu_page {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  overflow: auto;
  background-color: #1E211E;
  color: #C2B398;
  z-index: 1000;
  display: none;
}
#menu_page ._main {
  padding: 6rem 0;
}
#menu_page ._top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 0rem;
  margin-bottom: 3rem;
  width: 100%;
}
#menu_page ._top ._close {
  cursor: pointer;
  font-size: 3.6em;
  color: #f9f9f9;
}
#menu_page ._top ._close:hover {
  color: #A15252;
}
#menu_page ._logo img {
  width: 42em;
  height: auto;
}
#menu_page .columns {
  display: flex;
  gap: 15rem;
  margin-top: 8rem;
}
#menu_page ._col {
  display: flex;
  flex-direction: column;
  font-size: 3.6rem;
  font-weight: 600;
  gap: 0.5em;
  max-width: 18em;
  line-height: 1.35;
}
#menu_page ._col a {
  color: #f9f9f9;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
#menu_page ._col a:hover {
  color: #C2B398;
}
#menu_page ._col h3 {
  font-size: 0.61em;
  font-weight: 400;
  color: #C2B398;
}
#menu_page .col_2 {
  font-size: 2.8rem;
  color: #f9f9f9;
}
#menu_page ._tels {
  display: flex;
  flex-direction: column;
  gap: 0.6em;
  font-size: 1em;
}

@media (max-width: 1150px) {
  #top_nav {
    font-size: 1.75rem;
  }
  .nav_container {
    padding: 2.5em 0;
  }
}
@media (max-width: 850px) {
  #top_nav .logo {
    width: 17em;
  }
  .nav_container {
    padding: 2em 0;
  }
  .right-menu {
    gap: 3em;
  }
  .menu_btn {
    gap: 3em;
  }
  .menu_btn .sandwich {
    width: 6.2em;
  }
  #menu_page .columns {
    flex-direction: column;
    gap: 5rem;
  }
  #menu_page .columns ._col h3 {
    font-size: 1em;
  }
  #menu_page ._top ._close {
    font-size: 5.4em;
  }
  #menu_page ._col {
    font-size: 5em;
  }
  #menu_page .col_2 {
    font-size: 3.8rem;
    gap: 1em;
  }
}/*# sourceMappingURL=nav.css.map */