@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background: #FFFFFF;
}

img {
  display: block;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

fieldset {
  border: none;
}

.contact-form {
  background: #FFFFFF;
  padding: 80px 0px;
}

.contact-form__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.contact-form__inner[hidden] {
  display: none;
}
.contact-form__inner form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-form__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.text-kicker {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  color: #6B6B00;
}

.text-title {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.4px;
  color: #05171D;
}

.text-lede {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #555F62;
  max-width: 620px;
}

.error-summary {
  background: #FDF2F3;
  border: 1px solid #B01126;
  border-radius: 2px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #B01126;
}
.error-summary[hidden] {
  display: none;
}
.error-summary__heading {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
}
.error-summary__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.error-summary__list li {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
}
.error-summary__list li::before {
  content: "•  ";
}

.topic-chooser {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.topic-chooser__legend-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.topic-chooser__title {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  color: #05171D;
}
.topic-chooser__hint {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.55;
  color: #555F62;
}

.topic-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.chip {
  flex: 1 1 0;
  min-width: 130px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 18px 12px 12px;
  border: 1px solid #8A9295;
  border-radius: 2px;
  background: #FFFFFF;
  cursor: pointer;
  transition: border-color 0.12s, background 0.12s;
}
.chip input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.chip__radio {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
}
.chip__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1 0 0;
  min-width: 0;
}
.chip__label {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
  color: #05171D;
}
.chip__desc {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
  color: #555F62;
}
.chip.is-selected {
  background: #B3B212;
  border-color: #6B6B00;
}
.chip.is-selected .chip__label,
.chip.is-selected .chip__desc {
  color: #05171D;
}
.chip:hover:not(.is-selected) {
  border-color: #05171D;
}
.chip.is-error {
  border-color: #B01126;
}

.form-body {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.form-fields {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.field-row {
  display: flex;
  gap: 24px;
}
.field-row > .field {
  flex: 1 0 0;
  min-width: 0;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field__label {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
  color: #05171D;
}
.field__input, .field__textarea {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #8A9295;
  border-radius: 2px;
  padding: 12px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #05171D;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.field__input::-moz-placeholder, .field__textarea::-moz-placeholder {
  color: #555F62;
}
.field__input::placeholder, .field__textarea::placeholder {
  color: #555F62;
}
.field__input:focus, .field__textarea:focus {
  border-color: #05171D;
}
.field__input.is-error, .field__textarea.is-error {
  border-color: #B01126;
}
.field__textarea {
  resize: vertical;
  min-height: 144px;
}
.field__select-wrap {
  position: relative;
}
.field__select {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #8A9295;
  border-radius: 2px;
  padding: 12px 36px 12px 12px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #05171D;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.field__select:focus {
  border-color: #05171D;
}
.field__select.is-error {
  border-color: #B01126;
}
.field__select option[value=""] {
  color: #555F62;
}
.field__chevron {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  width: 12px;
  height: 8px;
}
.field__error {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.55;
  color: #B01126;
}
.field__error[hidden] {
  display: none;
}
.field__hint {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.55;
  color: #555F62;
  max-width: 460px;
}

.phone-input {
  display: flex;
  border: 1px solid #8A9295;
  border-radius: 2px;
  background: #FFFFFF;
  max-width: 416px;
  overflow: hidden;
}
.phone-input.is-error {
  border-color: #B01126;
}
.phone-input__dial {
  position: relative;
  width: 120px;
  flex-shrink: 0;
  border-right: 1px solid #E1E4E6;
}
.phone-input__dial-select {
  width: 100%;
  height: 100%;
  padding: 12px 28px 12px 12px;
  border: none;
  background: transparent;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #05171D;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  outline: none;
}
.phone-input__dial-select option[value=""] {
  color: #555F62;
}
.phone-input__chevron {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  width: 12px;
  height: 8px;
}
.phone-input__number {
  flex: 1 0 0;
  padding: 12px;
  border: none;
  background: transparent;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #05171D;
  outline: none;
}
.phone-input__number::-moz-placeholder {
  color: #555F62;
}
.phone-input__number::placeholder {
  color: #555F62;
}

.consent {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 8px;
}
.consent__row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
}
.consent__checkbox-wrap {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
}
.consent__checkbox {
  position: absolute;
  inset: 0;
  opacity: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 1;
}
.consent__box {
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #8A9295;
  border-radius: 2px;
  background: #FFFFFF;
  transition: background 0.12s, border-color 0.12s;
  position: relative;
}
.consent__box img {
  position: absolute;
  left: 4px;
  top: 5px;
  width: 12px;
  height: 9.4px;
  opacity: 0;
  transition: opacity 0.1s;
}
.consent__checkbox:checked + .consent__box {
  background: #6B6B00;
  border-color: #6B6B00;
}
.consent__checkbox:checked + .consent__box img {
  opacity: 1;
}
.consent__checkbox.is-error + .consent__box {
  border-color: #B01126;
}
.consent__text {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.55;
  color: #555F62;
  flex: 1 0 0;
  min-width: 0;
}

.form-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-top: 8px;
}
.form-actions__note {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.55;
  color: #555F62;
}

.btn-primary {
  background: #B3B212;
  border: 1px solid #6B6B00;
  border-radius: 2px;
  padding: 16px 32px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.84px;
  text-transform: uppercase;
  color: #05171D;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.12s;
  flex-shrink: 0;
}
.btn-primary:hover {
  opacity: 0.85;
}
.btn-primary:active {
  opacity: 0.7;
}
.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.routing-panel {
  background: #F7F7E8;
  border: 1px solid #E1E4E6;
  border-radius: 2px;
  padding: 24px;
  width: 400px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.routing-panel__label {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #555F62;
}
.routing-panel__dept {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
  color: #05171D;
}
.routing-panel__dept.is-empty {
  font-weight: 400;
  color: #555F62;
}
.routing-panel__email {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
  color: #6B6B00;
}
.routing-panel__email[hidden] {
  display: none;
}
.routing-panel__divider {
  border: none;
  border-top: 1px solid #E1E4E6;
  margin: 0;
}
.routing-panel__divider[hidden] {
  display: none;
}
.routing-panel__include-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.routing-panel__include-wrap[hidden] {
  display: none;
}
.routing-panel__include-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.routing-panel__include-list li {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.55;
  color: #05171D;
}
.routing-panel__include-list li::before {
  content: "•  ";
}
.routing-panel__hint, .routing-panel__call {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.55;
  color: #555F62;
}

.confirmation {
  background: #F7F7E8;
  border: 1px solid #6B6B00;
  border-radius: 2px;
  padding: 40px;
  max-width: 704px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.confirmation[hidden] {
  display: none;
}
.confirmation__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.confirmation__title {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 26px;
  line-height: 1.25;
  color: #05171D;
}
.confirmation__body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #05171D;
}
.confirmation__body strong {
  font-weight: 700;
}
.confirmation__body .email-link {
  color: #6B6B00;
  text-decoration: none;
}
.confirmation__divider {
  border: none;
  border-top: 1px solid #6B6B00;
  margin: 0;
}
.confirmation__urgent {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.55;
  color: #555F62;
}

@media (max-width: 1100px) {
  .contact-form {
    padding: 60px 48px;
  }
  .routing-panel {
    width: 320px;
  }
}
@media (max-width: 900px) {
  .contact-form {
    padding: 48px 0;
  }
  .text-title {
    font-size: 32px;
  }
  .form-body {
    flex-direction: column;
  }
  .routing-panel {
    width: 100%;
  }
  .confirmation {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .contact-form {
    padding: 32px 0;
  }
  .text-title {
    font-size: 26px;
  }
  .field-row {
    flex-direction: column;
  }
  .topic-chips {
    flex-wrap: wrap;
  }
  .topic-chips .chip {
    flex: 1 1 calc(50% - 6px);
    min-width: 0;
  }
  .phone-input {
    max-width: 100%;
  }
  .form-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}/*# sourceMappingURL=style.css.map */