.contacto{
    width: 100%;
    height: 100vh;
}

.contenedor_contacto{
    width: 90%;
    height: 55vh;
    margin: 20vh auto;
    display: flex;
    background-color: var(--main-color);
    border-radius: 5px;
    box-shadow: 10px 10px 15px rgba(0,0,0,25%);
}

.img_contacto{
    width: 31%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.img_contacto1{
    background-image: url("../../img/contacto_img1.jpg");
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

.img_contacto2{
    background-image: url("../../img/contacto_img2.jpg");
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}

.mascara_img_contacto{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(53,53,53,30%);
}

/*-------------------------------------------------------*/

.contenedor_texto_contacto{
    width: 38%;
    padding: 60px 38px;
}

.contenedor_texto_contacto h3{
    text-align: center;
    font-family: "Lora", sans-serif;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
}

.contenedor_texto_contacto hr{
    width: 50px;
    margin: 20px auto;
    border: 2px solid #fff;
}

.contenedor_texto_contacto h4{
    text-align: center;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #fff;
    margin-bottom: 60px;
}

.contenedor_texto_contacto a{
    display: block;
    width: 80%;
    margin: 0 auto;
    padding: 15px;
    background-color: #fff;
    text-align: center;
    letter-spacing: 0.5px;
    font-family: "Lora", sans-serif;
    font-size: 16px;
    color: #222;
    border-radius: 5px;
    border: 2px solid transparent;
    box-sizing: 4px 5px 10px rgba(0,0,0,25%);
    transition: all 0.5s;
}

.contenedor_texto_contacto a:hover{
    background-color: var(--main-color);
    color: #fff;
    border: 2px solid #fff;
}

/*////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////// RESPONSIVE /////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////*/

@media (max-width: 700px) {
    .contacto{
        height: auto;
    }

    .contenedor_contacto{
        width: 95%;
        height: 100vh;
        margin: 20vh auto;
        display: flex;
        flex-wrap: wrap;
    }

    .img_contacto{
        width: 100%;
        height: 25vh;
    }

    /*-------------------------------------------------------*/

    .contenedor_texto_contacto{
        height: 50vh;
        width: 100%;
        padding: 40px 20px;
    }

    .contenedor_texto_contacto h3{
        width: 100%;
        font-size: 23px;
        letter-spacing: 0.8px;
    }

    .contenedor_texto_contacto hr{
        width: 45px;
        border: 1px solid #fff;
    }

    .contenedor_texto_contacto h4{
        width: 80%;
        margin: 0 auto;
        font-size: 13px;
        letter-spacing: 0.6px;
        margin-bottom: 40px;
    }

    .contenedor_texto_contacto a{
        width: 80%;
        padding: 10px;
        letter-spacing: 0.6px;
        font-size: 12px;
    }



}