html,
body {
  overflow-x: clip;
  text-wrap: pretty;
}

body {
  font-family: "aktiv-grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --bs-link-color-rgb: 255, 255, 255;
  --bs-link-hover-color-rgb: 255, 255, 255;
  color: #fff;
  background-color: #000;
  background-image: url("../img/halftone.jpg");
  background-repeat: repeat;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "factoria", "Georgia", serif;
  font-weight: 700;
}

.background {
  margin-bottom: 0;
  background: radial-gradient(ellipse at top center, rgba(128, 187, 255, 0.2) 0%, transparent 100%);
}

.main {
  font-family: "aktiv-grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-bottom: 25px;
  flex: 1;
}
.main p.lead {
  font-family: "termina", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.main h1 {
  font-size: 40px;
  margin-bottom: 67px;
}
@media (min-width: 768px) {
  .main h1 {
    font-size: 60px;
  }
}
@media (min-width: 768px) {
  .main p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
  .main p.lead {
    font-size: 1.5rem;
  }
}
.main .reading-width {
  line-height: 32px;
  margin-bottom: 100px;
}
.main p.lead {
  margin-bottom: 100px;
}
@media (min-width: 992px) {
  .main p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .main p.lead {
    font-size: 2rem;
  }
  .main .reading-width {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}

.marquee {
  height: 100px;
  overflow: hidden;
  margin-top: 25px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-1 * (100vw - 100%) / 2);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.marquee__track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee-scroll 20s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}
.marquee__item {
  font-family: "termina", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 2rem;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .marquee__item {
    font-size: 3rem;
  }
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.btn {
  --bs-border-radius: 0;
}

.btn-primary {
  font-family: "termina", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  --bs-btn-color: #fff;
  --bs-btn-bg: #000d1c;
  --bs-btn-border-color: #000d1c;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #001a36;
  --bs-btn-hover-border-color: #001a36;
  --bs-btn-focus-shadow-rgb: 225, 83, 97;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #001a36;
  --bs-btn-active-border-color: #001a36;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #000d1c;
  --bs-btn-disabled-border-color: #000d1c;
}

.video-thumbnail {
  display: block;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 100%;
}
.video-thumbnail__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .video-thumbnail__frame {
    aspect-ratio: 16/9;
    max-height: 500px;
  }
}
.video-thumbnail__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
}
.video-thumbnail__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 13, 28, 0.5);
  pointer-events: none;
}
.video-thumbnail__content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 90%;
}
.video-thumbnail__play {
  transition: opacity 0.2s ease, transform 0.2s ease;
  margin-bottom: 1.5rem;
}
.video-thumbnail__title {
  font-family: "factoria", "Georgia", serif;
  font-weight: 700;
  font-size: 40px;
  color: #fff;
  margin-bottom: 0.75rem;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .video-thumbnail__title {
    font-size: 60px;
  }
}
.video-thumbnail__label {
  font-family: "termina", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.video-thumbnail:hover .video-thumbnail__play {
  opacity: 0.9;
  transform: scale(1.1);
}

.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  margin: 0 auto 67px;
  max-width: var(--bs-breakpoint-xl, 1140px);
}
.hero__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(128, 187, 255, 0.75);
  z-index: 1;
  pointer-events: none;
}
.hero__header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
}
.hero__content h1 {
  color: #000d1c;
  font-size: 40px;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .hero__content h1 {
    font-size: 60px;
  }
}

.btn-hero {
  font-family: "termina", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  --bs-btn-color: #fff;
  --bs-btn-bg: #a31516;
  --bs-btn-border-color: #a31516;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #8a1112;
  --bs-btn-hover-border-color: #8a1112;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #8a1112;
  --bs-btn-active-border-color: #8a1112;
  cursor: pointer;
}

.logo-tag {
  background: #e42223;
  display: inline-block;
}

/* hubspot form */
.hs-button.primary {
  background-color: #dc3545;
  border-color: #dc3545;
  text-transform: uppercase;
  color: #fff;
  padding: 0.5rem 3rem;
  font-size: 1.25rem;
  border: 1px solid transparent;
  border-radius: 0;
}
.hs-button.primary:hover {
  color: #fff;
  border-color: #b02a37;
  background-color: #bb2d3b;
}
.hs-button.primary:focus, .hs-button.primary:active {
  background-color: #b02a37 !important;
  color: #fff !important;
  border: 1px solid #b02a37 !important;
}

.hbspt-form {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.hbspt-form fieldset {
  max-width: 100% !important;
}

.hbspt-form .actions {
  margin-top: 1rem;
  text-align: center;
}

.hbspt-form ul.no-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hbspt-form .input {
  margin-top: 0.5rem;
  margin-right: 0 !important;
}

.hbspt-form .form-columns-3 .hs-form-field {
  width: 100% !important;
  padding-right: 1.5rem;
}

.hbspt-form .form-columns-3 .hs-form-field:nth-child(2),
.hbspt-form .form-columns-3 .hs-form-field:nth-child(3) {
  width: 50% !important;
}

.hbspt-form .form-columns-3 .hs-form-field:first-child,
.hbspt-form .form-columns-3 .hs-form-field:last-child {
  padding-right: 0;
}

@media (max-width: 767px) {
  .hbspt-form .form-columns-3 .hs-form-field:nth-child(2),
  .hbspt-form .form-columns-3 .hs-form-field:nth-child(3) {
    float: left !important;
  }
}
@media (min-width: 768px) {
  .hbspt-form .form-columns-3 .hs-form-field:first-child {
    padding-right: 1.5rem;
  }
  .hbspt-form .form-columns-3 .hs-form-field,
  .hbspt-form .form-columns-3 .hs-form-field:nth-child(2),
  .hbspt-form .form-columns-3 .hs-form-field:nth-child(3) {
    width: 33.3333333333% !important;
  }
}
.hbspt-form .hs-input {
  display: block;
  width: 100% !important;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 15s ease-in-out;
  margin-bottom: 1rem;
}

.hbspt-form select.hs-input {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.hbspt-form .submitted-message {
  text-align: center;
  font-size: 1.25rem;
}

#videoModal .modal-body,
#videoModal .vp-placeholder {
  margin: 0 !important;
  padding: 0 !important;
}

footer {
  background-color: #000d1c;
  margin-top: auto;
}

.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.footer-logos__hillsdale {
  height: 30px;
  flex-shrink: 0;
}
.footer-logos__divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}
.footer-logos__tpusa {
  height: 50px;
  flex-shrink: 0;
}

.footer-tagline {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  opacity: 0.8;
  margin-bottom: 2rem;
}

.path-card {
  background-color: #000d1c;
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  z-index: 0;
  color: #fff;
}
.path-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(163, 21, 22, 0.75);
  z-index: -1;
}
.path-card__title {
  font-family: "factoria", "Georgia", serif;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 1rem;
}
.path-card__desc {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  font-size: 16px !important;
  line-height: 1.6;
}
.path-card--charlie {
  margin-bottom: 25px;
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: url("../img/charliepath.jpg");
}
.path-card--citizens {
  background-image: url("../img/sol.jpg");
}
.path-card--citizens::before {
  background: rgba(85, 112, 142, 0.92);
}
.path-card--faith {
  background-image: url("../img/Bible-Effect.jpg");
}
.path-card--faith::before {
  background: rgba(85, 112, 142, 0.92);
}
.path-card--secondary {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.path-card--secondary .btn {
  margin-top: auto;
}

.path-row {
  display: flex;
  gap: 25px;
}
@media (max-width: 767px) {
  .path-row {
    flex-direction: column;
  }
}

.btn-pill {
  border-radius: 9999px;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* tweaks */
#onetrust-banner-sdk.otFlat {
  overflow-y: hidden !important;
}/*# sourceMappingURL=style.css.map */