@media screen and (max-width: 1024px) {
    .page_title {
        font-size: 32px;
        margin-top: 18px;
    }

    .goods_list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        margin-top: 36px;
    }

    .goods_list .good {
        display: flex;
        flex-direction: column;
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.10);
        min-height: 300px;
    }

    .goods_list .good .preview {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .goods_list .good .info {
        position: absolute;
        width: 100%;
        padding: 24px;
        box-sizing: border-box;
        bottom: 0;
        left: 0;
        border-radius: 10px;
        background: #FFF;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .goods_list .good .info .title {
        font-size: 19px;
        line-height: 28px;
        font-weight: 600;
    }

    .goods_list .good .info .price {}

    .goods_list .good .info .buttons {
        display: none;
    }

    .order_consultation_mobile {
        display: flex;
    }

    .order_consultation {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .page_title {
        font-size: 24px;
        margin-top: 12px;
    }

    .goods_list {
        margin-top: 24px;
    }

    .order_consultation_mobile>.title {
        font-size: 24px;
        line-height: normal;
    }

    .order_consultation_mobile>.subtitle {
        font-size: 14px;
    }

    .order_consultation_mobile input {
        font-size: 13px;
        font-weight: 700;
    }
}

@media screen and (max-width: 525px) {
    .pop_up_menu .pop_up_wrapper {
        width: 350px;
        padding: 25px 20px;
    }
}