.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;
}

.consultation_block {
    display: grid;
    grid-template-columns: 51.5% 48.5%;
    margin-top: 80px;

    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 12px 32px 0px rgba(0, 0, 0, 0.10);
    overflow: hidden;
}

.consultation_block .text_part {
    display: flex;
    flex-direction: row;
    gap: 40px;
    padding: 40px;
    box-sizing: border-box;

    height: 100%;
}

.consultation_block .text_part .info {
    display: flex;
    flex-direction: column;
    gap: 40px;

    flex-shrink: 0;
}

.consultation_block .text_part .title {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
}

.consultation_block .text_part .info .info_block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.consultation_block .text_part .info .info_block:last-child {
    gap: 15px;
}

.consultation_block .text_part .info .info_block .info_name,
.consultation_block .text_part .inputs .title_block .description {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.consultation_block .text_part .info .info_block .info_content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.consultation_block .text_part .info .info_block:last-child .info_content {
    flex-direction: row;
    gap: 17px;
}

.consultation_block .text_part .info .info_block .info_content .info_text {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
}

.consultation_block .text_part .info .info_block .info_content .icon_wrapper {
    width: 46px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;

    background: var(--1, 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%), #0050EC);
}

.consultation_block .text_part .divider {
    height: 100%;
    border-right: 1px solid #C5C5C5;
}


.consultation_block .text_part .inputs {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: space-between;
}

.consultation_block .text_part .inputs .title_block {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.consultation_block .text_part .inputs .fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.consultation_block .text_part .inputs .fields input {
    all: unset;
}

.consultation_block .text_part .inputs .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 .inputs .fields .button {
    width: 100%;
    height: 70px;
    text-align: center;

    box-sizing: border-box;
    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;
}

.consultation_block .text_part .inputs .fields .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%);
}

.consultation_block .img_wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.consultation_block .img_wrapper img {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    right: 0;
}

.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;
}