.join-us-info {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-left: 30px;
  margin-right: 30px;
  color: white;
  font-family: Jost, Arial;
}
.join-us-image-container {
  display: flex;
  width: 40%;
  height: 850px;
  margin-right: 5%;
}
.join-us-image {
  width: 100%;
  object-fit: contain;
}
.join-us-image:hover {
  scale: 1.03;
  transition: scale 0.6s;
}
.join-us-info-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 60px;
  max-width: 500px;
  text-align: left;
  font-size: 1.5rem;
  font-weight: 500;
}
.bold {
  display: flex;
  font-size: 2.5rem;
  font-weight: 500;
}
.bar {
  width: 10px;
  margin-right: 20px;
  background-color: white;
}
@media (max-width: 1400px) {
  .join-us-info-container {
    font-size: 1.2rem;
    max-width: 400px;
  }
  .bold {
    font-size: 2.2rem;
  }
}
@media (max-width: 1200px) {
  .join-us-info-container {
    font-size: clamp(5px, 4vw, 20px);
    max-width: 400px;
    margin-bottom: 40px;

  }
  .bold {
    font-size: clamp(20px, 6vw, 35px);
  }
  .join-us-info {
    flex-direction: column-reverse;
  }
  .join-us-image-container {
    margin-left: auto;
    height: auto;
    max-width: 500px;
    width: 100%;
  }
}

/*contact form*/
.contact-us-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  margin-top: 30px;
  margin-left: 30px;
  margin-right: 30px;
  margin-bottom: 50px;
}
.contact-us-heading {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  align-items: center;

  font-size: 2rem;
  margin-bottom: 60px;
}
.contact-us-heading span:last-child {
  font-family: Jost, "sans-serif";
}
.heading {
  font-family: Jost, "sans-serif";
  font-size: clamp(40px, 3vw + 1rem, 55px);
  font-weight: 700;
}
.form-container {
  display: flex;
  justify-content: center;
}
.info-form {
  font-size: 1rem;
  background-color: white;
  color: black;
  padding: 45px;
  max-height: 600px;
}
.heading-form {
  font-size: 2rem;
  margin-bottom: 20px;
}
.form-container ul {
  display: flex;
  flex-direction: column;
  row-gap: 35px;
  list-style: none;
  margin-top: 70px;

  margin-bottom: 100px;
  font-size: 1rem;
}
.form-container li {
  display: flex;
  column-gap: 25px;
}
.contact-icon {
  width: 20px;
}
.contact-icon img {
  width: 100%;
}
.contact-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 8px;
}

.instagram {
  width: 4cap;
  margin-right: 3px;
}
.linkedin {
  width: 40px;
}
.contact-footer img {
  width: 100%;
}
.join-us-form {
  display: flex;
  align-items: center;
  margin-left: 70px;
  color: white;
  width: 100%;
  max-width: 600px;
}
.join-us-form form {
  display: flex;
  flex: 1;
  flex-direction: column;

  font-size: 1.2rem;
  font-weight: 500;

  width: 100%;
}
.row {
  display: flex;
  column-gap: 40px;
  margin-bottom: 40px;
}
.row div {
  display: flex;
  flex-direction: column;
  width: 100%;
  row-gap: 15px;
}
.row input {
  display: flex;
  background-color: transparent;
  border: none;
  width: 100%;
  font-size: 1.2rem;
  font-weight: 500;
  color: white;
  outline: none;
}
.row textarea {
  display: flex;
  background-color: transparent;
  border: none;
  font-weight: 500;
  font-size: 1.2rem;
  color: white;
  outline: none;
  resize: none;
}
.row input::placeholder {
  font-size: 1rem;
  font-weight: 500;
  color: rgb(199, 196, 196);
}
.line {
  background-color: white;
  height: 1px;
}
.form-submit {
  display: flex;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  padding: 12px;
  margin-left: auto;
  margin-top: 25px;
  border: 2px solid white;
  cursor: pointer;
}
.form-submit:hover {
  background-color: transparent;
  color: white;
}
.thank-you-message {
  display: none;
  align-items: center;
  font-size: 1.2rem;
  margin-left: 70px;
}
.thank-you-message div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 3px solid white;
  padding-left: 20px;
  padding-right: 20px;
  height: 200px;
}
.thank-you-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.error {
  display: none;
  font-size: 0.8rem;
  color: red;
}
@media (max-width: 1100px) {
  .form-container {
    flex-direction: column;
    align-items: center;
    row-gap: 100px;
  }
  .join-us-form {
    margin: auto;
  }
  .thank-you-message {
    margin: auto;
  }
}
@media (max-width: 570px) {
  .join-us-form form,
  .row input,
  .row textarea {
    font-size: 1rem;
  }
}
