.search-bar-section{

    margin-top:-70px;

    position:relative;

    z-index:20;

}

.search-bar{

    background:#fff;

    border-radius:25px;

    padding:30px;

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:20px;

    box-shadow:0 20px 60px rgba(0,0,0,.15);

}

.search-bar label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

}

.search-bar input,
.search-bar select{

    width:100%;

    padding:14px;

    border:1px solid #ddd;

    border-radius:12px;

}

.search-bar button{

    background:#D4AF37;

    border:none;

    border-radius:15px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

.search-bar button:hover{

    background:#111827;

    color:#fff;

}

@media(max-width:992px){

.search-bar{

grid-template-columns:1fr;

}

}