.title-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3rem 0 1rem;
}
.title-section > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 30px);
  color: var(--black);
}
.title-section > div > h1 {
  font-size: 1.6rem;
}
.title-section > div > * {
  width: calc(50% - 50px);
  color: var(--black);
}
.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-section > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: calc(100% - 30px);
}
.contact-section > div > div {
  width: calc(50% - 50px);
  color: var(--black);
}
.contact-section > div > div:first-of-type {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.contact-section > div > div:first-of-type > img {
  width: 100%;
  max-width: 463px;
  object-fit: contain;
  object-position: right center;
}
.contact-section > div > div:nth-of-type(2) {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-section > div > div:nth-of-type(2) > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-section > div > div:nth-of-type(2) > div > span {
  color: var(--gray-3);
  font-size: 0.8rem;
}
.contact-section > div > div > form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.contact-section > div > div > form > label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.contact-section > div > div > form > label > span {
  color: var(--gray-3);
  font-size: 0.7rem;
}
.contact-section > div > div > form > label > input,
.contact-section > div > div > form > label > textarea {
  width: 100%;
  background-color: var(--white);
  padding: 0.5rem;
  color: var(--black);
  border: 1px solid var(--border-1);
  border-radius: 0.3rem;
  resize: vertical;
}
.contact-section > div > div > form > button {
  width: 70%;
  min-width: 180px;
  background-color: var(--black);
  border: none;
  border-radius: 1.5rem;
  color: var(--white);
  padding: 0.8rem 0;
  margin-top: 1rem;
}
@media screen and (width > 1600px) {
  .title-section > div,
  .contact-section > div {
    max-width: var(--main-max-width);
  }
}
@media screen and (width <= 1600px) {
  .title-section > div,
  .contact-section > div {
    max-width: var(--main-width);
  }
}
@media screen and (width <= 767px) {
  .title-section {
    margin: 1.5rem 0 0.3rem;
  }
  .title-section > div {
    flex-direction: column;
  }
  .title-section > div > * {
    width: 100% !important;
    text-align: center;
  }
  .title-section > div > h1 {
    font-size: 1.2rem;
  }
  .contact-section > div {
    flex-direction: column;
  }
  .contact-section > div > div {
    width: 100% !important;
  }
  .contact-section > div > div:first-of-type {
    margin: 1rem 0;
  }
  .contact-section > div > div:first-of-type > img {
    width: 70%;
  }
  .contact-section > div > div:first-of-type {
    justify-content: center;
  }
  .contact-section > div > div > form > button {
    width: 100%;
  }
}
