#product-banner{
    background-image: url("../img/products.png");
    background-repeat: no-repeat;
    background-size: cover;
    height: 40vh;
    max-height: 417px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 0 120px 30px;
    text-shadow: 1px 1px 1px black, 0 0 25px #fff;
    color: #fff;
}
#product-banner p{
    color: white;
}

#upper-section-p{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 10px;
}
#upper-section-p form{
    display: flex;
}
#upper-section-p form input{
    height: 2.5rem;
    padding: 0 10px;
    font-size: 14px;
    width: 100%;
    border: 1px solid lightgray;
    border-radius: 4px;
    outline: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
#upper-section-p form button{
    border: none;
    outline: none;
    padding: 0 10px;
    background-color: #088178;
    color: #fff;
    white-space: nowrap;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.product-list{
    border: 1px solid lightgray;
    /* background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%); */
    border-radius: 5px;
    padding: 18px 25px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    column-gap: 15px;
    row-gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
    transition: 0.2s ease;
}
.product-content{
    max-width: 700px;
}
.product-list:hover{
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    /* transform: scale(1.01); */
}
.product-list button{
    border-radius: 25px;
    font-size: 18px;
    padding: 10px 15px;
}