:root{
    --width-page:70%;
}

.Products{
    width: var(--width-page);
    margin: 0 auto;
}

.Products__nav{
    width: 100%;
    height: 40px;
    position: sticky;
    top: var(--height-header);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background-color: var(--bg-body-ligth);
}

.Products__subtitle{
    display: block;
    margin-bottom: 20px;
    font-weight: 100;
}

.Products__search{
    width: 400px;
    height: 35px;
    padding-left: 10px;
    border: none;
    border-bottom: 2px solid var(--color-text-dark);
}

.Products__search:hover,.Products__search:focus{
    outline: none;
}

@media screen and (min-width:100px) and (max-width:650px) {
    :root{
        --width-page:90%;
    }
}