.header {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    font-weight: 600;
    background-color: aliceblue;
    border-radius: 5px;
    padding-left: 100px;
    padding-right: 100px;
    margin-top: 40px;
    position: fixed;
    right: 30px;
    left: 30px;
    z-index: 999;
}



.humburger{
    height: 25px;
}

.search {
    display: flex;
    justify-content: center;
}
.search-bar {
    height: 30px;
    width: 130px;
    margin-right: -27px;
    border-radius: 20px;
    background-color: rgb(231, 231, 231);
    border-style: none;
}

.search-bar::placeholder{
    padding-left: 15px;
}

.search-icon {
    padding-top: 5px;
    height: 20px;
    width: 25px;
    border-style: none;
}

.search-btn {
    border-radius: 15px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-style: none;
    background-color: rgb(211, 71, 71);
}

/*!-----------for small screens Android---------!  */

@media (max-width: 767px) {
    .header {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        font-weight: 700;
        background-color: aliceblue;
        border-radius: 5px;
        padding-left: 3px;
        padding-right: 3px;
        margin-top: 20px;
        position: fixed;
        right: 12px;
        left: 12px;
        z-index: 999;
    }
    
    
    
    .humburger{
        height: 15px;
    }
    
    .search {
        display: flex;
        justify-content: center;
    }
    .search-bar {
        margin-top: 0px;
        height: 19px;
        width: 80px;
        margin-right: -20px;
        border-radius: 20px;
        background-color: rgb(231, 231, 231);
        border-style: none;
    }
    
    .search-bar::placeholder{
        padding-left: 4px;
    }
    
    .search-icon {
        padding-top: 3px;
        padding-left: 2px;
        height: 12px;
        width: 17px;
        border-style: none;
        margin-left: -5px;
    }
    
    .search-btn {
        height: 19px;
        border-radius: 15px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        border-style: none;
        background-color: rgb(211, 71, 71);
    }
}