@media screen and (min-width: 1055px) {
  .nav-menu {
    gap: 56px;
  }
}
@media screen and (min-width: 992px) {
  .main-form {
    display: none;
  }
  .bottom-menu {
    display: none !important;
  }
  .menu-mobile {
    display: none !important;
  }
}

@media screen and (max-width: 991px) {
  .on-mobile {
    display: none !important;
  }
  .menu-desktop .on-desktop {
    display: none !important;
  }
  .menu-desktop .menu-mobile {
    display: flex !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 103;
    background-color: var(--bg-linear);
    padding: 8px 16px;
    border-bottom: 1px solid rgba(183, 207, 255, 0.0509803922);
  }

  .navbar {
    flex-wrap: wrap;
    height: auto;
    padding: 16px;
  }
  .nav-menu {
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    width: 100%;
  }
  .nav-menu li:not(:last-child)::after {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .nav-menu {
    flex-direction: column;
    gap: 24px;
    width: 100%;
    margin-top: 16px;
    display: none;
  }
  .nav-menu.active {
    display: flex;
    align-items: center;
  }

  .nav-menu li:not(:last-child)::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .bottom-menu {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* .navbar {
    flex-wrap: wrap;
    height: auto;
    padding: 16px;
  }
  .nav-menu {
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    width: 100%;
  }
  .nav-menu li:not(:last-child)::after {
    display: none;
  }
  .menu-toggle {
    display: block;
  }  
  .nav-menu {
    flex-direction: column;
    gap: 24px;
    width: 100%;
    margin-top: 16px;
    display: none;  
  } 
  .nav-menu.active {
    display: flex;
    align-items: center;
  }
 
  .nav-menu li:not(:last-child)::after {
    display: none;
  } */
}

.bottom-menu {
  z-index: 104;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: var(--bg-linear);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(40px, 1fr));
  grid-column-gap: 4px;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 8px;
  border-top: 1px solid rgba(183, 207, 255, 0.0509803922);
  overflow: hidden;
}
.menu-link {
  padding-top: 0.5em;
  position: relative;
  width: 100%;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  cursor: pointer;
  background-color: transparent;
  border: none;
}
.menu-link__label {
  text-overflow: ellipsis;
  overflow-x: hidden;
  white-space: nowrap;
}
.menu-link__label {
  font-weight: 600;
  transition: color 0.3s ease-in-out;
}
