.container {
  display: flex;
  scroll-behavior: smooth;
  flex-direction: column;
  justify-content: center;
}

.right_head {
  /* justify-content: space-around; */
  margin-right: 3%;
  margin-left: auto;
}

.logo1 {
  display: flex;
  justify-content: stretch;
  align-items: center;
  margin-top: 0.2pc;
}

.left_head {
  flex: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  /* justify-content: space-around; */
  /* background-color: black; */
}

.has-search .form-control {
  padding-left: 2.375rem;
}

.has-search .form-control-feedback {
  position: absolute;
  z-index: 2;
  display: block;
  width: 2.375rem;
  height: 2.375rem;
  line-height: 2.375rem;
  text-align: center;
  pointer-events: none;
  color: #D0CECE;
  margin-top: 3px;


}

#SearchBar {
  color: #D0CECE;
  font-family: Manrope !important;
  height: 45px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 8px;
  width: 200%;
}

.menu {
  position: fixed;
  overflow: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 5;
  opacity: 0;
  top: 0rem;
  left: -30rem;
  width: 19rem;
  height: 100%;
  color: black;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
  transition: all 0.5s cubic-bezier(0.6, 0.05, 0.28, 0.91);
}


.menu-item {
  width: 100%;
  padding: 1rem 1rem;
  border: none;
  outline: none;
  list-style-type: none;
  transition: all 0.5s ease;
}

.burger-close {
  position: fixed;
  z-index: 8;
  top: 2rem;
  left: -17rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  height: 30px;
  width: 30px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.6, 0.05, 0.28, 0.91);
}

.burger-close.active {
  left: 15rem;
}

.menu-item>a {
  font-family: inherit;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: inherit;
  color: black;
  /* text-transform: uppercase; */
}

.menu-item:hover {
  padding: 1rem 2rem;
  font-size: 1.2em;
  background: blue;
}

.menu-item:hover>a {
  color: white;
}

.menu.active {
  left: 0;
  opacity: 1;
}

.vl2 {
  border-left: 2px solid #8B8B8B;
  height: 36px;
  padding-left: 13px;
  margin-left: 20px;
  margin-right: 8px;
}

.right_head {
  flex: 3;
  /* background-color: black; */
  display: flex;
  justify-content: end;
  align-items: center;
  /* width: 100%; */
  margin-left: 10%;
}

#exampleInputEmail1 {
  flex: 4;
  height: 45px;
  margin-left: 154px;
  border-radius: 8px;
  font-family: Manrope;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0px;
  text-align: left;
  color: #D0CECE;
}

::placeholder {
  color: #D0CECE;
}


#navmenu:hover {
  cursor: pointer;
}

.searchhead {
  margin-left: -30px;
  margin-top: 2px;
}

#sear {
  display: none;
}

/* Media Queries */
@media screen and (max-width: 1024px) {
  #exampleInputEmail1 {
    display: none;
  }

  .left_head {
    flex: 2;
  }

  .header_spacing {
    flex: 2;
  }

  .right_head {
    flex: 4;
    display: flex;
  }

  #sear {
    display: flex;
  }

  #nav1 {
    display: none;
  }

  .searchhead {
    display: none;
  }


  .vl2 {
    display: none;
  }
}

@media screen and (max-width: 520px) {
  .logostyle {
    width: 120px;
  }

  .header_spacing {
    flex: 0;
  }

  .right_head {
    width: 200px;
  }

  .right_head_content {
    width: 30px;
    margin-left: 5px;
    /* padding: 5px; */
    /* height: fit-content; */
  }

  #profile_style {
    width: 50px;
    height: 50px;
  }
  .dsm-none {
    display: none;
  }
  .nav-link {
    padding: 0;
  }
}

