.form_template_3 {
    background-color: var(--box_bg_2);
    padding: var(--margin);
    border-radius: var(--border-radius_1);
}

.form_template_3 .modtitle {
    justify-content: center;
    margin: 12px 0 20px;
}

.form_template_3 .form-control {
    height: 60px;
    font-size: 16px;
    font-weight: normal;
    border: 0;
    padding: 1rem 2rem 0;
    margin-bottom: var(--margin-2);
}

.form_template_3 textarea.form-control {
    height: 100px;
}

.form_template_3 #contact_us_button {
    width: 100%;
    padding: 2rem;
    font-size: 18px;
    margin: 0;
}

.form_template_3 img {
    height: 386px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--border-radius_1);
}

@media (max-width: 991px) {
    .form_template_3 {
        flex-direction: column-reverse;
        gap: var(--margin);
    }
    .form_template_3 img {
        height: 230px;
    }    
    .form_template_3 #contact_us_button {
        margin-top: var(--margin);
    }    
}