@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300;400;500;700&display=swap');

*{
    font-family: 'Roboto Slab', serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: all .2s linear;
}
html{

    font-size:65%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
}
:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #64a51a;
    --orange:red;
    --black:#130f40;
    --box-shadow:.5rem 1rem rgba(0,0,0,0.1);
    --border:.2rem solid rgba(0,0,0,.1);
    --outline:.1rem solid rgba(0,0,0,.1);
    --outline-hove:.2rem solid var(--black);
}
body{
    background: #eee;
}
span{
    color:red;
    text-transform:uppercase;
}
.header{
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 10%;
    background:#fff ;
    box-shadow: var(--box-shadow);
}
.header .logo{
    font-size:2.5rem;
    font-weight: bolder;
    color:#fff;
}
.header .navbar a{
    font-size: 1.7rem;
    margin: 0 1rem;
    color:var(--black);

}
.header .navbar a:hover{
    color:var(--orange);
}
.header .icons div{
        height: 3.5rem;
        width: 3.5rem;
        line-height: 3.5rem;
        border-radius:50%;
        background: #eee;
        color: var(--black);
        font-size: 2rem;
        margin-right:.3rem;
        cursor: pointer;
        text-align: center;
}
.header .icons div:hover{
    background:var(--orange);
}
#menu-btn{
    display: none;
}
.header .search-form{
    position: absolute;
    top: 110%;
    right: -110%;
    width: 50rem;
    height:5rem;
    background: #fff;
    border-radius: .5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: var(--box-shadow);
}
.header .search-form input{
    height: 100%;
    width: 100%;
    background: none;
    text-transform: none;
    font-size: 1.5rem;
    color: var(--black);
    padding: 0 1.5rem;
}
.header .search-form label{
    font-size: 2.2rem;
    padding-right: 1.5rem;
    color: var(--black);
    cursor: pointer;
}
.header .search-form label:hover{
    color: var(--orange);
}
.header .navbar .dropdown_menu{
    display:none;
}
.dropdown_menu{
    display: block;
    position: absolute;
    left:52%;
    background: #eee;
    top: 100%;
}

.header .navbar  .dropdown_menu ul{
    display: block;
    list-style:none;
    margin: 15px;
}
.header .navbar .dropdown_menu ul li{
    width:100%px;
    padding:5px;
}
.category_menu{
    position: absolute;
    left:43%;
    background: #eee;
    top: 100%;
}

.header .navbar  .category_menu ul{
    display: block;
    list-style:none;
    margin: 15px;
}
.header .navbar .category_menu ul li{
    width:100%px;
    padding:5px;
}



