/* General */
.blur-up {
  -webkit-filter: blur(5px);
  filter: blur(5px);
  transition: filter 400ms, -webkit-filter 400ms;
}

.blur-up.lazyloaded {
  -webkit-filter: blur(0);
  filter: blur(0);
}

.testimonialContent > p {
  color: white;
  font-size: 1.35rem;
  font-weight: 600;
}

.testimonialContent > p.testimonialPerson {
  font-size: 1rem;
  padding-top: 1rem;
}

.whyTRUHighlights .columns {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contentArea {
  position: relative;
}

.sticky-nav.stuckMenu.isStuck {
  display: none;
}

.programHeading {
  font-weight: 600;
  font-size: 1.35rem;
}

#program-container {
  display: flex;
  flex-direction: column;
}

.orderMinusOne {
  order: -1;
}

p,
li {
  color: var(--blue);
}

.bodywrap strong,
strong {
  font-weight: 600;
}

.hidden {
  opacity: 0;
}

.visible {
  opacity: 1;
}

/* Colours */

:root {
  --light-grey: #f1f5f6;
  --blue: #003e51;
  --teal: #00b0b9;
  --yellow: #ffcd00;
  --teal-dark: #429da1;
  --teal-dark: #429da1;
}

.lightGreyBG {
  background: var(--light-grey);
}

.whitebg * {
  color: var(--blue);
}

/* Banners */

.program-banner-2020 {
  clear: both;
  width: 100%;
}

/* Header */
.program-page-magellan-container {
  padding: 1rem 0;
  background: white;
  transition: all 0.2s ease-out;
}

.program-page-magellan-container.fixed {
  box-shadow: 0 4px 4px -4px #858585;
}

.programTitle {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.65rem 0 3rem;
  background: white;
  transition: all 0.2s ease-out;
}

.programTitle h1 {
  margin-top: 0;
  transition: all 0.2s ease-out;
  font-weight: 600;
  border-left: 8px solid var(--teal);
  padding: 0.25rem 1rem;
  margin-bottom: 2rem;
}

.key-message p {
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--blue);
  margin: 0;
  transition: all 0.2s ease-out;
  text-align: center;
}

.out-wrap {
  max-width: 95rem;
  margin: 0 auto;
  transition: all 0.2s ease-out;
  padding: 0 1rem;
  transition: border-color 0.2s ease-out;
}

dl.program-page-magellan {
  display: flex;
  justify-content: space-between;
  background: var(--light-grey);
  border-radius: 10rem;
  margin-bottom: 0;
  flex: 1;
  scrollbar-width: none;
  overflow-x: scroll;
  overflow-y: hidden;
  flex-wrap: nowrap !important;
  transition: background 0.2s ease-out;
  padding: 0 1rem;
}

dl.program-page-magellan::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.program-page-magellan-container.fixed dl.program-page-magellan {
  background: var(--blue);
}

.program-page-magellan-container.fixed dl.program-page-magellan dd a {
  color: white;
}

dl.program-page-magellan dd {
  padding: 0.8rem 0.5rem;
  text-align: center;
  margin: 0;
  font-size: 1rem;
}

dl.program-page-magellan dd.active a {
  color: var(--teal) !important;
}

dl.program-page-magellan dd a {
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.1s ease-out;
}

dl.program-page-magellan dd a:hover,
dl.program-page-magellan dd a:active {
  text-decoration: underline !important;
  transition: all 0.1s ease-out;
}

dl.program-page-magellan dd + dd {
  display: flex;
}

.program-page-magellan-container a.magellanCTA {
  flex-basis: 140px;
  margin-left: 2rem;
  border-radius: 50px;
  font-weight: 600;
  padding: 0.8rem 0.5rem;
  font-size: 1rem;
  text-align: center;
  text-decoration: none !important;
  transition: all .1s ease-out !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.program-page-magellan-container a.magellanCTA:active {
  transform: scale(.98);
}

.program-page-magellan-container a.magellanCTA:active,
.program-page-magellan-container a.magellanCTA:hover {
  background: var(--blue) !important;
  color: white !important;
  text-decoration: underline !important;
}

/* Why TRU */

.whyTRU {
  padding: 5rem 3rem;
}

.highlights {
  padding: 5rem;
  height: 100%;
  display: flex;
  align-items: center;
}

.banner-with-promo {
  position: relative;
}

.promo-pagelet {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1rem 0;
  /* background: #007B81; */
}

.promo-pagelet * {
  color: #ffffff;
}

.promo-pagelet > *:last-child {
  margin-bottom: 0;
}

.promo-pagelet h3,
.promo-pagelet h4,
.promo-pagelet h5 {
  font-weight: 600;
}

.promo-pagelet a,
.promo-pagelet a:link {
  color: #ffffff;
  text-decoration: underline;
  transition: all .2s ease-out;
}

.promo-pagelet a:hover,
.promo-pagelet a:active,
.promo-pagelet a:link:hover,
.promo-pagelet a:link:active {
  text-decoration: none;
}

@media only screen and (max-width: 64rem) {
  .whyTRU {
    padding: 4rem 2rem;
  }
  .highlights {
    padding: 2rem;
  }
}

.highlights dt {
  font-size: 1.25rem;
  font-weight: 600;
}

.highlights dd + dt {
  margin-top: 2rem;
}

@media only screen and (max-width: 40rem) {
  
  .whyTRUHighlights h2 {
    text-align: center;
  }

  .whyTRU h2 span {
    white-space: nowrap;
  }

  .highlights {
    padding: 4rem 2rem;
  }
}

/* What will I learn? */

.whatWillILearn {
  display: flex;
}

.whatWillILearn > div > img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.whatWillILearn > div:nth-of-type(2) {
  flex: 5;
}

.whatWillILearn > div:first-of-type,
.whatWillILearn > div:nth-of-type(3) {
  flex: 4;
}

@media only screen and (max-width: 109rem) {
  .whatWillILearn > div:nth-of-type(3) {
    flex: 2;
  }
}

@media only screen and (max-width: 95rem) {
  .whatWillILearn > div:nth-of-type(3) {
    flex: 1;
  }
}

@media only screen and (max-width: 75rem) {
  .whatWillILearn > div:first-of-type,
  .whatWillILearn > div:nth-of-type(2) {
    flex: 1;
  }

  .whatWillILearn > div:nth-of-type(3) {
    flex: 0;
  }
}

@media only screen and (max-width: 64rem) {
  
  .whatWillILearn > div:nth-of-type(2) {
    padding: 3rem 2rem;
  }

  .whatWillILearn > div:nth-of-type(2) hr.spacer {
    display: none;
  }

}

.whatWillILearn .columns {
  border-left: 8px solid var(--teal-dark);
}

@media only screen and (max-width: 40rem) {
  
  .whatWillILearn {
    padding-top: 0;
    flex-direction: column;
  }

  .whatWillILearn hr.spacer {
    display: none;
  }

  .whatWillILearn > div:nth-of-type(2) {
    padding: 3rem 1rem;
  }

  .whatWillILearn h2 {
    text-align: center;
  }

}

/* Program Requirements */

#accordion {
  padding: 0.3rem;
}
ul.link-list {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 2rem;
  margin: 0 !important;
}
.link-list li {
  list-style-type: none;
  margin-bottom: 0.5rem;
  margin-right: 0.5rem;
}
#accordion h6 {
  padding: 0.5rem 1.5rem 0.5rem 1rem;
  cursor: pointer;
  position: relative;
  margin: 0.3rem 0 0 0 !important;
  transition: all .2s ease-out;
}
#accordion h6:first-of-type {
  margin: 0 !important;
}
.ui-accordion-header:not(.ui-accordion-header-active)::after {
  content: "\f067";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  right: 1rem;
  font-weight: 500;
}
.ui-accordion-header-active::after {
  content: "\f068";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  right: 1rem;
  font-weight: 500;
}
.ui-accordion-header {
  background-color: white;
}
.borderTealDark {
  border-left: 6px solid var(--teal-dark);
}
.borderBlue {
  border-left: 6px solid var(--blue);
}

.coursesContainer ul {
  margin-top: 1rem;
  list-style: none;
  margin-left: 0;
}

.coursesContainer ul li {
  background: white;
  padding: .5rem 1rem;
}

.coursesContainer ul li + li {
  margin-top: 0.25rem;
}

.coursesContainer ul li {
  font-weight: 600;
  font-size: 0.8125rem;
}

.coursesContainer .accordion-content {
  margin-left: 0;
}

.coursesContainer .accordion-content > p {
  padding: .25rem 1rem 0.5rem;
  font-size: 0.8125rem;
  background: white;
  margin-bottom: .25rem;
}

.coursesContainer h6.borderTealDark + .accordion-content {
    border-left: 6px solid var(--teal-dark);
}

.coursesContainer h6.borderBlue + .accordion-content {
    border-left: 6px solid var(--blue);
}

.coursesContainer .accordion-content ul {
  margin: 0;
}

.programRowThree > .columns:first-child {
  padding-left: 0;
  padding-right: 0.5rem;
}

.programRowThree > .columns:nth-child(2) {
  padding-left: 0.5rem;
  padding-right: 0;
}

.requirements .tabs {
  display: flex;
  border: none;
}

.requirements .tabs .tab-title {
  border: none;
}

.requirements .tabs .tab-title.active a {
  background: var(--teal) !important;
}

.requirements .tabs .tab-title:first-of-type a {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}

.requirements .tabs .tab-title:nth-of-type(2) a {
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}

@media only screen and (max-width: 40rem) {
  .requirements .tabs .tab-title:first-of-type a,
  .requirements .tabs .tab-title:nth-of-type(2) a  {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}

.requirements .tabs .tab-title a {
  border: 2px solid var(--teal) !important;
  font-weight: 600;
  text-decoration: none !important;
  cursor: pointer;
  transition: all .2s ease-out !important;
  font-size: 1.25rem;
}

.requirements .tabs .tab-title a:hover {
  background: var(--teal) !important;
}

.requirements .tabs .tab-title:not(.active) a {
  color: white
}

.requirements .tabs li {
  flex: 1;
}

.admissionRequirements h2 {
  text-align: center;
  padding-bottom: 3rem;
}

.admissionRequirements span.steps {
  background: var(--teal-dark);
  border-radius: 100%;
  height: 100px;
  width: 100px;
  color: white;
  font-size: 2.5rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.admissionRequirements > .row {
  display: flex;
}

.programRowTwo {
  display: flex;
}

.programRowTwo .columns:first-child {
  padding-left: 0;
  padding-right: .5rem;
}

.programRowTwo .columns:nth-child(2) {
  padding-left: .5rem;
  padding-right: .5rem;
}

.programRowTwo .columns:nth-child(3) {
  padding-left: .5rem;
  padding-right: 0;
}

.programRowTwo span.programOption {
  border-radius: 100%;
  height: 130px;
  width: 130px;
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.programRowTwo .fullHeight {
  height: 100%;
}

.stepsColumn > div {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.textColumn {
  padding: 2rem;
}

.textColumn *:last-child {
  margin-bottom: 0;
}

.admissionRequirements .row .row + .row {
  border-top: 0.25rem solid var(--light-grey);
}

@media only screen and (max-width: 40rem) {

  .requirements .tabs .tab-title a{
    font-size: 1.125rem;
  }

  .programRowThree > .columns:first-child {
    padding-right: 0;
  }

  .programRowThree > .columns:nth-child(2) {
    padding-left: 0;
  }

  .requirements > .row.m1top {
    margin-top: 0 !important;
  }

  .requirements .accordion-toggle {
    text-align: center;
  }

  .requirements .accordion-toggle.m0top {
    margin-bottom: 2rem;
  }

  .requirements hr.spacer {
    display: none;
  }

  .requirements {
    padding-bottom: 0;
  }

  .requirements .tabs {
    display: none;
  }

  .tabs-content > .content {
    display: block;
    float: none;
  }

  section.content .row.m1top {
    margin-top: 0 !important;
    background: white;
  }

  .programRowTwo {
    display: block;
  }

  .programRowTwo .fullHeight {
    display: flex;
    align-items: center;
  }

  .programRowTwo .fullHeight ul {
    flex: 0 1 250px;
    padding-left: 2.5rem;
    padding-right: 0;
    margin-top: 0;
  }

  .programRowTwo .columns:first-child,
  .programRowTwo .columns:nth-child(2),
  .programRowTwo .columns:nth-child(3) {
    padding-left: 0;
    padding-right: 0;
  }

  .programWorks p {
    text-align: left;
  }

  .programRowThree .coursesContainer {
    padding: 0;
    padding-bottom: .5rem;
  }

  .admissionRequirements > .row {
    display: block;
  }

}

/* Outcomes */

.outcomes h2 {
  text-align: center;
}

.outcomes span.number,
.outcomes span.statDetails {
  display: block;
  text-align: center;
  font-weight: 600;
}

.outcomes span.number {
  font-size: 4rem;
  line-height: 1.1;
}

.outcomes span.statDetails {
  margin-top: 1rem;
}

.outcomes .circle {
  background: var(--teal);
  color: white;
  height: 280px;
  width: 280px;
  display: flex;
  align-items: center;
  padding: 1.5rem;
  text-align: center;
  border-radius: 190px;
  margin: 0 auto;
}

/* Testimonials */

.slideNumber {
  background: var(--teal);
  color: white;
  padding: 0.5rem 1rem;
  display: inline-block;
  font-weight: 600;
  font-size: 1.4rem;
}

.testimonial {
  display: flex;
  align-items: center;
}

.testimonial > * {
  flex: 1;
}

.testInfo {
  padding: 5rem;
  position: relative;
  height: 900px;
}

.testimonialContent {
  padding: 0 5rem;
  position: absolute;
  left: 0%;
  top: 50%;
  transform: translateY(-50%);
}

.testimonialContent p {
  color: white;
}

button.slick-prev {
  left: 4.75rem;
  top: 89.3%;
}

button.slick-next {
  right: auto;
  left: 8rem;
  top: 89.3%;
}

@media only screen and (max-width: 64rem) {
  .testInfo {
    padding: 2rem;
    height: 850px;
  }

  .testimonialContent {
    padding: 0 2rem;
  }

  button.slick-prev {
    left: 2rem;
    top: 802px;
    margin: 0;
    bottom: auto;
  }

  button.slick-next {
    right: auto;
    left: 4.5rem;
    top: 802px;
    margin: 0;
    bottom: auto;
  }
}

@media only screen and (max-width: 40rem) {

  .testimonial > * {
    flex: auto;
  }

  .testimonial {
    flex-direction: column;
    align-items: normal;
  }

  .testInfo {
    order: 1;
    padding: 1rem;
    height: auto;
  }

  .testimonialContent {
    padding: 3rem 0 0rem;
    height: auto;
    position: static;
    transform: none;
  }

  .testimonialPhoto {
    order: 0;
  }

  .testimonialPhoto img {
    height: 15rem;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }

  .slideNumber {
    padding: 0.25rem 0.5rem;
    font-size: 1.15rem;
  }

  button.slick-prev {
      left: auto;
      top: 17rem;
      right: 3rem;
  }

  button.slick-next {
    left: auto;
    top: 17rem;
    right: 1rem;
  }

  hr.spacer {
    height: 0;
  }
}

/* Faculty Highlights */

.facultyHighlights h2 {
  text-align: center;
  padding-bottom: 3rem;
}

.facultyHighlights .columns .bluebg {
  height: 100%;
}

.facultyName {
  text-align: center;
  padding: 0.75rem;
  background: white;
  position: relative;
  top: -4.5rem;
  margin-bottom: -4.5rem;
}

.facultyName p {
  font-weight: 600;
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

.facultyHighlights .flexCol {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.facultyHighlights .flexCol > div {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.facultyHighlights .flexCol > div > div.lightGreyBG.h2pad.v2pad {
  flex: 1;
  border-top: 0.25rem solid var(--blue);
}

/* Fees */

.fees .blueCircleBackground {
  background-image: url("../images/bluecircle.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.bluecircle {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  align-items: center;
  margin: 0 auto;
  padding: 2rem 0;
}

.bluecircle * {
  color: white;
}

.bluecircle .widget form {
  max-width: 450px;
  width: 100%;
  margin: 0 auto 2rem;
}

.radleft {
  padding: 0.7rem 0.8rem 0.7rem 1.1rem;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}

.radright {
  padding: 0.7rem 1.1rem 0.7rem 0.8rem;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}

.fees .button-group .button {
  width: 130px;
}

.fees .button-group > li .button,
.fees .button-group > li > button {
  border-left: none;
}

.fees .button-group > li + li {
  margin-left: 0.1rem;
}

.item-type {
  background: transparent;
  border: 2px solid var(--teal) !important;
  color: var(--teal);
  transition: all 0.1s ease-out;
  font-weight: 600;
}

.item-type-active {
  background: var(--teal);
  border: 2px solid var(--teal) !important;
  color: white;
}

.item-type:hover,
.item-type:active {
  background: var(--teal) !important;
  border: 2px solid var(--teal) !important;
}

.item-type:active {
  transform: scale(0.98);
}

#tuition-table {
  background: transparent;
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
}

#tuition-table tr:nth-child(2),
#tuition-table tr:nth-child(3) {
  border-top: none !important;
}

#tuition-table td {
  font-size: 1.125rem;
  font-weight: 600;
}

#tuition-table tr td:first-of-type {
  padding-left: 1.5rem;
}

#tuition-table tr td:nth-of-type(2) {
  padding-right: 1.5rem;
}

#tuition-table td span.typically {
  color: var(--teal);
}

#tuition-table tbody tr.subheading {
  border-top: none;
}

#tuition-table tbody tr.subheading td {
  background: white;
}

#tuition-table tbody tr.subheading td {
  color: var(--blue);
}

#tuition-table tbody tr.subheading span.calc-total {
  color: var(--blue);
}

#tuition-table tbody tr.subheading td:first-of-type {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  border-left: 1rem solid transparent;
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
  padding-left: 1.1rem;
}

#tuition-table tbody tr.subheading td:nth-of-type(2) {
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  border-right: 1rem solid transparent;
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
  padding-right: 1.1rem;
}

.irs-bar,
.irs-single {
  background-color: var(--teal) !important;
  cursor: pointer;
}

.irs-handle {
  border: 4px solid var(--teal) !important;
  cursor: pointer;
}

.irs-handle:hover {
  background-color: white;
}

.irs-line {
  background-color: white !important;
  height: 8px !important;
  cursor: pointer;
}

.irs--round .irs-grid-text {
  color: white !important;
  font-weight: 600;
}

.irs--round .irs-from,
.irs--round .irs-to,
.irs--round .irs-single {
  font-weight: 600;
}

.irs-grid-pol.small {
  display: none;
}

.irs--round .irs-grid-pol {
  background-color: white !important;
  width: 2px;
}

.irs-bar {
  height: 8px !important;
  cursor: pointer;
}

.irs--round .irs-min,
.irs--round .irs-max {
  color: transparent !important;
  background-color: transparent !important;
}

@media only screen and (max-width: 47rem) {
  
  .fees .blueCircleBackground {
    background-size: cover;
  }

  .widget {
      padding: 0 1rem;
  }

  #tuition-table td span.typically {
    line-height: 1;
  }

}

@media only screen and (max-width: 22rem) {

  .widget {
      padding: 0 .5rem;
  }

}

/* Media */

.media h2 {
  text-align: center;
  padding-bottom: 3rem;
}

/* Contact Us */

.contactUs h2,
.contactUs p,
.contactUs h5 {
  text-align: center;
}

.contactUs h2 {
  padding-bottom: 3rem;
}

.contactUs .contactTypes {
  height: 100%;
}

.contactUs .contactLink {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: white;
  border-left: 8px solid var(--blue);
}

.contactUs .contactLink p:nth-of-type(2) {
  text-align: right;
}

.contactUs .contactLink + .contactLink {
  margin-top: 1rem;
}

.contactUs  a[href^="tel:"]::after {
    content: "\f095";
    font: normal normal 300 .9rem/1 Font Awesome\ 5 Pro;
    display: inline-block;
    text-decoration: none !important;
    padding: 0 0.25rem;
}

.contactUs a[href^="mailto:"] {
  color: var(--blue) !important;
}

.contactUs .contactLink p {
  text-align: left;
  color: var(--blue);
  margin: 0;
}

.contactUs select,
.contactUs input {
  background-color: white;
  border: none;
  border-radius: 50px;
  padding: 1.5rem 1rem;
}

.contactUs select {
  background-position: 97% center;
  position: relative;
}

.contactUs select::after {
  position: absolute;
  right: 1rem;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  content: "\f078";
}

.contactUs .full-name {
  margin-top: 0.5rem;
}

.contactUs label {
  font-size: 1.125rem;
  color: #003e51;
  margin-bottom: 0.75rem;
}

.contactUs .contact-about,
.contactUs .email-address,
.contactUs .message,
.contactUs .submit {
  margin-top: 3rem;
}

.contactUs #message {
  height: 160px;
  border-radius: 0;
  border: none;
}

.contactUs .submit {
  text-align: center;
}

.contactUs #submit {
  width: 300px;
  height: 3rem;
  line-height: 1;
  cursor: pointer;
  font-size: 1rem;
  color: white;
  background: var(--blue);
  font-family: adelle-sans, sans-serif;
  padding: 0 1rem;
  appearance: none;
  transition: all 0.1s ease-out;
}

.contactUs #submit:hover,
.contactUs #submit:active {
  background: var(--teal);
}

.contactUs #submit:active {
  transform: scale(0.98);
}

.contactUs .submit label {
  display: none;
}

@media only screen and (max-width: 64rem) {
  .contactUs .contactTypes {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media only screen and (max-width: 40rem) {

  .contactUs .contactTypes {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .contactUs .contactTypes ul {
    max-width: 400px;
    margin: 0 auto;
  }

  .contactUs .contactTypes h5 {
    margin-top: 1rem;
  }

  .contactUs .lastContactUs {
    padding-bottom: 2rem;
  }

  .contactUs .contactLink {
    flex-direction: column;
    padding: 1rem;
    border-left: none;
  }

  .contactUs .contactLink p {
    text-align: center !important;
  }

  .contactUs .contactLink p + p {
    margin-top: 1rem;
  }

}

/* Next Steps */

.nextSteps h2 {
  text-align: center;
  padding-bottom: 3rem;
}

.ctaButton {
  padding: 0.8rem 1.5rem !important;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  width: 300px;
  display: block;
  text-decoration: none !important;
  transition: all 0.1s ease-out;
  margin: 0 auto;
}
.ctaButton:hover,
.ctaButton:active {
  background-color: var(--blue) !important;
  color: white !important;
}

.ctaButton:active {
  transform: scale(0.98);
}

.nextSteps a[href$=".pdf"] {
  color: white !important;
  text-decoration: underline !important;
}

.nextSteps a[href$=".pdf"]:hover {
  text-decoration: none !important;
}

.nextSteps a[href$=".pdf"]:after {
  content: none !important;
}

.flexRow {
  display: flex;
}

.flexRow > a:first-of-type {
  margin-right: .5rem;
}

.flexRow > a:nth-of-type(2) {
  margin-left: .5rem;
}

.flexRow a .aboutTRU,
.flexRow a .aboutKamloops {
  position: relative;
}

.flexRow a .aboutTRU:after,
.flexRow a .aboutKamloops:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: transparent;
  transition: background .2s ease-out;
}

.flexRow a:active .aboutTRU:after,
.flexRow a:hover .aboutTRU:after,
.flexRow a:active .aboutKamloops:after,
.flexRow a:hover .aboutKamloops:after {
  background: rgba(0,62,81,.3);
}

.flexWrap {
  display: flex;
  flex-direction: column;
}

.programPackage,
.applyNow,
.program-website {
  width: 100%;
  height: 5rem;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .1s ease-out;
}

a.applyNowLink,
a.programPackageLink,
a.program-website-link {
  margin-bottom: 1rem;
}

a.programPackageLink,
a.program-website-link {
  color: #ffffff !important;
}


a.applyNowLink:active,
a.programPackageLink:active {
  transform: scale(.98);
}

.aboutTRULink,
.aboutKamloopsLink {
  flex: 1;
}

.aboutTRULink:active,
.aboutKamloopsLink:active {
  transform: scale(.98);
}

.aboutTRULink h5,
.aboutKamloopsLink h5 {
  background: var(--blue);
  padding: .75rem 1rem;
  text-align: center;
  text-decoration: underline !important;
  transition: all .1s ease-out;
}

.aboutTRULink:hover h5,
.aboutTRULink:active h5,
.aboutKamloopsLink:active h5,
.aboutKamloopsLink:hover h5 {
  text-decoration: none !important;
}

.relatedContainer {
  padding: 3rem;
  background: var(--blue);
}

@media only screen and (max-width: 64rem) {
  .relatedContainer {
    padding: 2rem;
  }
}

@media only screen and (max-width: 40rem) {
  .flexRow {
    flex-direction: column;
  }
  .flexRow > a:first-of-type {
    margin-right: 0;
  }
  .flexRow > a:nth-of-type(2) {
    margin-left: 0;
  }
  .relatedContainer {
    padding: 1rem;
  }
}

ul.related {
  list-style: none;
}

ul.related li {
  padding: .5rem;
  text-align: center;
  background: white;
  font-weight: 600;
  width: 100%;
  margin: 0 auto;
}

ul.related li + li {
  margin-top: 1rem;
}



.out-wrap a.magellanCTA {
  display: none;
}

@media only screen and (max-width: 85.375rem) {
  #program-nav {
    display: none;
  }
}


@media only screen and (max-width: 84rem) {
  .out-wrap {
    padding: 0;
  }

  .program-page-magellan-container {
    padding: 0;
  }

  dl.program-page-magellan {
    border-radius: 0;
  }
}

@media only screen and (max-width: 75rem) {

  dl.program-page-magellan {
    padding: 0 .25rem .25rem;
  }

  dl.program-page-magellan dd {
      font-size: .95rem;
  }

}

@media only screen and (max-width: 69rem) {

  dl.program-page-magellan dd {
      font-size: .85rem;
  }

}

@media only screen and (max-width: 64rem) {

  dl.program-page-magellan dd {
      font-size: 1rem;
  }

  dl.program-page-magellan {
    margin: 5rem auto;
    max-width: 30rem;
  }

  .programTitle {
    padding-bottom: 3rem;
  }

  .key-message {
    padding-top: 1rem;
  }

  dl.program-page-magellan {
    border-radius: 0;
    justify-content: flex-start;
    align-items: center;
  }

  dl.program-page-magellan dd {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 1rem;
    margin: 0 1rem;
  }

  dl.program-page-magellan dd a {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
  }

  .facultyHighlights .row .columns {
    padding: 1rem;
  }

  .facultyHighlights .flexCol > div {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .facultyName {
    top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  #magellan dd {
    white-space: nowrap;
  }

  .program-page-magellan-container .program-page-magellan {
    flex-direction: column;
    background: white;
  }

  .program-page-magellan-container dd {
    width: 100%;
    background: var(--light-grey);
  }

  .program-page-magellan-container dd + dd {
    border-top: 4px solid white;
  }

  .program-page-magellan-container .onThisPage {
    font-weight: 600;
    background: white !important;
    color: var(--blue);
    font-size: 1.25rem;
  }

  .program-page-magellan-container.fixed {
    display: none;
  }

  .program-page-magellan-container.fixed .onThisPage {
    background: var(--blue) !important;
    color: white;
  }

  .program-page-magellan-container.fixed .onThisPage {
    display: none;
  }

  .program-page-magellan-container dd a {
    color: var(--blue) !important;
  }

  dl.program-page-magellan dd.active a {
      color: var(--blue) !important;
  }

  #longer-key-message {
    order: -1;
  }

}

@media only screen and (max-width: 40rem) {
  .bodywrap {
    padding: 0;
  }

  p,
  li {
    font-size: 1rem;
  }

  .contentArea {
    margin-top: 0;
  }

  .programTitle {
    padding-top: 2rem;
    padding-bottom: 2rem;
    text-align: center;
  }

  .programTitle h1 {
    padding-left: 1rem;
  }

  .key-message {
    padding-top: 0;
  }

  .key-message p {
    font-size: 1.25rem;
  }

  .longerKeyMessage {
    padding-top: 5rem;
    padding-bottom: 0;
  }

  .whyTRU {
    padding: 5rem 0;
  }

  .highlights {
    text-align: center;
  }

  .highlights dl {
    margin: 0 auto;
  }

  .column, .columns {
      padding-left: 1rem;
      padding-right: 1rem;
  }

  .row .row {
    margin: 0 -1rem;
  }
  
  .v4pad {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .requirements.bluebg {
    background: var(--teal) !important;
  }

  .requirements.bluebg h2 {
    padding-bottom: 0;
  }

  .requirements .programWorks,
  .programRowTwo > .columns,
  .programRowThree > .columns {
    border-left: 1rem solid var(--teal);
    border-right: 1rem solid var(--teal);
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .programRowTwo .fullHeight,
  .programRowThree .columns .whitebg {
    padding-left: 0;
    padding-right: 0;
  }

  .programRowTwo .fullHeight {
    justify-content: center;
  }

  .programRowTwo span.programOption {
    font-size: 1.125rem;
    height: 110px;
    width: 110px;
    margin: auto 0 0;
    flex: 0 0 110px;
  }

  .requirements .programWorks > h4 {
    margin-top: 1rem;
  }

  .requirements #tab-1 {
    padding-bottom: 0;
  }

  .requirements #tab-2 {
    padding-top: 0;
  }

  .requirements #tab-2 > .row > .columns {
    border-left: 1rem solid var(--teal);
    border-right: 1rem solid var(--teal);
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    background: white;
  }

  .medium-3.columns.stepsColumn {
      background: var(--blue);
      padding-top: 1rem;
      padding-bottom: 1rem;
  }

  .medium-3.columns.stepsColumn + .columns {
      background: var(--light-grey);
  }

  .admissionRequirements {
    padding-bottom: .5rem;
  }

  .admissionRequirements > .row.m1bottom {
    margin-bottom: .5rem !important;
  }

  .admissionRequirements > .row > .columns {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .outcomes ul {
    margin-bottom: 0;
  }

  .outcomes span.number {
    font-size: 3rem;
  }

  .outcomes .circle {
      height: 100%;
      width: 100%;
      border-radius: 0;
      margin: 2rem 0;
  }

  dl.program-page-magellan {
      margin: 5rem 1rem;
  }

}

@media only screen and (min-width: 1920px) {
  
  .promo-pagelet {
    width: 35%;
    right: 0;
    bottom: 1rem;
    padding: 2rem 1rem;
  }
}

@media only screen and (min-width: 375px) {
  img.program-banner-2020 {
    min-height: 447px;
    object-fit: cover;
  }
}

@media only screen and (min-width: 414px) {
  img.program-banner-2020 {
    min-height: 493px;
  }
}

@media only screen and (width: 768px) and (height: 1024px) {
  img.program-banner-2020 {
    height: 564px;
  }
}

@media only screen and (min-width: 1366px) {
  img.program-banner-2020 {
    min-height: 650px;
  }
}

@media only screen and (min-width: 1920px) {
  img.program-banner-2020 {
    min-height: 650px;
  }
}

