.navbar {
  height: 10vh !important;
  background: white;
  z-index: 999999;
  transition: min-height 0.3s ease;
}

.search_input {
  padding-left: 40px !important;
}

@media only screen and (max-width: 991px) {
  .menu-item {
    position: fixed;
    top: 0;
    right: 0;
    background: #fff;
    z-index: 2;
    width: 80%;
    height: 100%;
    /* align-items: center; */
    padding-top: 5rem;
    right: -100%;
    transition: 0.6s cubic-bezier(0.17, 0.67, 0.56, 0.96);
  }

  .navbar {
    min-height: 70px;
  }
}

.menu-item.show {
  right: 0%;
}

.close-icon {
  display: none;
}

.conent-container {
  padding: 0 6rem;
  width: 100%;
}

@media (max-width: 991px) {
  .conent-container {
    padding: 0 1rem;
  }
}
