.contact_us {
    padding: 20px;
    
}

@media (min-width:769px) {
    .contact_us {
        padding: 50px 100px;
    }
}

.contact_us_title {
    font-size: 20px;
    font-weight: 500;
    color: var(--heading-font-color);
    padding-bottom: 20px;
}

@media (min-width:769px) {
    .contact_us_title {
        font-size: 32px;
    }
}

.contct_form_wrapper {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    background: var(--light-bgcolor);
    border-radius: 12px;
}

@media (min-width:769px) {
    .contct_form_wrapper {
        border-radius: 20px;
    }
}

.contct_form_image_wrapper {
    width: 100%;
    display: flex;
}

@media (min-width:769px) {
    .contct_form_image_wrapper {
        max-width: calc(40% - 0px * 1 / 2);
    }
}
.main_picture_tag{
    display: flex;
}
.contct_form_image {
    width: 100%;
    height: auto;
    scale: 0.7;
}

@media (min-width:769px) {
    .contct_form_image {
        border-radius: 0;
    }
}

.contct_form_details_wrapper {
    width: 100%;
    
    display: flex;
    align-items: center;
}

@media (min-width:769px) {
    .contct_form_details_wrapper {
        max-width: calc(60% - 0px * 1 / 2);
    }
}

.contct_form_details {
    width: 100%;
    padding: 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width:769px) {
    .contct_form_details {
        max-width: 48rem;
    }
}

.contact_form_title {
    color: var(--heading-font-color);
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

@media (min-width:769px) {
    .contact_form_title {
        font-size: 28px;
    }
}
.contct_form_field_wrapper{
    display: flex;
    flex-wrap: wrap;
    gap:2rem;
}
.contct_form_field_wrapper .field_wrapper{
    width: 100%;
}
@media (min-width:769px) {
    .contct_form_field_wrapper{
        flex-direction: row;
    }
    .contct_form_field_wrapper .field_wrapper{
        max-width: calc(50% - 2rem * 1 / 2);
    }
}

.field_wrapper{
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 5px;
}
.field_label{
    color: var(--heading-font-color);
}
.field_input {
    border: none;
    background: var(--main-bgcolor);
    border-radius: 10px;
    border: 1px solid var(--btn-bgcolor);
    font-size: 16px;
    color: var(--heading-font-color);
    padding: 12px 20px;
}

.submit_button {
    background: var(--btn-bgcolor);
    border: none;
    padding: 12px 60px;
    color: var(--btn-color);
    font-size: 18px;
    border-radius: 10px;
    width: max-content;
    margin: 0 auto;
}