#header-home {
  width: 100%;
  background-color: var(--bg-secondary);
  padding-block: 15px !important;
  position: relative;
  z-index: 11;
}

#header-home>section>section>div.text-white>h3,
#header-home>section>section>div.text-white>h4 {
  font-size: var(--fs-header-logo-primary);
}

.img-logo a img {
  width: 70px;
}

#header-home>section>section:nth-child(2)>ul>li>a,
#header-home>section>section:nth-child(2)>ul>li>span {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-primary);
  text-decoration: none;
  gap: 5px;
}

#header-home>section>section:nth-child(2)>ul>li>span {
  cursor: pointer;
}

#header-home>section>section:nth-child(2)>ul>li>span p {
  font-size: 12px;
}

#header-home>section>section:nth-child(2)>ul>li.search {
  position: relative;
}

#header-home>section>section:nth-child(2)>ul>li.search .search-input {
  position: absolute;
  top: -3px;
  right: 125%;
  width: 350px;
  height: 40px;
  visibility: hidden;
}

#header-home>section>section:nth-child(2)>ul>li.search .search-input.active {
  visibility: visible;
  animation: inputSearch 0.5s linear forwards;
}

#header-home>section>section:nth-child(2)>ul>li.search .search-input.hiden {
  visibility: visible;
  animation: inputSearchHiden 0.5s linear forwards;
}

@keyframes inputSearch {
  0% {
    width: 20px;
  }

  100% {
    width: 350px;
  }
}

@keyframes inputSearchHiden {
  0% {
    width: 350px;
  }

  100% {
    width: 20px;
    visibility: hidden;
  }
}

#header-home>section>section:nth-child(2)>ul>li.search .search-input form {
  width: 100%;
  height: 100%;
}

#header-home>section>section:nth-child(2)>ul>li.search .search-input input {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  padding-left: 20px !important;
  outline: none;
}

#header-home>section>section:nth-child(2)>ul>li>a i {
  font-size: 16px;
}

#header-home>section>section:nth-child(2)>ul>li>a>p {
  font-size: 12px;
}

@media (max-width: 954px) {

  #header-home>section>section:first-child>div:nth-child(2)>h3,
  #header-home>section>section:first-child>div:nth-child(2)>h4 {
    font-size: 12px;
  }

  #header-home>section:first-child>section:first-child>div>a>img {
    width: 50px;
    height: 50px;
  }

  #header-home>section>section:nth-child(2) {
    display: block;
  }
}

@media screen and (max-width: 1000px) {
  #header-home {
    width: 100%;
    padding-block: 15px !important;
    background-color: var(--bg-primary);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
  }
}

@media (min-width: 954px) and (max-width: 1000px) {
  #header-home {
    padding-block: 5px !important;
  }
}

@media (max-width: 800px) {
  #header-home>section>section:nth-child(2) {
    display: none;
  }
}