.contact_us_row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 40px;
    justify-content: space-between;
}

.contact_us_column {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
}

.contact_us_heading h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: normal;
    color: #020202;
}

.contact_us_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.contact_us_icon_wrapper {
    background-color: #ECCEB1;
    border-radius: 50%;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact_us_icon_wrapper svg {
    width: 38px;
    min-width: 38px;
    height: 38px;
}

.contact_us_details {
    margin-top: 40px;
}

.contact_us_title h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: normal;
    color: #020202;
    margin-bottom: 10px;
}

.contact_us_text a,
.contact_us_text p {
    display: inline-block;
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    color: #353535;
}

.contact_us_form_box {
    background: #ECCEB1;
    border-radius: 12px;
    padding: 20px;
}

.wpforms-container {
    margin: 0 !important;
}

.contact_us_form_box .wpforms-field {
    margin-bottom: 20px;
}

.contact_us_form_box .wpforms-field:last-child {
    margin-bottom: 0;
}

.contact_us_form_box .wpforms-field {
    padding: 0 !important;
}

.contact_us_form_box .wpforms-field label {
    font-weight: 600;
    font-size: 16px !important;
    line-height: normal !important;
    color: #353535 !important;
    margin-bottom: 10px !important;
}

.contact_us_form_box .wpforms-required-label {
    display: none;
}

.contact_us_form_box .wpforms-field input,
.contact_us_form_box .wpforms-field textarea {
    background: rgba(255, 255, 255, 0.50) !important;
    border: 1px solid #FFF;
    border-radius: 8px !important;
}

.contact_us_form_box .wpforms-field input::placeholder,
.contact_us_form_box .wpforms-field textarea::placeholder {
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: normal !important;
    color: #696969 !important;
    opacity: 1 !important;
}

.contact_us_form_box .wpforms-field textarea {
    height: 116px !important;
    resize: none !important;
}

.contact_us_form_box .wpforms-field-html p {
    font-weight: 600;
    font-size: 16px;
    line-height: normal;
    color: #353535;
}

.contact_us_form_box .wpforms-field-checkbox input::before {
    background: #ECCEB1 !important;
    border: 1px solid #4F4F4F;
    border-radius: 2px;
}

.contact_us_form_box .wpforms-field-checkbox label {
    font-weight: 400;
    font-size: 16px !important;
    line-height: normal !important;
    color: #4F4F4F !important;
    padding-left: 10px !important;
    margin: 0 !important;
}

.contact_us_form_box .wpforms-submit-container {
    margin-top: 40px !important;
}

.contact_us_form_box .wpforms-submit-container .wpforms-submit {
    font-weight: 700;
    font-size: 16px;
    line-height: normal;
    color: #363636 !important;
    background: #FFF !important;
    border: none;
    border-radius: 12px;
    text-transform: capitalize;
    height: auto;
    padding: 14px 21px;
}

.contact_us_form_box .wpforms-submit-container .wpforms-submit:hover {
    background: #363636 !important;
    color: #FFF !important;
}

@media (max-width: 1199px) {
    .contact_us_row {
        gap: 30px;
    }

    .contact_us_column {
        flex: 1 1 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }

    .contact_us_heading h2 {
        font-size: 32px;
    }

    .contact_us_container {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 30px;
        gap: 30px;
    }

    .contact_us_box {
        display: flex;
        align-items: flex-start;
    }

    .contact_us_icon_wrapper {
        width: 65px;
        height: 65px;
    }

    .contact_us_icon_wrapper svg {
        width: 30px;
        min-width: 30px;
        height: 30px;
    }

    .contact_us_details {
        margin-top: 0;
        margin-left: 10px;
    }

    .contact_us_title h3 {
        margin-bottom: 2px;
    }

    .contact_us_form_box .wpforms-field {
        margin-bottom: 15px;
    }

    .contact_us_form_box .wpforms-field label {
        margin-bottom: 5px !important;
    }

    .contact_us_form_box .wpforms-field textarea {
        height: 100px !important;
    }

    .contact_us_form_box .wpforms-field-checkbox label {
        font-size: 15px !important;
        margin-bottom: 0 !important;
    }

    .contact_us_form_box .wpforms-submit-container {
        margin-top: 30px !important;
    }

    .contact_us_form_box .wpforms-submit-container .wpforms-submit {
        padding: 12px 18px;
    }

}

@media (max-width: 991px) {
    .contact_us_row {
        gap: 20px;
    }

    .contact_us_column {
        flex: 1 1 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }

    .contact_us_heading h2 {
        font-size: 28px;
    }

    .contact_us_container {
        margin-top: 20px;
        gap: 25px;
    }

    .contact_us_icon_wrapper {
        width: 55px;
        height: 55px;
    }

    .contact_us_icon_wrapper svg {
        width: 25px;
        min-width: 25px;
        height: 25px;
    }

    .contact_us_title h3 {
        font-size: 18px;
    }

    .contact_us_text a,
    .contact_us_text p {
        font-size: 15px;
    }

    .contact_us_form_box {
        padding: 15px;
    }

    .contact_us_form_box .wpforms-field input::placeholder,
    .contact_us_form_box .wpforms-field textarea::placeholder {
        font-size: 15px !important;
    }

    .contact_us_form_box .wpforms-field textarea {
        height: 90px !important;
    }

    .contact_us_form_box .wpforms-submit-container {
        margin-top: 20px !important;
    }

    .contact_us_form_box .wpforms-submit-container .wpforms-submit {
        padding: 10px 15px;
    }
}

@media (max-width: 767px) {
    .contact_us_row {
        flex-direction: column;
    }

    .contact_us_column {
        flex: 1;
        max-width: 100%;
    }

    .contact_us_heading h2 {
        font-size: 24px;
    }

    .contact_us_heading h2 br {
        display: none;
    }

    .contact_us_container {
        margin-top: 15px;
        gap: 20px;
    }

    .contact_us_icon_wrapper {
        width: 45px;
        height: 45px;
    }

    .contact_us_icon_wrapper svg {
        width: 20px;
        min-width: 20px;
        height: 20px;
    }

    .contact_us_form_box .wpforms-layout-row {
        display: block !important;
    }

    .contact_us_form_box .wpforms-layout-row .wpforms-layout-column {
        width: 100% !important;
        margin-bottom: 15px;
    }

    .contact_us_form_box .wpforms-layout-row .wpforms-layout-column:last-child {
        margin-bottom: 0;
    }

    .contact_us_form_box .wpforms-field textarea {
        height: 100px !important;
    }

    .contact_us_form_box .wpforms-submit-container .wpforms-submit {
        font-size: 15px;
    }
}

@media (max-width: 480px) {

    .contact_us_text a,
    .contact_us_text p {
        font-size: 14px;
    }

    .contact_us_title h3 {
        font-size: 16px;
    }

    .contact_us_icon_wrapper {
        width: 40px;
        height: 40px;
    }

    .contact_us_icon_wrapper svg {
        width: 18px;
        min-width: 18px;
        height: 18px;
    }

    .contact_us_details {
        margin-left: 8px;
    }
}