.section_contact {
    padding: 10%;
    display: grid;
    grid-template-columns: 50% 50%;
    position: relative;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    background-color: var(--light_red);
    padding-bottom: 0;
}

.section_contact .fondo {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transform: translate(-1%, -65%);
    opacity: 62%;
}

.section_contact .main_text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2vw;
}

.section_contact .main_text h1 {
    font-size: 3vw;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
}

.section_contact .main_text p {
    color: var(--white);
}

.cont_form {
    padding: 3%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2vw;
    z-index: 1;
    padding-bottom: 20%;
}

.cont_form .form_contain {
    background-color: #f4e7c1;
    width: 80%;
    padding: 5%;
    text-align: center;
    border-radius: 4vw;
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

input {
    border: none;
    width: 80%;
    padding: 2%;
    margin: .7vw;
    border-radius: 2vw;
    font-size: 1vw;
}

textarea {
    max-height: 10vh;
    min-height: 10vh;
    width: 80%;
    padding: 2%;
    border: 0;
    border-radius: 1vw;
    font-size: 1vw;
    resize: none;
}

#messagenot {
    color: var(--dark_green);
}

.button2 {
    padding: .8vw 2vw;
    border: none;
    border-radius: .5vw;
    background: var(--light_red);
    color: var(--white);
    font-size: 1vw;
    transition: .25s;
    cursor: pointer;
}

.button2:hover {
    background-color: var(--dark_green);
}

#contact_loader {
    display: none;
}

.ping {
    --uib-size: 5vh;
    --uib-speed: 1s;
    --uib-color: #c14546;
    position: relative;
    height: var(--uib-size);
    width: var(--uib-size);
}

.ping::before,
.ping::after {
    content: '';
    position: absolute;
    top: 90%;
    left: 90%;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background-color: var(--uib-color);
    animation: pulse7132 var(--uib-speed) linear infinite;
    transform: scale(0);
    opacity: 0;
}

.ping::after {
    animation-delay: calc(var(--uib-speed) / -2);
}

@keyframes pulse7132 {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.section_contact .cont_image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.section_contact .cont_image .faro {
    width: 100%;
    transform: translate(28%, 1%);
}

.section_contact .cont_image .inca {
    bottom: 0;
    position: absolute;
    width: 100%;
    transform: translate(25%, 7%);
    transition: transform 0.3s ease-in-out;
}

.section_contact .cont_image .condor {
    top: 0;
    position: absolute;
    width: 85%;
    z-index: 3;
    animation: infinite 2s ImageAnimation alternate;
}

@keyframes ImageAnimation {
    0% {
        transform: translate(11%, -90%);
    }
    100% {
        transform: translate(11%, -96%);
    }
}

.cwave {
    transform: translateY(-99%);
}

@media (max-width: 996px) {
    .section_contact {
        grid-template-columns: 1fr;
        padding: 20% 10%;
        padding-bottom: 0;
    }
    .section_contact .fondo_home {
        display: none;
    }
    .section_contact .main_text {
        gap: 6vw;
    }
    .section_contact .main_text h1 {
        font-size: 8vw;
        font-weight: 600;
    }
    .section_contact .main_text p {
        text-align: justify;
    }
    .cont_form {
        gap: 10vw;
    }
    .cont_form .form_contain {
        width: 111%;
        height: 81vw;
        gap: 3vw;
        border-radius: 10vw;
        padding: 12% 3%;
    }
    input,
    textarea {
        font-size: 3.5vw;
        border-radius: 4vw;
        height: 11vw;
    }
    .button2 {
        font-size: 3.5vw;
        border-radius: 1vw;
        padding: 3vw 8vw;
    }
    .section_contact .cont_image .faro {
        width: 87%;
        transform: translate(22%, 1%);
    }
    .section_contact .cont_image .inca {
        bottom: 0;
        position: absolute;
        width: 100%;
        transform: translate(18%, 4%);
        transition: transform 0.3s ease-in-out;
    }
    .section_contact .fondo {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        object-fit: cover;
        object-position: center;
        transform: translate(-1%, 0%);
        opacity: 62%;
    }
}