.poduct {
    margin-top: 50px;
    padding: 25px 0 50px 0;
    background: #fff;
    border-radius: 20px;

}

.poduct h2,
.poduct p {
    color: #222;
    font-weight: 700;
}

.poduct_cards {
    display: grid;
    grid-template-columns: 250px 250px 250px 250px;
    padding-top: 50px;
    gap: 50px;
    row-gap: 50px;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    align-items: flex-start;
}

.page_count {
    margin-top: 25px;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.page_count a {
    color: #222;
    display: block;
    padding: 5px;
    background: #fff;
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.11);
    border-radius: 5px;
    transition: 0.6s;
}

.page_count span {
    color: #222;
    display: block;
}

.page_count a:hover {
    box-shadow: none;
}

.logo_position {
    margin-top: 15px;
    max-width: 130px;
    height: auto;
}

.logo_position img {
    width: 100%;
    height: auto;
}

.poduct_cards a {
    width: 250px;
    height: auto;
}

.poduct_card {
    max-width: 250px;
    height: auto;
}

.poduct_card_img {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 250px;
    height: 220px;
}

.poduct_card_img_afect {
    display: block;
    transition: 0.5s;
}

.poduct_card_img_afect:hover {
    padding-bottom: 25px;
}

.poduct_card_img img {
    display: block;
    max-width: 100%;
    height: auto;
    max-height: 100%;
}

.title {
    display: flex;
    gap: 35px;
}

.title .next {
    display: flex;
    align-items: center;
    gap: 10px;
}

.title h1 {
    color: #222;

}

.title h1:first-letter {
    text-transform: uppercase;
}

@media (max-width:1220px) {
    .poduct_cards {
        grid-template-columns: 250px 250px 250px;
    }

}


@media (max-width:900px) {
    .poduct_cards {
        grid-template-columns: 250px 250px;
    }

}

@media (max-width:650px) {
    .poduct_cards {
        grid-template-columns: 250px;
    }

}

@media (max-width:430px) {
    .title {
        display: block;
    }

    .title h1 {
        margin-top: 15px;
    }
}


@media (max-width: 333px) {}