/* Generic Classes */
.p-0 {
    padding: 0px;
  }
  .p-3 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .font-48 {
      font-size: 48px;
  }
  .d-flex {
    display: flex;
  }
  .d-flex > div {
    flex-basis: 1;
  }
  @media (max-width: 768px) {
    .d-flex > div {
      flex-wrap: wrap;
    }
  }
  .f-wrap {
    flex-wrap: wrap;
  }
  .f-row-reverse {
      flex-direction: row-reverse;
  }
  .button--alt {
    margin-right: 20px;
    align-self: flex-start;
  }
  .container, .main {
    max-width: 76rem;
  }
  @media (min-width: 80em) {
      .container, .main {
          padding-right: 0;
          padding-left: 0;
      }
  }
  table.vertical-list {
    background: #efefef;
  }
  table.vertical-list th {
    background: #ddd;
    width: 180px;
  }
  .js-t4form-container {
    width: 100%;
  }
  .js-t4form-container .btn {
    padding: 1rem 2.75rem !important;
  }
  /* End Generic Classes */
  /* Content with Side Heading */
  .heading__content__split {
    max-width: 76rem;
    margin: 60px auto;
    padding: 0 60px;
    display: flex;
  }
  .heading__split {
    flex: 50%;
    padding-right: 40px;
  }
  .heading__split h2 {
    margin-top: 0;
    text-align: right;
    font-size: 2.95rem;
    line-height: 1;
    color: #0f224c;
  }
  .content__split {
    flex: 50%;
  }
  .content__split p {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.625;
    color: #727f89;
    position: relative;
  }
  .content__split__button {
    display: inline-block;
    padding: 0.5rem 2.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    box-shadow: none;
    color: #fff;
    background-color: #189bd7;
    z-index: 1;
    position: relative;
    transition: color .3s ease;
  }
  .content__split__button:hover {
    color: #000;
  }
  .content__split__button::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 100%;
    bottom: 0;
    background: rgb(233, 234, 235);
    z-index: -1;
    transition: right .3s ease;
  }
  .content__split__button:hover::after {
    right: 0;
  }
  .inline__color {
    color: rgb(var(--theme-accent));
  }
  .content__split hr {
    width: 110px;
    border: 1px solid rgb(var(--theme-accent));;
    margin: 20px 0;
  }
  .content__split hr.hr-black {
      border-color: black;
  }
  
  @media (max-width: 1280px) {
    .heading__content__split {
      padding-right: 40px;
      padding-left: 40px;
    }
  }
  
  @media (max-width: 1024px) {
    .heading__content__split {
      flex-direction: column;
    }
    .heading__split,
    .content__split {
      flex: 100%;
    }
    .heading__split h2 {
      text-align: left;
    }
  }
  
  @media (max-width: 768px) {
    .heading__content__split {
      padding-right: 20px;
      padding-left: 20px;
    }
  }
  /* End Content with Side Heading */
  
  /* Column Buttons */
  .column__buttons {
    max-width: 76rem;
    width: 100%;
    margin: 80px auto;
    padding: 0 60px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .column__button {
    width: 30%;
    display: flex;
    flex-direction: column;
  }
  .column__button .column__icon {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .column__button .column__heading h2 {
    color: #152b51;
    font-size: 1.075rem;
    margin-top: 10px;
    margin-bottom: 20px;
  }
  .column__button .column__content {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.55;
    color: #727f89;
    margin-bottom: 20px;
  }
  .column__button .column__content p {
    margin: 0;
  }
  .column__button .column__call__to__action {
    margin-top: auto;
  }
  .column__button .column__call__to__action a {
    width: 100%;
    padding: 10px 0;
    border: 2px solid #189bd7;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #0f224c;
    box-shadow: none;
    font-weight: 700;
  }
  .column__button .column__call__to__action a:hover {
    color: #fff;
    background-color: #189bd7;
  }
  
  @media (max-width: 1280px) {
    .column__buttons {
      padding-right: 40px;
      padding-left: 40px;
    }
  }
  
  @media (max-width: 1024px) {
    .column__buttons {
      width: 100%;
      flex-direction: column;
    }
    .column__button {
      width: 100%;
      margin-bottom: 40px;
    }
  
    .column__button:last-child {
      margin-bottom: 0;
    }
  
    .column__button .column__icon {
      justify-content: left;
    }
  }
  
  @media (max-width: 768px) {
    .column__buttons {
      padding-right: 20px;
      padding-left: 20px;
    }
  }
  /* End Column Buttons */
  
  /* FAQs */
  .faqs {
    max-width: 76rem;
    margin: 60px auto;
    padding-right: 60px;
    padding-left: 60px;
  }
  .faqs__heading {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0f224c;
    margin-bottom: 4rem;
    font-size: 28px;
  }
  .faqs__container {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .faq__tabs {
    width: 25%;
  }
  .faq__tabs .faq__tab {
    padding: 20px 10px;
    color: #727f89;
    cursor: pointer;
  }
  .faq__tabs .active {
    background-color: rgb(232, 234, 236);
    font-weight: 700;
    border-bottom: 3px solid #189bd7;
  }
  .faq__accordions {
    width: 65%;
  }
  .faq__accordion {
    width: 100%;
  }
  .faq__accordion button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: initial;
    color: #727f89;
    font-size: 20px;
    cursor: pointer;
    background-color: initial;
    border: none;
    padding: 10px 0;
    position: relative;
  }
  .faq__accordion {
    border-bottom: 1px solid #727f89;
    padding-right: 10px;
  }
  .faq__accordion:first-child button {
    display: flex;
    padding-top: 0;
  }
  .faq__accordion button::after {
    display: inline-block;
    content: "\0002B";
    color: #189bd7;
    font-size: 50px;
  }
  .faq__accordion button.rotate::after {
    transform: rotate(45deg);
  }
  .faq__accordion .accordion__button__blue {
    color: #189bd7;
  }
  .faq__accordion__content {
    padding-bottom: 30px;
    color: #727f89;
  }
  
  @media (max-width: 1280px) {
    .faqs {
      padding-right: 40px;
      padding-left: 40px;
    }
  }
  
  @media (max-width: 1024px) {
    .faqs__container {
      flex-direction: column;
    }
    .faqs__heading {
      justify-content: start;
      margin-bottom: 2rem;
    }
    .faq__tabs {
      margin-bottom: 40px;
    }
    .faq__tabs,
    .faq__accordions {
      width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .faqs {
      padding-right: 20px;
      padding-left: 20px;
    }
  }
  /* End FAQs */
  
  /* Student Stories */
  .slick-container {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: rgb(232, 234, 236);
  }
  .responsive {
    width: 1096px;
    margin: 0 auto;
  }
  .slick-slide {
    padding: 20px;
  }
  .slick-card {
    padding-top: 0;
  }
  .slick-content {
    margin-bottom: 40px;
    color: #727f89;
  }
  .slick-person {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .slick-person img {
    margin-bottom: 20px;
  }
  .person-name {
    color: #0f224c;
    margin: 0;
    padding-bottom: 5px;
  }
  .person-title {
    margin: 0;
    color: #727f89;
  }
  .slick-prev {
    left: -50px;
  }
  .slick-prev::before {
    content: url('/media/nledu/site-assets/images/LeftArrow.svg');
    color: #fff;
    font-size: 30px;
  }
  .slick-next::before {
    content: url('/media/nledu/site-assets/images/RightArrow.svg');
    color: #fff;
    font-size: 30px;
  }
  .slick-dots {
    left: 0;
  }
  
  @media (max-width: 1096px) {
    .responsive {
      width: 100%;
    }
  }
  /* End Student Stories */
  
  /* College Boxes */
  .college__box.nlublue {
    background-color: rgb(0, 90, 150);
    box-shadow: inset 0 0 0 2000px rgba(0, 90, 150, 1);
  }

  .nlublue:hover {
    box-shadow: inset 0 0 0 2000px rgba(0, 90, 150, 0.5);
  }

  /*.college__box.lightblue {
    background-color: rgb(0, 191, 255);
    box-shadow: inset 0 0 0 2000px rgba(0, 191, 255, 1);
  }

  .lightblue:hover {
    box-shadow: inset 0 0 0 2000px rgba(0, 191, 255, 0.5);
  }

  .college__boxes a.lightblue::after {
    background: rgb(0, 191, 255);
  }*/

  .college__box.teal {
    background-color: rgb(0, 147, 175);
    box-shadow: inset 0 0 0 2000px rgba(0, 147, 175, 1);
  }

  .teal:hover {
    box-shadow: inset 0 0 0 2000px rgba(0, 147, 175, 0.5);
  }

  .college__boxes a.teal::after {
    background: rgb(0, 147, 175);
  }

  .college__box.red {
    background-color: rgb(196, 13, 60);
    box-shadow: inset 0 0 0 2000px rgba(196, 13, 60, 1);
  }

  .red:hover {
    box-shadow: inset 0 0 0 2000px rgba(196, 13, 60, 0.5);
  }

  .college__boxes a.red::after {
    background: rgb(196, 13, 60);
  }

  .college__box.orange {
    background-color: rgb(232, 119, 34);
    box-shadow: inset 0 0 0 2000px rgba(232, 119, 34, 1);
  }

  .orange:hover {
    box-shadow: inset 0 0 0 2000px rgba(232, 119, 34, 0.5);
  }

  .college__boxes a.orange::after {
    background: rgb(232, 119, 34);
  }

  .college__box.green {
    background-color: rgb(114, 180, 49);
    box-shadow: inset 0 0 0 2000px rgba(114, 180, 49, 1);
  }

  .green:hover {
    box-shadow: inset 0 0 0 2000px rgba(114, 180, 49, 0.5);
  }

  .college__boxes a.green::after {
    background: rgb(114, 180, 49);
  }

  .college__box.purple {
    background-color: rgb(121, 81, 161);
    box-shadow: inset 0 0 0 2000px rgba(121, 81, 161, 1);
  }

  .purple:hover {
    box-shadow: inset 0 0 0 2000px rgba(121, 81, 161, 0.5);
  }

  .college__boxes a.purple::after {
    background: rgb(121, 81, 161);
  }

  .college__box.midnight {
    background-color: rgb(43, 56, 143);
    box-shadow: inset 0 0 0 2000px rgb(43, 56, 143);
  }

  .midnight:hover {
    box-shadow: inset 0 0 0 2000px rgba(43, 81, 161, 0.5);
  }

  .college__boxes .midnight::after {
    background: rgb(43, 56, 143);
  }

  .college__box.gray {
    background-color: #454545;
    box-shadow: inset 0 0 0 2000px #454545;
  }

  .gray:hover {
    box-shadow: inset 0 0 0 2000px rgba(69, 69, 69, 0.5);
  }

  .college__box.navyblue {
    background-color: rgb(var(--navy-blue));
    box-shadow: inset 0 0 0 2000px rgb(var(--navy-blue));
  }

  .navyblue:hover {
    box-shadow: inset 0 0 0 2000px rgba(var(--navy-blue), .5);
  }

  .college__boxes a.navyblue::after {
    background: rgb(var(--navy-blue));
  }


  .college__box.darkblue {
    background-color: rgb(var(--dark-blue));
    box-shadow: inset 0 0 0 2000px rgb(var(--dark-blue));
  }

  .darkblue:hover {
    box-shadow: inset 0 0 0 2000px rgba(var(--dark-blue), .5);
  }

  .college__boxes a.darkblue::after {
    background: rgb(var(--dark-blue));
  }


  .college__box.medgray {
    background-color: rgb(var(--medium-gray));
    box-shadow: inset 0 0 0 2000px rgb(var(--medium-gray));
  }

  .medgray:hover {
    box-shadow: inset 0 0 0 2000px rgba(var(--medium-gray), .5);
  }

  .college__boxes a.medgray::after {
    background: rgb(var(--medium-gray));
  }


  .college__box.medblue {
    background-color: rgb(var(--medium-blue));
    box-shadow: inset 0 0 0 2000px rgb(var(--medium-blue));
  }

  .medblue:hover {
    box-shadow: inset 0 0 0 2000px rgba(var(--medium-blue), .5);
  }

  .college__boxes a.medblue::after {
    background: rgb(var(--medium-blue));
  }


  .college__box.lightblue {
    background-color: rgb(var(--light-blue));
    box-shadow: inset 0 0 0 2000px rgb(var(--light-blue));
  }

  .lightblue:hover {
    box-shadow: inset 0 0 0 2000px rgba(var(--light-blue), .5);
  }

  .college__boxes a.lightblue::after {
    background: rgb(var(--light-blue));
  }


  .college__box.lightgray {
    background-color: rgb(var(--light-gray));
    box-shadow: inset 0 0 0 2000px rgb(var(--light-gray));
  }

  .lightgray:hover {
    box-shadow: inset 0 0 0 2000px rgba(var(--light-gray), .5);
  }

  .college__boxes a.lightgray::after {
    background: rgb(var(--light-gray));
  }


  .college__box.offwhite {
    background-color: rgb(var(--off-white));
    box-shadow: inset 0 0 0 2000px rgb(var(--off-white));
  }

  .offwhite:hover {
    box-shadow: inset 0 0 0 2000px rgba(var(--off-white), .5);
  }

  .college__boxes a.offwhite::after {
    background: rgb(var(--off-white));
  }


  .college__box.elecyellow {
    background-color: rgb(var(--electric-yellow));
    box-shadow: inset 0 0 0 2000px rgb(var(--electric-yellow));
  }

  .elecyellow:hover {
    box-shadow: inset 0 0 0 2000px rgba(var(--electric-yellow), .5);
  }

  .college__boxes a.elecyellow::after {
    background: rgb(var(--electric-yellow));
  }

  .college__boxes {
    max-width: 76rem;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .college__boxes a {
    text-decoration: none;
    color: #fff;
    box-shadow: none;
  }

  .college__box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    margin: 5px;
    height: 240px;
    color: #fff;
    font-weight: bold;
    font-size: 1.35em;
    text-align: center;
    text-transform: uppercase;
    padding: 40px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
  }

  @media (max-width: 1280px) {
    .college__boxes {
      padding-right: 40px;
      padding-left: 40px;
    }
  }

  @media (max-width: 1024px) {
    .college__boxes {
      width: 100%;
      padding-top: 0;
      padding-bottom: 0;
      margin: 0;
      flex-direction: column;
    }

    .college__box {
      flex: none;
      margin-right: 0;
      margin-left: 0;
      height: auto;
      padding: 60px 80px;
    }
  }

  @media (max-width: 768px) {
    .college__boxes {
      padding-right: 20px;
      padding-left: 20px;
    }
  }

  /* new college box code */


  .colored-boxes .college__boxes a:hover::after {
    opacity: 1;
  }

  .college__box {
    font-size: 1.5em;
    padding: 1.5rem;
    line-height: 1.75rem;
    box-sizing: border-box;
    position: relative;
  }

  .college__box__background {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    transition: filter .25s ease;
  }

  @supports (filter: blur(16px)) {
    .college__box__background {
      filter: blur(16px);
    }

    .college__boxes a:hover .college__box__background {
      filter: blur(0);
    }
  }


  .college__boxes a:hover .college__box__text {
    transform: scale(1.1);
  }

  .college__boxes a {
    text-decoration: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
  }

  .college__boxes a::after {
    content: '';
    position: absolute;
    background: rgb(0, 90, 150);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: .8;
    transition: all .3s ease;
  }

  .college__boxes a:hover::after {
    opacity: .65;
  }

  .college__boxes .college__box__text {
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 4px #0007;
    transition: transform .3s ease;
  }

  /* End College Boxes */
  
  /* Slim Hero */
  .slim__hero {
    width: 100%;
    background-color: #152b51;
    background-position: center;
    background-size: cover;
    color: rgb(255, 255, 255);
  }
  .slim__hero__content {
    max-width: 76rem;
    margin: 0 auto;
    padding: 40px 0px;
    display: flex;
    min-height: 403px;
    align-items: center;
  }

  .slim__hero__content h1 {
    z-index: 1;
    margin-top: 173px;
  }

  .slim__hero__content::after {
    content: "";
    width: 100%;
    height: 403px;
    position: absolute;
    background-color: black;
    left: 0px;
    opacity: 0.3;
  }
  
  @media (max-width: 1280px) {
    .slim__hero__content {
      padding-right: 40px;
      padding-left: 40px;
    }
    .slim__hero__content h1 {
        margin-top: 95px;
        font-size: 4em;
    }
  }
  
  @media (max-width: 768px) {
    .slim__hero__content {
      padding-right: 20px;
      padding-bottom: 40px;
      padding-left: 20px;
      align-items: flex-end;
    }
    .slim__hero__content::after {
        margin-bottom: -40px;
    }
    .slim__hero__content h1 {
        font-size: 2.8125em;
    }
  }
  /* End Slim Hero */
  
  /* Gray Split */
  .gray__split__bkg {
    width: 100%;
    background-color: rgb(232, 234, 236);
  }
  .gray__split__container {
    max-width: 76rem;
    margin: 0 auto;
    padding: 60px;
  }
  .gray__split {
    display: flex;
  }
  .gray__split:nth-child(1) {
    margin-bottom: 100px;
  }
  .gray__split:nth-child(1) .gray__split__content {
    padding-left: 60px;
  }
  .gray__split:nth-child(2) .gray__split__content {
    padding-right: 60px;
    order: 1;
  }
  .gray__split:nth-child(2) .gray__split__image {
    order: 2;
  }
  .gray__split__image,
  .gray__split__content {
    width: 50%;
  }
  .gray__split__content {
    padding-top: 20px;
  }
  .gray__split__image img {
    display: block;
    width: 100%;
    height: auto;
  }
  .gray__split__content h2 {
    color: #0b5c94;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 2rem;
    line-height: 1;
  }
  .gray__split__content p {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.625;
    color: #727f89;
    margin-bottom: 20px;
  }
  .gray__split__button {
    display: inline-block;
    padding: 0.85rem 3.85rem;
    border: 2px solid #189bd7;
    text-decoration: none;
    color: #0f224c;
    box-shadow: none;
    font-weight: 700;
  }
  .gray__split__button:hover {
    color: #fff;
    background-color: #189bd7;
  }
  
  @media (max-width: 1280px) {
    .gray__split__container {
      padding-right: 40px;
      padding-left: 40px;
    }
  }
  
  @media (max-width: 1024px) {
    .gray__split:nth-child(1) {
      margin-bottom: 60px;
    }
    .gray__split__content {
      padding-top: 0;
    }
    .gray__split:nth-child(1) .gray__split__content {
      padding-left: 0;
      padding-right: 20px;
    }
    .gray__split:nth-child(2) .gray__split__content {
      order: 2;
      padding-right: 20px;
    }
    .gray__split:nth-child(2) .gray__split__image {
      order: 1;
    }
    .gray__split {
      flex-direction: column;
    }
    .gray__split__image {
      margin-bottom: 30px;
    }
    .gray__split__image,
    .gray__split__content {
      width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .gray__split__container {
      padding-right: 20px;
      padding-left: 20px;
    }
  }
  /* End Gray Split */
  
  /* More Info */
  .gray__more__info__bkg {
    width: 100%;
    background-color: rgb(232, 234, 236);
  }
  .more__info__container {
    max-width: 76rem;
    width: 100%;
    margin: 0 auto;
    padding: 40px 60px 90px 60px;
  }
  .more__info__title h2 {
    margin-top: 0;
    font-size: 2.95rem;
    line-height: 1;
    color: #0f224c;
    padding-bottom: 60px;
  }
  .more__info__row {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .more__info {
    width: 30%;
  }
  .more__info__image img {
    display: block;
    width: 100%;
  }
  .more__info__image {
    margin-bottom: 20px;
  }
  .more__info__button {
    display: inline-block;
    width: 100%;
    padding: 0.85rem 0;
    border: 2px solid #189bd7;
    text-decoration: none;
    color: #0f224c;
    box-shadow: none;
    font-weight: 700;
    text-align: center;
  }
  .more__info__button:hover {
    color: #fff;
    background-color: #189bd7;
  }
  
  @media (max-width: 1280px) {
    .more__info__container {
      padding-right: 40px;
      padding-left: 40px;
    }
  }
  
  @media (max-width: 1024px) {
    .more__info__row {
      flex-direction: column;
    }
    .more__info {
      width: 100%;
      margin-bottom: 40px;
    }
  
    .more__info:last-child {
      margin-bottom: 0;
    }
  }
  
  @media (max-width: 768px) {
    .more__info__container {
      padding-right: 20px;
      padding-left: 20px;
    }
  }
  /* End More Info */
  
  /* More Info Cards */
  .more__info__cards {
    max-width: 76rem;
    width: 100%;
    margin: 60px auto;
    padding: 0 60px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .more__info__card {
    width: 23%;
  }
  .more__info__card__image img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  .more__info__card__title h2 {
    color: #152b51;
    font-size: 1.075rem;
    margin-top: 0;
    margin-bottom: 20px;
  }
  .more__info__card__content p {
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.55;
    color: #727f89;
    margin: 0;
  }
  
  @media (max-width: 1280px) {
    .more__info__cards {
      padding-right: 40px;
      padding-left: 40px;
    }
  }
  
  @media (max-width: 1024px) {
    .more__info__cards {
      width: 100%;
      flex-direction: column;
    }
    .more__info__card {
      width: 100%;
      margin-bottom: 20px;
    }
  
    .column__button:last-child {
      margin-bottom: 0;
    }
  }
  
  @media (max-width: 768px) {
    .more__info__cards {
      padding-right: 20px;
      padding-left: 20px;
    }
  }
  /* End More Info Cards */
  
  /* Logo Split */
  .logo__split {
    width: 100%;
    background-color: rgb(11, 92, 148);
  }
  .logo__split__background {
    width: 100%;
    padding: 4rem 0;
    background-image: url('/media/nledu/content-assets/images/NLU-Logo.png');
    background-position: left;
    background-repeat: no-repeat;
    background-size: 50%;
  }
  .logo__split__container {
    max-width: 76rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
  }
  .logo__split__row {
    width: 100%;
    display: flex;
    flex-direction: row;
  }
  .logo__split__image,
  .logo__split__main__content {
    width: 50%;
  }
  .logo__split__image img {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 20px;
  }
  .logo__split__main__content {
    padding-left: 40px;
  }
  .logo__split__title h2 {
    color: #fff;
    font-size: 2.95rem;
    line-height: 1;
    margin-top: 0;
  }
  .blue__line__break {
    width: 110px;
    border: 1px solid #189bd7;
    margin: 20px 0;
  }
  .logo__split__content p {
    color: #fff;
    margin-bottom: 20px;
    width: 70%;
  }
  .logo__split__content ul {
    list-style-type: none;
    margin-bottom: 20px;
    padding-left: 0;
  }
  .logo__split__content .check__mark {
    color: #fff;
    background: url('/media/nledu/content-assets/images/Check-Mark.svg') no-repeat left top;
    height: 25px;
    padding-left: 30px;
  }
  .logo__split__button {
    display: inline-block;
    padding: 0.85rem 2.75rem;
    font-size: 1.125rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    box-shadow: none;
    color: #fff;
    background-color: #189bd7;
  }
  .logo__split__button:hover {
    color: #000;
    background-color: rgb(233, 234, 235);
  }
  
  .learn__more__link {
    color: #fff;
    display: inline-block;
    text-decoration: none;
    padding-top: 20px;
    box-shadow: none;
  }
  .learn__more__link::after {
    display: inline-block;
    content: "\1433";
    color: #fff;
    padding-left: 5px;
    font-size: 12px;
  }
  .learn__more__link:hover,
  .learn__more__link:hover::after {
    color: #189bd7;
  }
  
  @media (max-width: 1280px) {
    .logo__split__container {
      padding-right: 40px;
      padding-left: 40px;
    }
  }
  
  @media (max-width: 1024px) {
    .logo__split__background {
      background-size: 100%;
    }
    .logo__split__row {
      flex-direction: column;
    }
    .logo__split__image,
    .logo__split__main__content {
      width: 100%;
    }
    .logo__split__image img {
      margin-top: 0;
      margin-bottom: 20px;
    }
    .logo__split__main__content {
      padding-left: 0;
    }
  }
  
  @media (max-width: 768px) {
    .logo__split__container {
      padding-right: 20px;
      padding-left: 20px;
    }
    .logo__split__content p {
      width: 94%;
    }
  }
  /* End Logo Split */
  
  /* Content Video */
  .content__video__split {
    max-width: 76rem;
    width: 100%;
    margin: 60px auto;
    padding: 0;
    display: flex;
  }
  .content__box,
  .video__box {
    width: 50%;
  }
  .content__box {
    padding: 40px 120px 0 0;
  }
  .content__box__title h2 {
    color: #0f224c;
    font-size: 1.9rem;
    margin-top: 0;
    margin-bottom: 20px;
  }
  .content__box__description p {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.625;
    color: #727f89;
    margin-bottom: 20px;
  }
  .content__box a {
    display: inline-block;
    font-size: 1.125rem;
    text-decoration: underline;
    box-shadow: none;
    color: #189bd7;
  }
  .content__box a:hover {
    text-decoration: none;
  }
  .video__box {
    min-height: 320px;
  }
  .video__box iframe {
    width: 100%;
    height: 100%;
  }
  
  @media (max-width: 1280px) {
    .content__video__split {
      padding-right: 40px;
      padding-left: 40px;
    }
  }
  
  @media (max-width: 1024px) {
    .content__video__split {
      flex-direction: column;
    }
    .content__box,
    .video__box {
      width: 100%;
    }
    .content__box {
      padding: 0;
      margin-bottom: 20px;
    }
    .video__box {
      min-height: auto;
      height: 100%;
    }
    .video__box iframe {
      height: 200px;
    }
  }
  
  @media (max-width: 768px) {
    .content__video__split {
      padding-right: 20px;
      padding-left: 20px;
    }
  }
  /* End Content Video */
  
  /* Four Columns */
  .four__columns__container {
    max-width: 76rem;
    width: 100%;
    margin: 80px auto;
    padding: 0;
  }
  .four__columns__title h2 {
    color: #152b51;
    font-size: 1.75rem;
    margin-top: 0;
    margin-bottom: 40px;
  }
  .four__columns {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .four__column {
    width: 23%;
  }
  .four__column__image img {
    display: block;
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
  }
  .four__column__title h3 {
    color: #189bd7;
    font-size: 1.7rem;
    margin-top: 0;
    font-weight: bold;
  }
  .dark__blue__line__break {
    width: 50px;
    border: 1.5px solid #152b51;
    margin: 20px 0;
  }
  .four__column__description p {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.625;
    color: #727f89;
    width: 80%;
  }
  
  @media (max-width: 1280px) {
    .four__columns__container {
      padding-right: 40px;
      padding-left: 40px;
    }
  }
  
  @media (max-width: 1024px) {
    .four__columns {
      flex-direction: column;
    }
    .four__column {
      width: 100%;
      margin-bottom: 30px;
    }
    .four__column:last-child {
      margin-bottom: 0;
    }
    .four__column__description p {
      width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .four__columns__container {
      padding-right: 20px;
      padding-left: 20px;
    }
  }
  /* End Four Columns */
  
  /* Vertical Heading and Content */
  .vertical__heading__content {
      width: 100%;
      max-width: 76rem;
      margin: 60px auto;
      padding: 0;
    }
    .vertical__heading__content__wrap {
      width: 80%;
    }
    .vertical__heading h2 {
      margin-top: 0;
      font-size: 2.95rem;
      line-height: 1;
      color: #0f224c;
    }
    .vertical__content p {
      font-size: 1rem;
      font-weight: 400;
      letter-spacing: normal;
      line-height: 1.625;
      color: #727f89;
      margin-bottom: 20px;
    }
    .vertical__button {
      display: flex;
      flex-direction: row;
    }
    .vertical__button a {
      display: block;
      text-decoration: none;
      box-shadow: none;
    }
    .vertical__button a:first-child {
      margin-right: 30px;
    }
    .vertical__button a {
      display: inline-block;
      padding: 0.85rem 3.85rem;
      border: 2px solid #189bd7;
      text-decoration: none;
      color: #0f224c;
      box-shadow: none;
      font-weight: 700;
      text-align: center;
    }
    .vertical__button a:hover {
      color: #fff;
      background-color: #189bd7;
    }
    .vertical__button a:nth-child(2) {
      color: #fff;
      background-color: #0f224c;
      border: 2px solid #0f224c;
    }
    .vertical__button a:nth-child(2):hover {
      color: #000;
      background-color: rgb(233, 234, 235);
      border: 2px solid rgb(233, 234, 235);
    }
    
    @media (max-width: 1280px) {
      .vertical__heading__content {
        padding-right: 40px;
        padding-left: 40px;
      }
    }
    
    @media (max-width: 1024px) {
      .vertical__heading__content__wrap {
        width: 100%;
      }
      .vertical__button {
        flex-direction: column;
      }
      .vertical__button a:first-child {
        margin-right: 0;
        margin-bottom: 20px;
      }
      .vertical__button a {
        width: auto;
      }
    }
    
    @media (max-width: 768px) {
      .vertical__heading__content {
        padding-right: 20px;
        padding-left: 20px;
      }
    }
    /* End Vertical Heading and Content */
    
    /* Vertical Heading Only */
    .vertical__heading__only {
      width: 100%;
      max-width: 76rem;
      margin: 60px auto 20px;
      padding: 0;
    }
    .vertical__heading__wrap {
      width: 60%;
    }
    
    @media (max-width: 1280px) {
      .vertical__heading__only {
        padding-right: 40px;
        padding-left: 40px;
      }
    }
    
    @media (max-width: 1024px) {
      .vertical__heading__wrap {
        width: 100%;
      }
    }
    
    @media (max-width: 768px) {
      .vertical__heading__only {
        padding-right: 20px;
        padding-left: 20px;
      }
    }
    /* End Vertical Heading Only */
    
  /* Full-width Image and Content */
  .full__width__image__content {
    width: 100%;
    max-width: 76rem;
    margin: 0px auto;
  }
  .full__width__image__content .vertical__heading__only {
      margin-top: 0;
  }
  .full__width__image__content .vertical__heading__wrap {
      width: 100%;
  }
  .full__width__boxes {
    display: flex;
  }
  .full__width__boxes:nth-child(2) .full__width__image {
    order: 2;
  }
  .full__width__boxes:nth-child(2) .full__width__content {
    order: 1;
  }
  .full__width__image,
  .full__width__content {
    width: 50%;
  }
  .full__width__image {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 400px;
  }
  .full__width__content {
    padding: 60px 0px 60px 80px;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
  }
  .full__width__content ul {
    width: 100%;
  }
  .full__width__content.center {
    align-items: center;
    align-content: center;
  }
  .full__width__content__beforesection {
      padding-right: 80px;
      padding-left: 0px;
  }
  .f-row-reverse .full__width__content {
      padding-left: 0;
      padding-right: 80px;
  }
  .full__width__content.v-padding {
    padding-top: 0;
    padding-bottom: 0;
  }
  .full__width__title h2 {
    color: #0f224c;
    font-size: 1.9rem;
    margin-top: 0;
    margin-bottom: 20px;
  }
  .full__width__description {
    width: 100%;
  }
  .full__width__description p {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.625;
    color: #727f89;
    margin-bottom: 20px;
  }
  .full__width__image__content.buttons p > a, .full__width__image__content.buttons div > a, .full__width__content > a {
    margin-top: 20px;
    display: inline-block;
    padding: 0.85rem 3.85rem;
    text-decoration: none;
    border: 0.25rem solid rgb(var(--theme-accent));
    box-shadow: none;
    font-weight: 700;
  }
  .full__width__image__content.buttons p > a:hover, .full__width__image__content.buttons div > a:hover, .full__width__content > a:hover {
    color: #fff;
    background-color: rgb(var(--theme-accent));
  }
  
  @media (max-width: 1024px) {
    .full__width__boxes {
      flex-direction: column;
    }
    .full__width__image,
    .full__width__content {
      width: 100% !important;
      min-height: auto;
    }
    .full__width__image {
      height: 250px;
    }
    .full__width__content {
      padding: 40px;
    }
    .f-row-reverse .full__width__content {
        padding-left: 40px;
    }
    .full__width__boxes:first-child {
      margin-bottom: 40px;
    }
    .full__width__boxes:nth-child(2) .full__width__image {
      order: 1;
    }
    .full__width__boxes:nth-child(2) .full__width__content {
      order: 2;
    }
  }
  
  @media (max-width: 768px) {
    .full__width__content {
      padding: 20px;
    }
    .f-row-reverse .full__width__content {
        padding-left: 20px;
    }
  }
  /* End Full-width Image and Content */
  /* Finder */
  .find {
    padding: 50px 0;
  }
  /* End Finder */
  /* News */
  .card-slider {
    margin-top: 0;
    padding: 3rem 0;
    background-image: none;
  }
  .card-slider .card-slider__container::before {
    content: none;
  }
  .card-slider__container h2 {
    color: #0f224c;
  }
  .flickity-button {
    background-color: rgb(var(--theme-accent));
  }
  .flickity-button:hover {
    background-color: rgb(233, 234, 235);
  }
  .card-slider .card__image {
      background-position: center center;
      background-size: cover;
      height: 200px;
      margin: 0px;
  }
  .card-slider .card__image img {
      visibility: hidden;
  }
  /* End News */
  
  /* Events */
  .container h2 {
    color: #0f224c;
  }
  .events {
    margin-bottom: 3rem;
  }
  /* End Events */
  
  /* Footer */
  .prefooter {
    background-color: rgb(var(--blue-light));
    max-width: none;
  }
  .prefooter__top {
      background-color: rgb(var(--blue-light));
      max-width: 90rem;
      margin: auto;
  }
  @media (min-width: 48em) {
    .prefooter__content__heading {
        font-size: 3.0rem;
        line-height: 1;
    }
  }
  .button--alt--blue-light {
    border: 0.25rem solid #fff;
    color: #fff;
  }
  .button--alt--blue-light:hover {
    border-color: rgb(233, 234, 235);
    background-color: rgb(233, 234, 235);
    color: rgb(32, 32, 32);
  }
  .prefooter .prefooter__bottom {
    display: none;
  }
  /* End Footer */
  
  /* Buttons */
  .button--alt--midnight:hover {
    background-color: #0B5C94;
    border-color: #0B5C94;
  }
  .button--alt--mid {
    min-width: 350px;
  }
  /* End Buttons */
  /* List Item */
  .list__item__container {
    margin-bottom: 20px;
  }
  .vertical__item__item {
    margin-bottom: 25px;
  }
  .vertical__item__item p {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .list__item {
    display: flex;
  }
  .list__item__number {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid #189BD7;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .list__item__icon {
    width: 45px;
    height: 45px;
    background-size: cover;
    background-position: center center;
    flex: 0 0 45px;
  }
  .list__item__image {
    padding-bottom: 50%;
    width: 50%;
    background-position: top center;
    border-radius: 50%;
    background-size: cover;
    margin: 0 auto 10px;
  }
  .list__item_content {
    flex: 1 1 auto;
    padding: 0 20px;
  }
  
  .list__item_content p:first-child {
    margin-top: 0px;
  }

  ul.clean-ul {
    padding-left: 0px;
  }
  
  ul.clean-ul li {
    list-style: none;
    padding: 5px;
    margin: 5px 0px;
    border: 2px solid rgb(var(--theme-accent));
  }

  /* End List Item */
  
  /* Breadcrumbs */
  .breadcrumbs {
      padding-right: 0;
      padding-left: 0;
  }
  .breadcrumbs, .breadcrumbs a:hover {
      color: #189BD7;
      font-size: 18px;
      font-weight: bold;
      text-decoration: none;
  }
  
  .breadcrumbs a, .breadcrumbs span {
      color: #727F89;
      text-decoration: none;
      box-shadow: none;
  }
  /* End Breadcrumbs */
  /* Carets */
  .caret {
      border: 1px solid #727F89;
      border-left-width: 0px;
      border-bottom-width: 0px;
      width: 7px;
      height: 7px;
      top: 45%;
      top: calc(50% - 3px);
      display: inline;
  }
  .caret.absolute {
      position: absolute;
  }
  .caret:hover, li:hover .caret {
      border-color: #189BD7;
  }
  .caret-right {
    transform: rotate(45deg);
    right: 0px;
    float: right;
  }
  .caret-left {
    transform: rotate(-135deg);
    left: 0px;
    float: left;
  }
  .caret-up {
    transform: rotate(-45deg);
  }
  .caret-down {
    transform: rotate(135deg);
  }
  /* End Carets */
  
  /* Secnav */
  .secnav-bar {
      padding: 1rem 0;
      background-color: rgb(var(--theme-accent));
      font-size: 20px;   
  }
  .secnav-bar .secnav__container { 
    max-width: 76rem;
    padding: 0;
  }
  .secnav-bar select {
    font-size: 16px;
    color: grey;
    height: 50px;
    min-width: 220px;
    padding: 0px 10px;
    margin-left: 20px;
  }
  .secnav__image {
        left: calc(50% + 6rem);
    }
  
  .hero__container .secnav__image {
    bottom: unset;
  }
  /* EndSecNav */
  /* Subnav */
  .subnav {
      font-size: 18px;
      font-weight: bold;
      color: #727F89;
  }
  .subnav__toggle {
      font-size: 18px;
  }
  .subnav__list li{
      position: relative;
  }
  .subnav__list li:hover {
      color: #189BD7;
  }
  .subnav__list li:hover a {
      box-shadow: none;
  }
  /* End SubNav */
  /* Tabs */
  .tabs {
    margin-bottom: 0px;
  }
  .tabs__toggle--active + .tabs__content {
    display: flex;
    flex-wrap: wrap;
  }
  .tabs__content > div {
    flex-basis: 50%;
  }
  .tabs img {
    padding-right: 30px;
    margin: 0 auto;
  }
  @media (max-width: 768px) {
    .tabs__content > div {
      flex-basis: 100%;
    }
  }
  /* End Tabs */
  /* Columns */
  .columns-1 {
    flex-basis: 100%;
    width: 100%;
  }
  .columns-2 {
    flex-basis: 50%;
    width: 50%;
  }
  .columns-3 {
    flex-basis: 33%;
    width: 33%;
  }
  .columns-4 {
    flex-basis: 25%;
    width: 25%;
  }
  .columns-5 {
    flex-basis: 20%;
    width: 20%;
  }
  .columns-6 {
    flex-basis: 16%;
    width: 16%;
  }
  .columns-7 {
    flex-basis: 14%;
    width: 14%;
  }
  .columns-8 {
    flex-basis: 12.5%;
    width: 12.5%;
  }
  .columns-9 {
    flex-basis: 11.1%;
    width: 11.1%;
  }
  .columns-10 {
    flex-basis: 10%;
    width: 10%;
  }
  @media (max-width: 1024px) {
    .colored-boxes.college__boxes {
        flex-direction: row;
    }
    .colored-boxes.college__boxes a {
        margin: 5px;
        height: 240px;
    }
    .columns-7, .columns-8, .columns-9, .columns-10 {
        flex-basis: 20%;
        width: 20%;
    }
    .columns-5, .columns-6 {
        flex-basis: 25%;
        width: 25%;
    }
    .columns-3, .columns-4 {
        flex-basis: 50%;
        width: 50%;
    }
    .columns-2 {
        flex-basis: 100%;
        width: 100%;
    }
  }
  @media (max-width: 768px) {
    [class|="columns"] {
      flex-basis: 100%;
      width: 100%;
    }
  }
  /* End Columns */
  /* Paged Widget */
  .paged__widget {
    margin: 0;
  }
  .paged__widget .paged__content {
    display: none;
  }
  .paged__widget .paged__content:first-child {
    display: block;
  }
  .paged__content p {
    margin: 5px 0 5px 0;
  }
  .paged__widget .pagination {
    margin-bottom: 0;
  }
  .paged__widget .pagination > a {
    border-radius: 50%;
    padding: 0.25rem 0.75rem;
  }
  @media (max-width: 1024px) {
    .paged__widget {
        width: 100%;
    }
  }
  /* End Paged Widget */
  /* Job Listing */
  .job-listing > div {
    padding-right: 20px;
  }
  .job-listing .finder__filters__list {  
      max-height: 60vh;
      overflow-y: auto;
  }
  .job-listing .finder__status__current:empty::before {
      content: 'All Jobs';
  }
  @media (min-width: 64em) {
      .job-listing .finder__item {
          width: calc(50% - 2rem);
      }
  }
  /* End Job Listing */
  
  /* Vertical Home Hero */
  .vertical > .splash > .splash__items {  
      height: auto;
      width: 100%;
      position: static;
      display: none;
  }
  .vertical > .splash > .splash__items > .splash__item {  
      width: auto;
      height: 9rem;
      min-width: 200px;
      flex: 1 1 14.2857143%;
  }

  .vertical > .splash .splash__item:hover .splash__story, .vertical > .splash .splash__item:focus-within .splash__story {
      -webkit-transform: translateY(-100%);
      transform: translateY(-100%);
      width: 100%;
  }
  .vertical > .splash .hero__container {
    min-height: 30rem;
  }
  /* End Vertical Home Hero */
  /* Colors */
  [class|="text"] h2,
  [class|="text"] h4,
  [class|="text"] p,
  [class|="text"] a,
  [class|="text"] li {
    color: var(--text--color);
  }
  [class|="text"] a {
    text-decoration: none;
    box-shadow: inset 0 -0.125em var(--text--color);
  }
  [class|="text"] a:hover {
    text-shadow: 0px 0px 5px var(--text--color);
  }
  .text-white h2,
  .text-white h4,
  .text-white p,
  .text-white a,
  .text-white li {
    --text--color: white;
  }
  .text-blue h2,
  .text-blue h4,
  .text-blue p,
  .text-blue a,
  .text-blue li {
    --text--color: blue;
  }
  .text-green h2,
  .text-green h4,
  .text-green p,
  .text-green a,
  .text-green li {
    --text--color: green;
  }
  .text-blue-light h2,
  .text-blue-light h4,
  .text-blue-light p,
  .text-blue-light a,
  .text-blue-light li {
    --text--color: lightblue;
  }
  .text-midnight h2,
  .text-midnight h4,
  .text-midnight p,
  .text-midnight,
  .text-midnight li a {
    --text--color: midnightblue;
  }
  .text-orange h2,
  .text-orange h4,
  .text-orange p,
  .text-orange a,
  .text-orange li {
    --text--color: orange;
  }
  .text-purple h2,
  .text-purple h4,
  .text-purple p,
  .text-purple a,
  .text-purple li {
    --text--color: purple;
  }
  .text-red h2,
  .text-red h4,
  .text-red p,
  .text-red a,
  .text-red li {
    --text--color: red;
  }
  .text-yellow h2,
  .text-yellow h4,
  .text-yellow p,
  .text-yellow a,
  .text-yellow li {
    --text--color: yellow;
  }
  /* End Colors */

.chapters__item > img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
    
.chapters__item:has(.chapters__title:empty) {
    display: none;
}
    
/* Start Full Width Navbar */

.full__width__nav__container > input {
  display: none;
}

.full__width__nav__container > label {
  display: none;
}

.full__width__nav__container .full__width__nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background-color: rgb(21, 43, 81);
  color: rgb(255, 255, 255);
  padding: .75rem;
  gap: 4rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.full__width__nav__container .full__width__nav a {
  font-size: 1.25rem;
  padding: 0 .5rem;
}

@media (max-width: 1024px) {
  .full__width__nav__container .full__width__nav {
    flex-direction: column;
    padding: 0 1rem;
    gap: 1.5rem;
  }

  .full__width__nav__container .full__width__nav a {
    font-size: 1.25rem;
    padding-bottom: .25rem;
    padding-right: 6rem;
  }


  .full__width__nav__container {
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .full__width__nav__container > label {
    width: 100% - 2rem;
    font-size: 1.4rem;
    background-color: rgb(21, 43, 81);
    border-bottom: 1px solid white;
    color: white;
    padding: 1rem;
    height: 4rem;
    display: block;
  }

  .full__width__nav__container input:checked~.full__width__nav__body {
    grid-template-rows: 1fr;
  }

  .full__width__nav__container .full__width__nav__body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
  }

  .full__width__nav__container input:checked~.full__width__nav__body .full__width__nav {
    padding: 1rem;
  }

  .full__width__nav__container .expand-btn {
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    --item-thickness: 4px;
    top: 1.25rem;
    right: 1.25rem;
    pointer-events: none;
  }

  .full__width__nav__container .expand-btn::before,
  .full__width__nav__container .expand-btn::after {
    content: "";
    position: absolute;
    background-color: white;
    transition: transform 0.3s ease;
  }

  .full__width__nav__container .expand-btn::before {
    height: var(--item-thickness);
    top: calc(50% - calc(var(--item-thickness) * 0.5));
    left: 0;
    right: 0;
  }

  .full__width__nav__container .expand-btn::after {
    width: var(--item-thickness);
    left: calc(50% - calc(var(--item-thickness) * 0.5));
    top: 0;
    bottom: 0;
    transform: rotate(0deg);
  }

  .full__width__nav__container input:checked~.expand-btn::before {
    transform: rotate(-180deg);
  }

  .full__width__nav__container input:checked~.expand-btn::after {
    transform: rotate(-270deg);
  }
}
    
/* End Full Width Navbar */















