/* Tipografía y ajustes generales */

/*// <weight>: Use a value from 400 to 800
// <uniquifier>: Use a unique and descriptive class name

Utilizamos esta tipografía principalmente para títulos o aspectos resaltantes

.eb-garamond-<uniquifier> {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

La siguiente tipografía para textos secundarios 

.lato-thin {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}
*/


body {
  margin: 0;
  background-color: #000;
  color: #333;
  font-family: "EB Garamond", serif;
}

header {
  width: 100%;
  height: 600px;
  color: #FFF;
  background-image: url(/img/background-download-grupo-bratila.png);
  background-position: center;
  background-size: cover;
  align-content: center;
}

header p {
  font-size: 5rem;
  text-align: center;
  margin: 0;
    font-family: "Lato", sans-serif;
}

#qr-iden {
  width: 70%;
  height: auto;
  margin-left: 15%;
  color: #FFF;
  font-family: "Lato", sans-serif;
  padding-top: 50px;
  text-align: center;
  padding-bottom: 50px;
  display: table;
}

#qr-iden h3 {
  font-size: 3rem;
  margin: 0;
}

#qr-iden p {
  font-size: 2rem;
}

.art-qr-iden {
  border: #333 solid 1px;
  width: 40%;
  height: auto;
  margin-left: 6.6%;
  float: left;
  padding-bottom: 30px;
}

.art-qr-iden:hover {
  background-color: #FFF;
  color: #333;
  font-weight: 600;
  transform: scale(0.95);
  transition: 0.5s;
  border-radius: 10px;
}

#qr-iden img {
  width: 70%;
  height: auto;
  border-radius: 5px;
}

.p-name-qr {
  font-size: 2rem;
}

.p-qr-phone {
  font-size: 1.5rem;
}

.art-qr-iden button {
  font-size: 1rem;
  padding: 15px 40px 15px 40px;
  border-radius: 5px;
  border: none;
}

.art-qr-iden button:hover {
  background-color: #333;
  color: #FFF;
  transition: .5s;
}

.art-qr-iden button:active {
  background-color: green;
}

@media only screen and (max-width:1000px) {
  #qr-iden {
    width: 85%;
    margin-left: 7.5%;
  }
}

@media only screen and (max-width:800px) {
  #qr-iden {
    width: 90%;
    margin-left: 5%;
  }

  .art-qr-iden {
    width: 45%;
    margin-left: 3%;
  }
}

@media only screen and (max-width:650px) {

  .art-qr-iden {
    width: 80%;
    margin-left: 10%;
    margin-top: 5%;
  }
}

#formularios {
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
  height: auto;
  background-color: #fff;
  color: #000;
}

#formularios h2 {
  font-size: 50px;
  line-height: 50px;
  text-align: center;
  width: 100%;
  margin-left: 0;
}

#formularios h3 {
  font-size: 1.2rem;
  line-height: 25px;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-weight: 300;
}

form {
  width: 50%;
  margin: auto;
  padding: 20px;
  border-radius: 5px;
  font-family: "Lato", sans-serif;
  border: 1px solid #ccc;
}

label {
  font-weight: bold;
}

input,
textarea {
  width: 100%;
  height: 2.5rem;
  padding: 0px;
  margin: 8px 0 20px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#mensaje {
  height: 8rem;
}

#servicio {
  width: 100%;
  height: 2rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  font-family: 'Varela Round', sans-serif;
}

#bt-form {
  background-color: #000;
  color: #FFF;
  padding: 10px 20px;
  border: none;
  font-size: 16px;
  letter-spacing: 2px;
  width: 30%;
  margin-left: 70%;
  height: 60px;
  border-radius: 4px;
  cursor: pointer;
}

#bt-form:hover {
  background-color: #2f2f2f;
  transition: .5s;
}

@media only screen and (max-width:1000px) {

  form {
    width: 70%;
  }
}

@media only screen and (max-width:750px) {

  form {
    width: 80%;
  }
}

@media only screen and (max-width:480px) {
  form {
    text-align: center;
  }

  #bt-form {
    padding: 15px 40px;
    width: auto;
    margin-left: 70%;
    margin-left: 0;
  }
}
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
  header {
    height: 800px;
  }

  header p {
    font-size: 5rem;
    line-height: 5rem;
    text-align: center;
    margin: 0;
    font-family: "Lato", sans-serif;
  }
}