@charset "UTF-8";
.nurturelead-section {
  display: flex;
  justify-content: center;
  padding: 4rem 10%;
  background-color: #D6E4FF;
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
}
.nurturelead-section .form-container {
  background-color: #FFF;
  border: 3px solid #000;
  box-shadow: 4px 4px 0px 0px #000;
  padding: 3rem;
  max-width: 800px;
  width: 100%;
}
.nurturelead-section .form-container h2 {
  margin-top: 0;
  color: #0047AB;
  font-size: 2rem;
  text-align: center;
}
.nurturelead-section .form-container .callout-body-text {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  font-weight: 500;
}
.nurturelead-section .form-container .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 576px) {
  .nurturelead-section .form-container .form-grid {
    grid-template-columns: 1fr;
  }
}
.nurturelead-section .form-container .form-group {
  display: flex;
  flex-direction: column;
}
.nurturelead-section .form-container .form-group label {
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.nurturelead-section .form-container .form-group input[type=text],
.nurturelead-section .form-container .form-group input[type=email],
.nurturelead-section .form-container .form-group input[type=tel],
.nurturelead-section .form-container .form-group select {
  padding: 0.8rem;
  border: 3px solid #000;
  background-color: #fff;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  transition: all 0.2s ease;
  box-shadow: inset 0px 0px 0px rgba(0, 0, 0, 0);
}
.nurturelead-section .form-container .form-group input[type=text]:focus,
.nurturelead-section .form-container .form-group input[type=email]:focus,
.nurturelead-section .form-container .form-group input[type=tel]:focus,
.nurturelead-section .form-container .form-group select:focus {
  outline: none;
  box-shadow: 4px 4px 0px 0px #0047AB;
  border-color: #0047AB;
}
.nurturelead-section .form-container .full-width {
  grid-column: 1/-1;
}
.nurturelead-section .form-container .checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  background-color: #f0f5ff;
  padding: 1rem;
  border: 3px solid #000;
}
.nurturelead-section .form-container .checkbox-group input[type=checkbox] {
  width: 24px;
  height: 24px;
  appearance: none;
  border: 2px solid #000;
  background-color: #FFF;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.nurturelead-section .form-container .checkbox-group input[type=checkbox]:checked {
  background-color: #0047AB;
  border-color: #0047AB;
}
.nurturelead-section .form-container .checkbox-group input[type=checkbox]:checked::after {
  content: "✓";
  color: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  font-weight: bold;
}
.nurturelead-section .form-container .checkbox-group label {
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  margin: 0;
}
.nurturelead-section .form-container .btn-primary {
  width: 100%;
  font-size: 1.2rem;
  padding: 1.2rem;
  background-color: #0047AB;
  color: #FFF;
  border: 3px solid #000;
  box-shadow: 4px 4px 0px 0px #000;
  text-transform: uppercase;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.1s ease;
}
.nurturelead-section .form-container .btn-primary:hover {
  background-color: #005cde;
}
.nurturelead-section .form-container .btn-primary:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px 0px #000;
}
.nurturelead-section .form-container .recaptcha-terms {
  display: block;
  text-align: center;
  margin-top: 1rem;
  color: #666;
  font-weight: normal;
}
.nurturelead-section .form-container .recaptcha-terms a {
  color: #0047AB;
  text-decoration: underline;
}

#index-student-studying-image {
  background-size: cover;
  height: 450px;
  border: 3px solid #000;
  box-shadow: 4px 4px 0px 0px #000;
}

#man-and-computer-image {
  background-size: cover;
  border: 3px solid #000;
  box-shadow: 4px 4px 0px 0px #000;
}
@media screen and (min-width: 576px) {
  #man-and-computer-image {
    height: 450px;
    grid-column: 1/1;
  }
}
@media screen and (max-width: 576px) {
  #man-and-computer-image {
    grid-row: 2/2;
    height: 500px;
  }
}

.index-callout {
  grid-column: 1/span 3;
  padding: 6rem 0;
  background: #0047AB;
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #FFF;
}
.index-callout h2 {
  font-size: 2.5rem;
  font-weight: 800;
}
@media screen and (max-width: 576px) {
  .index-callout {
    display: none;
  }
}
.index-callout h2, .index-callout p {
  text-align: center;
  width: 60%;
}

.index-heading {
  color: #000;
  font-size: 2rem;
  font-weight: 800;
  text-align: left;
  text-transform: uppercase;
}

.index-heading-center {
  text-align: center;
}

.index-image {
  height: 100%;
}

.hero {
  background-color: #FFF;
  padding: 5rem 10%;
  align-items: center;
  border-bottom: 3px solid #000;
}
@media screen and (max-width: 576px) {
  .hero {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 576px) {
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 5rem;
  }
}
.hero img {
  justify-self: center;
  max-width: 100%;
  border: 3px solid #000;
  box-shadow: 4px 4px 0px 0px #000;
}

.hero-text {
  text-align: center;
}
.hero-text p {
  text-align: left;
}

.hero-buttons {
  margin: 3rem 0;
  display: flex;
  justify-content: space-around;
}

.index-blurb {
  padding: 2rem 20%;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}

#index-video {
  margin: 0 10%;
}

.neo-hero {
  background-color: #D6E4FF;
  padding: 6rem 10%;
  border-bottom: 3px solid #000;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 768px) {
  .neo-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.neo-hero .hero-text {
  text-align: left;
}
@media (max-width: 768px) {
  .neo-hero .hero-text {
    text-align: center;
  }
}
.neo-hero .hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #000;
}
.neo-hero .hero-text .highlight-text {
  color: #0047AB;
}
.neo-hero .hero-text .hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  font-weight: 500;
}
.neo-hero .hero-text .hero-actions {
  display: flex;
  gap: 1rem;
}
@media (max-width: 768px) {
  .neo-hero .hero-text .hero-actions {
    justify-content: center;
    flex-direction: column;
  }
}
.neo-hero .hero-text .hero-actions .btn-secondary {
  background-color: #FFF;
  color: #000;
}
.neo-hero .hero-text .hero-actions .btn-secondary:hover {
  background-color: #f0f5ff;
}

.features-section {
  padding: 5rem 10%;
  background-color: #FFF;
  border-bottom: 3px solid #000;
}
.features-section .section-title {
  margin-bottom: 3rem;
}

.neo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 992px) {
  .neo-grid {
    grid-template-columns: 1fr;
  }
}

.card-link {
  text-decoration: none !important;
  color: inherit;
  display: block;
}
.card-link:hover, .card-link:focus-visible {
  text-decoration: none !important;
}
.card-link:hover .neo-card, .card-link:focus-visible .neo-card {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px 0px #000;
}

.neo-card {
  padding: 2rem;
  border: 3px solid #000;
  box-shadow: 4px 4px 0px 0px #000;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}
.neo-card.bg-white {
  background-color: #FFF;
}
.neo-card.bg-blue {
  background-color: #D6E4FF;
}
.neo-card.bg-yellow {
  background-color: #FFDE4D;
}
.neo-card.bg-pink {
  background-color: #FF8E9F;
}
.neo-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.neo-card .card-action-btn {
  display: inline-block;
  margin-top: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  border-bottom: 2px solid #000;
  padding-bottom: 2px;
}
