.contact_us_section {
    height: 100%;
    max-width: 1720px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 30px 10px;
    flex-wrap: wrap;
    margin: 0 auto;

}
.contact_us_form_section {
    width: 48%;
}

.contactus_form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
}

.contactus_form>textarea {
    width: 100%;
    height: 200px;
    resize: none;
    border: none;
    background: transparent;
    padding: 10px;
    border-bottom: 1px solid white;
    outline: none;
    color: white;
    font-size: 18px;
    font-family: "Roboto";
}

.contactus_form>button {
    border: none;
    background: none;
    color: white;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    cursor: pointer;

}

.contactus_form>input,
.contactus_form>div>input {
    border: none;
    background: transparent;
    padding: 10px;
    border-bottom: 1px solid white;
    width: 100%;
    height: 60px;
    outline: none;
    color: white;
    font-size: 18px;
    font-family: "Roboto";
}

.contactus_form>div>input {
    width: 48%;
}

.contactus_form>input::placeholder .contactus_form>div>input::placeholder .contactus_form>textarea::placeholder {
    color: white;
    font-family: "Roboto";
    line-height: 30px;
    font-size: 18px;

}


@media screen and (max-width: 1030px) {
    .contact_us_form_section {
        width: 100%;
    }
}