/*
 * Hero with Search
 */
.c-hero-section--search {
  display: grid;
  grid-gap: 2vw;
  flex-direction: column;
  align-items: flex-start;
  padding: calc(6em + 2vh) 5vw;
  justify-content: space-between;
  overflow: visible;
}
  .c-hero-section--search .c-hero-section__inner > ul {
    list-style: none;
    margin-left: 0;
    font-size: 1.25rem;
    text-shadow: 0 0 10px #000;
  }
    .c-hero-section--search .c-hero-section__inner > ul > li {
      display: flex;
      gap: 0.75em;
    }
      .c-hero-section--search .c-hero-section__inner > ul > li:before {
        font-family: 'Material-Design-Iconic-Font';
        content: '\f26b';
        font-size: 1.6em;
        line-height: 1;
        left: 0;
        top: 0;
        text-align: left;
      }
  .c-hero-section--search .c-hero-section__inner + div {
    position: relative;
    z-index: 2; }
  .c-hero-section--search h1 {
    font-size: calc(2.5em + 1.5vw);
    font-weight: 900; }
  .c-hero-section--search img:nth-of-type(2) {
    position: absolute;
    bottom: -50px;
    left: 50%;
    top: auto;
    height: 150px;
    width: 150px;
    object-fit: contain;
    z-index: 4;
    transform: translateX(-50%); }
  .c-hero-section--search .c-form-wrapper {
    box-shadow: 0 6px 0 0 rgba(0, 0, 0, 0.38);
    border-radius: .75rem;
    padding: 2vw 2vw 0.5vw; }
    .c-hero-section--search .c-form-wrapper .c-form__buttons {
      padding: 4px; }
      .c-hero-section--search .c-form-wrapper .c-form__buttons .c-button--submit {
        padding: .875rem 1.75rem;
        font-size: .875rem;
        line-height: 1.33333;
        text-shadow: none;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-weight: 700;
        width: 100%; }
    .c-hero-section--search .c-form-wrapper label {
      font-size: .875rem;
      margin-bottom: .25rem; }
  .c-hero-section--search .c-form__fieldset > .o-layout,
  .c-hero-section--search .c-form__fieldset > .o-layout > .o-layout__item {
    display: block;
    width: 100% !important;
    padding: 0; }
  @media all and (min-width: 840px) {
    .c-hero-section--search {
      grid-template-columns: minmax(320px, 500px) minmax(250px, 450px);
      grid-gap: 8vw; }
      .c-hero-section--search img:nth-of-type(2) {
        height: 220px;
        width: 370px; } }
  .c-hero-section--search .c-form-wrapper + a,
  .c-hero-section--search .c-form-wrapper + script + a {
    position: absolute;
    bottom: .875rem;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 5;
    font-size: .875rem;
    color: #666;
    margin: auto;
    width: auto;
    max-width: 200px; }
  .c-hero-section--search-animated .c-hero-section__inner,
  .c-hero-section--search-animated .c-form-wrapper,
  .c-hero-section--search-animated img:nth-of-type(2),
  .c-hero-section--search-animated .c-form-wrapper + a {
    opacity: 0;
    animation-name: fadeInUp;
    animation-iteration-count: 1;
    animation-duration: .6s;
    animation-timing-function: ease-in;
    animation-fill-mode: both;
    backface-visibility: hidden; }
  .c-hero-section--search-animated .c-hero-section__inner {
    animation-delay: 0.5s; }
  .c-hero-section--search-animated .c-form-wrapper {
    animation-duration: .5s;
    animation-delay: 0.75s; }
  .c-hero-section--search-animated .c-form-wrapper + a {
    animation-duration: .2s;
    animation-delay: 1s; }
  .c-hero-section--search-animated img:nth-of-type(2) {
    opacity: 1;
    animation-name: zoomIn;
    animation-duration: .4s;
    animation-delay: 1s; }
  @media all and (min-width: 840px) {
    .c-hero-section--search-reverse {
      grid-template-columns: minmax(450px, 450px) minmax(320px, 500px);
      justify-content: center;
      align-items: center; }
      .c-hero-section--search-reverse .c-hero-section__inner {
        order: 99; } }
