html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Roboto Condensed';
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  background: #f5faff;
  color: #232323;
  margin-top: calc(153px + 1vw);
}

@media (min-width: 768px) {
  body {
    margin-top: calc(155px + 1vw);
  }
}

/* Text Styling */

p {
  text-align: justify;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.no-hyphens {
  hyphens: none;
  webkit-hyphens: none;
}

a {
  color: #0d6efd;
  text-decoration: none;
  text-shadow: none;
}

a:hover {
  color: #0056b3;
  text-decoration: none;
  text-shadow: none;
}

.disabled-link {
  pointer-events: none;
  color: #6c757d !important;
  text-decoration: none;
  cursor: default;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: solid 2px rgba(0,0,0,0.4);
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-bottom: .5rem;
  font-family: inherit;
  font-weight: 700;
  line-height: 1.3;
}

h1, .h1 {
  font-size: calc(24px + 1.15vw);
  color: #ff0000;
}

@media screen and (min-width:1600px) {
  h1, .h1 {
    font-size: 43px;
  }
}

.intro-hp {
  font-family: 'Nothing You Could Do', serif;
  font-size: calc(15px + 2vw);
  line-height: 1.4;
}

@media (min-width: 1400px) {
  .intro-hp {
    font-size: 44px;
  }
}

.signature-hp {
  font-size: 30px;
  font-family: 'Nothing You Could Do';
  transform: rotate(-3deg);
  height: 10px;
}

.program-text {
  color: #ff0000;
  font-size: calc(1.325rem + .9vw);
  line-height: 1.2;
  margin-bottom: 5px;
}

@media (min-width: 1600px) {
  .program-text {
    font-size: 36px;
  }
}

.text-red {
  color: #ff0000;
}

.text-blue {
  color: #1a2347;
}

.bg-md {
  background: rgb(225,235,255);
}

/* Button Styling */

.btn:not(:disabled):not(.disabled) {
  background-color: #ff0000;
  box-shadow: none;
  border-width: 0px;
  text-shadow: 1px 1px 1px #000;
}

.btn:not(:disabled):not(.disabled):hover {
  background-color: #c80000;
  transition: all .5s;
}

.signup-btn {
  font-size: calc(16px + 2.2vw);
  font-style: italic;
  font-weight: 700;
  border-radius: 5px !important;
  transition: all .7s !important;
  border: double 6px #000;
}

@media (min-width: 1400px) {
  .signup-btn {
    font-size: 47px;
  }
}

.signup-btn:hover {
  background-color: #c80000 !important;
  transition: all .7s !important;
  transform: scale(1.05,1.05) !important;
}

@media (min-width: 768px) {
  .responsive-btn {
    --bs-btn-padding-y: 0.5rem;
    --bs-btn-padding-x: 1rem;
    --bs-btn-font-size: 1.25rem;
    --bs-btn-border-radius: var(--bs-border-radius-lg);
  }
}

/* List Styling */

.benefits-list {
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
}

@media (min-width: 768px) {
  .benefits-list {
    font-size: 22px;
  }
}

.benefits-list li {
  margin-bottom: 10px;
}

.benefits-list .fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: -1px;
}

.list-services {
  margin-left: calc(6px + 3vw);
}

@media (min-width: 576px) {
  .list-services {
    column-count: 2;
  }
}

@media (min-width: 992px) {
  .list-services {
    margin-left: calc(6px + 3vw);
    column-count: 3;
    column-gap: 25px;
  }
}

/* Link list */

.link-list {
  font-size: 18px;
  line-height: 1.3;
  margin-left: 30px;
}

@media (min-width: 576px) {
  .link-list {
    font-size: 20px;
    margin-left: 43px;
  }
}

.link-list li {
  margin-bottom: 8px;
}

.link-list a {
  color: #c80000;
  transition: .3s;
}

.link-list a:hover {
  color: #ff0000;
  transition: .3s;
}

.link-list .fa-li {
  font-size: 20px;
  position: absolute;
  left: -26px;
  padding-right: 30px;
  width: 20px;
  top: 0px;
}

/* Misc Styling */

.nav-pills .nav-link {
  background: rgba(0,0,0,0.1);
  margin: 3px;
  border: 0;
  border-radius: .25rem;
}

.drop-shadow-logo {
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, .3));
}

.thank-you-logo {
  max-width: 240px;
}

