section{
    display: flex;
    margin-bottom: 70px;
}

section .address{
    width: 28%;
    font-family: 'Poppins';
}

section .address .title{
    margin-bottom: 10px;
    margin-top: 10px;
    font-weight: 600;
    font-size: 18px;
    color: #444854;
}

section .address .contenido{
    font-weight: 300;
    color: #444854;
}

section form{
    width: 65%;
    display: flex;
    flex-direction: column;
}

section form .flex{
    width: 100%;
    margin-bottom: 20px;
    justify-content: space-between;
}

section form > input{    
    margin-bottom: 30px;
    height: 40px;
}

section form textarea{
    height: 130px;
    margin-bottom: 30px;
}

section form button{
    background-color: #f68e20 ;
    color: white;
    border: none;
    padding: 10px 0px;
    font-family: 'Poppins';
    font-weight: bold;
}

section form .flex input{
    width: 47%;
    height: 40px;
}

input,textarea{
    outline: none;
    font-size: 15px;
    padding-left: 10px;
    font-family: 'Poppins';
    border: 1px solid lightgrey;
}

textarea{
    padding-top: 10px;
}


@media(max-width:800px){
    section .content{
        flex-direction: column;
    }

    section .address{
        width: 100%;
        text-align: center;
    }
    
    section form{
        width: 100%;
        margin-top: 30px;
    }
    section form >div{
        flex-direction: column;
    }

    section form .flex input{
        margin-top: 10px;
        width: 97%;
    }
}