.blog-header {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 30px 0;
}
.blog-header .blog-header__wrapper {
  width: 100%;
  justify-content: space-between;
  max-width: 1290px;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .blog-header {
    display: none;
  }
  .blog-header .blog-header__wrapper {
    flex-direction: column-reverse;
    width: 100%;
    gap: 30px;
  }
}
.blog-header .blog-header__dropdown {
  display: none;
}
.blog-header .blog-header__category--list {
  display: flex;
  flex-direction: row;
  margin: unset;
  padding-left: 0;
  gap: 50px;
  row-gap: 0;
}
.blog-header .blog-header__category--item {
  
}
.blog-header .blog-header__category--item:first-child{
/*    margin: 0 25px 0 0; */
  margin: 0 auto;
}

.blog-header .blog-header__category--item a {
  display: block;
  color: #bbb;
  font-family: Roboto;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 30px;
  padding: 10px 0;
  outline: none;
  cursor: pointer;
}
.blog-header .blog-header__category--item.active a,
.blog-header .blog-header__category--item.active a span
{
  color: #000;
}
@media (max-width: 768px){
  .blog-header .blog-header__category--item.active a,
.blog-header .blog-header__category--item.active a span{
  color: #5959eb;
  }
}
@media (min-width: 769px) and (max-width: 1023px) {
  .blog-header {
    padding: 30px 20px;
  }
  .blog-header .blog-header__category--item {
    margin: 0 12px;
  }
}
@media (max-width: 768px) {
  .blog-header {
    padding: 30px 20px;
  }
  .blog-header .blog-header__wrapper {
    padding: unset;
  }

  .blog-header .blog-header__category--list {
    display: flex;
    flex-direction: column;
    padding-left: 0;
  }
  .blog-header .blog-header__search-box {
    /* padding: 0 20px; */
  }
  .blog-header .blog-header__search-box input {
    width: 100%;
  }
  .blog-header .blog-header__menu {
    position: relative;
    background: #FFF;
    width: calc(100% + 40px);
    margin-left: -20px;
  }
  .blog-header .blog-header__dropdown {
    display: block;
    cursor: pointer;
    width: 100%;
    text-align: center;
    padding: 4px 0;
    border-bottom: 1px solid #f8f8f8;
    font-size: 18px;
    line-height: 30px;
    font-family: Inter;
    font-weight: 400;
    color: #000;
    position: relative;
    z-index: 
  }
  .blog-header .blog-header__dropdown::after {
    content: "";
    display: inline-block;
    border-right: 1px solid #bbb;
    border-bottom: 1px solid #bbb;
    width: 6px;
    height: 6px;
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%) rotate(45deg);
  }
  .blog-header .blog-header__category--list {
    background: #FFF;
    text-align: center;
    position: absolute;
    width: 100%;
    display: none;
    left: 0;
    z-index:5;
  }
  .blog-header .blog-header__category--list.open {
    display: flex;
  }
  .blog-header .blog-header__category--item a {
    width: 100%;
    text-align: center;
    padding: 4px 0;
    font-size: 18px;
    line-height: 30px;
    font-family: Inter;
    font-weight: 400;
    margin: 0;
    color: #000;
    background: #fff;
    align-items: center;
    justify-content: space-around;
    display: flex;
  }
}
/* SEARCH BAR FILTER CSS*/
.blog-header__search-box {
  display: flex;
  align-items: center;
  margin-left: auto;
  width: 33%;
}
.blog-header__search-box .search_dummy_text {
  font-size: 14px;
  line-height: 20px;
  font-family: 'Roboto';
  font-weight: 400;
}

.blog-header__search-box .blog-search__box {
  display: flex;
  flex-direction: row;
  padding: 8px;
  background: #EBEDF0;
  border-radius: 20px;
  gap: 10px;
  width: 100%;
  border: 2px solid transparent;
}
.blog-header__search-box .blog-search__box:hover {
    cursor: pointer;
     border-color: #5959eb;
}
.blog-header__search-box .blog-search__box svg {
  stroke-width: 1.6;
}
.blog-header__search-box .blog-search__box input {
  font-family: Roboto;
  border: unset;
  background: unset;
  font-size: 16px;
  outline: unset;
}
.blog-header__search-box .blog-search__box input::placeholder {
  color: #969faf;
}
@media (max-width: 768px){
    .blog-header__search-box {
      margin-left:auto;
      margin-right:auto;
    }
    .blog-header__search-box,
    #blog-search-form
    {
        width: 100%;
    }
    .blog-search__box {
        width: 100%;
    }
}

ul.blog-header__category--list{
    list-style: none;
}


@media (max-width: 768px){
 .blog-header__dropdown--desktop {
     display: none;
  }
  .blog-header__dropdown--mobile-tags{
   display: none; 
  }
  .blog-header__dropdown--mobile-tags.active {
    display: block;
}
@media (min-width: 769px){
 .blog-header__dropdown--mobile{
   display: none;
  }   
}
    