
body {
  background: #1E1E1E;
}

footer {
  display: none;
}

.contact {
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  max-width: 420px;
  margin: 60px auto 0 auto;
  margin-bottom: -20px;
  padding-bottom: 120px;
}

form.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 0 20px 0;
  max-width: 420px;
  width: 100%;
  margin-right: 80px;
}

form.contact-form input[type="submit"] {
  width: 100%;
  background: #0CD459;
  border: none;
  border-radius: 23px;
  height: 45px;
  margin-top: 10px;
  color: white;
  font-weight: bold;
}


form.contact-form input[type="text"]::placeholder,
form.contact-form input[type="email"]::placeholder {
  color: white;
  font-weight: 300;
}

form.contact-form input[type="text"],
form.contact-form input[type="email"] {
  width: 100%;
  background: none;
  color: white;
  padding: 18px 0 18px 0;
  font-size: 18px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

form.contact-form input[type="text"]:not(:first-child) {
  margin-top: 20px;
}

form.contact-form label {
  font-size: 18px;
  font-weight: 300;
  margin: 40px 0 20px 0;
  display: block;
}

form.contact-form textarea {
  background: none;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: white;
  font-weight: 300;
  font-size: 18px;
  padding: 20px;
  font-family: "Roboto", "Lucida Grande", "DejaVu Sans", "Bitstream Vera Sans", Verdana, Arial, sans-serif;
}

.info {
  flex: 1;
  margin-right: 60px;
  margin-top: 60px;
  margin-bottom: 60px;
}

.info p {
  font-size: 30px;
  font-weight: 300;
  line-height: 1.33;
}

.info dl {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  width: 230px;
  font-size: 18px;
  line-height: 1.8;
}

.info dt {
  width: 80px;
  font-weight: 700;
  text-transform: uppercase;
}


.info dd {
  width: calc(100% - 80px);
  font-weight: 300;
}

.info a {
  text-decoration: none;
  color: white;
}

.info a:hover {
  text-decoration: none;
  color: #0CD459;
}

.info .footer-social {
  margin-top: 40px;
  margin-left: -10px;
}

form.newsletter {
  flex: 1;
  padding: 40px 40px;
  order: initial;
}

@media (max-width: 420px) {
  .contact {
    border-bottom: 20px solid #0CD459;
    padding: 0;
    margin-top: 20px;
  }

  form.contact-form, .info {
    padding: 0 20px;
  }

  .info .footer-social {
    display: none;
  }

  .footer-social.alt {
    margin: 40px 0;
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
  }

  form.newsletter {
    width: 100%;
    padding: 40px 25px;
  }
}

@media (min-width: 420px) {
  .footer-social.alt {
    display: none;
  }
}

@media (min-width: 1000px) {
  body {
    border-bottom: 20px solid #0CD459;
    margin-bottom: -20px;
  }

  .contact {
    flex-direction: row;
    max-width: 1200px;
    border: none;
  }

  form.contact-form {
    width: 420px;
  }

  form.contact-form input[type="submit"] {
    width: 110px;
    align-self: flex-end;
  }

  .info {
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media (max-width: 999px) {
  .page-contact form.contact-form input[type="submit"], .page-contact form.newsletter input[type="submit"] {
    border: 2px solid #0CD459;
    background: #262626;
    color: #0CD459;
    transition: background 0.3s, color 0.3s;
    text-transform: uppercase;
    border-radius: 2em;
  }

  .page-contact form.newsletter input[type="submit"] {
    background: #383838;
  }

  .page-contact form.contact-form input[type="submit"]:hover, .page-contact form.newsletter input[type="submit"]:hover {
    background: #0CD459;
    color: white;
    cursor: pointer;
  }
}

