body {
    background-color: #f2f0ef;
}

.navigation {
    background-color: #f2f0ef;
    padding: 15px;
    border-radius: 15px;
    margin: 0 10px 0px 10px;
    z-index: 2; /* чтобы было поверх фона */
    display: flex;
    position: relative;
    justify-content: center;
    gap: 10px;
    transform: translateY(20px);
}

.navigation {

}


.navigation a {
    background-color: #f2f0ef;
    padding: 10px 20px 10px 20px;
    border-radius: 30px;
}

.navigation a:hover {
    background-color: #ffffff;
}

.navigation a.active {
    background-color: #ffffff;
}

@media (min-width: 992px) {
    .header_home {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
    }
}

.header_home {
    position: relative;
    padding: 15px 0 0 0;

}

.search-block {
    display: flex;
    justify-content: center;
    padding: 0 15px;
    text-align: center;
    margin: 0 13px 0 13px; /* центрирование */

    position: relative;
    z-index: 3;
}

.search-block form {
    display: flex;
    width: 100%;

}

@media (min-width: 992px) {
    .search-block form {
        width: 40%;
        max-width: 800px;
    }
}

.search-block input {
    padding: 10px 15px;
    border-radius: 25px;
    border: 1px solid #ccc;
    flex: 1;
}

.search-block input:focus {
    outline: none;
    border: 1px solid #999;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.search-block button {
    padding: 10px 20px;
    border-radius: 25px;
    border: none;
    background: #dcdcdc;
    margin-left: 5px;

}

.header-background {

    background-color: #ffffff; /*  */
    height: 150px; /* примерно в 3 раза выше меню */
    margin: 0px 0 0 0; /* немного заезжает под навигацию */
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    position: absolute;
    z-index: 1;

    top: 0px;           /* подбираем вручную */
    left: 0;
    width: 100%;
}