﻿/*
 * Source style matrix, Spies Hecker contact.html
 * (body.theme_color15, axbase, live Computed + source screenshots):
 * Body text: #1e1e1e 15px/22px Arial/Helvetica, normal case, mb15 per paragraph.
 * H1 headlineContent: #ff0000 30px/39px Arial 400 center.
 * H2 headlineContent lead: #ff0000 20px/26px Arial 400 center.
 * H3 contact headline: #ff0000 20px/26px Arial 400 left (center @max767).
 * Form labels: #ff0000 17px/30px Arial 400 left.
 * Form inputs: #484848 15px/22px, border 2px #868686, radius 3px, bg #fff.
 * Form helper/subtext: #484848 15px/22px.
 * Form legal links: #ff0000 default, underline on hover.
 * Submit CTA: transparent + 2px #ff0000 border, #ff0000 text; hover fill #ff0000 / #fff text.
 * Reset link: #ff0000 default, no underline hover.
 * Breadcrumb: #868686 14px/20px, hover #ff0000.
 * Contact address text: #1e1e1e 15px/22px.
 * MoodImage: full-width ~1600Г—402 strip; theme_color15 gradient overlay.
 * Captcha block: #484848 subtext, placeholder area flat #f7f7f7 / border #d0d0d0.
 * No Wistia/PDF on source page.
 */

.contact-page {
  --contact-red: #ff0000;
  --contact-text: #1e1e1e;
  --contact-muted: #484848;
  --contact-input-border: #868686;
  --contact-breadcrumb: #868686;
  --contact-captcha-bg: #f7f7f7;
  --contact-captcha-border: #d0d0d0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  color: var(--contact-text);
}

.contact-page,
.contact-page *,
.contact-page *::before,
.contact-page *::after {
  box-sizing: border-box;
}

.contact-moodImage {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  line-height: 0;
  background: #eaeaea;
}

.contact-moodImage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(-8deg, rgba(0, 0, 0, 0.45), rgba(255, 0, 0, 0.45));
}

.contact-moodImage picture,
.contact-moodImage img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.contact-moodImage img {
  aspect-ratio: 1600 / 402;
  object-fit: cover;
  object-position: center center;
}

.contact-page > .container {
  padding-top: 0;
}

.contact-breadcrumb {
  margin: 0 0 12px;
  padding: 0 15px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: normal;
  text-transform: none;
  color: var(--contact-breadcrumb);
}

.contact-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.contact-breadcrumb a:hover,
.contact-breadcrumb a:focus-visible {
  color: var(--contact-red);
  text-decoration: none;
}

.contact-breadcrumb a:focus-visible {
  outline: 2px solid rgba(255, 0, 0, 0.35);
  outline-offset: 2px;
}

.contact-breadcrumb-sep {
  display: inline-block;
  margin: 0 0.55em;
}

.contact-breadcrumb-sep::before {
  content: "\2192";
}

.contact-replica {
  padding-bottom: 35px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  color: var(--contact-text);
}

.contact-replica .headlineContent {
  margin: 0;
  padding: 0;
}

.contact-page .contact-replica .component.headline {
  margin: 0 0 30px;
  padding: 0;
  text-align: center;
  background: transparent;
}

.contact-page .contact-replica .component.headline h1#contact-title {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 39px;
  letter-spacing: normal;
  text-transform: none;
  text-align: center;
  color: var(--contact-red);
}

.contact-page .contact-replica .component.headline h2.contact-lead-h2 {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: normal;
  text-transform: none;
  text-align: center;
  color: var(--contact-red);
}

.contact-section-block {
  margin: 0 0 10px;
  padding: 0;
}

.contact-page .contact-replica .component.contact {
  margin: 0 0 30px;
  padding: 0;
}

.contact-page .contact-replica .component.contact .headline {
  margin: 0 0 15px;
  padding: 0;
  text-align: left;
}

.contact-page .contact-replica .component.contact .headline h3.contact-company-h3 {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: normal;
  text-transform: none;
  text-align: left;
  color: var(--contact-red);
}

.contact-page .contact-replica .component.contact .contact-mobile-rule {
  display: none;
  width: 227px;
  max-width: 100%;
  height: 0;
  margin: 10px auto 20px;
  padding: 0;
  border: 0;
  border-top: 2px solid var(--contact-red);
  background: transparent;
}

.contact-page .contact-replica .component.contact .contact-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.contact-page .contact-replica .component.contact .contact-row > .img,
.contact-page .contact-replica .component.contact .contact-row > .text {
  width: 100%;
  padding: 0 15px;
}

@media (min-width: 768px) {
  .contact-page .contact-replica .component.contact .contact-row > .img,
  .contact-page .contact-replica .component.contact .contact-row > .text {
    width: 50%;
  }
}

.contact-page .contact-replica .component.contact .contact-row > .img {
  margin: 0 0 15px;
  line-height: 0;
}

.contact-page .contact-replica .component.contact .contact-row > .img picture,
.contact-page .contact-replica .component.contact .contact-row > .img img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.contact-page .contact-replica .component.contact .contact-row > .img img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
}

.contact-page .contact-replica .component.contact .contact-row > .text p {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: normal;
  text-transform: none;
  color: var(--contact-text);
}

.contact-page .contact-replica .component.form {
  margin: 0;
  padding: 0;
}

.contact-page .contact-replica .component.form .formRow {
  display: flow-root;
  margin: 0;
  padding: 0;
}

.contact-page .contact-replica .component.form .formRow::after {
  content: "";
  display: table;
  clear: both;
}

.contact-page .contact-replica .component.form .input {
  margin: 0 0 10px;
  padding: 0;
}

.contact-page .contact-replica .component.form .input.w50 {
  float: left;
  width: 50%;
  padding-right: 15px;
}

.contact-page .contact-replica .component.form .input.w50:nth-of-type(2n) {
  padding-left: 15px;
  padding-right: 0;
}

.contact-page .contact-replica .component.form .input.w50:nth-of-type(2n+1) {
  clear: both;
}

.contact-page .contact-replica .component.form .input.w100 {
  clear: both;
  width: 100%;
  float: none;
}

.contact-page .contact-replica .component.form label {
  display: block;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: normal;
  text-transform: none;
  text-align: left;
  color: var(--contact-red);
}

.contact-page .contact-replica .component.form .required label::after {
  content: "*";
}

.contact-page .contact-replica .component.form input[type="text"],
.contact-page .contact-replica .component.form input[type="email"],
.contact-page .contact-replica .component.form input[type="tel"],
.contact-page .contact-replica .component.form textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 8px 10px;
  border: 2px solid var(--contact-input-border);
  border-radius: 3px;
  background: #fff;
  box-shadow: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: normal;
  text-transform: none;
  color: var(--contact-muted);
}

.contact-page .contact-replica .component.form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-page .contact-replica .component.form input:focus,
.contact-page .contact-replica .component.form textarea:focus {
  outline: 2px solid rgba(255, 0, 0, 0.25);
  outline-offset: 0;
  border-color: var(--contact-red);
}

.contact-page .contact-replica .component.form .subtext {
  margin: 0 0 5px;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: normal;
  text-transform: none;
  text-align: left;
  color: var(--contact-muted);
}

.contact-page .contact-replica .component.form .form-legal p {
  margin: 0 0 15px;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: normal;
  text-transform: none;
  color: var(--contact-text);
}

.contact-page .contact-replica .component.form .form-legal a {
  color: var(--contact-red);
  text-decoration: none;
}

.contact-page .contact-replica .component.form .form-legal a:hover,
.contact-page .contact-replica .component.form .form-legal a:focus-visible {
  color: var(--contact-red);
  text-decoration: underline;
}

.contact-page .contact-replica .component.form .input.captcha {
  margin: 0 0 10px;
}

.contact-page .contact-replica .component.form .contact-captcha-box {
  min-height: 78px;
  margin: 0;
  padding: 18px 20px;
  border: 1px solid var(--contact-captcha-border);
  border-radius: 3px;
  background: var(--contact-captcha-bg);
  color: var(--contact-muted);
  font-size: 15px;
  line-height: 22px;
}

.contact-page .contact-replica .component.form .actions {
  display: flow-root;
  margin-top: 20px;
}

.contact-page .contact-replica .component.form .actions .resetOptions {
  float: left;
}

.contact-page .contact-replica .component.form .reset-form {
  display: inline-block;
  margin: 0;
  padding: 5px 0 5px 0;
  border: 0;
  background: transparent;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: normal;
  text-transform: none;
  text-decoration: none;
  color: var(--contact-red);
  cursor: pointer;
}

.contact-page .contact-replica .component.form .reset-form:hover,
.contact-page .contact-replica .component.form .reset-form:focus-visible {
  color: var(--contact-red);
  text-decoration: none;
}

.contact-page .contact-replica .component.form .submit-form {
  float: right;
  display: inline-block;
  min-height: 47px;
  margin: 0;
  padding: 10px 31px 11px;
  border: 2px solid var(--contact-red);
  border-radius: 3px;
  background: transparent;
  box-shadow: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: normal;
  text-align: center;
  text-transform: none;
  color: var(--contact-red);
  cursor: pointer;
}

.contact-page .contact-replica .component.form .submit-form:hover,
.contact-page .contact-replica .component.form .submit-form:focus-visible {
  background: var(--contact-red);
  color: #fff;
}

@media (max-width: 767px) {
  .contact-moodImage img {
    aspect-ratio: 16 / 9;
  }

  .contact-page .contact-replica .component.headline h1#contact-title {
    font-size: 30px;
    line-height: 39px;
  }

  .contact-page .contact-replica .component.contact .headline h3.contact-company-h3 {
    text-align: center;
  }

  .contact-page .contact-replica .component.contact .contact-mobile-rule {
    display: block;
  }

  .contact-page .contact-replica .component.contact .contact-row > .img {
    margin-bottom: 40px;
  }

  .contact-page .contact-replica .component.form .input.w50 {
    float: none;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .contact-page .contact-replica .component.form .actions .resetOptions,
  .contact-page .contact-replica .component.form .submit-form {
    float: none;
    width: 100%;
  }

  .contact-page .contact-replica .component.form .submit-form {
    margin-top: 10px;
  }
}
