/* estilos  */

/* estilos generales */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
}

.alert{
    display: block;
    padding: 12px 20px;
    background: #f8d7da;
    color: #721c24;
    margin-bottom: 10px;
    border: 1px solid #f5c6cb;
}



.contenedor{
    width: 90%;
    max-width: 1000px;
    background: #0e246d;
    padding: 40px;
    margin: 20px auto;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, .5);
}

.contenedor h1{
    font-size: 30px;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 40px;
    font-weight: 200;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 25px;
    color: #fff;
}

.contenido{
    display: flex;
    width: 100%;
    overflow: hidden;
    flex-wrap: wrap;
}

.contenido .info,
.contenido .formulario{
    width: 50%;
}

/* ===========================================
Estilos info
============================================== */
.info{
    padding-left: 10px;
}

.info .col{
    width: 100%;
    display: flex;
    margin-bottom: 15px;
    font-size: 16px;
    align-items: center;
    flex-wrap: nowrap;
}

.info .col .icono{
    color: #fff;
    margin-right: 10px;
}

.info .col p,
.info .col a
{
    color: #99ccff;
    transition: .6s;
    font-family: 'Patrick Hand', cursive;
    font-weight: 300;
}
.info .col p:hover,
.info .col a:hover{
    color: #4091ec;
    transition: .6s;
}

.info .redes-s{
    width: 100%;
    overflow: hidden;
    padding-left: 25px;
    display: flex;
    flex-wrap: wrap;
}
.info .redes-s a{
    display: flex;
    width: 40px;
    height: 40px;
    color: #fff;
    margin: 5px;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    
}
/*
.fa-facebook-f{
    background:linear-gradient(120deg, #3b5998, #FFFFFF);
    font-size: 20px;
}
.fa-instagram{
    background:linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    font-size: 18px;
}
.fa-twitter{
    background:linear-gradient(45deg, #66757f, #00ACEE, #36D8FF, #f5f8fa, #ffffff);
    font-size: 18px;
}*/
.fab {
    font-size: 18px;
    padding: 12px;
    border-radius: 40%;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, .4);
    transition: .6s;
}
.fab:hover{
    box-shadow: 0px 3px 8px rgba(0, 0, 0, .9);
    transition: .6s;
}


/* ===========================================
Estilos formulario
============================================== */

.formulario{
    padding-left: 10px;
}

.formulario input[type='text'],
.formulario textarea{
    width: 100%;
    margin-bottom: 15px;
    padding: 12px 20px;
    border: 1px solid #999;
    color: #999;
    font-family: 'Open Sans',sans-serif;
    font-weight: 400;
    outline: 0;
}

.formulario textarea{
    max-width: 100%;
    min-width: 100%;
    min-height: 150px;
    max-height: 200px;
}

.formulario input[type='text']:focus,
.formulario textarea:focus{
    border: 1px solid #15CF8A;
}

.formulario button{
    padding: 12px 30px;
    border: transparent;
    background: #e11030;
    color: #fff;
    cursor: pointer;
    float: right;
    transition: .5s;
}
.formulario button:hover{
    border: transparent;
    background: #3399ff;
    text-decoration: underline;
    transition: .5s;
}

@media (max-width: 520px){
   .contenedor{
       padding: 40px 20px;
   }

   .contenido .info,
   .contenido .formulario{
       width: 100%;
       padding: 0px;
   }

   .contenido .info{
       margin-bottom: 30px;
   }
}

@media (max-width: 800px){
  
    .contenido .info,
    .contenido .formulario{
        width: 100%;
        padding: 0px;
    }
 
    .contenido .info{
        margin-bottom: 30px;
    }
 }

/*--==============================
Mensaje de envio
==============================--*/
.form_wrap {
    width: 1050px;
    height: 530px;
    margin: 50px auto;
    display: flex;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 2px rgb(255, 69, 0);
}

.mensaje-exito {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mensaje-exito h1 {
    font-size: 35px;
    display: block;
    text-align: center;
    margin-bottom: 20px;
}

.mensaje-exito a {
    display: block;
    padding: 10px 30px;
    background: #4091ec;
    text-decoration: none;
    color: #fff;
}

.mensaje-exito a:hover {
    background: #3371b6;
}
























