@import url('https://fonts.googleapis.com/css?family=Yantramanav:100,300');

/* ---------------- */
/* Estilos Globales */
/* ---------------- */

* {
  box-sizing: border-box;
}

body {
  background-image: linear-gradient(to top, rgba(6, 5, 53, .3) 0%, rgba(242, 246, 6, .2) 100%),url('../../img/fondoFinal.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: #fff;
  line-height: 0.8;
  font-family: 'Yantramanav', sans-serif;
  padding: 1em;
}

.container {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding: 1em;
}

ul {
  list-style: none;
  padding: 0;
}

.brand {
  text-align: center;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.brand span {
  color: #ffffff;
  text-shadow: 2px 2px 2px #000;
}

.wrapper {
  box-shadow: 0 0 20px 0 rgba(57, 82, 163, 0.7);
}

.wrapper > * {
  padding: 1em;
}

/* ------------------- */
/* COMPANY INFORMATION */
/* ------------------- */

.company-info {
  background: rgba(6, 5, 53, .7);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  font-size: 1em;
  font-weight: bold;
}

.company-info h3,
.company-info ul {
  text-align: center;
  margin: 0 0 1rem 0;
}

/* ------- */
/* CONTACT */
/* ------- */

.contact {
  background: rgba(242, 246, 6, .5);
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  color: rgba(6, 5, 53, 1);
}

/* ---- */
/* FORM */
/* ---- */

.contact form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

.contact form label {
  display: block;
}

.contact form p {
  margin: 0;
}

.contact form .full {
  grid-column: 1 / 3;
}

.contact form button,
.contact form input,
.contact form textarea {
  width: 100%;
  padding: 1em;
  background: rgba(6, 5, 53, .4);
  border: solid 1px ;
  border-radius: 4px;
}

.contact form textarea {
  resize: none;
}

.contact form button {
  /*background: #627EDC;*/
  background: rgb(6,5,53);
  background: linear-gradient(90deg, rgba(6,5,53,1) 26%, rgba(242,246,6,1) 100%);
  border: 0;
  color: #e4e4e4;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
}

.contact form button:hover,
.contact form button:focus {
  /*background: #3952a3;*/
  background: rgb(6,5,53);
  background: linear-gradient(90deg, rgba(242,246,6,1) 26%, rgba(6,5,53,1) 100%);
  color: #ffffff;
  outline: 0;
  transition: background-color 2s ease-out;
}

/* ------------- */
/* MEDIA QUERIES */
/* ------------- */

@media only screen and (min-width: 700px) {
  .wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
  }

  .wrapper > * {
    padding: 2em;
  }

  .company-info {
    border-radius: 4px 0 0 4px;
  }

  .contact {
    border-radius: 0 4px 4px 0;
  }

  .company-info h3,
  .company-info ul,
  .brand {
    text-align: left;
  }
}