/* -----------------------------------------

   begin home-banner-static-type-1.css

   - bottom-left aligned headings
   - right-aligned form

   ----------------------------------------- */


/* design tokens
   ----------------------------------------- */

:root {

  --hero-form-width: min(100%, 25rem);

}

@media(max-width: 62rem) {

  :root {
  }

}

/* styles
   ----------------------------------------- */

/* hero wrapper */
.home-hero.img-with-form {
  position: relative;
  background: white;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
}
/* hero image */
.home-hero.img-with-form .hero-img {
  width:100%;
  height: calc( 100vh - var(--header-height) );
  min-height: 720px;
  border-radius: 0;
  background: none;
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.admin-bar .home-hero.img-with-form .hero-img {
  height: calc( 100vh - (var(--header-height) + 32px) );
}
.home-hero.img-with-form .hero-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  display: block;
  object-position: center;
}
/* optional full-size overlay */
.home-hero.img-with-form .hero-overlay {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 0;
  height: 100%;
  z-index: 3;
  background: transparent;
  opacity: 1;
}
/* hero contents and headings */
.home-hero.img-with-form .hero-contents {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  height: 100%; /* hero text container height */
  justify-content: center; /* hero text vertical alignment */
  background: rgba(0, 0, 0, 0.25); /* default dim overlay */
  align-items: flex-start;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: var(--container-margin);
  padding-right: max(50%, var(--hero-form-width));
  z-index: 3;
}
.home-hero.img-with-form h1 {
  font-family: var(--font-heading);
  color: white;
  text-wrap: balance;
  margin: 0;
  font-size: var(--base-h2-size);
  font-weight: 800;
  margin-bottom: 1rem;
}
.home-hero.img-with-form h1 strong {
  display: block;
  font-size: calc( var(--base-h1-size) * 1.75);
  font-weight: 800;
  text-transform: uppercase;
}
.home-hero.img-with-form h1 strong span {
  color: var(--primary);
}
.home-hero.img-with-form h2 {
  font-family: var(--font-text);
  font-size: 1.125rem;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 2rem;
}
.home-hero.img-with-form p {
  color: #fff;
  margin: 0;
  text-shadow: none;
}
.home-hero.img-with-form .site-btn > a {
}
/* hide the prefix button icon? */
.home-hero.img-with-form .site-btn > a > i {
  display: none;
}
/* hero form */
.home-hero.img-with-form .hero-form {
  position: absolute;
  top: 0;
  right: 0;
  width: var(--hero-form-width);
  height: 100%;
  display: block;
  align-content: center;
  padding: 0;
  z-index: 4;
}
.home-hero.img-with-form .hero-form .form {
  background: var(--bg-color-dark);
  padding: 1.5rem;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}
.home-hero.img-with-form .hero-form .form-heading {
  padding: 0;
  border-radius: 0;
}
.home-hero.img-with-form .hero-form .form-heading h3 {
  margin: 0;
  text-align: center;
  color: white;
  font-size: var(--base-h4-size);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.25em;
}
.home-hero.img-with-form .hero-form .form-body {
}
.home-hero.img-with-form p {
  text-wrap: balance;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 400;
  line-height: 1.75;
}
.home-hero.img-with-form p > a {
  color: white;
}
.gform_wrapper.gravity-theme .gform_footer input {
  background: var(--primary);
}
.gform_wrapper.gravity-theme .gform_footer input:hover {
  background: var(--primary-hover);
}

@media(max-width: 1200px) {
  .home-hero.img-with-form {
    padding: 0;
  }
  .admin-bar .home-hero.img-with-form {
    max-height: none;
  }
  .home-hero.img-with-form {
    max-height: none;
    display: flex;
    flex-direction: column;
    background: none;
  }
  .home-hero.img-with-form .hero-overlay {
    display: none;
  }
  .home-hero.img-with-form .hero-img,
  .admin-bar .home-hero.img-with-form .hero-img {
    background: var(--custom);
    border-radius: var(--border-radius);
    width: 100%;
    margin-top: var(--home-design-margin);
    height: auto;
    aspect-ratio: 3/2;
    position: relative;
    order: 2;
    min-height: 0;
    max-height: none;
  }
  .home-hero.img-with-form .hero-contents {
    position: relative;
    width: 100%;
    height: auto;
    background: white !important;
    color: var(--text);
    padding: 4rem 0 !important;
    text-align: center;
    justify-content: center;
    align-items: center;
    order: 1;
  }
  .home-hero.img-with-form h1,
  .home-hero.img-with-form h2 {
    text-shadow: none;
    text-align: center;
    width: 100%;
  }
  .home-hero.img-with-form h1 {
    color: var(--secondary);
  }
  .home-hero.img-with-form h1 strong span {
    color: var(--secondary);
  }
  .home-hero.img-with-form h2 {
    color: var(--text) !important;
  }
  .home-hero.img-with-form .hero-form {
    order: 3;
    position: relative;
    width: 100%;
    background: none;
    color: var(--text-color-dark);
    border-radius: var(--border-radius);
    padding: 0;
    margin-top: var(--home-design-margin);
  }
  .home-hero.img-with-form .hero-form .form {
    width: 100%;
    background: var(--primary);
    border-radius: var(--border-radius);
  }
} /* end @media */

/* -----------------------------------------

   end home-banner-static-type-1.css

   ----------------------------------------- */