.contact-form--section {
  position: relative;
  padding: var(--spacing-large) 0;
  background: var(--background-color);
}
.contact-form--section .section--wrapper {
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 1280px) {
  .contact-form--section .section--wrapper {
    flex-direction: column;
    align-items: center;
  }
  .contact-form--section .section--wrapper .form--container .form--paragraph {
    margin-bottom: 35px;
  }
  .contact-form--section .section--wrapper .form--container .form--paragraph p {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .contact-form--section .section--wrapper {
    gap: 25px;
  }
  .contact-form--section .section--wrapper .form--container .form--paragraph p {
    font-size: 16px;
  }
}
.contact-form--section .heading__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
  z-index: 1;
  position: relative;
}
.contact-form--section .heading__container .heading, .contact-form--section .heading__container .heading p {
  margin-bottom: 25px;
  font-size: 62px;
  line-height: 0.9;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
}
.contact-form--section .heading__container .paragraph, .contact-form--section .heading__container .paragraph p {
  color: var(--white, #FFF);
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 24px */
}
@media screen and (max-width: 1280px) {
  .contact-form--section .heading__container {
    text-align: center;
    align-items: center;
  }
  .contact-form--section .heading__container .heading, .contact-form--section .heading__container .heading p {
    font-size: 42px;
  }
  .contact-form--section .heading__container .paragraph, .contact-form--section .heading__container .paragraph p {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .contact-form--section .heading__container {
    gap: 20px;
  }
  .contact-form--section .heading__container .heading, .contact-form--section .heading__container .heading p {
    font-size: 28px;
  }
  .contact-form--section .heading__container .paragraph, .contact-form--section .heading__container .paragraph p {
    font-size: 16px;
  }
}
.contact-form--section .form--container {
  background: black;
  padding: var(--spacing-small);
  border-radius: 25px;
  max-width: 600px;
  z-index: 1;
  position: relative;
}
.contact-form--section .form--container .form--paragraph {
  margin-bottom: 40px;
}
.contact-form--section .form--container .form--paragraph p {
  color: var(--white, #FFF);
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 24.48px; /* 102% */
  letter-spacing: -0.96px;
}
.contact-form--section .form--container .frm_form_fields .frm_fields_container {
  grid-row-gap: 10px;
}
@media screen and (max-width: 768px) {
  .contact-form--section .form--container .frm_form_fields .frm_fields_container {
    grid-template-columns: 1fr;
  }
}
.contact-form--section .form--container .frm_form_field {
  position: relative;
  margin: 0;
}
.contact-form--section .form--container .frm_form_field .frm_primary_label {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 0;
  transition: top 0.3s ease, left 0.3s ease;
  z-index: 1;
}
.contact-form--section .form--container .frm_form_field .frm_primary_label:focus-visible {
  color: var(--primary-button-background);
}
.contact-form--section .form--container .frm_form_field label {
  color: white;
}
@media screen and (max-width: 768px) {
  .contact-form--section .form--container .frm_form_field label {
    font-size: 10px;
  }
}
.contact-form--section .form--container .frm_form_field .frm_required {
  display: none;
}
.contact-form--section .form--container .frm_form_field .frm_error {
  color: #E41C23;
}
.contact-form--section .form--container .frm_form_field .frm_submit {
  display: flex;
  justify-content: center;
}
.contact-form--section .form--container .frm_form_field .frm_submit .frm_button_submit {
  background: #E41C23;
  color: var(--primary-button-text);
  min-width: 220px;
  font-size: 20px;
  font-weight: 700;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 20px;
  transition: background 0.3s ease, color 0.3s ease;
  margin: auto;
  display: flex;
  padding: 12px 66px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 12px;
  background: var(--uni-red, #E41C23);
  color: white;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contact-form--section .form--container .frm_form_field .frm_submit .frm_button_submit {
    font-size: 14px;
  }
}
.contact-form--section .form--container .frm_form_field .frm_submit .frm_button_submit:hover {
  background: #FFF;
  color: #E41C23;
}
.contact-form--section .form--container .frm_form_field .frm_description {
  text-align: right;
  font-size: 20px;
  color: var(--form-field-text);
  margin-top: 10px;
}
.contact-form--section .form--container .frm_form_field .frm_description:before {
  content: "*";
  color: var(--primary-button-background);
}
.contact-form--section .form--container .frm_form_field:focus-within .frm_primary_label, .contact-form--section .form--container .frm_form_field:has(input:not(:placeholder-shown)) .frm_primary_label, .contact-form--section .form--container .frm_form_field:has(textarea:not(:placeholder-shown)) .frm_primary_label {
  top: -23px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .contact-form--section .form--container .frm_form_field {
    grid-column: 1/span 1 !important;
  }
}
.contact-form--section .form--container .frm_message[role=status] {
  background: var(--white);
  border-radius: 0;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-form--section .form--container .frm_message[role=status] p {
  padding: var(--spacing-large);
  font-size: 20px;
  text-align: center;
  margin: 0;
  border: 1px solid var(--primary-button-background);
  color: var(--black);
}
.contact-form--section .section--decorator {
  position: absolute;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.contact-form--section .section--decorator svg {
  position: absolute;
}
.contact-form--section .section--decorator svg path {
  opacity: 1;
  fill: #CCD0DA;
}
.contact-form--section .section--decorator svg.capabilities_decorator {
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .contact-form--section .section--decorator svg.capabilities_decorator {
    width: 40%;
    height: auto;
  }
}
.contact-form--section .section--decorator svg.logo_decorator {
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .contact-form--section .section--decorator svg.logo_decorator {
    width: 60%;
    height: auto;
  }
}

/*# sourceMappingURL=contact-form.css.map */
