.searchBox{
    width: auto;
    height: 100%;
    padding-left: 20px;
    display: flex;
    align-items: center;
}

h2{
    color: #fff;
}

.noSearchBtn{
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}

.searchBox input{
    width: 260px;
    height: 40px;
    /* border: 1px solid #fff; */
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    background-color: transparent;
    outline: none;
    border-right: none;
    padding: 0px 10px;
    color: #fff;
    background-color: #2b2a29;
    border: none;
}

.searchBox p{
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2b2a29;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.searchBox p img{
    width: 24px;
    height: 24px;
    cursor: pointer;
}


@media screen and (max-width:960px) {
    .right{
        display: flex;
    }
    .searchBox{
        width: 100%;
        background-color: #ffffff;
        position: absolute;
        right: 0;
        top: 58px;
        z-index: 99999;
        align-content: flex-start;
        align-items: flex-start;
        padding-top: 50px;
        transition: all 0.5s;
        display: none;
    }
    header{
        overflow-x: hidden;
    }
}