* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:hover, *:focus, *:active {
  outline: none;
  text-decoration: none;
}
body {
  font-family: 'Oswald', sans-serif !important;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  color: #333333;
  min-height: 100vh;
  padding: 100px 0px;
  margin: 0px;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  background-image: url('img/drumms-1.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.container.descargas {
  width: 500px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  margin: auto;
  background: #fff;
  padding: 50px;
  border-radius: 15px;
}
.logo {
  max-width: 150px;
}
.titulo {
  position: relative;
  width: 100%;
  text-align: center;
  margin: 30px 0px;
}
.titulo:after {
  content: '';
  width: 100%;
  height: 1px;
  background: #333333;
  position: absolute;
  left: 0px;
  top: 27px;
  z-index: 1;
}
h1 {
  display: inline;
  font-weight: 300;
  /*background-color: #fff;*/
  position: relative;
  z-index: 2;
  padding: 0px 15px;
}
.container.descargas h1{
  background-color: #fff;
}
form {
  display: flex;
  flex-direction: column;
  width: 100%;
}
form input {
  max-width: 100%;
  margin-bottom: 10px;
  padding: 8px 15px;
  border-radius: 5px;
}
form button {
  display: inline-block;
  width: auto;
  margin-bottom: 10px;
  border: none;
  background-color: #e5ad20;
  border-radius: 5px;
  color: #000;
  padding: 8px 15px;
  text-transform: uppercase;
  font-weight: 600;
}
p {
  margin: 0px;
  margin-bottom: 15px;
}
header, footer {
  height: 50px;
  background-color: #000000;
  position: fixed;
  left: 0;
  right: 0;
}
header {
  top: 0;
}
header .container, footer .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1310px;
  height: 50px;  
  margin: 0 auto;
  padding: 0 50px;
  border-radius: 0px;
  background: transparent;
}
header .container div, footer .container .div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 50px; 
}
header .container .logo {
  align-items: flex-start;
}
header .container .logo img {
  height: 70px;
}
header .container .menu a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 20px;
}
header .container .menu a:hover {
  text-decoration: underline;
}
footer {
  bottom: 0;
}
footer .container .copy {
  color: #ffffff;
  justify-content: flex-start;
}
footer .container .copy p {
  margin-bottom: 0px;
}
footer .container .copy a {
  color: #ffffff;
  text-decoration: none;
}
footer .container .copy a:hover {
  text-decoration: underline;
}
footer .container .redes {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
footer .container .redes a {
  width: 30px;
  height: 30px;
  background-color: #000000;
  border-radius: 50%;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
footer .container .redes a img {
  height: 20px;
  filter: invert(100%);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
footer .container .redes a:hover {
  background-color: #ffffff;
}

footer .container .redes a:hover img {
  filter: invert(0%);
}