nav{
    height: 80px;
    display: flex;
    font-size: 16px;
    letter-spacing: 0px;
    align-items: center;
    background-color: #FFF;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}
.header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* left side start */
.navbar-left{
    display: flex;
    align-items: center;
}
.logo{
    > h4,
    > p{
        margin: 0%;
        padding: 0%;
        font-weight: 900;
    }
    > h4{
        font-family: "Oswald", serif;
    }
    > img{
        height: 50px;
    }
}
.search_area{
    margin-left: 50px;
    > input{
        width: 380px;
        outline: none;
        font-size: 15px;
        letter-spacing: 1px;
        border: 1px solid #d6c8c8;
        position: relative;
        padding: 6px 10px;
        padding-top: 7.5px;
        border-radius: 50px;
        -webkit-border-radius: 50px;
        -moz-border-radius: 50px;
        -ms-border-radius: 50px;
        -o-border-radius: 50px;
    }
    > input:focus{
        border: 1px solid #03A19E;
    }
    > i{
        position: absolute;
        margin-left: -30px;
        margin-top: 12px;
        font-size: 17px;
    }
}
/* left side end */

/* right side start */
.navbar-right{
    display: flex;
}
.menubar{
    padding: 0%;
    margin: 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    > li{
        padding: 0 20px;
    }
}
nav ul li a.active {
    color: #03A19E;
    font-weight: bold;
    position: relative;
}
nav ul li a.active::after{
    position: absolute;
    content: "";
    height: 1.4px;
    width: 100%;
    bottom: 5%;
    left:0%;
    background-color: #03A19E;
}
.auth_btn{
    gap: 15px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 40px;
    padding: 5px 0 5px 20px;
    justify-content: space-between;
    background: linear-gradient(#646464, #3B3B3B);
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;

    > p{
        color: #ffff;
        margin: 0%;
        font-size: 13px;
        margin-top: 2px;
    }
    > div{
        height: 40px;
        width: 40px;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 100px;
        -webkit-border-radius: 100px;
        -moz-border-radius: 100px;
        -ms-border-radius: 100px;
        -o-border-radius: 100px;
        > img{
            height: 20px;
        }
    }
}
.header-profile{
    height: 50px;
    width: 50px;
    > img{
        height: 100%;
        width: 100%;
        border: 2px solid #03A19E;
        cursor: pointer;
        border-radius: 100px;
        -webkit-border-radius: 100px;
        -moz-border-radius: 100px;
        -ms-border-radius: 100px;
        -o-border-radius: 100px;
}
}
/* right side end */