@import url(https://fonts.googleapis.com/css?family=Open+Sans);
@import url(menu.css);
@import url(portada.css);
@import url(pie.css);
@import url(contenido.css);
@import url(efecto.css);

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

body {
    font-family: 'Open Sans', sans-serif;
}
header {
    width: 100%;
    height: 75px;
    background: #5B81AC;
    color: rgb(248, 250, 252);
    
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}
.contenedor {
    width: 95%;
    margin: auto;
}
h1 {
    float: left;
    text-align: center;
    font-size: 30px;
    line-height: 75px;
    font-family: "ADOBE-arabic";
	
}
h5{
    font-size: 30px;
    text-align: center;
    color: rgba(52, 53, 54, 0.644);
    font-family: "Arial black"; 
}
header .contenedor {
    display: table;
}

h2{
    font-family: 'Yanone Kaffeesatz', sans-serif;
    letter-spacing: 1.5px;
  }
.section__titulo {
    text-align: center;
    font-size: 40px;
    color: #0B3861;
}
#contacto{
      margin-top: 30px;
      margin-bottom: 30px;
}
.contacto{
      width: 800px;
      margin: auto;
}
  
#contacto article{
      border-radius: 5px;
      border-right: 2px solid #fc9632;
      border-bottom: 2px solid #fc9632;
      border-top: 2px solid #fc9632;
      border-left: 2px solid #fc9632;
      padding-bottom: 30px;
      padding-top:30px;
}
  /* label focus color */
.input-field input[type=text]:focus + label {
      color: #fc9632;
}
  /* label underline focus color */
.input-field input[type=text]:focus {
      border-bottom: 1px solid #fc9632;
      box-shadow: 0 1px 0 0 #fc9632;
}
  
.input-field input[type=email]:focus {
      border-bottom: 1px solid #fc9632;
      box-shadow: 0 1px 0 0 #fc9632;
}
form{
      width:450px;
      margin: auto;
      background: rgba(0, 0,0,0.1);
      padding: 10px 20px;
      box-sizing: border-box;
      margin-top: 20px;
      border-radius: 7px;
}
h6{
      color: #0B3861;
      text-align: center;
      margin: 0;
      font-size: 30px;
      margin-bottom: 20px;
}
input,textarea {
      width: 100%;
      margin-bottom: 20px;
      padding: 7px;
      box-sizing: border-box;
      border: none;
}
textarea{
      min-height: 100px;
      max-height: 200px;
      max-width: 100%;
}
#boton{
      background: #0B3861;
      color: #fff;
      padding: 20px;
      font-size: 20px;
}
#boton:hover{
      cursor:pointer; 
}