/* NAV */

.nav-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 3vh 5vw;
  background-color: #b26b62;
  z-index: 10;
}

.b-right {
  border-right: 2px solid white;
}

.topnav {
  overflow: hidden;
  background-color: #b26b62;
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid white;
}

/* Style the links inside the navigation bar */

.topnav a {
  font-family: "IntroBold";
  font-weight: bold;
  font-style: normal;
  font-size: 0.8vw;
  line-height: 1.1;
  letter-spacing: 0.3em;
  color: #f2f2f2;
  text-align: center;
  text-decoration: none;
  padding: 0 0px 20px 0px;
  width: 100%;
}

.topnav a.icon {
  width: unset !important;
}

.lang-container {
  display: flex;
  justify-content: center;
  color: #f2f2f2;
  padding: 0;
  width: 100%;
}

.lang-select-1 {
  display: flex;
  justify-content: flex-end;
  flex-basis: 40%;
}

.lang-select-2 {
  display: flex;
  justify-content: flex-start;
  flex-basis: 40%;
}

.slashbar {
  display: flex;
  justify-content: center;
  flex-basis: 20%;
}

/* Change the color of links on hover */

.topnav a:hover {
  font-weight: 900;
}

/* Add an active class to highlight the current page */

.topnav a.active {
  color: white !important;
}

/* Hide the link that should open and close the topnav on small screens */

.topnav .icon {
  display: none;
}
@media screen and (max-width: 767px) {
  .nav-container {
    padding: 2vh 5vw;
  }
  .topnav a {
    font-size: 5vw;
  }
}
@media screen and (max-width: 992px) {
  .b-right {
    border: none;
  }
  /* .topnav a:not(:first-child) {
    display: none;
  } */
  .topnav a {
    display: none;
    font-size: 5vw;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 992px) {
  .hideMenu {
    display: block;
  }
  .topnav.responsive {
    position: relative;
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-bottom: none;
  }
  .nav-container.fullheight {
    height: 100vh;
  }
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
    text-align: right !important;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: center;
  }
  .topnav .lang-container a {
    padding: 0 5px;
  }
  .lang-container span {
    font-family: "IntroBold";
    font-weight: bold;
    font-style: normal;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.3em;
    float: left;
    color: #f2f2f2;
    text-align: center;
    text-decoration: none;
    padding: 1px 50px 30px 0px;
    width: 100%;
  }
  .lang-container {
    width: unset !important;
  }
}

/* END */
