.contact-us {
    padding: 64px 0 192px;
}

.contact-us .container {
    display: flex;
    justify-content: space-between;
    gap: 95px;
}

.contact-us .container .content {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}

.contact-us .content .small-title {
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 12px;
    opacity: .4;
    text-transform: uppercase;
}

.contact-us .content .big-title {
    font-size: 72px;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 40px;
}

.contact-us .content .text {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
}

.contact-us .content .bottom {
    display: flex;
    align-items: center;
    gap: 24px;
}

.schedule-link {
    display: flex;
    justify-content: center;
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    padding: 24px;
    border-radius: 56px;
    background-color: var(--soft-blue);
}

.schedule_text {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: #000;
}

.contact-us .form-wrapper {
    border-radius: 16px;
    background-color: white;
    padding: 24px 40px 32px;
    width: 50%;
}

.form-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-us .form-wrapper .contact_form_title {
    font-family: 'Instrument Serif', serif;
    font-size: 32px;
    line-height: 1.5;
    font-style: italic;
    letter-spacing: -0.01em;
}

.contact_form_text {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: -0.01em;
}

@media (min-width:968px) {
    .contact-us .content .text {
        width: calc(100% - 140px);
    }
}

@media (max-width: 968px) {
    .contact-us {
        padding: 0 0 48px;
    }

    .contact-us .container {
        flex-direction: column;
        gap: 56px;
    }

    .contact-us .container .content {
        width: 100%;
    }

    .contact-us .content .small-title {
        display: none;
    }

    .contact-us .content .big-title {
        font-size: 36px;
        line-height: 1.1945;
        margin-bottom: 16px;
    }

    .contact-us .content .text {
        font-size: 18px;
    }

    .contact-us .content .bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 40px;
    }

    .schedule-link {
        font-size: 24px;
        padding: 16px;
        width: 100%;
    }

    .contact-us .form-wrapper {
        width: 100%;
        padding: 32px 20px 32px;
    }

    .contact-us .form-wrapper .contact_form_title {
        font-size: 36px;
        line-height: 1.1112;
        text-align: center;
        margin-bottom: 8px;
    }

    .contact_form_text {
        font-size: 14px;
        text-align: center;
        padding: 0 10px;
    }

    .wpcf7-list-item label {
        align-items: flex-start;
    }
}