.ex_header {
 margin: 20px 0;
 padding: 20px 50px 20px 80px;
 background: #08090d;
 border-radius: 0px;
 border-bottom:1px solid#333;
}

footer {
 background: #131517;
 border-radius: 5px;
}

.ex_header_top {
 display: flex;
 align-items: center;
 justify-content: space-between;
}

.ex_header_top .ex_header_top_items {
 display: flex;
 align-items: center;
 flex-direction: row;
 flex-wrap: nowrap;
}

.ex_header_top .ex_header_top_items .ex_header_search {
 margin-right: 8px;
}

.ex_header_top .ex_header_top_items .ex_header_search_input {
    background: #0b0c10;
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    height: 50px;
    margin: 0;
    border: 1px solid #333;
    padding: 0 18px;
}

.ex_header_top .ex_header_top_items .ex_header_search_btn {
position: absolute;
    height: 50px;
    width: 50px;
    top: 0;
    right: 0;
    border-radius: 0 10px 10px 0px;
    border: none;
    outline: none;
    color: #fff;
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.ex_header_top .ex_header_top_items .ex_header_search_svg {
 width: 20px;
 height: 20px;
 fill: #fff;
}

.ex_sidebar_search_block .ex_header_search {
 margin-right: 8px;
}

.ex_sidebar_search_block .ex_header_search_input {
 background: white;
 color: #000;
 border-radius: 100px;
 font-size: 14px;
 height: 30px;
 margin: 0;
 border: none;
 padding: 0 10px;
}

.ex_sidebar_search_block .ex_header_search_btn {
 position: absolute;
 height: 30px;
 width: 30px;
 top: 0;
 right: 0;
 border-radius: 50px;
 border: none;
 outline: none;
 background: white;
 padding: 0;
 margin: 0;
 display: flex;
 flex-direction: row;
 align-items: center;
 justify-content: center;
}

.ex_sidebar_search_block .ex_header_search_svg {
 width: 20px;
 height: 20px;
 fill: #000;
}

.ex_header_top .ex_header_top_items .ex_header_menu_svg {
 width: 30px;
 height: 20px;
 fill: #fff;
}

.ex_header_top .ex_header_top_items .nav-link {
    font-size: 14px;
    display: flex;
    gap: 10px;
    background: #0b0c10;
    padding: 13px;
    border-radius: 6px;
    align-items: center;
    border: 1px solid #333;
}
.header-button {
    text-decoration: none;
    display: flex;
    background: #ffa500;
    color: #000;
    font-weight: 500;
    padding: 6px;
    margin-left: 5px;
    font-size: 14px;
    border-radius: 6px;
}
.ex_header_top .ex_header_top_sidebar {
 width: 20px;
 height: 20px;
 display: flex;
 flex-direction: row;
 align-items: center;
 justify-content: center;
 border: none;
 background: transparent;
 margin: 0;
 padding: 0;
 position: absolute;
 left: 40px;
 top: 30px;
}

.ex_header_top .ex_header_top_sidebar .ex_header_top_sidebar_svg {
 height: 18px;
 width: 18px;
 stroke: #fff;
}

@media (max-width: 768px) {
 .ex_header_d_none {
  display: none;
 }

 .ex_header_top .ex_header_top_sidebar {
  position: relative;
  left: 0;
  top: 0;
 }

 .ex_header {
  margin: 10px 0;
  padding: 15px 20px;
  border-radius: 5px;
 }
}