*, *::before, *::after {
    box-sizing: border-box;
}

.contact {
    background-color: var(--negro-deep);
    padding: 80px 150px;
    color: var(--blanco);
    font-family: 'Montserrat', sans-serif;
}

.contact_title {
    font-size: 26px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: -0.03em;
    margin: 0 0 40px;
}

.contact_title_underline {
    padding-bottom: 10px;
    border-bottom: 4px solid var(--blanco);
}

.contact_container {
    display: flex;
    justify-content: space-between;
}

.contact_section_left {
    display: flex;
    width: 45%;
}

.contact_section_right {
    display: flex;
    flex-direction: column;
    width: 45%;
}

.contact_form {
    display: flex;
    flex-direction: column;
}

.contact_inputs_container {
    display: flex;
    justify-content: space-between;
}

.contact_inputs_left {
    width: 230px;
    height: 118px;
}

input,
textarea {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0.01em;
    color: var(--gris-texto);
    background-color: var(--negro-deep);
    border: 1px solid var(--gris-texto);
}
 
.contact_input {
    height: 50px;
    width: 230px;
    border-radius: 3.35px;
    padding: 0 20px 0 10px;
}

.contact_input:first-of-type {
    margin-bottom: 10px;
}

.contact_textarea {
    width: 230px;
    height: 110px;
    margin-left: 50px;
    border-radius: 3.35px;
    padding: 10px 10px 0 10px;
    resize: none;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--celeste);
    color: var(--gris-claro);
}

input:focus::placeholder,
textarea:focus::placeholder {
    color: var(--gris-claro);
}

.contact_button {
    height: 50px;
    width: 230px;
    background: var(--rojo);
    color: var(--blanco);
    border: none;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    align-self: flex-end;
    margin-top: 20px;
    cursor: pointer;
}

.contact_location_title {
    font-size: 14px;
    font-weight: 700;
    margin: 20px 0 10px;
}

.contact_location_text {
    text-align: justify;
    padding-right: 100px;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
}

.contact_whatsapp_container {
    display: flex;
}

.contact_whatsapp_logo {
    width: 32px;
    height: 22px;
    padding-right: 10px;
}

.contact_whatsapp_anchor {
    text-decoration: none;
    color: var(--blanco);
    font-size: 14px;
    align-self: center;
}


@media (max-width: 600px) {
    .contact {
        padding: 30px 10%;
    }

    .contact_container {
        flex-direction: column;
    }

    .contact_section_left,
    .contact_section_right {
        width: 100%;
    }

    .contact_inputs_container {
        flex-direction: column;
    }

    .contact_textarea {
        margin: 10px 0 0;
    }

    .contact_button {
        align-self: auto;
    }

    .contact_location_text {
        padding: 0;
    }
}

#dummyframe{
    width: 0px;
    height: 0px;
    margin: 0px;
    padding: 0px;
    border: 0px;
}