@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/* =============================================
   OLD VARIABLES
============================================= */
/* =============================================
   NEW 2025 JB --> TOKENS / _tokens.scss
============================================= */
/* Color Tokens - Core brand and utility palette */
/* Typography Tokens */
/* Spacing Tokens */
/* =============================================
   NEW 2025 JB --> MIXINS / _mixins.scss 
============================================= */
/* Generic Heading & Body Mixins */
/* Typography Mixins */
/* Visual Mixins */
/* =============================================
   NEW 2025 JB --> COMPONENTS / _buttons.scss
============================================= */
.button {
  display: flex;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Proxima Nova", sans-serif;
  padding: 0.85rem 1.5rem;
  text-align: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  border: none;
  text-transform: uppercase; }
  .button--primary {
    background-color: #461D7C;
    color: #FFFFFF; }
    .button--primary:hover, .button--primary:visited, .button--primary:active {
      background-color: #461D7C;
      color: #9C7DC5; }
  .button--outline-light {
    background-color: transparent;
    color: #461D7C;
    border: 2px solid #FDD023; }
    .button--outline-light:hover, .button--outline-light:visited, .button--outline-light:active {
      background-color: #FDD023;
      color: #461D7C; }
  .button--outline-dark {
    background-color: transparent;
    color: #FDD023 !important;
    border: 2px solid #FDD023; }
    .button--outline-dark:hover, .button--outline-dark:active {
      background-color: #FDD023;
      color: #461D7C !important; }
    .button--outline-dark:visited {
      color: #FDD023; }
    .button--outline-dark:visited:hover, .button--outline-dark:visited:active {
      background-color: #FDD023;
      color: #461D7C !important; }

header,
.top-nav-container,
.sticky-nav-cta-buttons {
  display: none; }

#secondaryMenu {
  display: none; }

.nav_bar {
  background: #461D7C;
  z-index: 10;
  position: sticky;
  top: 0;
  width: 100%; }

@media (max-width: 991px) {
  .nav_bar > .container {
    max-width: none; } }

nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  height: 80px; }
  @media (min-width: 992px) {
    nav {
      justify-content: space-between; } }
.mobile-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between; }

.search-icon-link {
  display: inline-block; }
  .search-icon-link i {
    font-size: 18px;
    color: #fff; }

.search-divider {
  width: 2px;
  height: 24px;
  background: #683DA0;
  margin: 0 10px; }

.sticky-search-divider,
.sticky-search-icon-link {
  display: none; }

.nav-cta-button img {
  height: 32px;
  width: 32px; }

.nav-mobile-logo {
  margin-right: auto; }
  .nav-mobile-logo img {
    width: 200px;
    height: auto;
    padding: 0 10px 0 0; }
  @media (min-width: 992px) {
    .nav-mobile-logo {
      margin-right: 0; } }
.nav-cta-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: 80px;
  background: #6b4a96;
  color: #fff;
  text-align: center;
  padding: 20px;
  max-height: 300px;
  z-index: 15;
  display: none; }
  .nav-cta-dropdown.show {
    display: block; }
  .nav-cta-dropdown .buttons {
    display: grid;
    gap: 20px;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    max-width: 600px;
    margin: 0 auto;
    padding: 10px 0 20px 0; }

/* menu icon */
nav .menu-toggle {
  margin: 0;
  font-size: 0;
  cursor: pointer;
  background: #461D7C;
  border: none; }

nav .menu-toggle .nav-icon {
  background: #fff;
  display: block;
  height: 3px;
  width: 24px;
  position: relative;
  transition: background 0.4s ease-out; }

nav .menu-toggle .nav-icon:before {
  background: #fff;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  top: 8px; }

nav .menu-toggle .nav-icon:after {
  background: #fff;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  top: -8px; }

nav .menu-toggle.expanded .nav-icon {
  background: transparent; }

nav .menu-toggle.expanded .nav-icon:before {
  transform: rotate(-45deg);
  top: 0; }

nav .menu-toggle.expanded .nav-icon:after {
  transform: rotate(45deg);
  top: 0; }

/* dropdown menus */
nav > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background: #6b4a96;
  text-align: left;
  display: none; }

nav .menu-toggle.expanded ~ ul {
  display: block;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  z-index: 20;
  max-height: 600px;
  overflow-y: auto; }

@media (orientation: landscape) {
  nav .menu-toggle.expanded ~ ul {
    max-height: 300px; } }

@media (min-width: 800px) {
  nav .menu-toggle.expanded ~ ul {
    max-height: 800px; } }

nav ul a {
  display: block;
  padding: 10px 20px 15px 20px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 400; }

nav ul a:link,
nav ul a:active,
nav ul a:visited {
  color: #fff;
  font-weight: 500; }

.menu-program-heading {
  padding: 10px 0 15px 40px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 200;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2); }

nav ul li {
  margin: 0; }

nav ul li ul li a {
  padding-left: 40px; }

nav ul li ul li a.menu-program-listing {
  padding-left: 60px; }

nav ul li ul li ul li a {
  padding-left: 60px; }

nav ul li {
  display: block; }

nav ul li ul {
  padding: 0; }

ul.megamenu,
ul.dropdown {
  display: none; }

li.submenu > a i,
li.mega-submenu span a i {
  position: relative;
  left: 4px;
  top: 2px;
  font-size: 20px;
  transform: rotate(-90deg); }

li.submenu.expanded {
  background-color: #6b4a96; }

li.submenu.expanded > ul li ul li {
  background-color: #f2f2f2;
  margin: 0; }

li.submenu.expanded > ul li ul li a,
li.submenu.expanded > ul li ul li a:link,
li.submenu.expanded > ul li ul li a:active,
li.submenu.expanded > ul li ul li a:visited {
  color: #461D7C; }

li.submenu.expanded > a i,
li.mega-submenu.expanded span a i {
  transform: rotate(0); }

li.submenu.expanded ul.megamenu {
  display: block; }

li.submenu.expanded ul.dropdown {
  display: block; }

li.mega-submenu ul {
  display: none; }

li.mega-submenu.expanded ul {
  display: block; }

.level3-mobile {
  display: block; }

.level3-desktop {
  display: none; }

li.mobile-nav-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px; }

li.mobile-nav-bottom a {
  margin: 0 0 20px 0;
  max-width: 200px; }

li.mobile-nav-bottom a:last-child {
  margin: 0; }

@media (min-width: 500px) {
  li.mobile-nav-bottom {
    flex-direction: row; }
  li.mobile-nav-bottom a {
    margin: 0 10px 0 0; } }

/* Desktop */
@media (min-width: 992px) {
  .main-page-header {
    display: block;
    width: 100%;
    background: #461D7C;
    padding: 20px 0; }
    .main-page-header .header-box {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between; }
      .main-page-header .header-box .header-left img {
        width: 250px; }
      .main-page-header .header-box .header-right {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 1rem;
        position: relative; }
        .main-page-header .header-box .header-right .btn {
          width: 140px; }
  #primaryMenu {
    padding-right: 10px; }
  .top-nav-container {
    display: none; }
  nav {
    height: auto;
    justify-content: space-between;
    padding: 10px 0 15px 0; }
  .nav-mobile-logo,
  .nav-cta-button,
  .nav-icon,
  .sticky-nav-cta-buttons,
  .mobile-buttons {
    display: none; }
  #secondaryMenu {
    display: flex; }
    #secondaryMenu a {
      font-weight: 200; }
  .nav_bar {
    position: relative; }
  .nav_bar.sticky-large {
    position: sticky;
    top: 0 !important;
    z-index: 30; }
    .nav_bar.sticky-large div > nav {
      display: flex;
      align-items: flex-end;
      padding: 8px 0 7px 0; }
    .nav_bar.sticky-large div > nav > .nav-mobile-logo {
      display: block; }
      .nav_bar.sticky-large div > nav > .nav-mobile-logo img {
        width: 200px;
        padding-bottom: 5px; } }
  @media (min-width: 992px) and (min-width: 1200px) {
    .nav_bar.sticky-large .sticky-nav-cta-buttons {
      display: flex;
      gap: 10px;
      padding-bottom: 5px; }
      .nav_bar.sticky-large .sticky-nav-cta-buttons .btn {
        width: 120px; } }
@media (min-width: 992px) {
    .nav_bar.sticky-large .sticky-search-divider {
      display: block;
      width: 2px;
      height: 24px;
      background: #683DA0;
      margin: 0 5px; }
    .nav_bar.sticky-large .sticky-search-icon-link {
      display: inline-block; }
      .nav_bar.sticky-large .sticky-search-icon-link i {
        font-size: 18px; }
    .nav_bar.sticky-large #secondaryMenu {
      display: none; }
  nav .menu-toggle {
    display: none; }
  .menu-program-heading {
    padding: 0 0 10px 0;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: none; }
  nav > ul {
    background: #461D7C;
    display: flex;
    gap: 20px; }
  nav > ul li {
    margin: 0; }
  nav ul li > a:link,
  nav ul li > a:active,
  nav ul li > a:visited {
    padding: 0 !important;
    text-decoration: none;
    border-bottom: solid 2px #461D7C;
    font-weight: 400; }
  nav ul li > a:hover {
    border-bottom: solid 2px #eec12a;
    background: #461D7C; }
  nav ul li ul li a,
  nav ul li ul li a:link,
  nav ul li ul li a:active,
  nav ul li ul li a:visited {
    color: #fff;
    padding: 0;
    margin-bottom: 10px;
    border-bottom: none; }
  nav ul li ul li a:hover {
    color: #eec12a !important;
    background: #6b4a96; }
  nav ul li ul li a.menu-program-listing {
    padding-left: 20px !important; }
  .nav-divider {
    margin: 1rem 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
  li.submenu > a i {
    transform: rotate(0); }
  li.submenu.expanded > a {
    border-bottom: solid 2px #eec12a;
    background: #461D7C; }
  li.submenu.expanded > a i {
    transform: rotate(180deg); }
  ul.dropdown {
    display: none;
    position: absolute;
    top: 50px;
    z-index: 3;
    background: #6b4a96;
    padding: 20px;
    box-shadow: -2px 2px rgba(0, 0, 0, 0.1);
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px; }
  li.submenu.expanded,
  li.submenu.expanded > ul li,
  li.submenu.expanded > ul li ul li {
    background-color: #6b4a96;
    color: rgba(255, 255, 255, 0.7); } }

.program-main-image-wrap,
.program-main-image-wrap img,
.program-main-image-wrap .text-container {
  height: 400px; }

.program-main-image-wrap {
  position: relative;
  overflow: hidden; }
  .program-main-image-wrap img {
    width: auto; }
  .program-main-image-wrap .text-container {
    display: flex;
    align-items: flex-end;
    width: 100%;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8)); }
    .program-main-image-wrap .text-container h1 {
      color: #fff;
      text-shadow: 1px 1px rgba(70, 70, 70, 0.8);
      margin: 0 0 110px 0;
      padding: 0;
      width: 100%;
      font-size: 1.8rem;
      font-size: clamp(1.8rem, calc(1.52rem + 1.4000000000000001vw), 3.2rem); }
      .program-main-image-wrap .text-container h1 span {
        display: block;
        font-weight: 400;
        font-size: 1rem;
        font-size: clamp(1rem, calc(0.88rem + 0.6000000000000001vw), 1.8rem);
        margin-top: 5px; }

@media only screen and (min-width: 576px) {
  .program-main-image-wrap img {
    width: 120%;
    height: auto; } }

@media only screen and (min-width: 768px) {
  .program-main-image-wrap img {
    width: 100%;
    height: auto; } }

@media only screen and (min-width: 992px) {
  .program-main-image-wrap,
  .program-main-image-wrap img,
  .program-main-image-wrap .text-container {
    height: 400px; }
  .program-main-image-wrap .text-container h1 {
    margin: 0 0 90px 0; }
  .program-main-image-wrap img {
    width: 100%;
    height: auto;
    margin-top: -20px; } }

@media only screen and (min-width: 1200px) {
  .program-main-image-wrap,
  .program-main-image-wrap img,
  .program-main-image-wrap .text-container {
    height: 550px; }
  .program-main-image-wrap img {
    width: 100%;
    height: auto;
    margin-top: -50px; } }

.acumen-badge-image {
  width: 150px;
  float: right;
  padding-left: 2rem; }

@media only screen and (min-width: 992px) {
  .acumen-badge-image {
    width: 200px; } }

.program-quick-facts {
  position: relative;
  background: #fff;
  color: #461D7C;
  border-radius: 5px;
  border: solid #c8c8c8 1px;
  margin: -100px 0 3rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px 0px;
  grid-template-areas: "logo logo" "hours cost" "deadline deadline" "info info" "buttons buttons" "acumen-badge acumen-badge" "acumen-text acumen-text" "unavailable unavailable"; }
  .program-quick-facts p, .program-quick-facts h3 {
    margin: 0; }
  .program-quick-facts .logo {
    grid-area: logo;
    text-align: center;
    padding: 1rem;
    border-bottom: solid #c8c8c8 1px; }
    .program-quick-facts .logo img {
      height: 50px; }
  .program-quick-facts .hours {
    grid-area: hours;
    text-align: center;
    padding: 1rem 1.5rem .8rem 1.5rem;
    border-right: solid #c8c8c8 1px; }
    .program-quick-facts .hours p {
      font-weight: 800;
      font-size: 2rem;
      font-size: clamp(2rem, calc(1.8rem + 1vw), 3rem); }
  .program-quick-facts .cost {
    grid-area: cost;
    text-align: center;
    padding: 1rem 1.5rem .8rem 1.5rem; }
    .program-quick-facts .cost p {
      font-weight: 800;
      font-size: 2rem;
      font-size: clamp(2rem, calc(1.8rem + 1vw), 3rem); }
  .program-quick-facts .deadline {
    grid-area: deadline;
    background: #eec12a;
    text-align: center;
    padding: 1rem; }
    .program-quick-facts .deadline h3 {
      font-weight: 400;
      font-size: 1.2rem; }
    .program-quick-facts .deadline span {
      display: block;
      font-weight: 700;
      font-size: 1.2rem; }
      @media only screen and (min-width: 768px) {
        .program-quick-facts .deadline span {
          display: inline-block; } }
  .program-quick-facts .info {
    grid-area: info;
    text-align: center;
    padding: 1rem;
    font-size: 1.2rem; }
  .program-quick-facts .buttons {
    grid-area: buttons;
    padding: 1rem 1rem 2rem 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem; }
    .program-quick-facts .buttons .btn {
      width: 50%;
      max-width: 220px; }
  .program-quick-facts .acumen-badge {
    grid-area: acumen-badge;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 1.5rem 1rem;
    border-top: solid #c8c8c8 1px; }
    .program-quick-facts .acumen-badge img {
      width: 30%;
      max-width: 180px; }
  .program-quick-facts .acumen-text {
    grid-area: acumen-text;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 1rem 1.5rem 1rem; }
    .program-quick-facts .acumen-text h3 {
      font-size: 1.2rem;
      margin-bottom: 1rem; }
    .program-quick-facts .acumen-text button {
      width: 150px;
      margin: 0 auto; }
  .program-quick-facts .unavailable {
    grid-area: unavailable;
    text-align: center;
    padding: 1rem; }

.honors {
  background-color: #fff;
  padding: 1.5rem;
  margin: 4rem 0;
  border-radius: 5px;
  border: solid #c8c8c8 1px;
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 2rem; }
  .honors img {
    max-width: 200px; }
  .honors h3 {
    text-align: center; }
  .honors .button {
    text-align: center;
    padding: 1rem 0; }
  @media only screen and (min-width: 992px) {
    .honors {
      flex-direction: row;
      max-width: 1000px;
      margin: 5rem auto; }
      .honors h3,
      .honors .button {
        text-align: left; } }
@media only screen and (min-width: 992px) {
  .program-quick-facts {
    margin: -80px 0 3rem 0;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-areas: "hours hours cost cost logo logo" "deadline deadline deadline buttons buttons buttons" "info info info buttons buttons buttons" "acumen-badge acumen-badge acumen-badge acumen-text acumen-text acumen-text" "unavailable unavailable unavailable unavailable unavailable unavailable"; }
    .program-quick-facts .cost {
      border-right: solid #c8c8c8 1px;
      width: 120%; } }
    @media only screen and (min-width: 992px) and (min-width: 1400px) {
      .program-quick-facts .cost {
        width: 100%; } }
@media only screen and (min-width: 992px) {
    .program-quick-facts .logo {
      display: flex;
      align-items: center;
      justify-content: center; }
    .program-quick-facts .hours,
    .program-quick-facts .cost {
      border-bottom: solid #c8c8c8 1px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem 1rem .8rem 1em; }
      .program-quick-facts .hours h3,
      .program-quick-facts .cost h3 {
        text-align: right;
        font-size: 1rem;
        padding-right: 5px; }
      .program-quick-facts .hours p,
      .program-quick-facts .cost p {
        text-align: left;
        padding-left: 5px;
        font-size: 3rem; }
        .program-quick-facts .hours p.small,
        .program-quick-facts .cost p.small {
          font-size: 2rem; }
    .program-quick-facts .cost {
      border-bottom: solid #c8c8c8 1px; }
    .program-quick-facts .deadline {
      position: relative;
      display: flex;
      align-items: center;
      margin-top: 40px;
      padding-left: 70px;
      height: 40px; }
      .program-quick-facts .deadline::after {
        content: "";
        border-top: 20px solid transparent;
        border-bottom: 20px solid transparent;
        border-left: 40px solid #eec12a;
        position: absolute;
        right: -40px; }
    .program-quick-facts .info {
      display: flex;
      align-items: center;
      padding-left: 70px;
      padding-bottom: 1.5rem; }
    .program-quick-facts .buttons {
      align-items: flex-start;
      justify-content: flex-end;
      margin-top: 24px;
      padding: 1rem 100px 1rem 80px; }
    .program-quick-facts .acumen-badge {
      padding-left: 70px; }
    .program-quick-facts .acumen-text {
      text-align: left;
      padding: 1.5rem 1rem;
      border-top: solid #c8c8c8 1px; }
      .program-quick-facts .acumen-text h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem; }
      .program-quick-facts .acumen-text button {
        margin: 0; } }

@media only screen and (min-width: 1200px) {
  .program-quick-facts .hours,
  .program-quick-facts .cost {
    padding: 1rem 1rem .8rem 1em; }
    .program-quick-facts .hours h3,
    .program-quick-facts .cost h3 {
      text-align: right;
      font-size: 1.2rem;
      padding-right: 5px; }
    .program-quick-facts .hours p,
    .program-quick-facts .cost p {
      text-align: left;
      padding-left: 5px;
      font-size: 3.4rem; }
      .program-quick-facts .hours p.small,
      .program-quick-facts .cost p.small {
        font-size: 2rem; } }

/* special box for Don in GC AgBusiness */
.agbus {
  display: flex;
  flex-direction: column;
  padding: 3rem; }
  .agbus .info {
    color: #fff; }
    .agbus .info h3 {
      font-size: 2rem;
      padding-bottom: 10px; }
    .agbus .info p {
      font-size: 20px; }
  .agbus img {
    margin-bottom: 2rem; }
  @media only screen and (min-width: 992px) {
    .agbus {
      flex-direction: row;
      align-items: center;
      padding: 3rem 0; }
      .agbus .info {
        margin-left: 2rem; }
      .agbus img {
        margin-bottom: 0; } }
/* $250 Student Promo */
.new-student-promo {
  background-color: #461D7C;
  color: #fff;
  border-radius: 5px;
  border: solid #c8c8c8 1px;
  padding: 2rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column; }
  .new-student-promo span {
    color: #eec12a;
    font-weight: 500; }
  .new-student-promo .image {
    padding-bottom: 2rem;
    text-align: center; }
    .new-student-promo .image img {
      width: 80%; }
  .new-student-promo .text {
    font-size: 16px; }
    .new-student-promo .text p {
      margin: 0; }
  .new-student-promo .button {
    text-align: center;
    padding-top: 1.5rem; }
  .new-student-promo .btn-primary {
    background-color: #fff !important;
    border-color: #fff !important;
    color: #461D7C !important;
    font-weight: 500;
    width: 100%;
    max-width: 220px; }
    .new-student-promo .btn-primary:hover {
      background-color: #eec12a !important;
      border-color: #eec12a !important; }

@media only screen and (min-width: 992px) {
  .new-student-promo {
    flex-direction: row;
    align-items: center; }
    .new-student-promo .image,
    .new-student-promo .button {
      width: 300px; }
    .new-student-promo .image {
      padding-bottom: 0;
      text-align: left; }
      .new-student-promo .image img {
        width: 100%; }
    .new-student-promo .text {
      padding: 0 2rem; }
    .new-student-promo .button {
      text-align: right;
      padding-top: 0; } }

@media only screen and (min-width: 1200px) {
  .new-student-promo .text {
    font-size: 18px; } }

/* Transcript Promo  */
.transcript-promo {
  background-color: #fff;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125); }
  .transcript-promo .content {
    text-align: center; }
    .transcript-promo .content h2 {
      color: #461D7C;
      font-size: 26px; }
    .transcript-promo .content .icon {
      display: block;
      margin: 0 auto;
      padding-bottom: 10px; }
    .transcript-promo .content p {
      margin-bottom: 0; }

@media only screen and (min-width: 992px) {
  .transcript-promo {
    padding: 2rem 0; }
  .transcript-promo .content h2 {
    font-size: 32px; }
  .transcript-promo .content .icon {
    display: inline-block;
    padding-right: 1rem;
    padding-bottom: 0; }
  .transcript-promo .content p {
    font-size: 24px;
    max-width: 1100px;
    margin: 0 auto; } }

/*---------------------
Partnership 2025
---------------------*/
html {
  scroll-behavior: smooth; }

a.button:link,
a.button:active,
a.button:visited {
  font-weight: 700; }

.arrow-bullet {
  position: relative;
  padding-left: 24px; }
  .arrow-bullet::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4em;
    width: 18px;
    height: 13px;
    background: url("../img/svg/arrow-bullet-pt.svg") no-repeat center center;
    background-size: contain; }
  @media (min-width: 992px) {
    .arrow-bullet {
      padding-left: 36px; }
      .arrow-bullet::before {
        width: 28px;
        height: 27px;
        top: 0; } }
.page-title-header h1 {
  font-size: 25px;
  line-height: 1.2;
  font-weight: 900;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em; }
  @media (min-width: 992px) {
    .page-title-header h1 {
      font-size: 40px; } }
.partnership-intro-section {
  background-color: #FFFFFF;
  padding: 40px 0;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8; }
  .partnership-intro-section .partnership-intro-section-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    gap: 20px; }
    .partnership-intro-section .partnership-intro-section-container .heading-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px; }
      .partnership-intro-section .partnership-intro-section-container .heading-container .partnership-photo img {
        width: 100%;
        height: auto;
        box-shadow: 15px 15px 0px 0px #F7F1FF; }
      .partnership-intro-section .partnership-intro-section-container .heading-container .heading-container-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px; }
        .partnership-intro-section .partnership-intro-section-container .heading-container .heading-container-text h2 {
          color: #461D7C;
          font-size: 30px;
          line-height: 1.2;
          font-weight: 900;
          font-family: "Roboto", sans-serif;
          margin-bottom: 0;
          text-align: center; }
          @media (min-width: 768px) {
            .partnership-intro-section .partnership-intro-section-container .heading-container .heading-container-text h2 {
              font-size: 40px; } }
          @media (min-width: 992px) {
            .partnership-intro-section .partnership-intro-section-container .heading-container .heading-container-text h2 {
              font-size: 55px; } }
          @media (min-width: 1400px) {
            .partnership-intro-section .partnership-intro-section-container .heading-container .heading-container-text h2 {
              font-size: 68px; } }
        .partnership-intro-section .partnership-intro-section-container .heading-container .heading-container-text .heading-brushstroke {
          width: 125px;
          height: auto;
          margin-top: 0.5rem; }
          @media (min-width: 768px) {
            .partnership-intro-section .partnership-intro-section-container .heading-container .heading-container-text .heading-brushstroke {
              width: 148px; } }
          @media (min-width: 992px) {
            .partnership-intro-section .partnership-intro-section-container .heading-container .heading-container-text .heading-brushstroke {
              width: 200px; } }
    .partnership-intro-section .partnership-intro-section-container .content-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px; }
      .partnership-intro-section .partnership-intro-section-container .content-container h3 {
        color: #461D7C;
        font-size: 18px;
        line-height: 1.5;
        font-weight: 900;
        font-family: "Roboto", sans-serif; }
      .partnership-intro-section .partnership-intro-section-container .content-container .button {
        width: 100%; }
  @media only screen and (min-width: 768px) {
    .partnership-intro-section {
      padding: 60px 0; }
      .partnership-intro-section .partnership-intro-section-container {
        gap: 30px; }
        .partnership-intro-section .partnership-intro-section-container .heading-container {
          flex-direction: row;
          gap: 40px; }
          .partnership-intro-section .partnership-intro-section-container .heading-container .heading-container-text {
            align-items: flex-start; }
            .partnership-intro-section .partnership-intro-section-container .heading-container .heading-container-text h2 {
              text-align: left; }
        .partnership-intro-section .partnership-intro-section-container .content-container p {
          font-size: 18px;
          line-height: 1.8; }
        .partnership-intro-section .partnership-intro-section-container .content-container h3 {
          font-size: 25px;
          line-height: 1.5;
          font-weight: 900;
          font-family: "Roboto", sans-serif; } }
  @media only screen and (min-width: 992px) {
    .partnership-intro-section {
      padding: 120px 0; }
      .partnership-intro-section .partnership-intro-section-container {
        flex-direction: row;
        align-items: flex-start;
        gap: 110px; }
        .partnership-intro-section .partnership-intro-section-container .heading-container {
          flex-direction: column;
          align-items: flex-start;
          width: 45%; }
          .partnership-intro-section .partnership-intro-section-container .heading-container .partnership-photo img {
            width: 400px; }
          .partnership-intro-section .partnership-intro-section-container .heading-container .heading-container-text {
            align-items: flex-start; }
        .partnership-intro-section .partnership-intro-section-container .content-container {
          align-items: flex-start;
          width: 55%; } }
.partnership-logos-section {
  background-color: #F1EDDB;
  padding: 40px 0; }
  .partnership-logos-section .partnership-logos-container {
    display: flex;
    align-items: center;
    align-content: center;
    gap: 25px 20px;
    align-self: stretch;
    flex-wrap: wrap; }
    @media only screen and (min-width: 768px) {
      .partnership-logos-section .partnership-logos-container {
        gap: 30px 30px;
        justify-content: space-between; }
        .partnership-logos-section .partnership-logos-container .divider {
          width: 1px;
          height: 60px;
          background-color: rgba(0, 0, 0, 0.2); } }
  .partnership-logos-section .partnership-logos-image {
    width: auto;
    height: 30px; }
    @media only screen and (min-width: 768px) {
      .partnership-logos-section .partnership-logos-image {
        height: 40px; } }
    @media only screen and (min-width: 992px) {
      .partnership-logos-section .partnership-logos-image {
        height: 50px; } }
.partnership-benefits-section {
  background-color: #461D7C;
  padding: 40px 0;
  color: #FFFFFF; }
  .partnership-benefits-section .container {
    max-width: 1200px; }
  .partnership-benefits-section .partnership-benefits-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-areas: "heading" "image" "content"; }
    .partnership-benefits-section .partnership-benefits-container .heading-container {
      grid-area: heading; }
    .partnership-benefits-section .partnership-benefits-container .heading-container h2 {
      font-size: 30px;
      line-height: 1.2;
      font-weight: 900;
      font-family: "Roboto", sans-serif;
      margin-bottom: 40px;
      text-align: center; }
      @media (min-width: 768px) {
        .partnership-benefits-section .partnership-benefits-container .heading-container h2 {
          font-size: 40px; } }
      @media (min-width: 1400px) {
        .partnership-benefits-section .partnership-benefits-container .heading-container h2 {
          font-size: 55px; } }
    .partnership-benefits-section .partnership-benefits-container .image-container {
      grid-area: image;
      width: calc(100% + 20px);
      height: 156px;
      margin-right: -20px;
      margin-bottom: 20px;
      overflow: hidden; }
      .partnership-benefits-section .partnership-benefits-container .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center; }
    .partnership-benefits-section .partnership-benefits-container .content-container {
      grid-area: content;
      display: grid;
      grid-template-columns: 1fr;
      grid-template-rows: 1fr;
      grid-row-gap: 20px;
      list-style: none;
      padding-inline-start: 0; }
      .partnership-benefits-section .partnership-benefits-container .content-container .item {
        display: flex;
        flex-direction: row;
        gap: 10px; }
        .partnership-benefits-section .partnership-benefits-container .content-container .item .item-icon img {
          height: 13.106px;
          width: 18.43px;
          aspect-ratio: 18.43/13.11; }
        .partnership-benefits-section .partnership-benefits-container .content-container .item .item-content h3 {
          color: #FDD023;
          font-size: 18px;
          line-height: 1.5;
          font-weight: 900;
          font-family: "Roboto", sans-serif;
          margin-bottom: 10px; }
          @media (min-width: 992px) {
            .partnership-benefits-section .partnership-benefits-container .content-container .item .item-content h3 {
              font-size: 25px !important;
              line-height: 1.2; } }
        .partnership-benefits-section .partnership-benefits-container .content-container .item .item-content p {
          font-size: 16px;
          font-weight: 400;
          line-height: 1.8;
          margin-bottom: 0; }
  @media only screen and (min-width: 576px) {
    .partnership-benefits-section .partnership-benefits-container .image-container {
      height: 220px; } }
  @media only screen and (min-width: 768px) {
    .partnership-benefits-section {
      padding: 60px 0; }
      .partnership-benefits-section .partnership-benefits-container .image-container {
        height: 281px; }
      .partnership-benefits-section .partnership-benefits-container .content-container {
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 50px;
        grid-row-gap: 50px; } }
  @media only screen and (min-width: 992px) {
    .partnership-benefits-section {
      padding: 120px 0; }
      .partnership-benefits-section .partnership-benefits-container {
        grid-template-columns: 60% 1fr;
        grid-template-rows: 1fr;
        grid-template-areas: "heading image" "content image"; }
        .partnership-benefits-section .partnership-benefits-container .heading-container h2 {
          text-align: left; }
        .partnership-benefits-section .partnership-benefits-container .image-container {
          position: absolute;
          left: 65%;
          width: 35%;
          height: 500px;
          height: calc(10vw + 450px);
          margin-right: 0; }
          .partnership-benefits-section .partnership-benefits-container .image-container img {
            object-position: -100px center; }
        .partnership-benefits-section .partnership-benefits-container .content-container .item .item-content p {
          font-size: 18px;
          line-height: 1.8; } }
  @media only screen and (min-width: 1400px) {
    .partnership-benefits-section .container {
      max-width: 1400px; } }
.partnership-about-section {
  background-color: #FFFFFF;
  color: #461D7C;
  padding: 40px 0 20px 0;
  text-align: center;
  background-position: center calc(100% + 120px);
  background-size: auto; }
  .partnership-about-section h2 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 900;
    font-family: "Roboto", sans-serif;
    margin-bottom: 0; }
    @media (min-width: 768px) {
      .partnership-about-section h2 {
        font-size: 40px; } }
    @media (min-width: 1400px) {
      .partnership-about-section h2 {
        font-size: 55px; } }
  .partnership-about-section .content-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    list-style: none;
    padding-inline-start: 0; }
    .partnership-about-section .content-container .item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      padding: 30px 0;
      border-bottom: 1px solid #D6D6D6; }
      .partnership-about-section .content-container .item:last-child {
        border-bottom: none; }
      .partnership-about-section .content-container .item img {
        width: 46px;
        height: 38px; }
      .partnership-about-section .content-container .item h3 {
        font-size: 18px;
        line-height: 1.5;
        font-weight: 900;
        font-family: "Roboto", sans-serif;
        margin-bottom: 0; }
        @media (min-width: 992px) {
          .partnership-about-section .content-container .item h3 {
            font-size: 25px !important;
            line-height: 1.2; } }
      .partnership-about-section .content-container .item p {
        font-size: 16px;
        font-weight: 400;
        line-height: 1.8;
        margin-bottom: 0;
        color: #000000; }
  @media only screen and (min-width: 768px) {
    .partnership-about-section {
      padding: 60px 0 80px 0;
      background-size: 1000px;
      background-image: url("../img/brushstroke-divider.png");
      background-repeat: no-repeat;
      background-position: center calc(100% + 250px); }
      .partnership-about-section .content-container {
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 80px; }
        .partnership-about-section .content-container .item {
          gap: 10px;
          padding: 25px 0;
          border-bottom: none; }
        .partnership-about-section .content-container .item p {
          font-size: 18px;
          line-height: 1.8; }
        .partnership-about-section .content-container .item h3 {
          font-size: 24px;
          line-height: 120%; } }
  @media only screen and (min-width: 992px) {
    .partnership-about-section {
      padding: 120px 0 160px 0;
      background-size: 1000px;
      background-position: center calc(100% + 230px); }
      .partnership-about-section h2 {
        margin-bottom: 3rem; }
      .partnership-about-section .content-container {
        display: flex;
        justify-content: space-between;
        gap: 80px; }
        .partnership-about-section .content-container .item {
          flex: 1;
          position: relative;
          padding: 0 0 25px 0;
          border-bottom: none; }
          .partnership-about-section .content-container .item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -40px;
            top: 0;
            height: 100%;
            width: 1px;
            background-color: #D6D6D6; }
        .partnership-about-section .content-container .item img {
          height: 50px;
          width: auto; } }
  @media only screen and (min-width: 1400px) {
    .partnership-about-section {
      background-size: 1300px;
      background-position: center 300px; } }
.partnership-offerings-section-v2 {
  color: #FFFFFF;
  padding: 0;
  display: flex;
  flex-direction: column; }
  .partnership-offerings-section-v2 .heading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    position: relative;
    background-image: url("../img/grads-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0; }
    .partnership-offerings-section-v2 .heading-container h2 {
      font-size: 30px;
      line-height: 1.2;
      font-weight: 900;
      font-family: "Roboto", sans-serif;
      margin-bottom: 10px; }
      @media (min-width: 768px) {
        .partnership-offerings-section-v2 .heading-container h2 {
          font-size: 40px; } }
      @media (min-width: 992px) {
        .partnership-offerings-section-v2 .heading-container h2 {
          font-size: 55px; } }
      @media (min-width: 1400px) {
        .partnership-offerings-section-v2 .heading-container h2 {
          font-size: 68px; } }
    .partnership-offerings-section-v2 .heading-container .heading-brushstroke {
      width: 125px;
      height: auto;
      margin-top: 0.5rem; }
      @media (min-width: 768px) {
        .partnership-offerings-section-v2 .heading-container .heading-brushstroke {
          width: 148px; } }
      @media (min-width: 992px) {
        .partnership-offerings-section-v2 .heading-container .heading-brushstroke {
          width: 200px; } }
  .partnership-offerings-section-v2 .content-container {
    display: flex;
    flex-direction: column;
    padding: 20px 20px 40px 20px;
    background-color: #461D7C; }
    .partnership-offerings-section-v2 .content-container ul {
      list-style: none;
      padding-inline-start: 0; }
    .partnership-offerings-section-v2 .content-container .item {
      text-align: center;
      font-size: 16px;
      font-weight: 400;
      line-height: 1.8;
      padding: 10px 0 17px 0;
      border-bottom: 4px solid #683DA0; }
      .partnership-offerings-section-v2 .content-container .item:last-child {
        border-bottom: none; }
  @media only screen and (min-width: 768px) {
    .partnership-offerings-section-v2 .heading-container {
      padding: 60px 0; }
    .partnership-offerings-section-v2 .content-container {
      padding: 40px 20px 60px 20px; }
      .partnership-offerings-section-v2 .content-container .item {
        font-size: 18px;
        line-height: 1.8;
        padding: 16px 0 23px 0; } }
  @media only screen and (min-width: 992px) {
    .partnership-offerings-section-v2 {
      flex-direction: row;
      position: relative;
      padding: 0;
      background: url("../img/what-we-offer-bg.jpg") no-repeat center center;
      background-size: cover; }
      .partnership-offerings-section-v2 .what-we-offer-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        max-width: 960px;
        width: 100%;
        padding: 60px 2rem;
        margin: 0 auto; }
      .partnership-offerings-section-v2 .heading-container {
        align-items: flex-start;
        width: 50%;
        padding: 0 20px 0 0;
        background-image: none; }
      .partnership-offerings-section-v2 .content-container {
        padding: 30px 30px 60px 30px;
        width: 50%;
        padding-left: 10%; }
        .partnership-offerings-section-v2 .content-container .item {
          font-size: 18px;
          line-height: 1.8; } }
  @media only screen and (min-width: 1200px) {
    .partnership-offerings-section-v2 .what-we-offer-container {
      max-width: 1140px; } }
  @media only screen and (min-width: 1400px) {
    .partnership-offerings-section-v2 .what-we-offer-container {
      max-width: 1370px; } }
.partnership-stats-section {
  background-color: #F1EDDB;
  padding: 40px 0; }
  .partnership-stats-section .partnership-stats-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; }
    .partnership-stats-section .partnership-stats-container .heading-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px; }
      .partnership-stats-section .partnership-stats-container .heading-container h2 {
        color: #461D7C;
        font-size: 30px;
        line-height: 1.2;
        font-weight: 900;
        font-family: "Roboto", sans-serif;
        margin-bottom: 0; }
        @media (min-width: 768px) {
          .partnership-stats-section .partnership-stats-container .heading-container h2 {
            font-size: 40px; } }
        @media (min-width: 992px) {
          .partnership-stats-section .partnership-stats-container .heading-container h2 {
            font-size: 55px; } }
        @media (min-width: 1400px) {
          .partnership-stats-section .partnership-stats-container .heading-container h2 {
            font-size: 68px; } }
      .partnership-stats-section .partnership-stats-container .heading-container .heading-brushstroke {
        width: 125px;
        height: auto;
        margin-top: 0.5rem; }
        @media (min-width: 768px) {
          .partnership-stats-section .partnership-stats-container .heading-container .heading-brushstroke {
            width: 148px; } }
        @media (min-width: 992px) {
          .partnership-stats-section .partnership-stats-container .heading-container .heading-brushstroke {
            width: 200px; } }
    .partnership-stats-section .partnership-stats-container .content-container {
      background: #FFFFFF;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 20px; }
      .partnership-stats-section .partnership-stats-container .content-container .stat-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 9px; }
        .partnership-stats-section .partnership-stats-container .content-container .stat-item img {
          width: 100%;
          height: auto;
          max-width: 200px; }
        .partnership-stats-section .partnership-stats-container .content-container .stat-item p {
          margin-bottom: 0;
          text-align: center;
          font-size: 16px;
          font-weight: 400;
          line-height: 1.8; }
        .partnership-stats-section .partnership-stats-container .content-container .stat-item .stat-number {
          color: #461D7C;
          font-size: 55px;
          font-weight: 900;
          line-height: 1.2;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 10px; }
          .partnership-stats-section .partnership-stats-container .content-container .stat-item .stat-number img {
            width: 40px;
            height: 40px;
            margin-top: 6px; }
        .partnership-stats-section .partnership-stats-container .content-container .stat-item .stat-heading {
          color: #461D7C;
          text-align: center;
          font-family: "Roboto Condensed", sans-serif;
          font-size: 25px;
          font-weight: 900;
          line-height: 1.2;
          text-transform: uppercase; }
          .partnership-stats-section .partnership-stats-container .content-container .stat-item .stat-heading span {
            color: #BFA0E9; }
        .partnership-stats-section .partnership-stats-container .content-container .stat-item .stat-source {
          font-size: 12px;
          font-weight: 400;
          line-height: 1.5; }
      .partnership-stats-section .partnership-stats-container .content-container .stat-divider {
        width: 100%;
        height: 1px;
        background: #D6D6D6;
        margin: 20px 0; }
  @media only screen and (min-width: 768px) {
    .partnership-stats-section {
      padding: 60px 0; }
      .partnership-stats-section .partnership-stats-container .content-container {
        padding: 50px; }
        .partnership-stats-section .partnership-stats-container .content-container .stat-item .stat-number {
          font-size: 68px;
          line-height: 1.2; }
          .partnership-stats-section .partnership-stats-container .content-container .stat-item .stat-number img {
            width: 50px;
            height: 50px; } }
  @media only screen and (min-width: 992px) {
    .partnership-stats-section {
      padding: 120px 0; }
      .partnership-stats-section .partnership-stats-container {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 60px; }
        .partnership-stats-section .partnership-stats-container .heading-container {
          align-items: flex-start;
          width: 400px; }
          .partnership-stats-section .partnership-stats-container .heading-container h2 span {
            display: block; }
        .partnership-stats-section .partnership-stats-container .content-container {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          align-items: start;
          gap: 40px; } }
      @media only screen and (min-width: 992px) and (min-width: 992px) {
        .partnership-stats-section .partnership-stats-container .content-container {
          gap: 60px; } }
  @media only screen and (min-width: 992px) {
          .partnership-stats-section .partnership-stats-container .content-container .stat-item {
            justify-content: flex-start;
            align-items: flex-start; }
            .partnership-stats-section .partnership-stats-container .content-container .stat-item p {
              text-align: left;
              font-size: 16px;
              font-weight: 400;
              line-height: 1.5; }
            .partnership-stats-section .partnership-stats-container .content-container .stat-item .stat-heading {
              text-align: left; }
          .partnership-stats-section .partnership-stats-container .content-container .stat-divider {
            display: none; } }
.partnership-feedback-section {
  background-color: #FFFFFF;
  padding: 40px 0; }
  .partnership-feedback-section h2 {
    color: #461D7C;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 900;
    font-family: "Roboto", sans-serif;
    margin-bottom: 20px;
    text-align: center; }
    @media (min-width: 768px) {
      .partnership-feedback-section h2 {
        font-size: 40px; } }
    @media (min-width: 992px) {
      .partnership-feedback-section h2 {
        font-size: 55px; } }
    @media (min-width: 1400px) {
      .partnership-feedback-section h2 {
        font-size: 68px; } }
  .partnership-feedback-section .feedback-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; }
    .partnership-feedback-section .feedback-container .feedback-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center; }
      .partnership-feedback-section .feedback-container .feedback-item img {
        width: 46px;
        height: 30px;
        margin-bottom: 10px; }
      .partnership-feedback-section .feedback-container .feedback-item p {
        margin-bottom: 0; }
      .partnership-feedback-section .feedback-container .feedback-item .feedback-text {
        font-size: 16px;
        font-weight: 400;
        line-height: 1.8;
        margin-bottom: 20px; }
      .partnership-feedback-section .feedback-container .feedback-item .feedback-name {
        color: #461D7C;
        font-family: "Roboto Condensed", sans-serif;
        font-size: 25px;
        font-weight: 900;
        line-height: 1.2;
        text-transform: uppercase; }
      .partnership-feedback-section .feedback-container .feedback-item .feedback-company {
        color: #999;
        font-size: 14px;
        font-weight: 900;
        line-height: 1.5;
        letter-spacing: 0.98px;
        text-transform: uppercase; }
    .partnership-feedback-section .feedback-container .feedback-divider {
      width: 100%;
      height: 1px;
      background: #D6D6D6;
      margin: 40px 0; }
  @media only screen and (min-width: 768px) {
    .partnership-feedback-section {
      padding: 60px 0; }
      .partnership-feedback-section h2 {
        margin-bottom: 50px; }
      .partnership-feedback-section .feedback-container .feedback-item .feedback-text {
        font-size: 18px;
        line-height: 1.8; }
      .partnership-feedback-section .feedback-container .feedback-item .feedback-name {
        font-size: 30px;
        line-height: 1.2; } }
  @media only screen and (min-width: 992px) {
    .partnership-feedback-section {
      padding: 120px 0; }
      .partnership-feedback-section .feedback-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 60px; }
        .partnership-feedback-section .feedback-container .feedback-item {
          width: 50%; }
        .partnership-feedback-section .feedback-container .feedback-divider {
          width: 1px;
          background-color: #D6D6D6;
          height: 270px;
          align-self: stretch; } }
.partnership-contact-section {
  background-image: url("../img/contact-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 0; }
  .partnership-contact-section .partnership-contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: #FFFFFF;
    padding: 20px; }
    .partnership-contact-section .partnership-contact-container .heading-container {
      display: flex;
      flex-direction: column;
      align-items: center; }
      .partnership-contact-section .partnership-contact-container .heading-container h2 {
        color: #461D7C;
        font-size: 30px;
        line-height: 1.2;
        font-weight: 900;
        font-family: "Roboto", sans-serif;
        margin-bottom: 0; }
        @media (min-width: 768px) {
          .partnership-contact-section .partnership-contact-container .heading-container h2 {
            font-size: 40px; } }
        @media (min-width: 992px) {
          .partnership-contact-section .partnership-contact-container .heading-container h2 {
            font-size: 55px; } }
        @media (min-width: 1400px) {
          .partnership-contact-section .partnership-contact-container .heading-container h2 {
            font-size: 68px; } }
      .partnership-contact-section .partnership-contact-container .heading-container .heading-brushstroke {
        width: 125px;
        height: auto;
        margin-top: 0.5rem; }
        @media (min-width: 768px) {
          .partnership-contact-section .partnership-contact-container .heading-container .heading-brushstroke {
            width: 148px; } }
        @media (min-width: 992px) {
          .partnership-contact-section .partnership-contact-container .heading-container .heading-brushstroke {
            width: 200px; } }
    .partnership-contact-section .partnership-contact-container .content-container p {
      text-align: center; }
  @media only screen and (min-width: 768px) {
    .partnership-contact-section {
      padding: 60px 0; }
      .partnership-contact-section .partnership-contact-container {
        padding: 50px; }
        .partnership-contact-section .partnership-contact-container .content-container p {
          font-size: 18px;
          line-height: 1.8; } }
  @media only screen and (min-width: 992px) {
    .partnership-contact-section {
      padding: 120px 0; }
      .partnership-contact-section .partnership-contact-container {
        flex-direction: row;
        padding: 90px 70px; }
        .partnership-contact-section .partnership-contact-container .heading-container {
          align-items: flex-start;
          width: 40%; }
        .partnership-contact-section .partnership-contact-container .content-container {
          width: 60%; }
          .partnership-contact-section .partnership-contact-container .content-container p {
            text-align: left;
            font-size: 25px;
            line-height: 1.8; } }
.partnership-news-section {
  background-color: #461D7C;
  padding: 40px 0;
  overflow: hidden; }
  .partnership-news-section .container .heading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px; }
    .partnership-news-section .container .heading-container h2 {
      color: #FFFFFF;
      text-align: center;
      margin-bottom: 5px;
      font-size: 30px;
      line-height: 1.2;
      font-weight: 900;
      font-family: "Roboto", sans-serif; }
      @media (min-width: 768px) {
        .partnership-news-section .container .heading-container h2 {
          font-size: 40px; } }
      @media (min-width: 992px) {
        .partnership-news-section .container .heading-container h2 {
          font-size: 55px; } }
      @media (min-width: 1400px) {
        .partnership-news-section .container .heading-container h2 {
          font-size: 68px; } }
    .partnership-news-section .container .heading-container .heading-brushstroke {
      width: 125px;
      height: auto;
      margin-top: 0.5rem; }
      @media (min-width: 768px) {
        .partnership-news-section .container .heading-container .heading-brushstroke {
          width: 148px; } }
      @media (min-width: 992px) {
        .partnership-news-section .container .heading-container .heading-brushstroke {
          width: 200px; } }
  @media only screen and (min-width: 768px) {
    .partnership-news-section {
      padding: 60px 0; } }
  @media only screen and (min-width: 992px) {
    .partnership-news-section {
      padding: 90px 0; }
      .partnership-news-section .container {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 60px; }
        .partnership-news-section .container .heading-container {
          align-items: flex-start; } }
/* Splide JS Slider */
.splide .splide__track {
  margin-right: calc(-50vw + 50%); }
  .splide .splide__track .splide__list {
    display: flex;
    flex-direction: row;
    gap: 20px; }
    .splide .splide__track .splide__list .splide__slide {
      background: #FFFFFF;
      width: 270px !important;
      padding: 20px; }
      .splide .splide__track .splide__list .splide__slide a {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        flex-shrink: 0;
        color: #000000;
        font-size: 14px;
        font-weight: 900;
        line-height: 1.2; }
        .splide .splide__track .splide__list .splide__slide a:hover .slide-tn-img::after {
          opacity: 0; }
        .splide .splide__track .splide__list .splide__slide a:hover img {
          filter: none !important;
          transform: scale(1.05); }
        .splide .splide__track .splide__list .splide__slide a .slide-tn-img {
          position: relative;
          width: 100%;
          overflow: hidden; }
          .splide .splide__track .splide__list .splide__slide a .slide-tn-img::after {
            content: '';
            position: absolute;
            inset: 0;
            background-color: #461D7C;
            mix-blend-mode: screen;
            pointer-events: none;
            opacity: 1;
            transition: opacity 0.3s ease; }
          .splide .splide__track .splide__list .splide__slide a .slide-tn-img img {
            display: block;
            width: 100%;
            object-fit: cover;
            object-position: center;
            filter: grayscale(100%);
            transition: transform 0.3s ease; }
        .splide .splide__track .splide__list .splide__slide a .news-category {
          margin-bottom: 0; }
        .splide .splide__track .splide__list .splide__slide a .news-title {
          color: #461D7C;
          font-size: 18px;
          font-weight: 900;
          line-height: 1.2;
          margin-bottom: 0; }
        .splide .splide__track .splide__list .splide__slide a .news-date {
          font-weight: 400;
          margin-bottom: 0; }

.splide .splide-arrows-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 5px; }
  .splide .splide-arrows-container h3 {
    color: #FDD023;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    text-transform: uppercase;
    margin-bottom: 0; }
  .splide .splide-arrows-container .splide__arrow {
    background: none;
    border: none;
    padding: 0;
    width: 27px;
    height: 28px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    color: transparent;
    font-size: 0;
    cursor: pointer; }
    .splide .splide-arrows-container .splide__arrow:disabled {
      opacity: 1;
      cursor: not-allowed; }
  .splide .splide-arrows-container .splide__arrow--prev {
    background-image: url("../img/svg/arrow-back-active.svg"); }
    .splide .splide-arrows-container .splide__arrow--prev:disabled {
      background-image: url("../img/svg/arrow-back-inactive.svg"); }
  .splide .splide-arrows-container .splide__arrow--next {
    background-image: url("../img/svg/arrow-fwd-active.svg"); }
    .splide .splide-arrows-container .splide__arrow--next:disabled {
      background-image: url("../img/svg/arrow-fwd-inactive.svg"); }

@media only screen and (min-width: 768px) {
  .splide .splide-arrows-container {
    margin-bottom: 10px; }
  .splide .splide__track .splide__list .splide__slide {
    width: 300px !important; }
    .splide .splide__track .splide__list .splide__slide a img {
      height: 150px; }
    .splide .splide__track .splide__list .splide__slide a .news-title {
      font-size: 18px;
      line-height: 1.2; } }

@media only screen and (min-width: 992px) {
  .splide .splide__track .splide__list {
    gap: 30px; }
  .splide .splide-arrows-container {
    width: 670px; } }
  @media only screen and (min-width: 992px) and (min-width: 1200px) {
    .splide .splide-arrows-container {
      width: 850px; } }
  @media only screen and (min-width: 992px) and (min-width: 1400px) {
    .splide .splide-arrows-container {
      width: 1110px; } }
.about-intro-section {
  background-color: #FFFFFF;
  padding: 40px 0;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8; }
  @media only screen and (min-width: 768px) {
    .about-intro-section {
      padding: 60px 0; } }
  @media only screen and (min-width: 992px) {
    .about-intro-section {
      padding: 120px 0; } }
  .about-intro-section .about-intro-section-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    gap: 20px; }
    @media only screen and (min-width: 768px) {
      .about-intro-section .about-intro-section-container {
        gap: 30px; } }
    @media only screen and (min-width: 992px) {
      .about-intro-section .about-intro-section-container {
        flex-direction: row;
        align-items: flex-start;
        gap: 50px; } }
    .about-intro-section .about-intro-section-container .heading-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px; }
      @media only screen and (min-width: 768px) {
        .about-intro-section .about-intro-section-container .heading-container {
          flex-direction: row-reverse; } }
      @media only screen and (min-width: 992px) {
        .about-intro-section .about-intro-section-container .heading-container {
          flex-direction: column;
          align-items: flex-start;
          width: 50%; } }
      .about-intro-section .about-intro-section-container .heading-container .about-photo {
        width: 100%; }
        .about-intro-section .about-intro-section-container .heading-container .about-photo img {
          width: 100%;
          height: auto;
          box-shadow: 15px 15px 0px 0px #F7F1FF; }
          @media only screen and (min-width: 992px) {
            .about-intro-section .about-intro-section-container .heading-container .about-photo img {
              width: 400px; } }
        @media only screen and (min-width: 768px) {
          .about-intro-section .about-intro-section-container .heading-container .about-photo {
            width: 50%; } }
      .about-intro-section .about-intro-section-container .heading-container .heading-container-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px; }
        @media only screen and (min-width: 768px) {
          .about-intro-section .about-intro-section-container .heading-container .heading-container-text {
            align-items: flex-start;
            width: 50%; } }
        @media only screen and (min-width: 992px) {
          .about-intro-section .about-intro-section-container .heading-container .heading-container-text {
            align-items: flex-start;
            width: 100%; } }
        .about-intro-section .about-intro-section-container .heading-container .heading-container-text h2 {
          color: #461D7C;
          font-size: 37px;
          font-weight: 900;
          line-height: 120%;
          margin-bottom: 0;
          text-align: center; }
          @media only screen and (min-width: 768px) {
            .about-intro-section .about-intro-section-container .heading-container .heading-container-text h2 {
              text-align: left; } }
          @media only screen and (min-width: 992px) {
            .about-intro-section .about-intro-section-container .heading-container .heading-container-text h2 {
              font-size: 68px; } }
        .about-intro-section .about-intro-section-container .heading-container .heading-container-text .heading-brushstroke {
          width: 125px;
          height: auto;
          margin-top: 0.5rem; }
          @media (min-width: 768px) {
            .about-intro-section .about-intro-section-container .heading-container .heading-container-text .heading-brushstroke {
              width: 148px; } }
          @media (min-width: 992px) {
            .about-intro-section .about-intro-section-container .heading-container .heading-container-text .heading-brushstroke {
              width: 200px; } }
    .about-intro-section .about-intro-section-container .content-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px; }
      @media only screen and (min-width: 768px) {
        .about-intro-section .about-intro-section-container .content-container {
          align-items: flex-start; } }
      @media only screen and (min-width: 992px) {
        .about-intro-section .about-intro-section-container .content-container {
          align-items: flex-start;
          width: 50%; } }
      .about-intro-section .about-intro-section-container .content-container h3 {
        color: #461D7C;
        font-size: 20px;
        font-weight: 900;
        line-height: 140%;
        text-align: center;
        margin: 20px 0 0 0; }
        @media only screen and (min-width: 768px) {
          .about-intro-section .about-intro-section-container .content-container h3 {
            font-size: 20px;
            text-align: left; } }
        @media only screen and (min-width: 992px) {
          .about-intro-section .about-intro-section-container .content-container h3 {
            font-size: 39px;
            margin: 0; } }
      .about-intro-section .about-intro-section-container .content-container p {
        color: #000000;
        font-size: 16px;
        font-weight: 400;
        line-height: 180%;
        margin-bottom: 0; }
        @media only screen and (min-width: 768px) {
          .about-intro-section .about-intro-section-container .content-container p {
            font-size: 18px; } }
      .about-intro-section .about-intro-section-container .content-container .button {
        width: 100%;
        margin-top: 20px; }
        @media only screen and (min-width: 768px) {
          .about-intro-section .about-intro-section-container .content-container .button {
            max-width: 400px;
            align-self: center; } }
        @media only screen and (min-width: 992px) {
          .about-intro-section .about-intro-section-container .content-container .button {
            max-width: 100%;
            align-self: center; } }
.about-benefits-section {
  background-color: #461D7C;
  padding: 40px 0;
  color: #FFFFFF; }
  @media only screen and (min-width: 768px) {
    .about-benefits-section {
      padding: 60px 0; } }
  @media only screen and (min-width: 992px) {
    .about-benefits-section {
      padding: 120px 0; } }
  .about-benefits-section .container {
    max-width: 1200px; }
    @media only screen and (min-width: 1400px) {
      .about-benefits-section .container {
        max-width: 1400px; } }
  .about-benefits-section .about-benefits-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-areas: "heading" "image" "content"; }
    @media only screen and (min-width: 992px) {
      .about-benefits-section .about-benefits-container {
        grid-template-columns: 60% 1fr;
        grid-template-rows: 1fr;
        grid-template-areas: "heading image" "content image"; } }
    .about-benefits-section .about-benefits-container .heading-container {
      grid-area: heading; }
      .about-benefits-section .about-benefits-container .heading-container h2 {
        color: #FFFFFF;
        font-size: 30px;
        font-weight: 900;
        line-height: 120%;
        margin-bottom: 20px;
        text-align: center; }
        @media only screen and (min-width: 768px) {
          .about-benefits-section .about-benefits-container .heading-container h2 {
            font-size: 37px;
            margin-bottom: 30px; } }
        @media only screen and (min-width: 992px) {
          .about-benefits-section .about-benefits-container .heading-container h2 {
            text-align: left;
            font-size: 55px;
            margin-bottom: 60px; } }
    .about-benefits-section .about-benefits-container .image-container {
      grid-area: image;
      width: calc(100% + 20px);
      height: 200px;
      margin-right: -20px;
      margin-bottom: 20px;
      overflow: hidden; }
      @media only screen and (min-width: 576px) {
        .about-benefits-section .about-benefits-container .image-container {
          height: 220px; } }
      @media only screen and (min-width: 768px) {
        .about-benefits-section .about-benefits-container .image-container {
          height: 280px; } }
      @media only screen and (min-width: 992px) {
        .about-benefits-section .about-benefits-container .image-container {
          position: absolute;
          left: 65%;
          width: 35%;
          height: 500px;
          height: calc(10vw + 400px);
          margin-left: 0;
          padding-bottom: 100px; } }
      .about-benefits-section .about-benefits-container .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center; }
    .about-benefits-section .about-benefits-container .content-container {
      grid-area: content;
      display: grid;
      grid-template-columns: 1fr;
      grid-template-rows: 1fr;
      grid-row-gap: 20px;
      list-style: none;
      padding-inline-start: 0; }
      @media only screen and (min-width: 768px) {
        .about-benefits-section .about-benefits-container .content-container {
          grid-template-columns: 1fr 1fr;
          grid-column-gap: 50px;
          grid-row-gap: 50px; } }
      .about-benefits-section .about-benefits-container .content-container .item {
        display: flex;
        flex-direction: row;
        gap: 10px; }
        .about-benefits-section .about-benefits-container .content-container .item .item-icon img {
          height: 13.106px;
          width: 18.43px;
          aspect-ratio: 18.43/13.11; }
        .about-benefits-section .about-benefits-container .content-container .item .item-content h3 {
          color: #FDD023;
          font-size: 20px;
          font-weight: 900;
          margin-bottom: 10px; }
          @media only screen and (min-width: 992px) {
            .about-benefits-section .about-benefits-container .content-container .item .item-content h3 {
              font-size: 25px; } }
        .about-benefits-section .about-benefits-container .content-container .item .item-content p {
          color: #FFFFFF;
          font-size: 16px;
          font-weight: 400;
          line-height: 180%;
          margin-bottom: 0; }
          @media only screen and (min-width: 992px) {
            .about-benefits-section .about-benefits-container .content-container .item .item-content p {
              font-size: 18px; } }
          .about-benefits-section .about-benefits-container .content-container .item .item-content p a {
            color: #BFA0E9; }
            .about-benefits-section .about-benefits-container .content-container .item .item-content p a:hover {
              color: #F7F1FF; }

.about-news-section {
  background-color: #461D7C;
  padding: 40px 0;
  overflow: hidden; }
  @media only screen and (min-width: 768px) {
    .about-news-section {
      padding: 60px 0; } }
  @media only screen and (min-width: 992px) {
    .about-news-section {
      padding: 120px 0; } }
  @media only screen and (min-width: 992px) {
    .about-news-section .container {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      justify-content: space-between;
      gap: 60px; } }
  .about-news-section .container .heading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 22px; }
    @media only screen and (min-width: 992px) {
      .about-news-section .container .heading-container {
        width: 40%;
        align-items: flex-start;
        margin-top: 20px; } }
    .about-news-section .container .heading-container h2 {
      color: #FFFFFF;
      font-size: 30px;
      font-weight: 900;
      line-height: 120%;
      text-align: center;
      margin-bottom: 5px; }
      @media only screen and (min-width: 768px) {
        .about-news-section .container .heading-container h2 {
          font-size: 37px; } }
      @media only screen and (min-width: 992px) {
        .about-news-section .container .heading-container h2 {
          text-align: left;
          font-size: 68px; } }
    .about-news-section .container .heading-container .heading-brushstroke {
      width: 125px;
      height: auto;
      margin-top: 0.5rem; }
      @media (min-width: 768px) {
        .about-news-section .container .heading-container .heading-brushstroke {
          width: 148px; } }
      @media (min-width: 992px) {
        .about-news-section .container .heading-container .heading-brushstroke {
          width: 200px; } }
/* Splide JS Slider - Quote Slider */
@media only screen and (min-width: 992px) {
  .splide.quote-slider {
    width: 60%;
    overflow: visible; } }

.splide.quote-slider .splide__track {
  margin-right: calc(-50vw + 50%); }
  .splide.quote-slider .splide__track .splide__list {
    display: flex;
    flex-direction: row;
    gap: 20px;
    overflow: visible; }
    .splide.quote-slider .splide__track .splide__list .splide__slide.quote {
      background: #FFFFFF;
      width: 300px !important;
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      max-width: 700px; }
      @media only screen and (min-width: 768px) {
        .splide.quote-slider .splide__track .splide__list .splide__slide.quote {
          width: 350px !important; } }
      @media only screen and (min-width: 992px) {
        .splide.quote-slider .splide__track .splide__list .splide__slide.quote {
          width: 500px !important;
          padding: 30px; } }
      @media only screen and (min-width: 1500px) {
        .splide.quote-slider .splide__track .splide__list .splide__slide.quote {
          width: 750px !important;
          padding: 60px; } }
      .splide.quote-slider .splide__track .splide__list .splide__slide.quote .quote-icon {
        width: 46px;
        height: 30px;
        margin-bottom: 10px; }
      .splide.quote-slider .splide__track .splide__list .splide__slide.quote .quote-text {
        font-size: 16px;
        font-weight: 400;
        line-height: 1.8;
        margin-bottom: 0; }
        @media only screen and (min-width: 992px) {
          .splide.quote-slider .splide__track .splide__list .splide__slide.quote .quote-text {
            font-size: 20px; } }
      .splide.quote-slider .splide__track .splide__list .splide__slide.quote .quote-author-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        margin-top: 32px;
        width: 100%; }
        .splide.quote-slider .splide__track .splide__list .splide__slide.quote .quote-author-container img {
          width: 40px;
          height: 40px;
          border-radius: 50%; }
          @media only screen and (min-width: 992px) {
            .splide.quote-slider .splide__track .splide__list .splide__slide.quote .quote-author-container img {
              width: 100px;
              height: 100px; } }
        .splide.quote-slider .splide__track .splide__list .splide__slide.quote .quote-author-container h4 {
          color: #461D7C;
          font-family: "Roboto Condensed";
          font-size: 18px;
          font-style: normal;
          font-weight: 900;
          line-height: 120%;
          text-transform: uppercase;
          border-bottom: 4px solid #F1EDDB;
          margin-bottom: 5px;
          padding-bottom: 5px; }
          @media only screen and (min-width: 992px) {
            .splide.quote-slider .splide__track .splide__list .splide__slide.quote .quote-author-container h4 {
              font-size: 25px; } }
        .splide.quote-slider .splide__track .splide__list .splide__slide.quote .quote-author-container h5 {
          color: #9C7DC5;
          font-size: 12px;
          font-style: normal;
          font-weight: 700;
          line-height: 130%;
          margin-bottom: 0; }
          @media only screen and (min-width: 992px) {
            .splide.quote-slider .splide__track .splide__list .splide__slide.quote .quote-author-container h5 {
              font-size: 16px; } }
.splide.quote-slider .splide-arrows-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 5px; }
  @media only screen and (min-width: 768px) {
    .splide.quote-slider .splide-arrows-container {
      margin-bottom: 10px; } }
  @media only screen and (min-width: 992px) {
    .splide.quote-slider .splide-arrows-container {
      margin-bottom: 20px; } }
  .splide.quote-slider .splide-arrows-container .splide__arrow {
    background: none;
    border: none;
    padding: 0;
    width: 27px;
    height: 28px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    color: transparent;
    font-size: 0;
    cursor: pointer; }
    .splide.quote-slider .splide-arrows-container .splide__arrow:disabled {
      opacity: 1;
      cursor: not-allowed; }
  .splide.quote-slider .splide-arrows-container .splide__arrow--prev {
    background-image: url("../img/svg/arrow-back-active.svg"); }
    .splide.quote-slider .splide-arrows-container .splide__arrow--prev:disabled {
      background-image: url("../img/svg/arrow-back-inactive.svg"); }
  .splide.quote-slider .splide-arrows-container .splide__arrow--next {
    background-image: url("../img/svg/arrow-fwd-active.svg"); }
    .splide.quote-slider .splide-arrows-container .splide__arrow--next:disabled {
      background-image: url("../img/svg/arrow-fwd-inactive.svg"); }

.about-offerings-section {
  color: #FFFFFF;
  padding: 0;
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF; }
  @media only screen and (min-width: 992px) {
    .about-offerings-section {
      flex-direction: row;
      position: relative;
      padding: 0;
      background: url("../img/what-we-offer-bg-white.jpg") no-repeat center center;
      background-size: cover; } }
  .about-offerings-section .about-offerings-container {
    max-width: 100%; }
    @media only screen and (min-width: 992px) {
      .about-offerings-section .about-offerings-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        max-width: 960px;
        padding: 60px 2rem;
        margin: 0 auto; } }
    @media only screen and (min-width: 1200px) {
      .about-offerings-section .about-offerings-container {
        max-width: 1140px; } }
    @media only screen and (min-width: 1400px) {
      .about-offerings-section .about-offerings-container {
        max-width: 1370px;
        padding: 60px 0; } }
    .about-offerings-section .about-offerings-container .heading-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: auto;
      position: relative;
      background-image: url("../img/grads-bg.jpg");
      background-position: center;
      background-repeat: no-repeat;
      padding: 40px 0; }
      @media only screen and (min-width: 768px) {
        .about-offerings-section .about-offerings-container .heading-container {
          padding: 60px 0; } }
      @media only screen and (min-width: 992px) {
        .about-offerings-section .about-offerings-container .heading-container {
          align-items: flex-start;
          width: 50%;
          padding: 0 20px 0 0;
          background-image: none; } }
      .about-offerings-section .about-offerings-container .heading-container h2 {
        font-size: 30px;
        line-height: 1.2;
        font-weight: 900;
        font-family: "Roboto", sans-serif;
        text-align: center;
        margin: 0 20px 10px 20px;
        max-width: 540px; }
        @media (min-width: 768px) {
          .about-offerings-section .about-offerings-container .heading-container h2 {
            font-size: 40px; } }
        @media (min-width: 992px) {
          .about-offerings-section .about-offerings-container .heading-container h2 {
            font-size: 55px; } }
        @media (min-width: 1400px) {
          .about-offerings-section .about-offerings-container .heading-container h2 {
            font-size: 68px; } }
        @media only screen and (min-width: 768px) {
          .about-offerings-section .about-offerings-container .heading-container h2 {
            max-width: 720px; } }
        @media only screen and (min-width: 992px) {
          .about-offerings-section .about-offerings-container .heading-container h2 {
            text-align: left;
            margin: 0 40px 10px 0;
            max-width: 100%; } }
      .about-offerings-section .about-offerings-container .heading-container .heading-brushstroke {
        width: 125px;
        height: auto;
        margin-top: 0.5rem; }
        @media (min-width: 768px) {
          .about-offerings-section .about-offerings-container .heading-container .heading-brushstroke {
            width: 148px; } }
        @media (min-width: 992px) {
          .about-offerings-section .about-offerings-container .heading-container .heading-brushstroke {
            width: 200px; } }
    .about-offerings-section .about-offerings-container .content-container {
      display: flex;
      flex-direction: column;
      padding: 20px 30px 40px 30px;
      max-width: 540px;
      margin: 0 auto; }
      @media only screen and (min-width: 768px) {
        .about-offerings-section .about-offerings-container .content-container {
          padding: 40px 20px 60px 20px;
          max-width: 720px; } }
      @media only screen and (min-width: 992px) {
        .about-offerings-section .about-offerings-container .content-container {
          padding: 30px 30px 60px 30px;
          width: 50%;
          padding-left: 10%; } }
      .about-offerings-section .about-offerings-container .content-container p {
        color: #000000;
        font-size: 20px;
        font-weight: 400;
        line-height: 180%;
        margin-bottom: 30px;
        text-align: center; }
        @media only screen and (min-width: 768px) {
          .about-offerings-section .about-offerings-container .content-container p {
            font-size: 25px;
            line-height: 160%; } }
      .about-offerings-section .about-offerings-container .content-container .link-large-container {
        text-align: center;
        padding: 10px 0 20px 0;
        margin-bottom: 20px;
        border-bottom: 4px solid #F1EDDB; }
        @media only screen and (min-width: 768px) {
          .about-offerings-section .about-offerings-container .content-container .link-large-container {
            padding: 16px 0 23px 0; } }
        .about-offerings-section .about-offerings-container .content-container .link-large-container a.link-large {
          color: #461D7C;
          font-size: 20px;
          font-weight: 400;
          line-height: 140%;
          display: inline-flex;
          align-items: center;
          gap: 5px;
          text-decoration: none;
          transition: color 0.2s ease; }
          .about-offerings-section .about-offerings-container .content-container .link-large-container a.link-large:after {
            content: "›";
            font-weight: bold;
            transition: transform 0.2s ease; }
          .about-offerings-section .about-offerings-container .content-container .link-large-container a.link-large:hover {
            color: #683DA0;
            text-decoration: none; }
          .about-offerings-section .about-offerings-container .content-container .link-large-container a.link-large:hover:after {
            transform: translateX(3px); }
          @media only screen and (min-width: 768px) {
            .about-offerings-section .about-offerings-container .content-container .link-large-container a.link-large {
              font-size: 25px; } }
      .about-offerings-section .about-offerings-container .content-container ul.about-vertical-list {
        list-style: none;
        padding-inline-start: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px; }
        @media only screen and (min-width: 768px) {
          .about-offerings-section .about-offerings-container .content-container ul.about-vertical-list {
            gap: 16px; } }
        .about-offerings-section .about-offerings-container .content-container ul.about-vertical-list li a {
          color: #461D7C;
          font-size: 16px;
          font-weight: 400;
          line-height: 140%;
          display: inline-flex;
          align-items: center;
          gap: 5px;
          text-decoration: none;
          transition: color 0.2s ease; }
          .about-offerings-section .about-offerings-container .content-container ul.about-vertical-list li a:after {
            content: "›";
            font-weight: bold;
            transition: transform 0.2s ease; }
          .about-offerings-section .about-offerings-container .content-container ul.about-vertical-list li a:hover {
            color: #683DA0;
            text-decoration: none; }
          .about-offerings-section .about-offerings-container .content-container ul.about-vertical-list li a:hover:after {
            transform: translateX(3px); }
          @media only screen and (min-width: 992px) {
            .about-offerings-section .about-offerings-container .content-container ul.about-vertical-list li a {
              font-size: 20px; } }
.about-fast-facts-section {
  background-color: #461D7C;
  background-image: url("../img/background-purple-confetti.jpg");
  padding: 40px 0;
  color: #FFFFFF; }
  @media only screen and (min-width: 768px) {
    .about-fast-facts-section {
      padding: 60px 0; } }
  @media only screen and (min-width: 992px) {
    .about-fast-facts-section {
      padding: 120px 0; } }
  .about-fast-facts-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0; }
    @media only screen and (min-width: 768px) {
      .about-fast-facts-section .container {
        gap: 40px; } }
    @media only screen and (min-width: 992px) {
      .about-fast-facts-section .container {
        gap: 60px; } }
    .about-fast-facts-section .container h2 {
      text-align: center;
      font-family: Roboto;
      font-size: 30px;
      font-weight: 900;
      line-height: 120%;
      margin-bottom: 0; }
      @media only screen and (min-width: 768px) {
        .about-fast-facts-section .container h2 {
          font-size: 37px; } }
      @media only screen and (min-width: 992px) {
        .about-fast-facts-section .container h2 {
          font-size: 55px; } }
    .about-fast-facts-section .container ul.content-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0;
      margin-block-start: 0;
      padding-inline-start: 0; }
      @media only screen and (min-width: 768px) {
        .about-fast-facts-section .container ul.content-container {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          row-gap: 50px;
          width: 100%; } }
      .about-fast-facts-section .container ul.content-container li.item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        width: 100%;
        padding: 20px 0;
        position: relative;
        margin: 0; }
        .about-fast-facts-section .container ul.content-container li.item:last-child {
          padding-bottom: 0; }
        .about-fast-facts-section .container ul.content-container li.item:not(:last-child)::after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 50%;
          transform: translateX(-50%);
          width: 140px;
          height: 2px;
          background-color: #683DA0; }
          @media only screen and (min-width: 768px) {
            .about-fast-facts-section .container ul.content-container li.item:not(:last-child)::after {
              display: none; } }
        @media only screen and (min-width: 768px) {
          .about-fast-facts-section .container ul.content-container li.item {
            padding: 0 20px; }
            .about-fast-facts-section .container ul.content-container li.item:nth-child(2), .about-fast-facts-section .container ul.content-container li.item:nth-child(5) {
              border-left: 2px solid #683DA0;
              border-right: 2px solid #683DA0; } }
        @media only screen and (min-width: 992px) {
          .about-fast-facts-section .container ul.content-container li.item {
            padding: 0 40px; } }
        @media only screen and (min-width: 1500px) {
          .about-fast-facts-section .container ul.content-container li.item {
            padding: 0 60px; } }
        .about-fast-facts-section .container ul.content-container li.item h3 {
          background-image: url("../img/stat-brush-lg.png");
          background-position: center;
          background-repeat: no-repeat;
          background-size: 180px 38px;
          color: #FDD023;
          text-align: center;
          font-size: 40px;
          font-weight: 900;
          line-height: 100%;
          width: 100%;
          padding: 0;
          margin-bottom: 8px; }
          @media only screen and (min-width: 768px) {
            .about-fast-facts-section .container ul.content-container li.item h3 {
              font-size: 50px;
              background-size: 200px 42px; } }
          @media only screen and (min-width: 992px) {
            .about-fast-facts-section .container ul.content-container li.item h3 {
              font-size: 60px;
              background-size: 240px 54px; } }
          @media only screen and (min-width: 1500px) {
            .about-fast-facts-section .container ul.content-container li.item h3 {
              font-size: 80px;
              background-size: 276px 58px; } }
        .about-fast-facts-section .container ul.content-container li.item p {
          color: #FFFFFF;
          text-align: center;
          font-family: "Roboto Condensed";
          font-size: 21px;
          font-weight: 900;
          line-height: 120%;
          text-transform: uppercase;
          margin: 0; }
          .about-fast-facts-section .container ul.content-container li.item p span {
            color: #BFA0E9; }
          @media only screen and (min-width: 768px) {
            .about-fast-facts-section .container ul.content-container li.item p {
              font-size: 16px; } }
          @media only screen and (min-width: 992px) {
            .about-fast-facts-section .container ul.content-container li.item p {
              font-size: 25px; } }
.about-coach-section {
  background-color: #FFFFFF;
  padding: 40px 0;
  color: #000000; }
  @media only screen and (min-width: 768px) {
    .about-coach-section {
      padding: 60px 0; } }
  @media only screen and (min-width: 992px) {
    .about-coach-section {
      padding: 120px 0; } }
  .about-coach-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px; }
    @media only screen and (min-width: 992px) {
      .about-coach-section .container {
        flex-direction: row;
        flex-direction: row-reverse;
        align-items: flex-start;
        gap: 100px; } }
    @media only screen and (min-width: 1500px) {
      .about-coach-section .container {
        gap: 180px; } }
    .about-coach-section .container .heading-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px;
      flex: 1; }
      .about-coach-section .container .heading-container h2 {
        color: #461D7C;
        text-align: center;
        font-size: 30px;
        font-weight: 900;
        line-height: 120%; }
        @media only screen and (min-width: 768px) {
          .about-coach-section .container .heading-container h2 {
            font-size: 37px; } }
        @media only screen and (min-width: 992px) {
          .about-coach-section .container .heading-container h2 {
            font-size: 55px; } }
      .about-coach-section .container .heading-container p {
        color: #000000;
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 180%;
        border-bottom: 4px solid #F1EDDB;
        padding-bottom: 20px; }
        @media only screen and (min-width: 768px) {
          .about-coach-section .container .heading-container p {
            font-size: 25px; } }
      .about-coach-section .container .heading-container a {
        color: #461D7C;
        font-size: 20px;
        font-weight: 700;
        line-height: 140%;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        text-decoration: none;
        transition: color 0.2s ease; }
        .about-coach-section .container .heading-container a:after {
          content: "›";
          font-weight: bold;
          transition: transform 0.2s ease; }
        .about-coach-section .container .heading-container a:hover {
          color: #683DA0;
          text-decoration: none; }
        .about-coach-section .container .heading-container a:hover:after {
          transform: translateX(3px); }
        @media only screen and (min-width: 768px) {
          .about-coach-section .container .heading-container a {
            font-size: 25px; } }
    .about-coach-section .container .video-container {
      width: 100%;
      flex: 1; }

.about-get-started-section {
  background-image: url("../img/contact-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 0; }
  @media only screen and (min-width: 768px) {
    .about-get-started-section {
      padding: 60px 20px; } }
  @media only screen and (min-width: 992px) {
    .about-get-started-section {
      padding: 120px 20px; } }
  .about-get-started-section .about-get-started-content {
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px 20px; }
    @media only screen and (min-width: 992px) {
      .about-get-started-section .about-get-started-content {
        padding: 60px 30px; } }
    @media only screen and (min-width: 1500px) {
      .about-get-started-section .about-get-started-content {
        padding: 90px 40px; } }
    .about-get-started-section .about-get-started-content .heading-container {
      grid-area: heading;
      display: flex;
      flex-direction: column;
      align-items: center; }
      @media only screen and (min-width: 992px) {
        .about-get-started-section .about-get-started-content .heading-container {
          align-items: flex-start; } }
      .about-get-started-section .about-get-started-content .heading-container h2 {
        color: #461D7C;
        text-align: center;
        font-size: 30px;
        font-style: normal;
        font-weight: 900;
        line-height: 120%; }
        @media only screen and (min-width: 992px) {
          .about-get-started-section .about-get-started-content .heading-container h2 {
            font-size: 55px; } }
      .about-get-started-section .about-get-started-content .heading-container p {
        color: #000000;
        text-align: center;
        font-size: 18px;
        font-weight: 400;
        line-height: 160%; }
        @media only screen and (min-width: 768px) {
          .about-get-started-section .about-get-started-content .heading-container p {
            font-size: 25px; } }
    .about-get-started-section .about-get-started-content ul.content-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin: 0;
      padding-inline-start: 0;
      width: 100%; }
      @media only screen and (min-width: 992px) {
        .about-get-started-section .about-get-started-content ul.content-container {
          flex-direction: row;
          align-items: flex-start;
          justify-content: space-between;
          gap: 20px; } }
      .about-get-started-section .about-get-started-content ul.content-container li.item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        list-style: none;
        padding-inline-start: 0;
        width: 100%;
        border-bottom: 1px solid rgba(171, 171, 171, 0.4);
        padding-bottom: 20px; }
        .about-get-started-section .about-get-started-content ul.content-container li.item:last-child {
          border-bottom: none;
          padding-bottom: 0; }
        @media only screen and (min-width: 992px) {
          .about-get-started-section .about-get-started-content ul.content-container li.item {
            border-bottom: none;
            padding-bottom: 0; }
            .about-get-started-section .about-get-started-content ul.content-container li.item:nth-child(2) {
              border-left: 1px solid rgba(171, 171, 171, 0.4);
              border-right: 1px solid rgba(171, 171, 171, 0.4); } }
        .about-get-started-section .about-get-started-content ul.content-container li.item img {
          height: 38px;
          width: auto; }
          @media only screen and (min-width: 992px) {
            .about-get-started-section .about-get-started-content ul.content-container li.item img {
              height: 48px;
              width: auto; } }
        .about-get-started-section .about-get-started-content ul.content-container li.item h3 {
          color: #000000;
          font-size: 18px;
          font-style: normal;
          font-weight: 900;
          line-height: 150%;
          margin-bottom: 20px; }
        .about-get-started-section .about-get-started-content ul.content-container li.item p {
          font-size: 18px;
          line-height: 1.8; }
          @media only screen and (min-width: 992px) {
            .about-get-started-section .about-get-started-content ul.content-container li.item p {
              font-size: 25px; } }
        .about-get-started-section .about-get-started-content ul.content-container li.item a {
          color: #461D7C;
          font-size: 20px;
          font-weight: 700;
          line-height: 140%;
          display: inline-flex;
          align-items: center;
          gap: 5px;
          text-decoration: none;
          transition: color 0.2s ease; }
          .about-get-started-section .about-get-started-content ul.content-container li.item a:after {
            content: "›";
            font-weight: bold;
            transition: transform 0.2s ease; }
          .about-get-started-section .about-get-started-content ul.content-container li.item a:hover {
            color: #683DA0;
            text-decoration: none; }
          .about-get-started-section .about-get-started-content ul.content-container li.item a:hover:after {
            transform: translateX(3px); }
          @media only screen and (min-width: 992px) {
            .about-get-started-section .about-get-started-content ul.content-container li.item a {
              font-size: 25px; } }
/*---------------------
Partnership 2025
---------------------*/
html {
  scroll-behavior: smooth; }

a.button:link,
a.button:active,
a.button:visited {
  font-weight: 700; }

.arrow-bullet {
  position: relative;
  padding-left: 24px; }
  .arrow-bullet::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4em;
    width: 18px;
    height: 13px;
    background: url("../img/svg/arrow-bullet-pt.svg") no-repeat center center;
    background-size: contain; }
  @media (min-width: 992px) {
    .arrow-bullet {
      padding-left: 36px; }
      .arrow-bullet::before {
        width: 28px;
        height: 27px;
        top: 0; } }
.arrow-bullet-gold {
  position: relative;
  padding-left: 24px; }
  .arrow-bullet-gold::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4em;
    width: 18px;
    height: 13px;
    background: url("../img/svg/arrow-yellow-icn.svg") no-repeat center center;
    background-size: contain; }
  @media (min-width: 992px) {
    .arrow-bullet-gold {
      padding-left: 36px; }
      .arrow-bullet-gold::before {
        width: 28px;
        height: 27px;
        top: 0; } }
.page-title-header h1 {
  font-size: 25px;
  line-height: 1.2;
  font-weight: 900;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em; }
  @media (min-width: 992px) {
    .page-title-header h1 {
      font-size: 40px; } }
.pathway-intro-section {
  background-color: #FFFFFF;
  padding: 40px 0;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8; }
  @media only screen and (min-width: 768px) {
    .pathway-intro-section {
      padding: 60px 0; } }
  @media only screen and (min-width: 992px) {
    .pathway-intro-section {
      padding: 120px 0; } }
  .pathway-intro-section .pathway-intro-section-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    gap: 20px; }
    @media only screen and (min-width: 768px) {
      .pathway-intro-section .pathway-intro-section-container {
        gap: 30px; } }
    @media only screen and (min-width: 992px) {
      .pathway-intro-section .pathway-intro-section-container {
        flex-direction: row;
        align-items: flex-start;
        gap: 40px; } }
    @media only screen and (min-width: 1400px) {
      .pathway-intro-section .pathway-intro-section-container {
        gap: 80px; } }
    .pathway-intro-section .pathway-intro-section-container .heading-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px; }
      @media only screen and (min-width: 992px) {
        .pathway-intro-section .pathway-intro-section-container .heading-container {
          flex-direction: column;
          align-items: flex-start;
          width: 50%; } }
      .pathway-intro-section .pathway-intro-section-container .heading-container .heading-container-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px; }
        @media only screen and (min-width: 992px) {
          .pathway-intro-section .pathway-intro-section-container .heading-container .heading-container-text {
            align-items: flex-start; } }
        .pathway-intro-section .pathway-intro-section-container .heading-container .heading-container-text h2 {
          color: #461D7C;
          font-size: 30px;
          line-height: 1.2;
          font-weight: 900;
          font-family: "Roboto", sans-serif;
          margin-bottom: 0;
          text-align: center; }
          @media (min-width: 768px) {
            .pathway-intro-section .pathway-intro-section-container .heading-container .heading-container-text h2 {
              font-size: 40px; } }
          @media (min-width: 992px) {
            .pathway-intro-section .pathway-intro-section-container .heading-container .heading-container-text h2 {
              font-size: 55px; } }
          @media (min-width: 1400px) {
            .pathway-intro-section .pathway-intro-section-container .heading-container .heading-container-text h2 {
              font-size: 68px; } }
          @media only screen and (min-width: 992px) {
            .pathway-intro-section .pathway-intro-section-container .heading-container .heading-container-text h2 {
              text-align: left; } }
        .pathway-intro-section .pathway-intro-section-container .heading-container .heading-container-text .heading-brushstroke {
          width: 125px;
          height: auto;
          margin-top: 0.5rem; }
          @media (min-width: 768px) {
            .pathway-intro-section .pathway-intro-section-container .heading-container .heading-container-text .heading-brushstroke {
              width: 148px; } }
          @media (min-width: 992px) {
            .pathway-intro-section .pathway-intro-section-container .heading-container .heading-container-text .heading-brushstroke {
              width: 200px; } }
    .pathway-intro-section .pathway-intro-section-container .content-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px; }
      @media only screen and (min-width: 768px) {
        .pathway-intro-section .pathway-intro-section-container .content-container {
          align-items: flex-start; } }
      @media only screen and (min-width: 992px) {
        .pathway-intro-section .pathway-intro-section-container .content-container {
          align-items: flex-start;
          width: 50%; } }
      .pathway-intro-section .pathway-intro-section-container .content-container h3 {
        color: #461D7C;
        font-size: 20px;
        font-weight: 900;
        line-height: 28px; }
        @media only screen and (min-width: 992px) {
          .pathway-intro-section .pathway-intro-section-container .content-container h3 {
            font-size: 31px;
            line-height: 46px; } }
      .pathway-intro-section .pathway-intro-section-container .content-container p {
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 0; }
      .pathway-intro-section .pathway-intro-section-container .content-container .pathway-intro-image-container {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        gap: 20px; }
        @media only screen and (min-width: 768px) {
          .pathway-intro-section .pathway-intro-section-container .content-container .pathway-intro-image-container {
            flex-direction: row;
            gap: 40px;
            height: 280px; } }
        @media only screen and (min-width: 992px) {
          .pathway-intro-section .pathway-intro-section-container .content-container .pathway-intro-image-container {
            flex-direction: column;
            height: auto; } }
        @media only screen and (min-width: 1400px) {
          .pathway-intro-section .pathway-intro-section-container .content-container .pathway-intro-image-container {
            flex-direction: row;
            align-items: flex-start; } }
        .pathway-intro-section .pathway-intro-section-container .content-container .pathway-intro-image-container img {
          width: 100%;
          height: 152px;
          object-fit: cover;
          object-position: center; }
          @media only screen and (min-width: 768px) {
            .pathway-intro-section .pathway-intro-section-container .content-container .pathway-intro-image-container img {
              width: 50%;
              height: 100%; } }
          @media only screen and (min-width: 992px) {
            .pathway-intro-section .pathway-intro-section-container .content-container .pathway-intro-image-container img {
              width: 100%;
              height: 200px; } }
          @media only screen and (min-width: 1400px) {
            .pathway-intro-section .pathway-intro-section-container .content-container .pathway-intro-image-container img {
              width: 256px;
              height: 172px; } }
      .pathway-intro-section .pathway-intro-section-container .content-container .button {
        width: 100%;
        margin-top: 10px; }
        @media only screen and (min-width: 768px) {
          .pathway-intro-section .pathway-intro-section-container .content-container .button {
            margin-top: 40px; } }
.how-it-works-section {
  background-color: #461D7C;
  padding: 60px 0;
  color: #FFFFFF; }
  @media only screen and (min-width: 992px) {
    .how-it-works-section {
      padding: 120px 0; } }
  .how-it-works-section .how-it-works-container h2 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 900;
    font-family: "Roboto", sans-serif;
    margin-bottom: 20px;
    text-align: center; }
    @media (min-width: 768px) {
      .how-it-works-section .how-it-works-container h2 {
        font-size: 40px; } }
    @media (min-width: 992px) {
      .how-it-works-section .how-it-works-container h2 {
        font-size: 55px; } }
    @media (min-width: 1400px) {
      .how-it-works-section .how-it-works-container h2 {
        font-size: 68px; } }
    @media only screen and (min-width: 992px) {
      .how-it-works-section .how-it-works-container h2 {
        text-align: left; } }
  .how-it-works-section .how-it-works-container p {
    font-size: 20px;
    line-height: 36px;
    margin-bottom: 40px; }
    @media only screen and (min-width: 768px) {
      .how-it-works-section .how-it-works-container p {
        font-size: 25px;
        line-height: 40px; } }
  .how-it-works-section .how-it-works-container .two-column-container {
    display: flex;
    flex-direction: column;
    gap: 50px; }
    @media only screen and (min-width: 992px) {
      .how-it-works-section .how-it-works-container .two-column-container {
        flex-direction: row; } }
    .how-it-works-section .how-it-works-container .two-column-container .column {
      background-color: #FFFFFF;
      color: #000000;
      padding: 20px; }
      @media only screen and (min-width: 768px) {
        .how-it-works-section .how-it-works-container .two-column-container .column {
          padding: 50px; } }
      @media only screen and (min-width: 992px) {
        .how-it-works-section .how-it-works-container .two-column-container .column {
          width: 50%; } }
      .how-it-works-section .how-it-works-container .two-column-container .column h3 {
        color: #000000;
        background-color: #FDD023;
        font-family: "Roboto Condensed", sans-serif;
        font-size: 25px;
        font-weight: 900;
        padding: 4px;
        margin-bottom: 10px;
        display: inline-block; }
      .how-it-works-section .how-it-works-container .two-column-container .column h4 {
        font-size: 20px;
        line-height: 30px;
        font-weight: 900;
        color: #461D7C;
        margin-bottom: 10px; }
        @media only screen and (min-width: 768px) {
          .how-it-works-section .how-it-works-container .two-column-container .column h4 {
            font-size: 25px;
            line-height: 35px; } }
      .how-it-works-section .how-it-works-container .two-column-container .column h5 {
        font-size: 20px;
        line-height: 30px;
        margin: 10px 0;
        font-weight: 900;
        color: #461D7C; }
      .how-it-works-section .how-it-works-container .two-column-container .column p {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 10px; }
        @media only screen and (min-width: 768px) {
          .how-it-works-section .how-it-works-container .two-column-container .column p {
            font-size: 18px;
            line-height: 30px; } }
      .how-it-works-section .how-it-works-container .two-column-container .column ul {
        list-style: none;
        padding-inline-start: 0; }
        .how-it-works-section .how-it-works-container .two-column-container .column ul li {
          display: flex;
          flex-direction: row;
          align-items: center;
          gap: 10px;
          color: #461D7C;
          font-size: 16px;
          margin-bottom: 10px; }
          .how-it-works-section .how-it-works-container .two-column-container .column ul li:last-child {
            margin-bottom: 0; }
          @media only screen and (min-width: 768px) {
            .how-it-works-section .how-it-works-container .two-column-container .column ul li {
              font-size: 18px; } }
          .how-it-works-section .how-it-works-container .two-column-container .column ul li a {
            font-weight: 400; }
          .how-it-works-section .how-it-works-container .two-column-container .column ul li.arrow-bullet-gold::before {
            height: 15px;
            top: 7px; }

.pathway-offerings-section {
  color: #FFFFFF;
  padding: 0;
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF; }
  @media only screen and (min-width: 992px) {
    .pathway-offerings-section {
      flex-direction: row;
      position: relative;
      padding: 0;
      background: url("../img/what-we-offer-bg-white.jpg") no-repeat center center;
      background-size: cover; } }
  .pathway-offerings-section .what-we-offer-container {
    max-width: 100%; }
    @media only screen and (min-width: 992px) {
      .pathway-offerings-section .what-we-offer-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        max-width: 960px;
        padding: 60px 2rem;
        margin: 0 auto; } }
    @media only screen and (min-width: 1200px) {
      .pathway-offerings-section .what-we-offer-container {
        max-width: 1140px; } }
    @media only screen and (min-width: 1400px) {
      .pathway-offerings-section .what-we-offer-container {
        max-width: 1370px;
        padding: 60px 0; } }
    .pathway-offerings-section .what-we-offer-container .heading-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: auto;
      position: relative;
      background-image: url("../img/grads-bg.jpg");
      background-position: center;
      background-repeat: no-repeat;
      padding: 40px 0; }
      @media only screen and (min-width: 768px) {
        .pathway-offerings-section .what-we-offer-container .heading-container {
          padding: 60px 0; } }
      @media only screen and (min-width: 992px) {
        .pathway-offerings-section .what-we-offer-container .heading-container {
          align-items: flex-start;
          width: 50%;
          padding: 0 20px 0 0;
          background-image: none; } }
      .pathway-offerings-section .what-we-offer-container .heading-container h2 {
        font-size: 30px;
        line-height: 1.2;
        font-weight: 900;
        font-family: "Roboto", sans-serif;
        text-align: center;
        margin: 0 20px 10px 20px;
        max-width: 540px; }
        @media (min-width: 768px) {
          .pathway-offerings-section .what-we-offer-container .heading-container h2 {
            font-size: 40px; } }
        @media (min-width: 992px) {
          .pathway-offerings-section .what-we-offer-container .heading-container h2 {
            font-size: 55px; } }
        @media (min-width: 1400px) {
          .pathway-offerings-section .what-we-offer-container .heading-container h2 {
            font-size: 68px; } }
        @media only screen and (min-width: 768px) {
          .pathway-offerings-section .what-we-offer-container .heading-container h2 {
            max-width: 720px; } }
        @media only screen and (min-width: 992px) {
          .pathway-offerings-section .what-we-offer-container .heading-container h2 {
            text-align: left;
            margin: 0 40px 10px 0;
            max-width: 100%; } }
      .pathway-offerings-section .what-we-offer-container .heading-container .heading-brushstroke {
        width: 125px;
        height: auto;
        margin-top: 0.5rem; }
        @media (min-width: 768px) {
          .pathway-offerings-section .what-we-offer-container .heading-container .heading-brushstroke {
            width: 148px; } }
        @media (min-width: 992px) {
          .pathway-offerings-section .what-we-offer-container .heading-container .heading-brushstroke {
            width: 200px; } }
    .pathway-offerings-section .what-we-offer-container .content-container {
      display: flex;
      flex-direction: column;
      padding: 20px 30px 40px 30px;
      max-width: 540px;
      margin: 0 auto; }
      @media only screen and (min-width: 768px) {
        .pathway-offerings-section .what-we-offer-container .content-container {
          padding: 40px 20px 60px 20px;
          max-width: 720px; } }
      @media only screen and (min-width: 992px) {
        .pathway-offerings-section .what-we-offer-container .content-container {
          padding: 30px 30px 60px 30px;
          width: 50%;
          padding-left: 10%; } }
      .pathway-offerings-section .what-we-offer-container .content-container p {
        font-size: 20px;
        line-height: 1.8;
        font-weight: 400;
        font-family: "Roboto", sans-serif;
        color: #000000;
        margin-bottom: 30px; }
        @media (min-width: 768px) {
          .pathway-offerings-section .what-we-offer-container .content-container p {
            font-size: 25px; } }
      .pathway-offerings-section .what-we-offer-container .content-container p.note {
        font-size: 16px;
        font-style: italic;
        font-weight: 700;
        line-height: 190%;
        color: #000000;
        margin-bottom: 0;
        text-align: center; }
        @media only screen and (min-width: 768px) {
          .pathway-offerings-section .what-we-offer-container .content-container p.note {
            font-size: 18px; } }
      .pathway-offerings-section .what-we-offer-container .content-container ul {
        list-style: none;
        padding-inline-start: 0; }
      .pathway-offerings-section .what-we-offer-container .content-container .item {
        text-align: center;
        font-size: 20px;
        font-weight: 400;
        line-height: 1.8;
        color: #461D7C;
        padding: 10px 0 17px 0;
        border-bottom: 4px solid #F1EDDB; }
        @media only screen and (min-width: 768px) {
          .pathway-offerings-section .what-we-offer-container .content-container .item {
            font-size: 25px;
            padding: 16px 0 23px 0; } }
        .pathway-offerings-section .what-we-offer-container .content-container .item:last-child {
          border-bottom: none; }
        .pathway-offerings-section .what-we-offer-container .content-container .item a {
          font-weight: 400;
          text-decoration: none; }
          .pathway-offerings-section .what-we-offer-container .content-container .item a::after {
            content: " ›";
            margin-left: 2px; }

.pathway-benefits-section {
  background-color: #461D7C;
  padding: 40px 0;
  color: #FFFFFF; }
  @media only screen and (min-width: 768px) {
    .pathway-benefits-section {
      padding: 60px 0; } }
  @media only screen and (min-width: 992px) {
    .pathway-benefits-section {
      padding: 120px 0; } }
  .pathway-benefits-section .container {
    max-width: 1200px; }
    @media only screen and (min-width: 1200px) {
      .pathway-benefits-section .container {
        max-width: 1140px; } }
    @media only screen and (min-width: 1400px) {
      .pathway-benefits-section .container {
        max-width: 1400px; } }
  .pathway-benefits-section .pathway-benefits-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-areas: "heading" "image" "content"; }
    @media only screen and (min-width: 992px) {
      .pathway-benefits-section .pathway-benefits-container {
        grid-template-columns: 60% 1fr;
        grid-template-rows: 1fr;
        grid-template-areas: "heading image" "content image"; } }
    .pathway-benefits-section .pathway-benefits-container .heading-container {
      grid-area: heading; }
    .pathway-benefits-section .pathway-benefits-container .heading-container h2 {
      font-size: 30px;
      line-height: 1.2;
      font-weight: 900;
      font-family: "Roboto", sans-serif;
      margin-bottom: 40px;
      text-align: center; }
      @media (min-width: 768px) {
        .pathway-benefits-section .pathway-benefits-container .heading-container h2 {
          font-size: 40px; } }
      @media (min-width: 1400px) {
        .pathway-benefits-section .pathway-benefits-container .heading-container h2 {
          font-size: 55px; } }
      @media only screen and (min-width: 992px) {
        .pathway-benefits-section .pathway-benefits-container .heading-container h2 {
          text-align: left; } }
    .pathway-benefits-section .pathway-benefits-container .image-container {
      grid-area: image;
      width: calc(100% + 20px);
      height: 156px;
      margin-right: -20px;
      margin-bottom: 40px;
      overflow: hidden;
      padding-left: 20px; }
      @media only screen and (min-width: 576px) {
        .pathway-benefits-section .pathway-benefits-container .image-container {
          height: 220px; } }
      @media only screen and (min-width: 768px) {
        .pathway-benefits-section .pathway-benefits-container .image-container {
          height: 281px;
          margin-bottom: 40px; } }
      @media only screen and (min-width: 992px) {
        .pathway-benefits-section .pathway-benefits-container .image-container {
          position: absolute;
          left: 65%;
          width: 35%;
          height: 500px;
          height: calc(10vw + 450px);
          margin-right: 0;
          margin-bottom: 0;
          padding-left: 0; } }
      .pathway-benefits-section .pathway-benefits-container .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center; }
        @media only screen and (min-width: 992px) {
          .pathway-benefits-section .pathway-benefits-container .image-container img {
            object-position: -100px center; } }
    .pathway-benefits-section .pathway-benefits-container .content-container {
      grid-area: content;
      display: grid;
      grid-template-columns: 1fr;
      grid-template-rows: 1fr;
      grid-row-gap: 20px;
      list-style: none;
      padding-inline-start: 0; }
      @media only screen and (min-width: 768px) {
        .pathway-benefits-section .pathway-benefits-container .content-container {
          grid-template-columns: 1fr 1fr;
          grid-column-gap: 50px;
          grid-row-gap: 50px;
          padding: 0 20px; } }
      @media only screen and (min-width: 992px) {
        .pathway-benefits-section .pathway-benefits-container .content-container {
          padding: 0; } }
      .pathway-benefits-section .pathway-benefits-container .content-container .item {
        display: flex;
        flex-direction: row;
        gap: 10px; }
        .pathway-benefits-section .pathway-benefits-container .content-container .item .item-icon img {
          height: 13.106px;
          width: 18.43px;
          aspect-ratio: 18.43/13.11; }
        .pathway-benefits-section .pathway-benefits-container .content-container .item .item-content h3 {
          color: #FDD023;
          font-size: 20px;
          font-weight: 900;
          line-height: 150%;
          margin-bottom: 10px; }
          @media only screen and (min-width: 992px) {
            .pathway-benefits-section .pathway-benefits-container .content-container .item .item-content h3 {
              font-size: 25px;
              line-height: 150%; } }
        .pathway-benefits-section .pathway-benefits-container .content-container .item .item-content p {
          font-size: 16px;
          font-weight: 400;
          line-height: 1.8;
          margin-bottom: 0; }
          @media only screen and (min-width: 992px) {
            .pathway-benefits-section .pathway-benefits-container .content-container .item .item-content p {
              font-size: 18px;
              line-height: 1.8; } }
.pathway-get-started-section {
  background-color: #FFFFFF;
  padding: 40px 0 100px 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 0;
  color: #000000;
  background-image: url("../img/brushstroke-divider.png");
  background-repeat: no-repeat;
  background-size: 400px;
  background-position: center calc(100% + 80px); }
  @media only screen and (min-width: 768px) {
    .pathway-get-started-section {
      background-size: 700px;
      background-position: center calc(100% + 150px);
      padding: 60px 0 80px 0; } }
  @media only screen and (min-width: 992px) {
    .pathway-get-started-section {
      background-size: 900px;
      background-position: center calc(100% + 180px);
      padding: 120px 0 160px 0; } }
  @media only screen and (min-width: 1400px) {
    .pathway-get-started-section {
      background-size: 1200px;
      background-position: center calc(100% + 280px); } }
  .pathway-get-started-section h2 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 900;
    font-family: "Roboto", sans-serif;
    color: #461D7C;
    margin-bottom: 30px;
    text-align: center; }
    @media (min-width: 768px) {
      .pathway-get-started-section h2 {
        font-size: 40px; } }
    @media (min-width: 1400px) {
      .pathway-get-started-section h2 {
        font-size: 55px; } }
    @media only screen and (min-width: 992px) {
      .pathway-get-started-section h2 {
        margin-bottom: 3rem; } }
  .pathway-get-started-section .content-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    list-style: none;
    padding-inline-start: 0;
    margin-bottom: 20px; }
    @media only screen and (min-width: 768px) {
      .pathway-get-started-section .content-container {
        margin-bottom: 60px;
        grid-column-gap: 20px; } }
    @media only screen and (min-width: 992px) {
      .pathway-get-started-section .content-container {
        display: flex;
        justify-content: space-between;
        gap: 80px; } }
    .pathway-get-started-section .content-container .item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      padding: 30px 0;
      border-bottom: 1px solid #D6D6D6; }
      .pathway-get-started-section .content-container .item:last-child {
        border-bottom: none; }
      @media only screen and (min-width: 768px) {
        .pathway-get-started-section .content-container .item {
          gap: 10px;
          padding: 25px 0; } }
      @media only screen and (min-width: 992px) {
        .pathway-get-started-section .content-container .item {
          flex: 1;
          position: relative;
          padding: 0 0 25px 0;
          border-bottom: none; }
          .pathway-get-started-section .content-container .item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -40px;
            top: 0;
            height: 100%;
            width: 1px;
            background-color: #D6D6D6; } }
      .pathway-get-started-section .content-container .item img {
        width: 46px;
        height: 38px; }
        @media only screen and (min-width: 992px) {
          .pathway-get-started-section .content-container .item img {
            height: 50px;
            width: auto; } }
      .pathway-get-started-section .content-container .item h3 {
        font-size: 18px;
        line-height: 1.5;
        font-weight: 900;
        font-family: "Roboto", sans-serif;
        color: #461D7C;
        text-align: center;
        margin-bottom: 0; }
        @media (min-width: 992px) {
          .pathway-get-started-section .content-container .item h3 {
            font-size: 25px !important;
            line-height: 1.2; } }
        @media only screen and (min-width: 992px) {
          .pathway-get-started-section .content-container .item h3 {
            font-size: 25px;
            line-height: 30px; } }
      .pathway-get-started-section .content-container .item p {
        font-size: 16px;
        line-height: 27px;
        text-align: center;
        margin-bottom: 0; }
        @media only screen and (min-width: 992px) {
          .pathway-get-started-section .content-container .item p {
            font-size: 18px;
            line-height: 30px; } }
  .pathway-get-started-section .financial-aid-container {
    padding: 20px;
    background-color: #F7F1FF; }
    .pathway-get-started-section .financial-aid-container .financial-aid-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 20px;
      background-color: #FFFFFF; }
      @media only screen and (min-width: 768px) {
        .pathway-get-started-section .financial-aid-container .financial-aid-content {
          padding: 30px; } }
      @media only screen and (min-width: 992px) {
        .pathway-get-started-section .financial-aid-container .financial-aid-content {
          flex-direction: row;
          justify-content: center;
          gap: 20px; } }
      .pathway-get-started-section .financial-aid-container .financial-aid-content .financial-aid-content-heading {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center; }
        @media only screen and (min-width: 992px) {
          .pathway-get-started-section .financial-aid-container .financial-aid-content .financial-aid-content-heading {
            width: 40%;
            align-items: flex-start; } }
        .pathway-get-started-section .financial-aid-container .financial-aid-content .financial-aid-content-heading h3 {
          font-size: 30px;
          font-size: clamp(1.875rem, calc(1.7625rem + 0.5625vw), 2.4375rem);
          line-height: 36px;
          font-weight: 700;
          color: #461D7C;
          margin-bottom: 10px;
          text-align: center; }
          @media only screen and (min-width: 992px) {
            .pathway-get-started-section .financial-aid-container .financial-aid-content .financial-aid-content-heading h3 {
              text-align: left; } }
        .pathway-get-started-section .financial-aid-container .financial-aid-content .financial-aid-content-heading h4 {
          font-size: 15px;
          font-weight: 900;
          line-height: 150%;
          /* 22.5px */
          letter-spacing: 2.1px;
          text-transform: uppercase;
          color: #461D7C;
          margin-bottom: 10px;
          text-align: center; }
          @media only screen and (min-width: 992px) {
            .pathway-get-started-section .financial-aid-container .financial-aid-content .financial-aid-content-heading h4 {
              text-align: left; } }
      @media only screen and (min-width: 992px) {
        .pathway-get-started-section .financial-aid-container .financial-aid-content .financial-aid-content-text {
          width: 55%; } }
      .pathway-get-started-section .financial-aid-container .financial-aid-content .financial-aid-content-text p {
        font-size: 16px;
        line-height: 180%;
        font-weight: 400; }
        @media only screen and (min-width: 768px) {
          .pathway-get-started-section .financial-aid-container .financial-aid-content .financial-aid-content-text p {
            font-size: 18px;
            line-height: 190%; } }
.pathway-contact-section {
  background-image: url("../img/contact-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 0; }
  @media only screen and (min-width: 768px) {
    .pathway-contact-section {
      padding: 60px 0; } }
  @media only screen and (min-width: 992px) {
    .pathway-contact-section {
      padding: 120px 0; } }
  .pathway-contact-section .pathway-contact-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 0;
    grid-row-gap: 30px;
    grid-template-areas: "heading" "content" "contact";
    background-color: #FFFFFF;
    padding: 20px; }
    @media only screen and (min-width: 768px) {
      .pathway-contact-section .pathway-contact-container {
        padding: 30px; } }
    @media only screen and (min-width: 992px) {
      .pathway-contact-section .pathway-contact-container {
        grid-template-columns: 40% 55%;
        grid-template-rows: 1fr;
        grid-template-areas: "heading content" "contact contact";
        grid-column-gap: 5%;
        grid-row-gap: 80px;
        align-items: start;
        padding: 90px 70px; } }
    @media only screen and (min-width: 1400px) {
      .pathway-contact-section .pathway-contact-container {
        grid-template-columns: 35% 60%; } }
    .pathway-contact-section .pathway-contact-container .heading-container {
      grid-area: heading;
      display: flex;
      flex-direction: column;
      align-items: center; }
      @media only screen and (min-width: 992px) {
        .pathway-contact-section .pathway-contact-container .heading-container {
          align-items: flex-start; } }
      .pathway-contact-section .pathway-contact-container .heading-container h2 {
        color: #461D7C;
        font-size: 30px;
        line-height: 1.2;
        font-weight: 900;
        font-family: "Roboto", sans-serif;
        margin-bottom: 15px;
        text-align: center; }
        @media (min-width: 768px) {
          .pathway-contact-section .pathway-contact-container .heading-container h2 {
            font-size: 40px; } }
        @media (min-width: 1400px) {
          .pathway-contact-section .pathway-contact-container .heading-container h2 {
            font-size: 55px; } }
        @media only screen and (min-width: 992px) {
          .pathway-contact-section .pathway-contact-container .heading-container h2 {
            text-align: left; } }
      .pathway-contact-section .pathway-contact-container .heading-container .heading-brushstroke {
        width: 125px;
        height: auto;
        margin-top: 0.5rem; }
        @media (min-width: 768px) {
          .pathway-contact-section .pathway-contact-container .heading-container .heading-brushstroke {
            width: 148px; } }
        @media (min-width: 992px) {
          .pathway-contact-section .pathway-contact-container .heading-container .heading-brushstroke {
            width: 200px; } }
    .pathway-contact-section .pathway-contact-container .content-container {
      grid-area: content; }
      .pathway-contact-section .pathway-contact-container .content-container h3 {
        color: #000000;
        font-size: 18px;
        font-style: normal;
        font-weight: 900;
        line-height: 150%;
        margin-bottom: 20px; }
      .pathway-contact-section .pathway-contact-container .content-container p {
        font-size: 18px;
        line-height: 1.8; }
        @media only screen and (min-width: 992px) {
          .pathway-contact-section .pathway-contact-container .content-container p {
            font-size: 25px; } }
      .pathway-contact-section .pathway-contact-container .content-container ul {
        list-style: none;
        padding-inline-start: 0; }
        .pathway-contact-section .pathway-contact-container .content-container ul li {
          display: flex;
          flex-direction: row;
          align-items: center;
          gap: 10px;
          color: #461D7C;
          font-size: 18px;
          font-weight: 700;
          line-height: 150%;
          margin-bottom: 20px; }
          .pathway-contact-section .pathway-contact-container .content-container ul li:last-child {
            margin-bottom: 0; }
          .pathway-contact-section .pathway-contact-container .content-container ul li a {
            font-weight: 700; }
    .pathway-contact-section .pathway-contact-container .contact-container {
      grid-area: contact;
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      justify-content: center;
      gap: 15px; }
      .pathway-contact-section .pathway-contact-container .contact-container img {
        display: none; }
        @media only screen and (min-width: 768px) {
          .pathway-contact-section .pathway-contact-container .contact-container img {
            display: block;
            width: 50px;
            height: 50px; } }
      .pathway-contact-section .pathway-contact-container .contact-container .contact-content h3 {
        color: #461D7C;
        font-size: 18px;
        font-weight: 900;
        line-height: 140%;
        margin-bottom: 10px; }
        @media only screen and (min-width: 768px) {
          .pathway-contact-section .pathway-contact-container .contact-container .contact-content h3 {
            font-size: 39px; } }
      .pathway-contact-section .pathway-contact-container .contact-container .contact-content p {
        font-size: 16px;
        line-height: 180%; }
        @media only screen and (min-width: 768px) {
          .pathway-contact-section .pathway-contact-container .contact-container .contact-content p {
            font-size: 18px;
            line-height: 190%; } }
/* Page header and main image */
.container.large-container {
  max-width: 1400px; }

.page-header {
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 100px; }
  .page-header .content-block .content {
    padding: 1rem 2rem; }
    .page-header .content-block .content h1 {
      font-size: 2rem;
      font-size: clamp(2rem, calc(1.8rem + 1vw), 3rem);
      margin-bottom: 1.5rem; }
    .page-header .content-block .content p {
      font-size: 1.25rem; }
    .page-header .content-block .content ul {
      list-style-type: none;
      margin: 0;
      padding-inline-start: 0; }
    .page-header .content-block .content li {
      display: flex;
      flex-direction: row;
      align-items: center;
      font-size: 1.25rem;
      font-weight: 500;
      margin-bottom: 0.5rem;
      color: #461D7C; }
      .page-header .content-block .content li:last-child {
        margin-bottom: 0; }
      .page-header .content-block .content li:before {
        content: url("../img/check-circle-gold.png");
        padding-right: 1rem;
        margin-top: 5px; }
  .page-header .image {
    width: 100%;
    margin-bottom: 20px;
    position: relative; }
    .page-header .image img {
      width: 100%; }
    .page-header .image .header-image {
      position: relative;
      width: 100%;
      height: 300px;
      object-fit: cover; }

@media only screen and (min-width: 992px) {
  .page-header {
    flex-direction: row;
    margin-top: 50px; }
    .page-header .content-block {
      width: 50%; }
      .page-header .content-block .content {
        max-width: 700px;
        margin: 0 0 0 auto;
        padding: 0 1rem; }
    .page-header .image {
      width: 50%;
      padding-left: 1rem; }
      .page-header .image::before {
        content: '';
        z-index: 5;
        right: 0;
        width: 50%;
        height: 400px;
        display: block;
        position: absolute;
        background: linear-gradient(-90deg, rgba(240, 241, 242, 0.8) 0%, rgba(240, 241, 242, 0) 50%); }
      .page-header .image .header-image {
        height: 400px;
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px; } }

/* Quote Section */
.page-quote-block {
  background: #474747;
  color: #fff;
  margin-top: 200px; }

.quote-block {
  display: flex;
  flex-direction: column;
  align-items: center; }
  .quote-block .circle-image {
    border-radius: 50%;
    border: solid #eec12a 10px;
    width: 200px;
    margin-top: -100px;
    margin-bottom: 2rem; }
  .quote-block .video {
    width: 100%;
    margin-top: -100px;
    margin-bottom: 2rem; }
  .quote-block .content {
    margin-bottom: 3rem; }
    .quote-block .content .quote {
      display: flex;
      flex-direction: row; }
      .quote-block .content .quote img {
        width: 40px; }
      .quote-block .content .quote .open-quote {
        padding-right: 10px; }
      .quote-block .content .quote .close-quote {
        align-self: flex-end;
        transform: rotate(180deg);
        padding-left: 10px; }
      .quote-block .content .quote h2 {
        font-size: 1.25rem;
        line-height: 2rem;
        position: relative;
        width: 100%; }
    .quote-block .content .author {
      margin-left: 50px;
      font-weight: 200; }
      .quote-block .content .author .name {
        display: block;
        color: #eec12a;
        font-size: 1.25rem;
        font-weight: 500; }

@media only screen and (min-width: 992px) {
  .quote-block {
    flex-direction: row;
    justify-content: space-between; }
    .quote-block .circle-image {
      width: 240px; }
    .quote-block .image {
      margin-right: 4rem;
      margin-top: -110px; }
    .quote-block .video {
      width: 40%;
      margin-bottom: 100px; }
    .quote-block .content {
      margin: 3rem 0 5rem 0;
      padding-left: 2rem; }
      .quote-block .content.video-quote {
        width: 60%; }
      .quote-block .content .quote .open-quote {
        padding-right: 20px; }
      .quote-block .content .quote .close-quote {
        padding-left: 20px; }
      .quote-block .content .author {
        margin-left: 60px; } }

/* Steps Block */
.steps-block .top-background {
  background: #474747;
  height: 100px; }

.steps-block .steps-section {
  background-color: #ffffff;
  padding: 2rem;
  margin-top: -100px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px; }
  .steps-block .steps-section h2 {
    color: #461D7C;
    text-align: center;
    font-size: 2rem;
    font-size: clamp(2rem, calc(1.8rem + 1vw), 3rem);
    margin-bottom: 2rem; }
  .steps-block .steps-section .individual-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding-top: 1rem; }
    .steps-block .steps-section .individual-step h3 {
      color: #461D7C; }
  .steps-block .steps-section .step-number {
    width: 40px;
    height: 40px;
    position: absolute;
    left: -52px;
    top: 28px;
    transform: translateY(-50%);
    background-color: #ffffff;
    border-radius: 50%;
    border: 2px solid #fff;
    text-align: center;
    color: #461D7C;
    font-size: 24px;
    line-height: 35px;
    z-index: 5; }
  .steps-block .steps-section .step-details {
    width: 100%;
    margin-bottom: 3rem; }
  .steps-block .steps-section .animate2 {
    animation: animate2 0.8s ease-in-out forwards;
    opacity: 30; }

@keyframes animate2 {
  from {
    border: 2px solid #fff; }
  to {
    border: 2px solid #eec12a;
    opacity: 1; } }
  .steps-block .steps-section .vertical-line {
    content: "";
    position: absolute;
    height: 100%;
    width: 2px;
    left: -33px;
    top: 28px;
    z-index: 0; }
  .steps-block .steps-section .vertical-line-animation {
    animation: line-appear 0.2s ease-in-out forwards;
    animation-delay: 0.2s; }

@keyframes line-appear {
  0% {
    height: 0;
    background-color: #eec12a; }
  100% {
    height: 100%;
    background-color: #eec12a; } }
  .steps-block .steps-section .active-step {
    color: #F8DC9B; }

@media only screen and (min-width: 840px) {
  .steps-block .steps-section .step-number {
    width: 60px;
    height: 60px;
    left: -62px;
    font-size: 40px;
    line-height: 55px; }
  .steps-block .steps-section .step-details {
    margin-left: 2rem; }
  .steps-block .steps-section .vertical-line {
    left: -33px; } }

/* Campus Dropdown Content */
.campus-menu-wrapper {
  width: 100%;
  max-width: 570px; }

.campus-menu {
  position: relative;
  display: inline-block;
  width: 100%; }
  .campus-menu::after {
    content: "\f107";
    color: #474747;
    font-size: 1.5rem;
    font-weight: 800;
    top: 5px;
    right: 10px;
    position: absolute;
    font-family: "FontAwesome"; }
  .campus-menu select, .campus-menu option {
    -webkit-appearance: none; }
  .campus-menu select {
    background-color: #fff;
    color: #474747;
    font-weight: 500;
    border-radius: 1vh;
    border-color: transparent;
    width: 100%;
    border-radius: 5px;
    border: 2px solid silver;
    padding: 10px; }

.campus-content {
  margin: 2rem 0;
  background: #fff; }
  .campus-content .data {
    display: none; }
    .campus-content .data h4 {
      font-size: 1rem; }
  .campus-content .data.show {
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    border: 2px solid silver;
    margin-top: -40px; }
    .campus-content .data.show div {
      width: 100%;
      padding: 2rem; }
      .campus-content .data.show div h4 {
        margin-bottom: 1rem; }
      .campus-content .data.show div p:last-child {
        margin-bottom: 0; }
      .campus-content .data.show div .indent {
        padding-left: 1rem; }
    @media only screen and (min-width: 680px) {
      .campus-content .data.show {
        flex-direction: row; } }
/* Article Block */
.background-light-grey {
  background: #DDDDDD;
  padding: 5rem 0 4rem 0; }
  @media only screen and (min-width: 1400px) {
    .background-light-grey .container {
      padding: 0; } }
.article-block .slick-dots {
  bottom: -50px !important;
  display: none !important; }

.article-block .slick-slide {
  padding: 0 15px; }

.article-block .slick-prev,
.article-block .slick-next {
  top: auto;
  bottom: -60px;
  z-index: 2;
  height: auto;
  width: auto;
  transform: none; }

.article-block .slick-prev {
  left: calc(50% - 45px); }

.article-block .slick-next {
  right: calc(50% - 45px); }

.article-block .slick-prev .slick-prev-icon,
.article-block .slick-next .slick-next-icon {
  color: #474747;
  opacity: 0.75;
  font-size: 40px;
  line-height: 1; }

.article-block .slick-prev:focus,
.article-block .slick-next:focus {
  top: auto;
  outline: none;
  padding: 0;
  margin: 0; }
  .article-block .slick-prev:focus .slick-prev-icon,
  .article-block .slick-next:focus .slick-prev-icon {
    margin-left: 0; }
  .article-block .slick-prev:focus .slick-prev-icon,
  .article-block .slick-prev:focus .slick-next-icon,
  .article-block .slick-next:focus .slick-prev-icon,
  .article-block .slick-next:focus .slick-next-icon {
    color: #474747;
    font-size: 40px;
    line-height: 1; }

.article-block .slide {
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem; }
  .article-block .slide img {
    width: 100%; }
  .article-block .slide .content {
    background-color: #fff;
    min-height: 120px;
    display: flex;
    align-items: center;
    padding: 20px;
    border-top: solid 3px #461d7c; }

/* Support Block */
.support-block {
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center; }
  .support-block h2 {
    font-size: 2rem;
    font-size: clamp(2rem, calc(1.8rem + 1vw), 3rem);
    text-align: center;
    margin-bottom: 2rem; }
  .support-block .buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; }
    .support-block .buttons .btn {
      width: 220px; }
    @media only screen and (min-width: 800px) {
      .support-block .buttons {
        flex-direction: row; } }
/* Highlight Block */
.highlight-block {
  display: flex;
  flex-direction: column;
  margin: 4rem auto;
  position: relative; }
  .highlight-block .media {
    width: 100%;
    margin: 0 auto;
    z-index: 1; }
    @media only screen and (min-width: 620px) {
      .highlight-block .media {
        width: 90%; } }
  .highlight-block .content {
    background: #fff;
    border: solid #c8c8c8 1px;
    padding: 7rem 2rem 2rem 2rem;
    margin-top: -5rem;
    border-radius: 5px; }
    .highlight-block .content h2 {
      text-align: center;
      color: #474747;
      font-size: 2rem; }

@media only screen and (min-width: 992px) {
  .highlight-block {
    display: flex;
    flex-direction: row;
    align-items: center; }
    .highlight-block .media {
      width: 100%;
      max-width: 400px;
      padding: 0;
      margin: 0; }
    .highlight-block .content {
      width: 100%;
      padding: 4rem 2rem 4rem 15rem;
      margin-top: 0;
      margin-left: -12rem; }
      .highlight-block .content h2 {
        text-align: left; } }

/* FAQ Block */
.faq-block {
  margin: 5rem 0; }
  .faq-block h3#accordion-headings {
    font-size: 1rem !important;
    font-weight: 200; }

.notification-row {
  padding: 10px 0; }
  .notification-row > p {
    margin: 0;
    font-weight: bold; }
    .notification-row > p a {
      color: white;
      text-decoration: underline !important; }

@media only screen and (max-width: 425px) {
  .notification-row {
    padding: 5px; }
    .notification-row > p {
      font-size: 12px;
      text-align: center; } }

@media only screen and (max-width: 768px) {
  .notification-row {
    padding: 5px; }
    .notification-row > p {
      text-align: center; } }

@media only screen and (max-width: 667px) {
  .cc-window {
    font-size: 10px !important;
    max-height: 120px; } }

.hero-img-container {
  max-width: 480px; }

.webinar h1, .webinar h2, .webinar h3, .webinar h4 {
  color: #474747;
  font-weight: 200; }

.webinar h2 {
  font-size: 2rem; }

.details h1::after {
  content: "";
  display: block;
  border-bottom: 2px solid #474747;
  width: 80%;
  margin: 10px auto 10px auto; }

.details h2::after {
  content: "";
  display: block;
  border-bottom: 2px solid #474747;
  width: 80%;
  margin: 10px 0 0 0; }

.title-line {
  background: #474747;
  height: 2px;
  width: 200px;
  margin: 0 auto; }

.webinar.btn-purple {
  background-color: #461d7c;
  color: white !important;
  text-align: center; }

.webinar-listing {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 1px 1px rgba(0, 0, 0, 0.3);
  position: relative;
  padding: 10px 10px 10px 15px;
  margin-bottom: 10px; }
  .webinar-listing h3 {
    padding: 0;
    margin: 0; }
  .webinar-listing h3 a {
    color: #461d7c;
    font-size: 1rem;
    font-weight: 200;
    line-height: 1rem; }
  .webinar-listing h3 a:hover {
    color: rgba(70, 29, 124, 0.8); }
  .webinar-listing span {
    font-size: .8rem; }

.webinar-listing-date {
  width: 60px;
  min-width: 60px;
  height: 60px;
  padding: 4px;
  background: #461d7c;
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  margin: 0 10px 0 0; }

.webinar-listing-day {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: -5px; }

.webinar-listing-month {
  font-size: .8rem;
  font-weight: 200;
  margin-bottom: 5px; }

.webinar-listing-buttons {
  display: none; }

.webinar-listing.featured::after {
  font-weight: 500;
  font-family: "FontAwesome";
  content: "\f02e";
  color: #eec12a;
  position: absolute;
  top: -10px;
  left: 6px;
  font-size: 2rem; }

.speakers {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap; }

.speakers > div {
  text-align: center;
  padding: 20px 0; }
  .speakers > div img {
    padding-bottom: 20px; }
  .speakers > div h4 {
    font-size: 1.2rem; }

.speaker-social {
  font-size: 40px; }
  .speaker-social a {
    padding-right: 20px; }
  .speaker-social a:last-child {
    padding-right: 0; }

.webinar-description {
  padding: 0 0 0 0; }

.webinar-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px; }
  .webinar-highlight img {
    padding: 0 0 10px 0; }
  .webinar-highlight p {
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 1.2rem; }

.webinar-cta-box {
  background-color: #ffffff;
  border: solid 1px #461d7c;
  border-radius: 5px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80%;
  margin-left: 10%; }

.webinar-cta-text {
  padding: 0 0 10px 0; }
  .webinar-cta-text h3 {
    margin: 0;
    font-size: 1.4rem; }

.webinar-cta-button {
  padding: 0; }

@media only screen and (min-width: 767px) {
  .details h1::after {
    width: 300px;
    margin: 10px 0 40px 0; }
  .details h2::after {
    width: 300px;
    margin: 10px 0 0 0; }
  .speakers {
    flex-direction: row; }
  .speakers > div {
    width: 50%;
    padding: 40px; }
  .webinar-description {
    padding: 0 40px 0 0; }
  .webinar-cta-box {
    flex-direction: row; }
  .webinar-cta-text {
    padding: 0 10px 0 0; }
    .webinar-cta-text h3 {
      font-size: 1.8rem; }
  .webinar-cta-button {
    padding: 0 0 0 10px; } }

@media only screen and (min-width: 992px) {
  .webinar-listing h3 a {
    font-size: 1.2rem; }
  .webinar-listing span {
    font-size: .9rem; }
  .webinar-listing-buttons {
    display: block;
    position: absolute;
    right: 15px; }
  .webinar-highlight {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-bottom: 20px; }
    .webinar-highlight img {
      padding: 0 10px 0 0; }
    .webinar-highlight p {
      text-align: left; } }

/*----------------------------------
blog style from ald newsroom.scss 
------------------------------------*/
.blog h1 {
  color: #474747;
  font-size: 1.6rem;
  font-weight: 500; }

.blog h2 {
  color: #474747;
  font-size: 1.3rem;
  font-weight: 500; }

.blog h3 {
  color: #474747;
  font-size: 1.1rem;
  font-weight: 500; }

.blog-img-top {
  width: 100%;
  border-top-left-radius: calc(.25rem - 1px);
  border-top-right-radius: calc(.25rem - 1px); }

.blog-body {
  flex: 1 1 auto;
  padding: 0 1.25rem;
  height: 120px; }

.blog-title {
  display: flex;
  flex-flow: column;
  justify-content: center;
  height: 80px;
  padding: 0;
  margin: 0; }
  .blog-title h2 {
    font-size: 1rem;
    margin: 0; }

.blog-footer {
  width: 100%;
  font-size: .8rem;
  color: #999999;
  border-top: solid 2px grey;
  padding-top: 5px;
  margin-top: 5px; }
  .blog-footer img {
    float: right;
    margin-top: 5px; }

@media only screen and (min-width: 425px) {
  .blog-body {
    height: 140px; }
  .blog-title {
    height: 100px; }
    .blog-title h2 {
      font-size: 1rem; }
  .blog-footer {
    padding-top: 5px;
    margin-top: 5px; } }

@media only screen and (min-width: 768px) {
  .small-main-image-box h2 {
    font-size: 2rem; }
  .blog-body {
    height: 120px; }
  .blog-title {
    height: 80px; }
    .blog-title h2 {
      font-size: 1rem; }
  .blog-footer {
    padding-top: 5px;
    margin-top: 5px; }
  .blog h1 {
    font-size: 2rem; }
  .blog h2 {
    font-size: 1.5rem; }
  .blog h3 {
    font-size: 1.3rem; }
  h1.featured-headline {
    font-size: 2rem;
    padding: 12px 0 10px 0; }
  .newsroom-cta {
    display: flex;
    flex-flow: row; }
  .newsroom-cta-text {
    width: 70%;
    font-size: 1.2rem;
    line-height: 1.8rem;
    display: flex;
    flex-flow: column;
    justify-content: center;
    text-align: left;
    padding-right: 20px; }
  .newsroom-cta-button {
    width: 30%;
    margin: 0;
    display: flex;
    flex-flow: column;
    justify-content: center; } }

@media only screen and (min-width: 992px) {
  .blog h1 {
    font-size: 2.2rem; }
  .blog h2 {
    font-size: 1.7rem; }
  .blog h3 {
    font-size: 1.4rem; }
  .small-main-image-box h2 {
    font-size: 3rem; }
  .blog-body {
    height: 110px; }
  .blog-title {
    height: 70px; }
    .blog-title h2 {
      font-size: 1rem; }
  .blog-footer {
    padding-top: 5px;
    margin-top: 5px; } }

@media only screen and (min-width: 1200px) {
  .blog-body {
    height: 120px; }
  .blog-title {
    height: 80px; }
    .blog-title h2 {
      font-size: 1.2rem; }
  .blog-footer {
    border-top: solid 2px grey;
    padding-top: 5px;
    margin-top: 5px; }
  .blog h1 {
    font-size: 2.4rem; }
  .blog h2 {
    font-size: 1.8rem; }
  .blog h3 {
    font-size: 1.4rem; } }

.uiLabel {
  display: block !important; }

.embeddedServiceHelpButton .helpButton .uiButton {
  background-color: green !important;
  height: 60px !important;
  position: fixed;
  bottom: 0 !important;
  right: 12px !important;
  font-size: 20px !important;
  padding: 0 20px !important; }

@media only screen and (max-width: 768px) {
  .embeddedServiceHelpButton .helpButton .uiButton {
    height: 50px !important;
    position: fixed;
    bottom: 12px !important;
    left: 12px !important;
    font-size: 16px !important; } }

.btn-primary.large,
.btn-warning.large,
.btn-outline-purple.large {
  width: 100%;
  max-width: 320px !important;
  padding: 15px !important;
  font-weight: bold !important; }

.comparison-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 0 40px;
  margin-bottom: 100px; }

.comparison-container.geauxpage {
  flex-direction: column; }

.comparison-card-block {
  position: relative;
  width: 100%;
  max-width: 550px;
  margin-right: 60px; }

.comparison-card-block:last-child {
  margin-right: 0; }

.comparison-container-three {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 0 40px;
  margin-bottom: 100px; }

.comparison-card-block-three {
  position: relative;
  width: 100%;
  max-width: 450px;
  margin-right: 40px; }

.comparison-card-block-three:last-child {
  margin-right: 0; }

.comparison-card {
  background-clip: border-box;
  border-radius: 0.25rem; }

.comparison-card-header {
  background-color: #461d7c;
  padding: 30px 20px 10px 20px;
  text-align: center;
  min-height: 140px; }
  .comparison-card-header h3 {
    color: #fff;
    margin: 20px 0;
    font-size: 20px; }
  .comparison-card-header img {
    height: 40px; }

.comparison-card-body {
  position: relative;
  background-color: #fff;
  padding: 30px 30px 0 30px;
  overflow: hidden;
  height: 320px; }

.comparison-card-body.expanded {
  height: auto; }

.comparison-read-more-button {
  background-color: #fff;
  display: flex;
  justify-content: center;
  padding: 40px 20px; }

.comparison-fade-overlay {
  width: 100%;
  height: 120px;
  position: absolute;
  display: block;
  bottom: 0;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), white 100%); }

.comparison-fade-overlay.hide {
  display: none; }

.comparison-program-container {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  border: solid 1px #ececec; }

.comparison-program-list {
  display: none;
  width: 100%;
  margin-bottom: 40px; }
  .comparison-program-list h4 {
    font-size: 24px;
    padding-bottom: 10px;
    border-bottom: 2px #474747 solid;
    margin: 40px 0 20px 0;
    text-align: center; }
  .comparison-program-list ul {
    list-style-type: none;
    padding-inline-start: 0; }
  .comparison-program-list li {
    margin-bottom: 1rem; }

.comparison-program-list.expanded {
  display: block; }

.school-comparison-card {
  text-align: center;
  width: 100%; }

.school-comparison-header {
  background: #dbdbdb;
  padding: 10px; }

.school-comparison-header h4 {
  font-size: 20px;
  padding: 10px 0;
  margin: 0; }

.school-comparison-data {
  display: flex;
  flex-direction: column; }

.school-comparison-data div {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
  min-width: 140px;
  background-color: #fff;
  border: solid 1px #ececec;
  border-bottom: none; }

.school-comparison-data div p {
  display: flex;
  align-items: center;
  padding: 0 10px;
  height: 100%;
  line-height: 1.1rem;
  color: #575757;
  margin: 20px 0;
  font-size: 20px;
  line-height: 26px; }

.school-comparison-bottom-text p {
  color: #7e7e7e;
  font-size: 12px;
  line-height: 18px;
  margin: 5px 0 0 0;
  padding: 0 10px; }

.primary .school-comparison-header {
  background: #ffc107;
  color: #461d7c; }

.primary .school-comparison-data div {
  background: #fff4d4; }
  .primary .school-comparison-data div p {
    color: #461d7c; }

table.comparison {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: auto; }

table.comparison caption {
  font-size: 1.5em;
  margin: .5em 0 .75em; }

table.comparison tr {
  background-color: #ffffff;
  border: 1px solid #ddd;
  padding: .35em; }

table.comparison th,
table.comparison td {
  padding: .625em;
  border-right: 1px solid #ddd;
  width: auto;
  text-align: center; }

table.comparison th:first-child,
table.comparison td:first-child {
  width: 200px;
  text-align: left; }

table.comparison th:last-child,
table.comparison td:last-child {
  border-right: none; }

table.comparison th {
  font-weight: 500;
  background-color: #ddd; }

@media screen and (max-width: 999px) {
  .comparison-card-block {
    margin-right: 40px; }
  .comparison-container-three {
    flex-direction: column;
    align-items: center;
    padding: 0 20px; }
  .comparison-card-block-three {
    margin-right: 0;
    margin-bottom: 40px;
    max-width: 600px; }
  .comparison-card-block-three:last-child {
    margin-right: 0;
    margin-bottom: 0; } }

@media screen and (max-width: 767px) {
  .comparison-container {
    flex-direction: column;
    align-items: center;
    padding: 0 20px; }
  .comparison-card-block {
    margin-right: 0;
    margin-bottom: 40px; }
  .comparison-card-block:last-child {
    margin-right: 0;
    margin-bottom: 0; }
  table.comparison {
    border: 0; }
  table.comparison th,
  table.comparison td {
    width: 100%;
    border-right: none; }
  table.comparison caption {
    font-size: 1.3em; }
  table.comparison thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px; }
  table.comparison tr {
    border-bottom: 3px solid #ddd;
    display: block; }
  table.comparison td {
    border-bottom: 1px solid #ddd;
    display: block;
    text-align: right; }
  table.comparison td::before {
    content: attr(data-label);
    float: left; }
  table.comparison td:first-child::before {
    content: "";
    float: none; }
  table.comparison td:first-child {
    text-align: left;
    font-weight: bold;
    width: 100%; }
  table.comparison td:last-child {
    border-bottom: 0; } }

/* Cookie Consent*/
#cm {
  background: #eec12a !important;
  color: #2f2f2f;
  font-weight: 500; }
  #cm a:link {
    font-weight: 700; }

#c-bns button:first-child {
  background: #461d7c !important; }

.skip-link {
  background: #eec12a;
  color: #3f3f3f;
  font-weight: 700;
  left: 50%;
  padding: 4px;
  position: absolute;
  transform: translateY(calc(-100% - 80px));
  transition: transform 0.3s;
  z-index: 100; }

.skip-link:focus {
  transform: translateY(0%); }

/* Google Search*/
.gsc-control-cse {
  padding: 0 !important; }

/* */
.listing {
  position: relative; }
  .listing em {
    position: absolute;
    right: 0;
    top: 0;
    margin-left: 10px;
    font-size: 0.8rem; }

.cob-logo {
  justify-content: center; }
  .cob-logo img {
    max-width: 35%; }

@media only screen and (max-width: 768px) {
  .cob-logo img {
    max-width: 80%; } }

@media only screen and (max-width: 425px) {
  .cob-logo img {
    max-width: 100%; } }

#message-banner {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #8d0000;
  color: #eaeaea;
  padding: 20px;
  z-index: 1000; }
  #message-banner a,
  #message-banner a:visited,
  #message-banner a:active {
    color: #eaeaea; }
  #message-banner a:hover {
    color: #fff; }

#close-banner {
  float: right;
  cursor: pointer;
  font-weight: bold;
  font-size: 2rem; }

.top-nav {
  display: none; }

.long-link {
  overflow-wrap: break-word; }

.hashtag {
  font-size: 1.8rem;
  font-weight: 400;
  color: #eec12a;
  margin: 30px 0 0 0; }

.vertical-highlight {
  font-size: 1rem;
  padding: 0.4rem 0 0 0; }

.program-card {
  min-height: 252px; }

.portal {
  color: white;
  text-decoration: none !important; }

.container {
  padding-left: 20px;
  padding-right: 20px; }
  @media only screen and (min-width: 992px) {
    .container {
      padding-left: 2rem;
      padding-right: 2rem; } }
  @media only screen and (min-width: 1400px) {
    .container {
      padding-left: 15px;
      padding-right: 15px;
      max-width: 1400px; } }
.warning {
  color: red;
  font-weight: 600; }

.contact-us {
  font-size: 1.2rem; }

body {
  background: #f0f1f2;
  font-family: roboto, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000; }

hr {
  border-top: 2px solid rgba(0, 0, 0, 0.1); }

h1 {
  color: #461d7c;
  font-weight: 500; }

h2 {
  font-weight: 500;
  font-size: 1.4rem;
  margin: 0 0 1rem 0; }

h3 {
  font-weight: 500;
  font-size: 1.2rem; }

h4 {
  font-weight: 500;
  font-size: 1rem; }

li {
  margin-bottom: .5rem; }

a:link, a:active, a:visited {
  color: #674693;
  font-weight: 500; }

a:hover {
  color: #461d7c; }

.sideNav {
  position: relative;
  padding-left: 30px;
  margin-bottom: 30px;
  color: rgba(0, 0, 0, 0.5); }
  .sideNav::after {
    content: "";
    width: 2px;
    height: 100%;
    background: #ffc107;
    position: absolute;
    top: 0;
    left: 0; }
  @media only screen and (min-width: 1299px) {
    .sideNav {
      margin-left: 30px; } }
  .sideNav a {
    font-size: 1rem;
    font-weight: 400; }
  .sideNav p {
    margin: 0 0 12px 0;
    padding: 0;
    line-height: 1.4rem; }
  .sideNav h3 {
    color: #474747;
    font-size: 1rem;
    font-weight: 500;
    padding: 0 0 4px 0;
    margin: 0; }
  .sideNav button {
    padding: 5px 0;
    margin-bottom: 14px;
    max-width: 240px; }

.btn-primary {
  background-color: #461d7c !important;
  border-color: #461d7c !important;
  color: #fff !important;
  font-weight: 400; }
  .btn-primary:hover {
    background-color: #674693 !important;
    border-color: #674693 !important; }

.btn-warning {
  background-color: #eec12a !important;
  border-color: #eec12a !important;
  color: #461d7c !important;
  font-weight: 400; }
  .btn-warning:hover {
    background-color: #ead05f !important;
    border-color: #ead05f !important; }

.btn.btn-outline-gold-purple {
  color: #461d7c;
  border: solid #ffc107 2px;
  text-transform: uppercase; }
  .btn.btn-outline-gold-purple:hover {
    background-color: #ffc107; }

a.btn-outline-white {
  color: #ffffff;
  border-color: #ffffff;
  border-width: 2px; }

a.btn-outline-white:hover,
a.btn-outline-white:focus,
a.btn-outline-white:active {
  color: #461d7c;
  border-color: #ffffff;
  background-color: #ffffff; }

.btn-outline-purple {
  color: #461d7c;
  border-color: #674693;
  border-width: 2px; }

.btn-outline-purple:hover,
.btn-outline-purple:focus,
.btn-outline-purple:active {
  color: #ffffff;
  border-color: #461d7c;
  background-color: #461d7c; }

a.btn-outline-gold {
  color: #ffc107;
  border-color: #ffc107;
  border-width: 2px; }

a.btn-outline-gold:hover,
a.btn-outline-gold:focus,
a.btn-outline-gold:active {
  color: #461d7c;
  border-color: #ffc107;
  background-color: #ffc107; }

.btn-outline-primary {
  color: #461d7c !important;
  border-color: #461d7c !important; }

.btn-outline-primary:hover {
  border-color: #674693 !important;
  background-color: #674693;
  color: #fff !important; }

ul.mobile-buttons {
  border-top: solid 2px #461d7c;
  padding: 20px 0 10px 0;
  margin: 10px 0 0 10px;
  list-style: none;
  padding-inline-start: 0; }
  ul.mobile-buttons li {
    padding: 0 0 20px 0;
    display: block; }

.btn-stack a {
  width: 140px;
  color: #ffffff;
  display: block; }

.btn-stack a:first-child {
  margin: 0 0 10px 0; }

.large-button {
  width: 100%;
  padding: 20px 0; }

#scrollTop {
  display: none;
  position: fixed;
  bottom: 12px;
  right: 12px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  cursor: pointer;
  padding: 0 15px;
  border-radius: 4px; }
  #scrollTop::after {
    content: "\f106";
    color: rgba(255, 255, 255, 0.5);
    font-size: 2rem;
    font-weight: 500;
    font-family: "FontAwesome"; }

#scrollTop:hover {
  background-color: rgba(0, 0, 0, 0.5); }

.form-background {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1rem 0; }

.resp-main-image-wrap {
  position: relative;
  height: 320px;
  overflow: hidden; }
  .resp-main-image-wrap img {
    height: 330px;
    width: auto; }

.resp-main-text-container {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px 0;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6)); }
  .resp-main-text-container h1 {
    color: #ffffff;
    font-size: 26px; }

h1.program span {
  display: block;
  font-size: 1.2rem;
  font-weight: 400; }

.main-image-wrap {
  position: relative;
  height: 320px;
  overflow: hidden; }
  .main-image-wrap img {
    margin-top: 0;
    margin-left: -80px;
    width: 160%; }

.main-image-cropped {
  object-fit: cover;
  width: 100%; }

.main-image-box {
  position: relative; }
  .main-image-box img {
    position: relative;
    margin: 0;
    max-width: 260px;
    padding-bottom: 20px; }

.medium-main-image-wrap {
  position: relative;
  height: 140px;
  overflow: hidden; }
  .medium-main-image-wrap img {
    margin-top: 0;
    margin-left: -60px;
    width: 125%; }
  .medium-main-image-wrap h1 span {
    display: block;
    font-size: 1.2rem;
    font-weight: 400; }

.medium-main-image-cropped {
  object-fit: cover;
  width: 100%; }

.medium-main-image-box {
  position: relative; }
  .medium-main-image-box h2 {
    font-size: 2.4rem;
    color: #ffffff;
    text-shadow: 1px 1px rgba(70, 70, 70, 0.8);
    font-size: 2rem;
    margin: 0;
    padding: 0; }

.small-main-image-wrap {
  position: relative;
  height: 100px;
  overflow: hidden; }
  .small-main-image-wrap img {
    margin-top: 0;
    margin-left: -300px;
    width: 220%; }

.small-main-image-cropped {
  object-fit: cover;
  width: 100%; }

.text-container {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1rem 0;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6)); }
  .text-container h1 {
    color: #fff;
    text-shadow: 1px 1px rgba(70, 70, 70, 0.8);
    font-size: 1.6rem;
    margin: 0;
    padding: 0; }
  .text-container p {
    color: #fff;
    text-shadow: 1px 1px rgba(70, 70, 70, 0.8);
    font-size: 1rem;
    margin: 0;
    padding: 0; }
  .text-container .smaller-h1 h1 {
    font-size: 1.4rem; }

.grey-box {
  background-color: rgba(203, 203, 203, 0.4);
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125); }

.white-box {
  background-color: #ffffff;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125); }

.card .card-body {
  min-height: 90px; }

ul.contact-info {
  padding: 10px 0 0 0; }
  ul.contact-info li {
    display: block;
    padding: 0 0 10px 0; }

.video-box {
  display: flex;
  align-items: center; }

.video-space {
  padding-bottom: 3rem; }

.program-video-box {
  display: flex;
  align-items: flex-start; }

.jumbotron {
  margin-bottom: 0; }

.question {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 2px; }

.large-link a {
  font-size: 1.5rem;
  font-weight: 500; }

.lead {
  font-size: 1.2rem;
  font-weight: 400; }
  .lead ul {
    margin: 0;
    padding: 0 0 0 0;
    font-weight: 400; }
  .lead li {
    margin-left: 1.3rem;
    margin-bottom: 0.4rem; }

.card-body-2 {
  flex: 1 1 auto;
  padding: 1.25rem;
  min-height: 210px; }

#accordion-headings {
  display: block;
  width: 96%;
  font-weight: 500;
  font-size: 1.2rem;
  color: #461d7c; }
  @media screen and (min-width: 992px) {
    #accordion-headings {
      font-size: 1.4rem; } }
#accordion-headings > span {
  display: block;
  font-size: .9rem;
  font-weight: 200;
  margin-top: 5px; }

#accordion .panel {
  margin-bottom: 20px; }

#accordion .panel-title {
  position: relative;
  background-color: #fff;
  border-radius: 5px;
  border: solid #c8c8c8 1px; }
  #accordion .panel-title:hover {
    background-color: #ddd; }
  #accordion .panel-title::after {
    content: "\f107";
    color: #461d7c;
    font-size: 2rem;
    font-weight: 700;
    top: 2px;
    right: 10px;
    position: absolute;
    font-family: "FontAwesome"; }
  #accordion .panel-title[aria-expanded="true"]::after {
    content: "\f106"; }

#accordion .panel-title[aria-expanded="true"] {
  background-color: #DDDDDD; }

#accordion .card-body {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125); }

footer {
  background-color: #474747;
  color: #fff;
  font-size: 1rem;
  font-weight: 200;
  padding: 40px 0;
  line-height: 1.4rem; }
  footer h3 {
    padding-bottom: 1rem;
    font-weight: 400; }
  footer a:link, footer a:active, footer a:visited {
    color: #fff;
    text-decoration: underline; }
  footer a:hover {
    color: #ffc107;
    text-decoration: underline; }

.footer-lsu {
  background-color: #461d7c;
  padding: 0.5rem; }
  .footer-lsu img {
    height: 30px; }

.footer-container {
  display: flex;
  flex-direction: column; }

.footer-column-1 {
  width: 100%;
  order: 2;
  padding-bottom: 2rem; }

.footer-column-2 {
  width: 100%;
  order: 1;
  padding-bottom: 2rem; }

.footer-column-3 {
  width: 100%;
  order: 3;
  padding-bottom: 2rem; }

.social-icon {
  width: 32px; }

.social-icon-pad {
  margin-right: 10px; }

.highlight-list {
  list-style: none;
  margin: 0;
  padding: 0; }

.highlight {
  display: flex;
  align-items: flex-start;
  padding: 1rem 0; }

.highlight-icon {
  padding-right: 0.8rem; }
  .highlight-icon img {
    width: 60px; }

.highlight-content {
  display: flex;
  flex-flow: column;
  align-items: flex-start; }

.highlight h3 {
  font-weight: 300;
  font-size: 1.4rem;
  color: #461d7c;
  flex: 1; }

.highlight-content p {
  color: #461d7c;
  padding: 0;
  margin: 0;
  flex: 2; }

.overlay-container {
  position: relative;
  width: 100%;
  background-color: #461d7c; }

.overlay-image {
  opacity: 0.2;
  display: block;
  width: 100%;
  height: auto;
  transition: 0.5s ease; }

.overlay-middle {
  transition: 0.5s ease;
  opacity: 1;
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center; }

.overlay-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: right;
  color: #ffffff;
  background-color: #674693;
  padding: 3px 6px 3px 0;
  font-size: 12px; }

.overlay-container:hover .overlay-image {
  opacity: 0.7; }

.overlay-container:hover .overlay-middle {
  opacity: 1; }

.overlay-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #ffffff;
  text-shadow: 1px 1px rgba(70, 70, 70, 0.8);
  padding: 0 0 6px 0; }

.overlay-text-2 {
  font-size: 14px;
  font-weight: 200;
  line-height: 22px;
  color: #cccccc;
  text-shadow: 1px 1px rgba(70, 70, 70, 0.8);
  padding: 3px 0 0 0;
  border-top: 1px solid #cccccc; }

.overlay-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: right;
  color: #ffffff;
  background-color: #674693;
  padding: 3px 6px 3px 0;
  font-size: 12px; }

.overlay-container:hover .facult-overlay-text-box {
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.7); }

/* --------- NEW TILES ------------ */
.tiles-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-auto-rows: 1fr;
  grid-gap: 30px;
  margin-bottom: 40px; }

.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #ffffff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem; }

.tile:hover .bottom-content {
  background: #eae7ee; }

.tile .content-container {
  display: flex;
  flex-direction: row;
  height: 100px; }

.tile .top-content {
  position: relative;
  width: 33%;
  overflow: hidden; }

.tile .top-content img {
  object-fit: cover;
  width: auto;
  height: 100px; }

.tile .top-content .content-overlay {
  background: #674693;
  position: absolute;
  width: 100%;
  left: 0;
  top: 70px;
  right: 0;
  bottom: 0;
  opacity: 1; }
  .tile .top-content .content-overlay p {
    font-weight: 200;
    font-size: 14px;
    color: #ffffff;
    text-align: center;
    margin: 5px 0 0 0;
    padding-right: 0;
    opacity: 0.8; }

.promo-image-overlay {
  position: absolute;
  right: 0;
  top: 0; }

.tile .bottom-content {
  padding: 0 10px;
  background: #ffffff;
  width: 67%; }

.tile .bottom-content-title {
  display: flex;
  align-items: center;
  min-height: 70px; }

.tile .bottom-content-title h2 {
  margin: 2px 0 0 0;
  font-size: 16px;
  line-height: 20px;
  color: #474747; }

.tile .bottom-content-secondary p {
  margin: 0;
  padding-top: 8px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 200;
  color: #474747;
  border-top: solid rgba(123, 123, 123, 0.4) 0.5px; }

@media only screen and (max-width: 370px) {
  .tile .top-content .content-overlay p {
    font-size: 10px;
    margin: 8px 0 0 0; }
  .tile .bottom-content-secondary p {
    font-size: 10px; }
  .tile .bottom-content-title h2 {
    font-size: 14px; } }

/* -------------------------------- */
.old-icon-box {
  margin-bottom: 20px; }

.old-icon {
  padding: 15px 10px 0 10px;
  border-radius: 5px;
  text-align: center;
  background-color: #461d7c;
  min-height: 150px; }
  .old-icon p {
    border-top: solid 2px #c6b4e4;
    color: #c6b4e4;
    margin-top: 10px;
    padding-top: 10px;
    line-height: 1rem; }
  .old-icon a:hover {
    text-decoration: none !important; }

a:link, a:active {
  text-decoration: none !important; }

.old-icon:hover {
  background-color: rgba(233, 220, 242, 0.5); }

.vector-icon {
  height: 66px;
  width: auto; }

.apply-button {
  padding: 0 0 20px 0;
  max-width: 300px;
  margin: 0 auto; }

.cb-top {
  padding: 20px;
  display: flex;
  background-color: #461d7c;
  border-bottom: solid 2px rgba(233, 229, 242, 0.5); }
  .cb-top img {
    margin: 0 auto;
    height: 60px; }

.cb-large {
  display: none;
  float: right;
  margin: 0 0 10px 20px;
  width: 420px; }
  .cb-large p {
    padding: 0;
    margin: 0; }

.cb-small {
  float: none;
  margin: 0;
  width: 100%; }
  .cb-small p {
    padding: 0;
    margin: 0; }

.cb-box {
  margin: 40px 0 20px 0;
  background-color: #e9e5f2;
  border: 2px solid #461d7c; }

.cb-box-number {
  font-size: 1.8rem; }

.cb-left {
  float: left;
  width: 50%;
  background-color: #461d7c;
  border-right: solid 1px rgba(255, 255, 255, 0.5);
  border-bottom: solid 1px rgba(255, 255, 255, 0.5);
  padding: 18px;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  min-height: 0; }

.cb-right {
  float: right;
  width: 50%;
  background-color: #461d7c;
  border-left: solid 1px rgba(255, 255, 255, 0.5);
  border-bottom: solid 1px rgba(255, 255, 255, 0.5);
  padding: 18px;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  min-height: 0; }

.cb-row {
  width: 100%;
  color: #461d7c;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2rem;
  text-align: center;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center; }

.cb-button {
  padding: 0;
  margin: 10px;
  text-align: center;
  width: 100%; }

.ss-box {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 300px;
  background: rgba(70, 29, 124, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem; }

.ss-body {
  padding: 10px 0 0 0; }
  .ss-body p {
    padding: 10px 20px 0 20px;
    font-size: 0.9rem; }

.ss-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0 0 0;
  border-right: none; }
  .ss-icon img {
    width: 60px; }

.ss-header {
  border-bottom: solid 2px #461d7c; }
  .ss-header h3 {
    font-size: 1.6rem;
    font-weight: 400;
    margin: 0;
    padding: 0 0 10px 10px;
    color: #461d7c;
    text-align: center; }

.ss-button {
  width: 100%;
  position: absolute;
  bottom: 20px;
  text-align: center;
  margin: 0; }

.ss-button-2 {
  display: flex;
  justify-content: center;
  padding-bottom: 20px; }

.ss-logo {
  padding: 20px 20px 0 20px; }

.headshot-box {
  display: flex;
  flex-direction: column;
  background: rgba(70, 29, 124, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem; }
  .headshot-box img {
    width: 100%; }

.headshot-body {
  padding: 0; }
  .headshot-body p {
    padding: 10px 10px 0 10px;
    text-align: center;
    font-weight: 200; }

.headshot-header {
  display: flex;
  align-items: center;
  height: 60px;
  border-bottom: solid 2px #461d7c; }
  .headshot-header h3 {
    width: 100%;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    padding: 15px 10px;
    color: #461d7c;
    text-align: center; }

.headshot-box-2 {
  display: flex;
  flex-direction: column;
  background: rgba(70, 29, 124, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
  color: #461d7c; }
  .headshot-box-2 img {
    width: 100%; }

.headshot-header-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 50%;
  border-bottom: solid 2px #461d7c;
  padding: 1rem 0; }
  .headshot-header-2 h3 {
    width: 100%;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0 15px 5px 15px; }
  .headshot-header-2 p {
    margin: 0 15px 0 15px;
    line-height: 20px; }

.headshot-content-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0; }
  .headshot-content-2 p {
    margin: 0 15px  0 15px; }

.headshot-category-2 {
  display: flex;
  align-items: flex-end;
  margin: 10px 0;
  height: 50px; }
  .headshot-category-2 h3 {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.4rem; }

/* PLA Info */
.pla-boxes {
  display: block;
  font-size: 0.9rem;
  background: rgba(0, 0, 0, 0.03); }

.pla-box-1 {
  padding: 20px 10px 0 10px; }

.pla-box-2 {
  flex: 1;
  padding: 1rem; }

.callout-box {
  border-top: solid rgba(0, 0, 0, 0.1) 2px;
  border-bottom: solid rgba(0, 0, 0, 0.1) 2px;
  padding: 20px 0 30px 0;
  margin: 20px 0 30px 0;
  color: #461d7c; }
  .callout-box p {
    margin: 0;
    padding: 0;
    font-size: 1.4rem;
    line-height: 2rem;
    text-align: center; }
  .callout-box .bold-text {
    font-size: 1.8rem;
    font-weight: 600; }

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

.stack-box {
  display: flex;
  flex-direction: column;
  border-top: solid #474747 2px;
  padding: 40px 0 0 0;
  margin: 40px 0 0 0; }
  .stack-box ul {
    margin: 0;
    padding: 0;
    list-style: disc; }
  .stack-box li {
    padding: 0 0 15px 0;
    margin: 0 0 0 20px;
    line-height: 1.2rem; }
  .stack-box h3 {
    font-size: 1.8rem;
    padding: 0;
    margin: 0; }
  .stack-box p {
    font-size: 0.8rem;
    padding: 0;
    margin: 0; }

#stack h2 {
  font-weight: 200;
  font-size: 1.6rem; }

.stack-box-1 {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: #461d7c;
  padding: 0 0 30px 0; }

.stack-box-2 {
  width: 100%;
  color: #461d7c;
  border-left: none;
  padding-left: 0; }

.stack-btn {
  margin: 0 0 0 0;
  text-align: center; }

.error404 h1 {
  color: #474747;
  font-weight: 200;
  font-size: 1.8rem;
  margin-bottom: 2rem; }

.error404 img {
  max-width: 600px;
  padding-bottom: 2rem; }

.hideNav {
  display: none; }

.showNav {
  display: block; }

.cta {
  border: solid #461d7c 3px;
  padding: 1.5rem;
  margin: 40px 0;
  border-radius: 5px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  text-align: center; }
  .cta h3 {
    color: #461d7c; }
  .cta p {
    margin: 0;
    padding: 10px 0 20px 0;
    color: #461d7c; }

.cta .btn {
  width: 100%;
  margin: 0 auto; }

.listing-online-filter input {
  display: none; }

.listing-online-filter label {
  padding: 0;
  margin: 0;
  display: inline; }

.listing-online-filter {
  display: flex;
  border-bottom: 4px solid #a0a0a0;
  line-height: 1.8rem; }
  .listing-online-filter a#campus-button,
  .listing-online-filter a#online-button {
    line-height: 1rem;
    padding: 0 20px 4px 20px;
    margin: 0 0 0 0; }
  .listing-online-filter a:hover {
    color: #461d7c;
    border-bottom: 4px solid #461d7c; }
  .listing-online-filter .selected-on {
    color: #674693;
    border-bottom: 4px solid #674693; }
  .listing-online-filter .selected-off {
    color: #a0a0a0;
    border-bottom: 4px solid #a0a0a0; }

.featured-listing {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 1px 1px rgba(0, 0, 0, 0.3);
  position: relative; }
  .featured-listing::after {
    font-weight: 500;
    font-family: "FontAwesome";
    content: "\f02e";
    color: #ffc107;
    position: absolute;
    top: -10px;
    left: 6px;
    font-size: 2rem; }

.results {
  position: relative;
  margin-bottom: 40px; }
  .results #output {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0; }

.listing {
  display: flex;
  align-items: center;
  padding: 10px 15px; }

.listing-date {
  width: 60px;
  min-width: 60px;
  height: 60px;
  padding: 4px;
  background: #461d7c;
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center; }

.listing-day {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: -5px; }

.listing-month {
  font-size: 0.8rem;
  font-weight: 200;
  margin-bottom: 5px; }

.listing-mobile {
  margin-left: 10px;
  line-height: 1.2rem;
  font-size: 0.8rem; }
  .listing-mobile a {
    font-size: 1rem; }

.listing-mobile-view {
  margin-left: auto;
  order: 2;
  margin-right: 10px;
  position: relative; }
  .listing-mobile-view::after {
    font-weight: 500;
    font-family: "FontAwesome";
    content: "\f105";
    color: #461d7c;
    position: absolute;
    top: 0;
    right: -10px;
    font-size: 1rem; }

.listing-desktop {
  margin-left: 10px;
  font-size: 0.8rem; }
  .listing-desktop a {
    font-size: 1rem; }

.listing-desktop-location {
  margin-left: auto;
  order: 2;
  margin-right: 10px;
  font-size: 0.8rem; }

.listing-sort {
  display: flex;
  justify-content: space-between;
  margin: 10px 0 10px 0; }
  .listing-sort label {
    margin: 0; }

.listing-modal h3 {
  font-size: 1.6rem; }

.staff-box {
  text-align: center;
  margin-bottom: 40px; }
  .staff-box img {
    width: 80%;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); }

.staff-body {
  background-color: rgba(70, 29, 124, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
  padding: 100px 20px 20px 20px;
  margin-top: -80px; }

.staff-body-small {
  background-color: rgba(70, 29, 124, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
  padding: 100px 20px 20px 20px;
  margin-top: -80px;
  height: 220px; }

.staff-bio {
  display: none; }

.staff-bio.visible {
  display: block; }

.staff-dropdown-button {
  display: block; }

button.dropdown-button,
button.dropdown-button-close {
  border: none;
  background-color: rgba(0, 0, 0, 0);
  padding: 5px 0 0 0;
  margin: 0;
  line-height: 1rem; }

button.dropdown-button::after {
  font-family: "FontAwesome";
  content: "\f107";
  font-size: 3rem; }

button.dropdown-button-close::after {
  font-family: "FontAwesome";
  content: "\f106";
  font-size: 3rem; }

h1.faculty {
  font-size: 1.6rem;
  line-height: 2.1rem; }
  h1.faculty span {
    font-size: 1.2rem;
    font-weight: 300; }

#moreCrossEnrolling {
  display: none; }

.faculty-desktop-nav {
  display: none; }

.bg-light-grey {
  background-color: #969696; }

/* on page dropdown navigation */
.onpage-nav .dropdown button {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4); }

.onpage-nav .dropdown .dropdown-menu {
  width: 100%;
  background-color: #ffffff;
  margin: -2px 0 0 0;
  padding: 0;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1; }
  .onpage-nav .dropdown .dropdown-menu h6 {
    padding: 1rem;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 600; }

.onpage-nav .dropdown .dropdown-menu a.dropdown-item {
  border-bottom: solid rgba(0, 0, 0, 0.1) 1px;
  color: rgba(0, 0, 0, 0.8);
  font-size: 1rem;
  font-weight: 400;
  overflow-wrap: normal;
  white-space: normal; }
  .onpage-nav .dropdown .dropdown-menu a.dropdown-item:active, .onpage-nav .dropdown .dropdown-menu a.dropdown-item:hover {
    background-color: rgba(0, 0, 0, 0.05) !important; }

/* program filter and search */
#programList {
  padding-top: 30px; }

#programList li {
  margin-bottom: 8px; }

#filter {
  margin-bottom: 30px; }

ul#filterBox {
  border-bottom: none; }

ul#filterBox .nav-item {
  width: 100%; }

.nav-tabs .nav-link.active {
  position: relative;
  background-color: #ddddde;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem; }

.nav-tabs .nav-link.active:hover {
  background-color: #cbcbcb; }

.tab-pane {
  background-color: #ffffff;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-top: none;
  border-radius: 0.25rem;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  margin-top: -2px; }

.no-results-message {
  padding: 30px 0; }

.no-results-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 40px; }

.filter-buttons {
  display: flex;
  flex-direction: column;
  margin-top: 20px; }

.filter-button-view-all {
  margin: 0 0 20px 0; }

#programFilter .btn {
  width: 100%;
  color: #ffffff;
  border-color: #aaaaaa;
  background-color: #aaaaaa;
  font-weight: 400; }

#programFilter .btn:hover {
  color: #aaaaaa;
  border-color: #aaaaaa;
  background-color: #ffffff; }

#btnClear {
  display: none; }

#btnClear.show {
  display: block; }

#searchList ul {
  list-style: none;
  padding-inline-start: 0;
  margin-top: 40px; }

#searchList li {
  margin: 20px 0; }

.level-filter-dropdown ul {
  display: none; }

.level-filter-dropdown ul.show {
  display: block; }

.level-filter-dropdown li {
  background: #eeeeee;
  padding: 10px;
  margin: 0;
  border-bottom: 1px solid grey; }

.level-filter-dropdown button {
  width: 100%;
  height: 50px;
  background: #ffffff;
  outline: solid 1px grey; }

#loader {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  color: #aaaaaa;
  font-size: 1.5rem;
  font-weight: bold;
  display: none; }

#loader.show {
  display: flex; }

.loader {
  margin-right: 10px;
  border: 10px solid #f0f1f2;
  border-top: 10px solid #aaaaaa;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 2s linear infinite; }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

#filterSelections {
  margin: 0; }
  #filterSelections .filter-tags {
    display: inline-block;
    border-radius: .25rem;
    border: solid  #a8a8a8 1px;
    padding: 5px 10px;
    margin-right: .5rem;
    margin: 5px 0.5rem 5px 0;
    background-color: rgba(70, 29, 124, 0.7);
    color: #fff; }
    #filterSelections .filter-tags span {
      margin-left: 5px; }

/* comparison pages */
h1.comparison span {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 5px; }

.comparison-description {
  font-weight: 100;
  font-size: 1rem;
  display: block;
  margin-top: 5px; }

.sidebar-section {
  position: absolute;
  height: 100%;
  width: 100%; }

.top-table-text {
  border: 1px solid #ddd;
  background-color: #ddd;
  padding: 20px 10px 10px 10px; }

.top-table-text h4 {
  margin: 0; }

.bottom-table-text {
  border: 1px solid #ddd;
  border-top: none;
  padding: 10px;
  font-size: .8rem; }

.bottom-table-text p {
  margin: 0; }

/*  Related News */
.related-news {
  background: rgba(203, 203, 203, 0.4);
  padding: 60px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125); }

.related-news h2 {
  text-align: center; }

.related-news-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; }

.related-news-item {
  max-width: 360px;
  margin: 10px; }

.related-news-title {
  min-height: 120px;
  display: flex;
  align-items: center;
  padding: 20px;
  border-top: solid 3px #461d7c; }

.related-news-title h3 {
  font-size: 1rem; }

/* banner message */
.banner-message {
  background-color: rgba(255, 193, 7, 0.75);
  padding: 20px;
  margin: 60px 0 0 0;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125); }
  .banner-message h3 {
    font-size: 2rem;
    font-style: italic;
    color: #461d7c;
    margin-top: 10px; }

/*  Accreditation */
.accred-logos-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 4rem 0; }
  .accred-logos-box img {
    width: 100%;
    max-width: 140px; }
    @media only screen and (min-width: 992px) {
      .accred-logos-box img {
        max-width: 180px; } }
/*  Testimonial */
.testimonial {
  margin: 100px 0 100px 0; }

.testimonial-box {
  display: flex;
  flex-direction: column;
  margin: 30px auto; }

.testimonial-text {
  padding-left: 40px;
  position: relative;
  color: #777777;
  font-size: 1.2rem;
  font-weight: 500; }

.testimonial-text p {
  padding: 0;
  margin: 0; }

.testimonial-text p span {
  font-size: 1rem;
  font-weight: 200; }

.testimonial-text p:last-child {
  padding: 0 0 0 1rem;
  margin: 0;
  border-left: solid 4px #ffc107;
  line-height: 1.4rem; }

.testimonial-text img {
  position: absolute;
  width: 30px;
  left: 0;
  top: 8px; }

.testimonial-svg {
  filter: invert(52%) sepia(10%) saturate(0%) hue-rotate(137deg) brightness(90%) contrast(90%); }

.testimonial-photo {
  text-align: center;
  padding: 0 0 20px 0; }

.testimonial-photo img {
  border-radius: 50%;
  width: 150px; }

/*---------------------------------------
Newsroom CTA from old newsroom stylesheet
---------------------------------------*/
.newsroom-cta {
  background-color: #fff;
  padding: 1.5rem;
  margin: 3rem 0;
  border-radius: 5px;
  border: solid #c8c8c8 1px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  gap: 2rem; }
  .newsroom-cta p {
    margin: 0;
    padding: 0; }
  @media only screen and (min-width: 992px) {
    .newsroom-cta {
      max-width: 1000px;
      margin: 3rem auto;
      padding: 2.5rem; } }
  .newsroom-cta .newsroom-cta-text {
    width: 100%;
    display: block;
    text-align: center;
    font-size: 1.2rem;
    color: #461d7c; }
  .newsroom-cta .newsroom-cta-button {
    margin: 0 auto;
    width: auto;
    min-width: 200px; }

/*  Accordion Two  */
.accordion-two .accordion-two-item {
  border-bottom: 1px solid #bdbdbd; }

.accordion-two button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 18px 0;
  color: #474747;
  font-size: 18px;
  font-weight: 400;
  border: none;
  background: none;
  outline: none; }
  .accordion-two button:hover, .accordion-two button:focus {
    cursor: pointer;
    color: #674693; }
    .accordion-two button:hover::after, .accordion-two button:focus::after {
      cursor: pointer;
      color: #674693;
      border: 1px solid #674693; }
  .accordion-two button .accordion-two-title {
    display: block;
    width: 90%; }
  .accordion-two button .icon {
    display: inline-block;
    position: absolute;
    top: 20px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px; }
    .accordion-two button .icon::before {
      display: block;
      position: absolute;
      content: '';
      top: 9px;
      left: 5px;
      width: 10px;
      height: 2px;
      background: currentColor; }
    .accordion-two button .icon::after {
      display: block;
      position: absolute;
      content: '';
      top: 5px;
      left: 9px;
      width: 2px;
      height: 10px;
      background: currentColor; }

.accordion-two button[aria-expanded='true'] {
  color: #461d7c; }
  .accordion-two button[aria-expanded='true'] .icon::after {
    width: 0; }
  .accordion-two button[aria-expanded='true'] + .accordion-two-content {
    opacity: 1;
    max-height: 200rem;
    height: auto;
    transition: all 200ms linear; }

.accordion-two .accordion-two-content {
  opacity: 0;
  max-height: 0;
  width: 90%;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  margin-left: 10px; }
  .accordion-two .accordion-two-content p {
    font-size: 1rem;
    font-weight: 400;
    margin: 0 0 2em 0; }

/*  Thank You Page  */
.typ-callout-container {
  background-color: #461d7c;
  color: #ffffff;
  padding: 20px;
  display: flex;
  flex-direction: column; }
  .typ-callout-container .typ-callout {
    text-align: center;
    margin: 20px 0; }
    .typ-callout-container .typ-callout img {
      width: 6rem; }
    .typ-callout-container .typ-callout h2 {
      font-size: 1.5rem;
      margin: 1rem 0 .4rem 0; }
    .typ-callout-container .typ-callout a, .typ-callout-container .typ-callout a:link, .typ-callout-container .typ-callout a:active, .typ-callout-container .typ-callout a:visited {
      color: #ffffff;
      font-weight: 400; }
    .typ-callout-container .typ-callout a:hover {
      color: #ffc107; }

.typ-video-text {
  margin-top: 20px; }

.all-programs-page h1 {
  font-size: 1.5rem;
  font-size: clamp(1.51rem, calc(1.3rem + 1vw), 2.5rem); }

@media only screen and (min-width: 375px) {
  .football-disclaimer {
    margin-top: -60px; }
  .main-image-wrap-fierce {
    height: 320px; }
    .main-image-wrap-fierce img {
      margin-top: -40px;
      margin-left: -60px;
      width: 200%; } }

@media only screen and (min-width: 425px) {
  .football-disclaimer {
    margin-top: -150px; } }

@media only screen and (min-width: 500px) {
  .resp-main-image-wrap img {
    width: 100%;
    height: auto; }
  .main-image-wrap {
    height: 240px; }
    .main-image-wrap img {
      margin-top: 0;
      margin-left: 0;
      width: 100%; }
  .main-image-box img {
    position: relative;
    margin: 0;
    max-width: 300px;
    padding-bottom: 20px; }
  .ss-box {
    height: 260px; }
  .mc-buttons a {
    display: inline; }
  .mc-buttons a:first-child {
    margin: 0 10px 0 0; }
  ul.mobile-buttons li {
    padding: 0 0 0 0;
    display: inline; }
  .btn-stack a {
    display: inline-block; }
  .btn-stack a:first-child {
    margin: 0 10px 0 0; }
  .cta .btn {
    width: 200px; }
  .filter-buttons {
    flex-direction: row; }
  #programFilter .btn {
    width: 160px; }
  .filter-button-view-all {
    margin: 0 20px 0 0; }
  .no-results-buttons {
    flex-direction: row; } }

@media only screen and (min-width: 576px) {
  .overlay-text {
    font-size: 14px; }
  .overlay-text-2 {
    font-size: 12px; }
  .main-image-wrap-fierce {
    height: 300px; }
    .main-image-wrap-fierce img {
      margin-top: -50px;
      margin-left: 0;
      width: 120%; }
  #fierce .fierce {
    display: inline;
    font-size: 2.9rem; }
  #fierce h1 {
    font-size: 1.8rem;
    line-height: 2.2rem; }
  .fierce-title {
    top: -200px;
    width: 460px; }
  .medium-main-image-wrap {
    height: 200px; }
    .medium-main-image-wrap img {
      margin-top: 0;
      margin-left: 0;
      width: 100%; }
  .small-main-image-wrap {
    height: 100px; }
    .small-main-image-wrap img {
      margin-top: 0;
      margin-left: 0;
      width: 120%; }
  .ss-box {
    height: 340px; }
  .ss-body {
    padding: 10px 0; }
    .ss-body p {
      padding: 10px 20px 0 20px;
      font-size: 0.8rem; }
  .ss-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0 0 0;
    border-right: none; }
    .ss-icon img {
      width: 60px; }
  .ss-header h3 {
    padding: 0 20px 10px 20px; } }

@media only screen and (min-width: 600px) {
  .related-news-item {
    max-width: 260px; } }

@media only screen and (max-width: 767px) {
  .program-video-space:nth-child(1) {
    padding-right: 0px;
    padding-bottom: 0; }
  .program-video-space:nth-child(2) {
    padding-left: 0px; } }

@media only screen and (min-width: 768px) {
  .overlay-text {
    font-size: 16px; }
  .overlay-text-2 {
    font-size: 14px; }
  .resp-main-image-wrap {
    height: 400px; }
    .resp-main-image-wrap img {
      width: 100%; }
  .resp-main-text-container h1 {
    font-size: 32px; }
  .resp-main-promo-container {
    height: 400px; }
  .resp-main-promo {
    height: 400px; }
  .online-by-design img {
    width: 200px;
    top: 200px; }
  .main-image-wrap {
    height: 340px; }
    .main-image-wrap img {
      margin-top: 0; }
  .medium-main-image-wrap {
    height: 270px; }
    .medium-main-image-wrap img {
      margin-top: 0;
      margin-left: 0;
      width: 100%; }
    .medium-main-image-wrap h1 span {
      font-size: 1.6rem; }
  .small-main-image-wrap {
    height: 120px; }
    .small-main-image-wrap img {
      margin-top: 0;
      width: 110%; }
  .text-container h1 {
    font-size: 2.5rem; }
  .text-container .smaller-h1 h1 {
    font-size: 2.4rem; }
  .awards img {
    width: 80%; }
  .video-space {
    padding-bottom: 0; }
  .question {
    font-size: 1.2rem; }
  footer {
    font-size: 0.8rem; }
  .footer-container {
    display: flex;
    flex-direction: row;
    margin-left: 0; }
  .footer-column-1 {
    width: 33.33%;
    order: 1; }
  .footer-column-2 {
    width: 33.33%;
    text-align: center;
    order: 2; }
  .footer-column-3 {
    width: 33.33%;
    text-align: right;
    order: 3; }
  .highlight-icon img {
    width: 80px; }
  .highlight-content h3 {
    font-size: 1.6rem; }
  ul.contact-info {
    padding: 10px 0 0 0; }
    ul.contact-info li {
      display: inline-block;
      padding: 0 30px 0 0; }
  .ss-box {
    height: 320px; }
  .ss-body {
    padding: 15px 0; }
    .ss-body p {
      padding: 10px 20px 0 20px;
      font-size: 0.9rem; }
  .ss-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0 0 0;
    border-right: none; }
    .ss-icon img {
      width: 80px; }
  .ss-header h3 {
    padding: 0 20px 10px 20px; }
  .error404 h1 {
    font-size: 2.5rem; }
  .stack-box {
    display: flex;
    flex-direction: row;
    border-top: solid #474747 2px;
    padding: 40px 0 0 0;
    margin: 40px 0 0 0; }
    .stack-box ul {
      margin: 0;
      padding: 0;
      list-style: none;
      list-style: disc; }
    .stack-box li {
      padding: 0 0 20px 12px;
      margin: 0;
      line-height: 1.2rem; }
    .stack-box h3 {
      font-size: 2rem; }
  .stack-box-1 {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
    color: #461d7c;
    padding: 0 40px 0 0; }
  .stack-box-2 {
    width: 50%;
    color: #461d7c;
    border-left: solid rgba(70, 29, 124, 0.4) 1px;
    padding-left: 40px; }
  .stack-btn {
    margin: 0 0 0 15px;
    text-align: left; }
  .staff-dropdown-button {
    display: none; }
  .staff-body {
    height: 480px; }
  .staff-bio {
    display: block;
    height: auto; }
  /* --------- NEW TILES ---------- */
  .tiles-container {
    grid-template-columns: repeat(2, 1fr); }
  .tile {
    flex-direction: column; }
  .tile .content-container {
    flex-direction: column;
    height: auto; }
  .tile .top-content {
    position: relative;
    width: 100%;
    height: 140px;
    margin: auto;
    overflow: hidden; }
  .tile .top-content img {
    object-fit: cover;
    width: 100%;
    height: auto; }
  .tile .top-content .content-overlay {
    top: 118px; }
    .tile .top-content .content-overlay p {
      text-align: right;
      margin: 0;
      padding-right: 15px; }
  .tile .bottom-content {
    width: 100%;
    padding: 0 15px 15px;
    background: #ffffff; }
  .tile .bottom-content-title {
    display: flex;
    align-items: center;
    min-height: 82px; }
  .tile .bottom-content-title h2 {
    margin: 0;
    font-size: 18px;
    line-height: 22px; }
  .tile .bottom-content-secondary p {
    margin: 0;
    padding-top: 10px;
    font-size: 16px;
    line-height: 16px; }
  .top-table-text {
    padding: 20px 10px; }
  .table-body-no-bold {
    font-weight: 400; }
  /* banner message */
  .banner-message h3 {
    font-size: 3rem; }
  .testimonial-box {
    flex-direction: row-reverse;
    align-items: center;
    max-width: 900px;
    margin: 40px auto; }
  .testimonial-photo {
    padding: 0 0 0 20px; }
  .testimonial-photo img {
    width: 200px; }
  .testimonial-text {
    font-size: 1.4rem; }
  .testimonial-text img {
    width: 60px;
    left: -40px; }
  /*  Thank You Page  */
  .typ-callout-container {
    padding: 40px 0;
    flex-direction: row;
    justify-content: center; }
    .typ-callout-container .typ-callout {
      width: 30%;
      max-width: 350px;
      margin: 0 2%; }
  .typ-video-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 0; } }

@media only screen and (min-width: 992px) {
  h1.program span {
    font-size: 1.4rem; }
  h2 {
    font-size: 1.8rem; }
  h3 {
    font-size: 1.5rem; }
  h4 {
    font-size: 1.3rem; }
  .social-icon {
    width: 40px; }
  .top-nav {
    background: #474747;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    color: #b4ad86;
    font-size: 1rem;
    font-weight: 200;
    padding: 5px 20px 5px 0; }
    .top-nav span {
      padding: 0 8px; }
    .top-nav a {
      color: #b4ad86; }
    .top-nav a:hover {
      color: #fff; }
  .resp-main-image-wrap {
    height: 520px; }
    .resp-main-image-wrap img {
      width: 100%; }
  .resp-main-text-container h1 {
    width: 65%;
    font-size: 40px; }
  .resp-main-promo-container {
    height: 520px; }
  .resp-main-promo {
    height: 520px;
    align-items: flex-start;
    justify-content: flex-end;
    padding-bottom: 50px; }
  .main-image-wrap {
    height: 520px; }
    .main-image-wrap img {
      margin-top: 0;
      margin-left: 0;
      width: 100%; }
  .medium-main-image-wrap {
    height: 300px; }
  .small-main-image-wrap {
    height: 120px; }
    .small-main-image-wrap img {
      margin-top: 0;
      margin-left: 0;
      width: 100%; }
  .text-container {
    padding: 1rem 0; }
    .text-container h1 {
      font-size: 2.6rem;
      width: 610px; }
    .text-container p {
      font-size: 1.2rem;
      width: 610px; }
  .contact-us {
    font-size: 1.4rem; }
  .form-background {
    background-color: rgba(0, 0, 0, 0);
    padding: 0; }
  .form-container {
    position: relative;
    background-color: rgba(0, 0, 0, 0.6);
    width: 300px;
    height: 520px;
    padding: 0 20px;
    float: right;
    margin-top: -520px;
    display: flex;
    align-items: center; }
  .form-container-2 {
    position: relative;
    background-color: rgba(255, 255, 255, 0.1);
    width: 300px;
    height: 520px;
    padding: 0 20px;
    float: right;
    margin-top: -520px;
    display: flex;
    align-items: center; }
  .highlight-content {
    width: 75%; }
  .cb-large {
    display: block;
    float: right;
    margin: 0 0 20px 20px;
    width: 300px; }
    .cb-large p {
      padding: 0;
      margin: 0; }
  .cb-box {
    margin: 0; }
  .cb-small {
    display: none; }
  ul.mobile-buttons {
    display: none; }
  .ss-box {
    display: flex;
    flex-direction: row;
    background: rgba(70, 29, 124, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
    height: 200px; }
  .ss-body {
    padding: 20px 0; }
    .ss-body p {
      padding: 10px 10px 0 20px;
      font-size: 0.9rem; }
  .ss-icon {
    display: flex;
    align-items: center;
    padding: 0 15px;
    border-right: solid 2px #461d7c; }
    .ss-icon img {
      width: 80px; }
  .ss-header {
    border-bottom: solid 2px #461d7c; }
    .ss-header h3 {
      font-size: 1.6rem;
      font-weight: 400;
      margin: 0;
      padding: 0 0 10px 20px;
      color: #461d7c;
      text-align: left; }
  .ss-button {
    text-align: end;
    bottom: 20px;
    right: 0;
    margin: 0 20px 0 0; }
  /* PLA Info */
  .pla-boxes {
    display: flex;
    font-size: 0.9rem; }
  .pla-box-1 {
    flex: 3;
    padding: 1rem; }
  .pla-box-2 {
    flex: 1;
    padding: 1rem; }
  .callout-box {
    padding: 20px 0 20px 0;
    margin: 20px 0 30px 0;
    color: #461d7c; }
    .callout-box p {
      margin: 0;
      padding: 0;
      font-size: 1.8rem;
      line-height: 2.4rem;
      text-align: center; }
    .callout-box .bold-text {
      font-size: 2.2rem;
      font-weight: 600; }
  .content-testimonial {
    margin-top: 0; }
  .error404 h1 {
    font-size: 3.4rem; }
  .hideNav {
    display: block; }
  .showNav {
    display: none; }
  .headshot-box-2 {
    flex-direction: row; }
  .headshot-image-2 {
    flex: 1; }
  .headshot-body-2 {
    flex: 1; }
  #stack h2 {
    font-weight: 200;
    font-size: 2.6rem; }
  #scrollTop {
    bottom: 100px;
    right: 12px; }
  .faculty-mobile-nav {
    display: none;
    margin: 0; }
  .faculty-desktop-nav {
    display: block; }
  .modal-dialog.yt-video {
    max-width: 800px; }
  .staff-body {
    height: 500px; }
  /* -------- NEW TILES ----------- */
  .tiles-container {
    grid-template-columns: repeat(3, 1fr); }
  .tile .top-content {
    height: 160px;
    width: 100%; }
  .tile .top-content .content-overlay {
    top: 135px; }
    .tile .top-content .content-overlay p {
      font-size: 16px; }
  .tile .bottom-content-title h2 {
    font-size: 20px; }
  .no-results-message {
    padding: 30px 140px 40px 140px; }
  .no-results-buttons {
    flex-direction: row;
    justify-content: center;
    margin-top: 40px; } }

@media only screen and (min-width: 1200px) {
  .medium-main-image-wrap {
    height: 400px; }
    .medium-main-image-wrap img {
      margin-top: 0;
      margin-left: 0;
      width: 100%; }
  .small-main-image-wrap img {
    margin-top: -20px; }
  .text-container h1 {
    font-size: 2.6rem;
    width: 780px; }
  .text-container p {
    font-size: 1.4rem;
    width: 780px; }
  .card .card-body {
    min-height: 20px; }
  #homeh1 h1 {
    font-size: 2rem; }
  .error404 h1 {
    font-size: 4rem; }
  h1.faculty {
    font-size: 2.4rem;
    line-height: 2.6rem; }
    h1.faculty span {
      font-size: 1.6rem;
      font-weight: 400; }
  .modal-dialog.yt-video {
    max-width: 1000px; }
  .staff-body {
    height: 480px; } }

@media only screen and (min-width: 1300px) {
  .resp-main-image-wrap img {
    margin-top: -50px; }
  .resp-main-text-container h1 {
    width: 70%; } }

@media only screen and (min-width: 1600px) {
  .main-image-wrap-fierce img {
    margin-top: -140px; }
  .resp-main-image-wrap img {
    margin-top: -100px; }
  .main-image-wrap img {
    margin-top: -50px; }
  .medium-main-image-wrap {
    height: 400px; }
    .medium-main-image-wrap img {
      margin-top: -30px;
      margin-left: 0;
      width: 100%; } }

@media only screen and (min-width: 2000px) {
  .main-image-wrap-fierce img {
    margin-top: -200px; }
  .main-image-wrap img {
    margin-top: -100px; } }

@media only screen and (max-width: 460px) {
  .cb-text-space {
    padding: 0 20px; }
  .cb-right {
    min-height: 140px; }
  .cb-left {
    min-height: 140px; } }

/* Application Page */
#programSelect {
  opacity: 0.5; }

#programSelect.show {
  opacity: 1; }

#applicationProgramInfo {
  display: flex;
  margin-top: 3rem; }
  #applicationProgramInfo .program-info-column {
    width: 75%;
    padding-right: 4rem; }
    #applicationProgramInfo .program-info-column img {
      height: 40px; }
    #applicationProgramInfo .program-info-column h2 {
      margin: 1.5rem 0 1rem 0;
      font-size: 1.6rem;
      font-weight: 500; }
      #applicationProgramInfo .program-info-column h2 span {
        font-size: 1rem;
        display: block;
        margin-top: 4px; }
    #applicationProgramInfo .program-info-column h2.next-term {
      color: #461d7c;
      font-size: 1.6rem;
      font-weight: 500;
      margin: 2rem 0 0 0; }
    #applicationProgramInfo .program-info-column h3 {
      font-size: 1.2rem;
      font-weight: 400; }
  #applicationProgramInfo .program-apply-column {
    width: 25%;
    text-align: right;
    padding-right: 20px; }
  #applicationProgramInfo .program-apply-small {
    display: none; }
  #applicationProgramInfo .btn-apply {
    background-color: #ffc107 !important;
    border-color: #ffc107 !important;
    color: #461d7c !important;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 10px;
    width: 100%;
    max-width: 400px; }
    #applicationProgramInfo .btn-apply:hover {
      background-color: #fbd34d !important;
      border-color: #fbd34d !important; }

table.application {
  border-collapse: collapse;
  margin: 0 0 1rem 0;
  padding: 0;
  width: 100%;
  font-size: 1rem;
  font-weight: 400; }

table.application.white {
  margin: 0 0 1rem 0; }

table.application th {
  background-color: #fff;
  color: #474747;
  padding: 10px;
  font-weight: 400; }

table.application th:first-child {
  padding: 10px 10px 10px 0; }

table.application tr {
  background-color: #fff;
  color: #474747;
  margin-bottom: 1rem; }

table.application tr:last-child {
  border-bottom: none;
  margin-bottom: none; }

table.application tr:first-child {
  background-color: #461d7c;
  color: #fff; }

table.application td {
  padding: 10px; }

table.application td:first-child {
  padding: 10px 10px 10px 0; }

table.application tbody tr td:first-child {
  position: relative; }

table.application tbody tr:first-child td:first-child::before {
  content: "";
  position: absolute;
  display: block;
  background-color: #461d7c;
  width: 2rem;
  height: 100%;
  top: 0;
  left: -2rem; }

table.application.white tr {
  background-color: #fff;
  color: #474747;
  padding: 10px;
  border-bottom: 1px solid #ddd; }

table.application.white tr:last-child {
  border-bottom: none; }

table.application.white tbody tr:first-child {
  border-top: 1px solid #ddd; }

table.application.white tbody tr td:first-child::before {
  background-color: #fff; }

@media screen and (max-width: 991px) {
  #applicationProgramInfo {
    display: flex;
    margin-top: 2rem; }
    #applicationProgramInfo .program-info-column {
      width: 100%;
      padding-right: 0; }
    #applicationProgramInfo .program-apply-column {
      display: none; }
    #applicationProgramInfo .program-apply-small {
      display: block;
      text-align: center; }
  table.application th,
  table.application td {
    border-right: none; }
  table.application th:first-child,
  table.application td:first-child {
    padding: 10px 0; }
  table.application thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px; }
  table.application tr {
    display: block;
    color: #474747;
    padding: 10px; }
  table.application tr:first-child {
    display: block;
    color: #fff;
    padding: 10px; }
  table.application td {
    border-bottom: 1px solid #ddd;
    display: block;
    text-align: right;
    padding: 10px 0; }
  table.application td::before {
    content: attr(data-label);
    float: left;
    padding-right: 2rem; }
  table.application tbody tr td:first-child::before {
    content: attr(data-label);
    position: relative;
    width: auto;
    height: 100%;
    float: left; }
  table.application tbody tr:first-child td:first-child::before {
    content: attr(data-label);
    position: relative;
    width: auto;
    height: 100%;
    float: left;
    margin-left: 2rem; }
  table.application td:last-child {
    border-bottom: 0; }
  table.application.white tr {
    background-color: #fff;
    color: #474747;
    padding: 0;
    border-bottom: none;
    margin-bottom: 1.5rem; }
  table.application.white tr:last-child {
    border-bottom: none; }
  table.application.white tbody tr:first-child {
    border-top: none; } }

@media screen and (max-width: 480px) {
  table.application td {
    text-align: left;
    font-weight: 600; }
  table.application tbody tr:first-child td:first-child::before {
    content: attr(data-label);
    position: relative;
    width: auto;
    height: 100%;
    width: 100%;
    float: left;
    margin-left: 2rem;
    font-weight: 400; }
  table.application td::before {
    content: attr(data-label);
    float: left;
    padding-right: 2rem;
    width: 100%;
    text-align: left;
    font-weight: 400 !important; }
  table.application tbody tr td:first-child::before {
    content: attr(data-label);
    position: relative;
    width: 100%;
    height: 100%;
    float: left; } }

.help-block {
  display: flex;
  flex-direction: row;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
  margin: 2rem 0; }

.help-image {
  width: 33.5%; }
  .help-image img {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem; }

.help-content {
  width: 66.5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem; }
  .help-content .buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem; }
  .help-content .btn-primary {
    min-width: 240px; }

@media only screen and (max-width: 991px) {
  .help-content,
  .help-image {
    width: 100%; }
  .help-image img {
    height: 100%;
    object-fit: cover; }
  .help-content .buttons {
    flex-direction: column; } }

@media only screen and (max-width: 767px) {
  .help-block {
    flex-direction: column; }
  .help-image {
    width: 100%; }
    .help-image img {
      height: 360px;
      border-top-left-radius: 0.25rem;
      border-bottom-left-radius: 0;
      border-top-right-radius: 0.25rem; }
  .help-content {
    width: 100%; } }

@media only screen and (max-width: 500px) {
  .help-image img {
    height: 260px; }
  .help-content .btn-primary {
    min-width: 100%; } }

/* Term Dates */
#accordion.term-dates-accordion .panel-title::after {
  color: #461d7c; }

#accordion.term-dates-accordion .panel-title {
  background-color: #fff; }
  #accordion.term-dates-accordion .panel-title #accordion-headings {
    color: #461d7c;
    font-weight: 500;
    font-size: 1.4rem; }

#accordion.term-dates-accordion .panel-title:hover,
#accordion.term-dates-accordion .panel-title[aria-expanded="true"] {
  background-color: #f2f2f2; }

#accordion.term-dates-accordion .card-body {
  padding: 2rem; }
  #accordion.term-dates-accordion .card-body h4 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #461d7c; }
  #accordion.term-dates-accordion .card-body .logo-box {
    padding-bottom: 1rem; }
  #accordion.term-dates-accordion .card-body .logo {
    height: 30px; }

@media only screen and (max-width: 991px) {
  #accordion.term-dates-accordion .card-body .logo-box {
    padding-bottom: 1rem; }
    #accordion.term-dates-accordion .card-body .logo-box .logo {
      height: 20px; } }

/*---------------------
used on PLA
---------------------*/
.mc-accordian {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0 0 10px 0;
  margin: 0 0 20px 0; }
  .mc-accordian button {
    background-color: transparent;
    border: none;
    padding: 0 0 5px 0;
    text-align: left;
    color: rgba(70, 29, 124, 0.8);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer; }
    .mc-accordian button::after {
      content: "\f107";
      color: rgba(70, 29, 124, 0.8);
      font-size: 1.4rem;
      font-weight: 800;
      padding-left: 5px;
      font-family: "FontAwesome"; }
    .mc-accordian button[aria-expanded="true"]::after {
      content: "\f106"; }
  .mc-accordian button:hover {
    color: #461d7c; }
    .mc-accordian button:hover::after {
      color: #461d7c; }
  .mc-accordian button:focus {
    outline: none;
    color: #461d7c; }

.mc-accordian:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 10px; }

/* Page Title - New 2025 */
.page-title-header {
  position: relative;
  padding: 3rem 0 2rem 0; }
  .page-title-header h1 {
    color: white;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    margin: 0;
    filter: drop-shadow(1px 2px 3px black);
    font-size: 1.3rem; }
    @media (min-width: 992px) {
      .page-title-header h1 {
        font-size: 2rem; } }
    .page-title-header h1 span {
      display: none; }
  .page-title-header .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; }
    .page-title-header .header-background::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
      z-index: 1; }
    .page-title-header .header-background img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 54%; }
  .page-title-header .container {
    position: relative;
    z-index: 2; }

.yellow-line {
  border-top: solid 8px #ffc107;
  width: 95px;
  padding-bottom: .5rem; }

@media (min-width: 992px) {
  .yellow-line {
    width: 150px; }
  .page-title-header {
    padding: 4rem 0; } }
