:root {
  --color-1: #005288;
  --color-2: #a6192e;
  --color-accent: #ecf8ff;
  --font-fam: "Merriweather", serif;
}

body {
  font-family: var(--font-fam);
}
.formHead {
  background: var(--color-2);
  border-radius: 10px 10px 0 0;
  color: #fff;
}

.formsteps {
  background: var(--color-accent);
  border: 1px solid #dee2e6;
  border-top: none;
  border-radius: 10px;
}

.bold {
  font-weight: 700;
}

.highlight {
  color: var(--color-2) !important;
  font-weight: 700;
}

.pricing p {
  flex: 50%;
}

.sr-only {
  display: none;
}

.has-icon .form-control-feedback {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  color: #aaa;
  top: 50%;
  left: 1.1rem;
  transform: translateY(-50%);
}

.has-icon .form-control {
  padding-left: 2.375rem;
}

.form-control {
  height: 60px;
}

.form-group {
  margin-bottom: 0.5rem;
  position: relative;
}

.select {
  background: url("/assets/images/down.svg") no-repeat right center / 20% 16px;
  font-size: 1rem !important;
  background-color: #fff;
}

.has-icon select.form-control {
  padding-left: 3rem !important;
}

.headline {
  font-size: 1rem;
}

.borderBox {
  border-width: 0.3rem;
  border-style: dashed;
  border-color: var(--color-2);
  background-color: var(--color-accent);
  padding: 1.5rem;
}

.purple {
  color: purple;
}

.btn-block {
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1.5rem;
}

.joinform input[type="checkbox"]:checked + label {
  background-image: url(/assets/images/checked1.png);
}

.joinform input + label {
  display: inline-block;
  width: 60px;
  height: 66px;
  cursor: pointer;
  background-image: url(/assets/images/checked2.png);
}

.yes {
  padding-top: 20px;
  display: inline-block;
  font-size: 50px;
  line-height: 40px;
  vertical-align: top;
  color: var(--color-primary);
  font-weight: bold;
}

.yestext {
  padding: 13px 0 0 10px;
  display: inline-block;
  vertical-align: top;
  width: 60%;
  font-size: 12px;
}

.joinform input[type="checkbox"] {
  display: none;
}

.logos {
  max-width: 400px;
}

.sm {
  font-size: 4vw;
  text-align: center;
  margin-bottom: 1rem;
}

.show-only-mobile {
  display: none;
  background-color: #efefef;
}

.show-only-mobile .borderBox {
  width: 95%;
  margin: auto;
  margin-top: 1rem;
}

.hide-on-desktop {
  display: none;
}

@media only screen and (max-width: 992px) {
  .yestext {
    width: calc(100% - 40px);
  }

  .btn-cta {
    max-width: 95%;
    display: block;
    margin: auto;
  }
  .joinform input + label {
    display: inline-block;
    width: 35px;
    height: 45px;
    cursor: pointer;
  }

  .joinform input + label {
    background-image: url(/assets/img/checked2.png);
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: bottom;
  }

  .programImg {
    margin: auto;
    max-width: 75%;
  }

  .dashedbox1,
  .dashedbox1 p {
    font-size: 12px;
    text-align: center;
  }

  .table {
    display: table;
  }

  .dashedbox1,
  .dashedbox1 p {
    font-size: 12px;
    text-align: center;
  }

  .yes {
    display: none;
  }

  .show-only-mobile {
    display: block;
  }

  .hide-on-desktop {
    display: block;
  }

  .hide-on-mobile {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  .yes {
    font-size: 30px;
    line-height: 26px;
    vertical-align: top;
    color: var(--color-primary);
    font-weight: bold;
  }

  .select2 {
    font-size: 0.75rem !important;
  }
}


