*
{
    margin: 0;
    padding: 0;
}
.subtitulo
{
    font-size: 25px;
    text-align: center;
}
.main
{
    width: 100%;
    background-color: #f3f3f3;
    padding-top: 30px;
    margin-top: 70px;
}
.slider-area
{
    z-index: 0;
}
.footer_area
{
    z-index: 0;
}
.contenedor_main
{
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

.contenedor_form
{
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;
    margin-top: 20px;
    background-color: white;
    padding: 20px 20px 20px 20px;
    border-radius: 20px;
}
.img_logo
{
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.contenedor_caja
{
    margin-bottom: 30px;
    margin-top: 30px;
}
.caja
{
    width: 90%;
    border: none;
    border-bottom: 2px solid #e8e8e8;
    outline: none;
    padding-bottom: 4px;
    padding-left: 10px;
}
.textarea
{
    padding: 10px 10px 10px 10px;
    width: 90%;
    height: 130px;
    max-width: 90%;
    min-width: 90%;
    max-height: 150px;
    min-height: 100px;
    border: none;
    border-bottom: 2px solid #e8e8e8;
    outline: none;
}
.boton
{
    background-color: #e3b04b;
    border: 1px solid #e3b04b;
    border-radius: 5px;
    padding: 5px 15px;
    color: white;
    font-weight: bold;
}
.boton:hover
{
    background-color: white;
    color: #e3b04b;
}
@media (min-width:980px)
{
    .contenedor_form
    {
        grid-template-columns: 1fr 1fr;
    }
}