/* WPForms fixes */
/* Initial field looks */
.wpforms-container input[type=date],
.wpforms-container input[type=datetime],
.wpforms-container input[type=datetime-local],
.wpforms-container input[type=email],
.wpforms-container input[type=month],
.wpforms-container input[type=number],
.wpforms-container input[type=password],
.wpforms-container input[type=range],
.wpforms-container input[type=search],
.wpforms-container input[type=tel],
.wpforms-container input[type=text],
.wpforms-container input[type=time],
.wpforms-container input[type=url],
.wpforms-container input[type=week],
.wpforms-container select,
.wpforms-container textarea {
    background: #fff;
    border-width: 0 0 1px 0;
    color: var(--ast-global-color-2);
    opacity: 0.5;
}
/* On focus */
.wpforms-container input:focus,
.wpforms-container select:focus,
.wpforms-container textarea:focus {
    outline: none;
    opacity: 1;
    border-color: var(--ast-global-color-0);
}
/* Don't allow resizing the Message box */
.wpforms-container textarea {
    resize: none;
}
/* Message box fixed height */
.wpforms-container .wpforms-field-textarea textarea.wpforms-field-medium {
    height: 136px;
}
/* Button size & font size */
.wpforms-container button {
    padding: 15px 34px;
    font-size: 15px;
}
/* WPForms done */
/* Footer 2 big columns on sides and 1 small one in the middle */
.ast-builder-grid-row-3-equal .ast-builder-grid-row {
    grid-template-columns: 3fr 1fr 3fr;
}

/* Transparent header on desktop only */
@media (min-width: 1025px) {
  .site-header {
    background: transparent !important;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background 0.3s ease, color 0.3s ease, border-bottom 0.3s ease, fill 0.3s ease;
    border-bottom: none;
  }

  /* Top links + SVGs = white */
  .site-header a,
  .site-header svg,
  .site-header svg * {
    color: #ffffff !important;
    fill: #ffffff !important;
    stroke: #ffffff !important;
    transition: fill 0.3s ease, color 0.3s ease, stroke 0.3s ease;
  }

  /* Sticky state */
  .site-header.sticky {
    padding: 28px 0px 15px 0px !important;
    position: fixed;
    background: #ffffff !important;
    border-bottom: 2px solid #000000 !important;
  }

  /* Sticky links */
  .site-header.sticky a {
    color: #000000 !important;
  }

  /* Sticky SVG icons = black */
  .site-header.sticky svg,
  .site-header.sticky svg *,
  .site-header.sticky .social-icons svg,
  .site-header.sticky .header-social svg {
    fill: #000000 !important;
    stroke: #000000 !important;
  }
}

html, body {
  overflow-x: hidden;
  width: 100%;
}
