/* Contacto */
.contacto p {
    font-size: 1em;
    font-weight: 200;
  }
  .contacto p span {
    font-size: 1.5em;
    font-weight: 200;
  }
  .contacto {
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .contacto .contactForm {
    position: relative;
    width: 700px;
    margin-top: 20px;
  }
  .contacto .contactForm .row {
    width: 100%;
    display: flex;
  }
  .contacto .contactForm .row .col50 {
    width: 50%;
    margin: 10px;
  }
  .contacto .contactForm .row .col100 {
    width: 100%;
    margin: 10px;
    text-align: center;
  }
  .contacto .contactForm .row input,
  .contacto .contactForm .row textarea  {
    width: 100%;
    padding: 10px;
    border: none;
    outline: none;
    background: #111;
    color: #fff;
    font-size: 16px;
    resize: none;
  }
  .contacto .contactForm .row textarea {
    height: 100px;
  }
  .contacto .contactForm .row input[type="submit"] {
    background: #00bcd4;
    color: #fff;
    padding: 10px 30px;
    display: inline-block;
    font-weight: 500;
    letter-spacing: 2px;
    cursor: pointer;
    max-width: 150px;
  }
  .copyright {
    color: #fff;
    background: #111;
    text-align: center;
    padding: 10px;
  }
  .copyright {
    margin: 0;
    font-size: 1em;
    font-weight: 200;
  }
  /* ----------Responsive -----------*/
@media (max-width: 991px) {
    .contacto .contactForm {
      width: 100%;
    }
    .contactForm .row {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
    }
    .contacto .contactForm .row .col50 {
      width: 100%;
    }
  }