@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");

.vhlp-body {
  margin: 0;
  padding: 0;
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}
.vhlp-body * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.vhlp-body img {
  max-width: 100%;
  height: auto;
  display: block;
  object-position: 80% 10%;
}

.vhlp-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.vhlp-content {
  display: flex;
  flex-direction: column;
}
.vhlp-content > div {
  width: 100%;
}
@media (max-width: 768px) {
  .vhlp-content > div {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .vhlp-container {
    padding-left: 16px;
    padding-right: 16px;
  }
} 
@media (min-width: 768px) {
  .vhlp-content {
    padding-top: 64px;
    padding-bottom: 64px;
    gap: 80px;
  }
  .vhlp-container {
    max-width: calc(1152px + 24px + 24px);
    padding-left: 24px;
    padding-right: 24px;
  }
} 


/* typography */
.vhlp-h1,
.vhlp-h2,
.vhlp-h3 {
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.5%;
}
.vhlp-h1,
.vhlp-h2 {
  font-size: 32px;
}
/* Ensure h1 is black not teal */
.vhlp-h1 {
  color: #000;
}

.vhlp-h3 {
    font-size: 28px;
}
.vhlp-h4 {
  font-size: 20px;
  font-weight: 400;
}
.vhlp-h4--large {
  font-size: 24px;
  font-weight: 700;
}
.vhlp-pre-headline {
  font-size: 16px;
  text-transform: uppercase;
  color: #6C757D;
  letter-spacing: -0.25%;
  font-weight: 700;
}

strong {
  font-weight: 700;
}

.vhlp-text-green {
  color: #0A5B58;
}
.vhlp-text-teal {
  color: #02786E;
}
.vhlp-text-grey {
  color: #6C757D;
}

.vhlp-font-fraunces {
  font-family: "Fraunces", serif;
}

.vhlp-small-caps {
  font-variant: small-caps;
}

.vhlp-text-center {
  text-align: center;
}

.vhlp-text-red {
  color: #D92D20;
}


@media (max-width: 768px) {
  .mobile-hidden {
    display: none;
  }
  .vhlp-h2 {
    font-size: 24px;
  }
  .vhlp-h2 .vhlp-font-fraunces {
    font-size: 1.417em;
  }
  .vhlp-h3 {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media (min-width: 768px) {
  .vhlp-h2 .vhlp-font-fraunces {
    font-size: 1.25em;
  }
}

.vhlp-h2--large {
  font-size: 34px;
}
.vhlp-h2--huge {
  font-size: 40px;
}


.vhlp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center; /* Ensures when button wraps text is centered */
  padding: 8px 20px;
  background-color: #02786E;
  color: #FFF;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

/* vhlp-banner */
.vhlp-banner {
  position: relative;
  color: #343434;
}
.vhlp-banner__bg,
.vhlp-form-bg {
  width: 100%;
  max-width: 2560px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.vhlp-banner__bg picture {
  width: 100%;
}
.vhlp-banner a {
  position: relative;
  display: inline-block;
}
.vhlp-banner a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  top: 100%;
  height: 2px;
  background-color: #000;
  transition: all 0.3s;
}
.vhlp-banner a:hover:after {
  right: 0;
}

.vhlp-form-bg picture {
  width: 100%;
}

@media (max-width: 768px) {
  .vhlp-banner {
    padding-bottom: 32px;
  }
  .vhlp-banner__bg,
  .vhlp-form-bg {
    height: 0;
    padding-top: 53.5%;
    position: relative;
  }
  
  .vhlp-banner__bg img,
  .vhlp-form-bg img {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: auto;
    max-width: inherit;
  }
  .vhlp-banner__text {
    margin-top: -80px;
  }
}
@media (min-width: 768px) {
  .vhlp-banner {
    padding-top: 24px;
    padding-bottom: 120px;
  }
  .vhlp-banner__bg,
  .vhlp-form-bg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
  }
  .vhlp-banner__bg img,
  .vhlp-form-bg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: 80% center;
  }
  .vhlp-form-bg img {
    object-position: 80% 10%;
  }
}
@media (min-width: 1280px) {
  .vhlp-banner .vhlp-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}


/* vhlp-card */ 
.vhlp-card {
  position: relative;
  padding: 44px 32px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 4px 4px 15px 0px rgba(0, 0, 0, 0.15);
}
.vhlp-card__headline {
  margin-top: 8px;
  margin-bottom: 8px;
}
.vhlp-card__btn {
  margin-top: 32px;
}
.vhlp-card a:not(.vhlp-btn) {
  font-weight: 700;
  text-decoration: none;
  color: inherit;
}

@media (min-width: 768px) {
  .vhlp-card {
    max-width: 432px;
  }
}

/* vhlp-plans */
.vhlp-plans .vhlp-h2,
.vhlp-plans p {
  margin-left: auto;
  margin-right: auto;
}
.vhlp-plans p {
  line-height: 1.4;
}
.vhlp-plans .vhlp-h2 {
  max-width: 720px;
}
.vhlp-plans p {
  margin-top: 24px;
  max-width: 776px;
}
.vhlp-plans .vhlp-h3 {
  margin-top: 40px;
}

@media (max-width: 768px) {
  .vhlp-plans {
    padding-left: 6px;
    padding-right: 8px;
  }
}

/* vhlp-table */
.vhlp-table {
  margin-top: 24px;
  width: 100%;
  max-width: 836px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  border: 1px solid #E9EAEB;
  box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.06), 0px 1px 3px 0px rgba(10, 13, 18, 0.1);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -1%;
  color: #343434;
}
.vhlp-table table {
  border-collapse: collapse;
}
.vhlp-table tbody tr {
  border-top: 1px solid #E9EAEB;
}
.vhlp-table th {
  background-color: #02786E;
  color: #fff;
}
.vhlp-table th:first-child {
  border-radius: 12px 0 0 0;
  text-align: left;
}
.vhlp-table th:last-child {
  border-radius: 0 12px 0 0;
}
.vhlp-table th:first-child,
.vhlp-table td:first-child {
  text-align: left;
}
.vhlp-table td:last-child,
.vhlp-table td:nth-last-child(2) {
  max-width: 194px;
  width: 23%;
  text-align: center;
}
.vhlp-table td:nth-last-child(2) {
  background-color: #F5FBF5;
  font-weight: 700;
}
.vhlp-table td {
  height: 72px;
  padding: 16px 24px;
}
.vhlp-table th {
  padding: 12px 24px;
}

@media (max-width: 768px) {
  .vhlp-table th {
    padding-top: 8px;
    padding-bottom: 8px;
    line-height: 1;
  }
  .vhlp-table th:not(:first-child) {
    min-width: 81px;
    padding-left: 4px;
    padding-right: 4px;
  }
  .vhlp-table td {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

/* vhlp-benefits */
.vhlp-benefits-section .vhlp-btn {
  margin-top: 56px;
}

.vhlp-benefits {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-top: 56px;
}
.vhlp-benefit {
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0px 4px 8px 0px rgba(21, 21, 21, 0.08), 0px 1px 2px 0px rgba(21, 21, 21, 0.02);
  text-align: center;
  color: #0A5B58;
  font-size: 24px;
  letter-spacing: -2%;
  flex: 1;
}
/* Override default paragraph styling with benefit styling */
.vhlp-benefit p {
  font-size: 24px;
  margin: 0;
}
.vhlp-benefit__content {
    padding: 16px 32px;
}
@media (max-width: 768px) {
  .vhlp-benefits {
    flex-direction: column;
    align-items: center;
  }
  .vhlp-benefit {
    width: 100%;
    max-width: 327px;
  }
  .vhlp-benefit__img img {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .vhlp-benefits {
    flex-wrap: wrap;
  }
  .vhlp-benefit {
    max-width: calc(50% - 16px);
    min-width: calc(50% - 16px);
  }
}
@media (min-width: 1024px) and (max-width: 1280px) {
  .vhlp-benefit__content {
    padding: 16px 26px;
  }
}
@media (max-width: 350px) {
  .vhlp-table th,
  .vhlp-table td {
    padding-inline: 8px;
  }
}



/* vhlp-form */
.vhlp-form-section--bg {
  position: relative;
  padding-top: 24px;
  padding-bottom: 24px;
}
.vhlp-form-section__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 88px;
}
.vhlp-form {
  width: 100%;
  flex-shrink: 0;
}
.vhlp-form .vhlp-form-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
/* Ensures submit button doesn't take up full width */
.vhlp-form .vhlp-btn {
  align-self: flex-start;
}
/* Ensures input buttons are not stretched */
.vhlp-form input:not([type="checkbox"]):not([type="submit"]) {
  width: 100%;
  height: 40px;
  padding-left: 16px;
  padding-right: 16px;
  border: 1px solid #6C757D;
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
}
.vhlp-form .vhlp-small {
  margin-top: 8px;
  color: #343434;
}
.vhlp-form label {
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.vhlp-custom-checkbox {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.vhlp-custom-checkbox label {
  margin-bottom: 0;
}
.vhlp-custom-checkbox input { 
  position: absolute;
  left: 0;
  opacity: 0;
}
.vhlp-custom-checkbox__icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid #0A5B58;
  background: url(/assets/img/AgeInLandingPages/vhlp-check.svg) no-repeat 50% 50%;
  flex-shrink: 0;
}
.vhlp-custom-checkbox input:checked +  .vhlp-custom-checkbox__icon {
  background-color: #0A5B58;
}
.vhlp-custom-checkbox:has(input:focus-visible) .vhlp-custom-checkbox__icon {
  outline: 2px solid;
}

@media (max-width: 1024px) {
  .vhlp-form-bg {
    position: relative;
  }
  .vhlp-form-section__row {
    gap: 44px;
    flex-direction: column-reverse;
  }
  .vhlp-books {
    max-width: 500px;
  }
}
@media (max-width: 768px) {
  .vhlp-form-section__row {
    gap: 24px;
  }
  .vhlp-form {
    width: calc(100% - 8px - 8px);
    margin-left: 8px;
    margin-right: 8px;
  }
  .vhlp-form-bg {
    margin-bottom: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .vhlp-form {
    max-width: 100%;
  }
  .vhlp-form-bg {
    margin-bottom: 44px;
  }
}
@media (min-width: 1280px) {
  .vhlp-form {
    max-width: 459px;
  }
}

.vhlp-members {
  background-color: #F3F3F3;
}
.vhlp-members .vhlp-h2 {
  display: inline-flex;
  align-items: center;
}
.vhlp-members .vhlp-h4 {
  margin-top: 23px;
}

.vhlp-member {
  max-width: 1104px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  background-color: #FCFAFB;
  padding: 0;
  overflow: hidden;
}
.vhlp-member__photo {
  flex-shrink: 0;
}
.vhlp-member__content {
  padding: 32px;
}
.vhlp-member small {
  font-size: 14px;
}
.vhlp-member .vhlp-h4 {
  margin-top: 8px;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .vhlp-members {
    padding-left: 16px;
    padding-right: 16px;
  }
  .vhlp-members h2, 
  .vhlp-member,
  .vhlp-accolades,
  .vhlp-cta {
    flex-direction: column;
   }

   .vhlp-members .vhlp-h2 {
    gap: 8px;
   }
   .vhlp-members .vhlp-h4 {
    padding-left: 1px;
    padding-right: 1px;
   }
   .vhlp-members .vhlp-container {
    padding-top: 16px;
   }
    .vhlp-member {
      margin-top: 40px;
      margin-bottom: 40px;
    }
   .vhlp-member__content {
    padding-top: 16px;
    padding-bottom: 16px;
   }
}
@media (min-width: 768px) {
  .vhlp-member {
    margin-top: 64px;
    margin-bottom: 64px;
  }
  .vhlp-members .vhlp-h2 {
    gap: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1280px) {
  .vhlp-members {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media (min-width: 1280px) {
  .vhlp-members {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

/* vhlp-accolades */
.vhlp-accolades {
  display: flex;
  align-items: center;
  justify-content: center;
}
.vhlp-accolade {
  position: relative;
  height: 100px;
}
.vhlp-accolade__number {
  position: absolute;
  font-size: 14px;
  bottom: 8px;
  right: 0;
}
.vhlp-accolade__number--2 {
  right: -4px;
}
.vhlp-accolade img {
  max-height: 100%;
  width: auto;
}

@media (max-width: 768px) {
  .vhlp-accolades {
    gap: 40px;
    padding-bottom: 16px;
  }
  .vhlp-accolade__number {
    display: none;
  }
}
@media (min-width: 768px) {
  .vhlp-accolades {
    gap: 64px;
  }
  .vhlp-accolade img {
    max-height: 100%;
    width: auto;
  }
}

/* vhlp-cta */
.vhlp-cta {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 24px;
  background-color: #D8F0F0;
  color: #000000;
}
.vhlp-cta h3 + h3 {
  margin-top: 48px;
}
.vhlp-cta p {
  margin-top: 20px;
  margin-bottom: 27px;
  line-height: 1.4;
}
.vhlp-cta .vhlp-h2--huge a {
  display: inline-block;
}
.vhlp-h2--huge a {
  position: relative;
  color: inherit;
  text-decoration: none;
}
.vhlp-h2 a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  top: 100%;
  height: 4px;
  background-color: #000;
  transition: all 0.3s;
}
.vhlp-h2--huge a:hover:after {
  right: 0;
}
.vhlp-cta__img img {
  width: 100%;
  max-width: 540px;
}

@media (max-width: 768px) {
  .vhlp-content > .vhlp-cta-section {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .vhlp-cta__text {
    padding: 32px;
    text-align: center;
  }
  .vhlp-cta .vhlp-h2--huge {
    font-size: 32px;
  }
  
}
@media (min-width: 768px) {
  .vhlp-cta__text {
    padding: 64px;
  }
}

/* accolades overrides */
.vhlp-members .vhlp-member {
    /* Decrease gap between member card and accolades */
    margin-bottom: 16px;
}

.vhlp-accolades-wrapper .accolades {
    /* Moves the accolades up to reduce the gap before the next section */
    margin-top: -16px;
    margin-bottom: -48px;
}

@media (max-width: 1149px) {
    .vhlp-accolades-wrapper .accolades {
        /* Reduce padding/margin when in stacked setup */
        padding-top: 0px;
        padding-bottom: 0px;
        margin-bottom: -24px;
    }
}

@media (max-width: 768px) {
    .vhlp-accolades-wrapper .accolades {
        /* Increase margin when the padding/gap from vhlp-content is removed */
        margin-bottom: 16px;
    }
}