.nr-header {
  padding: 26px 0;
}
.nr-header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nr-header .nr-login {
  display: none;
}
.nr-header__nav ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  border: 1px solid #DEE1EB;
  background: rgba(222, 225, 235, 0.05);
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
  border-radius: 60px;
  padding: 5px;
}
.nr-header__nav li {
  border-radius: 100px;
  padding: 15px 16px;
}
.nr-header__nav li.current-menu-item {
  background: rgba(222, 225, 235, 0.6);
}
.nr-header__nav li:hover {
  background: rgba(222, 225, 235, 0.6);
}
.nr-header__nav a {
  color: #09182C;
  font-family: "Plus Jakarta Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
}
.nr-header__login a {
  display: block;
  color: #FFF;
  font-family: "Plus Jakarta Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.16px;
  border-radius: 100px;
  border: 1px solid #FFF;
  background: #15A5E5;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  text-decoration: none;
  padding: 14px;
  width: 120px;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.nr-header__toggler {
  background: #15A5E5;
  width: 48px;
  height: 48px;
  padding: 18px 15px;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: none;
}
.nr-header__toggler.active .wrapper:before {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.nr-header__toggler.active .wrapper:after {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-45deg);
          transform: translateY(50%) rotate(-45deg);
}
.nr-header__toggler.active .wrapper span {
  opacity: 0;
}
.nr-header__toggler .wrapper {
  position: relative;
  height: 12px;
}
.nr-header__toggler .wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #FFF;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.nr-header__toggler .wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #FFF;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.nr-header__toggler span {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background: #FFF;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

@media (max-width: 991.98px) {
  body.active {
    overflow: hidden;
  }
  .nr-header {
    padding-top: 50px;
  }
  .nr-header__logo, .nr-header__toggler {
    position: relative;
    z-index: 402;
  }
  .nr-header__nav {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    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;
    overflow-y: auto;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    z-index: 401;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-color: rgba(35, 35, 35, 0.5);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    padding: 0 30px;
  }
  .nr-header__nav.active {
    bottom: 0;
  }
  .nr-header__nav ul {
    width: 300px;
    max-width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 30px;
    row-gap: 16px;
    text-align: center;
  }
  .nr-header__nav li:not(.current-menu-item) a {
    color: #FFF;
  }
  .nr-header__login {
    display: none;
  }
  .nr-header__toggler {
    display: block;
  }
  .nr-header .nr-login {
    display: block;
    background: #15A5E5;
  }
}/*# sourceMappingURL=header.css.map */