.title h2 {
  margin-bottom: 20px;
}

* {
  font-family: "Roboto", sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: #323330;
}

input {
  background: transparent;
  border-radius: 0;
  border-left: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 2px solid white;
  font-size: 16px;
  outline: none;
  margin-bottom: 20px;
  padding: 0px 10px;
  height: 50px;
  margin-left: 10px;
  color: white;
}
input input::placeholder {
  color: white;
  opacity: 0.5;
}

button {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 25px;
  color: white;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  height: 50px;
  letter-spacing: 1px;
  margin: 0px 10px;
  width: 150px;
}

button:hover {
  border: 2px solid white;
}

.header {
  width: 100%;
  height: 110px;
  background-color: #323330;
  color: #f0db4f;
  font-size: 18px;
  display: flex;
  align-items: center;
}
.header .header__title {
  flex: 1.2;
  display: flex;
  align-items: center;
  margin: 20px;
  margin-right: 30px;
  margin-left: calc(108px - 20px);
}
.header .header__title h1 {
  cursor: pointer;
}
.header .header__menu {
  flex: 1;
  font-size: 16px;
}
.header .header__menu nav {
  display: inline;
}
.header .header__menu nav ul {
  display: flex;
  align-items: center;
  margin-right: 20px;
  justify-content: space-evenly;
}
.header .header__menu nav ul li {
  cursor: pointer;
  list-style: none;
  border-top: 1px solid #323330;
  border-right: 1px solid #323330;
  border-left: 1px solid #323330;
}
.header .header__menu nav ul li a {
  height: 50px;
  text-decoration: none;
  color: #f0db4f;
  display: flex;
  align-items: center;
}
.header .header__menu nav ul li a:hover {
  border-bottom: 1px solid #f0db4f;
}
.header .header__menu .header__menu--icon {
  display: none;
}

.formDescuentos {
  width: 100%;
  height: auto;
  background: #323330;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.formDescuentos .formDescuentos__contenedor {
  font-size: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid white;
  border-radius: 40px;
  color: white;
  padding: 60px 68px 40px;
  min-height: 400px;
  min-width: 200px;
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  margin: 20px 0px;
}
.formDescuentos .formDescuentos__contenedor h2 {
  margin-bottom: 15px;
}
.formDescuentos .formDescuentos__contenedor form {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.formDescuentos .formDescuentos__contenedor form section {
  margin: 20px 0px;
}
.formDescuentos .formDescuentos__contenedor label {
  font-size: 19px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.formDescuentos .formDescuentos__contenedor #checkbox {
  margin: 20px;
  width: 20px;
  height: 20px;
}
.formDescuentos .formDescuentos__contenedor #labelResult {
  margin-top: 20px;
}

.footer {
  width: 100%;
  height: 110px;
  background-color: #323330;
  color: #f0db4f;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  letter-spacing: 1px;
}
.footer img {
  margin-right: 15px;
}
.footer .contenedor__footer {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.footer .contenedor__footer p {
  margin-bottom: 0px;
}
.footer .github {
  width: 50px;
  height: 50px;
}
.footer .linkedin {
  width: 50px;
  height: 50px;
}
.footer .gmail {
  width: 50px;
  height: 50px;
}

@media only screen and (max-width: 835px) {
  .header {
    height: 90px;
  }
  .header .header__title {
    font-size: 12px;
  }
  .header .header__title h1 {
    margin-left: 23px;
  }

  .footer {
    height: 90px;
  }
  .footer .contenedor__footer p {
    display: none;
  }
  .footer .github img {
    width: 40px;
    height: 40px;
  }
  .footer .linkedin img {
    width: 40px;
    height: 40px;
  }
  .footer .gmail img {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 704px) {
  .header {
    font-size: 8px;
    width: 100%;
    height: 77px;
  }
  .header .header__title {
    margin-left: 23px;
    width: 80%;
  }
}

/*# sourceMappingURL=style.css.map */
