.navbar-header {
  display: none;
}

.navbar {
  padding: 12px;
  padding-top: 0;
  margin-bottom: 1.5rem;
  z-index: 1200;
}

.btn-open {
  right: 25px;
  top: 25px;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  border-radius: 20%;
  height: 40px;
  width: 40px;
}

.btn-open svg path {
  fill: var(--text-primary);
  transition: 0.3s;
}

.btn-close svg path {
  fill: var(--text-primary);
  transition: 0.3s;
}

.navbar-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  gap: 15px;
  width: fit-content;
}

.nav-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  height: 100%;
  border-radius: 48px;
  z-index: 2;
  transition: 0.3s;
}

.nav-link {
  color: var(--text-primary);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 32px;
  padding: 15px 23px;
  transition: 0.3s;
}

.nav-link:has(img) {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.nav-link:hover {
  border-radius: 65px;
  background: var(--p-color);
  transition: 0.3s;
}

.nav-item.nav-logo:hover,
.nav-item.nav-logo.active {
  background-color: transparent;
  opacity: 0.8;
}

.sign-up .nav-link {
  color: var(--p-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 65px;
  border: 1px solid rgba(17, 167, 240, 0.20);
  background: rgba(17, 167, 240, 0.10);
  padding: 12px 14px;
}

.offcanvas-header {
  display: none;
}

.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.offcanvas-backdrop.hidden {
  display: none;
}

.offcanvas-backdrop.fade {
  opacity: 0;
}

.offcanvas-backdrop.show {
  opacity: .5;
}

.logotype img {
  height: 45px;
}

/* //////////////////////// */
/* //////////////////////// */
/* //////////////////////// */
/* //////////////////////// */
/* //////////////////////// */

/* XL MAX */
@media(max-width: 1400px) {}

/* LG MAX */
@media(max-width: 1199px) {}

/* MD MAX */
@media(max-width: 991px) {
  .offcanvas {
    position: fixed;
    bottom: 0;
    z-index: 1045;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 100%;
    visibility: hidden;
    background: rgb(255 255 255 / 90%);
    -webkit-backdrop-filter: blur(2.4px);
    backdrop-filter: blur(2.4px);
    background-clip: padding-box;
    outline: 0;
    top: 0;
    right: 0;
    width: 400px;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }

  .offcanvas.hiding,
  .offcanvas.show,
  .offcanvas.showing {
    visibility: visible;
  }

  .offcanvas.show:not(.hiding),
  .offcanvas.showing {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  .offcanvas-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 25px;
    padding: 25px;
    margin-bottom: 25px;
  }

  ul.navbar-menu {
    background-color: transparent;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 15px auto;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .nav-logo {
    display: none;
  }

  .navbar-header {
    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;
    gap: 25px;
    padding: 25px 0;
  }
}

/* SM MAX */
@media(max-width: 767px) {}

/* XS MAX */
@media(max-width: 575px) {}

/* //////////////////////// */
/* //////////////////////// */
/* //////////////////////// */
/* //////////////////////// */
/* //////////////////////// */

/* XS MIN */
@media(min-width: 576px) {}

/* SM MIN */
@media(min-width: 768px) {}

/* MD MIN */
@media(min-width: 992px) {
  .offcanvas-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid var(--border-color);
  }

  .navbar-bg {
    padding: 15px 17px;
  }
}

/* LG MIN */
@media(min-width: 1200px) {}

/* XL MIN */
@media(min-width: 1250px) {}

@media(min-width: 1280px) {}