body{
    margin: 0px;
    padding: 0px;
    font-family: 'Oswald', sans-serif !important;
    font-weight: 400;
}

:root {
    --main_font_color: #FFFFFF;
    --main_bg_color: #000000;
    --White: #FFFFFF;
    --Black: #000000;
    --Red: #CE2128;
    --Green: #09764B;
  
  }
  

#Header_main{
    background-color: black;
    width: 100%;
    height: 50px;
    z-index: 10;
    position: absolute;
}
#desktop_header{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 25px;
}
#desktop_header a {
    text-decoration: none;
    color: var(--main_font_color);
}


/* mobile */
#mobile_header{
    width: 100%;
    height: 100%;
    background-color: rgba(255, 0, 0, 0);
    display: flex;
    justify-content: space-between;
    align-items: center;
    display: none;
}
#mobile_header a{
    margin: 0px 20px;
}

/* for popup slider */
#mobile_slider_popup{
    width: 100%;
    height: 100vh;
    background-color: var(--main_font_color);
    z-index: 20;
    position: fixed;
    top: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;

}
#mobile_slider_popup #closer_mobile_menu_div_button{
    padding: 2px;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;

}

#mobile_slider_popup .content{
    width: 90%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 10px;
}
#mobile_slider_popup .content a{
    text-decoration: none;
    color: black;
    font-size: 18px;
}



@media only screen and (max-width: 700px) {
    #desktop_header {
      display: none;
    }
    #mobile_header{
        display: block;
        display: flex;
    }
    #mobile_header a img{
        width: 44px;
        border-radius: 5px;
    }
    #Header_main{
        background-color: transparent;
        height: 70px;
    }
}