
/*CONTAINER*/
.container{
    width: 100%;
}
/*CONTAINER-CONTACTO*/
.container-contacto{
    display: flex;
    margin: auto;
    width: 85%;
    align-items: start;
    flex-wrap: row wrap;
}

/*IMAGEN*/

.container-contacto img{
    width: 150px;
    margin-right: 20px;
    animation: appear-right 1s linear;
}

/*DETALLES_CONTACTO*/
.detalles-contacto{
    animation: appear-right  1s linear;
}
.detalles-contacto h2{
    padding-top: 30px;
    color: rgb(9, 35, 91);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    padding-bottom: 25px;
    font-size: 35px;
}
.detalles-contacto p{
    padding-bottom: 35px;
    font-family: sans-serif;
    font-size: 20px;
    line-height: 1.5;
}
.siguenos{
    text-align: center;
}
.siguenos h3{
    margin-top: 20px;
    color: rgb(9, 35, 91);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    padding-bottom: 10px;
    font-size: 30px;
}
.fa-youtube{
    color: red;
    font-size: 40px;
}
.fa-facebook{
    color: blue;
    font-size: 40px;
}
/*FORMULARIO*/
form{
    margin-left: 50px;
    flex: 50%;
    background: transparent;
    animation: appear-left 1s linear;
}
form h2{
    padding-top: 30px;
    color: rgb(9, 35, 91);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    padding-bottom: 25px;
    font-size: 35px;
    text-align: center;
}
.form-input{
    padding-bottom: 20px;
    
}
.form-input label{
    color: #373c46;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 15px;
}
.form-input input, textarea{
    margin-top: 5px;
    width: 100%;
    height: 50px;
    background: rgb(240, 240, 235);
    font-size: 15px;
    border-radius: 5px;
    border: 1px solid rgb(239, 238, 238);
    padding: 10px;
}
.form-input input:focus{
    border: 0.5px solid rgb(242, 240, 240);
    outline: 1px solid rgb(242, 240, 240);
    background: transparent;
}
textarea{
    height: 200px;
    resize: none;
}
.button{
    margin-top: 20px;
    text-align: center;
}   
.button input{
    height: 50px;
    width: 30%;
    font-size: 20px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    border: none;
    background-color: rgb(9, 35, 91);
    color: white;
    border-radius: 100px;
    margin-bottom: 40px;
}
.button input:hover{
    background-color: black;
    color: white;
    border-radius: 100px;
    cursor: pointer;
}

/*Responsive 700px*/
@media (max-width: 700px){
    .container{
        background-color: rgba(213, 221, 225, 0.348);
    }
    .container-contacto{
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 0%;
    width: 100%;
    
}
.container-contacto img{
    margin-right: 0;
    margin: auto;
    animation: appear 1s linear;
}
.detalles-contacto{
    width: 90%;
    animation: appear 1s linear;
}
.detalles-contacto h2{
    font-size: 25px;
    text-align: center;
}
.detalles-contacto p{
    font-size: 18px;
    text-align: 0;
}
.fa-brands {
    font-size: 30px;
}   
form{
    flex: 0;
    margin-left: 0;
    margin: auto;
    width: 90%;
}
form h2{
    font-size: 25px;
}
.button{
    margin-top: 20px;
    text-align: center;
} 
.button input{
    height: 50px;
    width: 120px;
    font-size: 20px;
}
}