/* dark blue for small: #005A8A */
/* dark blue: #007BBD */
/* pink: #CC4969 */
/* dark pink: #8F293F */
/* light blue: #E5F2F9 */
/* aqua: #96D7DD */

.m-display {
  display: none;
}
h1 {
  margin: 60px 0 10px;
}
h3 {
  font-size: 32px;
}
h1, h3 {
  font-family: "Georgia", serif;
  font-weight: normal;
  color: #007BBD;
  text-align: left;
}
h2 {
  font-family: "Helvetica", Arial, sans-serif;
  color: #CC4969;
  font-size: 21px;
}
form h3 {
  font-size: 25px;
  color: #6c6c6c;
}

.section {
  margin-bottom: 15px;
  padding: 1rem 4%;
}
.navhold, .container {
  width: 96%;
  max-width: 1600px;
  margin: auto;
}

.header {
  background: #E5F2F9;
  border-radius: 10px;
  margin-bottom: 50px;
}
.hero {
  border-radius: 50%;
  position: relative;
  top: 80px;
  max-width: 100%;
  height: auto;
}
/* form */
label {
  color: #8F293F;
  text-transform: uppercase;
  font-size: 14px;
}
.input-wrapper {
  max-width: 50%;
  display: inline-block; 
  position: relative;
}
.form-wrapper {
  display: flex;
  gap: 10px;
  justify-content: stretch;
}

.input-wrapper:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background: url('/images/icons/location-dot-solid.svg') no-repeat;
  filter: invert(87%) sepia(12%) saturate(762%) hue-rotate(137deg) brightness(92%) contrast(93%);
  position: absolute;
  left: 10px;
  top: 50%;
  margin-top: -12px;
}
input[type="tel"].zipcode {
  background: white;
  border: 1px solid #ddd;
  padding: 5px 5px 5px 35px;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  height: 100%;
  font-weight: bold;
  font-size: 22px;
}
.btn {
  background-color: #CC4969;
  padding-right: 30px;
  font-size: 22px;
  text-transform: capitalize;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 5px;
  height: auto;
}
.btn:hover {
  background-color: #8F293F;
}
.btn:after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background: url('/images/icons/arrow-right-solid.svg') no-repeat;
  filter: invert(100%);
  position: relative;
  top: 3px;
  margin-left: 20px;
}
.partner-logos .col {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}
.cta {
  background: #007BBD;
  border-radius: 10px;
}
.cta .row {
  margin: 0;
}
.cta h3, .cta p {
  text-align: center;
  color: white;
  margin: 5px 0;
}
.cta a {
  white-space: nowrap;
}
.how {
  background: white;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0,0,0,.2);
}
.how .icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  text-align: left;
}
.how .icon {
  filter: invert(87%) sepia(12%) saturate(762%) hue-rotate(137deg) brightness(92%) contrast(93%);
}
.footertext p, .dis-text a {
  color: #595959 !important;
}
/* mobile */
@media only screen and (max-width: 676px) {
	.m-display {
	  display: block;
	}
  .section {
    padding: 10px;
  }
  .row .col {
    width: 100%;
  }
  h1 {
    font-size: 36px;
    margin: 20px auto 10px;
	  text-align: center;
	}
  h3 {
    font-size: 26px;
  }
  h2 {
    font-size: 20px;
  }
  p.lead {
    text-align: center;
  }
  .partner-logos .col {
    flex-wrap: wrap;
    gap: 25px;
    row-gap: 15px;
	}
  .hero {
    width: 260px;
    margin-top: -50px;
    
  }
  /* form */
  form {
    text-align: center;
  }
  .form-wrapper {
    flex-direction: column;
  }
  .input-wrapper {
    max-width: 100%;
    margin-top: 10px;
  }
  input[type="tel"].zipcode {
    width: 100% !important; 
    height: 57px;
    text-align: center;
    padding: 5px;
    font-size: 22px !important;
  }
}
