#contact {
  display: flex;
  /* flex-direction: row; */
  justify-content: center;
  align-items: center;
  height: 100%;
  max-height: fit-content;
  padding-bottom: 30;
  margin: 10;
}
.contact-left {
  /* padding-right: 30; */
}
.info-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact-right {
  width: 800px;
  height: 800px;
  padding-left: 100px;
}
#contact-card {
  display: flex;
  flex-direction: row;
  /* z-index: 1000; */
  /* width: fit-content; */
}

.contact-title {
  text-align: center;
  line-height: 1.35em;
  font-size: 45px;
  text-transform: uppercase;
}
#contact-form label {
  /* text-align: left; */
}
.contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.input-field {
  width: 100%;
  border: 0;
  border-bottom: 2px solid grey;
  outline: 0;
  font-size: 1.3rem;
  color: black;
  padding: 7px 0;
  background: transparent;
  transition: border-color 0.2s;
}
.input-field:focus {
  outline: none !important;
  border: 1px solid black;
  /* box-shadow: 0 0 10px #719ece; */
}
/* non landscape phone screen width */
@media (max-width: 560px) {
  #contact {
    padding-bottom: 0;
  }
  .contact-image {
  }
  .contact-title {
    text-align: center;
    line-height: 1.35em;
    font-size: 30px;
    text-transform: uppercase;
  }
  .contact-right {
    display: none;
  }
  .contact-image {
    visibility: hidden;
  }
  .contact-left p {
    font-size: 12px;
    text-align: center;
    /* text-shadow: 1px 0px 0px #000; */
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  #contact {
    flex-direction: column;
    padding-bottom: 0;
  }

  .contact-left {
    width: 100%;
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .contact-right {
    display: inherit;
    width: 100%;
    padding-left: 0;
  }

  /* .contact-image {
    display: inherit;
    height: 50%;
  } */

  #contact-card {
    flex-direction: column;
  }

  #contact-form label {
    text-align: center;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  #contact {
    flex-direction: row;
    padding-bottom: 2rem;
    /* display: flex; */

    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
  }

  .contact-left {
    width: 50%;
    margin-right: 2rem;
    margin-bottom: 0;
  }

  .contact-right {
    width: 50%;
    margin-left: 2rem;
  }

  #contact-card {
    max-height: fit-content;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  form {
  }
}
