.wrapper {
    box-sizing: border-box;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 119px;
}

.path {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-top: 30px;

    color: rgba(0, 0, 0, 0.50);
}

.path .pagename {
    all: unset;
    font-size: 13px;
    line-height: 18px;
}

.path .pagename.active {
    font-weight: 600;
}

.page_title {
    margin-top: 80px;

    font-size: 48px;
    font-weight: 700;
    line-height: 40px;
}

.goods_list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    /* grid-auto-flow: row; */
    gap: 31px;

    margin-top: 60px;
}

.goods_list .good {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0px 12px 32px 0px rgba(0, 0, 0, 0.10);
}

.goods_list .good .preview {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 480px;
    align-self: stretch;
    overflow: hidden;
}

.goods_list .good .preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 300ms ease-in-out;
}

.goods_list .good .preview img:hover {
    scale: 1.1;
}

.goods_list .good .info {
    display: flex;
    flex-direction: column;
    gap: 5px;

    padding: 40px;
}

.goods_list .good .info .title {
    font-size: 26px;
    font-weight: 500;
    line-height: 40px;
}

.goods_list .good .info .price {
    font-size: 20px;
    font-weight: 500;
    height: 35px;
}

.goods_list .good .info .price .bold {
    font-size: 32px;
    font-weight: 900;
}

.goods_list .good .info .buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
    height: 45px;
    margin-top: 15px;
}

.goods_list .good .info .buttons a {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;

    cursor: pointer;
    transition: all 300ms ease-in-out;
}

.goods_list .good .info .buttons a.order {
    text-align: center;
    color: var(--white, #FAFAFA);
    background: linear-gradient(102deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.20) 21.5%, rgba(255, 255, 255, 0.28) 21.51%, rgba(255, 255, 255, 0.00) 45.14%), radial-gradient(145.35% 141.42% at 0% 0%, #0050EC 0%, #0050EC 100%);
    box-shadow: 0px 20px 20px -10px rgba(99, 131, 215, 0.40);
}

.goods_list .good .info .buttons a.order:hover {
    background: linear-gradient(102deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.20) 21.5%, rgba(255, 255, 255, 0.28) 21.51%, rgba(255, 255, 255, 0.00) 45.14%), radial-gradient(145.35% 141.42% at 0% 0%, #0D81EC 0%, #20A5CF 100%);
}

.goods_list .good .info .buttons a.details {
    border: 1px solid #000;

}

.goods_list .good .info .buttons a.details:hover {
    border: 0;
    background: #FFF;
    box-shadow: 0px 12px 32px 0px rgba(0, 0, 0, 0.10);
}

.goods_list .good .info .buttons a:active {
    scale: 0.95;
}

.order_consultation {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 60px 20px 50px;
    margin-top: 140px;

    border-radius: 20px;
    box-shadow: 0px 12px 32px 0px rgba(0, 0, 0, 0.10);
}

.order_consultation .title {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
}

.order_consultation .subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    padding: 0 2px;
}

.order_consultation .inputs {
    display: grid;
    grid-template-columns: repeat(3, minmax(100px, 1fr)) calc(100vw / 1920 * 340);
    height: 70px;
    gap: 20px;
}

.order_consultation .inputs input {
    all: unset;
}

.order_consultation .inputs .field {
    padding: 0 20px;

    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.30);

    font-size: 18px;
    line-height: 24px;
}

.order_consultation .inputs .button {
    text-align: center;

    border-radius: 10px;
    background: linear-gradient(102deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.20) 21.5%, rgba(255, 255, 255, 0.28) 21.51%, rgba(255, 255, 255, 0.00) 45.14%), radial-gradient(145.35% 141.42% at 0% 0%, #0050EC 0%, #0050EC 100%);
    box-shadow: 0px 20px 20px -10px rgba(99, 131, 215, 0.40);
    padding: 0 20px;

    color: var(--white, #FAFAFA);
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
}

.order_consultation .inputs .button:hover {
    background: linear-gradient(102deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.20) 21.5%, rgba(255, 255, 255, 0.28) 21.51%, rgba(255, 255, 255, 0.00) 45.14%), radial-gradient(145.35% 141.42% at 0% 0%, #0D81EC 0%, #20A5CF 100%);
}

.order_consultation_mobile {

    display: none;
    flex-direction: column;
    gap: 9px;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
}

.order_consultation_mobile>.title {
    font-size: 32px;
    font-weight: 700;
}

.order_consultation_mobile>.subtitle {
    font-size: 17px;
    font-weight: 500;
    line-height: 25px;
}

.order_consultation_mobile input {
    all: unset;
    margin-top: 30px;
    padding: 25px 42px;

    color: var(--white);
    font-size: 20px;
    line-height: 20px;

    border-radius: 10px;
    background: var(--1, linear-gradient(155deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.20) 38.36%, rgba(255, 255, 255, 0.28) 38.37%, rgba(255, 255, 255, 0.00) 80.52%), #0050EC);
    box-shadow: 0px 20px 20px -10px rgba(99, 131, 215, 0.40);

    cursor: pointer;
}

.pop_up_menu {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 123456;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    display: none;
}

.pop_up_menu .pop_up_wrapper {
    position: fixed;
    display: flex;
    flex-direction: column;
    gap: 330px;

    width: 510px;
    padding: 30px 45px;
    box-sizing: border-box;

    border-radius: 20px;
    box-shadow: 0px 12px 32px 0px rgba(0, 0, 0, 0.10);
    background-size: cover !important;
    background-position: center 0 !important;
    /* background-repeat: no-repeat; */
}

.pop_up_menu .pop_up_wrapper .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pop_up_menu .pop_up_wrapper .title .text {
    font-size: 24px;
    font-weight: 700;
}

.pop_up_menu .pop_up_wrapper .title img {
    width: 24px;
    aspect-ratio: 1/1;
    transition: all 100ms ease-in-out;
}

.pop_up_menu .pop_up_wrapper .title img:active {
    scale: .9;
}

.pop_up_menu .pop_up_wrapper .form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pop_up_menu .pop_up_wrapper .form .information {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    margin-bottom: 12px;

    border-radius: 10px;
    background: rgba(255, 255, 255, 0.60);
    box-shadow: 0px 12px 32px 0px rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(8px);
}

/* 

.consultation_block .text_part .fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.consultation_block .text_part .fields input {
    all: unset;
}

.consultation_block .text_part .fields .field {
    width: 100%;
    height: 70px;
    padding: 0 20px;
    box-sizing: border-box;

    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.30);

    font-size: 18px;
    line-height: 24px;
}

.consultation_block .text_part .fields .button {
    width: 100%;
    height: 70px;
    text-align: center;

    border-radius: 10px;
    background: var(--1, linear-gradient(155deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.20) 38.36%, rgba(255, 255, 255, 0.28) 38.37%, rgba(255, 255, 255, 0.00) 80.52%), #0050EC);
    box-shadow: 0px 20px 20px -10px rgba(99, 131, 215, 0.40);
    padding: 0 20px;

    color: var(--white, #FAFAFA);
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
}

*/

.pop_up_menu .pop_up_wrapper .form .information .title {
    font-size: 18px;
    font-weight: 600;
}

.pop_up_menu .pop_up_wrapper .form .information .price {
    font-size: 24px;
    font-weight: 700;
}

.pop_up_menu .pop_up_wrapper .form input {
    all: unset;
}

.pop_up_menu .pop_up_wrapper .form .field {
    all: unset;
    width: 100%;
    padding: 13px 20px;
    box-sizing: border-box;

    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.30);

    font-size: 18px;
    line-height: 24px;

    margin-bottom: 12px;
}

.pop_up_menu .pop_up_wrapper .form .field.dnone {
    display: none;
}

.pop_up_menu .pop_up_wrapper .form .button {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    margin-top: 12px;

    border-radius: 10px;
    background: var(--1, linear-gradient(155deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.20) 38.36%, rgba(255, 255, 255, 0.28) 38.37%, rgba(255, 255, 255, 0.00) 80.52%), #0050EC);
    box-shadow: 0px 20px 20px -10px rgba(99, 131, 215, 0.40);
    padding: 13px 20px;

    color: var(--white, #FAFAFA);
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
}

.pop_up_menu>.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: .15;
    z-index: -1;

}

.wpcf7-response-output {
    text-align: center !important;
    color: #dc3232 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
}

.wpcf7-not-valid-tip {
    margin-top: 4px;
}

.fields p:last-child {
    position: relative;
    display: flex;
}

.wpcf7-spinner {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    margin: 0;
}

.wpcf7-response-output {
    margin-top: 4px !important;
}

.order_consultation .wpcf7-response-output {
    display: none;
}