.contact-content {
  padding-block: 3rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.contact-content .contact-infos {
  max-width: 500px;
  flex: 1;
}
.contact-content .contact-infos h3 {
  font-size: 26px;
  margin-bottom: 0.5rem;
}
.contact-content .contact-infos p {
  line-height: 1.5;
}
.contact-content .contact-infos hr {
  margin-block: 1.2rem;
  height: 1px;
  width: 100%;
  background-color: #d4d4d4;
  border: none;
}
.contact-content .contact-infos .infos-item {
  margin-bottom: 2rem;
  max-width: 380px;
}
.contact-content .contact-infos .infos-item .title {
  margin-bottom: 1.2rem;
  font-weight: 500;
  color: darkgray;
}
.contact-content .contact-infos .infos-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-family: Grandstander, sans-serif;
}
.contact-content .contact-infos .infos-content svg {
  fill: var(--clr-primary);
}
.contact-content .contact-infos .infos-content .contacts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-content .contact-infos .infos-content .contacts .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.contact-content .contact-infos .infos-content .contacts .contact-item div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-content .contact-infos .infos-content .contacts .contact-item a {
  display: flex;
  align-items: center;
  color: inherit;
  gap: 0.5rem;
  width: -moz-max-content;
  width: max-content;
}
.contact-content .contact-infos .infos-content .contacts .contact-item a:hover {
  text-decoration: underline;
  color: var(--clr-primary);
}
.contact-content .contact-form {
  flex: 1;
}
.contact-content .contact-form h3 {
  font-size: 26px;
  margin-bottom: 0.5rem;
}
.contact-content .contact-form p {
  margin-bottom: 2rem;
}
.contact-content .contact-form .info {
  font-size: 14px;
  font-family: var(--font-secondary);
}
.contact-content .contact-form .info span {
  color: var(--clr-red);
  font-weight: 500;
}
.contact-content .contact-form button {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .contact-content {
    padding-block: 5rem;
    flex-direction: row;
    align-items: center;
  }
  .contact-content .contact-infos h3 {
    font-size: 28px;
  }
  .contact-content .contact-form {
    padding: 3rem;
    background-color: var(--clr-gray);
    border-radius: 24px;
    background-image: url("/assets/images/shape-form.png");
    background-size: cover;
    background-repeat: no-repeat;
  }
  .contact-content .contact-form h3 {
    font-size: 28px;
  }
}/*# sourceMappingURL=contact.css.map */