header {
    border-bottom: 0px!important;
}
.index-banner-header {
    width:fit-content;
    border-radius: 100px;
    background: var(--primary-background-rgba);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin: 50px auto;
}
.index-banner-header-logo-link:hover {
    cursor: pointer;
}
.index-banner-header-img {
    height: 25px;
    margin-left: 7px;
    display: block;
}
.index-banner-header-div {
    display: flex;
    align-items: center;
    margin-left: 10px;
}
.index-banner-header-a, .index-banner-header-active-p {
    text-decoration: none;
    font-size: 16px;
    color: var(--primary-text);
    padding: 10px 10px;
    margin-left: 5px;
    border-radius: 50px;
    cursor: pointer;
}
.index-banner-active {
    background: white;
}
.header-v2-search-bar {
  display: flex;
  align-items: center;
}
.header-v2-search-bar {
    display: flex;
    align-items: center;
    border: 1px solid transparent;
    border-radius: 100px;
    padding: 2px;
    transition: 0.3s all ease;
    margin-left: 25px!important;
    background:white;
    position: relative;
}
.header-v2-search-bar input {
    padding: 7px 10px;
    width: 80px;
    border: none;
    outline: none;
    transition: 0.4s all ease;
    flex-grow: 1;
    border-radius: 100px;
    background:transparent;
  }
.header-v2-search-bar i {
    font-size: 19px;
    color: var(--secondary-text);
    margin-right: 8px;
    cursor: pointer;
    transition: 0.3s all ease;
}
#results {
  visibility: hidden;
  display: none;
  position: absolute;
  top:41px;
  background: white;
  border-radius: 9px;
  width: 300px;
}
.index-search-bar:focus-within #results, .header-v2-search-bar:focus-within #results {
    visibility: visible;
    display: flex;
    flex-direction: column;
    
}
.header-v2-search-bar:focus-within input {
    width: 100px;
}
.header-v2-search-bar:focus-within i {
    color: var(--secondary-color);
}
.header-v2-search-bar:focus-within {
  border: 1px solid var(--secondary-color)
}
.header-v2-search-bar:hover input {
    width: 100px;
}
.header-bars {
  visibility: hidden;
  display: none;
}
.header-mobile {
  position: fixed;
  z-index: 200;
  top: 0;
  right: 0;
  height: calc(100vh - 30px);
  left: -100%;
  width: 90%;
  background: var(--primary-background);
  padding-top: 30px;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  flex-direction: column;
  transition: 0.8s all ease;
  overflow-y: auto;
}
.header-mobile-link:last-child {
  margin-bottom: 150px;
}
.header-mobile-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-mobile-head p {
  font-size: 19px;
  text-transform: uppercase;
  font-weight: 500;
}
.header-mobile-head i {
  font-size: 25px;
  cursor: pointer;
  padding: 10px 0 10px 10px;
}
.header-mobile-search-wrap {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
}
.header-mobile-search {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: white;
  display: flex;
  overflow: hidden;
}
.header-mobile-search input {
  padding: 10px 0 10px 12px;
  width: calc(100% - 56px);
  outline: none;
  font-size: 16px;
  border: none;
}
.header-mobile-search i {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  cursor: pointer;
}
.header-mobile-link {
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--primary-text);
  font-size: 17px;
  padding: 20px 0;
}
.header-mobile-link i {
   position: relative;
   left: 0;
   transition: 0.2s all ease;
 }
.header-mobile-link:hover {
  color: var(--secondary-color);
}
.header-mobile-link:hover> i {
  left: 2px;
  transition: 0.2s all ease;
}
#mobile-results {
  display: flex;
  flex-direction: column;
}
.header-mobile-search-result {
  display: flex;
  border-radius: 9px;
  text-decoration: none;
  margin-top: 15px;
}
.header-mobile-search-result img {
  width: 45px;
  height: 45px;
  margin-right: 10px;
}
.header-mobile-search-result-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.header-mobile-search-result-details p:nth-child(1) {
  font-size: 19px;
  margin-bottom: 4px;
  font-weight: 500;
}
.header-mobile-search-result-details p {
  color: var(--primary-text);
}
.header-mobile-search-result-details p:last-child {
  font-size: 15px;
}