/* Text utility */
/* Mobile utility */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* from... */
/* to... */
/* from... to... */
/* at... */
/* FONT WEIGHTS */
.s-hero-form__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 5rem;
}
.s-hero-form__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.s-hero-form__title {
  margin: 0;
  color: var(--wp--preset--color--txt-black);
  font-size: 3.5rem;
  line-height: 1;
  font-style: normal;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  line-height: 64px;
  /* 114.286% */
  letter-spacing: -1.12px;
}
.s-hero-form__description {
  margin-top: 1.25rem;
  color: var(--wp--preset--color--txt-black);
}
.s-hero-form__description p {
  margin-top: 0;
  margin-bottom: 1em;
  font-size: 1rem;
  line-height: 1.375;
}
.s-hero-form__description p:last-child {
  margin-bottom: 0;
}
.s-hero-form__description p:first-child {
  margin-top: 0;
}
.s-hero-form__description p:last-child {
  margin-bottom: 0;
}
.s-hero-form__form {
  margin-top: 1.5rem;
}
.s-hero-form__empty {
  margin-top: 1.5rem;
  margin-bottom: 0;
  color: var(--wp--preset--color--txt-gray-light);
  font-weight: 400;
}
.s-hero-form__empty {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-hero-form__empty {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-hero-form__empty {
    font-size: 0.875rem;
  }
}
.s-hero-form__media-col {
  display: flex;
  min-width: 0;
}
.s-hero-form__media {
  margin: 0;
  flex: 1 1 auto;
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  background-color: var(--wp--preset--color--bg-gray-light);
}
.s-hero-form__media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.s-hero-form__media-placeholder {
  min-height: 20rem;
  flex: 1 1 auto;
  border: 1px dashed var(--wp--preset--color--txt-gray-light);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wp--preset--color--txt-black);
  background-color: var(--wp--preset--color--bg-gray-light);
  font-weight: 500;
}
.s-hero-form__media-placeholder {
  font-size: 16px;
}
@media screen and (min-width: 569px) {
  .s-hero-form__media-placeholder {
    font-size: calc(16px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-hero-form__media-placeholder {
    font-size: 1rem;
  }
}
@media screen and (max-width: 991px) {
  .s-hero-form__inner {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .s-hero-form__inner {
    grid-template-columns: 1fr;
  }
  .s-hero-form__content, .s-hero-form__media-col {
    width: 100%;
  }
  .s-hero-form__media {
    min-height: 17.5rem;
    height: auto;
    aspect-ratio: 4/3;
  }
}