.contact {
  height: 750px;
  display: grid;
  grid-template-rows: auto 1fr;
  position: relative;
}
.contact .contact-heading {
  margin-top: 100px;
}
.contact .contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact .contact-content .contact-text {
  width: 30%;
  text-align: center;
  line-height: 1.5;
}
.contact .contact-content .contact-form {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
.contact .contact-content .contact-form .form-field {
  width: 100%;
  height: 40px;
  margin-bottom: 20px;
  background-color: #595959;
  border: none;
  padding-left: 8px;
  opacity: 0.5;
  transition: all 0.3s;
}
.contact .contact-content .contact-form .form-field::placeholder, .contact .contact-content .contact-form .form-field::-webkit-input-placeholder, .contact .contact-content .contact-form .form-field::-moz-placeholder {
  color: #e8e6e6;
  opacity: 1;
}
.contact .contact-content .contact-form .form-field:focus {
  outline: none;
  opacity: 1;
  border: 1px solid #39bde2;
}
.contact .contact-content .contact-form .message-field {
  padding-top: 8px;
  height: 100px;
}
.contact .contact-content .contact-form .field-filled {
  opacity: 1;
}
.contact .contact-content .contact-form .submit-button {
  align-self: flex-end;
}
.contact .contact-blob {
  bottom: 0px;
  left: -350px;
}

.contact-form .form-field::-webkit-input-placeholder {
  color: #e8e6e6;
  opacity: 1;
}

@media (max-width: 1199px) {
  .contact .contact-content .contact-text {
    width: 90%;
  }
  .contact .contact-content .contact-text br {
    display: none;
  }
  .contact .contact-content .contact-form {
    width: 90%;
  }
  .contact .contact-blob {
    width: 500px;
    left: -200px;
  }
}
@media (min-width: 800px) and (max-width: 1199px) {
  .contact .contact-content .contact-text {
    width: 60%;
  }
  .contact .contact-content .contact-form {
    width: 60%;
  }
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .contact .contact-content .contact-text {
    width: 50%;
  }
  .contact .contact-content .contact-form {
    width: 50%;
  }
}
@media (min-width: 1501px) and (max-width: 1799px) {
  .contact .contact-content .contact-text {
    width: 40%;
  }
  .contact .contact-content .contact-form {
    width: 40%;
  }
}