@charset "UTF-8";
.contact-form {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
.contact-form .form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  align-self: stretch;
  padding: 0;
  margin: 0;
  border: none;
}
.contact-form .form-group--double {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  align-self: stretch;
}
@media (min-width: 992px) {
  .contact-form .form-group--double {
    flex-direction: row;
  }
}
.contact-form .form-group label {
  color: #344054;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.contact-form .form-group legend {
  color: #344054;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 10px;
}
.contact-form .form-group .form-field {
  width: 100%;
}
.contact-form .form-group input {
  width: 100%;
  display: flex;
  padding: 12px 16px;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border-radius: 8px;
  border: 1px solid #D0D5DD;
  background: #FFF;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
  color: rgba(157, 157, 157, 0.5);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  opacity: 1;
}
.contact-form .form-group textarea {
  height: 60px;
  border-radius: 8px;
  border: 1px solid #D0D5DD;
  background: #FFF;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
.contact-form .form-group [type=submit]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.contact-form .checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.contact-form .checkbox-group label {
  display: flex;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  padding: 5px 0;
}
.contact-form .checkbox-group input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  display: inline-block;
  width: 20px;
  height: 20px;
  box-shadow: none;
  border-radius: 6px;
  border: 1px solid #D0D5DD;
  background: #FFF;
  margin: 0;
  padding: 0;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}
.contact-form .checkbox-group input[type=checkbox]:checked {
  border: 1px solid #EF7F17;
}
.contact-form .checkbox-group input[type=checkbox]:checked::after {
  content: "✓";
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  font-weight: bold;
}
.contact-form .checkbox-group .sponsor-name {
  max-height: 25px;
  max-width: 142px;
}
.contact-form .form-alert {
  background-color: #fff;
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 5px;
  text-align: center;
  box-shadow: 7px 7px 15px -2px rgba(0, 0, 0, 0.15);
}
.contact-form .form-alert--success {
  color: green;
  border: 2px solid green;
}
.contact-form .form-alert--error {
  color: red;
  border: 2px solid red;
}
.contact-form .bloctel {
  color: #404040;
  font-size: 10px;
  font-weight: 400;
  line-height: 12px;
}
.contact-form .bloctel a {
  color: #404040;
  cursor: pointer;
}

.form-section {
  width: 100%;
  padding: 25px 25px 25px 25px;
  display: inline-flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 25px;
}
@media (min-width: 992px) {
  .form-section {
    flex-direction: row;
    align-items: flex-start;
    align-items: stretch;
  }
}
.form-section__map {
  width: 100%;
  height: 200px;
}
@media (min-width: 992px) {
  .form-section__map {
    height: auto;
    flex: 1;
  }
}
.form-section__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.form-section__form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
@media (min-width: 992px) {
  .form-section__form {
    flex: 1;
    max-height: 80vh;
    overflow: auto;
  }
}
.form-section__form__title {
  color: #000;
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.52px;
}
@media (min-width: 992px) {
  .form-section__form__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: -0.72px;
  }
}
.form-section__form__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-section__form__text p, .form-section__form__text a {
  color: #344054;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

/*# sourceMappingURL=style.css.map */
