.site-header{
    background-color:#0C9540 ;
    color: white;
}
.site-header a{
    color: white;
    padding-left: 0;
}

.site-header > div{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header .logo{
    max-width: 200px;
}
.site-header > div > ul{
    display: flex;
    gap: 20px;
}

.search-block {
    display: flex;
    align-items: center;
}

.search-block > div:first-child{
    background-color: white;
    color: grey !important;
    padding: 6px 20px;
    min-width: 100px;
}
.search-block > div:last-child{
    padding: 5px 20px;
    border: 1px solid white;
}

.site-header > div {
    max-width: 1200px;
    margin: auto;
    padding: 30px 20px;
}

@media screen and (max-width: 1024px){
    .site-header > div > ul{
        display: none;
    }

}

@media screen and (max-width: 560px){
    .search-block > div:first-child{
        min-width: 50px;
    }
    .search-block > div:last-child{
        padding: 5px 10px;
    }
    .site-header .logo{
        max-width: 150px;
    }
}

@media screen and (max-width: 425px){
    .site-header a{
        padding-left: 0px !important;

    }
}

@media screen and (max-width: 370px) {
    .search-block{
        display: none;
    }
    .site-header > div{
        justify-content: center;
    }

    .site-header .logo{
        max-width: 250px;
    }
}