body {
  color: #333;
  font-family: Inter, sans-serif;
  font-size: 18px;
  line-height: 1.4;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 96px;
  font-weight: 800;
  line-height: 1.1;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
}

a {
  background-color: transparent;
  color: white;
}

a:hover {
  color: grey;
}

.main-section {
  width: 100%;
  display: flex;
  position: relative;
}

.grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 100%;
  display: flex;
}

.column-1 {
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  width: 40%;
  height: 100vh;
  display: flex;
  position: sticky;
  top: 0;
}

.column-2 {
  width: 60%;
  padding: 20px 40px;
}

.main-content {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: #fff;
  flex-flow: column;
  padding: 40px 60px;
  display: flex;
}

.hero-subtitle {
  font-size: 18px;
}

.prefill-links {
  font-size: 12px;
  text-align: center;
}

.button-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  margin-top: 25px;
  display: flex;
}

.cta-secondary {
  text-align: center;
  background-color: #fff0;
  border: 2px solid #fff;
  border-radius: 5px;
  padding: 15px 30px;
  font-weight: 600;
}

.cta-primary {
  text-align: center;
  background-color: #000;
  border: 2px solid #000;
  border-radius: 5px;
  padding: 15px 30px;
  font-weight: 600;
}

.form-title {
  padding-bottom: 10px;
}

.title {
  font-size: 30px;
}

.input-wrapper {
  border-top: 1px solid #eee;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.row-title-wrap {
  width: 25%;
}

.row-content {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 75%;
  display: flex;
}

.row-title {
  font-size: 19px;
  font-weight: 600;
}

.hero-title {
  font-size: 60px;
}

.d-input {
  background-color: #fff;
  background-position: 96%;
  background-repeat: no-repeat;
  background-size: auto;
  border: 1px solid #aeafb3;
  border-radius: 5px;
  padding: 9px 15px;
  font-size: 19px;
  width: 100%;
}

.d-input.type-field {
  color: #33333363;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
}

.d-input._30 {
  width: 30%;
}

.d-input._70 {
  width: 70%;
}

select.d-input {
    border: 0;
    outline: 1px solid #aeafb3;
    border-right: 12px solid transparent;
}

.d-input.empty {
  color: #fff;
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
}

.d-label {
  margin-bottom: 10px;
  font-size: 19px;
}

.d-input-wrapper {
  flex: 1;
  margin-bottom: 8px;
}

.d-input-wrapper.alt {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.d-input-double {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: row;
  flex: 1;
  display: flex;
}

.d-button-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 10px;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.cta-white {
  color: #7d7f85;
  text-align: center;
  background-color: #f5f5f5;
  border: 2px solid #f5f5f5;
  border-radius: 5px;
  padding: 15px 30px;
  font-weight: 600;
}

.brand-link {
  z-index: 9999;
  width: 140px;
  position: fixed;
  inset: 20px auto auto 40px;
}

#categoryautocomplete-list {
  font-size: 14px;
}

.autocomplete {
    position: relative;
    display: inline-block;
    overflow: unset;
}

.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
    overflow: auto;
    max-height: 450px;
}

.autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
}

/*when hovering an item:*/
.autocomplete-items div:hover {
    background-color: #e9e9e9;
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
    background-color: DodgerBlue !important;
    color: #ffffff;
}

.footer-content {
    position: absolute;
    margin: auto;
    bottom: 0;
    padding: 20px;
    width: 80%;
}

@media screen and (max-width: 991px) {
  .main-section {
    flex-flow: column;
  }

  .column-1 {
    width: 100%;
    height: auto;
    padding-top: 80px;
    position: static;
  }

  .column-2 {
    width: 100%;
  }

  .main-content {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .hero-subtitle {
    max-width: 700px;
  }

  .prefill-links {
    max-width: 700px;
  }

  .button-wrapper {
    justify-content: center;
    align-items: center;
  }

  .title {
    text-align: left;
  }

  .brand-link {
    position: absolute;
  }

  .footer-content {
      position: relative;
      right: 0;
      padding: 10px;
  }
}

@media screen and (max-width: 667px) {
  .column-2, .main-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-subtitle {
    max-width: 420px;
    font-size: 16px;
  }

  .prefill-links {
    max-width: 420px;
    font-size: 14px;
  }

  .button-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    align-items: stretch;
    width: 100%;
    max-width: 350px;
    margin-top: 0;
  }

  .input-wrapper {
    flex-flow: column;
  }

  .row-title-wrap {
    width: 100%;
    margin-bottom: 20px;
  }

  .row-content {
    width: 100%;
  }

  .hero-title {
    font-size: 42px;
  }

  .d-label {
    font-size: 16px;
  }

  .d-input {
    font-size: 16px;
  }

  .brand-link {
    width: 100px;
  }
}

@media screen and (max-width: 479px) {
  .d-button-wrapper {
    flex-flow: column-reverse;
    align-items: stretch;
  }
}




