/* CSS Document 
Client: United Colleges Group
Version: V1
Date: 31/03/2026
Author: Geoff Boult
Company: Concept4
Website: www.concept4.com
Type: Inclusive Stylesheet
*/
/*

01: Global Reset
02: Colour Palette
03: Header
04: Global
05: Type
06: Flexbox
07: Mixins
08: Margins & Padding
09: Footer
10: Main Menu
11: Search
12: Hero

*/
:root {
  --main-font: 'Arial', sans-serif;
}

.wrapper, .mm-page {
  width: 100%;
  min-height: 100vh;
  height: auto !important;
  height: 100vh;
  margin: 0 auto;
  position: relative;
  top: 0;
  padding: 0;
}

.wrapper {
  overflow: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

nav[role=mobileMenu] {
  display: none;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  color: var(--cb);
  font-size: 1em;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
  font-size: 62.5%;
  font-family: var(--main-font);
  min-block-size: 100svh;
  background-color: var(--cw);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
picture,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

button,
input,
select,
textarea {
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
}

button {
  padding: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  color: inherit;
  border: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

textarea {
  resize: vertical;
}

main {
  display: block;
}

.hidden,
[hidden] {
  display: none !important;
}

.visually-hidden,
.visuallyhidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

h2, h3, h4, h5 {
  margin: 5px 0 8px 0;
  padding-top: 0;
  line-height: 1.2;
}

/*
 * Enable Smooth Scrolling.
*/
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
:root {
  --cw: #fff;
  --cb: #000;
  --clt: #80D1CE;
  --b1: #003471;
  --b2: #71378A;
  --b3: #FBB040;
  --b4: #00A29D;
  --b5: #F15A29;
  --b6: #9ACA3C;
  --b7: #1B75BC;
  --b8: #AE8CC1;
  --b9: #AE186D;
}

/* Declare like this:
.card {
  @include hover {
    transform: translateY(-2px);
  }
}

*/
/* Declate like this:
.button:focus-visible {
  @include focus-ring(#c00, 3px);
}
*/
:root {
  --header-height-mobile: 60px; /* Mobile Header height */
  --header-height-laptop: 80px; /* Large Tablet and Laptop Header height */
  --header-height-desktop: 95px; /* Desktop Header height */
}

header#masthead {
  --logo-width-mobile: 110px;
  --logo-height-mobile: 44px;
  --logo-width-size2-mobile: 121px;
  --logo-height-size2-mobile: 48px;
  --logo-width-size3-mobile: 140px;
  --logo-height-size3-mobile: 56px;
  --logo-width-size4-mobile: 180px;
  --logo-height-size4-mobile: 71px;
  --logo-width-size5-mobile: 240px;
  --logo-height-size5-mobile: 95px;
  --logo-width-tablet: 280px;
  --logo-height-tablet: 111px;
  --logo-width-size2-tablet: 350px;
  --logo-height-size2-tablet: 139px;
  --logo-width-desktop: 403px;
  --logo-height-desktop: 161px;
  height: var(--header-height-mobile);
  width: 100%;
  background-color: var(--cw);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 0;
  left: 0;
  position: fixed;
  padding-left: 2.5vw;
  padding-right: 2.5vw;
  z-index: 3;
}
header#masthead .logoHolder {
  position: relative;
  z-index: 1001;
}
header#masthead .logoHolder,
header#masthead .logoHolder a {
  width: var(--logo-width-mobile);
  height: var(--logo-height-mobile);
  display: block;
  transition: width 200ms ease-in-out, height 200ms ease-in-out, top 200ms ease-in-out;
}
header#masthead .header-right {
  display: flex;
  align-items: center;
  gap: 0 10px;
  height: 100%;
}
header#masthead .header-right button.mobileMenuBTN.menu {
  width: 20px;
  height: 16px;
  position: relative;
  display: block;
  background: transparent;
}
header#masthead .header-right button.mobileMenuBTN.menu span {
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: var(--cb);
  display: block;
  position: absolute;
  left: 0;
  transition: transform 200ms ease-in-out;
}
header#masthead .header-right button.mobileMenuBTN.menu span:nth-child(1) {
  top: 0;
}
header#masthead .header-right button.mobileMenuBTN.menu span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
header#masthead .header-right button.mobileMenuBTN.menu span:nth-child(3) {
  bottom: 0;
}
header#masthead .header-right a.accessibility {
  height: 26px;
  width: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 200ms ease-in-out, visibility 200ms ease-in-out;
}
header#masthead .header-right button.site-search {
  display: none;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: rgba(0, 52, 113, 0.2);
  font-size: 0.875rem;
}
header#masthead .header-right button#quick-links-toggle {
  color: var(--cb);
}
header#masthead aside#quick-links {
  position: absolute;
  top: 100%;
  right: 0;
  width: 120px;
  border-radius: 0 0 0 30px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  transition: opacity 200ms ease-in-out, visibility 200ms ease-in-out;
}
header#masthead aside#quick-links.is-collapsed-mobile {
  display: none;
}
header#masthead aside#quick-links ul {
  border-radius: 0 0 0 30px;
  background-color: #cceceb;
  overflow: hidden;
}
header#masthead aside#quick-links ul li a {
  text-align: center;
  display: block;
  line-height: 50px;
}
header#masthead aside#quick-links ul li a.apply {
  font-size: 1.25rem;
  font-weight: 700;
  background-color: var(--b4);
  font-family: var(--futura-pt-bold);
}
header#masthead aside#quick-links ul li a.my-day {
  background-color: rgba(0, 162, 157, 0.2);
}
header#masthead aside#quick-links ul li a.term-dates {
  background-color: rgba(0, 162, 157, 0.1);
}

body.mobileMenuInUse header#masthead .header-right button.mobileMenuBTN.menu span {
  width: calc(100% + 4px);
  left: -2px;
}
body.mobileMenuInUse header#masthead .header-right button.mobileMenuBTN.menu span:nth-child(1) {
  top: 6px;
  transform: rotate(40deg);
  -webkit-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
}
body.mobileMenuInUse header#masthead .header-right button.mobileMenuBTN.menu span:nth-child(2) {
  opacity: 0;
}
body.mobileMenuInUse header#masthead .header-right button.mobileMenuBTN.menu span:nth-child(3) {
  top: 6px;
  transform: rotate(-40deg);
  -webkit-transform: rotate(-40deg);
  -ms-transform: rotate(-40deg);
}

@media (min-width: 400px) {
  header#masthead .logoHolder, header#masthead .logoHolder a {
    width: var(--logo-width-size2-mobile);
    height: var(--logo-height-size2-mobile);
  }
  header#masthead .header-right {
    gap: 0 20px;
  }
}
@media (min-width: 600px) {
  header#masthead {
    justify-content: flex-end;
  }
  header#masthead .logoHolder {
    top: 5px;
    position: absolute;
    left: 2.5vw;
  }
  header#masthead .logoHolder,
  header#masthead .logoHolder a {
    width: var(--logo-width-size4-mobile);
    height: var(--logo-height-size4-mobile);
  }
  body.fixedHeader header#masthead .logoHolder,
  body.fixedHeader header#masthead .logoHolder a {
    width: var(--logo-width-size3-mobile);
    height: var(--logo-height-size3-mobile);
  }
  body.fixedHeader header#masthead .logoHolder {
    top: 2px;
  }
}
@media (min-width: 900px) {
  header#masthead .logoHolder, header#masthead .logoHolder a {
    width: var(--logo-width-size5-mobile);
    height: var(--logo-height-size5-mobile);
  }
}
@media (min-width: 1024px) {
  header#masthead .logoHolder {
    top: 10px;
  }
  header#masthead .logoHolder, header#masthead .logoHolder a {
    width: var(--logo-width-tablet);
    height: var(--logo-height-tablet);
  }
}
@media (min-width: 1280px) {
  header#masthead {
    height: var(--header-height-laptop);
  }
  header#masthead .header-right {
    height: 60px;
    align-self: flex-end;
  }
  header#masthead .header-right button#quick-links-toggle,
  header#masthead .header-right button.mobileMenuBTN.menu {
    display: none;
  }
  header#masthead .header-right a.accessibility,
  header#masthead .header-right a.accessibility svg {
    height: 30px;
    width: 30px;
  }
  header#masthead .header-right button.site-search {
    display: block;
  }
  header#masthead aside#quick-links {
    display: block !important;
  }
  body.search-open header#masthead .header-right a.accessibility {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  body.fixedHeader header#masthead .logoHolder,
  body.fixedHeader header#masthead .logoHolder a {
    width: var(--logo-width-size5-mobile);
    height: var(--logo-height-size5-mobile);
  }
  body.fixedHeader header#masthead aside#quick-links {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
@media (min-width: 1280px) {
  header#masthead .logoHolder {
    left: 2.5vw;
  }
}
@media (min-width: 1600px) {
  header#masthead {
    height: var(--header-height-desktop);
  }
  header#masthead .header-right {
    height: 76px;
  }
  header#masthead .header-right a.accessibility,
  header#masthead .header-right a.accessibility svg,
  header#masthead .header-right button.site-search {
    height: 40px;
    width: 40px;
  }
  header#masthead .header-right button.site-search {
    font-size: 1rem;
  }
  header#masthead .logoHolder, header#masthead .logoHolder a {
    width: var(--logo-width-size2-tablet);
    height: var(--logo-height-size2-tablet);
  }
  body.fixedHeader header#masthead .logoHolder,
  body.fixedHeader header#masthead .logoHolder a {
    width: var(--logo-width-tablet);
    height: var(--logo-height-tablet);
  }
}
@media (min-width: 1800px) {
  header#masthead .logoHolder, header#masthead .logoHolder a {
    width: var(--logo-width-desktop);
    height: var(--logo-height-desktop);
  }
}
@media (min-width: 1900px) {
  header#masthead {
    padding-left: 8vw;
    padding-right: 8vw;
  }
  header#masthead .logoHolder {
    left: 8vw;
  }
}
@media (any-hover: hover) and (any-pointer: fine) {
  header#masthead .header-right button.site-search {
    transition: background-color 200ms ease-in-out, color 100ms ease-in-out;
  }
  header#masthead .header-right button.site-search:hover {
    background-color: var(--b1);
    color: var(--cw);
  }
  header#masthead .header-right a.accessibility svg rect {
    transition: fill-opacity 200ms ease-in-out;
  }
  header#masthead .header-right a.accessibility svg path {
    transition: fill 200ms ease-in-out;
  }
  header#masthead .header-right a.accessibility:hover svg rect {
    fill-opacity: 1;
  }
  header#masthead .header-right a.accessibility:hover svg path {
    fill: var(--cw);
  }
  header#masthead aside#quick-links ul li a {
    transition: background-color 200ms ease-in-out, color 100ms ease-in-out;
  }
  header#masthead aside#quick-links ul li a:hover {
    background-color: var(--b1);
    color: var(--cw);
  }
}
a.more,
span.more,
.mainContent .content-area a.more {
  padding: 13px 15px;
  line-height: 1.3;
  display: inline-block;
  text-decoration: none;
  position: relative;
  border-radius: 25px;
  font-family: var(--futura-pt-bold);
}
a.more.bg-white,
span.more.bg-white,
.mainContent .content-area a.more.bg-white {
  background-color: var(--cw);
}
a.more.bg-blue,
span.more.bg-blue,
.mainContent .content-area a.more.bg-blue {
  background-color: var(--b1);
}
a.more.txt-white,
span.more.txt-white,
.mainContent .content-area a.more.txt-white {
  color: var(--cw);
}
a.more.txt-blue,
span.more.txt-blue,
.mainContent .content-area a.more.txt-blue {
  color: var(--b1);
}
a.more.tu,
span.more.tu,
.mainContent .content-area a.more.tu {
  text-transform: uppercase;
}
a.more.border,
span.more.border,
.mainContent .content-area a.more.border {
  border-width: 1px;
  border-style: solid;
}
a.more.border-teal,
span.more.border-teal,
.mainContent .content-area a.more.border-teal {
  border-color: var(--b4);
}

.skip-nav-link {
  display: block;
  position: fixed;
  top: -1000rem;
  left: 0%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  overflow: hidden;
  text-decoration: none;
  offset-anchor: var(--header-height-desktop);
  background-color: var(--cb);
  color: var(--cw);
  font-weight: 700;
}
.skip-nav-link:focus, .skip-nav-link:focus-visible {
  top: 0;
  width: auto;
  transform: none;
  height: auto;
  padding: 0.9375rem;
  overflow: visible;
  z-index: 9002;
}

.multiple-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.multiple-buttons.center {
  justify-content: center;
}

.page-width {
  padding-left: 5vw;
  padding-right: 5vw;
}

.page-width-small {
  padding-left: 2.5vw;
  padding-right: 2.5vw;
}

.tabbedContent .tab-content {
  position: absolute;
  width: 100%;
  top: -999rem;
  opacity: 0;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;
  -webkit-transition: opacity 0.2s ease, transform 0.2s ease, -webkit-filter 0.2s ease;
  visibility: hidden;
  height: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
  -webkit-filter: blur(5px);
  filter: blur(5px);
  will-change: opacity, transform, filter;
}
.tabbedContent .tab-content.current {
  opacity: 1;
  position: relative;
  top: auto;
  visibility: visible;
  height: auto;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-filter: blur(0);
  filter: blur(0);
}

.center-me {
  text-align: center;
}

.mw800 {
  max-width: 800px;
}

.mw1000 {
  max-width: 1000px;
}

.mw1200 {
  max-width: 1200px;
}

.mw1400 {
  max-width: 1400px;
}

.mw1600 {
  max-width: 1600px;
}

.mw2000 {
  max-width: 2000px;
}

.mw800, .mw1000, .mw1200, .mw1400, .mw1600, .mw2000 {
  margin: 0 auto;
}

.share {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  margin-top: 30px;
}
.share .social-icons {
  display: flex;
  gap: 15px;
}
.share .social-icons a {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  background-color: var(--b4);
  color: var(--cb);
}

.course-search {
  width: 100%;
  margin: 0 auto;
  padding: 20px 5vw;
  background-color: var(--b1);
}
.course-search .flex.top-set {
  align-items: center;
  flex-direction: column;
}
.course-search .title {
  color: var(--cw);
  font-family: var(--futura-pt-bold);
}
.course-search .tabs {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-width: 1px;
  border-style: solid;
  border-color: var(--cw);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 15px;
}
.course-search .tabs button {
  text-align: center;
  height: 40px;
  color: var(--cw);
  font-family: var(--futura-pt-bold);
}
.course-search .tabs button.current {
  background-color: var(--b4);
  color: var(--cb);
}
.course-search .tabs button:nth-child(2) {
  border-left-width: 1px;
  border-left-style: solid;
  border-right-width: 1px;
  border-right-style: solid;
  border-color: var(--cw);
}
.course-search .tab-content {
  margin-top: 15px;
}
.course-search .courseSearch,
.course-search .careerSearch,
.course-search .interestSearch {
  width: 100%;
  text-align: center;
}
.course-search .courseSearch input.searchInput,
.course-search .careerSearch input.searchInput,
.course-search .interestSearch input.searchInput {
  width: 100%;
  width: calc(100% - 34px);
  height: 40px;
  padding: 5px 17px 5px 17px;
  box-sizing: content-box;
  border: none;
  color: var(--b1);
  -webkit-text-fill-color: var(--b1);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  background: var(--cw);
  border-radius: 25px;
  font-family: var(--futura-pt-bold);
}
.course-search .courseSearch input.searchInput::placeholder,
.course-search .careerSearch input.searchInput::placeholder,
.course-search .interestSearch input.searchInput::placeholder {
  color: var(--b1);
  opacity: 1;
}
.course-search .courseSearch input.searchInput::-webkit-placeholder,
.course-search .careerSearch input.searchInput::-webkit-placeholder,
.course-search .interestSearch input.searchInput::-webkit-placeholder {
  color: var(--b1);
  opacity: 1;
}
.course-search .courseSearch input.searchInput:focus,
.course-search .careerSearch input.searchInput:focus,
.course-search .interestSearch input.searchInput:focus {
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.2);
}
.course-search .courseSearch .filterList,
.course-search .careerSearch .filterList,
.course-search .interestSearch .filterList {
  margin-top: 7px;
  height: 50px;
  background-color: var(--cw);
  border-radius: 25px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
}
.course-search .courseSearch .filterList .list.type,
.course-search .careerSearch .filterList .list.type,
.course-search .interestSearch .filterList .list.type {
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: rgb(217, 217, 217);
}
.course-search .courseSearch .filterList .list fieldset,
.course-search .careerSearch .filterList .list fieldset,
.course-search .interestSearch .filterList .list fieldset {
  border: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.course-search .courseSearch .filterList .list legend,
.course-search .careerSearch .filterList .list legend,
.course-search .interestSearch .filterList .list legend {
  width: 100%;
  padding: 0;
}
.course-search .courseSearch .filterList .list legend button,
.course-search .careerSearch .filterList .list legend button,
.course-search .interestSearch .filterList .list legend button {
  height: 50px;
  padding: 0;
  width: 100%;
  text-align: left;
  padding: 0 35px 0 17px;
  border: none;
  color: var(--b1);
  z-index: 1;
  position: relative;
  cursor: pointer;
  font-family: var(--futura-pt-bold);
}
.course-search .courseSearch .filterList .list legend button i,
.course-search .careerSearch .filterList .list legend button i,
.course-search .interestSearch .filterList .list legend button i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.course-search .courseSearch .filterList .list legend button:after,
.course-search .careerSearch .filterList .list legend button:after,
.course-search .interestSearch .filterList .list legend button:after {
  position: absolute;
  height: 1px;
  left: 17px;
  width: calc(100% - 34px);
  content: "";
  bottom: 10px;
  background-color: var(--cb);
  opacity: 0;
  visibility: hidden;
}
.course-search .courseSearch .filterList .list legend button[aria-expanded=true]:before,
.course-search .careerSearch .filterList .list legend button[aria-expanded=true]:before,
.course-search .interestSearch .filterList .list legend button[aria-expanded=true]:before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 22px;
  bottom: 0px;
  background-color: var(--cw);
  z-index: -1;
}
.course-search .courseSearch .filterList .list legend button[aria-expanded=true] i,
.course-search .careerSearch .filterList .list legend button[aria-expanded=true] i,
.course-search .interestSearch .filterList .list legend button[aria-expanded=true] i {
  transform: translateY(-50%) rotate(180deg);
}
.course-search .courseSearch .filterList .list .accordion-panel,
.course-search .careerSearch .filterList .list .accordion-panel,
.course-search .interestSearch .filterList .list .accordion-panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  scrollbar-width: thin;
  z-index: 101;
  padding: 5px 17px 12px 17px;
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.2);
  background-color: var(--cw);
}
.course-search .courseSearch .filterList .list .accordion-panel a,
.course-search .careerSearch .filterList .list .accordion-panel a,
.course-search .interestSearch .filterList .list .accordion-panel a {
  display: block;
  padding: 4px 0;
  margin: 2px 0;
  line-height: 1.4;
  text-decoration: none;
  color: var(--primary-black);
  text-align: left;
}
.course-search .courseSearch .filterList .list .accordion-panel a:hover, .course-search .courseSearch .filterList .list .accordion-panel a:focus,
.course-search .careerSearch .filterList .list .accordion-panel a:hover,
.course-search .careerSearch .filterList .list .accordion-panel a:focus,
.course-search .interestSearch .filterList .list .accordion-panel a:hover,
.course-search .interestSearch .filterList .list .accordion-panel a:focus {
  text-decoration: underline;
}
.course-search .courseSearch button.submitBTN,
.course-search .careerSearch button.submitBTN,
.course-search .interestSearch button.submitBTN {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 5px 0 15px;
  background-color: var(--b4);
  border-radius: 25px;
  font-family: var(--futura-pt-bold);
  margin-top: 7px;
  margin-bottom: 11px;
}
.course-search .courseSearch button.submitBTN span,
.course-search .careerSearch button.submitBTN span,
.course-search .interestSearch button.submitBTN span {
  color: var(--cb);
}
.course-search .courseSearch button.submitBTN i,
.course-search .careerSearch button.submitBTN i,
.course-search .interestSearch button.submitBTN i {
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--cw);
  color: var(--cb);
}
.course-search .courseSearch a.link,
.course-search .careerSearch a.link,
.course-search .interestSearch a.link {
  color: var(--cw);
  font-family: var(--futura-pt-bold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3rem;
}
.course-search .careerSearch .filterList,
.course-search .interestSearch .filterList {
  grid-template-columns: repeat(1, 1fr);
  margin-bottom: 7px;
}
.course-search .careerSearch .filterList .list legend button i,
.course-search .interestSearch .filterList .list legend button i {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 5px;
  background-color: var(--b4);
  border-radius: 50%;
  color: var(--cb);
}
.course-search .careerSearch .input-holder,
.course-search .interestSearch .input-holder {
  position: relative;
  height: 50px;
  margin-bottom: 11px;
}
.course-search .careerSearch .input-holder .submitBTN,
.course-search .interestSearch .input-holder .submitBTN {
  height: 40px;
  width: 40px;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  background: none;
  color: var(--cb);
}
.course-search .careerSearch .input-holder .submitBTN i,
.course-search .interestSearch .input-holder .submitBTN i {
  background-color: var(--b4);
}
.course-search .interestSearch .filterList {
  margin-bottom: 11px;
}

#sidebar .course-search {
  width: 100%;
  border-radius: 10px;
  margin-top: 20px;
  padding: 15px 20px 20px 20px;
  display: none;
  max-width: 100%;
  box-shadow: none;
}
#sidebar .course-search .flex.top-set {
  flex-wrap: wrap;
}
#sidebar .course-search .flex.top-set .title {
  flex: 0 0 100%;
  text-align: center;
}
#sidebar .course-search .flex.top-set .tabs {
  flex: 0 0 100%;
  margin-top: 0;
}
#sidebar .course-search #course-search-tab-1 form,
#sidebar .course-search #career-search-tab-2 form {
  height: 44px;
  margin-bottom: 8px;
}
#sidebar .course-search #course-search-tab-1 form {
  display: flex;
  background-color: var(--cw);
  border-radius: 30px;
}
#sidebar .course-search #course-search-tab-1 form:after {
  display: none;
}
#sidebar .course-search .courseSearch button.submitBTN {
  margin: 5px 0 0 0;
  border-radius: 30px;
  padding: 0;
}
#sidebar .course-search .courseSearch button.submitBTN i {
  border-radius: 30px;
  background-color: var(--b4);
}
#sidebar .course-search .courseSearch input.searchInput,
#sidebar .course-search .careerSearch input.searchInput {
  height: 34px;
  width: calc(100% - 80px);
  position: relative;
}
#sidebar .course-search .courseSearch button.submitBTN,
#sidebar .course-search .courseSearch button.submitBTN i,
#sidebar .course-search .careerSearch button.submitBTN,
#sidebar .course-search .careerSearch button.submitBTN i {
  height: 34px;
  width: 34px;
}
#sidebar .course-search .courseSearch input.searchInput {
  padding: 5px 21px;
}
#sidebar .course-search .careerSearch form {
  flex-wrap: wrap;
  gap: 10px 0;
}
#sidebar .course-search .careerSearch .filterList {
  flex: 0 0 100%;
  margin-top: 0;
}
#sidebar .course-search .careerSearch .filterList .list legend button i {
  height: 34px;
  width: 34px;
}
#sidebar .course-search .careerSearch .filterList .list legend button[aria-expanded=true]:before {
  height: 24px;
}
#sidebar .course-search .careerSearch .filterList,
#sidebar .course-search .careerSearch .filterList .list legend button {
  height: 44px;
}
#sidebar .course-search .careerSearch .input-holder {
  height: 44px;
  flex: 0 0 100%;
}
#sidebar .course-search .careerSearch .input-holder input.searchInput {
  padding: 5px 44px 5px 17px;
  width: calc(100% - 44px - 17px);
}
#sidebar .course-search .interestSearch .filterList {
  height: 44px;
  margin-top: 0;
}
#sidebar .course-search .interestSearch .filterList .list legend button {
  height: 44px;
}
#sidebar .course-search .interestSearch .filterList .list legend button[aria-expanded=true]:before {
  height: 24px;
}
#sidebar .course-search .interestSearch .filterList .list legend button i {
  height: 34px;
  width: 34px;
}

body.error-404 .course-search,
body.search-results .course-search {
  margin-top: 0;
  padding: 7px;
  height: 64px;
  border-radius: 32px;
  margin-bottom: 25px;
}
body.error-404 .course-search .courseSearch,
body.search-results .course-search .courseSearch {
  text-align: left;
}
body.error-404 .course-search #course-search-tab-1 form,
body.search-results .course-search #course-search-tab-1 form {
  margin-bottom: 0;
  background-color: var(--cw);
  border-radius: 30px;
  position: relative;
}
body.error-404 .course-search #course-search-tab-1 form:after,
body.search-results .course-search #course-search-tab-1 form:after {
  display: none;
}
body.error-404 .course-search input.searchInput,
body.search-results .course-search input.searchInput {
  width: calc(100% - 84px);
}
body.error-404 .course-search button.submitBTN,
body.search-results .course-search button.submitBTN {
  height: 40px;
  width: 40px;
  position: absolute;
  padding: 0;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
}
body.error-404 .course-search button.submitBTN i,
body.search-results .course-search button.submitBTN i {
  background-color: transparent;
}

a.image-link-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  border-radius: 10px 10px 10px 50px;
  aspect-ratio: 1/1;
}
a.image-link-block figure {
  overflow: hidden;
  border-radius: 10px 10px 10px 50px;
}
a.image-link-block figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a.image-link-block .link-text {
  padding: 25px 40px;
  border-radius: 0 0 10px 50px;
  font-family: var(--futura-pt-bold);
  max-height: 140px;
  transition: max-height 300ms ease-in-out;
  position: relative;
  text-transform: uppercase;
  overflow: hidden;
}
a.image-link-block .link-text.bg-cwc-yellow {
  background-color: var(--b3);
}
a.image-link-block .link-text.bg-cnwl-purple {
  background-color: var(--b2);
  color: var(--cw);
}
a.image-link-block .link-text.bg-cnwl-teal {
  background-color: var(--b4);
}
a.image-link-block .link-text.bg-cwc-orange {
  background-color: var(--b5);
}
a.image-link-block .link-text.bg-cwc-green {
  background-color: var(--b6);
}
a.image-link-block .link-text.bg-cnwl-blue {
  background-color: var(--b7);
}
a.image-link-block .link-text.bg-cnwl-lilac {
  background-color: var(--b8);
}
a.image-link-block .link-text.bg-cnwl-berry {
  background-color: var(--b9);
}
a.image-link-block .link-text span.view {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 40px;
  opacity: 0;
  visibility: hidden;
  right: 40px;
  width: auto;
  display: block;
}
a.image-link-block .link-text span.view i {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.advert {
  position: relative;
}
.advert .swiper-wrapper {
  align-items: stretch;
}
.advert .swiper-slide {
  height: auto;
  display: flex;
  width: 100%;
}
.advert .flex {
  flex-direction: column-reverse;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.advert .image {
  min-height: 300px;
  height: 70vw;
}
.advert .image picture {
  height: 100%;
}
.advert .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.advert .image.bg-cwc-yellow {
  background-color: var(--b3);
}
.advert .image.bg-cnwl-purple {
  background-color: var(--b2);
}
.advert .image.bg-ucg-dark-blue {
  background-color: var(--b1);
}
.advert .content {
  padding: 47px calc(5vw + 7px) 30px 5vw;
  background-color: var(--cw);
  border-radius: 0 50px 0 0;
  margin-top: -50px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.advert .content:before {
  content: "";
  background-color: var(--cw);
  position: absolute;
  top: 7px;
  right: 7px;
  bottom: 0;
  left: 0;
  border-radius: 0 43px 0 0;
}
.advert .content .z-index-higher {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  align-items: flex-start;
}
.advert .content .ofsted-logo {
  width: clamp(99px, 23.4px + 12.6vw, 225px);
  aspect-ratio: 1/1;
  margin-bottom: 25px;
}
.advert .content .ofsted-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.advert .content .college-name,
.advert .content h3 {
  color: var(--b1);
}
.advert .content h3 {
  margin: 10px 0 25px 0;
  font-family: var(--futura-pt-bold);
}
.advert .content p {
  line-height: 1.7;
  margin-bottom: 25px;
}
.advert .content a.more {
  margin-top: auto;
}
.advert .content.bg-cwc-yellow {
  background-color: var(--b3);
}
.advert .content.bg-cnwl-purple {
  background-color: var(--b2);
}
.advert .content.bg-ucg-dark-blue {
  background-color: var(--b1);
}
.advert .carousel-prev,
.advert .carousel-next,
.advert .advert-pausePlay {
  height: 40px;
  width: 40px;
  color: var(--b1);
  bottom: 10px;
  top: auto;
}
.advert .carousel-prev svg,
.advert .carousel-next svg,
.advert .advert-pausePlay svg {
  width: 10px;
  height: 10px;
}
.advert .advert-pausePlay {
  position: absolute;
  z-index: 2;
  right: 5vw;
}
.advert.swiper-horizontal .carousel-prev, .advert.swiper-horizontal .carousel-next {
  top: auto;
  position: absolute;
  z-index: 2;
}
.advert.swiper-horizontal .carousel-prev svg, .advert.swiper-horizontal .carousel-next svg {
  display: none;
}
.advert.swiper-horizontal .carousel-prev {
  left: calc(5vw - 10px);
}
.advert.swiper-horizontal .carousel-next {
  left: calc(5vw - 10px + 40px);
}
.advert.swiper .content {
  padding-bottom: 70px;
}
.advert.image-curve {
  background-color: var(--cw);
}
.advert.image-curve .image {
  border-radius: 0 0 0 50px;
  z-index: 2;
  padding-left: 7px;
  padding-bottom: 7px;
}
.advert.image-curve .image picture {
  border-radius: 0 0 0 43px;
  overflow: hidden;
}
.advert.image-curve .content {
  border-radius: 0;
  margin-top: 0;
  padding-top: 30px;
}
.advert.image-curve .content:before {
  display: none;
}

.student-testimonials {
  background-color: var(--b1);
  padding-top: 40px;
  padding-bottom: 75px;
  position: relative;
}
.student-testimonials.cwc {
  background-color: var(--b3);
}
.student-testimonials.cwc .title {
  background-color: var(--b1);
  color: var(--cw);
}
.student-testimonials.cwc .testimonial-prev,
.student-testimonials.cwc .testimonial-next {
  color: var(--b1);
}
.student-testimonials.cnwl {
  background-color: var(--b2);
}
.student-testimonials.cnwl .title {
  background-color: var(--b1);
  color: var(--cw);
}
.student-testimonials .title {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 20px 20px 0 0;
  background-color: var(--clt);
  color: var(--b1);
  font-family: var(--futura-pt-bold);
  width: 270px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.student-testimonials .testimonial {
  height: auto;
  display: flex;
  align-items: stretch;
  border-radius: 5px 50px 5px 5px;
  overflow: hidden;
  background-color: var(--cw);
  flex-direction: column;
}
.student-testimonials .testimonial .image {
  min-height: 300px;
  height: 70vw;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.student-testimonials .testimonial .image .content-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.student-testimonials .testimonial .image .content-overlay .arrow {
  width: 77px;
  margin-left: 10px;
}
.student-testimonials .testimonial .image .content-overlay .writing-type {
  font-family: var(--fuzzy-bubbles);
  color: var(--cw);
  transform: rotate(-8deg);
  margin-bottom: 10%;
  margin-left: 25px;
  text-shadow: 0 0 10px #000;
}
.student-testimonials .testimonial .image .content-overlay .branding {
  height: 40px;
  width: auto;
  max-width: 40%;
  position: absolute;
  left: 20px;
  top: 20px;
}
.student-testimonials .testimonial .image .content-overlay.right-align {
  align-items: flex-end;
}
.student-testimonials .testimonial .image .content-overlay.right-align .writing-type {
  transform: rotate(8deg);
  text-align: center;
}
.student-testimonials .testimonial .image .content-overlay.right-align .arrow {
  margin-left: 0;
  margin-right: 10px;
}
.student-testimonials .testimonial .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.student-testimonials .testimonial .image .overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 28.08%, rgba(0, 0, 0, 0.7) 100%);
}
.student-testimonials .testimonial .image video,
.student-testimonials .testimonial .image iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: bottom center;
  position: absolute;
  top: 0;
  left: 0;
}
.student-testimonials .testimonial .image button.pause-video {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 3;
  height: 40px;
  width: 40px;
  color: var(--cw);
  cursor: pointer;
}
.student-testimonials .testimonial .content {
  width: 100%;
  padding: 35px 25px 100px 25px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.student-testimonials .testimonial .content p {
  margin: 0 0 25px 0;
  line-height: 1.7;
}
.student-testimonials .testimonial .content .name-subject {
  font-family: var(--futura-pt-bold);
  margin-top: auto;
}
.student-testimonials .testimonial .content .name-subject,
.student-testimonials .testimonial .content .college {
  color: var(--b1);
}
.student-testimonials .testimonial .content .more {
  position: absolute;
  right: 30px;
  bottom: 30px;
  border-color: var(--b4);
  color: var(--b1);
}
.student-testimonials .testimonial-prev,
.student-testimonials .testimonial-next {
  height: 40px;
  width: 40px;
  color: var(--cw);
  position: absolute;
  bottom: 15px;
  top: auto;
  position: absolute;
  z-index: 2;
}
.student-testimonials .testimonial-next {
  right: calc(5vw - 10px);
  left: auto;
}
.student-testimonials .testimonial-prev {
  right: calc(5vw - 10px + 40px);
  left: auto;
}

body.student-testimonials-template .student-testimonials {
  background-color: var(--cw);
  gap: 14px 0;
  display: flex;
  flex-direction: column;
}
body.student-testimonials-template .student-testimonials .testimonial {
  border-width: 1px;
  border-style: solid;
  border-color: rgba(0, 52, 113, 0.2);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
}
body.student-testimonials-template .student-testimonials .testimonial .content {
  position: relative;
}
body.student-testimonials-template .student-testimonials .testimonial .content a.more {
  background-color: var(--cw);
  color: var(--b1);
}

.latest-events {
  background-color: var(--b4);
  padding: 40px 5vw;
}
.latest-events.cwc-yellow {
  background-color: var(--b3);
}
.latest-events.cwc-yellow .title a.more {
  border-color: var(--b4);
}
.latest-events.cnwl-purple {
  background-color: var(--b2);
}
.latest-events.cnwl-purple .title a.more {
  border-color: var(--b4);
}
.latest-events .title {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 20px 20px 0 0;
  background-color: var(--b1);
  color: var(--cw);
  font-family: var(--futura-pt-bold);
  line-height: 1.3;
  margin-bottom: 10px;
  position: relative;
}
.latest-events .title a.more {
  position: absolute;
  right: -110px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--cw);
  height: 50px;
  width: 130px;
  text-align: center;
  border-radius: 25px;
  color: var(--b1);
  display: none;
  border-color: var(--cw);
}
.latest-events .event-listing {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
}
.latest-events a {
  display: flex;
  flex-direction: column;
  border-radius: 5px 50px 5px 5px;
}
.latest-events a figure {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 5px 50px 0 0;
}
.latest-events a figure picture {
  min-height: 220px;
  height: 55vw;
  width: 100%;
}
.latest-events a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.latest-events a .content {
  padding: 30px 25px 100px 25px;
  background-color: var(--cw);
  color: var(--b1);
  border-radius: 0 0 5px 5px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.latest-events a .content .college-branding {
  height: 40px;
}
.latest-events a .content .college-branding img {
  max-height: 100%;
  width: auto;
}
.latest-events a .content .event-title {
  font-family: var(--futura-pt-bold);
  margin: 10px 0 15px 0;
  line-height: 1.3;
}
.latest-events a .content .content-bottom {
  margin-top: auto;
}
.latest-events a .content .event-date .seperator {
  margin: 0 4px;
}
.latest-events a .content span.more {
  border-color: var(--b4);
  color: var(--b1);
  position: absolute;
  bottom: 25px;
  right: 25px;
}
.latest-events a.all-events {
  height: 50px;
  border-radius: 25px;
  width: 130px;
  text-align: center;
  color: var(--b1);
  margin-top: 25px;
}

.latest-events.event-list__custom {
  background-color: var(--cw);
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 15px 0;
  padding: 0;
  margin-top: 30px;
  margin-bottom: 30px;
}
.latest-events.event-list__custom a.event {
  border-width: 1px;
  border-style: solid;
  border-color: rgba(0, 52, 113, 0.2);
}

.tab-content .latest-events.event-list__custom {
  margin-top: 0;
}

#sidebar .latest-events {
  padding: 0;
  margin-top: 30px;
  background-color: var(--cw);
  display: none;
}
#sidebar .latest-events .sidebar-events-title {
  color: var(--b1);
  font-family: var(--futura-pt-bold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2rem;
}
#sidebar .latest-events .sidebar-events-listing {
  margin-top: 30px;
}
#sidebar .latest-events a {
  border-width: 1px;
  border-style: solid;
  border-color: rgba(0, 52, 113, 0.2);
  box-shadow: none;
}
#sidebar .latest-events a figure picture {
  aspect-ratio: 1/0.6;
  min-height: auto;
  height: auto;
}
#sidebar .latest-events a .content {
  padding-bottom: 80px;
}
#sidebar .latest-events a .content .content-bottom {
  padding-right: 0;
}
#sidebar .latest-events a .content span.more {
  right: 20px;
  bottom: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}

:root {
  --frame-max: 1800px;
  --frame-max-extended: 84vw;
  --frame-pad: 5vw;
  --frame-pad-extended: 8vw;
  --slide-gap: 14px;
  --frame-side: max(var(--frame-pad), calc((100vw - var(--frame-max)) / 2));
  --frame-extended-side: max(var(--frame-pad-extended), calc((100vw - var(--frame-max-extended)) / 2));
}

.latest-news,
.extended-carousel {
  background-color: var(--cw);
  padding: 40px 5vw;
  position: relative;
  overflow: hidden;
}
.latest-news .title,
.extended-carousel .title {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 20px 20px 0 0;
  background-color: var(--b1);
  color: var(--cw);
  font-family: var(--futura-pt-bold);
  line-height: 1.3;
  margin-bottom: 10px;
  position: relative;
}
.latest-news .title a.more,
.extended-carousel .title a.more {
  position: absolute;
  right: -110px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--cw);
  height: 50px;
  width: 130px;
  text-align: center;
  border-radius: 25px;
  color: var(--b1);
  display: none;
  border-color: var(--b4);
}
.latest-news a.news-listing,
.latest-news .carousel-item,
.extended-carousel a.news-listing,
.extended-carousel .carousel-item {
  display: flex;
  width: 100%;
  flex: 0 0 100%;
  flex-direction: column;
  border-radius: 5px 5px 5px 5px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(0, 52, 113, 0.2);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
}
.latest-news a.news-listing figure,
.latest-news .carousel-item figure,
.extended-carousel a.news-listing figure,
.extended-carousel .carousel-item figure {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 5px 5px 5px 50px;
}
.latest-news a.news-listing figure picture,
.latest-news .carousel-item figure picture,
.extended-carousel a.news-listing figure picture,
.extended-carousel .carousel-item figure picture {
  min-height: 220px;
  height: 55vw;
  width: 100%;
}
.latest-news a.news-listing figure img,
.latest-news .carousel-item figure img,
.extended-carousel a.news-listing figure img,
.extended-carousel .carousel-item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.latest-news a.news-listing .content,
.latest-news .carousel-item .content,
.extended-carousel a.news-listing .content,
.extended-carousel .carousel-item .content {
  padding: 30px 15px 80px 15px;
  background-color: var(--cw);
  color: var(--b1);
  border-radius: 0 0 5px 5px;
}
.latest-news a.news-listing .content .article-title,
.latest-news .carousel-item .content .article-title,
.extended-carousel a.news-listing .content .article-title,
.extended-carousel .carousel-item .content .article-title {
  font-family: var(--futura-pt-bold);
  margin-bottom: 15px;
}
.latest-news a.news-listing .content .more,
.latest-news .carousel-item .content .more,
.extended-carousel a.news-listing .content .more,
.extended-carousel .carousel-item .content .more {
  pointer-events: none;
  position: absolute;
  right: 20px;
  bottom: 20px;
  transition: opacity 200ms ease-in-out, visibility 200ms ease-in-out;
  border-color: var(--b4);
}
.latest-news a.all-news,
.extended-carousel a.all-news {
  height: 50px;
  border-radius: 25px;
  width: 130px;
  text-align: center;
  color: var(--b1);
  border-color: var(--b4);
  margin-top: 25px;
}
.latest-news .mw1800,
.extended-carousel .mw1800 {
  position: relative;
  width: min(var(--frame-max), 100vw - var(--frame-pad) * 2);
  margin-inline: auto;
}
.latest-news .carousel-bleed,
.extended-carousel .carousel-bleed {
  width: calc(100vw - var(--frame-side));
}
.latest-news .carousel-bleed .swiper-wrapper,
.extended-carousel .carousel-bleed .swiper-wrapper {
  align-items: stretch;
}
.latest-news .carousel-bleed .swiper,
.extended-carousel .carousel-bleed .swiper {
  overflow: visible;
  width: 90vw;
  max-width: var(--frame-max);
  margin-left: 0;
  margin-right: 0;
}
.latest-news .carousel-bleed .swiper-slide,
.extended-carousel .carousel-bleed .swiper-slide {
  height: auto;
  display: flex;
}
.latest-news .news-prev,
.latest-news .news-next,
.latest-news .extended-carousel-prev,
.latest-news .extended-carousel-next,
.extended-carousel .news-prev,
.extended-carousel .news-next,
.extended-carousel .extended-carousel-prev,
.extended-carousel .extended-carousel-next {
  height: 40px;
  width: 40px;
  color: var(--b1);
  position: absolute;
  bottom: 3px;
  top: auto;
  position: absolute;
  z-index: 2;
}
.latest-news .news-next,
.latest-news .extended-carousel-next,
.extended-carousel .news-next,
.extended-carousel .extended-carousel-next {
  right: -10px;
  left: auto;
}
.latest-news .news-prev,
.latest-news .extended-carousel-prev,
.extended-carousel .news-prev,
.extended-carousel .extended-carousel-prev {
  right: 30px;
  left: auto;
}

.extended-carousel .carousel-item .content p {
  line-height: 1.7;
}

.latest-news.news-list {
  overflow: visible;
}

body.page.vacancies .latest-news a.news-listing .content {
  border-radius: 5px;
  padding-top: 20px;
  padding-bottom: 60px;
}

.extended-carousel {
  padding: 40px 0 75px 0;
}
.extended-carousel.bg-teal-10 {
  background-color: rgba(0, 162, 157, 0.1);
}
.extended-carousel.bg-teal-20 {
  background-color: rgba(0, 162, 157, 0.2);
}
.extended-carousel.bg-teal-30 {
  background-color: rgba(0, 162, 157, 0.3);
}
.extended-carousel .carousel-item .content {
  color: var(--cb);
  flex: 1;
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.extended-carousel .carousel-item .content .article-title {
  color: var(--b1);
}
.extended-carousel .carousel-item .content p {
  margin-bottom: 25px;
}
.extended-carousel .carousel-item .content a.more {
  margin-top: auto;
}
.extended-carousel .title {
  width: 240px;
}
.extended-carousel .carousel-bleed {
  width: 95vw;
}
.extended-carousel .carousel-bleed .swiper {
  width: 90vw;
}
.extended-carousel .carousel-item {
  border: none;
  background-color: var(--cw);
  border-radius: 5px;
  overflow: hidden;
}
.extended-carousel .carousel-item figure {
  border-bottom-right-radius: 0;
}
.extended-carousel .carousel-item .content .more {
  position: relative;
  right: auto;
  bottom: auto;
  margin-top: 25px;
  pointer-events: auto;
  background-color: var(--b1);
  color: var(--cw);
}
.extended-carousel .extended-carousel-prev,
.extended-carousel .extended-carousel-next {
  bottom: 15px;
}
.extended-carousel .extended-carousel-prev {
  right: calc(5vw - 10px + 40px);
}
.extended-carousel .extended-carousel-next {
  right: calc(5vw - 10px);
}

#sidebar .latest-news {
  padding: 0;
  margin-top: 40px;
  display: none;
  max-width: 100%;
}
#sidebar .latest-news .sidebar-news-title {
  color: var(--b1);
  font-family: var(--futura-pt-bold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2rem;
}
#sidebar .latest-news .sidebar-news-listing {
  margin-top: 30px;
}
#sidebar .latest-news a.news-listing {
  box-shadow: none;
}
#sidebar .latest-news a.news-listing .content .more {
  padding-top: 10px;
  padding-bottom: 10px;
}

.latest-news.news-list {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 15px 0;
  padding: 0;
  margin-top: 30px;
  margin-bottom: 30px;
}
.latest-news.news-list a {
  position: relative;
}
.latest-news.news-list > a.news-listing {
  width: auto;
  flex: initial;
  min-width: 0;
}
.latest-news.news-list > a.news-listing .studying {
  font-family: var(--futura-pt-bold);
  margin-top: -15px;
  margin-bottom: 15px;
}
.latest-news.news-list > a.news-listing .job-spec {
  padding: 5px 0;
  color: var(--cb);
}
.latest-news.news-list > a.news-listing .intro {
  margin-top: 20px;
  color: var(--cb);
}
.latest-news.news-list > * {
  min-width: 0;
}

.tab-content .latest-news.news-list {
  margin-top: 0;
  margin-bottom: 30px;
}

body.student-testimonials-template .latest-news a.news-listing figure picture {
  aspect-ratio: 1/0.8;
  height: auto;
}

:root {
  --scroll-width: 0px;
  --scroll-duration: 80s;
}

@keyframes scroll-logos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--scroll-width)));
  }
}
.logo-scroller {
  clear: both;
  position: relative;
  z-index: 2;
  padding: 35px 0;
}
.logo-scroller .ticker {
  width: calc(90vw - 50px);
  max-width: 1800px;
  margin: 0 auto 0 5vw;
  padding-right: calc(5vw + 50px);
  overflow: hidden;
}
.logo-scroller .ticker .logo-track {
  display: flex;
  width: max-content;
  animation-play-state: paused;
  animation: scroll-logos 30s linear infinite;
  align-items: center;
}
.logo-scroller .ticker .logo-track.playing {
  animation: scroll-logos var(--scroll-duration) linear infinite;
}
.logo-scroller .ticker .logo-track div {
  flex-shrink: 0;
  margin-right: 45px;
}
.logo-scroller .pausePlay-carousel {
  position: absolute;
  z-index: 1000;
  height: 30px;
  width: 30px;
  right: 5vw;
  top: 50%;
  transform: translateY(-50%);
}
.logo-scroller .pausePlay-carousel:before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: var(--cb);
}
.logo-scroller .pausePlay-carousel button {
  position: absolute;
  height: 30px;
  width: 30px;
  left: 0;
  top: 0px;
  padding: 0;
  appearance: none;
  border-radius: 50%;
  border-width: 1px;
  border-style: solid;
  background: none;
  cursor: pointer;
}
.logo-scroller .pausePlay-carousel i {
  line-height: 28px;
  width: 28px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
}
.logo-scroller button.play-carousel {
  display: none;
}

.article-set {
  padding-top: 40px;
  padding-bottom: 40px;
}
.article-set.bg-teal-10 {
  background-color: rgba(0, 162, 157, 0.1);
}
.article-set.bg-teal-20 {
  background-color: rgba(0, 162, 157, 0.2);
}
.article-set.bg-teal-30 {
  background-color: rgba(0, 162, 157, 0.3);
}
.article-set .title {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 20px 20px 0 0;
  background-color: var(--b1);
  color: var(--cw);
  font-family: var(--futura-pt-bold);
  line-height: 1.3;
  margin-bottom: 10px;
}
.article-set .article-listing {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px 0;
}
.article-set .article-listing a {
  overflow: hidden;
}
.article-set .article-listing a figure {
  border-radius: 5px 5px 5px 50px;
  overflow: hidden;
}
.article-set .article-listing a figure picture {
  min-height: 220px;
  height: 55vw;
  width: 100%;
}
.article-set .article-listing a figure picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-set .article-listing a .content {
  padding: 25px 0 10px 0;
}
.article-set .article-listing a .content .article-title {
  font-family: var(--futura-pt-bold);
  color: var(--b1);
  margin-bottom: 15px;
}
.article-set .article-listing a .content .intro {
  line-height: 1.7;
  margin-bottom: 20px;
}
.article-set .article-listing a .content .more {
  margin-top: auto;
  background-color: transparent;
  border-color: var(--b4);
  color: var(--b1);
}

@media (min-width: 550px) {
  a.image-link-block {
    aspect-ratio: 1/0.8;
  }
}
@media (min-width: 768px) {
  a.image-link-block {
    aspect-ratio: 1/0.9;
  }
  .advert .image,
  .student-testimonials .testimonial .image {
    min-height: 400px;
    height: 60vw;
  }
  .student-testimonials {
    padding-top: 60px;
  }
  .student-testimonials .title {
    width: auto;
  }
  .student-testimonials .testimonial {
    border-radius: 5px 5px 5px 50px;
    flex-direction: unset;
  }
  .student-testimonials .testimonial.swiper-slide {
    display: flex;
    align-items: stretch;
    height: auto;
  }
  .student-testimonials .testimonial.swiper-slide .image,
  .student-testimonials .testimonial.swiper-slide .content {
    width: 50%;
  }
  .student-testimonials .testimonial.swiper-slide .image {
    height: 100%;
  }
  .student-testimonials .testimonial.swiper-slide .image picture {
    height: 100%;
  }
  .student-testimonials .testimonial.swiper-slide .content {
    padding: 40px 30px 100px 30px;
  }
  body.student-testimonials-template .student-testimonials .testimonial .image {
    height: auto;
    min-height: auto;
  }
  body.student-testimonials-template .student-testimonials .testimonial .image picture {
    height: 100%;
  }
  .latest-events .event-listing {
    flex-direction: row;
    gap: 0 14px;
  }
  .latest-events .event-listing a {
    flex: 0 0 calc(50% - 7px);
    max-width: calc(50% - 7px);
    background-color: var(--cw);
  }
  .latest-events .event-listing a figure picture {
    aspect-ratio: 1/0.6;
    height: auto;
  }
  .latest-events,
  .latest-news {
    padding-top: 60px;
    padding-bottom: 30px;
  }
  .extended-carousel {
    padding-top: 60px;
  }
  .latest-news a.news-listing figure picture,
  .latest-news .carousel-item figure picture,
  .extended-carousel a.news-listing figure picture,
  .extended-carousel .carousel-item figure picture {
    aspect-ratio: 1/0.6;
    height: auto;
  }
  .latest-news .title,
  .extended-carousel .title {
    width: auto;
  }
  .latest-news.less-padding-top {
    padding-top: 40px;
  }
  .logo-scroller .ticker .logo-track div {
    margin-right: 60px;
  }
  .article-set {
    padding-top: 60px;
  }
  .article-set .article-listing {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .article-set .article-listing a figure picture {
    height: auto;
    aspect-ratio: 1/0.6;
  }
  .latest-news.news-list,
  .latest-events.event-list__custom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .latest-events.event-list__custom a figure picture {
    height: auto;
    aspect-ratio: 1/0.6;
  }
  .share {
    flex-direction: row;
    gap: 0 15px;
  }
  .share .social-icons {
    gap: 20px;
  }
  body.student-testimonials-template .latest-news a.news-listing figure picture {
    aspect-ratio: 1/0.9;
  }
}
@media (min-width: 800px) {
  .advert.image-curve .content {
    padding-top: 55px;
  }
}
@media (min-width: 1024px) {
  a.more,
  span.more {
    padding: 13px 20px;
  }
  .course-search {
    max-width: calc(100% - 5vw - 5vw - 200px);
    margin-top: -88px;
    position: relative;
    z-index: 2;
    border-radius: 30px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.45);
  }
  .advert .flex {
    flex-direction: row;
  }
  .advert .content {
    flex: 0 0 55%;
    width: 55%;
    margin-top: unset;
    border-radius: 0 75px 0 0;
    padding: 75px calc(5vw + 7px) 60px 5vw;
  }
  .advert .content:before {
    border-radius: 0 68px 0 0;
  }
  .advert .image {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: calc(45% + 75px);
    z-index: -1;
  }
  .advert .carousel-prev, .advert .carousel-next {
    bottom: 25px;
  }
  .advert.swiper .content {
    padding-bottom: 80px;
  }
  .advert.image-curve .content {
    width: 50%;
  }
  .advert.image-curve .image {
    z-index: 1;
    width: 50%;
    border-radius: 0 0 0 75px;
  }
  .advert.image-curve .image picture {
    border-radius: 0 0 0 68px;
  }
  .advert .advert-pausePlay {
    left: calc(55% - 5vw);
    transform: translateX(-50%);
    right: auto;
    bottom: 25px;
  }
  .student-testimonials {
    padding-top: 80px;
  }
  .student-testimonials .testimonial {
    border-radius: 5px 50px 5px 5px;
  }
  .student-testimonials .testimonial .image .content-overlay .arrow {
    width: 90px;
  }
  .student-testimonials .testimonial.swiper-slide {
    flex-direction: column;
  }
  .student-testimonials .testimonial.swiper-slide .image,
  .student-testimonials .testimonial.swiper-slide .content {
    width: 100%;
  }
  .student-testimonials .testimonial.swiper-slide .image {
    height: 40vw;
  }
  .pathways-testimonial .student-testimonials .testimonial.swiper-slide {
    flex-direction: row;
  }
  .pathways-testimonial .student-testimonials .testimonial.swiper-slide .image,
  .pathways-testimonial .student-testimonials .testimonial.swiper-slide .content {
    width: 50%;
  }
  .pathways-testimonial .student-testimonials .testimonial.swiper-slide .image {
    height: 100%;
  }
  .pathways-testimonial .student-testimonials .testimonial {
    border-radius: 5px 5px 5px 50px;
  }
  body.student-testimonials-template .student-testimonials {
    gap: 14px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  body.student-testimonials-template .student-testimonials .testimonial {
    flex: 0 0 calc(50% - 7px);
    flex-direction: column;
  }
  body.student-testimonials-template .student-testimonials .testimonial .image {
    min-height: 400px;
    height: 50vw;
    height: clamp(400px, 50vw, 500px);
  }
  .latest-events {
    padding-top: 80px;
    padding-bottom: 75px;
  }
  .latest-events .title {
    padding: 10px 40px;
  }
  .latest-events .title a.more {
    display: block;
  }
  .latest-events .event-listing {
    flex-direction: row;
    gap: 0 14px;
  }
  .latest-events .event-listing a {
    flex: 0 0 calc(50% - 7px);
    background-color: var(--cw);
  }
  .latest-events .event-listing a figure picture {
    aspect-ratio: 1/0.6;
    height: auto;
  }
  .latest-events .event-listing a .content {
    height: auto;
  }
  .latest-events .event-listing a .content .event-title {
    margin: 20px 0 30px 0;
  }
  .latest-events a.all-events {
    display: none;
  }
  .latest-news,
  .extended-carousel {
    padding-top: 80px;
    padding-bottom: 75px;
    margin-bottom: 40px;
  }
  .latest-news .title,
  .extended-carousel .title {
    padding: 10px 40px;
  }
  .latest-news .title a.more,
  .extended-carousel .title a.more {
    display: block;
  }
  .latest-news a.news-listing figure picture,
  .latest-news .carousel-item figure picture,
  .extended-carousel a.news-listing figure picture,
  .extended-carousel .carousel-item figure picture {
    aspect-ratio: 1/0.6;
    height: auto;
  }
  .latest-news a.all-news,
  .extended-carousel a.all-news {
    display: none;
  }
  .latest-news .news-prev, .latest-news .news-next,
  .extended-carousel .news-prev,
  .extended-carousel .news-next {
    bottom: -70px;
  }
  .extended-carousel.with-background {
    margin-bottom: 0;
  }
  .extended-carousel .carousel-item .content .article-title {
    line-height: 1.3;
  }
  .latest-news.less-padding-top {
    padding-top: 0px;
  }
  .logo-scroller .ticker .logo-track div {
    margin-right: 80px;
  }
  #sidebar .course-search,
  #sidebar .latest-news,
  #sidebar .latest-events {
    display: block;
  }
  .article-set {
    padding-top: 80px;
  }
  .latest-news.news-list,
  .latest-events.event-list__custom {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .share {
    margin-top: 50px;
  }
}
@media (min-width: 1200px) {
  .course-search {
    padding: 25px 5vw 30px 5vw;
    border-radius: 50px;
  }
  .course-search .flex.top-set {
    flex-direction: row;
    justify-content: space-between;
  }
  .course-search .tabs {
    flex: 0 0 300px;
    margin-top: 0;
  }
  .course-search .course-search form,
  .course-search #course-search-tab-1 form {
    height: 70px;
    background-color: var(--cw);
    border-radius: 35px;
    position: relative;
    display: flex;
    margin-bottom: 14px;
  }
  .course-search .course-search form:after,
  .course-search #course-search-tab-1 form:after {
    content: "";
    top: 10px;
    bottom: 10px;
    height: auto;
    width: 1px;
    position: absolute;
    left: calc(100% - 420px);
    background-color: rgb(217, 217, 217);
  }
  .course-search .courseSearch input.searchInput {
    background: none;
    height: 60px;
    width: calc(100% - 480px);
    padding: 5px 30px;
    position: relative;
  }
  .course-search .courseSearch .filterList {
    height: 70px;
    width: 353px;
    margin-top: 0;
  }
  .course-search .courseSearch .filterList .list legend button {
    height: 70px;
  }
  .course-search .courseSearch .filterList .list.type {
    border: none;
    position: relative;
  }
  .course-search .courseSearch .filterList .list.type:after {
    content: "";
    top: 10px;
    bottom: 10px;
    height: auto;
    width: 1px;
    position: absolute;
    right: 0;
    background-color: rgb(217, 217, 217);
  }
  .course-search .courseSearch button.submitBTN {
    height: 60px;
    width: 60px;
    border-radius: 30px;
    padding: 0;
    margin: 5px 0 0 0;
  }
  .course-search .courseSearch button.submitBTN i {
    height: 60px;
    width: 60px;
    border-radius: 30px;
    background-color: var(--b4);
  }
  .course-search .courseSearch button.submitBTN span {
    display: none;
  }
  .course-search .careerSearch form {
    display: flex;
    gap: 0 14px;
    margin-bottom: 14px;
  }
  .course-search .careerSearch .filterList {
    margin: 0;
    height: 70px;
    flex: 0 0 calc(50% - 7px);
    border-radius: 35px;
  }
  .course-search .careerSearch .filterList .list legend button {
    height: 70px;
    padding: 0 35px 0 30px;
  }
  .course-search .careerSearch .filterList .list legend button i {
    height: 60px;
    width: 60px;
  }
  .course-search .careerSearch .filterList .list legend button[aria-expanded=true]:before {
    height: 35px;
  }
  .course-search .careerSearch .filterList .list .accordion-panel {
    padding: 5px 30px 12px 30px;
  }
  .course-search .careerSearch .input-holder {
    height: 70px;
    flex: 0 0 calc(50% - 7px);
    margin-bottom: 0;
  }
  .course-search .careerSearch .input-holder .submitBTN,
  .course-search .careerSearch .input-holder .submitBTN i {
    height: 60px;
    width: 60px;
  }
  .course-search .careerSearch input.searchInput {
    height: 60px;
    border-radius: 35px;
    width: calc(100% - 47px);
    padding: 5px 17px 5px 30px;
  }
  .course-search .interestSearch .filterList {
    margin-bottom: 14px;
    margin-top: 0;
    height: 70px;
    border-radius: 35px;
  }
  .course-search .interestSearch .filterList .list legend button {
    height: 70px;
    padding: 0 35px 0 30px;
  }
  .course-search .interestSearch .filterList .list legend button i {
    height: 60px;
    width: 60px;
  }
  .course-search .interestSearch .filterList .list legend button[aria-expanded=true]:before {
    height: 35px;
  }
  .course-search .interestSearch .filterList .list .accordion-panel {
    padding: 5px 30px 12px 30px;
  }
  body.error-404 .course-search,
  body.search-results .course-search {
    height: 98px;
    padding: 14px;
    border-radius: 50px;
    margin-bottom: 35px;
  }
  body.error-404 .course-search #course-search-tab-1 form,
  body.search-results .course-search #course-search-tab-1 form {
    border-radius: 40px;
  }
  body.error-404 .course-search input.searchInput,
  body.search-results .course-search input.searchInput {
    padding: 5px 30px;
    width: calc(100% - 124px);
  }
  body.error-404 .course-search button.submitBTN,
  body.search-results .course-search button.submitBTN {
    height: 60px;
    width: 60px;
  }
  .advert .content {
    flex: 0 0 50%;
    width: 50%;
    border-radius: 0 125px 0 0;
    padding: 100px calc(5vw + 7px) 100px 5vw;
  }
  .advert .content:before {
    border-radius: 0 110px 0 0;
    top: 15px;
    right: 15px;
  }
  .advert .image {
    width: calc(50% + 125px);
  }
  .advert.image-curve .content {
    padding-top: 75px;
  }
  .advert.image-curve .image {
    padding-left: 15px;
    padding-bottom: 15px;
    border-radius: 0 0 0 125px;
  }
  .advert.image-curve .image picture {
    border-radius: 0 0 0 118px;
  }
  .advert .advert-pausePlay {
    left: calc(50% - 5vw);
  }
  .student-testimonials .title {
    padding: 15px 35px;
  }
  .student-testimonials .testimonial.swiper-slide .image {
    height: 35vw;
  }
  .student-testimonials .testimonial .image .content-overlay {
    padding: 25px;
  }
  .student-testimonials .testimonial .image .content-overlay .branding {
    left: 25px;
    top: 25px;
  }
  .pathways-testimonial .student-testimonials .testimonial.swiper-slide {
    flex-direction: column;
  }
  .pathways-testimonial .student-testimonials .testimonial.swiper-slide .image,
  .pathways-testimonial .student-testimonials .testimonial.swiper-slide .content {
    width: 100%;
  }
  .pathways-testimonial .student-testimonials .testimonial.swiper-slide .image {
    height: 40vw;
  }
  .pathways-testimonial .student-testimonials .testimonial {
    border-radius: 5px 50px 5px 5px;
  }
  .latest-events .title,
  .latest-news .title,
  .extended-carousel .title {
    padding: 15px 55px;
  }
  .latest-news.news-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .latest-events.event-list__custom {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .tab-content .latest-news.news-list {
    margin-bottom: 50px;
  }
}
@media (min-width: 1400px) {
  .page-width-small {
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .course-search {
    margin-top: -140px;
    border-radius: 140px;
    padding: 30px 80px 30px 80px;
  }
  a.image-link-block {
    aspect-ratio: 1/0.8;
  }
  .advert .content {
    border-radius: 0 250px 0 0;
    padding: 130px calc(5vw + 7px) 100px 5vw;
  }
  .advert .content:before {
    border-radius: 0 243px 0 0;
  }
  .advert .image {
    width: calc(50% + 250px);
  }
  .advert.swiper .content {
    padding-bottom: 100px;
  }
  .advert.image-curve .image {
    border-radius: 0 0 0 250px;
  }
  .advert.image-curve .image picture {
    border-radius: 0 0 0 243px;
  }
  .logo-scroller .ticker .logo-track div {
    margin-right: 100px;
  }
  .article-set .article-listing {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
}
@media (min-width: 1500px) {
  .course-search {
    max-width: 1160px;
  }
  .extended-carousel .carousel-item {
    flex-direction: row;
    background-color: transparent;
  }
  .extended-carousel .carousel-item figure {
    border-top-right-radius: 0;
    width: 45%;
    flex: 0 0 45%;
  }
  .extended-carousel .carousel-item figure picture {
    height: 100%;
    aspect-ratio: unset;
  }
  .extended-carousel .carousel-item .content {
    padding: 55px 30px 70px 30px;
    border-radius: 0 5px 5px 0;
  }
}
@media (min-width: 1600px) {
  a.image-link-block, a.image-link-block figure {
    border-radius: 10px 10px 10px 100px;
  }
  a.image-link-block .link-text {
    border-radius: 0 0 10px 100px;
    padding: 25px 60px;
    line-height: 1.3;
  }
  a.image-link-block .link-text span.view {
    left: 60px;
  }
  .course-search {
    margin-top: -157px;
  }
  a.image-link-block {
    aspect-ratio: unset;
    height: 420px;
  }
  .mw1800 {
    width: 90vw;
    margin: 0 auto;
    max-width: 1800px;
  }
  .advert .content {
    border-radius: 0 350px 0 0;
    padding: 150px calc(5vw + 20px) 100px 5vw;
  }
  .advert .content:before {
    border-radius: 0 330px 0 0;
    right: 20px;
    top: 20px;
  }
  .advert .content h3 {
    margin: 20px 0 25px 0;
  }
  .advert .image {
    width: calc(50% + 350px);
  }
  .advert.swiper .content {
    padding-bottom: 160px;
  }
  .advert.image-curve .content {
    padding-top: 100px;
  }
  .advert.image-curve .image {
    padding-left: 20px;
    padding-bottom: 20px;
    border-radius: 0 0 0 350px;
  }
  .advert.image-curve .image picture {
    border-radius: 0 0 0 343px;
  }
  .advert .carousel-prev, .advert .carousel-next, .advert .advert-pausePlay {
    bottom: 35px;
  }
  .student-testimonials {
    padding-top: 100px;
  }
  .student-testimonials .title {
    margin-left: 100px;
  }
  .student-testimonials .testimonial {
    border-radius: 10px 10px 10px 100px;
    flex-direction: unset;
  }
  .student-testimonials .testimonial .image .content-overlay {
    padding-bottom: 35px;
  }
  .student-testimonials .testimonial .image .content-overlay .arrow {
    width: 105px;
  }
  .student-testimonials .testimonial.swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
    flex-direction: row;
  }
  .student-testimonials .testimonial.swiper-slide .image,
  .student-testimonials .testimonial.swiper-slide .content {
    width: 50%;
    flex: 0 0 50%;
  }
  .student-testimonials .testimonial.swiper-slide .image {
    align-self: stretch;
    height: auto;
    min-height: 0;
  }
  .student-testimonials .testimonial.swiper-slide .image picture,
  .student-testimonials .testimonial.swiper-slide .image video,
  .student-testimonials .testimonial.swiper-slide .image iframe,
  .student-testimonials .testimonial.swiper-slide .image img {
    height: 100%;
  }
  .student-testimonials .testimonial-prev, .student-testimonials .testimonial-next {
    top: 135px;
    bottom: auto;
  }
  .student-testimonials .testimonial-next {
    right: calc(8vw - 10px + 100px);
  }
  .student-testimonials .testimonial-prev {
    right: calc(8vw - 10px + 140px);
  }
  .pathways-testimonial .student-testimonials .testimonial.swiper-slide {
    flex-direction: row;
  }
  .pathways-testimonial .student-testimonials .testimonial.swiper-slide .image,
  .pathways-testimonial .student-testimonials .testimonial.swiper-slide .content {
    width: 50%;
  }
  .pathways-testimonial .student-testimonials .testimonial.swiper-slide .image {
    height: 100%;
  }
  .pathways-testimonial .student-testimonials .testimonial {
    border-radius: 10px 10px 10px 100px;
  }
  .pathways-testimonial .student-testimonials .testimonial .image .content-overlay {
    padding-bottom: 25px;
  }
  .pathways-testimonial .student-testimonials .testimonial .image .content-overlay .writing-type {
    margin-top: unset;
  }
  .pathways-testimonial .student-testimonials .testimonial .image .content-overlay .arrow {
    width: 105px;
  }
  body.student-testimonials-template .student-testimonials .testimonial {
    flex-direction: unset;
  }
  .latest-events {
    padding-top: 100px;
    padding-bottom: 110px;
  }
  .latest-events a {
    border-radius: 10px 100px 10px 10px;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.25);
  }
  .latest-events a figure {
    border-radius: 10px 100px 0 0;
  }
  .latest-events a .content {
    border-radius: 0 0 10px 10px;
    padding: 30px 30px 40px 30px;
  }
  .latest-events .title {
    margin-left: 40px;
  }
  .latest-events .event-listing a figure picture {
    aspect-ratio: 1/0.5;
    max-height: 400px;
  }
  .latest-news,
  .extended-carousel {
    padding-top: 100px;
    margin-bottom: 0;
  }
  .latest-news .title,
  .extended-carousel .title {
    margin-left: 40px;
  }
  .latest-news a.news-listing,
  .extended-carousel a.news-listing {
    border-radius: 10px;
  }
  .latest-news a.news-listing figure,
  .extended-carousel a.news-listing figure {
    border-radius: 10px 10px 0 100px;
  }
  .latest-news a.news-listing .content,
  .extended-carousel a.news-listing .content {
    border-radius: 0 0 10px 10px;
    padding: 30px 20px 100px 20px;
  }
  .latest-news .news-listing a picture,
  .extended-carousel .news-listing a picture {
    aspect-ratio: 1/0.5;
    max-height: 400px;
  }
  .latest-news .news-prev, .latest-news .news-next,
  .extended-carousel .news-prev,
  .extended-carousel .news-next {
    top: 30px;
    bottom: auto;
  }
  body.page.vacancies .latest-news a.news-listing .content {
    border-radius: 10px;
  }
  .extended-carousel .title {
    margin-left: 100px;
  }
  .extended-carousel .carousel-item {
    border-radius: 10px 10px 10px 100px;
  }
  .extended-carousel .carousel-item .content {
    border-radius: 0 10px 10px 0;
    padding: 60px 30px 80px 30px;
  }
  .extended-carousel .extended-carousel-prev, .extended-carousel .extended-carousel-next {
    top: 135px;
    bottom: auto;
  }
  .extended-carousel .extended-carousel-prev {
    right: calc(8vw - 10px + 140px);
  }
  .extended-carousel .extended-carousel-next {
    right: calc(8vw - 10px + 100px);
  }
  .logo-scroller .ticker .logo-track div {
    margin-right: 125px;
  }
  .article-set {
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .article-set .title {
    margin-left: 40px;
  }
  .article-set .article-listing a figure {
    border-radius: 10px 10px 10px 100px;
  }
  .latest-news.news-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 70px;
    margin-bottom: 70px;
  }
  .tab-content .latest-news.news-list {
    margin-bottom: 70px;
  }
  body.student-testimonials-template .student-testimonials .testimonial .image {
    min-height: auto;
    height: auto;
  }
}
@media (min-width: 1900px) {
  .page-width,
  .page-width-small {
    padding-left: 8vw;
    padding-right: 8vw;
  }
  body.campaign-page .mainContent.page-width {
    padding-left: 15vw;
    padding-right: 15vw;
  }
  .advert .content {
    padding-left: 8vw;
    padding-right: 8vw;
  }
  .advert.swiper-horizontal .carousel-prev {
    left: calc(8vw - 10px);
  }
  .advert.swiper-horizontal .carousel-next {
    left: calc(8vw - 10px + 40px);
  }
  .extended-carousel .carousel-bleed {
    width: 92vw;
  }
  .extended-carousel .carousel-bleed .swiper {
    max-width: 84vw;
  }
  .latest-events.event-list__custom {
    gap: 14px;
  }
  .latest-events.event-list__custom a figure picture {
    aspect-ratio: 1/0.5;
  }
}
@media (min-width: 2000px) {
  .logo-scroller .ticker {
    margin: 0 auto;
    position: relative;
  }
  .logo-scroller .ticker:after {
    content: "";
    position: absolute;
    right: 0;
    width: 70px;
    top: 0;
    height: 100%;
    background-color: var(--cw);
  }
  .logo-scroller .pausePlay-carousel {
    right: calc(50% - 900px);
    height: 40px;
    width: 40px;
  }
  .logo-scroller .pausePlay-carousel button {
    height: 40px;
    width: 40px;
  }
  .logo-scroller .pausePlay-carousel button i {
    width: 40px;
    line-height: 40px;
  }
}
@media (any-hover: hover) and (any-pointer: fine) {
  .student-testimonials .testimonial .content .more,
  .latest-events a .content span.more,
  .latest-news a.news-listing .content .more,
  .article-set .article-listing a .content .more {
    opacity: 0;
    visibility: hidden;
  }
  .student-testimonials .testimonial:hover .content .more,
  .article-set .article-listing a:hover .content .more {
    opacity: 1;
    visibility: visible;
  }
  a.more,
  .course-search .courseSearch button.submitBTN i,
  .course-search .careerSearch .input-holder .submitBTN i,
  .course-search .tabs button,
  .course-search .careerSearch .filterList .list legend button i,
  .course-search .interestSearch .filterList .list legend button i,
  .latest-events .title a.more,
  .student-testimonials .testimonial .content .more,
  .extended-carousel .carousel-item .content .more,
  .share .social-icons a {
    transition: background-color 200ms ease-in-out, color 100ms ease-in-out;
  }
  #sidebar .course-search .courseSearch button.submitBTN:hover i {
    background-color: var(--b1);
  }
  a.more:hover.hover-bg-teal {
    background-color: var(--b4);
  }
  a.more:hover.hover-txt-black {
    color: var(--cb);
  }
  a.more:hover.hover-txt-teal {
    color: var(--b4);
  }
  .advert .carousel-prev, .advert .carousel-next, .advert .advert-pausePlay, .extended-carousel .extended-carousel-prev, .extended-carousel .extended-carousel-next {
    transition: color 200ms ease-in-out;
  }
  .advert .carousel-prev:hover, .advert .carousel-next:hover, .advert .advert-pausePlay:hover, .extended-carousel .extended-carousel-prev:hover, .extended-carousel .extended-carousel-next:hover {
    color: var(--b4);
  }
  a.image-link-block figure img {
    transition: transform 300ms ease-in-out;
  }
  a.image-link-block figure .branding {
    transition: opacity 300ms ease-in-out;
  }
  a.image-link-block .link-text span {
    transition: opacity 300ms ease-in-out, visibility 200ms ease-in-out;
  }
  a.image-link-block:hover figure > img {
    transform: scale(1.1);
  }
  a.image-link-block:hover figure .branding {
    opacity: 0;
  }
  a.image-link-block:hover .link-text {
    max-height: 88px;
  }
  a.image-link-block:hover .link-text span.default {
    opacity: 0;
    visibility: hidden;
  }
  a.image-link-block:hover .link-text span.view {
    opacity: 1;
    visibility: visible;
  }
  .student-testimonials .testimonial.swiper-slide .content span.more {
    transition: opacity 200ms ease-in-out, visibility 200ms ease-in-out;
  }
  .student-testimonials .testimonial.swiper-slide .content .name-subject,
  .student-testimonials .testimonial.swiper-slide .content .college {
    padding-right: 160px;
  }
  .student-testimonials .testimonial .content .more:hover {
    background-color: var(--b4);
    color: var(--cb);
  }
  .student-testimonials .testimonial .image button.pause-video {
    transition: color 200ms ease-in-out;
  }
  .student-testimonials .testimonial .image button.pause-video:hover {
    color: var(--b4);
  }
  body.student-testimonials-template .student-testimonials .testimonial {
    transition: box-shadow 200ms ease-in-out;
  }
  body.student-testimonials-template .student-testimonials .testimonial:hover {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
  }
  .latest-events a {
    transition: box-shadow 200ms ease-in-out;
  }
  .latest-events a figure img {
    transition: transform 200ms ease-in-out;
  }
  .latest-events a .content span.more {
    transition: opacity 200ms ease-in-out, visibilty 200ms ease-in-out;
  }
  .latest-events a:hover {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
  }
  .latest-events a:hover figure img {
    transform: scale(1.1);
  }
  .latest-events a:hover .content span.more {
    opacity: 1;
    visibility: visible;
  }
  .latest-events .title a.more:hover {
    background-color: var(--b4);
    color: var(--cb);
  }
  .latest-news a.news-listing {
    transition: box-shadow 200ms ease-in-out;
  }
  .latest-news a.news-listing figure img {
    transition: transform 200ms ease-in-out;
  }
  .latest-news a.news-listing .content {
    padding-bottom: 80px;
  }
  .latest-news a.news-listing:hover {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  }
  .latest-news a.news-listing:hover figure img {
    transform: scale(1.1);
  }
  .latest-news a.news-listing:hover .content .more {
    opacity: 1;
    visibility: visible;
  }
  .latest-news .title a.more {
    transition: background-color 200ms ease-in-out, color 100ms ease-in-out;
  }
  .latest-news .title a.more:hover {
    background-color: var(--b4);
    color: var(--cb);
  }
  .extended-carousel .carousel-item .content .more:hover {
    background-color: var(--b4);
    color: var(--cb);
  }
  .student-testimonials .testimonial-prev, .student-testimonials .testimonial-next, .latest-news .news-prev, .latest-news .news-next, .extended-carousel .news-prev, .extended-carousel .news-next {
    transition: color 200ms ease;
  }
  .student-testimonials .testimonial-prev:hover, .student-testimonials .testimonial-next:hover, .latest-news .news-prev:hover, .latest-news .news-next:hover, .extended-carousel .news-prev:hover, .extended-carousel .news-next:hover {
    color: var(--b4);
  }
  .logo-scroller .pausePlay-carousel button {
    transition: background-color 200ms ease-in-out, color 100ms ease-in-out;
  }
  .logo-scroller .pausePlay-carousel button:hover {
    background-color: var(--b4);
  }
  .course-search .courseSearch button.submitBTN:hover i,
  .course-search .careerSearch .input-holder .submitBTN:hover i,
  .course-search .careerSearch .filterList .list legend button:hover i,
  .course-search .careerSearch .filterList .list legend button[aria-expanded=true] i,
  .course-search .interestSearch .filterList .list legend button:hover i,
  .course-search .interestSearch .filterList .list legend button[aria-expanded=true] i {
    background-color: var(--b1);
    color: var(--cw);
  }
  .course-search .tabs button:hover {
    background-color: var(--cw);
    color: var(--b1);
  }
  .course-search .courseSearch a.link:hover,
  .course-search .careerSearch a.link:hover,
  .course-search .interestSearch a.link:hover {
    text-decoration: none;
  }
  .latest-events a .content .content-bottom {
    padding-right: 180px;
  }
  .student-testimonials .swiper-slide.testimonial .content {
    padding-bottom: 40px;
  }
  .article-set .article-listing a .content .more {
    transition: opacity 200ms ease-in-out, visibility 200ms ease-in-out;
  }
  .article-set .article-listing a figure picture img {
    transition: transform 200ms ease-in-out;
  }
  .article-set .article-listing a:hover figure picture img {
    transform: scale(1.1);
  }
  .share .social-icons a:hover {
    background-color: var(--b1);
    color: var(--cw);
  }
}
:root {
  --futura-pt: "futura-pt", sans-serif;
  --futura-pt-bold: "futura-pt-bold", sans-serif;
  --fuzzy-bubbles: "Fuzzy Bubbles", sans-serif;
}

body,
.latest-events .title a.more,
.latest-news .title a.more,
.mainContent .content-area .flex.link-table a span i,
.mainContent #sidebar button.sidebarMenu i,
.mainContent .content-area blockquote cite,
.mainContent .content-area .accordion .accordion-item button i,
.mainContent .content-area .flex.link-table a span,
nav.sitemap ul ul li {
  font-size: 1rem;
}

a.image-link-block .link-text,
.student-testimonials .testimonial .content .name-subject,
.student-testimonials .testimonial .content .college,
footer#siteFooter .top-section .connect i,
.mainContent .content-area h5,
.mainContent .content-area h6,
.mainContent .content-area .flex.link-table a,
p.highlight.medium,
p.results,
.page-listing .page-item .title,
.course_list .course-details-title,
body.course-page .mainContent .learner-type-switcher .title {
  font-size: 1.125rem;
}

.latest-events a .content .event-title,
.latest-news a .content .article-title,
.extended-carousel .content .article-title,
footer#siteFooter .title,
.mainContent .content-area .flex.link-table a i,
.mainContent #sidebar button.sidebarMenu,
.mainContent .content-area h4,
.mainContent .content-area .accordion .accordion-item button,
.course-card .title,
.apprentice-card .title,
.course-filter .title,
.course-section .year-type,
.pathways-testimonial .flex .column p.highlight,
.latest-news a.news-listing .content .studying,
.share .title,
.tabs-select-wrap .title,
nav.sitemap li,
nav#mainMenu ul.sub-menu#submenu-colleges .first-column p,
#mainMenu a.image-link-block .link-text {
  font-size: 1.25rem;
}

.mainContent .content-area .studying-title,
.mainContent .content-area .college-name,
.course_list .course-item .detail-section a.apply,
body.course-page.cwc-course .download i.fa-file-pdf,
body.course-page .mainContent #sidebar .course_guide .title {
  font-size: 1.375rem;
}

a.image-link-block .link-text span.view i,
.tabs .title,
nav#mainMenu ul.sub-menu#submenu-colleges .first-column .title {
  font-size: 1.5rem;
}

.advert .content h3,
.mainContent .content-area h3,
.mainContent .content-area blockquote,
#sidebar .latest-news .sidebar-news-title,
#sidebar .latest-events .sidebar-events-title,
body.course-page .mainContent .content-area .overview-title {
  font-size: 1.563rem;
}

.swiper .swiper-slide .content h1,
.swiper .swiper-slide .content .h1_title_style,
.course-search .title,
.welcome h2,
.student-testimonials .title,
.latest-events .title,
.latest-news .title,
.extended-carousel .title,
.mainContent .content-area h2,
.article-set .title,
.article-set .article-listing a .content .article-title,
.not-found-course .section-title,
.pathways-testimonial .pathways .title,
.pathways-testimonial h2.section-title,
.section-404 h2,
.inspiration h2 {
  font-size: 1.875rem;
}

.mainContent .content-area h1 {
  font-size: 2.188rem;
}

.mainContent .content-area blockquote cite,
nav.sitemap ul ul li {
  font-weight: 400;
}

.writing-type,
p.highlight,
.mainContent .content-area .flex.link-table a,
.mainContent .content-area blockquote,
.mainContent .breadcrumb span,
.subjects-listing a .content,
.course-card .detail-section .detail .action,
.apprentice-card .detail-section .detail .action,
.pagination li.ellipsis, .pagination li a,
.filters .selectList select,
.filters .button-holder button,
.filters .filterList .list legend button,
.filters .selected .title,
.latest-news a.news-listing .content .studying,
.share .title,
.mainContent .content-area a.back,
p.results span, p.results button, p.results a,
.course_list .course-item .detail-section .detail .prompt,
nav.sitemap li,
.latest-news.news-list > a.news-listing .job-spec span,
.learner-type-message {
  font-weight: 700;
}

@media (min-width: 600px) {
  .student-testimonials .testimonial .image .content-overlay .writing-type {
    font-size: 1.125rem;
  }
  a.image-link-block .link-text {
    font-size: 1.25rem;
  }
}
@media (min-width: 768px) {
  .latest-events a .content .event-title,
  .latest-news a .content .article-title,
  .extended-carousel .content .article-title,
  .course-filter .title {
    font-size: 1.5rem;
  }
  .advert .content h3 {
    font-size: 1.875rem;
  }
  .welcome h2 {
    font-size: 2.375rem;
  }
  .swiper .swiper-slide .content h1,
  .swiper .swiper-slide .content .h1_title_style {
    font-size: 2.813rem;
  }
}
@media (min-width: 1024px) {
  .pathways-testimonial .student-testimonials .testimonial .image .content-overlay .writing-type {
    font-size: 1.125rem;
  }
  .swiper.swiper-horizontal .hero-prev, .swiper.swiper-horizontal .hero-next, .swiper .hero-video-pause, .swiper .hero-carousel-pause, .advert.swiper-horizontal .carousel-prev, .advert.swiper-horizontal .carousel-next, .student-testimonials .testimonial-prev, .student-testimonials .testimonial-next, .latest-news .news-prev, .latest-news .news-next, .advert .advert-pausePlay, .student-testimonials .testimonial .image button.pause-video,
  .mainContent .content-area .flex.link-table a, .extended-carousel .extended-carousel-prev, .extended-carousel .extended-carousel-next, .inspiration .course-card-prev, .inspiration .course-card-next,
  p.highlight.large,
  p.results,
  .page-listing .page-item .title,
  .course_list .course-details-title,
  .student-testimonials .testimonial .image .content-overlay .writing-type {
    font-size: 1.25rem;
  }
  p.highlight.medium,
  .cwc-homepage a.image-link-block .link-text,
  .cnwl-homepage a.image-link-block .link-text {
    font-size: 1.375rem;
  }
  a.image-link-block .link-text,
  .latest-events a .content .event-title,
  .latest-news a .content .article-title,
  .extended-carousel .content .article-title,
  footer#siteFooter .top-section .title,
  .mainContent .content-area .flex.link-table a i,
  .mainContent .content-area .accordion .accordion-item button,
  .course-section .year-type,
  .pathways-testimonial .flex .column p.highlight,
  .latest-news a.news-listing .content .studying,
  .mainContent .content-area .studying-title,
  .mainContent .content-area .college-name,
  .course_list .course-item .detail-section a.apply,
  nav.sitemap li,
  body.course-page .mainContent .learner-type-switcher .title,
  .cwc-homepage a.image-link-block .link-text span.view i,
  .cnwl-homepage a.image-link-block .link-text span.view i {
    font-size: 1.563rem;
  }
  a.image-link-block .link-text span.view i,
  .pathways-testimonial .student-testimonials .title,
  .course-filter .title,
  .tabs .title {
    font-size: 1.875rem;
  }
  .pathways-testimonial .pathways .title,
  .pathways-testimonial .student-testimonials .title {
    font-size: 2.125rem;
  }
  .welcome h2,
  .advert .content h3,
  .student-testimonials .title,
  .latest-events .title,
  .latest-news .title,
  .extended-carousel .title,
  .article-set .title,
  .mainContent .content-area h1,
  .inspiration h2,
  .not-found-course .section-title,
  .pathways-testimonial h2.section-title {
    font-size: 2.5rem;
  }
  .swiper .swiper-slide .content h1,
  .swiper .swiper-slide .content .h1_title_style {
    font-size: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .subjects-listing a .content,
  .subjects-listing.interests a .content {
    font-size: 1.125rem;
  }
}
@media (min-width: 1400px) {
  .pathways-testimonial .pathways .title,
  .pathways-testimonial .student-testimonials .title {
    font-size: 2.5rem;
  }
}
@media (min-width: 1600px) {
  .swiper .swiper-slide .content p,
  .welcome p,
  .course-section .year-type-intro,
  .pathways-testimonial .column.career-intro p,
  p.highlight,
  .advert .content .college-name {
    font-size: 1.125rem;
  }
  .mainContent .content-area h5,
  .subjects-listing a .content {
    font-size: 1.25rem;
  }
  .student-testimonials .testimonial .image .content-overlay .writing-type {
    font-size: 1.375rem;
  }
  .mainContent .content-area h4,
  .course-card .title,
  p.highlight.medium,
  .share .title,
  body.course-page .mainContent #sidebar .course_guide .title,
  .course_list .course-details-title,
  .cwc-homepage a.image-link-block .link-text,
  .cnwl-homepage a.image-link-block .link-text {
    font-size: 1.563rem;
  }
  .swiper.swiper-horizontal .hero-prev, .swiper.swiper-horizontal .hero-next, .swiper .hero-video-pause, .swiper .hero-carousel-pause, .advert.swiper-horizontal .carousel-prev, .advert.swiper-horizontal .carousel-next, .student-testimonials .testimonial-prev, .student-testimonials .testimonial-next, .latest-news .news-prev, .latest-news .news-next, .advert .advert-pausePlay, .student-testimonials .testimonial .image button.pause-video,
  .extended-carousel .extended-carousel-prev, .extended-carousel .extended-carousel-next, .inspiration .course-card-prev, .inspiration .course-card-next,
  nav#mainMenu ul.sub-menu#submenu-colleges .first-column .title {
    font-size: 1.75rem;
  }
  .mainContent .content-area h3,
  .extended-carousel .content .article-title,
  p.highlight.large,
  .course-section .year-type,
  .mainContent .content-area .studying-title,
  .mainContent .content-area .college-name,
  nav.sitemap li,
  .cwc-homepage a.image-link-block .link-text span.view i,
  .cnwl-homepage a.image-link-block .link-text span.view i {
    font-size: 1.875rem;
  }
  .mainContent .content-area h2,
  .section-404 h2 {
    font-size: 2.5rem;
  }
  .welcome h2,
  .advert .content h3,
  .student-testimonials .title,
  .latest-events .title,
  .latest-news .title,
  .extended-carousel .title,
  .article-set .title,
  .mainContent .content-area h1,
  .inspiration h2,
  .not-found-course .section-title,
  .pathways-testimonial .pathways .title,
  .pathways-testimonial .student-testimonials .title {
    font-size: 3.125rem;
  }
  .swiper .swiper-slide .content h1,
  .swiper .swiper-slide .content .h1_title_style {
    font-size: 5rem;
  }
}
@media (min-width: 1800px) {
  .pathways-testimonial .student-testimonials .testimonial .image .content-overlay .writing-type {
    font-size: 1.25rem;
  }
  #mainMenu a.image-link-block .link-text {
    font-size: 1.562rem;
  }
}
.flex {
  display: flex;
}
.flex.justify-center {
  justify-content: center;
}
.flex.align-center {
  align-items: center;
}
.flex.space-between {
  justify-content: space-between;
}
.flex.align-items-start {
  align-items: flex-start;
}
.flex.align-items-end {
  align-items: flex-end;
}
.flex.align-content-start {
  align-content: flex-start;
}
.flex.justify-flex-end {
  justify-content: flex-end;
}
.flex.wrap {
  flex-wrap: wrap;
}
.flex.row-reverse {
  flex-direction: row-reverse;
}
.flex.flex-column {
  flex-direction: column;
}

.sml-pt-50 {
  padding-top: 50px;
}

.sml-pt-40 {
  padding-top: 40px;
}

.sml-pt-30 {
  padding-top: 30px;
}

.sml-pt-20 {
  padding-top: 20px;
}

.sml-pt-10 {
  padding-top: 10px;
}

.sml-pb-40 {
  padding-bottom: 40px;
}

.sml-pb-30 {
  padding-bottom: 30px;
}

.sml-pb-20 {
  padding-bottom: 20px;
}

.sml-pb-10 {
  padding-bottom: 10px;
}

.sml-pb-0 {
  padding-bottom: 0px;
}

.sml-mt-50 {
  margin-top: 50px;
}

.sml-mt-40 {
  margin-top: 40px;
}

.sml-mt-30 {
  margin-top: 30px;
}

.sml-mt-20 {
  margin-top: 20px;
}

.sml-mt-10 {
  margin-top: 10px;
}

.sml-mt-0 {
  margin-top: 0;
}

.sml-mb-40 {
  margin-bottom: 40px;
}

.sml-mb-30 {
  margin-bottom: 30px;
}

.sml-mb-20 {
  margin-bottom: 20px;
}

.sml-mb-10 {
  margin-bottom: 10px;
}

.sml-mb-0 {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .md-pt-80 {
    padding-top: 80px;
  }
  .md-pt-70 {
    padding-top: 70px;
  }
  .md-pt-60 {
    padding-top: 60px;
  }
  .md-pt-50 {
    padding-top: 50px;
  }
  .md-pt-40 {
    padding-top: 40px;
  }
  .md-pt-30 {
    padding-top: 30px;
  }
  .md-pt-20 {
    padding-top: 20px;
  }
  .md-pt-10 {
    padding-top: 10px;
  }
  .md-pb-60 {
    padding-bottom: 60px;
  }
  .md-pb-50 {
    padding-bottom: 50px;
  }
  .md-pb-40 {
    padding-bottom: 40px;
  }
  .md-pb-30 {
    padding-bottom: 30px;
  }
  .md-pb-20 {
    padding-bottom: 20px;
  }
  .md-pb-10 {
    padding-bottom: 10px;
  }
  .md-pb-0 {
    padding-bottom: 0px;
  }
  .md-mt-80 {
    margin-top: 80px;
  }
  .md-mt-70 {
    margin-top: 70px;
  }
  .md-mt-60 {
    margin-top: 60px;
  }
  .md-mt-50 {
    margin-top: 50px;
  }
  .md-mt-40 {
    margin-top: 40px;
  }
  .md-mt-30 {
    margin-top: 30px;
  }
  .md-mt-20 {
    margin-top: 20px;
  }
  .md-mt-10 {
    margin-top: 10px;
  }
  .md-mb-80 {
    margin-bottom: 80px;
  }
  .md-mb-70 {
    margin-bottom: 70px;
  }
  .md-mb-60 {
    margin-bottom: 60px;
  }
  .md-mb-50 {
    margin-bottom: 50px;
  }
  .md-mb-40 {
    margin-bottom: 40px;
  }
  .md-mb-30 {
    margin-bottom: 30px;
  }
  .md-mb-20 {
    margin-bottom: 20px;
  }
  .md-mb-10 {
    margin-bottom: 10px;
  }
  .md-mb-0 {
    margin-bottom: 0px;
  }
}
@media (min-width: 1200px) {
  .lrg-pt-150 {
    padding-top: 150px;
  }
  .lrg-pt-140 {
    padding-top: 140px;
  }
  .lrg-pt-130 {
    padding-top: 130px;
  }
  .lrg-pt-120 {
    padding-top: 120px;
  }
  .lrg-pt-110 {
    padding-top: 110px;
  }
  .lrg-pt-100 {
    padding-top: 100px;
  }
  .lrg-pt-90 {
    padding-top: 90px;
  }
  .lrg-pt-80 {
    padding-top: 80px;
  }
  .lrg-pt-70 {
    padding-top: 70px;
  }
  .lrg-pt-60 {
    padding-top: 60px;
  }
  .lrg-pt-50 {
    padding-top: 50px;
  }
  .lrg-pt-40 {
    padding-top: 40px;
  }
  .lrg-pt-30 {
    padding-top: 30px;
  }
  .lrg-pt-20 {
    padding-top: 20px;
  }
  .lrg-pt-10 {
    padding-top: 10px;
  }
  .lrg-pt-0 {
    padding-top: 0px;
  }
  .lrg-pb-150 {
    padding-bottom: 150px;
  }
  .lrg-pb-140 {
    padding-bottom: 140px;
  }
  .lrg-pb-130 {
    padding-bottom: 130px;
  }
  .lrg-pb-120 {
    padding-bottom: 120px;
  }
  .lrg-pb-110 {
    padding-bottom: 110px;
  }
  .lrg-pb-100 {
    padding-bottom: 100px;
  }
  .lrg-pb-90 {
    padding-bottom: 90px;
  }
  .lrg-pb-80 {
    padding-bottom: 80px;
  }
  .lrg-pb-70 {
    padding-bottom: 70px;
  }
  .lrg-pb-60 {
    padding-bottom: 60px;
  }
  .lrg-pb-50 {
    padding-bottom: 50px;
  }
  .lrg-pb-40 {
    padding-bottom: 40px;
  }
  .lrg-pb-30 {
    padding-bottom: 30px;
  }
  .lrg-pb-20 {
    padding-bottom: 20px;
  }
  .lrg-pb-10 {
    padding-bottom: 10px;
  }
  .lrg-pb-0 {
    padding-bottom: 0px;
  }
  .lrg-mt-150 {
    margin-top: 150px;
  }
  .lrg-mt-140 {
    margin-top: 140px;
  }
  .lrg-mt-130 {
    margin-top: 130px;
  }
  .lrg-mt-120 {
    margin-top: 120px;
  }
  .lrg-mt-110 {
    margin-top: 110px;
  }
  .lrg-mt-100 {
    margin-top: 100px;
  }
  .lrg-mt-90 {
    margin-top: 90px;
  }
  .lrg-mt-80 {
    margin-top: 80px;
  }
  .lrg-mt-70 {
    margin-top: 70px;
  }
  .lrg-mt-60 {
    margin-top: 60px;
  }
  .lrg-mt-50 {
    margin-top: 50px;
  }
  .lrg-mt-40 {
    margin-top: 40px;
  }
  .lrg-mt-30 {
    margin-top: 30px;
  }
  .lrg-mt-20 {
    margin-top: 20px;
  }
  .lrg-mt-10 {
    margin-top: 10px;
  }
  .lrg-mt-0 {
    margin-top: 0px;
  }
  .lrg-mb-150 {
    margin-bottom: 150px;
  }
  .lrg-mb-140 {
    margin-bottom: 140px;
  }
  .lrg-mb-130 {
    margin-bottom: 130px;
  }
  .lrg-mb-120 {
    margin-bottom: 120px;
  }
  .lrg-mb-110 {
    margin-bottom: 110px;
  }
  .lrg-mb-100 {
    margin-bottom: 100px;
  }
  .lrg-mb-90 {
    margin-bottom: 90px;
  }
  .lrg-mb-80 {
    margin-bottom: 80px;
  }
  .lrg-mb-70 {
    margin-bottom: 70px;
  }
  .lrg-mb-60 {
    margin-bottom: 60px;
  }
  .lrg-mb-50 {
    margin-bottom: 50px;
  }
  .lrg-mb-40 {
    margin-bottom: 40px;
  }
  .lrg-mb-30 {
    margin-bottom: 30px;
  }
  .lrg-mb-20 {
    margin-bottom: 20px;
  }
  .lrg-mb-10 {
    margin-bottom: 10px;
  }
  .lrg-mb-10 {
    margin-top: 0px;
  }
}
footer#siteFooter .mw1600 {
  margin: 0 auto;
  max-width: 1600px;
}
footer#siteFooter .top-section {
  background-color: var(--b1);
  color: var(--cw);
  padding: 30px 7.5vw 40px 7.5vw;
}
footer#siteFooter .top-section .mw1600 {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}
footer#siteFooter .top-section .title {
  text-transform: uppercase;
  font-family: var(--futura-pt-bold);
  margin-bottom: 15px;
}
footer#siteFooter .top-section .row.flex {
  display: flex;
  flex-direction: column-reverse;
  gap: 25px 0;
}
footer#siteFooter .top-section .column.center {
  text-align: center;
}
footer#siteFooter .top-section .column.center img {
  display: inline-block;
}
footer#siteFooter .top-section .college-branding {
  margin-bottom: 15px;
}
footer#siteFooter .top-section .details {
  font-family: var(--futura-pt-bold);
}
footer#siteFooter .top-section .details .url a {
  color: var(--b3);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2rem;
}
footer#siteFooter .top-section .college-branding.cwc {
  width: 100px;
}
footer#siteFooter .top-section .college-branding.cnwl {
  width: 130px;
}
footer#siteFooter .top-section .connect-title {
  margin-top: 20px;
  font-family: var(--futura-pt-bold);
  display: none;
}
footer#siteFooter .top-section .socials {
  margin-top: 20px;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
footer#siteFooter .top-section .socials a {
  height: 45px;
  width: 45px;
  border-width: 1px;
  border-style: solid;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
footer#siteFooter .top-section .column.links nav li {
  margin-bottom: 3px;
}
footer#siteFooter .top-section .column.links nav li a {
  display: inline-block;
  padding: 2px 0;
}
footer#siteFooter .top-section .column.links .sub-column:nth-child(1) {
  margin-bottom: 35px;
}
footer#siteFooter .top-section .connect {
  display: flex;
  gap: 0 20px;
  align-items: center;
  margin-top: 20px;
}
footer#siteFooter .top-section .connect a {
  height: 45px;
  width: 45px;
  border-width: 1px;
  border-style: solid;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
footer#siteFooter .top-section .connect span {
  font-family: var(--futura-pt-bold);
}
footer#siteFooter .bottom-section {
  padding: 25px 5vw;
}
footer#siteFooter .bottom-section .flex {
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 12px;
}

@media (min-width: 768px) {
  footer#siteFooter .top-section {
    padding: 50px 5vw;
  }
  footer#siteFooter .top-section .mw1600 {
    flex-direction: column-reverse;
  }
  footer#siteFooter .top-section .mw1600 .row.flex {
    flex-direction: row;
    gap: 0 40px;
  }
  footer#siteFooter .top-section .mw1600 .row.flex .column {
    flex: 0 0 calc(50% - 20px);
  }
  footer#siteFooter .top-section .mw1600 .row.flex .column.center {
    text-align: left;
  }
  footer#siteFooter .top-section .mw1600 .row.flex .column.center img {
    margin-left: -15px;
  }
  footer#siteFooter .top-section .mw1600 .column.colleges,
  footer#siteFooter .top-section .mw1600 .column.links {
    display: flex;
    gap: 0 40px;
  }
  footer#siteFooter .top-section .mw1600 .column.colleges .sub-column,
  footer#siteFooter .top-section .mw1600 .column.links .sub-column {
    flex: 0 0 calc(50% - 20px);
  }
}
@media (min-width: 1024px) {
  footer#siteFooter .top-section {
    padding: 60px 5vw;
  }
  footer#siteFooter .top-section .column.links nav li a {
    padding: 5px 0;
  }
  footer#siteFooter .top-section .college-branding.cwc {
    width: 150px;
  }
  footer#siteFooter .top-section .college-branding.cnwl {
    width: 193px;
  }
}
@media (min-width: 1400px) {
  footer#siteFooter .top-section .mw1600 {
    gap: 40px 0;
  }
  footer#siteFooter .top-section .mw1600 .connect-title {
    display: block;
  }
  footer#siteFooter .top-section .mw1600 .socials {
    margin-top: 10px;
  }
  footer#siteFooter .top-section .mw1600 .column.links .sub-column:nth-child(1) {
    margin-bottom: 0;
  }
  footer#siteFooter .top-section .mw1600 .row {
    display: flex;
    gap: 0 60px;
    justify-content: space-between;
  }
  footer#siteFooter .top-section .mw1600 .row .column {
    flex: 0 0 auto;
  }
  footer#siteFooter .top-section .mw1600 .row.flex {
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: var(--cw);
    padding-top: 25px;
  }
  footer#siteFooter .top-section .mw1600 .row.flex .column .title {
    display: none;
  }
  footer#siteFooter .top-section .mw1600 .row.flex .column .address br {
    display: none;
  }
  footer#siteFooter .top-section .mw1600 .row.flex .column .address br:after {
    content: " ";
  }
  footer#siteFooter .top-section .mw1600 .row.flex .column .address span {
    display: block;
  }
  footer#siteFooter .top-section .mw1600 .row.flex .column.center {
    flex: 0 0 auto;
    margin-right: -13px;
  }
  footer#siteFooter .top-section .mw1600 .row.flex .column.center img {
    margin-left: 0;
  }
  footer#siteFooter .top-section .mw1600 .column.links,
  footer#siteFooter .top-section .mw1600 .column.colleges {
    gap: 0 80px;
  }
  footer#siteFooter .top-section .mw1600 .column.links .sub-column,
  footer#siteFooter .top-section .mw1600 .column.colleges .sub-column {
    flex: 0 0 auto;
  }
}
@media (min-width: 1600px) {
  footer#siteFooter .top-section {
    padding: 70px 5vw;
  }
}
@media (any-hover: hover) and (any-pointer: fine) {
  footer#siteFooter .top-section .column.links nav li a:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.4rem;
  }
  footer#siteFooter .top-section .details .url a:hover {
    text-decoration: none;
  }
  footer#siteFooter .top-section .socials a,
  footer#siteFooter .top-section .connect a {
    transition: background-color 200ms ease-in-out, color 100ms ease-in-out;
  }
  footer#siteFooter .top-section .socials a:hover,
  footer#siteFooter .top-section .connect a:hover {
    background-color: var(--cw);
    color: var(--b1);
  }
  footer#siteFooter .bottom-section a:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.4rem;
  }
}
nav#mainMenu {
  display: none;
}
nav#mainMenu > ul {
  display: flex;
  gap: 0 0;
}
nav#mainMenu li a {
  display: block;
}

.menu-item-wrap {
  display: flex;
  align-items: stretch;
}

nav#mainMenu > ul > li > .menu-item-wrap > a,
nav#mainMenu > ul > li > a {
  padding: 0 8px;
  line-height: 60px;
  border-radius: 20px 20px 0 0;
  font-family: var(--futura-pt-bold);
  text-transform: uppercase;
  color: var(--b1);
}
nav#mainMenu > ul > li > .menu-item-wrap > a.active,
nav#mainMenu > ul > li > a.active {
  background-color: var(--b1);
  color: var(--cw);
}

nav#mainMenu > ul > li.active > .menu-item-wrap a,
nav#mainMenu > ul > li.active > .menu-item-wrap button {
  background-color: var(--b1);
  color: var(--cw);
}

nav#mainMenu > ul > li.has-submenu > .menu-item-wrap > a {
  border-radius: 20px 0 0 0;
  padding-right: 0;
}

.submenu-toggle {
  min-width: 33px;
  padding: 0 8px 0 0;
  border: 0;
  background: transparent;
  color: var(--b1);
  cursor: pointer;
  border-radius: 0 20px 0 0;
  position: relative;
  font: inherit;
}
.submenu-toggle:after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  position: absolute;
  top: calc(50% + 1px);
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  color: currentColor;
}
.submenu-toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

nav#mainMenu > ul > li > a:focus-visible,
nav#mainMenu ul.sub-menu a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

nav#mainMenu ul.sub-menu[hidden] {
  display: none !important;
}

nav#mainMenu ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--cw);
  overflow-x: hidden;
  overflow-y: auto;
  max-height: calc(100vh - var(--header-height-desktop) - 20px);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 200ms ease-in-out, visibility 200ms ease-in-out;
  z-index: 1000;
}
nav#mainMenu ul.sub-menu:before {
  position: absolute;
  top: -10px;
  z-index: 2;
  height: 10px;
  left: 0;
  width: 100%;
  content: "";
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
}
nav#mainMenu ul.sub-menu.megamenu {
  width: 100vw;
  display: flex;
  background: var(--cw);
}
nav#mainMenu ul.sub-menu.megamenu .column-title {
  font-family: var(--futura-pt-bold);
  text-transform: uppercase;
  font-size: 1.5rem;
  color: var(--b1);
  display: block;
}
nav#mainMenu ul.sub-menu.megamenu li.first-column {
  flex: 0 0 44%;
  padding: 80px 60px 0 2.5vw;
  font-family: var(--futura-pt-bold);
}
nav#mainMenu ul.sub-menu.megamenu li.first-column > ul {
  display: flex;
  gap: 0 60px;
}
nav#mainMenu ul.sub-menu.megamenu li.second-column {
  flex: 0 0 56%;
  padding: 80px 2.5vw 60px 5vw;
}
nav#mainMenu ul.sub-menu.megamenu li.second-column > .column-title {
  margin-bottom: 25px;
}
nav#mainMenu ul.sub-menu.megamenu li.column {
  flex: 0 0 calc(50% - 30px);
}
nav#mainMenu ul.sub-menu.megamenu li.column ul {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
}
nav#mainMenu ul.sub-menu.megamenu li.column ul li {
  margin-bottom: 15px;
}
nav#mainMenu ul.sub-menu.megamenu li.column ul li a:hover,
nav#mainMenu ul.sub-menu.megamenu li.column ul li a.active {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.5rem;
}
nav#mainMenu ul.sub-menu li.has-third-level {
  position: relative;
}
nav#mainMenu ul.sub-menu li.has-third-level button {
  height: 40px;
  width: 40px;
  border-radius: 5px;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-20%);
}
nav#mainMenu ul.sub-menu li.has-third-level > .menu-item-wrap > a {
  flex: 1;
}
nav#mainMenu ul.sub-menu li.has-third-level > ul.third-level-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  position: static;
  visibility: hidden;
  padding: 0;
  list-style: none;
  gap: 0 0 !important;
  transition: opacity 200ms ease-in-out, max-height 200ms ease-in-out, margin 200ms ease-in-out, visibility 200ms ease-in-out;
}
nav#mainMenu ul.sub-menu li.has-third-level > ul.third-level-menu li {
  margin-bottom: 12px;
}
nav#mainMenu ul.sub-menu li.has-third-level > ul.third-level-menu li:last-child {
  margin-bottom: 0;
}
nav#mainMenu ul.sub-menu li.has-third-level > ul.third-level-menu li a {
  font-family: var(--futura-pt);
  font-weight: 450;
}
nav#mainMenu ul.sub-menu li.has-third-level.is-open > ul.third-level-menu {
  max-height: 1000px;
  opacity: 1;
  margin: 1rem 0 0 0;
  visibility: visible;
}
nav#mainMenu ul.sub-menu li.has-third-level.is-open .menu-item-wrap button.submenu-toggle[aria-expanded=true] {
  background-color: var(--b1);
  color: var(--cw);
}
nav#mainMenu ul.sub-menu li.has-third-level.is-open .menu-item-wrap button.submenu-toggle[aria-expanded=true]:after {
  transform: translate(-50%, -56%) rotate(180deg) !important;
}
nav#mainMenu ul.sub-menu.megamenu.normal {
  padding: 80px 5vw 60px 5vw;
  gap: 0 60px;
  justify-content: center;
}
nav#mainMenu ul.sub-menu.megamenu.normal li.column {
  flex: 0 0 calc(25% - 15px);
}
nav#mainMenu ul.sub-menu.megamenu.normal li a {
  font-family: var(--futura-pt-bold);
}
nav#mainMenu ul.sub-menu .subject-columns {
  display: flex;
  gap: 0 15px;
}
nav#mainMenu ul.sub-menu .subject-columns .column {
  display: flex;
  flex: 0 0 calc(33.333% - 10px);
  flex-direction: column;
  gap: 10px 0;
}
nav#mainMenu ul.sub-menu .subject-columns .column li a {
  padding: 14px 15px;
  text-align: center;
  border-radius: 50px;
  background-color: rgba(0, 162, 157, 0.3);
  font-weight: 700;
  color: var(--b1);
  font-family: var(--futura-pt-bold);
}
nav#mainMenu ul.sub-menu .subject-columns .column li a.active {
  background-color: var(--b1);
  color: var(--cw);
}
nav#mainMenu ul.sub-menu .subject-columns .column li a.all-subjects {
  border-width: 1px;
  border-style: solid;
  border-color: currentColor;
  background-color: var(--cw);
}

nav#mainMenu ul.sub-menu.bg-teal:after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-color: rgba(0, 162, 157, 0.3);
  z-index: -1;
  content: "";
}

nav#mainMenu ul.sub-menu#submenu-colleges {
  justify-content: center;
  padding-left: 5vw;
  padding-right: 5vw;
}
nav#mainMenu ul.sub-menu#submenu-colleges .first-column {
  flex: 1;
  max-width: 900px;
  padding-left: 0;
  padding-right: 60px;
}
nav#mainMenu ul.sub-menu#submenu-colleges .first-column .title {
  margin-bottom: 40px;
  color: var(--b1);
  text-transform: uppercase;
}
nav#mainMenu ul.sub-menu#submenu-colleges .first-column p {
  font-family: var(--main-font);
}
nav#mainMenu ul.sub-menu#submenu-colleges .second-column {
  display: flex;
  justify-content: flex-end;
  width: 700px; /*900*/
  flex: 0 0 700px;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 80px;
}
nav#mainMenu ul.sub-menu#submenu-colleges .second-column .link-set {
  display: flex;
  width: 700px; /*870*/
  gap: 0 30px;
}
nav#mainMenu ul.sub-menu#submenu-colleges .second-column .link-set li {
  flex: 0 0 calc(50% - 15px);
}
nav#mainMenu ul.sub-menu#submenu-colleges .second-column .link-set li a {
  display: flex;
  position: relative;
  height: 335px;
  width: 335px;
  overflow: hidden;
}
nav#mainMenu ul.sub-menu#submenu-colleges .second-column .link-set li a figure {
  position: absolute;
  inset: 0;
}
nav#mainMenu ul.sub-menu#submenu-colleges .second-column .link-set li a figure .branding {
  max-width: 50%;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
}

nav#mainMenu ul#submenu-courses.sub-menu.megamenu {
  background: linear-gradient(to right, #b2e3e0 0, #b2e3e0 44%, var(--cw) 44%, var(--cw) 100%);
}

nav#mainMenu li.has-submenu.single,
nav#mainMenu li.has-submenu.double {
  position: relative;
}
nav#mainMenu li.has-submenu.single ul.sub-menu,
nav#mainMenu li.has-submenu.double ul.sub-menu {
  width: 360px;
  left: -40px;
  right: auto;
  flex-direction: column;
  padding: 50px 50px 60px 50px;
  gap: 10px 0;
  border-radius: 0 0 10px 100px;
  background-color: #b2e3e0;
}
nav#mainMenu li.has-submenu.single ul.sub-menu li a:hover,
nav#mainMenu li.has-submenu.single ul.sub-menu li a.active,
nav#mainMenu li.has-submenu.double ul.sub-menu li a:hover,
nav#mainMenu li.has-submenu.double ul.sub-menu li a.active {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.35rem;
}

nav#mainMenu li.has-submenu.single ul.sub-menu {
  display: flex;
  gap: 15px 0;
}
nav#mainMenu li.has-submenu.single ul.sub-menu li {
  font-family: var(--futura-pt-bold);
  margin-bottom: 12px;
}

nav#mainMenu li.has-submenu.double ul.sub-menu {
  width: 600px;
  display: flex;
  flex-direction: row;
  gap: 0 40px;
}
nav#mainMenu li.has-submenu.double ul.sub-menu > li {
  flex: 0 0 calc(50% - 20px);
  width: calc(50% - 20px);
}
nav#mainMenu li.has-submenu.double ul.sub-menu > li ul {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
}
nav#mainMenu li.has-submenu.double ul.sub-menu > li ul li {
  font-family: var(--futura-pt-bold);
  margin-bottom: 12px;
}
nav#mainMenu li.has-submenu.double ul.sub-menu > li ul.third-level-menu {
  gap: 0 0;
}

nav#mainMenu > ul > li.has-submenu.is-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

nav#mainMenu > ul > li.has-submenu.is-open > .menu-item-wrap > a,
nav#mainMenu > ul > li.has-submenu.is-open > .menu-item-wrap > .submenu-toggle {
  background-color: var(--b1);
  color: var(--cw);
}

nav#mainMenu > ul > li.has-submenu.is-open > .menu-item-wrap > .submenu-toggle:after {
  content: "\f106";
}

.innerHeader {
  --header-height-mobile: 60px; /* Mobile Header height */
  height: var(--header-height-mobile);
  background-color: var(--cw);
  position: relative;
  z-index: 300;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
}
.innerHeader .top-bar {
  height: var(--header-height-mobile);
  padding: 0 2.5vw;
  display: flex;
  align-items: center;
  position: relative;
}
.innerHeader .top-bar a.accessibility {
  position: absolute;
  right: calc(2.5vw + 30px);
  top: 50%;
  transform: translateY(-50%);
}
.innerHeader .top-bar button#quick-links-toggle_mobile {
  position: absolute;
  right: calc(2.5vw + 30px + 36px);
  top: 50%;
  transform: translateY(-50%);
}
.innerHeader .branding {
  width: 121px;
  height: auto;
  max-width: 100%;
}
.innerHeader .branding img {
  width: 100%;
  height: auto;
}
.innerHeader aside#quick-links-mobile {
  position: absolute;
  top: 100%;
  right: 0;
  width: 120px;
  border-radius: 0 0 0 30px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.innerHeader aside#quick-links-mobile.is-collapsed-mobile {
  display: none;
}
.innerHeader aside#quick-links-mobile ul {
  border-radius: 0 0 0 30px;
  background-color: #cceceb;
  overflow: hidden;
}
.innerHeader aside#quick-links-mobile ul li a {
  text-align: center;
  display: block;
  line-height: 50px;
}
.innerHeader aside#quick-links-mobile ul li a.apply {
  font-size: 1.25rem;
  font-weight: 700;
  background-color: var(--b4);
  font-family: var(--futura-pt-bold);
}
.innerHeader aside#quick-links-mobile ul li a.my-day {
  background-color: rgba(0, 162, 157, 0.2);
}
.innerHeader aside#quick-links-mobile ul li a.term-dates {
  background-color: rgba(0, 162, 157, 0.1);
}

.mm-searchfield__input .searchButton {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  appearance: none;
  padding: 0;
  z-index: 10;
  border-radius: 50%;
  background-color: var(--b4);
  color: var(--cb);
}
.mm-searchfield__input .searchButton:before {
  width: 40px;
  height: 40px;
  content: "\f002";
  position: absolute;
  inset: 0;
  text-align: center;
  line-height: 40px;
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
}
.mm-searchfield__input .searchButton:hover {
  cursor: pointer;
}
.mm-searchfield__input input {
  border: none;
  color: var(--b1);
  font-family: var(--futura-pt-bold);
}
.mm-searchfield__input input::placeholder {
  color: var(--b1);
  opacity: 1;
}
.mm-searchfield__input input::-webkit-placeholder {
  color: var(--b1);
  opacity: 1;
}

nav#mainMenu li:nth-last-child(-n+3).has-submenu.single ul.sub-menu,
nav#mainMenu li:nth-last-child(-n+3).has-submenu.double ul.sub-menu {
  right: -40px;
  left: auto;
}

@media (min-width: 400px) {
  .innerHeader .top-bar a.accessibility {
    right: calc(2.5vw + 40px);
  }
  .innerHeader .top-bar button#quick-links-toggle_mobile {
    right: calc(2.5vw + 30px + 56px);
  }
}
@media (min-width: 1280px) {
  nav#mainMenu {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 200ms ease-in-out, visibility 200ms ease-in-out;
  }
  body.search-open nav#mainMenu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
@media (min-width: 1600px) {
  nav#mainMenu > ul > li > .menu-item-wrap > a,
  nav#mainMenu > ul > li > a {
    line-height: 76px;
    padding: 0 15px;
  }
  .submenu-toggle {
    min-width: 40px;
    padding: 0 15px 0 0;
  }
}
@media (min-width: 1700px) {
  nav#mainMenu > ul > li > .menu-item-wrap > a,
  nav#mainMenu > ul > li > a {
    padding: 0 17px;
  }
  .submenu-toggle {
    padding: 0 17px 0 15px;
  }
  nav#mainMenu li:nth-last-child(-n+3).has-submenu.single ul.sub-menu, nav#mainMenu li:nth-last-child(-n+3).has-submenu.double ul.sub-menu {
    left: -40px;
    right: auto;
  }
}
@media (min-width: 1800px) {
  nav#mainMenu ul.sub-menu.megamenu li.first-column {
    padding: 90px 60px 80px 5vw;
  }
  nav#mainMenu ul.sub-menu.megamenu li.second-column {
    padding: 90px 5vw 80px 60px;
  }
  nav#mainMenu ul.sub-menu.megamenu.normal {
    padding: 90px 12%;
  }
  nav#mainMenu ul.sub-menu#submenu-colleges .first-column {
    max-width: 900px;
  }
  nav#mainMenu ul.sub-menu#submenu-colleges .second-column {
    width: 900px; /*900*/
    flex: 0 0 900px;
  }
  nav#mainMenu ul.sub-menu#submenu-colleges .second-column .link-set {
    width: 870px;
  }
  nav#mainMenu ul.sub-menu#submenu-colleges .second-column .link-set li a {
    height: 420px;
    width: 100%;
  }
}
@media (min-width: 1900px) {
  nav#mainMenu ul.sub-menu.megamenu li.first-column {
    padding: 90px 60px 80px 8vw;
  }
  nav#mainMenu ul.sub-menu.megamenu li.second-column {
    padding: 90px 8vw 80px 60px;
  }
}
@media (min-width: 2000px) {
  nav#mainMenu ul.sub-menu#submenu-colleges {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media (max-height: 1000px) {
  nav#mainMenu ul.sub-menu.megamenu .column-title {
    font-size: 1.25rem;
  }
  nav#mainMenu ul.sub-menu.megamenu li.first-column,
  nav#mainMenu ul.sub-menu.megamenu li.second-column {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  nav#mainMenu ul.sub-menu.megamenu li.column ul {
    gap: 10px 0;
  }
  nav#mainMenu ul.sub-menu.megamenu li.second-column > .column-title {
    margin-bottom: 15px;
  }
  nav#mainMenu ul.sub-menu.megamenu .subject-columns {
    gap: 0 7px;
  }
  nav#mainMenu ul.sub-menu.megamenu .subject-columns .column {
    gap: 5px 0;
    flex: 0 0 calc(33.333% - 0.292rem);
    margin-bottom: 20px;
  }
  nav#mainMenu ul.sub-menu.megamenu .subject-columns .column li a {
    padding: 10px 12px;
  }
}
@media (any-hover: hover) and (any-pointer: fine) {
  nav#mainMenu > ul > li > .menu-item-wrap > a,
  nav#mainMenu > ul > li > a,
  nav#mainMenu .submenu-toggle,
  nav#mainMenu ul.sub-menu .subject-columns .column li a {
    transition: background-color 200ms ease-in-out, color 100ms ease-in-out;
  }
  nav#mainMenu > ul > li > .menu-item-wrap > a:hover,
  nav#mainMenu > ul > li > a:hover,
  nav#mainMenu .submenu-toggle:hover,
  nav#mainMenu ul.sub-menu .subject-columns .column li a:hover {
    background-color: var(--b1);
    color: var(--cw);
  }
  nav#mainMenu > ul > li:hover > .menu-item-wrap > a,
  nav#mainMenu > ul > li:hover > .menu-item-wrap > .submenu-toggle,
  nav#mainMenu > ul > li.is-open > .menu-item-wrap > a,
  nav#mainMenu > ul > li.is-open > .menu-item-wrap > .submenu-toggle {
    background-color: var(--b1);
    color: var(--cw);
  }
  nav#mainMenu > ul > li.has-submenu:hover > .sub-menu:not([hidden]) {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  nav#mainMenu > ul > li.has-submenu:hover > .menu-item-wrap > .submenu-toggle:after {
    content: "\f106";
  }
  .mm-searchfield__input .searchButton {
    transition: background-color 200ms ease-in-out, color 100ms ease-in-out;
  }
  .mm-searchfield__input .searchButton:hover {
    background-color: var(--b1);
    color: var(--cw);
  }
}
.search {
  position: absolute;
  right: calc(2.5vw + 30px + 15px);
  top: 30px;
  height: 40px;
  width: 776px;
  display: flex;
  align-items: center;
  gap: 0 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background-color: var(--cw);
  transition: opacity 200ms ease-in-out;
  display: none;
}
.search span {
  width: 326px;
  font-family: var(--futura-pt-bold);
  color: var(--b1);
  font-size: 1.25rem;
}
.search form {
  height: 40px;
  display: block;
  width: 430px;
  position: relative;
}
.search input.searchInput {
  position: relative;
  left: 0;
  width: calc(100% - 90px);
  height: 30px;
  padding: 4px 70px 4px 20px;
  box-sizing: content-box;
  border-width: 1px;
  border-style: solid;
  color: var(--b1);
  -webkit-appearance: none;
  appearance: none;
  z-index: 2;
  outline: none;
  background: var(--cw);
  border-radius: 20px;
  font-family: var(--futura-pt-bold);
}
.search input.searchInput::placeholder {
  color: var(--b1);
  opacity: 1;
}
.search button.searchBTN {
  position: absolute;
  right: 5px;
  top: 5px;
  height: 30px;
  width: 30px;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 0;
  z-index: 3;
  background: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--cb);
  background-color: var(--b4);
}
.search button.searchBTN i {
  font-size: 0.875rem;
}
.search button.closeBTN {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 26px;
  width: 26px;
  border-radius: 50%;
  background-color: var(--cw);
  color: var(--b1);
  right: -43px;
}

.search[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.search-results .tabs {
  max-width: 412px;
  margin: 0 auto 20px auto;
  display: none;
  background-color: var(--b1);
  padding: 10px 20px 15px 20px;
  flex-direction: column;
  gap: 10px 0;
  position: relative;
}
body.search-results .tabs:after {
  content: "";
  left: -50vw;
  right: -50vw;
  width: auto;
  top: 0;
  height: 100%;
  z-index: -1;
  background-color: var(--b1);
  position: absolute;
}
body.search-results .tabs .title {
  font-family: var(--futura-pt-bold);
  color: var(--cw);
}
body.search-results .tabs .wrap {
  border-width: 2px;
  border-style: solid;
  border-color: var(--cw);
  height: 50px;
  flex: 1;
  border-radius: 27px;
  padding: 5px;
  display: flex;
  gap: 0 0;
  position: relative;
  width: 372px;
}
body.search-results .tabs .wrap .filter-slider {
  position: absolute;
  top: 5px;
  left: 0px;
  height: calc(100% - 10px);
  width: 0;
  background-color: var(--b4);
  border-radius: 30px;
  transition: transform 0.3s ease, width 0.3s ease;
  z-index: 0;
}
body.search-results .tabs .wrap button {
  appearance: none;
  background: transparent;
  border: none;
  z-index: 1;
  height: 38px;
  line-height: 38px;
  padding: 0 15px;
  color: var(--cw);
  border-radius: 20px;
  font-family: var(--futura-pt-bold);
  flex: 1 1 auto;
}
body.search-results .tabs .wrap button.current {
  color: var(--cb);
}
body.search-results .tabs .wrap {
  /*
  button[data-tab="tab-1"] {
      flex: 0 0 100px;
  }
  button[data-tab="tab-2"] {
      flex: 0 0 84px;
  }
  button[data-tab="tab-3"] {
      flex: 0 0 88px;
  }
  button[data-tab="tab-4"] {
      flex: 0 0 86px;
  }*/
}

.tabs-select-wrap {
  display: flex;
  flex-direction: column;
  background-color: var(--b1);
  padding: 15px 0 25px 0;
  position: relative;
  margin-bottom: 25px;
}
.tabs-select-wrap:before {
  content: "";
  position: absolute;
  left: -15vw;
  right: -15vw;
  top: 0;
  height: 100%;
  z-index: -1;
  background-color: var(--b1);
}
.tabs-select-wrap .title {
  margin-bottom: 8px;
  text-align: center;
  color: var(--cw);
  font-family: var(--futura-pt-bold);
}
.tabs-select-wrap .select-holder {
  padding: 7px;
  height: 58px;
  border-width: 2px;
  border-style: solid;
  border-color: var(--cw);
  border-radius: 27px;
  position: relative;
}
.tabs-select-wrap .tabs-select {
  height: 40px;
  line-height: 40px;
  width: 100%;
  border-radius: 20px;
  background-color: var(--b4);
  padding: 0 45px 0 15px;
  font-family: var(--futura-pt-bold);
  color: var(--cb);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../images/main/chevron-down-solid-full.svg);
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px auto;
  border: none;
}

.page-listing {
  display: grid;
  gap: 15px 0;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  margin-bottom: 30px;
}
.page-listing .page-item {
  border-radius: 5px;
  border-width: 1px;
  border-style: solid;
  border-color: var(--b1);
  display: flex;
  flex-direction: column;
}
.page-listing .page-item .title {
  padding: 30px;
  background-color: rgba(0, 162, 157, 0.2);
  font-family: var(--futura-pt-bold);
}
.page-listing .page-item .intro {
  padding: 20px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-listing .page-item .intro a.more {
  margin-top: auto;
}

.mainContent .content-area p.results a {
  color: var(--cb);
}
.mainContent .content-area p.results button {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2rem;
}

@media (min-width: 768px) {
  body.search-results .tabs {
    display: flex;
  }
  .tabs-select-wrap {
    display: none;
  }
  .page-listing {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  body.search-results .tabs {
    margin-bottom: 35px;
    border-radius: 50px;
    padding: 20px 30px;
    flex-direction: row;
    max-width: 542px;
    gap: 0 35px;
  }
  body.search-results .tabs:after {
    display: none;
  }
}
@media (min-width: 1200px) {
  .page-listing {
    margin-bottom: 50px;
  }
}
@media (min-width: 1400px) {
  .search {
    display: flex;
  }
}
@media (min-width: 1600px) {
  .search {
    width: 876px;
    height: 50px;
    top: 32px;
    right: calc(2.5vw + 40px + 15px);
  }
  .search form {
    height: 50px;
    width: 530px;
  }
  .search input.searchInput {
    height: 42px;
    border-radius: 30px;
  }
  .search button.searchBTN {
    height: 40px;
    width: 40px;
  }
  .search button.closeBTN {
    height: 40px;
    width: 40px;
    right: -55px;
    font-size: 1.25rem;
  }
  body.search-results .tabs {
    margin-bottom: 50px;
  }
  .page-listing {
    margin-bottom: 70px;
  }
}
@media (min-width: 1900px) {
  .search {
    right: calc(8vw + 40px + 15px);
  }
}
@media (any-hover: hover) and (any-pointer: fine) {
  .search button.searchBTN {
    transition: background-color 200ms ease-in-out, color 100ms ease-in-out;
  }
  .search button.searchBTN:hover {
    background-color: var(--b1);
    color: var(--cw);
  }
  .search button.closeBTN {
    transition: color 200ms ease-in-out;
  }
  .search button.closeBTN:hover {
    color: var(--b4);
  }
  .mainContent .content-area p.results button:hover {
    text-decoration: none;
  }
}
.swiper.hero {
  height: clamp(400px, 55vh, 460px);
  margin-top: var(--header-height-mobile);
  overflow: hidden;
  position: relative;
}
.swiper.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 38.49%);
  transform: rotate(-180deg);
  mix-blend-mode: multiply;
  z-index: 2;
}
.swiper.hero video,
.swiper.hero iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: bottom center;
  position: absolute;
  top: 0;
  left: 0;
}
.swiper.hero picture {
  position: absolute;
  inset: 0;
}
.swiper.hero picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper.hero .hero-slider-toggle {
  height: 20px;
  width: 20px;
  z-index: 2;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cw);
}

@media (min-width: 768px) {
  .swiper.hero {
    height: clamp(500px, 60vh, 70vh);
  }
}
@media (min-width: 1400px) {
  .swiper.hero {
    margin-top: var(--header-height-laptop);
  }
}/*# sourceMappingURL=main.css.map */