html {
  scroll-behavior: smooth;
}

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

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

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

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: solid 1px #0000ff;
}

.bg-theme {
  background: rgb(217,220,255);
}

/* Scroll Margin */

.se {
  scroll-margin: 40px;
}

@media (min-width: 768px) {
  .se {
    scroll-margin: 160px;
  }
}

.se-1 {
  scroll-margin: 90px;
}

@media (min-width: 768px) {
  .se-1 {
    scroll-margin: 230px;
  }
}

/* Text Styling */

.text-shadow {
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.tighten-text {
  letter-spacing: -.2px;
}

.text-theme {
  color: #001e88;
}

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

a:hover {
  color: #0000ff;
  text-decoration: none;
  text-shadow: none;
}

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

.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: #001e88;
}

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

h6, h6 {
  font-size: 18px;
}

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

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

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

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

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

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

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

.signature-hp {
  font-size: 34px;
  font-family: 'Nothing You Could Do';
}

/* Button Styling */

.theme-btn:not(:disabled):not(.disabled) {
  background-color: #0a42ff;
  box-shadow: none;
  border-width: 0px;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.6);
}

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

.signup-but {
  background-color: #0a42ff;
  font-size: calc(16px + 2.2vw);
  font-style: italic;
  font-weight: 700;
  border-radius: 5px !important;
  transition: all .7s !important;
  border: none;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.6);
}

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

/* List Styling */

.list-columns {
  column-count: 2;
  column-width: 200px;
}

.list-columns-home {
  column-count: 2;
  column-width: 70px;
  column-gap: 75px;
}

@media (min-width: 576px) {
  .list-columns-home {
    column-count: 2;
    column-width: 120px;
    column-gap: 110px;
  }
}

@media (min-width: 768px) {
  .list-columns-home {
    column-count: 3;
    column-gap: 10px;
  }
}

@media (min-width: 992px) {
  .list-columns-home {
    column-count: 2;
    column-width: 140px;
    column-gap: 45px;
  }
}

@media (min-width: 1200px) {
  .list-columns-home {
    column-count: 2;
    column-width: 150px;
    column-gap: 45px;
  }
}

@media (min-width: 1400px) {
  .list-columns-home {
    column-count: 3;
    column-gap: 70px;
    column-width: 140px;
  }
}

.benefits-list {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  margin-left: 35px;
}

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

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

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

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

/* Misc Styling */

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

