*{
  box-sizing: border-box;
  font-family: Century Gothic;
}

/** Globales **/
.contenedor{
  width: 98%;
  margin: 0 auto;
}
@media only screen and (min-width: 480px) {
  .contenedor{
    width: 95%;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 768px) {
  .contenedor{
    width: 90%;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 992px) {
  .contenedor{
    width: 90%;
    max-width: 1100px;
  }
}
h2{
  font-family: Century Gothic;
  font-size: 2.4em;
  text-transform: uppercase;
  text-align: center;
}
h2::after{
  content: '';
  margin: 0 auto;
  background-image: url(../img/separador.png);
  height: 30px;
  width: 100px;
  display: block;
}
h3{
  font-size: 1.8em;
  color: #fe4918;
  margin: 0;
  padding: 1em;
}
/** BOTON CERRAR **/
div.cerrar{
  position: absolute;
  top: 20%;
  left: 70%;
}
div.cerrar a{
  font-size: 1em;
  font-weight: bold;
  color: #fe4918;
  text-decoration: none;
}
div.cerrar a i{
  font-size: 3em;
  color: #fe4918;
}
/** formulario **/
.formularios{
  font-family: Century Gothic;
  max-width: 100%;
  background-color: #222222;
  color: #ffffff;
  border-radius: 10px;
  padding: 1em;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
}
.contact-form form button,
.contact-form form input{
  width: 100%;
  margin: auto;
  padding: 1.5em;
  border: none;
  background: none;
  outline: none;
  color: #ffffff;
  border-bottom: 1px solid #d63031;
}
div.checkbox{
  display: flex;
  width: 50%;
}
.checkbox input[type="checkbox"]{
  cursor: pointer;
}
.contact-form form select{
  font-weight: bold;
  margin-left: 1em;
  border-radius: 5px;
  cursor: pointer;
}
.contact-form form input[type="date"]{
  width: 40%;
  color: #ffffff;
}
.contact-form form input[type="date"]:hover{
  cursor: pointer;
}
.contact-form form button{
  background: #b70e21;
  font-weight: bold;
  border: 0;
  border-radius: 5px;
}
.contact-form form button:hover{
  background: #6F0514;
  color: #ffffff;
  transition: all .5s ease-in-out;
}
.publicidad{
  display: flex;
  flex-wrap: wrap;
  vertical-align: middle;
}
/** Footer **/
footer{
  background-color: #353535;
  padding-top: 40px;
  margin-top: 20px;
}
footer .contenedor > div{
  color: #ffffff;
  padding: 0px 20px;
  font-size: 12px;
}
@media only screen and (min-width:768px) {
  footer .contenedor > div{
    width: 33.3%;
    float: left;
  }
}
footer h3{
  color: #ffffff;
  transform: uppercase;
  margin-bottom: 20px;
}
footer h3 span{
  color: #fe4918;
}
footer nav.redes-sociales{
  text-align: left;
}
p.copyright{
  background-color: #2e2e2e;
  color: #ffffff;
  padding: 10px 0;
  margin: 0;
  text-align: center;
}
