header{
    position : relative;
    display : flex;
    align-items: center;
    justify-content: space-between;
    padding : 0 50px;
    height : 150px;
}

.logo-wrap{
    position : absolute;
    left : 50%;
    transform : translateX(-50%);
}

.input-search{
    background-color: transparent;
    border-bottom : 1px solid #000;
    width : 200px;
    padding : 5px;
    height : 20px;
}

h1{
    text-align: center;
}

h1 > span{
    font-size: 0.6em;
    display : block;
    font-weight: 400;
}

@media screen and (max-width : 768px){
    header{
        padding : 0 5%;
    }

    .input-search{
        display : none;
    }
}