.Products_page {
    margin-top: 75px;
    margin-bottom: 125px;
}

.Products_cards {
    display: flex;
    margin-top: 50px;
    gap: 200px;
    justify-content: center;
    align-items: center;
}

.Products_card {
    max-width: 473px;
}

.Products_card img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 2px solid #fff;
}

.Products_card p {
    margin-top: 25px;
    font-weight: 700;
}

@media (max-width:900px) {

    .Products_card p {
        margin-top: 10px;
        font-weight: 700;
    }

    .Products_card {
        max-width: 423px;
    }

    .Products_cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 50px;
    }
}


@media (max-width: 333px) {
    .naxt_page {
        margin-top: 25px;
    }

}