.c-search-engine {
    width: 100%;
    height: 100%;
    position: absolute;
}
.c-search-engine__block {
    position: absolute;
    bottom: 125px;
    height: auto;
    width: 100%;
    z-index: 1;
}
.c-search-engine__block__form {
    width: auto;
    display: flex;
    justify-content: center;
}
.c-search-engine__block__form__block {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 10px 70px;
    background: #bfae7180;
    -webkit-box-shadow: 0px 15px 10px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 15px 10px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 15px 10px 0px rgba(0,0,0,0.75);
}
.c-search-engine__input {
    border: 1px solid #3d4752;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 7px 15px;
    z-index: 1;
    cursor: pointer;
}

@media (max-width:999px) {
    .c-search-engine__block__form__block, .c-search-engine__block__form {
        flex-direction: column;
    }
    .c-search-engine__block {
        bottom: 0 !important;
    }
    .c-search-engine__input {
        display: none !important;
    }
}