nav {
  width: 100vw;
  height: 5vw;
  max-height: 72px;
  min-height: 61px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0px -1px 0px 0px #e6e6e6 inset;
          box-shadow: 0px -1px 0px 0px #e6e6e6 inset;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  padding: 15px;
  position: fixed;
  z-index: 9999;
  -webkit-transition: background .3s;
  transition: background .3s;
}

nav.white {
  background: #fff;
  -webkit-backdrop-filter: unset;
          backdrop-filter: unset;
}

nav .brand > a img {
  height: 32px;
  margin-right: 4px;
}

nav > .menu {
  width: 20px;
  height: 20px;
}

nav > .menu img {
  width: 100%;
}

nav > .links a {
  cursor: pointer;
}

nav > .links,
nav > .btns {
  display: none;
}

.full-screen-menu {
  display: none;
  -webkit-transition: all 3s;
  transition: all 3s;
  width: 0;
  height: 0;
}

.full-screen-menu.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  z-index: 55555;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: white;
}

.full-screen-menu .close {
  width: 54px;
  height: 48px;
  background: #c7000b;
  border-radius: 88px 0 0 88px;
  -webkit-box-shadow: 0px 0px 38px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 0px 38px 0px rgba(0, 0, 0, 0.07);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  position: absolute;
  right: -1px;
  top: 14.778vh;
  opacity: 1 !important;
}

.full-screen-menu .close > img {
  width: 28px;
  margin-top: 2px;
}

.full-screen-menu .item {
  font-size: 16px;
  font-family: FZLTHJW, sans-serif;
  color: #323232;
  line-height: 1.125;
  letter-spacing: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 70.4vw;
  height: 16vw;
  max-height: 75px;
}

.full-screen-menu .item.lang a {
  color: #666666;
  font-family: FZLTHJW, sans-serif;
}

.full-screen-menu .item.lang a.active {
  color: #323232;
}

.full-screen-menu .item.lang > span {
  width: 1px;
  height: 16px;
  background-color: #666;
  margin: 0 4px;
}

.full-screen-menu .logout {
  width: 34.66667vw;
  height: 11.2vw;
  border-radius: 21px;
  font-size: 16px;
  font-family: FZLTHJW, sans-serif;
  margin-top: 8vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid #000000;
  color: #000;
  background: transparent;
}

.full-screen-menu a.btn {
  width: 34.66667vw;
  height: 11.2vw;
  border-radius: 21px;
  font-size: 16px;
  font-family: FZLTHJW, sans-serif;
  margin-top: 8vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.full-screen-menu a.btn.btn-danger {
  background: #cd010c !important;
  color: #fff;
}

.full-screen-menu a.btn.btn-light {
  border: 2px solid #000000;
  color: #000;
  background: transparent;
}

@media screen and (min-width: 1024px) {
  nav {
    padding: 0 40px;
  }
  nav > .menu {
    display: none;
  }
  nav .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  nav .links a {
    font-family: FZLTHJW, sans-serif;
    letter-spacing: 0px;
    font-size: 14px;
    font-size: min(max(14px, 1.36719vw), 16px);
    font-size: clamp(14px, 1.36719vw, 16px);
  }
  nav .links > a {
    color: #323232;
    height: 100%;
    margin-right: 2.083vw;
  }
  nav .links .lang > span {
    width: 1px;
    height: 16px;
    background-color: #666;
    margin: 0 4px;
  }
  nav .links .lang a {
    color: #666;
  }
  nav .links .lang a.active {
    color: #323232;
  }
  nav .btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  nav .btns > a {
    width: 72px;
    height: 32px;
    font-size: 16px;
    border: 2px solid #000000;
    border-radius: 16px;
    background-color: #fff;
  }
  nav .btns > a.reverse {
    background-color: #CD010C;
    border-color: #CD010C;
    color: #fff;
    margin-right: 6px;
  }
}

@media screen and (min-width: 1100px) {
  .full-screen-menu {
    display: none;
  }
  nav > .menu {
    display: none;
  }
  nav .links > a {
    margin-right: 2.083vw;
  }
}

@media screen and (min-width: 1440px) {
  nav {
    padding: 0 8.333vw;
  }
  nav > .menu {
    display: none;
  }
  nav .links > a {
    margin-right: 3.472vw;
  }
}
