/** Shopify CDN: Minification failed

Line 49:0 Unexpected "}"

**/
/* Reduce internal top padding for floating form inner content on desktop */
@media screen and (min-width: 750px) {
  .contact-form-floating-inner {
    padding-top: 0.25rem !important;
  }
}
/* Banner background and floating form container styles */

.contact-form-banner-wrapper {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 320px;
  background: transparent;
}
.contact-form-banner-wrapper.has-banner .contact-form-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  /* Add relative positioning for pseudo-element overlay */
  pointer-events: none;
}

.contact-form-banner-wrapper.has-banner .contact-form-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  opacity: var(--banner-opacity, 0.5);
  z-index: 1;
  pointer-events: none;
}
}
.contact-form-floating-container {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  padding: 1.5rem 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  top: 32px;
  margin-bottom: 32px;
}
@media screen and (min-width: 750px) {
  .contact-form-floating-container {
    padding: 2.5rem 2rem;
    top: 48px;
    margin-bottom: 48px;
  }
  .contact-form-banner-wrapper {
    min-height: 400px;
  }
}
.contact img {
  max-width: 100%;
}

.contact-form__container {
  /* No background color, inherit from parent */
}

.contact-form__columns {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media screen and (min-width: 750px) {
  .contact-form__columns {
    flex-direction: row;
    gap: 4rem;
    align-items: flex-start;
  }
  .contact-form__info, .contact-form__form {
    flex: 1 1 0;
    min-width: 0;
  }
}

.contact-form__info {
  margin-bottom: 2rem;
}
.contact-form__info-heading,
.title.title-wrapper--no-top-margin.inline-richtext {
  font-size: 2rem;
  font-weight: 600;
  color: #414141;
  margin-bottom: 0.5rem;
  margin-top: 0;
}
.contact-form__info-description {
  margin-bottom: 1.5rem;
  color: #414141;
  letter-spacing: -0.01em;
}
.contact-form__socials {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #f5f5f5;
  color: #222;
  transition: background 0.2s;
}
.footer-social-icon:hover {
  background: #e0e0e0;
}
.footer-social-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}
.contact-form__form-description {
  margin-bottom: 1.5rem;
  color: #414141;
  letter-spacing: -0.01em;
}
.button[type="submit"] {
  background: #dc600e;
  color: #fff;
  border: none;
}

.contact .form__message {
  align-items: flex-start;
}

.contact .icon-success {
  margin-top: 0.2rem;
}

.contact .field {
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 750px) {
  .contact .field {
    margin-bottom: 2rem;
  }
}

.contact__button {
  margin-top: 3rem;
}

@media screen and (min-width: 750px) {
  .contact__button {
    margin-top: 4rem;
  }
}

@media screen and (min-width: 750px) {
  .contact__fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 2rem;
  }
  .contact__fields .field:nth-child(1),
  .contact__fields .field:nth-child(2) {
    grid-column: 1 / -1;
  }
}

.field__input,
.text-area.field__input {
  border: none !important;
  border-radius: 40px !important;
  --inputs-radius: 4px !important;
  box-shadow: none !important;
  background: #fff !important;
  color: #414141 !important;
  border: 1px solid #414141 !important;
}

.field__input:hover,
.field__input:focus,
.text-area.field__input:hover,
.text-area.field__input:focus {
  border: 1px solid #414141 !important;
  box-shadow: none !important;
  outline: none !important;
}
