.contact {
    padding: 6rem 4.75rem;
    position: relative;
    display: flex;
    gap: 3rem;
    background: #1e149d;
}
.contact_imgdeco {
    position: absolute;
    bottom: 0;
    right: 0;
    object-fit: cover;
    width: 45rem;
    height: 32rem;
}
.contact_title {
    flex: 1 0 0;
}
.contact_title .title-h2 {
    margin-bottom: 2rem;
}
.contact_form {
    flex: 1 0 0;
    position: relative;
    z-index: 10;
}
.contact_form_input {
    flex: 1 0 0;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 3px;
    transition: all 0.3s;
}
.contact_form_input:focus-visible {
    border: 1px solid #666;
}
.contact_form .wapper_input {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.contact_form_textarea {
    flex: 1 0 0;
    width: 100%;
    min-width: 100%;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 3px;
    transition: all 0.3s;
    max-height: 50vh;
    margin-bottom: 1.5rem;
}
@media (max-width: 639px) {
    .contact {
        padding: 6.25rem 1.118rem;
        flex-direction: column;
        gap: 2rem;
    }
    .contact_title .title-h2 {
        font-family: "Plus Jakarta Sans", Sans-serif;
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 1.4;
    }
    .contact_title p {
        font-size: 1.25rem;
    }
    .contact_form_input {
        width: 50%;
    }
}
